]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm/arm/nexus.c
This commit was generated by cvs2svn to compensate for changes in r170964,
[FreeBSD/FreeBSD.git] / sys / arm / arm / nexus.c
1 /*-
2  * Copyright 1998 Massachusetts Institute of Technology
3  *
4  * Permission to use, copy, modify, and distribute this software and
5  * its documentation for any purpose and without fee is hereby
6  * granted, provided that both the above copyright notice and this
7  * permission notice appear in all copies, that both the above
8  * copyright notice and this permission notice appear in all
9  * supporting documentation, and that the name of M.I.T. not be used
10  * in advertising or publicity pertaining to distribution of the
11  * software without specific, written prior permission.  M.I.T. makes
12  * no representations about the suitability of this software for any
13  * purpose.  It is provided "as is" without express or implied
14  * warranty.
15  * 
16  * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''.  M.I.T. DISCLAIMS
17  * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
18  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
20  * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  */
30
31 /*
32  * This code implements a `root nexus' for Arm Architecture
33  * machines.  The function of the root nexus is to serve as an
34  * attachment point for both processors and buses, and to manage
35  * resources which are common to all of them.  In particular,
36  * this code implements the core resource managers for interrupt
37  * requests, DMA requests (which rightfully should be a part of the
38  * ISA code but it's easier to do it here for now), I/O port addresses,
39  * and I/O memory address space.
40  */
41
42 #include <sys/cdefs.h>
43 __FBSDID("$FreeBSD$");
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/bus.h>
48 #include <sys/kernel.h>
49 #include <sys/malloc.h>
50 #include <sys/module.h>
51 #include <machine/bus.h>
52 #include <sys/rman.h>
53 #include <sys/interrupt.h>
54
55 #include <machine/vmparam.h>
56 #include <machine/pcb.h>
57 #include <vm/vm.h>
58 #include <vm/pmap.h>
59 #include <machine/pmap.h>
60
61 #include <machine/resource.h>
62 #include <machine/intr.h>
63
64 static MALLOC_DEFINE(M_NEXUSDEV, "nexusdev", "Nexus device");
65
66 struct nexus_device {
67         struct resource_list    nx_resources;
68 };
69
70 #define DEVTONX(dev)    ((struct nexus_device *)device_get_ivars(dev))
71
72 static struct rman mem_rman;
73
74 static  int nexus_probe(device_t);
75 static  int nexus_attach(device_t);
76 static  int nexus_print_child(device_t, device_t);
77 static  device_t nexus_add_child(device_t, int, const char *, int);
78 static  struct resource *nexus_alloc_resource(device_t, device_t, int, int *,
79         u_long, u_long, u_long, u_int);
80 static  int nexus_activate_resource(device_t, device_t, int, int,
81         struct resource *);
82 static int
83 nexus_setup_intr(device_t dev, device_t child, struct resource *res, int flags,
84         driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep);
85 static int
86 nexus_teardown_intr(device_t, device_t, struct resource *, void *);
87
88 static device_method_t nexus_methods[] = {
89         /* Device interface */
90         DEVMETHOD(device_probe,         nexus_probe),
91         DEVMETHOD(device_attach,        nexus_attach),
92         /* Bus interface */
93         DEVMETHOD(bus_print_child,      nexus_print_child),
94         DEVMETHOD(bus_add_child,        nexus_add_child),
95         DEVMETHOD(bus_alloc_resource,   nexus_alloc_resource),
96         DEVMETHOD(bus_activate_resource,        nexus_activate_resource),
97         DEVMETHOD(bus_setup_intr,       nexus_setup_intr),
98         DEVMETHOD(bus_teardown_intr,    nexus_teardown_intr),
99         { 0, 0 }
100 };
101
102 static driver_t nexus_driver = {
103         "nexus",
104         nexus_methods,
105         1                       /* no softc */
106 };
107 static devclass_t nexus_devclass;
108
109 static int
110 nexus_probe(device_t dev)
111 {
112         device_quiet(dev);      /* suppress attach message for neatness */
113                 
114         mem_rman.rm_start = 0;
115         mem_rman.rm_end = ~0u;
116         mem_rman.rm_type = RMAN_ARRAY;
117         mem_rman.rm_descr = "I/O memory addresses";
118         if (rman_init(&mem_rman)
119                 || rman_manage_region(&mem_rman, 0, ~0u))
120                 panic("nexus_probe mem_rman");
121                 
122         return (0);
123         return bus_generic_probe(dev);
124 }
125
126 static int
127 nexus_setup_intr(device_t dev, device_t child, struct resource *res, int flags,
128     driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep)
129 {
130         int i;
131
132         for (i = rman_get_start(res); i <= rman_get_end(res); i++)
133                 arm_setup_irqhandler(device_get_nameunit(child), 
134                     filt, intr, arg, i, flags, cookiep);
135         return (0);
136 }
137
138 static int
139 nexus_teardown_intr(device_t dev, device_t child, struct resource *r, void *ih)
140 {
141         int error;
142         int i;
143
144         for (i = rman_get_start(r); i <= rman_get_end(r); i++)
145                 arm_mask_irq(i);
146         error = arm_remove_irqhandler(ih);
147         return (error);
148 }
149
150 static int
151 nexus_attach(device_t dev)
152 {
153         /*
154          * First, deal with the children we know about already
155          */
156         bus_generic_probe(dev);
157         bus_generic_attach(dev);
158         
159         return 0;
160 }
161
162
163 static int
164 nexus_print_child(device_t bus, device_t child)
165 {
166         int retval = 0;
167         
168         retval += bus_print_child_header(bus, child);
169         retval += printf(" on motherboard\n");  /* XXX "motherboard", ick */
170         
171         return (retval);
172 }
173
174
175 static device_t
176 nexus_add_child(device_t bus, int order, const char *name, int unit)
177 {
178         device_t        child;
179         struct nexus_device *ndev;
180         
181         ndev = malloc(sizeof(struct nexus_device), M_NEXUSDEV, M_NOWAIT|M_ZERO);
182         if (!ndev)
183                 return(0);
184         resource_list_init(&ndev->nx_resources);
185
186         child = device_add_child_ordered(bus, order, name, unit);
187         
188         /* should we free this in nexus_child_detached? */
189         device_set_ivars(child, ndev);
190         
191         return(child);
192 }
193
194
195 /*
196  * Allocate a resource on behalf of child.  NB: child is usually going to be a
197  * child of one of our descendants, not a direct child of nexus0.
198  * (Exceptions include footbridge.)
199  */
200 #define ARM_BUS_SPACE_MEM 1
201 static struct resource *
202 nexus_alloc_resource(device_t bus, device_t child, int type, int *rid,
203         u_long start, u_long end, u_long count, u_int flags)
204 {
205         struct resource *rv;
206         struct rman *rm;
207         int needactivate = flags & RF_ACTIVE;
208
209         switch (type) {
210         case SYS_RES_MEMORY:
211                 rm = &mem_rman;
212                 break;
213                 
214         default:
215                 return 0;
216         }
217
218         rv = rman_reserve_resource(rm, start, end, count, flags, child);
219         if (rv == 0)
220                 return 0;
221
222         rman_set_rid(rv, *rid);
223         rman_set_bustag(rv, (void*)ARM_BUS_SPACE_MEM);
224         rman_set_bushandle(rv, rman_get_start(rv));             
225         
226         if (needactivate) {
227                 if (bus_activate_resource(child, type, *rid, rv)) {
228                         rman_release_resource(rv);
229                         return 0;
230                 }
231         }
232         
233         return rv;
234 }
235
236
237 static int
238 nexus_activate_resource(device_t bus, device_t child, int type, int rid,
239         struct resource *r)
240 {
241         /*
242          * If this is a memory resource, map it into the kernel.
243          */
244         if (rman_get_bustag(r) == (void*)ARM_BUS_SPACE_MEM) {
245                 caddr_t vaddr = 0;
246                 u_int32_t paddr;
247                 u_int32_t psize;
248                 u_int32_t poffs;
249                 
250                 paddr = rman_get_start(r);
251                 psize = rman_get_size(r);
252                 poffs = paddr - trunc_page(paddr);
253                 vaddr = (caddr_t) pmap_mapdev(paddr-poffs, psize+poffs) + poffs;
254                 rman_set_virtual(r, vaddr);
255                 rman_set_bushandle(r, (bus_space_handle_t) vaddr);
256         }
257         return (rman_activate_resource(r));
258 }
259
260 DRIVER_MODULE(nexus, root, nexus_driver, nexus_devclass, 0, 0);