xref: /freebsd/sys/powerpc/mpc85xx/lbc.c (revision 49dae58b287906be26f56ba3e3dc693c3ba8cf37)
1 /*-
2  * Copyright (c) 2006-2008, Juniper Networks, Inc.
3  * Copyright (c) 2008 Semihalf, Rafal Czubak
4  * Copyright (c) 2009 The FreeBSD Foundation
5  * All rights reserved.
6  *
7  * Portions of this software were developed by Semihalf
8  * under sponsorship from the FreeBSD Foundation.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. The name of the author may not be used to endorse or promote products
19  *    derived from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33 
34 #include "opt_platform.h"
35 
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD$");
38 
39 #include <sys/param.h>
40 #include <sys/systm.h>
41 #include <sys/ktr.h>
42 #include <sys/kernel.h>
43 #include <sys/malloc.h>
44 #include <sys/module.h>
45 #include <sys/bus.h>
46 #include <sys/rman.h>
47 #include <machine/bus.h>
48 
49 #include <vm/vm.h>
50 #include <vm/pmap.h>
51 
52 #include <dev/fdt/fdt_common.h>
53 #include <dev/ofw/ofw_bus.h>
54 #include <dev/ofw/ofw_bus_subr.h>
55 
56 #include <powerpc/mpc85xx/mpc85xx.h>
57 
58 #include "ofw_bus_if.h"
59 #include "lbc.h"
60 
61 #ifdef DEBUG
62 #define debugf(fmt, args...) do { printf("%s(): ", __func__);	\
63     printf(fmt,##args); } while (0)
64 #else
65 #define debugf(fmt, args...)
66 #endif
67 
68 static MALLOC_DEFINE(M_LBC, "localbus", "localbus devices information");
69 
70 static int lbc_probe(device_t);
71 static int lbc_attach(device_t);
72 static int lbc_shutdown(device_t);
73 static int lbc_activate_resource(device_t bus __unused, device_t child __unused,
74     int type, int rid __unused, struct resource *r);
75 static int lbc_deactivate_resource(device_t bus __unused,
76     device_t child __unused, int type __unused, int rid __unused,
77     struct resource *r);
78 static struct resource *lbc_alloc_resource(device_t, device_t, int, int *,
79     rman_res_t, rman_res_t, rman_res_t, u_int);
80 static int lbc_print_child(device_t, device_t);
81 static int lbc_release_resource(device_t, device_t, int, int,
82     struct resource *);
83 static const struct ofw_bus_devinfo *lbc_get_devinfo(device_t, device_t);
84 
85 /*
86  * Bus interface definition
87  */
88 static device_method_t lbc_methods[] = {
89 	/* Device interface */
90 	DEVMETHOD(device_probe,		lbc_probe),
91 	DEVMETHOD(device_attach,	lbc_attach),
92 	DEVMETHOD(device_shutdown,	lbc_shutdown),
93 
94 	/* Bus interface */
95 	DEVMETHOD(bus_print_child,	lbc_print_child),
96 	DEVMETHOD(bus_setup_intr,	bus_generic_setup_intr),
97 	DEVMETHOD(bus_teardown_intr,	NULL),
98 
99 	DEVMETHOD(bus_alloc_resource,	lbc_alloc_resource),
100 	DEVMETHOD(bus_release_resource,	lbc_release_resource),
101 	DEVMETHOD(bus_activate_resource, lbc_activate_resource),
102 	DEVMETHOD(bus_deactivate_resource, lbc_deactivate_resource),
103 
104 	/* OFW bus interface */
105 	DEVMETHOD(ofw_bus_get_devinfo,	lbc_get_devinfo),
106 	DEVMETHOD(ofw_bus_get_compat,	ofw_bus_gen_get_compat),
107 	DEVMETHOD(ofw_bus_get_model,	ofw_bus_gen_get_model),
108 	DEVMETHOD(ofw_bus_get_name,	ofw_bus_gen_get_name),
109 	DEVMETHOD(ofw_bus_get_node,	ofw_bus_gen_get_node),
110 	DEVMETHOD(ofw_bus_get_type,	ofw_bus_gen_get_type),
111 
112 	{ 0, 0 }
113 };
114 
115 static driver_t lbc_driver = {
116 	"lbc",
117 	lbc_methods,
118 	sizeof(struct lbc_softc)
119 };
120 
121 devclass_t lbc_devclass;
122 
123 EARLY_DRIVER_MODULE(lbc, ofwbus, lbc_driver, lbc_devclass,
124     0, 0, BUS_PASS_BUS);
125 
126 /*
127  * Calculate address mask used by OR(n) registers. Use memory region size to
128  * determine mask value. The size must be a power of two and within the range
129  * of 32KB - 4GB. Otherwise error code is returned. Value representing
130  * 4GB size can be passed as 0xffffffff.
131  */
132 static uint32_t
133 lbc_address_mask(uint32_t size)
134 {
135 	int n = 15;
136 
137 	if (size == ~0)
138 		return (0);
139 
140 	while (n < 32) {
141 		if (size == (1U << n))
142 			break;
143 		n++;
144 	}
145 
146 	if (n == 32)
147 		return (EINVAL);
148 
149 	return (0xffff8000 << (n - 15));
150 }
151 
152 static void
153 lbc_banks_unmap(struct lbc_softc *sc)
154 {
155 	int r;
156 
157 	r = 0;
158 	while (r < LBC_DEV_MAX) {
159 		if (sc->sc_range[r].size == 0)
160 			return;
161 
162 		pmap_unmapdev(sc->sc_range[r].kva, sc->sc_range[r].size);
163 		law_disable(OCP85XX_TGTIF_LBC, sc->sc_range[r].addr,
164 		    sc->sc_range[r].size);
165 		r++;
166 	}
167 }
168 
169 static int
170 lbc_banks_map(struct lbc_softc *sc)
171 {
172 	vm_paddr_t end, start;
173 	vm_size_t size;
174 	u_int i, r, ranges, s;
175 	int error;
176 
177 	bzero(sc->sc_range, sizeof(sc->sc_range));
178 
179 	/*
180 	 * Determine number of discontiguous address ranges to program.
181 	 */
182 	ranges = 0;
183 	for (i = 0; i < LBC_DEV_MAX; i++) {
184 		size = sc->sc_banks[i].size;
185 		if (size == 0)
186 			continue;
187 
188 		start = sc->sc_banks[i].addr;
189 		for (r = 0; r < ranges; r++) {
190 			/* Avoid wrap-around bugs. */
191 			end = sc->sc_range[r].addr - 1 + sc->sc_range[r].size;
192 			if (start > 0 && end == start - 1) {
193 				sc->sc_range[r].size += size;
194 				break;
195 			}
196 			/* Avoid wrap-around bugs. */
197 			end = start - 1 + size;
198 			if (sc->sc_range[r].addr > 0 &&
199 			    end == sc->sc_range[r].addr - 1) {
200 				sc->sc_range[r].addr = start;
201 				sc->sc_range[r].size += size;
202 				break;
203 			}
204 		}
205 		if (r == ranges) {
206 			/* New range; add using insertion sort */
207 			r = 0;
208 			while (r < ranges && sc->sc_range[r].addr < start)
209 				r++;
210 			for (s = ranges; s > r; s--)
211 				sc->sc_range[s] = sc->sc_range[s-1];
212 			sc->sc_range[r].addr = start;
213 			sc->sc_range[r].size = size;
214 			ranges++;
215 		}
216 	}
217 
218 	/*
219 	 * Ranges are sorted so quickly go over the list to merge ranges
220 	 * that grew toward each other while building the ranges.
221 	 */
222 	r = 0;
223 	while (r < ranges - 1) {
224 		end = sc->sc_range[r].addr + sc->sc_range[r].size;
225 		if (end != sc->sc_range[r+1].addr) {
226 			r++;
227 			continue;
228 		}
229 		sc->sc_range[r].size += sc->sc_range[r+1].size;
230 		for (s = r + 1; s < ranges - 1; s++)
231 			sc->sc_range[s] = sc->sc_range[s+1];
232 		bzero(&sc->sc_range[s], sizeof(sc->sc_range[s]));
233 		ranges--;
234 	}
235 
236 	/*
237 	 * Configure LAW for the LBC ranges and map the physical memory
238 	 * range into KVA.
239 	 */
240 	for (r = 0; r < ranges; r++) {
241 		start = sc->sc_range[r].addr;
242 		size = sc->sc_range[r].size;
243 		error = law_enable(OCP85XX_TGTIF_LBC, start, size);
244 		if (error)
245 			return (error);
246 		sc->sc_range[r].kva = (vm_offset_t)pmap_mapdev(start, size);
247 	}
248 
249 	/* XXX: need something better here? */
250 	if (ranges == 0)
251 		return (EINVAL);
252 
253 	/* Assign KVA to banks based on the enclosing range. */
254 	for (i = 0; i < LBC_DEV_MAX; i++) {
255 		size = sc->sc_banks[i].size;
256 		if (size == 0)
257 			continue;
258 
259 		start = sc->sc_banks[i].addr;
260 		for (r = 0; r < ranges; r++) {
261 			end = sc->sc_range[r].addr - 1 + sc->sc_range[r].size;
262 			if (start >= sc->sc_range[r].addr &&
263 			    start - 1 + size <= end)
264 				break;
265 		}
266 		if (r < ranges) {
267 			sc->sc_banks[i].kva = sc->sc_range[r].kva +
268 			    (start - sc->sc_range[r].addr);
269 		}
270 	}
271 
272 	return (0);
273 }
274 
275 static int
276 lbc_banks_enable(struct lbc_softc *sc)
277 {
278 	uint32_t size;
279 	uint32_t regval;
280 	int error, i;
281 
282 	for (i = 0; i < LBC_DEV_MAX; i++) {
283 		size = sc->sc_banks[i].size;
284 		if (size == 0)
285 			continue;
286 
287 		/*
288 		 * Compute and program BR value.
289 		 */
290 		regval = sc->sc_banks[i].addr;
291 		switch (sc->sc_banks[i].width) {
292 		case 8:
293 			regval |= (1 << 11);
294 			break;
295 		case 16:
296 			regval |= (2 << 11);
297 			break;
298 		case 32:
299 			regval |= (3 << 11);
300 			break;
301 		default:
302 			error = EINVAL;
303 			goto fail;
304 		}
305 		regval |= (sc->sc_banks[i].decc << 9);
306 		regval |= (sc->sc_banks[i].wp << 8);
307 		regval |= (sc->sc_banks[i].msel << 5);
308 		regval |= (sc->sc_banks[i].atom << 2);
309 		regval |= 1;
310 		bus_space_write_4(sc->sc_bst, sc->sc_bsh,
311 		    LBC85XX_BR(i), regval);
312 
313 		/*
314 		 * Compute and program OR value.
315 		 */
316 		regval = lbc_address_mask(size);
317 		switch (sc->sc_banks[i].msel) {
318 		case LBCRES_MSEL_GPCM:
319 			/* TODO Add flag support for option registers */
320 			regval |= 0x0ff7;
321 			break;
322 		case LBCRES_MSEL_FCM:
323 			/* TODO Add flag support for options register */
324 			regval |= 0x0796;
325 			break;
326 		case LBCRES_MSEL_UPMA:
327 		case LBCRES_MSEL_UPMB:
328 		case LBCRES_MSEL_UPMC:
329 			printf("UPM mode not supported yet!");
330 			error = ENOSYS;
331 			goto fail;
332 		}
333 		bus_space_write_4(sc->sc_bst, sc->sc_bsh,
334 		    LBC85XX_OR(i), regval);
335 	}
336 
337 	return (0);
338 
339 fail:
340 	lbc_banks_unmap(sc);
341 	return (error);
342 }
343 
344 static void
345 fdt_lbc_fixup(phandle_t node, struct lbc_softc *sc, struct lbc_devinfo *di)
346 {
347 	pcell_t width;
348 	int bank;
349 
350 	if (OF_getprop(node, "bank-width", (void *)&width, sizeof(width)) <= 0)
351 		return;
352 
353 	bank = di->di_bank;
354 	if (sc->sc_banks[bank].size == 0)
355 		return;
356 
357 	/* Express width in bits. */
358 	sc->sc_banks[bank].width = width * 8;
359 }
360 
361 static int
362 fdt_lbc_reg_decode(phandle_t node, struct lbc_softc *sc,
363     struct lbc_devinfo *di)
364 {
365 	u_long start, end, count;
366 	pcell_t *reg, *regptr;
367 	pcell_t addr_cells, size_cells;
368 	int tuple_size, tuples;
369 	int i, rv, bank;
370 
371 	if (fdt_addrsize_cells(OF_parent(node), &addr_cells, &size_cells) != 0)
372 		return (ENXIO);
373 
374 	tuple_size = sizeof(pcell_t) * (addr_cells + size_cells);
375 	tuples = OF_getprop_alloc(node, "reg", tuple_size, (void **)&reg);
376 	debugf("addr_cells = %d, size_cells = %d\n", addr_cells, size_cells);
377 	debugf("tuples = %d, tuple size = %d\n", tuples, tuple_size);
378 	if (tuples <= 0)
379 		/* No 'reg' property in this node. */
380 		return (0);
381 
382 	regptr = reg;
383 	for (i = 0; i < tuples; i++) {
384 
385 		bank = fdt_data_get((void *)reg, 1);
386 		di->di_bank = bank;
387 		reg += 1;
388 
389 		/* Get address/size. */
390 		rv = fdt_data_to_res(reg, addr_cells - 1, size_cells, &start,
391 		    &count);
392 		if (rv != 0) {
393 			resource_list_free(&di->di_res);
394 			goto out;
395 		}
396 		reg += addr_cells - 1 + size_cells;
397 
398 		/* Calculate address range relative to VA base. */
399 		start = sc->sc_banks[bank].kva + start;
400 		end = start + count - 1;
401 
402 		debugf("reg addr bank = %d, start = %lx, end = %lx, "
403 		    "count = %lx\n", bank, start, end, count);
404 
405 		/* Use bank (CS) cell as rid. */
406 		resource_list_add(&di->di_res, SYS_RES_MEMORY, bank, start,
407 		    end, count);
408 	}
409 	rv = 0;
410 out:
411 	free(regptr, M_OFWPROP);
412 	return (rv);
413 }
414 
415 static void
416 lbc_intr(void *arg)
417 {
418 	struct lbc_softc *sc = arg;
419 	uint32_t ltesr;
420 
421 	ltesr = bus_space_read_4(sc->sc_bst, sc->sc_bsh, LBC85XX_LTESR);
422 	sc->sc_ltesr = ltesr;
423 	bus_space_write_4(sc->sc_bst, sc->sc_bsh, LBC85XX_LTESR, ltesr);
424 	wakeup(sc->sc_dev);
425 }
426 
427 static int
428 lbc_probe(device_t dev)
429 {
430 
431 	if (!(ofw_bus_is_compatible(dev, "fsl,lbc") ||
432 	    ofw_bus_is_compatible(dev, "fsl,elbc")))
433 		return (ENXIO);
434 
435 	device_set_desc(dev, "Freescale Local Bus Controller");
436 	return (BUS_PROBE_DEFAULT);
437 }
438 
439 static int
440 lbc_attach(device_t dev)
441 {
442 	struct lbc_softc *sc;
443 	struct lbc_devinfo *di;
444 	struct rman *rm;
445 	u_long offset, start, size;
446 	device_t cdev;
447 	phandle_t node, child;
448 	pcell_t *ranges, *rangesptr;
449 	int tuple_size, tuples;
450 	int par_addr_cells;
451 	int bank, error, i;
452 
453 	sc = device_get_softc(dev);
454 	sc->sc_dev = dev;
455 
456 	sc->sc_mrid = 0;
457 	sc->sc_mres = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &sc->sc_mrid,
458 	    RF_ACTIVE);
459 	if (sc->sc_mres == NULL)
460 		return (ENXIO);
461 
462 	sc->sc_bst = rman_get_bustag(sc->sc_mres);
463 	sc->sc_bsh = rman_get_bushandle(sc->sc_mres);
464 
465 	for (bank = 0; bank < LBC_DEV_MAX; bank++) {
466 		bus_space_write_4(sc->sc_bst, sc->sc_bsh, LBC85XX_BR(bank), 0);
467 		bus_space_write_4(sc->sc_bst, sc->sc_bsh, LBC85XX_OR(bank), 0);
468 	}
469 
470 	/*
471 	 * Initialize configuration register:
472 	 * - enable Local Bus
473 	 * - set data buffer control signal function
474 	 * - disable parity byte select
475 	 * - set ECC parity type
476 	 * - set bus monitor timing and timer prescale
477 	 */
478 	bus_space_write_4(sc->sc_bst, sc->sc_bsh, LBC85XX_LBCR, 0);
479 
480 	/*
481 	 * Initialize clock ratio register:
482 	 * - disable PLL bypass mode
483 	 * - configure LCLK delay cycles for the assertion of LALE
484 	 * - set system clock divider
485 	 */
486 	bus_space_write_4(sc->sc_bst, sc->sc_bsh, LBC85XX_LCRR, 0x00030008);
487 
488 	bus_space_write_4(sc->sc_bst, sc->sc_bsh, LBC85XX_LTEDR, 0);
489 	bus_space_write_4(sc->sc_bst, sc->sc_bsh, LBC85XX_LTESR, ~0);
490 	bus_space_write_4(sc->sc_bst, sc->sc_bsh, LBC85XX_LTEIR, 0x64080001);
491 
492 	sc->sc_irid = 0;
493 	sc->sc_ires = bus_alloc_resource_any(dev, SYS_RES_IRQ, &sc->sc_irid,
494 	    RF_ACTIVE | RF_SHAREABLE);
495 	if (sc->sc_ires != NULL) {
496 		error = bus_setup_intr(dev, sc->sc_ires,
497 		    INTR_TYPE_MISC | INTR_MPSAFE, NULL, lbc_intr, sc,
498 		    &sc->sc_icookie);
499 		if (error) {
500 			device_printf(dev, "could not activate interrupt\n");
501 			bus_release_resource(dev, SYS_RES_IRQ, sc->sc_irid,
502 			    sc->sc_ires);
503 			sc->sc_ires = NULL;
504 		}
505 	}
506 
507 	sc->sc_ltesr = ~0;
508 
509 	rangesptr = NULL;
510 
511 	rm = &sc->sc_rman;
512 	rm->rm_type = RMAN_ARRAY;
513 	rm->rm_descr = "Local Bus Space";
514 	error = rman_init(rm);
515 	if (error)
516 		goto fail;
517 
518 	error = rman_manage_region(rm, rm->rm_start, rm->rm_end);
519 	if (error) {
520 		rman_fini(rm);
521 		goto fail;
522 	}
523 
524 	/*
525 	 * Process 'ranges' property.
526 	 */
527 	node = ofw_bus_get_node(dev);
528 	if ((fdt_addrsize_cells(node, &sc->sc_addr_cells,
529 	    &sc->sc_size_cells)) != 0) {
530 		error = ENXIO;
531 		goto fail;
532 	}
533 
534 	par_addr_cells = fdt_parent_addr_cells(node);
535 	if (par_addr_cells > 2) {
536 		device_printf(dev, "unsupported parent #addr-cells\n");
537 		error = ERANGE;
538 		goto fail;
539 	}
540 	tuple_size = sizeof(pcell_t) * (sc->sc_addr_cells + par_addr_cells +
541 	    sc->sc_size_cells);
542 
543 	tuples = OF_getprop_alloc(node, "ranges", tuple_size,
544 	    (void **)&ranges);
545 	if (tuples < 0) {
546 		device_printf(dev, "could not retrieve 'ranges' property\n");
547 		error = ENXIO;
548 		goto fail;
549 	}
550 	rangesptr = ranges;
551 
552 	debugf("par addr_cells = %d, addr_cells = %d, size_cells = %d, "
553 	    "tuple_size = %d, tuples = %d\n", par_addr_cells,
554 	    sc->sc_addr_cells, sc->sc_size_cells, tuple_size, tuples);
555 
556 	start = 0;
557 	size = 0;
558 	for (i = 0; i < tuples; i++) {
559 
560 		/* The first cell is the bank (chip select) number. */
561 		bank = fdt_data_get((void *)ranges, 1);
562 		if (bank < 0 || bank > LBC_DEV_MAX) {
563 			device_printf(dev, "bank out of range: %d\n", bank);
564 			error = ERANGE;
565 			goto fail;
566 		}
567 		ranges += 1;
568 
569 		/*
570 		 * Remaining cells of the child address define offset into
571 		 * this CS.
572 		 */
573 		offset = fdt_data_get((void *)ranges, sc->sc_addr_cells - 1);
574 		ranges += sc->sc_addr_cells - 1;
575 
576 		/* Parent bus start address of this bank. */
577 		start = fdt_data_get((void *)ranges, par_addr_cells);
578 		ranges += par_addr_cells;
579 
580 		size = fdt_data_get((void *)ranges, sc->sc_size_cells);
581 		ranges += sc->sc_size_cells;
582 		debugf("bank = %d, start = %lx, size = %lx\n", bank,
583 		    start, size);
584 
585 		sc->sc_banks[bank].addr = start + offset;
586 		sc->sc_banks[bank].size = size;
587 
588 		/*
589 		 * Attributes for the bank.
590 		 *
591 		 * XXX Note there are no DT bindings defined for them at the
592 		 * moment, so we need to provide some defaults.
593 		 */
594 		sc->sc_banks[bank].width = 16;
595 		sc->sc_banks[bank].msel = LBCRES_MSEL_GPCM;
596 		sc->sc_banks[bank].decc = LBCRES_DECC_DISABLED;
597 		sc->sc_banks[bank].atom = LBCRES_ATOM_DISABLED;
598 		sc->sc_banks[bank].wp = 0;
599 	}
600 
601 	/*
602 	 * Initialize mem-mappings for the LBC banks (i.e. chip selects).
603 	 */
604 	error = lbc_banks_map(sc);
605 	if (error)
606 		goto fail;
607 
608 	/*
609 	 * Walk the localbus and add direct subordinates as our children.
610 	 */
611 	for (child = OF_child(node); child != 0; child = OF_peer(child)) {
612 
613 		di = malloc(sizeof(*di), M_LBC, M_WAITOK | M_ZERO);
614 
615 		if (ofw_bus_gen_setup_devinfo(&di->di_ofw, child) != 0) {
616 			free(di, M_LBC);
617 			device_printf(dev, "could not set up devinfo\n");
618 			continue;
619 		}
620 
621 		resource_list_init(&di->di_res);
622 
623 		if (fdt_lbc_reg_decode(child, sc, di)) {
624 			device_printf(dev, "could not process 'reg' "
625 			    "property\n");
626 			ofw_bus_gen_destroy_devinfo(&di->di_ofw);
627 			free(di, M_LBC);
628 			continue;
629 		}
630 
631 		fdt_lbc_fixup(child, sc, di);
632 
633 		/* Add newbus device for this FDT node */
634 		cdev = device_add_child(dev, NULL, -1);
635 		if (cdev == NULL) {
636 			device_printf(dev, "could not add child: %s\n",
637 			    di->di_ofw.obd_name);
638 			resource_list_free(&di->di_res);
639 			ofw_bus_gen_destroy_devinfo(&di->di_ofw);
640 			free(di, M_LBC);
641 			continue;
642 		}
643 		debugf("added child name='%s', node=%p\n", di->di_ofw.obd_name,
644 		    (void *)child);
645 		device_set_ivars(cdev, di);
646 	}
647 
648 	/*
649 	 * Enable the LBC.
650 	 */
651 	lbc_banks_enable(sc);
652 
653 	free(rangesptr, M_OFWPROP);
654 	return (bus_generic_attach(dev));
655 
656 fail:
657 	free(rangesptr, M_OFWPROP);
658 	bus_release_resource(dev, SYS_RES_MEMORY, sc->sc_mrid, sc->sc_mres);
659 	return (error);
660 }
661 
662 static int
663 lbc_shutdown(device_t dev)
664 {
665 
666 	/* TODO */
667 	return(0);
668 }
669 
670 static struct resource *
671 lbc_alloc_resource(device_t bus, device_t child, int type, int *rid,
672     rman_res_t start, rman_res_t end, rman_res_t count, u_int flags)
673 {
674 	struct lbc_softc *sc;
675 	struct lbc_devinfo *di;
676 	struct resource_list_entry *rle;
677 	struct resource *res;
678 	struct rman *rm;
679 	int needactivate;
680 
681 	/* We only support default allocations. */
682 	if (!RMAN_IS_DEFAULT_RANGE(start, end))
683 		return (NULL);
684 
685 	sc = device_get_softc(bus);
686 	if (type == SYS_RES_IRQ)
687 		return (bus_alloc_resource(bus, type, rid, start, end, count,
688 		    flags));
689 
690 	/*
691 	 * Request for the default allocation with a given rid: use resource
692 	 * list stored in the local device info.
693 	 */
694 	if ((di = device_get_ivars(child)) == NULL)
695 		return (NULL);
696 
697 	if (type == SYS_RES_IOPORT)
698 		type = SYS_RES_MEMORY;
699 
700 	rid = &di->di_bank;
701 
702 	rle = resource_list_find(&di->di_res, type, *rid);
703 	if (rle == NULL) {
704 		device_printf(bus, "no default resources for "
705 		    "rid = %d, type = %d\n", *rid, type);
706 		return (NULL);
707 	}
708 	start = rle->start;
709 	count = rle->count;
710 	end = start + count - 1;
711 
712 	sc = device_get_softc(bus);
713 
714 	needactivate = flags & RF_ACTIVE;
715 	flags &= ~RF_ACTIVE;
716 
717 	rm = &sc->sc_rman;
718 
719 	res = rman_reserve_resource(rm, start, end, count, flags, child);
720 	if (res == NULL) {
721 		device_printf(bus, "failed to reserve resource %#jx - %#jx "
722 		    "(%#jx)\n", start, end, count);
723 		return (NULL);
724 	}
725 
726 	rman_set_rid(res, *rid);
727 	rman_set_bustag(res, &bs_be_tag);
728 	rman_set_bushandle(res, rman_get_start(res));
729 
730 	if (needactivate)
731 		if (bus_activate_resource(child, type, *rid, res)) {
732 			device_printf(child, "resource activation failed\n");
733 			rman_release_resource(res);
734 			return (NULL);
735 		}
736 
737 	return (res);
738 }
739 
740 static int
741 lbc_print_child(device_t dev, device_t child)
742 {
743 	struct lbc_devinfo *di;
744 	struct resource_list *rl;
745 	int rv;
746 
747 	di = device_get_ivars(child);
748 	rl = &di->di_res;
749 
750 	rv = 0;
751 	rv += bus_print_child_header(dev, child);
752 	rv += resource_list_print_type(rl, "mem", SYS_RES_MEMORY, "%#jx");
753 	rv += resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%jd");
754 	rv += bus_print_child_footer(dev, child);
755 
756 	return (rv);
757 }
758 
759 static int
760 lbc_release_resource(device_t dev, device_t child, int type, int rid,
761     struct resource *res)
762 {
763 	int err;
764 
765 	if (rman_get_flags(res) & RF_ACTIVE) {
766 		err = bus_deactivate_resource(child, type, rid, res);
767 		if (err)
768 			return (err);
769 	}
770 
771 	return (rman_release_resource(res));
772 }
773 
774 static int
775 lbc_activate_resource(device_t bus __unused, device_t child __unused,
776     int type __unused, int rid __unused, struct resource *r)
777 {
778 
779 	/* Child resources were already mapped, just activate. */
780 	return (rman_activate_resource(r));
781 }
782 
783 static int
784 lbc_deactivate_resource(device_t bus __unused, device_t child __unused,
785     int type __unused, int rid __unused, struct resource *r)
786 {
787 
788 	return (rman_deactivate_resource(r));
789 }
790 
791 static const struct ofw_bus_devinfo *
792 lbc_get_devinfo(device_t bus, device_t child)
793 {
794 	struct lbc_devinfo *di;
795 
796 	di = device_get_ivars(child);
797 	return (&di->di_ofw);
798 }
799 
800 void
801 lbc_write_reg(device_t child, u_int off, uint32_t val)
802 {
803 	device_t dev;
804 	struct lbc_softc *sc;
805 
806 	dev = device_get_parent(child);
807 
808 	if (off >= 0x1000) {
809 		device_printf(dev, "%s(%s): invalid offset %#x\n",
810 		    __func__, device_get_nameunit(child), off);
811 		return;
812 	}
813 
814 	sc = device_get_softc(dev);
815 
816 	if (off == LBC85XX_LTESR && sc->sc_ltesr != ~0u) {
817 		sc->sc_ltesr ^= (val & sc->sc_ltesr);
818 		return;
819 	}
820 
821 	if (off == LBC85XX_LTEATR && (val & 1) == 0)
822 		sc->sc_ltesr = ~0u;
823 	bus_space_write_4(sc->sc_bst, sc->sc_bsh, off, val);
824 }
825 
826 uint32_t
827 lbc_read_reg(device_t child, u_int off)
828 {
829 	device_t dev;
830 	struct lbc_softc *sc;
831 	uint32_t val;
832 
833 	dev = device_get_parent(child);
834 
835 	if (off >= 0x1000) {
836 		device_printf(dev, "%s(%s): invalid offset %#x\n",
837 		    __func__, device_get_nameunit(child), off);
838 		return (~0U);
839 	}
840 
841 	sc = device_get_softc(dev);
842 
843 	if (off == LBC85XX_LTESR && sc->sc_ltesr != ~0U)
844 		val = sc->sc_ltesr;
845 	else
846 		val = bus_space_read_4(sc->sc_bst, sc->sc_bsh, off);
847 	return (val);
848 }
849