1098ca2bdSWarner Losh /*-
2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
3718cf2ccSPedro F. Giffuni *
4f86e6000SWarner Losh * Copyright (c) 2008 TAKAHASHI Yoshihiro All rights reserved.
5f86e6000SWarner Losh * Copyright (c) 2008 Marcel Moolenaar All rights reserved.
6f86e6000SWarner Losh * Copyright (c) 2001 M. Warner Losh <imp@FreeBSD.org>
727d5dc18SMarcel Moolenaar *
827d5dc18SMarcel Moolenaar * Redistribution and use in source and binary forms, with or without
927d5dc18SMarcel Moolenaar * modification, are permitted provided that the following conditions
1027d5dc18SMarcel Moolenaar * are met:
1127d5dc18SMarcel Moolenaar * 1. Redistributions of source code must retain the above copyright
1227d5dc18SMarcel Moolenaar * notice, this list of conditions and the following disclaimer.
1327d5dc18SMarcel Moolenaar * 2. Redistributions in binary form must reproduce the above copyright
1427d5dc18SMarcel Moolenaar * notice, this list of conditions and the following disclaimer in the
1527d5dc18SMarcel Moolenaar * documentation and/or other materials provided with the distribution.
1627d5dc18SMarcel Moolenaar *
1727d5dc18SMarcel Moolenaar * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1827d5dc18SMarcel Moolenaar * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1927d5dc18SMarcel Moolenaar * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2027d5dc18SMarcel Moolenaar * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2127d5dc18SMarcel Moolenaar * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2227d5dc18SMarcel Moolenaar * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2327d5dc18SMarcel Moolenaar * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2427d5dc18SMarcel Moolenaar * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2527d5dc18SMarcel Moolenaar * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2627d5dc18SMarcel Moolenaar * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2727d5dc18SMarcel Moolenaar */
2827d5dc18SMarcel Moolenaar
2927d5dc18SMarcel Moolenaar #include <sys/param.h>
3027d5dc18SMarcel Moolenaar #include <sys/systm.h>
3127d5dc18SMarcel Moolenaar #include <sys/bus.h>
3227d5dc18SMarcel Moolenaar #include <sys/conf.h>
3327d5dc18SMarcel Moolenaar #include <sys/kernel.h>
3427d5dc18SMarcel Moolenaar #include <sys/module.h>
3527d5dc18SMarcel Moolenaar #include <machine/bus.h>
3627d5dc18SMarcel Moolenaar #include <sys/rman.h>
3727d5dc18SMarcel Moolenaar #include <machine/resource.h>
3827d5dc18SMarcel Moolenaar
3927d5dc18SMarcel Moolenaar #include <isa/isavar.h>
4027d5dc18SMarcel Moolenaar
4127d5dc18SMarcel Moolenaar #include <dev/uart/uart.h>
4227d5dc18SMarcel Moolenaar #include <dev/uart/uart_bus.h>
4327d5dc18SMarcel Moolenaar
4427d5dc18SMarcel Moolenaar static int uart_isa_probe(device_t dev);
4527d5dc18SMarcel Moolenaar
4627d5dc18SMarcel Moolenaar static device_method_t uart_isa_methods[] = {
4727d5dc18SMarcel Moolenaar /* Device interface */
4827d5dc18SMarcel Moolenaar DEVMETHOD(device_probe, uart_isa_probe),
4927d5dc18SMarcel Moolenaar DEVMETHOD(device_attach, uart_bus_attach),
5027d5dc18SMarcel Moolenaar DEVMETHOD(device_detach, uart_bus_detach),
515b23b1b9SAndriy Gapon DEVMETHOD(device_resume, uart_bus_resume),
5227d5dc18SMarcel Moolenaar { 0, 0 }
5327d5dc18SMarcel Moolenaar };
5427d5dc18SMarcel Moolenaar
5527d5dc18SMarcel Moolenaar static driver_t uart_isa_driver = {
5627d5dc18SMarcel Moolenaar uart_driver_name,
5727d5dc18SMarcel Moolenaar uart_isa_methods,
5827d5dc18SMarcel Moolenaar sizeof(struct uart_softc),
5927d5dc18SMarcel Moolenaar };
6027d5dc18SMarcel Moolenaar
6127d5dc18SMarcel Moolenaar static struct isa_pnp_id isa_ns8250_ids[] = {
6227d5dc18SMarcel Moolenaar {0x0005d041, "Standard PC COM port"}, /* PNP0500 */
6327d5dc18SMarcel Moolenaar {0x0105d041, "16550A-compatible COM port"}, /* PNP0501 */
6427d5dc18SMarcel Moolenaar {0x0205d041, "Multiport serial device (non-intelligent 16550)"}, /* PNP0502 */
6527d5dc18SMarcel Moolenaar {0x1005d041, "Generic IRDA-compatible device"}, /* PNP0510 */
6627d5dc18SMarcel Moolenaar {0x1105d041, "Generic IRDA-compatible device"}, /* PNP0511 */
6727d5dc18SMarcel Moolenaar /* Devices that do not have a compatid */
6827d5dc18SMarcel Moolenaar {0x12206804, NULL}, /* ACH2012 - 5634BTS 56K Video Ready Modem */
6927d5dc18SMarcel Moolenaar {0x7602a904, NULL}, /* AEI0276 - 56K v.90 Fax Modem (LKT) */
7027d5dc18SMarcel Moolenaar {0x00007905, NULL}, /* AKY0000 - 56K Plug&Play Modem */
7127d5dc18SMarcel Moolenaar {0x21107905, NULL}, /* AKY1021 - 56K Plug&Play Modem */
7227d5dc18SMarcel Moolenaar {0x01405407, NULL}, /* AZT4001 - AZT3000 PnP SOUND DEVICE, MODEM */
7327d5dc18SMarcel Moolenaar {0x56039008, NULL}, /* BDP0356 - Best Data 56x2 */
7427d5dc18SMarcel Moolenaar {0x56159008, NULL}, /* BDP1556 - B.D. Smart One 56SPS,Voice Modem*/
7527d5dc18SMarcel Moolenaar {0x36339008, NULL}, /* BDP3336 - Best Data Prods. 336F */
7627d5dc18SMarcel Moolenaar {0x0014490a, NULL}, /* BRI1400 - Boca 33.6 PnP */
7727d5dc18SMarcel Moolenaar {0x0015490a, NULL}, /* BRI1500 - Internal Fax Data */
7827d5dc18SMarcel Moolenaar {0x0034490a, NULL}, /* BRI3400 - Internal ACF Modem */
7927d5dc18SMarcel Moolenaar {0x0094490a, NULL}, /* BRI9400 - Boca K56Flex PnP */
8027d5dc18SMarcel Moolenaar {0x00b4490a, NULL}, /* BRIB400 - Boca 56k PnP */
819445dd3bSEitan Adler {0x0010320d, NULL}, /* CIR1000 - Cirrus Logic V34 */
8227d5dc18SMarcel Moolenaar {0x0030320d, NULL}, /* CIR3000 - Cirrus Logic V43 */
8327d5dc18SMarcel Moolenaar {0x0100440e, NULL}, /* CRD0001 - Cardinal MVP288IV ? */
8427d5dc18SMarcel Moolenaar {0x01308c0e, NULL}, /* CTL3001 - Creative Labs Phoneblaster */
8527d5dc18SMarcel Moolenaar {0x36033610, NULL}, /* DAV0336 - DAVICOM 336PNP MODEM */
8627d5dc18SMarcel Moolenaar {0x01009416, NULL}, /* ETT0001 - E-Tech Bullet 33k6 PnP */
8727d5dc18SMarcel Moolenaar {0x0000aa1a, NULL}, /* FUJ0000 - FUJITSU Modem 33600 PNP/I2 */
8827d5dc18SMarcel Moolenaar {0x1200c31e, NULL}, /* GVC0012 - VF1128HV-R9 (win modem?) */
8927d5dc18SMarcel Moolenaar {0x0303c31e, NULL}, /* GVC0303 - MaxTech 33.6 PnP D/F/V */
9027d5dc18SMarcel Moolenaar {0x0505c31e, NULL}, /* GVC0505 - GVC 56k Faxmodem */
9127d5dc18SMarcel Moolenaar {0x0116c31e, NULL}, /* GVC1601 - Rockwell V.34 Plug & Play Modem */
9227d5dc18SMarcel Moolenaar {0x0050c31e, NULL}, /* GVC5000 - some GVC modem */
9327d5dc18SMarcel Moolenaar {0x3800f91e, NULL}, /* GWY0038 - Telepath with v.90 */
9427d5dc18SMarcel Moolenaar {0x9062f91e, NULL}, /* GWY6290 - Telepath with x2 Technology */
9527d5dc18SMarcel Moolenaar {0x8100e425, NULL}, /* IOD0081 - I-O DATA DEVICE,INC. IFML-560 */
9627d5dc18SMarcel Moolenaar {0x71004d24, NULL}, /* IBM0071 - IBM ThinkPad 240 IrDA controller*/
9727d5dc18SMarcel Moolenaar {0x21002534, NULL}, /* MAE0021 - Jetstream Int V.90 56k Voice Series 2*/
9827d5dc18SMarcel Moolenaar {0x0000f435, NULL}, /* MOT0000 - Motorola ModemSURFR 33.6 Intern */
9927d5dc18SMarcel Moolenaar {0x5015f435, NULL}, /* MOT1550 - Motorola ModemSURFR 56K Modem */
10027d5dc18SMarcel Moolenaar {0xf015f435, NULL}, /* MOT15F0 - Motorola VoiceSURFR 56K Modem */
10127d5dc18SMarcel Moolenaar {0x6045f435, NULL}, /* MOT4560 - Motorola ? */
10227d5dc18SMarcel Moolenaar {0x61e7a338, NULL}, /* NECE761 - 33.6Modem */
10327d5dc18SMarcel Moolenaar {0x0160633a, NULL}, /* NSC6001 - National Semi's IrDA Controller*/
10427d5dc18SMarcel Moolenaar {0x08804f3f, NULL}, /* OZO8008 - Zoom (33.6k Modem) */
10527d5dc18SMarcel Moolenaar {0x0f804f3f, NULL}, /* OZO800f - Zoom 2812 (56k Modem) */
10627d5dc18SMarcel Moolenaar {0x39804f3f, NULL}, /* OZO8039 - Zoom 56k flex */
10727d5dc18SMarcel Moolenaar {0x00914f3f, NULL}, /* OZO9100 - Zoom 2919 (K56 Faxmodem) */
10827d5dc18SMarcel Moolenaar {0x3024a341, NULL}, /* PMC2430 - Pace 56 Voice Internal Modem */
10927d5dc18SMarcel Moolenaar {0x1000eb49, NULL}, /* ROK0010 - Rockwell ? */
11027d5dc18SMarcel Moolenaar {0x1200b23d, NULL}, /* RSS0012 - OMRON ME5614ISA */
11127d5dc18SMarcel Moolenaar {0x5002734a, NULL}, /* RSS0250 - 5614Jx3(G) Internal Modem */
11227d5dc18SMarcel Moolenaar {0x6202734a, NULL}, /* RSS0262 - 5614Jx3[G] V90+K56Flex Modem */
11327d5dc18SMarcel Moolenaar {0x1010104d, NULL}, /* SHP1010 - Rockwell 33600bps Modem */
11427d5dc18SMarcel Moolenaar {0x10f0a34d, NULL}, /* SMCF010 - SMC IrCC*/
11527d5dc18SMarcel Moolenaar {0xc100ad4d, NULL}, /* SMM00C1 - Leopard 56k PnP */
11627d5dc18SMarcel Moolenaar {0x9012b04e, NULL}, /* SUP1290 - Supra ? */
11727d5dc18SMarcel Moolenaar {0x1013b04e, NULL}, /* SUP1310 - SupraExpress 336i PnP */
11827d5dc18SMarcel Moolenaar {0x8013b04e, NULL}, /* SUP1380 - SupraExpress 288i PnP Voice */
11927d5dc18SMarcel Moolenaar {0x8113b04e, NULL}, /* SUP1381 - SupraExpress 336i PnP Voice */
12027d5dc18SMarcel Moolenaar {0x5016b04e, NULL}, /* SUP1650 - Supra 336i Sp Intl */
12127d5dc18SMarcel Moolenaar {0x7016b04e, NULL}, /* SUP1670 - Supra 336i V+ Intl */
12227d5dc18SMarcel Moolenaar {0x7420b04e, NULL}, /* SUP2070 - Supra ? */
12327d5dc18SMarcel Moolenaar {0x8020b04e, NULL}, /* SUP2080 - Supra ? */
12427d5dc18SMarcel Moolenaar {0x8420b04e, NULL}, /* SUP2084 - SupraExpress 56i PnP */
12527d5dc18SMarcel Moolenaar {0x7121b04e, NULL}, /* SUP2171 - SupraExpress 56i Sp? */
12627d5dc18SMarcel Moolenaar {0x8024b04e, NULL}, /* SUP2480 - Supra ? */
12727d5dc18SMarcel Moolenaar {0x01007256, NULL}, /* USR0001 - U.S. Robotics Inc., Sportster W */
12827d5dc18SMarcel Moolenaar {0x02007256, NULL}, /* USR0002 - U.S. Robotics Inc. Sportster 33. */
12927d5dc18SMarcel Moolenaar {0x04007256, NULL}, /* USR0004 - USR Sportster 14.4k */
13027d5dc18SMarcel Moolenaar {0x06007256, NULL}, /* USR0006 - USR Sportster 33.6k */
13127d5dc18SMarcel Moolenaar {0x11007256, NULL}, /* USR0011 - USR ? */
13227d5dc18SMarcel Moolenaar {0x01017256, NULL}, /* USR0101 - USR ? */
13327d5dc18SMarcel Moolenaar {0x30207256, NULL}, /* USR2030 - U.S.Robotics Inc. Sportster 560 */
13427d5dc18SMarcel Moolenaar {0x50207256, NULL}, /* USR2050 - U.S.Robotics Inc. Sportster 33. */
13527d5dc18SMarcel Moolenaar {0x70207256, NULL}, /* USR2070 - U.S.Robotics Inc. Sportster 560 */
13627d5dc18SMarcel Moolenaar {0x30307256, NULL}, /* USR3030 - U.S. Robotics 56K FAX INT */
13727d5dc18SMarcel Moolenaar {0x31307256, NULL}, /* USR3031 - U.S. Robotics 56K FAX INT */
13827d5dc18SMarcel Moolenaar {0x50307256, NULL}, /* USR3050 - U.S. Robotics 56K FAX INT */
13927d5dc18SMarcel Moolenaar {0x70307256, NULL}, /* USR3070 - U.S. Robotics 56K Voice INT */
14027d5dc18SMarcel Moolenaar {0x90307256, NULL}, /* USR3090 - USR ? */
14127d5dc18SMarcel Moolenaar {0x70917256, NULL}, /* USR9170 - U.S. Robotics 56K FAX INT */
14227d5dc18SMarcel Moolenaar {0x90917256, NULL}, /* USR9190 - USR 56k Voice INT */
14327d5dc18SMarcel Moolenaar {0x04f0235c, NULL}, /* WACF004 - Wacom Tablet PC Screen */
14443597fd5SIan Lepore {0x0ef0235c, NULL}, /* WACF00e - Wacom Tablet PC Screen 00e */
14527d5dc18SMarcel Moolenaar {0x0300695c, NULL}, /* WCI0003 - Fax/Voice/Modem/Speakphone/Asvd */
14627d5dc18SMarcel Moolenaar {0x01a0896a, NULL}, /* ZTIA001 - Zoom Internal V90 Faxmodem */
14727d5dc18SMarcel Moolenaar {0x61f7896a, NULL}, /* ZTIF761 - Zoom ComStar 33.6 */
14827d5dc18SMarcel Moolenaar {0}
14927d5dc18SMarcel Moolenaar };
15027d5dc18SMarcel Moolenaar
15127d5dc18SMarcel Moolenaar static int
uart_isa_probe(device_t dev)15227d5dc18SMarcel Moolenaar uart_isa_probe(device_t dev)
15327d5dc18SMarcel Moolenaar {
15427d5dc18SMarcel Moolenaar struct uart_softc *sc;
15527d5dc18SMarcel Moolenaar device_t parent;
15627d5dc18SMarcel Moolenaar
15727d5dc18SMarcel Moolenaar parent = device_get_parent(dev);
15827d5dc18SMarcel Moolenaar sc = device_get_softc(dev);
15927d5dc18SMarcel Moolenaar
16081df65c3SYoshihiro Takahashi /* Check PnP IDs */
16181df65c3SYoshihiro Takahashi if (ISA_PNP_PROBE(parent, dev, isa_ns8250_ids) == ENXIO)
1628f0882f5SMarius Strobl return (ENXIO);
16381df65c3SYoshihiro Takahashi
16481df65c3SYoshihiro Takahashi /* Probe PnP _and_ non-PnP ns8250 here. */
16581df65c3SYoshihiro Takahashi sc->sc_class = &uart_ns8250_class;
1662b375b4eSYoshihiro Takahashi
167381388b9SMatt Macy return (uart_bus_probe(dev, 0, 0, 0, 0, 0, 0));
16827d5dc18SMarcel Moolenaar }
16927d5dc18SMarcel Moolenaar
170c90ea831SJohn Baldwin DRIVER_MODULE(uart, isa, uart_isa_driver, 0, 0);
1715fe4723cSWarner Losh ISA_PNP_INFO(isa_ns8250_ids);
172