]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm64/arm64/nexus.c
Bring LLVM libunwind snapshot into contrib/llvm/projects
[FreeBSD/FreeBSD.git] / sys / arm64 / arm64 / 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
60 #include <machine/resource.h>
61 #include <machine/intr.h>
62
63 #include "opt_acpi.h"
64 #include "opt_platform.h"
65
66 #ifdef FDT
67 #include <dev/fdt/fdt_common.h>
68 #include "ofw_bus_if.h"
69 #endif
70 #ifdef DEV_ACPI
71 #include <contrib/dev/acpica/include/acpi.h>
72 #include <dev/acpica/acpivar.h>
73 #endif
74
75 extern struct bus_space memmap_bus;
76
77 static MALLOC_DEFINE(M_NEXUSDEV, "nexusdev", "Nexus device");
78
79 struct nexus_device {
80         struct resource_list    nx_resources;
81 };
82
83 #define DEVTONX(dev)    ((struct nexus_device *)device_get_ivars(dev))
84
85 static struct rman mem_rman;
86 static struct rman irq_rman;
87
88 static  int nexus_attach(device_t);
89
90 #ifdef FDT
91 static device_probe_t   nexus_fdt_probe;
92 static device_attach_t  nexus_fdt_attach;
93 #endif
94 #ifdef DEV_ACPI
95 static device_probe_t   nexus_acpi_probe;
96 static device_attach_t  nexus_acpi_attach;
97 #endif
98
99 static  int nexus_print_child(device_t, device_t);
100 static  device_t nexus_add_child(device_t, u_int, const char *, int);
101 static  struct resource *nexus_alloc_resource(device_t, device_t, int, int *,
102     u_long, u_long, u_long, u_int);
103 static  int nexus_activate_resource(device_t, device_t, int, int,
104     struct resource *);
105 static int nexus_config_intr(device_t dev, int irq, enum intr_trigger trig,
106     enum intr_polarity pol);
107 static struct resource_list *nexus_get_reslist(device_t, device_t);
108 static  int nexus_set_resource(device_t, device_t, int, int, u_long, u_long);
109 static  int nexus_deactivate_resource(device_t, device_t, int, int,
110     struct resource *);
111
112 static int nexus_setup_intr(device_t dev, device_t child, struct resource *res,
113     int flags, driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep);
114 static int nexus_teardown_intr(device_t, device_t, struct resource *, void *);
115
116 #ifdef FDT
117 static int nexus_ofw_map_intr(device_t dev, device_t child, phandle_t iparent,
118     int icells, pcell_t *intr);
119 #endif
120
121 static device_method_t nexus_methods[] = {
122         /* Bus interface */
123         DEVMETHOD(bus_print_child,      nexus_print_child),
124         DEVMETHOD(bus_add_child,        nexus_add_child),
125         DEVMETHOD(bus_alloc_resource,   nexus_alloc_resource),
126         DEVMETHOD(bus_activate_resource,        nexus_activate_resource),
127         DEVMETHOD(bus_config_intr,      nexus_config_intr),
128         DEVMETHOD(bus_get_resource_list, nexus_get_reslist),
129         DEVMETHOD(bus_set_resource,     nexus_set_resource),
130         DEVMETHOD(bus_deactivate_resource,      nexus_deactivate_resource),
131         DEVMETHOD(bus_setup_intr,       nexus_setup_intr),
132         DEVMETHOD(bus_teardown_intr,    nexus_teardown_intr),
133
134         { 0, 0 }
135 };
136
137 static devclass_t nexus_devclass;
138 static driver_t nexus_driver = {
139         "nexus",
140         nexus_methods,
141         1                       /* no softc */
142 };
143 DRIVER_MODULE(nexus, root, nexus_driver, nexus_devclass, 0, 0);
144
145 static int
146 nexus_attach(device_t dev)
147 {
148
149         mem_rman.rm_start = 0;
150         mem_rman.rm_end = ~0ul;
151         mem_rman.rm_type = RMAN_ARRAY;
152         mem_rman.rm_descr = "I/O memory addresses";
153         if (rman_init(&mem_rman) || rman_manage_region(&mem_rman, 0, ~0))
154                 panic("nexus_attach mem_rman");
155         irq_rman.rm_start = 0;
156         irq_rman.rm_end = ~0ul;
157         irq_rman.rm_type = RMAN_ARRAY;
158         irq_rman.rm_descr = "Interrupts";
159         if (rman_init(&irq_rman) || rman_manage_region(&irq_rman, 0, ~0))
160                 panic("nexus_attach irq_rman");
161
162         bus_generic_probe(dev);
163         bus_generic_attach(dev);
164
165         return (0);
166 }
167
168 static int
169 nexus_print_child(device_t bus, device_t child)
170 {
171         int retval = 0;
172
173         retval += bus_print_child_header(bus, child);
174         retval += printf("\n");
175
176         return (retval);
177 }
178
179 static device_t
180 nexus_add_child(device_t bus, u_int order, const char *name, int unit)
181 {
182         device_t child;
183         struct nexus_device *ndev;
184
185         ndev = malloc(sizeof(struct nexus_device), M_NEXUSDEV, M_NOWAIT|M_ZERO);
186         if (!ndev)
187                 return (0);
188         resource_list_init(&ndev->nx_resources);
189
190         child = device_add_child_ordered(bus, order, name, unit);
191
192         /* should we free this in nexus_child_detached? */
193         device_set_ivars(child, ndev);
194
195         return (child);
196 }
197
198
199 /*
200  * Allocate a resource on behalf of child.  NB: child is usually going to be a
201  * child of one of our descendants, not a direct child of nexus0.
202  * (Exceptions include footbridge.)
203  */
204 static struct resource *
205 nexus_alloc_resource(device_t bus, device_t child, int type, int *rid,
206     u_long start, u_long end, u_long count, u_int flags)
207 {
208         struct nexus_device *ndev = DEVTONX(child);
209         struct resource *rv;
210         struct resource_list_entry *rle;
211         struct rman *rm;
212         int needactivate = flags & RF_ACTIVE;
213
214         /*
215          * If this is an allocation of the "default" range for a given
216          * RID, and we know what the resources for this device are
217          * (ie. they aren't maintained by a child bus), then work out
218          * the start/end values.
219          */
220         if ((start == 0UL) && (end == ~0UL) && (count == 1)) {
221                 if (device_get_parent(child) != bus || ndev == NULL)
222                         return(NULL);
223                 rle = resource_list_find(&ndev->nx_resources, type, *rid);
224                 if (rle == NULL)
225                         return(NULL);
226                 start = rle->start;
227                 end = rle->end;
228                 count = rle->count;
229         }
230
231         switch (type) {
232         case SYS_RES_IRQ:
233                 rm = &irq_rman;
234                 break;
235
236         case SYS_RES_MEMORY:
237         case SYS_RES_IOPORT:
238                 rm = &mem_rman;
239                 break;
240
241         default:
242                 return (NULL);
243         }
244
245         rv = rman_reserve_resource(rm, start, end, count, flags, child);
246         if (rv == 0)
247                 return (NULL);
248
249         rman_set_rid(rv, *rid);
250         rman_set_bushandle(rv, rman_get_start(rv));
251
252         if (needactivate) {
253                 if (bus_activate_resource(child, type, *rid, rv)) {
254                         rman_release_resource(rv);
255                         return (NULL);
256                 }
257         }
258
259         return (rv);
260 }
261
262 static int
263 nexus_config_intr(device_t dev, int irq, enum intr_trigger trig,
264     enum intr_polarity pol)
265 {
266
267         return (arm_config_intr(irq, trig, pol));
268 }
269
270 static int
271 nexus_setup_intr(device_t dev, device_t child, struct resource *res, int flags,
272     driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep)
273 {
274         int error;
275
276         if ((rman_get_flags(res) & RF_SHAREABLE) == 0)
277                 flags |= INTR_EXCL;
278
279         /* We depend here on rman_activate_resource() being idempotent. */
280         error = rman_activate_resource(res);
281         if (error)
282                 return (error);
283
284         error = arm_setup_intr(device_get_nameunit(child), filt, intr,
285             arg, rman_get_start(res), flags, cookiep);
286
287         return (error);
288 }
289
290 static int
291 nexus_teardown_intr(device_t dev, device_t child, struct resource *r, void *ih)
292 {
293
294         return (arm_teardown_intr(ih));
295 }
296
297 static int
298 nexus_activate_resource(device_t bus, device_t child, int type, int rid,
299     struct resource *r)
300 {
301         int err;
302         bus_addr_t paddr;
303         bus_size_t psize;
304         bus_space_handle_t vaddr;
305
306         if ((err = rman_activate_resource(r)) != 0)
307                 return (err);
308
309         /*
310          * If this is a memory resource, map it into the kernel.
311          */
312         if (type == SYS_RES_MEMORY || type == SYS_RES_IOPORT) {
313                 paddr = (bus_addr_t)rman_get_start(r);
314                 psize = (bus_size_t)rman_get_size(r);
315                 err = bus_space_map(&memmap_bus, paddr, psize, 0, &vaddr);
316                 if (err != 0) {
317                         rman_deactivate_resource(r);
318                         return (err);
319                 }
320                 rman_set_bustag(r, &memmap_bus);
321                 rman_set_virtual(r, (void *)vaddr);
322                 rman_set_bushandle(r, vaddr);
323         }
324         return (0);
325 }
326
327 static struct resource_list *
328 nexus_get_reslist(device_t dev, device_t child)
329 {
330         struct nexus_device *ndev = DEVTONX(child);
331
332         return (&ndev->nx_resources);
333 }
334
335 static int
336 nexus_set_resource(device_t dev, device_t child, int type, int rid,
337     u_long start, u_long count)
338 {
339         struct nexus_device     *ndev = DEVTONX(child);
340         struct resource_list    *rl = &ndev->nx_resources;
341
342         /* XXX this should return a success/failure indicator */
343         resource_list_add(rl, type, rid, start, start + count - 1, count);
344
345         return(0);
346 }
347
348
349 static int
350 nexus_deactivate_resource(device_t bus, device_t child, int type, int rid,
351     struct resource *r)
352 {
353         bus_size_t psize;
354         bus_space_handle_t vaddr;
355
356         psize = (bus_size_t)rman_get_size(r);
357         vaddr = rman_get_bushandle(r);
358
359         if (vaddr != 0) {
360                 bus_space_unmap(&memmap_bus, vaddr, psize);
361                 rman_set_virtual(r, NULL);
362                 rman_set_bushandle(r, 0);
363         }
364
365         return (rman_deactivate_resource(r));
366 }
367
368 #ifdef FDT
369 static device_method_t nexus_fdt_methods[] = {
370         /* Device interface */
371         DEVMETHOD(device_probe,         nexus_fdt_probe),
372         DEVMETHOD(device_attach,        nexus_fdt_attach),
373
374         /* OFW interface */
375         DEVMETHOD(ofw_bus_map_intr,     nexus_ofw_map_intr),
376 };
377
378 #define nexus_baseclasses nexus_fdt_baseclasses
379 DEFINE_CLASS_1(nexus, nexus_fdt_driver, nexus_fdt_methods, 1, nexus_driver);
380 #undef nexus_baseclasses
381 static devclass_t nexus_fdt_devclass;
382
383 DRIVER_MODULE(nexus_fdt, root, nexus_fdt_driver, nexus_fdt_devclass, 0, 0);
384
385 static int
386 nexus_fdt_probe(device_t dev)
387 {
388
389         if (OF_peer(0) == 0)
390                 return (ENXIO);
391
392         device_quiet(dev);
393         return (BUS_PROBE_DEFAULT);
394 }
395
396 static int
397 nexus_fdt_attach(device_t dev)
398 {
399
400         nexus_add_child(dev, 10, "ofwbus", 0);
401         return (nexus_attach(dev));
402 }
403
404 static int
405 nexus_ofw_map_intr(device_t dev, device_t child, phandle_t iparent, int icells,
406     pcell_t *intr)
407 {
408         int irq;
409
410         if (icells == 3) {
411                 irq = intr[1];
412                 if (intr[0] == 0)
413                         irq += 32; /* SPI */
414                 else
415                         irq += 16; /* PPI */
416         } else
417                 irq = intr[0];
418
419         return (irq);
420 }
421 #endif
422
423 #ifdef DEV_ACPI
424 static device_method_t nexus_acpi_methods[] = {
425         /* Device interface */
426         DEVMETHOD(device_probe,         nexus_acpi_probe),
427         DEVMETHOD(device_attach,        nexus_acpi_attach),
428 };
429
430 #define nexus_baseclasses nexus_acpi_baseclasses
431 DEFINE_CLASS_1(nexus, nexus_acpi_driver, nexus_acpi_methods, 1,
432     nexus_driver);
433 #undef nexus_baseclasses
434 static devclass_t nexus_acpi_devclass;
435
436 DRIVER_MODULE(nexus_acpi, root, nexus_acpi_driver, nexus_acpi_devclass, 0, 0);
437
438 static int
439 nexus_acpi_probe(device_t dev)
440 {
441
442         if (acpi_identify() != 0)
443                 return (ENXIO);
444
445         device_quiet(dev);
446         return (BUS_PROBE_LOW_PRIORITY);
447 }
448
449 static int
450 nexus_acpi_attach(device_t dev)
451 {
452
453         nexus_add_child(dev, 10, "acpi", 0);
454         return (nexus_attach(dev));
455 }
456 #endif