Remove redundant settings. These are the same in /etc/defaults/rc.conf.
[dragonfly.git] / sys / dev / serial / si / si_eisa.c
1 /*
2  * Device driver for Specialix range (SI/XIO) of serial line multiplexors.
3  *
4  * Copyright (C) 2000, Peter Wemm <peter@netplex.com.au>
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notices, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notices, 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 ``AS IS'' AND ANY EXPRESS OR IMPLIED
16  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
17  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
18  * NO EVENT SHALL THE AUTHORS BE LIABLE.
19  *
20  * $FreeBSD: src/sys/dev/si/si_eisa.c,v 1.1 2000/01/24 07:24:01 peter Exp $
21  * $DragonFly: src/sys/dev/serial/si/si_eisa.c,v 1.6 2006/10/25 20:56:02 dillon Exp $
22  */
23
24 #include <sys/param.h>
25 #include <sys/systm.h>
26 #include <sys/proc.h>
27 #include <sys/kernel.h>
28 #include <sys/bus.h>
29 #include <sys/rman.h>
30
31 #include "sireg.h"
32 #include "sivar.h"
33
34 #include <bus/eisa/eisaconf.h>
35
36 static int
37 si_eisa_probe(device_t dev)
38 {
39         u_long iobase;
40         u_long maddr;
41         int irq;
42
43         if (eisa_get_id(dev) != SIEISADEVID)
44                 return ENXIO;
45
46         device_set_desc(dev, "Specialix SI/XIO EISA host card");
47         
48         iobase = (eisa_get_slot(dev) * EISA_SLOT_SIZE) + SIEISABASE;
49         eisa_add_iospace(dev, iobase, SIEISAIOSIZE, RESVADDR_NONE);
50
51         maddr = (inb(iobase+1) << 24) | (inb(iobase) << 16);
52         eisa_add_mspace(dev, maddr, SIEISA_MEMSIZE, RESVADDR_NONE);
53
54         irq  = ((inb(iobase+2) >> 4) & 0xf);
55         eisa_add_intr(dev, irq, EISA_TRIGGER_LEVEL);    /* XXX shared? */
56
57         return (0);
58 }
59
60 static int
61 si_eisa_attach(device_t dev)
62 {
63         struct si_softc *sc;
64         void *ih;
65         int error;
66
67         error = 0;
68         ih = NULL;
69         sc = device_get_softc(dev);
70
71         sc->sc_type = SIEISA;
72
73         sc->sc_port_rid = 0;
74         sc->sc_port_res = bus_alloc_resource(dev, SYS_RES_IOPORT,
75                                              &sc->sc_port_rid,
76                                              0, ~0, 1, RF_ACTIVE);
77         if (!sc->sc_port_res) {
78                 device_printf(dev, "couldn't allocate ioports\n");
79                 goto fail;
80         }
81         sc->sc_iobase = rman_get_start(sc->sc_port_res);
82
83         sc->sc_mem_rid = 0;
84         sc->sc_mem_res = bus_alloc_resource(dev, SYS_RES_MEMORY,
85                                             &sc->sc_mem_rid,
86                                             0, ~0, 1, RF_ACTIVE);
87         if (!sc->sc_mem_res) {
88                 device_printf(dev, "couldn't allocate iomemory");
89                 goto fail;
90         }
91         sc->sc_paddr = (caddr_t)rman_get_start(sc->sc_mem_res);
92         sc->sc_maddr = rman_get_virtual(sc->sc_mem_res);
93
94         sc->sc_irq_rid = 0;
95         sc->sc_irq_res = bus_alloc_resource(dev, SYS_RES_IRQ, &sc->sc_irq_rid,
96                                             0, ~0, 1, RF_ACTIVE | RF_SHAREABLE);
97         if (!sc->sc_irq_res) {
98                 device_printf(dev, "couldn't allocate interrupt");
99                 goto fail;
100         }
101         sc->sc_irq = rman_get_start(sc->sc_irq_res);
102         error = bus_setup_intr(dev, sc->sc_irq_res, INTR_MPSAFE, si_intr, sc, &ih, NULL);
103         if (error) {
104                 device_printf(dev, "couldn't activate interrupt");
105                 goto fail;
106         }
107
108         error = siattach(dev);
109         if (error)
110                 goto fail;
111         return (0);             /* success */
112
113 fail:
114         if (error == 0)
115                 error = ENXIO;
116         if (sc->sc_irq_res) {
117                 if (ih)
118                         bus_teardown_intr(dev, sc->sc_irq_res, ih);
119                 bus_release_resource(dev, SYS_RES_IRQ,
120                                      sc->sc_irq_rid, sc->sc_irq_res);
121                 sc->sc_irq_res = 0;
122         }
123         if (sc->sc_mem_res) {
124                 bus_release_resource(dev, SYS_RES_MEMORY,
125                                      sc->sc_mem_rid, sc->sc_mem_res);
126                 sc->sc_mem_res = 0;
127         }
128         if (sc->sc_port_res) {
129                 bus_release_resource(dev, SYS_RES_IOPORT,
130                                      sc->sc_port_rid, sc->sc_port_res);
131                 sc->sc_port_res = 0;
132         }
133         return (error);
134 }
135
136 static device_method_t si_eisa_methods[] = {
137         /* Device interface */
138         DEVMETHOD(device_probe,         si_eisa_probe),
139         DEVMETHOD(device_attach,        si_eisa_attach),
140
141         { 0, 0 }
142 };
143
144 static driver_t si_eisa_driver = {
145         "si",
146         si_eisa_methods,
147         sizeof(struct si_softc),
148 };
149
150 DRIVER_MODULE(si, eisa, si_eisa_driver, si_devclass, 0, 0);