cy_pci.c revision 46879
1/*
2 * Copyright (c) 1996, David Greenman
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice unmodified, this list of conditions, and the following
10 *    disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 *	$Id: cy_pci.c,v 1.14 1999/05/09 17:06:43 peter Exp $
28 */
29
30/*
31 * Cyclades Y PCI serial interface driver
32 */
33
34#include "pci.h"
35#if NPCI > 0
36
37#include "opt_cy_pci_fastintr.h"
38
39#include <sys/param.h>
40#include <sys/systm.h>
41#include <sys/kernel.h>
42#include <vm/vm.h>
43#include <vm/pmap.h>
44
45#include <pci/pcivar.h>
46
47#include <pci/cy_pcireg.h>
48
49#ifdef CY_PCI_FASTINTR
50#include <i386/isa/intr_machdep.h>
51#endif
52
53static const char *cy_probe		__P((pcici_t, pcidi_t));
54static void cy_attach		__P((pcici_t, int));
55
56extern int cyattach_common(void *, int); /* Not exactly correct */
57extern void cyintr(int);
58
59static u_long cy_count;
60
61static struct pci_device cy_device = {
62        "cy",
63        cy_probe,
64        cy_attach,
65        &cy_count,
66        NULL
67};
68COMPAT_PCI_DRIVER(cy_pci, cy_device);
69
70static const char *
71cy_probe(config_id, device_id)
72	pcici_t config_id;
73	pcidi_t device_id;
74{
75	device_id &= ~0x00060000;
76	if (device_id == 0x0100120e || device_id == 0x0101120e)
77		return ("Cyclades Cyclom-Y Serial Adapter");
78	return (NULL);
79}
80
81static void
82cy_attach(config_id, unit)
83	pcici_t config_id;
84	int unit;
85{
86	vm_offset_t paddr;
87	void *vaddr;
88	u_int32_t ioport;
89	int adapter;
90	u_char plx_ver;
91
92	ioport = (u_int32_t) pci_conf_read(config_id, CY_PCI_BASE_ADDR1) & ~0x3;
93	paddr = pci_conf_read(config_id, CY_PCI_BASE_ADDR2) & ~0xf;
94#if 0
95	if (!pci_map_mem(config_id, CY_PCI_BASE_ADDR2, &vaddr, &paddr)) {
96		printf("cy%d: couldn't map shared memory\n", unit);
97		return;
98	};
99#endif
100	vaddr = pmap_mapdev(paddr, 0x4000);
101
102	adapter = cyattach_common(vaddr, 1);
103	if (adapter < 0) {
104		/*
105		 * No ports found. Release resources and punt.
106		 */
107		printf("cy%d: no ports found!\n", unit);
108		goto fail;
109	}
110
111	/*
112	 * Allocate our interrupt.
113	 * XXX	Using the ISA interrupt handler directly is a bit of a violation
114	 *	since it doesn't actually take the same argument. For PCI, the
115	 *	argument is a void * token, but for ISA it is a unit. Since
116	 *	there is no overlap in PCI/ISA unit numbers for this driver, and
117	 *	since the ISA driver must handle the interrupt anyway, we use
118	 *	the unit number as the token even for PCI.
119	 */
120	if (
121#ifdef CY_PCI_FASTINTR
122	    !pci_map_int_right(config_id, (pci_inthand_t *)cyintr,
123			       (void *)adapter, &tty_imask,
124			       INTR_EXCL | INTR_FAST) &&
125#endif
126	    !pci_map_int_right(config_id, (pci_inthand_t *)cyintr,
127			       (void *)adapter, &tty_imask, 0)) {
128		printf("cy%d: couldn't map interrupt\n", unit);
129		goto fail;
130	}
131
132	/*
133	 * Enable the "local" interrupt input to generate a
134	 * PCI interrupt.
135	 */
136	plx_ver = *((u_char *)vaddr + PLX_VER) & 0x0f;
137	switch (plx_ver) {
138	case PLX_9050:
139		outw(ioport + CY_PLX_9050_ICS,
140		    inw(ioport + CY_PLX_9050_ICS) | CY_PLX_9050_ICS_IENABLE |
141		    CY_PLX_9050_ICS_LOCAL_IENABLE);
142		break;
143	case PLX_9060:
144	case PLX_9080:
145	default:		/* Old board, use PLX_9060 values. */
146		outw(ioport + CY_PLX_9060_ICS,
147		    inw(ioport + CY_PLX_9060_ICS) | CY_PLX_9060_ICS_IENABLE |
148		    CY_PLX_9060_ICS_LOCAL_IENABLE);
149		break;
150	}
151
152	return;
153
154fail:
155	/* XXX should release any allocated virtual memory */
156	return;
157}
158
159#endif /* NPCI > 0 */
160