Merge from vendor branch OPENSSH:
[dragonfly.git] / sys / dev / serial / cy / cy_pci.c
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  * $FreeBSD: src/sys/pci/cy_pci.c,v 1.17.2.1 2002/03/17 04:14:18 bde Exp $
28  * $DragonFly: src/sys/dev/serial/cy/cy_pci.c,v 1.10 2007/04/12 18:35:08 swildner Exp $
29  */
30
31 /*
32  * Cyclades Y PCI serial interface driver
33  */
34
35 #include "opt_cy_pci_fastintr.h"
36
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/kernel.h>
40 #include <sys/bus.h>
41 #include <vm/vm.h>
42 #include <vm/pmap.h>
43
44 #include <bus/pci/pcivar.h>
45
46 #include "cy_pcireg.h"
47
48 #ifdef CY_PCI_FASTINTR
49 #include <machine_base/isa/intr_machdep.h>
50 #endif
51
52 static const char *cy_probe             (pcici_t, pcidi_t);
53 static void cy_attach           (pcici_t, int);
54
55 extern int cyattach_common(void *, int); /* Not exactly correct */
56 extern void cyintr(int);
57
58 static u_long cy_count;
59
60 static struct pci_device cy_device = {
61         "cy",
62         cy_probe,
63         cy_attach,
64         &cy_count,
65         NULL
66 };
67 COMPAT_PCI_DRIVER(cy_pci, cy_device);
68
69 static const char *
70 cy_probe(pcici_t config_id, pcidi_t device_id)
71 {
72         device_id &= ~0x00060000;
73         if (device_id == 0x0100120e || device_id == 0x0101120e)
74                 return ("Cyclades Cyclom-Y Serial Adapter");
75         return (NULL);
76 }
77
78 static void
79 cy_attach(pcici_t config_id, int unit)
80 {
81         vm_offset_t paddr;
82         void *vaddr;
83         u_int32_t ioport;
84         int adapter;
85         u_char plx_ver;
86
87         ioport = (u_int32_t) pci_conf_read(config_id, CY_PCI_BASE_ADDR1) & ~0x3;
88         paddr = pci_conf_read(config_id, CY_PCI_BASE_ADDR2) & ~0xf;
89 #if 0
90         if (!pci_map_mem(config_id, CY_PCI_BASE_ADDR2, &vaddr, &paddr)) {
91                 kprintf("cy%d: couldn't map shared memory\n", unit);
92                 return;
93         };
94 #endif
95         vaddr = pmap_mapdev(paddr, 0x4000);
96
97         adapter = cyattach_common(vaddr, 1);
98         if (adapter < 0) {
99                 /*
100                  * No ports found. Release resources and punt.
101                  */
102                 kprintf("cy%d: no ports found!\n", unit);
103                 goto fail;
104         }
105
106         /*
107          * Allocate our interrupt.
108          * XXX  Using the ISA interrupt handler directly is a bit of a violation
109          *      since it doesn't actually take the same argument. For PCI, the
110          *      argument is a void * token, but for ISA it is a unit. Since
111          *      there is no overlap in PCI/ISA unit numbers for this driver, and
112          *      since the ISA driver must handle the interrupt anyway, we use
113          *      the unit number as the token even for PCI.
114          */
115         if (
116 #ifdef CY_PCI_FASTINTR
117             !pci_map_int_right(config_id, (pci_inthand_t *)cyintr,
118                                (void *)adapter,
119                                INTR_EXCL | INTR_FAST) &&
120 #endif
121             !pci_map_int_right(config_id, (pci_inthand_t *)cyintr,
122                                (void *)adapter, 0)) {
123                 kprintf("cy%d: couldn't map interrupt\n", unit);
124                 goto fail;
125         }
126
127         /*
128          * Enable the "local" interrupt input to generate a
129          * PCI interrupt.
130          */
131         plx_ver = *((u_char *)vaddr + PLX_VER) & 0x0f;
132         switch (plx_ver) {
133         case PLX_9050:
134                 outw(ioport + CY_PLX_9050_ICS,
135                     CY_PLX_9050_ICS_IENABLE | CY_PLX_9050_ICS_LOCAL_IENABLE |
136                     CY_PLX_9050_ICS_LOCAL_IPOLARITY);
137                 break;
138         case PLX_9060:
139         case PLX_9080:
140         default:                /* Old board, use PLX_9060 values. */
141                 outw(ioport + CY_PLX_9060_ICS,
142                     inw(ioport + CY_PLX_9060_ICS) | CY_PLX_9060_ICS_IENABLE |
143                     CY_PLX_9060_ICS_LOCAL_IENABLE);
144                 break;
145         }
146
147         return;
148
149 fail:
150         /* XXX should release any allocated virtual memory */
151         return;
152 }