xref: /freebsd/sys/dev/fdt/simplebus.c (revision 9dbf5b0e)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2013 Nathan Whitehorn
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <sys/module.h>
32 #include <sys/bus.h>
33 #include <sys/conf.h>
34 #include <sys/kernel.h>
35 #include <sys/rman.h>
36 
37 #include <dev/ofw/openfirm.h>
38 #include <dev/ofw/ofw_bus.h>
39 #include <dev/ofw/ofw_bus_subr.h>
40 
41 #include <dev/fdt/simplebus.h>
42 
43 /*
44  * Bus interface.
45  */
46 static int		simplebus_probe(device_t dev);
47 static struct resource *simplebus_alloc_resource(device_t, device_t, int,
48     int *, rman_res_t, rman_res_t, rman_res_t, u_int);
49 static void		simplebus_probe_nomatch(device_t bus, device_t child);
50 static int		simplebus_print_child(device_t bus, device_t child);
51 static device_t		simplebus_add_child(device_t dev, u_int order,
52     const char *name, int unit);
53 static struct resource_list *simplebus_get_resource_list(device_t bus,
54     device_t child);
55 
56 static ssize_t		simplebus_get_property(device_t bus, device_t child,
57     const char *propname, void *propvalue, size_t size,
58     device_property_type_t type);
59 /*
60  * ofw_bus interface
61  */
62 static const struct ofw_bus_devinfo *simplebus_get_devinfo(device_t bus,
63     device_t child);
64 
65 /*
66  * Driver methods.
67  */
68 static device_method_t	simplebus_methods[] = {
69 	/* Device interface */
70 	DEVMETHOD(device_probe,		simplebus_probe),
71 	DEVMETHOD(device_attach,	simplebus_attach),
72 	DEVMETHOD(device_detach,	simplebus_detach),
73 	DEVMETHOD(device_shutdown,	bus_generic_shutdown),
74 	DEVMETHOD(device_suspend,	bus_generic_suspend),
75 	DEVMETHOD(device_resume,	bus_generic_resume),
76 
77 	/* Bus interface */
78 	DEVMETHOD(bus_add_child,	simplebus_add_child),
79 	DEVMETHOD(bus_print_child,	simplebus_print_child),
80 	DEVMETHOD(bus_probe_nomatch,	simplebus_probe_nomatch),
81 	DEVMETHOD(bus_read_ivar,	bus_generic_read_ivar),
82 	DEVMETHOD(bus_write_ivar,	bus_generic_write_ivar),
83 	DEVMETHOD(bus_setup_intr,	bus_generic_setup_intr),
84 	DEVMETHOD(bus_teardown_intr,	bus_generic_teardown_intr),
85 	DEVMETHOD(bus_alloc_resource,	simplebus_alloc_resource),
86 	DEVMETHOD(bus_release_resource,	bus_generic_release_resource),
87 	DEVMETHOD(bus_activate_resource, bus_generic_activate_resource),
88 	DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource),
89 	DEVMETHOD(bus_adjust_resource,	bus_generic_adjust_resource),
90 	DEVMETHOD(bus_map_resource,	bus_generic_map_resource),
91 	DEVMETHOD(bus_unmap_resource,	bus_generic_unmap_resource),
92 	DEVMETHOD(bus_set_resource,	bus_generic_rl_set_resource),
93 	DEVMETHOD(bus_get_resource,	bus_generic_rl_get_resource),
94 	DEVMETHOD(bus_delete_resource,	bus_generic_rl_delete_resource),
95 	DEVMETHOD(bus_child_pnpinfo,	ofw_bus_gen_child_pnpinfo),
96 	DEVMETHOD(bus_get_resource_list, simplebus_get_resource_list),
97 	DEVMETHOD(bus_get_property,	simplebus_get_property),
98 	DEVMETHOD(bus_get_device_path,  ofw_bus_gen_get_device_path),
99 
100 	/* ofw_bus interface */
101 	DEVMETHOD(ofw_bus_get_devinfo,	simplebus_get_devinfo),
102 	DEVMETHOD(ofw_bus_get_compat,	ofw_bus_gen_get_compat),
103 	DEVMETHOD(ofw_bus_get_model,	ofw_bus_gen_get_model),
104 	DEVMETHOD(ofw_bus_get_name,	ofw_bus_gen_get_name),
105 	DEVMETHOD(ofw_bus_get_node,	ofw_bus_gen_get_node),
106 	DEVMETHOD(ofw_bus_get_type,	ofw_bus_gen_get_type),
107 
108 	DEVMETHOD_END
109 };
110 
111 DEFINE_CLASS_0(simplebus, simplebus_driver, simplebus_methods,
112     sizeof(struct simplebus_softc));
113 
114 EARLY_DRIVER_MODULE(simplebus, ofwbus, simplebus_driver, 0, 0, BUS_PASS_BUS);
115 EARLY_DRIVER_MODULE(simplebus, simplebus, simplebus_driver, 0, 0,
116     BUS_PASS_BUS + BUS_PASS_ORDER_MIDDLE);
117 
118 static int
simplebus_probe(device_t dev)119 simplebus_probe(device_t dev)
120 {
121 
122 	if (!ofw_bus_status_okay(dev))
123 		return (ENXIO);
124 	/*
125 	 * XXX We should attach only to pure' compatible = "simple-bus"',
126 	 * without any other compatible string.
127 	 * For now, filter only know cases:
128 	 * "syscon", "simple-bus"; is handled by fdt/syscon driver
129 	 * "simple-mfd", "simple-bus"; is handled by fdt/simple-mfd driver
130 	 */
131 	if (ofw_bus_is_compatible(dev, "syscon") ||
132 	    ofw_bus_is_compatible(dev, "simple-mfd"))
133 		return (ENXIO);
134 
135 	/*
136 	 * FDT data puts a "simple-bus" compatible string on many things that
137 	 * have children but aren't really buses in our world.  Without a
138 	 * ranges property we will fail to attach, so just fail to probe too.
139 	 */
140 	if (!(ofw_bus_is_compatible(dev, "simple-bus") &&
141 	    ofw_bus_has_prop(dev, "ranges")) &&
142 	    (ofw_bus_get_type(dev) == NULL || strcmp(ofw_bus_get_type(dev),
143 	     "soc") != 0))
144 		return (ENXIO);
145 
146 	device_set_desc(dev, "Flattened device tree simple bus");
147 
148 	return (BUS_PROBE_GENERIC);
149 }
150 
151 int
simplebus_attach_impl(device_t dev)152 simplebus_attach_impl(device_t dev)
153 {
154 	struct		simplebus_softc *sc;
155 	phandle_t	node;
156 
157 	sc = device_get_softc(dev);
158 	simplebus_init(dev, 0);
159 	if ((sc->flags & SB_FLAG_NO_RANGES) == 0 &&
160 	    simplebus_fill_ranges(sc->node, sc) < 0) {
161 		device_printf(dev, "could not get ranges\n");
162 		return (ENXIO);
163 	}
164 
165 	/*
166 	 * In principle, simplebus could have an interrupt map, but ignore that
167 	 * for now
168 	 */
169 
170 	for (node = OF_child(sc->node); node > 0; node = OF_peer(node))
171 		simplebus_add_device(dev, node, 0, NULL, -1, NULL);
172 
173 	return (0);
174 }
175 
176 int
simplebus_attach(device_t dev)177 simplebus_attach(device_t dev)
178 {
179 	int	rv;
180 
181 	rv = simplebus_attach_impl(dev);
182 	if (rv != 0)
183 		return (rv);
184 
185 	return (bus_generic_attach(dev));
186 }
187 
188 int
simplebus_detach(device_t dev)189 simplebus_detach(device_t dev)
190 {
191 	struct		simplebus_softc *sc;
192 
193 	sc = device_get_softc(dev);
194 	if (sc->ranges != NULL)
195 		free(sc->ranges, M_DEVBUF);
196 
197 	return (bus_generic_detach(dev));
198 }
199 
200 void
simplebus_init(device_t dev,phandle_t node)201 simplebus_init(device_t dev, phandle_t node)
202 {
203 	struct simplebus_softc *sc;
204 
205 	sc = device_get_softc(dev);
206 	if (node == 0)
207 		node = ofw_bus_get_node(dev);
208 	sc->dev = dev;
209 	sc->node = node;
210 
211 	/*
212 	 * Some important numbers
213 	 */
214 	sc->acells = 2;
215 	OF_getencprop(node, "#address-cells", &sc->acells, sizeof(sc->acells));
216 	sc->scells = 1;
217 	OF_getencprop(node, "#size-cells", &sc->scells, sizeof(sc->scells));
218 }
219 
220 int
simplebus_fill_ranges(phandle_t node,struct simplebus_softc * sc)221 simplebus_fill_ranges(phandle_t node, struct simplebus_softc *sc)
222 {
223 	int host_address_cells;
224 	cell_t *base_ranges;
225 	ssize_t nbase_ranges;
226 	int err;
227 	int i, j, k;
228 
229 	err = OF_searchencprop(OF_parent(node), "#address-cells",
230 	    &host_address_cells, sizeof(host_address_cells));
231 	if (err <= 0)
232 		return (-1);
233 
234 	nbase_ranges = OF_getproplen(node, "ranges");
235 	if (nbase_ranges < 0)
236 		return (-1);
237 	sc->nranges = nbase_ranges / sizeof(cell_t) /
238 	    (sc->acells + host_address_cells + sc->scells);
239 	if (sc->nranges == 0)
240 		return (0);
241 
242 	sc->ranges = malloc(sc->nranges * sizeof(sc->ranges[0]),
243 	    M_DEVBUF, M_WAITOK);
244 	base_ranges = malloc(nbase_ranges, M_DEVBUF, M_WAITOK);
245 	OF_getencprop(node, "ranges", base_ranges, nbase_ranges);
246 
247 	for (i = 0, j = 0; i < sc->nranges; i++) {
248 		sc->ranges[i].bus = 0;
249 		for (k = 0; k < sc->acells; k++) {
250 			sc->ranges[i].bus <<= 32;
251 			sc->ranges[i].bus |= base_ranges[j++];
252 		}
253 		sc->ranges[i].host = 0;
254 		for (k = 0; k < host_address_cells; k++) {
255 			sc->ranges[i].host <<= 32;
256 			sc->ranges[i].host |= base_ranges[j++];
257 		}
258 		sc->ranges[i].size = 0;
259 		for (k = 0; k < sc->scells; k++) {
260 			sc->ranges[i].size <<= 32;
261 			sc->ranges[i].size |= base_ranges[j++];
262 		}
263 	}
264 
265 	free(base_ranges, M_DEVBUF);
266 	return (sc->nranges);
267 }
268 
269 struct simplebus_devinfo *
simplebus_setup_dinfo(device_t dev,phandle_t node,struct simplebus_devinfo * di)270 simplebus_setup_dinfo(device_t dev, phandle_t node,
271     struct simplebus_devinfo *di)
272 {
273 	struct simplebus_softc *sc;
274 	struct simplebus_devinfo *ndi;
275 
276 	sc = device_get_softc(dev);
277 	if (di == NULL)
278 		ndi = malloc(sizeof(*ndi), M_DEVBUF, M_WAITOK | M_ZERO);
279 	else
280 		ndi = di;
281 	if (ofw_bus_gen_setup_devinfo(&ndi->obdinfo, node) != 0) {
282 		if (di == NULL)
283 			free(ndi, M_DEVBUF);
284 		return (NULL);
285 	}
286 
287 	resource_list_init(&ndi->rl);
288 	ofw_bus_reg_to_rl(dev, node, sc->acells, sc->scells, &ndi->rl);
289 	ofw_bus_intr_to_rl(dev, node, &ndi->rl, NULL);
290 
291 	return (ndi);
292 }
293 
294 device_t
simplebus_add_device(device_t dev,phandle_t node,u_int order,const char * name,int unit,struct simplebus_devinfo * di)295 simplebus_add_device(device_t dev, phandle_t node, u_int order,
296     const char *name, int unit, struct simplebus_devinfo *di)
297 {
298 	struct simplebus_devinfo *ndi;
299 	device_t cdev;
300 
301 	if ((ndi = simplebus_setup_dinfo(dev, node, di)) == NULL)
302 		return (NULL);
303 	cdev = device_add_child_ordered(dev, order, name, unit);
304 	if (cdev == NULL) {
305 		device_printf(dev, "<%s>: device_add_child failed\n",
306 		    ndi->obdinfo.obd_name);
307 		resource_list_free(&ndi->rl);
308 		ofw_bus_gen_destroy_devinfo(&ndi->obdinfo);
309 		if (di == NULL)
310 			free(ndi, M_DEVBUF);
311 		return (NULL);
312 	}
313 	device_set_ivars(cdev, ndi);
314 
315 	return(cdev);
316 }
317 
318 static device_t
simplebus_add_child(device_t dev,u_int order,const char * name,int unit)319 simplebus_add_child(device_t dev, u_int order, const char *name, int unit)
320 {
321 	device_t cdev;
322 	struct simplebus_devinfo *ndi;
323 
324 	cdev = device_add_child_ordered(dev, order, name, unit);
325 	if (cdev == NULL)
326 		return (NULL);
327 
328 	ndi = malloc(sizeof(*ndi), M_DEVBUF, M_WAITOK | M_ZERO);
329 	ndi->obdinfo.obd_node = -1;
330 	resource_list_init(&ndi->rl);
331 	device_set_ivars(cdev, ndi);
332 
333 	return (cdev);
334 }
335 
336 static const struct ofw_bus_devinfo *
simplebus_get_devinfo(device_t bus __unused,device_t child)337 simplebus_get_devinfo(device_t bus __unused, device_t child)
338 {
339         struct simplebus_devinfo *ndi;
340 
341         ndi = device_get_ivars(child);
342 	if (ndi == NULL)
343 		return (NULL);
344         return (&ndi->obdinfo);
345 }
346 
347 static struct resource_list *
simplebus_get_resource_list(device_t bus __unused,device_t child)348 simplebus_get_resource_list(device_t bus __unused, device_t child)
349 {
350 	struct simplebus_devinfo *ndi;
351 
352 	ndi = device_get_ivars(child);
353 	if (ndi == NULL)
354 		return (NULL);
355 	return (&ndi->rl);
356 }
357 
358 static ssize_t
simplebus_get_property(device_t bus,device_t child,const char * propname,void * propvalue,size_t size,device_property_type_t type)359 simplebus_get_property(device_t bus, device_t child, const char *propname,
360     void *propvalue, size_t size, device_property_type_t type)
361 {
362 	phandle_t node, xref;
363 	ssize_t ret, i;
364 	uint32_t *buffer;
365 	uint64_t val;
366 
367 	switch (type) {
368 	case DEVICE_PROP_ANY:
369 	case DEVICE_PROP_BUFFER:
370 	case DEVICE_PROP_UINT32:
371 	case DEVICE_PROP_UINT64:
372 	case DEVICE_PROP_HANDLE:
373 		break;
374 	default:
375 		return (-1);
376 	}
377 
378 	node = ofw_bus_get_node(child);
379 	if (propvalue == NULL || size == 0)
380 		return (OF_getproplen(node, propname));
381 
382 	/*
383 	 * Integer values are stored in BE format.
384 	 * If caller declared that the underlying property type is uint32_t
385 	 * we need to do the conversion to match host endianness.
386 	 */
387 	if (type == DEVICE_PROP_UINT32)
388 		return (OF_getencprop(node, propname, propvalue, size));
389 
390 	/*
391 	 * uint64_t also requires endianness handling.
392 	 * In FDT every 8 byte value is stored using two uint32_t variables
393 	 * in BE format. Now, since the upper bits are stored as the first
394 	 * of the pair, both halves require swapping.
395 	 */
396 	 if (type == DEVICE_PROP_UINT64) {
397 		ret = OF_getencprop(node, propname, propvalue, size);
398 		if (ret <= 0) {
399 			return (ret);
400 		}
401 
402 		buffer = (uint32_t *)propvalue;
403 
404 		for (i = 0; i < size / 4; i += 2) {
405 			val = (uint64_t)buffer[i] << 32 | buffer[i + 1];
406 			((uint64_t *)buffer)[i / 2] = val;
407 		}
408 		return (ret);
409 	}
410 
411 	if (type == DEVICE_PROP_HANDLE) {
412 		if (size < sizeof(node))
413 			return (-1);
414 		ret = OF_getencprop(node, propname, &xref, sizeof(xref));
415 		if (ret <= 0)
416 			return (ret);
417 
418 		node = OF_node_from_xref(xref);
419 		if (propvalue != NULL)
420 			*(uint32_t *)propvalue = node;
421 		return (ret);
422 	}
423 
424 	return (OF_getprop(node, propname, propvalue, size));
425 }
426 
427 static struct resource *
simplebus_alloc_resource(device_t bus,device_t child,int type,int * rid,rman_res_t start,rman_res_t end,rman_res_t count,u_int flags)428 simplebus_alloc_resource(device_t bus, device_t child, int type, int *rid,
429     rman_res_t start, rman_res_t end, rman_res_t count, u_int flags)
430 {
431 	struct simplebus_softc *sc;
432 	struct simplebus_devinfo *di;
433 	struct resource_list_entry *rle;
434 	int j;
435 
436 	sc = device_get_softc(bus);
437 
438 	/*
439 	 * Request for the default allocation with a given rid: use resource
440 	 * list stored in the local device info.
441 	 */
442 	if (RMAN_IS_DEFAULT_RANGE(start, end)) {
443 		if ((di = device_get_ivars(child)) == NULL)
444 			return (NULL);
445 
446 		rle = resource_list_find(&di->rl, type, *rid);
447 		if (rle == NULL) {
448 			if (bootverbose)
449 				device_printf(bus, "no default resources for "
450 				    "rid = %d, type = %d\n", *rid, type);
451 			return (NULL);
452 		}
453 		start = rle->start;
454 		end = rle->end;
455 		count = rle->count;
456         }
457 
458 	if (type == SYS_RES_IOPORT)
459 		type = SYS_RES_MEMORY;
460 
461 	if (type == SYS_RES_MEMORY) {
462 		/* Remap through ranges property */
463 		for (j = 0; j < sc->nranges; j++) {
464 			if (start >= sc->ranges[j].bus && end <
465 			    sc->ranges[j].bus + sc->ranges[j].size) {
466 				start -= sc->ranges[j].bus;
467 				start += sc->ranges[j].host;
468 				end -= sc->ranges[j].bus;
469 				end += sc->ranges[j].host;
470 				break;
471 			}
472 		}
473 		if (j == sc->nranges && sc->nranges != 0) {
474 			if (bootverbose)
475 				device_printf(bus, "Could not map resource "
476 				    "%#jx-%#jx\n", start, end);
477 
478 			return (NULL);
479 		}
480 	}
481 
482 	return (bus_generic_alloc_resource(bus, child, type, rid, start, end,
483 	    count, flags));
484 }
485 
486 static int
simplebus_print_res(struct simplebus_devinfo * di)487 simplebus_print_res(struct simplebus_devinfo *di)
488 {
489 	int rv;
490 
491 	if (di == NULL)
492 		return (0);
493 	rv = 0;
494 	rv += resource_list_print_type(&di->rl, "mem", SYS_RES_MEMORY, "%#jx");
495 	rv += resource_list_print_type(&di->rl, "irq", SYS_RES_IRQ, "%jd");
496 	return (rv);
497 }
498 
499 static void
simplebus_probe_nomatch(device_t bus,device_t child)500 simplebus_probe_nomatch(device_t bus, device_t child)
501 {
502 	const char *name, *type, *compat;
503 
504 	if (!bootverbose)
505 		return;
506 
507 	compat = ofw_bus_get_compat(child);
508 	if (compat == NULL)
509 		return;
510 	name = ofw_bus_get_name(child);
511 	type = ofw_bus_get_type(child);
512 
513 	device_printf(bus, "<%s>", name != NULL ? name : "unknown");
514 	simplebus_print_res(device_get_ivars(child));
515 	if (!ofw_bus_status_okay(child))
516 		printf(" disabled");
517 	if (type)
518 		printf(" type %s", type);
519 	printf(" compat %s (no driver attached)\n", compat);
520 }
521 
522 static int
simplebus_print_child(device_t bus,device_t child)523 simplebus_print_child(device_t bus, device_t child)
524 {
525 	int rv;
526 
527 	rv = bus_print_child_header(bus, child);
528 	rv += simplebus_print_res(device_get_ivars(child));
529 	if (!ofw_bus_status_okay(child))
530 		rv += printf(" disabled");
531 	rv += bus_print_child_footer(bus, child);
532 	return (rv);
533 }
534