]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm/arm/nexus.c
MFH
[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 "opt_platform.h"
43
44 #include <sys/cdefs.h>
45 __FBSDID("$FreeBSD$");
46
47 #include <sys/param.h>
48 #include <sys/systm.h>
49 #include <sys/bus.h>
50 #include <sys/kernel.h>
51 #include <sys/malloc.h>
52 #include <sys/module.h>
53 #include <machine/bus.h>
54 #include <sys/rman.h>
55 #include <sys/interrupt.h>
56
57 #include <machine/vmparam.h>
58 #include <machine/pcb.h>
59 #include <vm/vm.h>
60 #include <vm/pmap.h>
61
62 #include <machine/resource.h>
63 #include <machine/intr.h>
64
65 #ifdef FDT
66 #include <machine/fdt.h>
67 #include "ofw_bus_if.h"
68 #endif
69
70 static MALLOC_DEFINE(M_NEXUSDEV, "nexusdev", "Nexus device");
71
72 struct nexus_device {
73         struct resource_list    nx_resources;
74 };
75
76 #define DEVTONX(dev)    ((struct nexus_device *)device_get_ivars(dev))
77
78 static struct rman mem_rman;
79
80 static  int nexus_probe(device_t);
81 static  int nexus_attach(device_t);
82 static  int nexus_print_child(device_t, device_t);
83 static  device_t nexus_add_child(device_t, u_int, const char *, int);
84 static  struct resource *nexus_alloc_resource(device_t, device_t, int, int *,
85     rman_res_t, rman_res_t, rman_res_t, u_int);
86 static  int nexus_activate_resource(device_t, device_t, int, int,
87     struct resource *);
88 static bus_space_tag_t nexus_get_bus_tag(device_t, device_t);
89 #ifdef ARM_INTRNG
90 #ifdef SMP
91 static  int nexus_bind_intr(device_t, device_t, struct resource *, int);
92 #endif
93 #endif
94 static int nexus_config_intr(device_t dev, int irq, enum intr_trigger trig,
95     enum intr_polarity pol);
96 #ifdef ARM_INTRNG
97 static  int nexus_describe_intr(device_t dev, device_t child,
98     struct resource *irq, void *cookie, const char *descr);
99 #endif
100 static  int nexus_deactivate_resource(device_t, device_t, int, int,
101     struct resource *);
102 static int nexus_release_resource(device_t, device_t, int, int,
103     struct resource *);
104
105 static int nexus_setup_intr(device_t dev, device_t child, struct resource *res,
106     int flags, driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep);
107 static int nexus_teardown_intr(device_t, device_t, struct resource *, void *);
108
109 #ifdef FDT
110 static int nexus_ofw_map_intr(device_t dev, device_t child, phandle_t iparent,
111     int icells, pcell_t *intr);
112 #endif
113
114 static device_method_t nexus_methods[] = {
115         /* Device interface */
116         DEVMETHOD(device_probe,         nexus_probe),
117         DEVMETHOD(device_attach,        nexus_attach),
118         /* Bus interface */
119         DEVMETHOD(bus_print_child,      nexus_print_child),
120         DEVMETHOD(bus_add_child,        nexus_add_child),
121         DEVMETHOD(bus_alloc_resource,   nexus_alloc_resource),
122         DEVMETHOD(bus_activate_resource,        nexus_activate_resource),
123         DEVMETHOD(bus_config_intr,      nexus_config_intr),
124         DEVMETHOD(bus_deactivate_resource,      nexus_deactivate_resource),
125         DEVMETHOD(bus_release_resource, nexus_release_resource),
126         DEVMETHOD(bus_setup_intr,       nexus_setup_intr),
127         DEVMETHOD(bus_teardown_intr,    nexus_teardown_intr),
128         DEVMETHOD(bus_get_bus_tag,      nexus_get_bus_tag),
129 #ifdef ARM_INTRNG
130         DEVMETHOD(bus_describe_intr,    nexus_describe_intr),
131 #ifdef SMP
132         DEVMETHOD(bus_bind_intr,        nexus_bind_intr),
133 #endif
134 #endif
135 #ifdef FDT
136         DEVMETHOD(ofw_bus_map_intr,     nexus_ofw_map_intr),
137 #endif
138         { 0, 0 }
139 };
140
141 static devclass_t nexus_devclass;
142 static driver_t nexus_driver = {
143         "nexus",
144         nexus_methods,
145         1                       /* no softc */
146 };
147 EARLY_DRIVER_MODULE(nexus, root, nexus_driver, nexus_devclass, 0, 0,
148     BUS_PASS_BUS + BUS_PASS_ORDER_EARLY);
149
150 static int
151 nexus_probe(device_t dev)
152 {
153
154         device_quiet(dev);      /* suppress attach message for neatness */
155
156         return (BUS_PROBE_DEFAULT);
157 }
158
159 static int
160 nexus_attach(device_t dev)
161 {
162
163         mem_rman.rm_start = 0;
164         mem_rman.rm_end = ~0ul;
165         mem_rman.rm_type = RMAN_ARRAY;
166         mem_rman.rm_descr = "I/O memory addresses";
167         if (rman_init(&mem_rman) || rman_manage_region(&mem_rman, 0, ~0))
168                 panic("nexus_probe mem_rman");
169
170         /*
171          * First, deal with the children we know about already
172          */
173         bus_generic_probe(dev);
174         bus_generic_attach(dev);
175
176         return (0);
177 }
178
179 static int
180 nexus_print_child(device_t bus, device_t child)
181 {
182         int retval = 0;
183
184         retval += bus_print_child_header(bus, child);
185         retval += printf("\n");
186
187         return (retval);
188 }
189
190 static device_t
191 nexus_add_child(device_t bus, u_int order, const char *name, int unit)
192 {
193         device_t child;
194         struct nexus_device *ndev;
195
196         ndev = malloc(sizeof(struct nexus_device), M_NEXUSDEV, M_NOWAIT|M_ZERO);
197         if (!ndev)
198                 return (0);
199         resource_list_init(&ndev->nx_resources);
200
201         child = device_add_child_ordered(bus, order, name, unit);
202
203         /* should we free this in nexus_child_detached? */
204         device_set_ivars(child, ndev);
205
206         return (child);
207 }
208
209
210 /*
211  * Allocate a resource on behalf of child.  NB: child is usually going to be a
212  * child of one of our descendants, not a direct child of nexus0.
213  * (Exceptions include footbridge.)
214  */
215 static struct resource *
216 nexus_alloc_resource(device_t bus, device_t child, int type, int *rid,
217     rman_res_t start, rman_res_t end, rman_res_t count, u_int flags)
218 {
219         struct resource *rv;
220         struct rman *rm;
221         int needactivate = flags & RF_ACTIVE;
222
223         flags &= ~RF_ACTIVE;
224
225         switch (type) {
226         case SYS_RES_MEMORY:
227         case SYS_RES_IOPORT:
228                 rm = &mem_rman;
229                 break;
230
231         default:
232                 return (NULL);
233         }
234
235         rv = rman_reserve_resource(rm, start, end, count, flags, child);
236         if (rv == 0)
237                 return (NULL);
238
239         rman_set_rid(rv, *rid);
240
241         if (needactivate) {
242                 if (bus_activate_resource(child, type, *rid, rv)) {
243                         rman_release_resource(rv);
244                         return (0);
245                 }
246         }
247
248         return (rv);
249 }
250
251 static int
252 nexus_release_resource(device_t bus, device_t child, int type, int rid,
253     struct resource *res)
254 {
255         int error;
256
257         if (rman_get_flags(res) & RF_ACTIVE) {
258                 error = bus_deactivate_resource(child, type, rid, res);
259                 if (error)
260                         return (error);
261         }
262         return (rman_release_resource(res));
263 }
264
265 static bus_space_tag_t
266 nexus_get_bus_tag(device_t bus __unused, device_t child __unused)
267 {
268
269 #ifdef FDT
270                 return(fdtbus_bs_tag);
271 #else
272                 return((void *)1);
273 #endif
274 }
275
276 static int
277 nexus_config_intr(device_t dev, int irq, enum intr_trigger trig,
278     enum intr_polarity pol)
279 {
280         int ret = ENODEV;
281
282 #ifdef ARM_INTRNG
283         ret = intr_irq_config(irq, trig, pol);
284 #else
285         if (arm_config_irq)
286                 ret = (*arm_config_irq)(irq, trig, pol);
287 #endif
288         return (ret);
289 }
290
291 static int
292 nexus_setup_intr(device_t dev, device_t child, struct resource *res, int flags,
293     driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep)
294 {
295         int irq;
296
297         if ((rman_get_flags(res) & RF_SHAREABLE) == 0)
298                 flags |= INTR_EXCL;
299
300         for (irq = rman_get_start(res); irq <= rman_get_end(res); irq++) {
301 #ifdef ARM_INTRNG
302                 intr_irq_add_handler(child, filt, intr, arg, irq, flags,
303                     cookiep);
304 #else
305                 arm_setup_irqhandler(device_get_nameunit(child),
306                     filt, intr, arg, irq, flags, cookiep);
307                 arm_unmask_irq(irq);
308 #endif
309         }
310         return (0);
311 }
312
313 static int
314 nexus_teardown_intr(device_t dev, device_t child, struct resource *r, void *ih)
315 {
316
317 #ifdef ARM_INTRNG
318         return (intr_irq_remove_handler(child, rman_get_start(r), ih));
319 #else
320         return (arm_remove_irqhandler(rman_get_start(r), ih));
321 #endif
322 }
323
324 #ifdef ARM_INTRNG
325 static int
326 nexus_describe_intr(device_t dev, device_t child, struct resource *irq,
327     void *cookie, const char *descr)
328 {
329
330         return (intr_irq_describe(rman_get_start(irq), cookie, descr));
331 }
332
333 #ifdef SMP
334 static int
335 nexus_bind_intr(device_t dev, device_t child, struct resource *irq, int cpu)
336 {
337
338         return (intr_irq_bind(rman_get_start(irq), cpu));
339 }
340 #endif
341 #endif
342
343 static int
344 nexus_activate_resource(device_t bus, device_t child, int type, int rid,
345     struct resource *r)
346 {
347         int err;
348         bus_addr_t paddr;
349         bus_size_t psize;
350         bus_space_handle_t vaddr;
351
352         if ((err = rman_activate_resource(r)) != 0)
353                 return (err);
354
355         /*
356          * If this is a memory resource, map it into the kernel.
357          */
358         if (type == SYS_RES_MEMORY || type == SYS_RES_IOPORT) {
359                 paddr = (bus_addr_t)rman_get_start(r);
360                 psize = (bus_size_t)rman_get_size(r);
361 #ifdef FDT
362                 err = bus_space_map(fdtbus_bs_tag, paddr, psize, 0, &vaddr);
363                 if (err != 0) {
364                         rman_deactivate_resource(r);
365                         return (err);
366                 }
367                 rman_set_bustag(r, fdtbus_bs_tag);
368 #else
369                 vaddr = (bus_space_handle_t)pmap_mapdev((vm_offset_t)paddr,
370                     (vm_size_t)psize);
371                 if (vaddr == 0) {
372                         rman_deactivate_resource(r);
373                         return (ENOMEM);
374                 }
375                 rman_set_bustag(r, (void *)1);
376 #endif
377                 rman_set_virtual(r, (void *)vaddr);
378                 rman_set_bushandle(r, vaddr);
379         }
380         return (0);
381 }
382
383 static int
384 nexus_deactivate_resource(device_t bus, device_t child, int type, int rid,
385     struct resource *r)
386 {
387         bus_size_t psize;
388         bus_space_handle_t vaddr;
389
390         psize = (bus_size_t)rman_get_size(r);
391         vaddr = rman_get_bushandle(r);
392
393         if (vaddr != 0) {
394 #ifdef FDT
395                 bus_space_unmap(fdtbus_bs_tag, vaddr, psize);
396 #else
397                 pmap_unmapdev((vm_offset_t)vaddr, (vm_size_t)psize);
398 #endif
399                 rman_set_virtual(r, NULL);
400                 rman_set_bushandle(r, 0);
401         }
402
403         return (rman_deactivate_resource(r));
404 }
405
406 #ifdef FDT
407 static int
408 nexus_ofw_map_intr(device_t dev, device_t child, phandle_t iparent, int icells,
409     pcell_t *intr)
410 {
411
412         return (intr_fdt_map_irq(iparent, intr, icells));
413 }
414 #endif