]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm64/arm64/nexus.c
Merge branch 'releng/11.3' into releng-CDN/11.3
[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 "opt_acpi.h"
43 #include "opt_platform.h"
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/malloc.h>
53 #include <sys/module.h>
54 #include <machine/bus.h>
55 #include <sys/rman.h>
56 #include <sys/interrupt.h>
57
58 #include <machine/vmparam.h>
59 #include <machine/pcb.h>
60 #include <vm/vm.h>
61 #include <vm/pmap.h>
62
63 #include <machine/resource.h>
64 #include <machine/intr.h>
65
66 #ifdef FDT
67 #include <dev/ofw/ofw_bus_subr.h>
68 #include <dev/ofw/openfirm.h>
69 #include "ofw_bus_if.h"
70 #endif
71 #ifdef DEV_ACPI
72 #include <contrib/dev/acpica/include/acpi.h>
73 #include <dev/acpica/acpivar.h>
74 #endif
75
76 extern struct bus_space memmap_bus;
77
78 static MALLOC_DEFINE(M_NEXUSDEV, "nexusdev", "Nexus device");
79
80 struct nexus_device {
81         struct resource_list    nx_resources;
82 };
83
84 #define DEVTONX(dev)    ((struct nexus_device *)device_get_ivars(dev))
85
86 static struct rman mem_rman;
87 static struct rman irq_rman;
88
89 static  int nexus_attach(device_t);
90
91 #ifdef FDT
92 static device_probe_t   nexus_fdt_probe;
93 static device_attach_t  nexus_fdt_attach;
94 #endif
95 #ifdef DEV_ACPI
96 static device_probe_t   nexus_acpi_probe;
97 static device_attach_t  nexus_acpi_attach;
98 #endif
99
100 static  int nexus_print_child(device_t, device_t);
101 static  device_t nexus_add_child(device_t, u_int, const char *, int);
102 static  struct resource *nexus_alloc_resource(device_t, device_t, int, int *,
103     rman_res_t, rman_res_t, rman_res_t, u_int);
104 static  int nexus_activate_resource(device_t, device_t, int, int,
105     struct resource *);
106 static int nexus_config_intr(device_t dev, int irq, enum intr_trigger trig,
107     enum intr_polarity pol);
108 static struct resource_list *nexus_get_reslist(device_t, device_t);
109 static  int nexus_set_resource(device_t, device_t, int, int,
110     rman_res_t, rman_res_t);
111 static  int nexus_deactivate_resource(device_t, device_t, int, int,
112     struct resource *);
113 static int nexus_release_resource(device_t, device_t, int, int,
114     struct resource *);
115
116 static int nexus_setup_intr(device_t dev, device_t child, struct resource *res,
117     int flags, driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep);
118 static int nexus_teardown_intr(device_t, device_t, struct resource *, void *);
119 static bus_space_tag_t nexus_get_bus_tag(device_t, device_t);
120 #ifdef SMP
121 static int nexus_bind_intr(device_t, device_t, struct resource *, int);
122 #endif
123
124 #ifdef FDT
125 static int nexus_ofw_map_intr(device_t dev, device_t child, phandle_t iparent,
126     int icells, pcell_t *intr);
127 #endif
128
129 static device_method_t nexus_methods[] = {
130         /* Bus interface */
131         DEVMETHOD(bus_print_child,      nexus_print_child),
132         DEVMETHOD(bus_add_child,        nexus_add_child),
133         DEVMETHOD(bus_alloc_resource,   nexus_alloc_resource),
134         DEVMETHOD(bus_activate_resource,        nexus_activate_resource),
135         DEVMETHOD(bus_config_intr,      nexus_config_intr),
136         DEVMETHOD(bus_get_resource_list, nexus_get_reslist),
137         DEVMETHOD(bus_set_resource,     nexus_set_resource),
138         DEVMETHOD(bus_deactivate_resource,      nexus_deactivate_resource),
139         DEVMETHOD(bus_release_resource, nexus_release_resource),
140         DEVMETHOD(bus_setup_intr,       nexus_setup_intr),
141         DEVMETHOD(bus_teardown_intr,    nexus_teardown_intr),
142         DEVMETHOD(bus_get_bus_tag,      nexus_get_bus_tag),
143 #ifdef SMP
144         DEVMETHOD(bus_bind_intr,        nexus_bind_intr),
145 #endif
146         { 0, 0 }
147 };
148
149 static driver_t nexus_driver = {
150         "nexus",
151         nexus_methods,
152         1                       /* no softc */
153 };
154
155 static int
156 nexus_attach(device_t dev)
157 {
158
159         mem_rman.rm_start = 0;
160         mem_rman.rm_end = BUS_SPACE_MAXADDR;
161         mem_rman.rm_type = RMAN_ARRAY;
162         mem_rman.rm_descr = "I/O memory addresses";
163         if (rman_init(&mem_rman) ||
164             rman_manage_region(&mem_rman, 0, BUS_SPACE_MAXADDR))
165                 panic("nexus_attach mem_rman");
166         irq_rman.rm_start = 0;
167         irq_rman.rm_end = ~0;
168         irq_rman.rm_type = RMAN_ARRAY;
169         irq_rman.rm_descr = "Interrupts";
170         if (rman_init(&irq_rman) || rman_manage_region(&irq_rman, 0, ~0))
171                 panic("nexus_attach irq_rman");
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 nexus_device *ndev = DEVTONX(child);
220         struct resource *rv;
221         struct resource_list_entry *rle;
222         struct rman *rm;
223         int needactivate = flags & RF_ACTIVE;
224
225         /*
226          * If this is an allocation of the "default" range for a given
227          * RID, and we know what the resources for this device are
228          * (ie. they aren't maintained by a child bus), then work out
229          * the start/end values.
230          */
231         if (RMAN_IS_DEFAULT_RANGE(start, end) && (count == 1)) {
232                 if (device_get_parent(child) != bus || ndev == NULL)
233                         return(NULL);
234                 rle = resource_list_find(&ndev->nx_resources, type, *rid);
235                 if (rle == NULL)
236                         return(NULL);
237                 start = rle->start;
238                 end = rle->end;
239                 count = rle->count;
240         }
241
242         switch (type) {
243         case SYS_RES_IRQ:
244                 rm = &irq_rman;
245                 break;
246
247         case SYS_RES_MEMORY:
248         case SYS_RES_IOPORT:
249                 rm = &mem_rman;
250                 break;
251
252         default:
253                 return (NULL);
254         }
255
256         rv = rman_reserve_resource(rm, start, end, count, flags, child);
257         if (rv == NULL)
258                 return (NULL);
259
260         rman_set_rid(rv, *rid);
261         rman_set_bushandle(rv, rman_get_start(rv));
262
263         if (needactivate) {
264                 if (bus_activate_resource(child, type, *rid, rv)) {
265                         rman_release_resource(rv);
266                         return (NULL);
267                 }
268         }
269
270         return (rv);
271 }
272
273 static int
274 nexus_release_resource(device_t bus, device_t child, int type, int rid,
275     struct resource *res)
276 {
277         int error;
278
279         if (rman_get_flags(res) & RF_ACTIVE) {
280                 error = bus_deactivate_resource(child, type, rid, res);
281                 if (error)
282                         return (error);
283         }
284         return (rman_release_resource(res));
285 }
286
287 static int
288 nexus_config_intr(device_t dev, int irq, enum intr_trigger trig,
289     enum intr_polarity pol)
290 {
291
292         /* TODO: This is wrong, it's needed for ACPI */
293         device_printf(dev, "bus_config_intr is obsolete and not supported!\n");
294         return (EOPNOTSUPP);
295 }
296
297 static int
298 nexus_setup_intr(device_t dev, device_t child, struct resource *res, int flags,
299     driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep)
300 {
301         int error;
302
303         if ((rman_get_flags(res) & RF_SHAREABLE) == 0)
304                 flags |= INTR_EXCL;
305
306         /* We depend here on rman_activate_resource() being idempotent. */
307         error = rman_activate_resource(res);
308         if (error)
309                 return (error);
310
311         error = intr_setup_irq(child, res, filt, intr, arg, flags, cookiep);
312
313         return (error);
314 }
315
316 static int
317 nexus_teardown_intr(device_t dev, device_t child, struct resource *r, void *ih)
318 {
319
320         return (intr_teardown_irq(child, r, ih));
321 }
322
323 #ifdef SMP
324 static int
325 nexus_bind_intr(device_t dev, device_t child, struct resource *irq, int cpu)
326 {
327
328         return (intr_bind_irq(child, irq, cpu));
329 }
330 #endif
331
332 static bus_space_tag_t
333 nexus_get_bus_tag(device_t bus __unused, device_t child __unused)
334 {
335
336         return(&memmap_bus);
337 }
338
339 static int
340 nexus_activate_resource(device_t bus, device_t child, int type, int rid,
341     struct resource *r)
342 {
343         int err;
344         bus_addr_t paddr;
345         bus_size_t psize;
346         bus_space_handle_t vaddr;
347
348         if ((err = rman_activate_resource(r)) != 0)
349                 return (err);
350
351         /*
352          * If this is a memory resource, map it into the kernel.
353          */
354         if (type == SYS_RES_MEMORY || type == SYS_RES_IOPORT) {
355                 paddr = (bus_addr_t)rman_get_start(r);
356                 psize = (bus_size_t)rman_get_size(r);
357                 err = bus_space_map(&memmap_bus, paddr, psize, 0, &vaddr);
358                 if (err != 0) {
359                         rman_deactivate_resource(r);
360                         return (err);
361                 }
362                 rman_set_bustag(r, &memmap_bus);
363                 rman_set_virtual(r, (void *)vaddr);
364                 rman_set_bushandle(r, vaddr);
365         } else if (type == SYS_RES_IRQ) {
366                 err = intr_activate_irq(child, r);
367                 if (err != 0) {
368                         rman_deactivate_resource(r);
369                         return (err);
370                 }
371         }
372         return (0);
373 }
374
375 static struct resource_list *
376 nexus_get_reslist(device_t dev, device_t child)
377 {
378         struct nexus_device *ndev = DEVTONX(child);
379
380         return (&ndev->nx_resources);
381 }
382
383 static int
384 nexus_set_resource(device_t dev, device_t child, int type, int rid,
385     rman_res_t start, rman_res_t count)
386 {
387         struct nexus_device     *ndev = DEVTONX(child);
388         struct resource_list    *rl = &ndev->nx_resources;
389
390         /* XXX this should return a success/failure indicator */
391         resource_list_add(rl, type, rid, start, start + count - 1, count);
392
393         return(0);
394 }
395
396
397 static int
398 nexus_deactivate_resource(device_t bus, device_t child, int type, int rid,
399     struct resource *r)
400 {
401         bus_size_t psize;
402         bus_space_handle_t vaddr;
403
404         if (type == SYS_RES_MEMORY || type == SYS_RES_IOPORT) {
405                 psize = (bus_size_t)rman_get_size(r);
406                 vaddr = rman_get_bushandle(r);
407
408                 if (vaddr != 0) {
409                         bus_space_unmap(&memmap_bus, vaddr, psize);
410                         rman_set_virtual(r, NULL);
411                         rman_set_bushandle(r, 0);
412                 }
413         } else if (type == SYS_RES_IRQ) {
414                 intr_deactivate_irq(child, r);
415         }
416
417         return (rman_deactivate_resource(r));
418 }
419
420 #ifdef FDT
421 static device_method_t nexus_fdt_methods[] = {
422         /* Device interface */
423         DEVMETHOD(device_probe,         nexus_fdt_probe),
424         DEVMETHOD(device_attach,        nexus_fdt_attach),
425
426         /* OFW interface */
427         DEVMETHOD(ofw_bus_map_intr,     nexus_ofw_map_intr),
428 };
429
430 #define nexus_baseclasses nexus_fdt_baseclasses
431 DEFINE_CLASS_1(nexus, nexus_fdt_driver, nexus_fdt_methods, 1, nexus_driver);
432 #undef nexus_baseclasses
433 static devclass_t nexus_fdt_devclass;
434
435 EARLY_DRIVER_MODULE(nexus_fdt, root, nexus_fdt_driver, nexus_fdt_devclass,
436     0, 0, BUS_PASS_BUS + BUS_PASS_ORDER_FIRST);
437
438 static int
439 nexus_fdt_probe(device_t dev)
440 {
441
442         if (OF_peer(0) == 0)
443                 return (ENXIO);
444
445         device_quiet(dev);
446         return (BUS_PROBE_DEFAULT);
447 }
448
449 static int
450 nexus_fdt_attach(device_t dev)
451 {
452
453         nexus_add_child(dev, 10, "ofwbus", 0);
454         return (nexus_attach(dev));
455 }
456
457 static int
458 nexus_ofw_map_intr(device_t dev, device_t child, phandle_t iparent, int icells,
459     pcell_t *intr)
460 {
461         u_int irq;
462         struct intr_map_data_fdt *fdt_data;
463         size_t len;
464
465         len = sizeof(*fdt_data) + icells * sizeof(pcell_t);
466         fdt_data = (struct intr_map_data_fdt *)intr_alloc_map_data(
467             INTR_MAP_DATA_FDT, len, M_WAITOK | M_ZERO);
468         fdt_data->iparent = iparent;
469         fdt_data->ncells = icells;
470         memcpy(fdt_data->cells, intr, icells * sizeof(pcell_t));
471         irq = intr_map_irq(NULL, iparent, (struct intr_map_data *)fdt_data);
472         return (irq);
473 }
474 #endif
475
476 #ifdef DEV_ACPI
477 static device_method_t nexus_acpi_methods[] = {
478         /* Device interface */
479         DEVMETHOD(device_probe,         nexus_acpi_probe),
480         DEVMETHOD(device_attach,        nexus_acpi_attach),
481 };
482
483 #define nexus_baseclasses nexus_acpi_baseclasses
484 DEFINE_CLASS_1(nexus, nexus_acpi_driver, nexus_acpi_methods, 1,
485     nexus_driver);
486 #undef nexus_baseclasses
487 static devclass_t nexus_acpi_devclass;
488
489 EARLY_DRIVER_MODULE(nexus_acpi, root, nexus_acpi_driver, nexus_acpi_devclass,
490     0, 0, BUS_PASS_BUS + BUS_PASS_ORDER_FIRST);
491
492 static int
493 nexus_acpi_probe(device_t dev)
494 {
495
496         if (acpi_identify() != 0)
497                 return (ENXIO);
498
499         device_quiet(dev);
500         return (BUS_PROBE_LOW_PRIORITY);
501 }
502
503 static int
504 nexus_acpi_attach(device_t dev)
505 {
506
507         nexus_add_child(dev, 10, "acpi", 0);
508         return (nexus_attach(dev));
509 }
510 #endif