]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/mips/sentry5/obio.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sys / mips / sentry5 / obio.c
1 /*      $NetBSD: obio.c,v 1.11 2003/07/15 00:25:05 lukem Exp $  */
2
3 /*-
4  * Copyright (c) 2001, 2002, 2003 Wasabi Systems, Inc.
5  * All rights reserved.
6  *
7  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. All advertising materials mentioning features or use of this software
18  *    must display the following acknowledgement:
19  *      This product includes software developed for the NetBSD Project by
20  *      Wasabi Systems, Inc.
21  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22  *    or promote products derived from this software without specific prior
23  *    written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
29  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35  * POSSIBILITY OF SUCH DAMAGE.
36  */
37
38 /*
39  * On-board device autoconfiguration support for Broadcom Sentry5
40  * based boards.
41  * XXX This is totally bogus and is just enough to get the console hopefully
42  * running on the sentry5.
43  */
44
45 #include <sys/cdefs.h>
46 __FBSDID("$FreeBSD$");
47
48 #include <sys/param.h>
49 #include <sys/systm.h>
50 #include <sys/bus.h>
51 #include <sys/kernel.h>
52 #include <sys/module.h>
53 #include <sys/rman.h>
54 #include <sys/malloc.h>
55
56 #include <machine/bus.h>
57
58 #include <mips/sentry5/obiovar.h>
59 #include <mips/sentry5/sentry5reg.h>
60
61 int     obio_probe(device_t);
62 int     obio_attach(device_t);
63
64 /*
65  * A bit tricky and hackish. Since we need OBIO to rely
66  * on PCI we make it pseudo-pci device. But there should 
67  * be only one such device, so we use this static flag 
68  * to prevent false positives on every realPCI device probe. 
69  */
70 static int have_one = 0;
71
72 int
73 obio_probe(device_t dev)
74 {
75         if(!have_one)
76         {
77                 have_one = 1;
78                 return 0;
79         }
80         else
81                 return (ENXIO);
82 }
83
84 int
85 obio_attach(device_t dev)
86 {
87         struct obio_softc *sc = device_get_softc(dev);
88
89         sc->oba_st = MIPS_BUS_SPACE_IO;
90         sc->oba_addr = MIPS_PHYS_TO_KSEG1(SENTRY5_UART1ADR);
91         sc->oba_size = 0x03FFFFFF;      /* XXX sb pci bus 0 aperture size? */
92         sc->oba_rman.rm_type = RMAN_ARRAY;
93         sc->oba_rman.rm_descr = "OBIO I/O";
94         if (rman_init(&sc->oba_rman) != 0 ||
95             rman_manage_region(&sc->oba_rman,
96             sc->oba_addr, sc->oba_addr + sc->oba_size) != 0)
97                 panic("obio_attach: failed to set up I/O rman");
98         sc->oba_irq_rman.rm_type = RMAN_ARRAY;
99         sc->oba_irq_rman.rm_descr = "OBIO IRQ";
100
101         /* 
102          * This module is intended for UART purposes only and
103          * it's IRQ is 4
104          */
105         if (rman_init(&sc->oba_irq_rman) != 0 ||
106             rman_manage_region(&sc->oba_irq_rman, 4, 4) != 0)
107                 panic("obio_attach: failed to set up IRQ rman");
108
109         device_add_child(dev, "uart", 0);
110         bus_generic_probe(dev);
111         bus_generic_attach(dev);
112
113         return (0);
114 }
115
116 static struct resource *
117 obio_alloc_resource(device_t bus, device_t child, int type, int *rid,
118     u_long start, u_long end, u_long count, u_int flags)
119 {
120         struct resource *rv;
121         struct rman *rm;
122         bus_space_tag_t bt = 0;
123         bus_space_handle_t bh = 0;
124         struct obio_softc *sc = device_get_softc(bus);
125
126         switch (type) {
127         case SYS_RES_IRQ:
128                 rm = &sc->oba_irq_rman;
129                 break;
130         case SYS_RES_MEMORY:
131                 return (NULL);
132         case SYS_RES_IOPORT:
133                 rm = &sc->oba_rman;
134                 bt = sc->oba_st;
135                 bh = sc->oba_addr;
136                 start = bh;
137                 break;
138         default:
139                 return (NULL);
140         }
141
142
143         rv = rman_reserve_resource(rm, start, end, count, flags, child);
144         if (rv == NULL) 
145                 return (NULL);
146         if (type == SYS_RES_IRQ)
147                 return (rv);
148         rman_set_rid(rv, *rid);
149         rman_set_bustag(rv, bt);
150         rman_set_bushandle(rv, bh);
151         
152         if (0) {
153                 if (bus_activate_resource(child, type, *rid, rv)) {
154                         rman_release_resource(rv);
155                         return (NULL);
156                 }
157         }
158         return (rv);
159
160 }
161
162 static int
163 obio_activate_resource(device_t bus, device_t child, int type, int rid,
164     struct resource *r)
165 {
166         return (0);
167 }
168 static device_method_t obio_methods[] = {
169         DEVMETHOD(device_probe, obio_probe),
170         DEVMETHOD(device_attach, obio_attach),
171
172         DEVMETHOD(bus_alloc_resource, obio_alloc_resource),
173         DEVMETHOD(bus_activate_resource, obio_activate_resource),
174         DEVMETHOD(bus_setup_intr,       bus_generic_setup_intr),
175         DEVMETHOD(bus_teardown_intr,    bus_generic_teardown_intr),
176
177         {0, 0},
178 };
179
180 static driver_t obio_driver = {
181         "obio",
182         obio_methods,
183         sizeof(struct obio_softc),
184 };
185 static devclass_t obio_devclass;
186
187 DRIVER_MODULE(obio, pci, obio_driver, obio_devclass, 0, 0);