1 /* $NetBSD: puccn.c,v 1.8 2005/12/11 12:22:50 christos Exp $ */
5 * Copyright (c) 2000 Geocast Networks Systems. All rights reserved.
7 * Copyright (c) 1995, 1996, 1997, 1998
8 * Christopher G. Demetriou. All rights reserved.
9 * Copyright (c) 1994 Charles M. Hannum. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by Charles M. Hannum.
22 * 4. The name of the author may not be used to endorse or promote products
23 * derived from this software without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 * Machine independent support for PCI serial console support.
41 * Scan the PCI bus for something which resembles a 16550
44 #include <sys/cdefs.h>
45 __KERNEL_RCSID(0, "$NetBSD: puccn.c,v 1.8 2005/12/11 12:22:50 christos Exp $");
49 #include <sys/param.h>
50 #include <sys/systm.h>
52 #include <sys/device.h>
54 #include <dev/pci/pcireg.h>
55 #include <dev/pci/pcivar.h>
56 #include <dev/pci/pcidevs.h>
58 #include <sys/termios.h>
59 #include <dev/ic/comreg.h>
60 #include <dev/ic/comvar.h>
64 #include <dev/pci/pucvar.h>
65 #include <dev/pci/puccn.h>
68 #define CONSPEED TTYDEF_SPEED
71 #define CONMODE ((TTYDEF_CFLAG & ~(CSIZE|CSTOPB|PARENB))|CS8) /* 8N1 */
74 #ifdef i386 /* Handle i386 directly */
76 cpu_comcnprobe(struct consdev
*cn
, struct pci_attach_args
*pa
)
79 pa
->pa_iot
= X86_BUS_SPACE_IO
;
81 pa
->pa_tag
= pci_make_tag(0, 0, 31, 0);
88 static bus_addr_t puccnbase
;
89 static bus_space_tag_t puctag
;
92 static bus_addr_t pucgdbbase
;
96 * Static dev/func variables allow pucprobe to be called multiple times,
97 * resuming the search where it left off, never retrying the same adaptor.
101 pucprobe_doit(struct consdev
*cn
)
103 struct pci_attach_args pa
;
105 static int dev
= 0, func
= 0;
106 int maxdev
, nfunctions
= 0, i
; /* XXX */
107 pcireg_t reg
, bhlcr
, subsys
= 0; /* XXX */
109 const struct puc_device_description
*desc
;
113 if (cpu_comcnprobe(cn
, &pa
) != 0) {
117 pci_decompose_tag(pa
.pa_pc
, pa
.pa_tag
, &bus
, &maxdev
, NULL
);
119 /* scan through devices */
121 for (; dev
<= maxdev
; dev
++) {
122 pa
.pa_tag
= pci_make_tag(pa
.pa_pc
, bus
, dev
, 0);
123 reg
= pci_conf_read(pa
.pa_pc
, pa
.pa_tag
, PCI_ID_REG
);
124 if (PCI_VENDOR(reg
) == PCI_VENDOR_INVALID
125 || PCI_VENDOR(reg
) == 0)
127 bhlcr
= pci_conf_read(pa
.pa_pc
, pa
.pa_tag
, PCI_BHLC_REG
);
128 if (PCI_HDRTYPE_MULTIFN(bhlcr
)) {
134 for (; func
< nfunctions
; func
++) {
135 pa
.pa_tag
= pci_make_tag(pa
.pa_pc
, bus
, dev
, func
);
136 reg
= pci_conf_read(pa
.pa_pc
, pa
.pa_tag
, PCI_CLASS_REG
);
137 if (PCI_CLASS(reg
) == PCI_CLASS_COMMUNICATIONS
139 == PCI_SUBCLASS_COMMUNICATIONS_SERIAL
) {
140 pa
.pa_id
= pci_conf_read(pa
.pa_pc
, pa
.pa_tag
, PCI_ID_REG
);
141 subsys
= pci_conf_read(pa
.pa_pc
, pa
.pa_tag
,
156 desc
= puc_find_description(PCI_VENDOR(pa
.pa_id
),
157 PCI_PRODUCT(pa
.pa_id
), PCI_VENDOR(subsys
), PCI_PRODUCT(subsys
));
163 for (i
= 0; PUC_PORT_VALID(desc
, i
); i
++)
165 if (desc
->ports
[i
].type
!= PUC_PORT_TYPE_COM
)
167 base
= pci_conf_read(pa
.pa_pc
, pa
.pa_tag
, desc
->ports
[i
].bar
);
168 base
+= desc
->ports
[i
].offset
;
170 if (PCI_MAPREG_TYPE(base
) != PCI_MAPREG_TYPE_IO
)
172 base
= PCI_MAPREG_IO_ADDR(base
);
173 if (com_is_console(puctag
, base
, NULL
))
179 if (foundport
== 0) {
184 cn
->cn_pri
= CN_REMOTE
;
185 return PCI_MAPREG_IO_ADDR(base
);
189 void comgdbprobe(struct consdev
*);
190 void comgdbinit(struct consdev
*);
193 comgdbprobe(struct consdev
*cn
)
195 pucgdbbase
= pucprobe_doit(cn
);
199 comgdbinit(struct consdev
*cn
)
201 if (pucgdbbase
== 0) {
204 com_kgdb_attach(puctag
, pucgdbbase
, CONSPEED
, COM_FREQ
,
205 COM_TYPE_NORMAL
, CONMODE
);
210 comcnprobe(struct consdev
*cn
)
212 puccnbase
= pucprobe_doit(cn
);
216 comcninit(struct consdev
*cn
)
218 if (puccnbase
== 0) {
221 comcnattach(puctag
, puccnbase
, CONSPEED
, COM_FREQ
, COM_TYPE_NORMAL
,
225 /* comcngetc, comcnputc, comcnpollc provided by dev/ic/com.c */