xref: /freebsd/sys/powerpc/powermac/grackle.c (revision 6b3455a7665208c366849f0b2b3bc916fb97516e)
1 /*
2  * Copyright 2003 by Peter Grehan. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  * 3. The name of the author may not be used to endorse or promote products
13  *    derived from this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
20  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
22  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
23  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD$
28  */
29 
30 #define __RMAN_RESOURCE_VISIBLE
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/module.h>
34 #include <sys/bus.h>
35 #include <sys/conf.h>
36 #include <sys/kernel.h>
37 
38 #include <dev/ofw/openfirm.h>
39 #include <dev/ofw/ofw_pci.h>
40 
41 #include <dev/pci/pcivar.h>
42 #include <dev/pci/pcireg.h>
43 
44 #include <machine/bus.h>
45 #include <machine/md_var.h>
46 #include <machine/nexusvar.h>
47 #include <machine/resource.h>
48 
49 #include <sys/rman.h>
50 
51 #include <powerpc/ofw/ofw_pci.h>
52 #include <powerpc/powermac/gracklevar.h>
53 
54 #include <vm/vm.h>
55 #include <vm/pmap.h>
56 
57 #include "pcib_if.h"
58 
59 int      badaddr(void *, size_t);  /* XXX */
60 
61 /*
62  * Device interface.
63  */
64 static int		grackle_probe(device_t);
65 static int		grackle_attach(device_t);
66 
67 /*
68  * Bus interface.
69  */
70 static int		grackle_read_ivar(device_t, device_t, int,
71 			    uintptr_t *);
72 static struct		resource * grackle_alloc_resource(device_t bus,
73 			    device_t child, int type, int *rid, u_long start,
74 			    u_long end, u_long count, u_int flags);
75 static int		grackle_release_resource(device_t bus, device_t child,
76     			    int type, int rid, struct resource *res);
77 static int		grackle_activate_resource(device_t bus, device_t child,
78 			    int type, int rid, struct resource *res);
79 static int		grackle_deactivate_resource(device_t bus,
80     			    device_t child, int type, int rid,
81     			    struct resource *res);
82 
83 
84 /*
85  * pcib interface.
86  */
87 static int		grackle_maxslots(device_t);
88 static u_int32_t	grackle_read_config(device_t, u_int, u_int, u_int,
89 			    u_int, int);
90 static void		grackle_write_config(device_t, u_int, u_int, u_int,
91 			    u_int, u_int32_t, int);
92 static int		grackle_route_interrupt(device_t, device_t, int);
93 
94 /*
95  * Local routines.
96  */
97 static int		grackle_enable_config(struct grackle_softc *, u_int,
98 			    u_int, u_int, u_int);
99 static void		grackle_disable_config(struct grackle_softc *);
100 
101 /*
102  * Driver methods.
103  */
104 static device_method_t	grackle_methods[] = {
105 	/* Device interface */
106 	DEVMETHOD(device_probe,		grackle_probe),
107 	DEVMETHOD(device_attach,	grackle_attach),
108 
109 	/* Bus interface */
110 	DEVMETHOD(bus_print_child,	bus_generic_print_child),
111 	DEVMETHOD(bus_read_ivar,	grackle_read_ivar),
112 	DEVMETHOD(bus_setup_intr,	bus_generic_setup_intr),
113 	DEVMETHOD(bus_teardown_intr,	bus_generic_teardown_intr),
114 	DEVMETHOD(bus_alloc_resource,	grackle_alloc_resource),
115 	DEVMETHOD(bus_release_resource,	grackle_release_resource),
116 	DEVMETHOD(bus_activate_resource,	grackle_activate_resource),
117 	DEVMETHOD(bus_deactivate_resource,	grackle_deactivate_resource),
118 
119 	/* pcib interface */
120 	DEVMETHOD(pcib_maxslots,	grackle_maxslots),
121 	DEVMETHOD(pcib_read_config,	grackle_read_config),
122 	DEVMETHOD(pcib_write_config,	grackle_write_config),
123 	DEVMETHOD(pcib_route_interrupt,	grackle_route_interrupt),
124 
125 	{ 0, 0 }
126 };
127 
128 static driver_t	grackle_driver = {
129 	"pcib",
130 	grackle_methods,
131 	sizeof(struct grackle_softc)
132 };
133 
134 static devclass_t	grackle_devclass;
135 
136 DRIVER_MODULE(grackle, nexus, grackle_driver, grackle_devclass, 0, 0);
137 
138 static int
139 grackle_probe(device_t dev)
140 {
141 	char	*type, *compatible;
142 
143 	type = nexus_get_device_type(dev);
144 	compatible = nexus_get_compatible(dev);
145 
146 	if (type == NULL || compatible == NULL)
147 		return (ENXIO);
148 
149 	if (strcmp(type, "pci") != 0 || strcmp(compatible, "grackle") != 0)
150 		return (ENXIO);
151 
152 	device_set_desc(dev, "MPC106 (Grackle) Host-PCI bridge");
153 	return (0);
154 }
155 
156 static int
157 grackle_attach(device_t dev)
158 {
159 	struct		grackle_softc *sc;
160 	phandle_t	node;
161 	u_int32_t	busrange[2];
162 	struct		grackle_range *rp, *io, *mem[2];
163 	int		nmem, i;
164 
165 	node = nexus_get_node(dev);
166 	sc = device_get_softc(dev);
167 
168 	if (OF_getprop(node, "bus-range", busrange, sizeof(busrange)) != 8)
169 		return (ENXIO);
170 
171 	sc->sc_dev = dev;
172 	sc->sc_node = node;
173 	sc->sc_bus = busrange[0];
174 
175 	/*
176 	 * The Grackle PCI config addr/data registers are actually in
177 	 * PCI space, but since they are needed to actually probe the
178 	 * PCI bus, use the fact that they are also available directly
179 	 * on the processor bus and map them
180 	 */
181 	sc->sc_addr = (vm_offset_t)pmap_mapdev(GRACKLE_ADDR, PAGE_SIZE);
182 	sc->sc_data = (vm_offset_t)pmap_mapdev(GRACKLE_DATA, PAGE_SIZE);
183 
184 	bzero(sc->sc_range, sizeof(sc->sc_range));
185 	sc->sc_nrange = OF_getprop(node, "ranges", sc->sc_range,
186 	    sizeof(sc->sc_range));
187 
188 	if (sc->sc_nrange == -1) {
189 		device_printf(dev, "could not get ranges\n");
190 		return (ENXIO);
191 	}
192 
193 	sc->sc_range[6].pci_hi = 0;
194 	io = NULL;
195 	nmem = 0;
196 
197 	for (rp = sc->sc_range; rp->pci_hi != 0; rp++) {
198 		switch (rp->pci_hi & OFW_PCI_PHYS_HI_SPACEMASK) {
199 		case OFW_PCI_PHYS_HI_SPACE_CONFIG:
200 			break;
201 		case OFW_PCI_PHYS_HI_SPACE_IO:
202 			io = rp;
203 			break;
204 		case OFW_PCI_PHYS_HI_SPACE_MEM32:
205 			mem[nmem] = rp;
206 			nmem++;
207 			break;
208 		case OFW_PCI_PHYS_HI_SPACE_MEM64:
209 			break;
210 		}
211 	}
212 
213 	if (io == NULL) {
214 		device_printf(dev, "can't find io range\n");
215 		return (ENXIO);
216 	}
217 	sc->sc_io_rman.rm_type = RMAN_ARRAY;
218 	sc->sc_io_rman.rm_descr = "Grackle PCI I/O Ports";
219 	sc->sc_iostart = io->pci_iospace;
220 	if (rman_init(&sc->sc_io_rman) != 0 ||
221 	    rman_manage_region(&sc->sc_io_rman, io->pci_lo,
222 	    io->pci_lo + io->size_lo) != 0) {
223 		device_printf(dev, "failed to set up io range management\n");
224 		return (ENXIO);
225 	}
226 
227 	if (nmem == 0) {
228 		device_printf(dev, "can't find mem ranges\n");
229 		return (ENXIO);
230 	}
231 	sc->sc_mem_rman.rm_type = RMAN_ARRAY;
232 	sc->sc_mem_rman.rm_descr = "Grackle PCI Memory";
233 	if (rman_init(&sc->sc_mem_rman) != 0) {
234 		device_printf(dev,
235 		    "failed to init mem range resources\n");
236 		return (ENXIO);
237 	}
238 	for (i = 0; i < nmem; i++) {
239 		if (rman_manage_region(&sc->sc_mem_rman, mem[i]->pci_lo,
240 		    mem[i]->pci_lo + mem[i]->size_lo) != 0) {
241 			device_printf(dev,
242 			    "failed to set up memory range management\n");
243 			return (ENXIO);
244 		}
245 	}
246 
247 	/*
248 	 * Write out the correct PIC interrupt values to config space
249 	 * of all devices on the bus.
250 	 */
251 	ofw_pci_fixup(dev, sc->sc_bus, sc->sc_node);
252 
253 	device_add_child(dev, "pci", device_get_unit(dev));
254 	return (bus_generic_attach(dev));
255 }
256 
257 static int
258 grackle_maxslots(device_t dev)
259 {
260 
261 	return (PCI_SLOTMAX);
262 }
263 
264 static u_int32_t
265 grackle_read_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg,
266     int width)
267 {
268 	struct		grackle_softc *sc;
269 	vm_offset_t	caoff;
270 	u_int32_t	retval = 0xffffffff;
271 
272 	sc = device_get_softc(dev);
273 	caoff = sc->sc_data + (reg & 0x03);
274 
275 	if (grackle_enable_config(sc, bus, slot, func, reg) != 0) {
276 
277 		/*
278 		 * Config probes to non-existent devices on the
279 		 * secondary bus generates machine checks. Be sure
280 		 * to catch these.
281 		 */
282 		if (bus > 0) {
283 		  if (badaddr((void *)sc->sc_data, 4)) {
284 			  return (retval);
285 		  }
286 		}
287 
288 		switch (width) {
289 		case 1:
290 			retval = (in8rb(caoff));
291 			break;
292 		case 2:
293 			retval = (in16rb(caoff));
294 			break;
295 		case 4:
296 			retval = (in32rb(caoff));
297 			break;
298 		}
299 	}
300 	grackle_disable_config(sc);
301 
302 	return (retval);
303 }
304 
305 static void
306 grackle_write_config(device_t dev, u_int bus, u_int slot, u_int func,
307     u_int reg, u_int32_t val, int width)
308 {
309 	struct		grackle_softc *sc;
310 	vm_offset_t	caoff;
311 
312 	sc = device_get_softc(dev);
313 	caoff = sc->sc_data + (reg & 0x03);
314 
315 	if (grackle_enable_config(sc, bus, slot, func, reg)) {
316 		switch (width) {
317 		case 1:
318 			out8rb(caoff, val);
319 			(void)in8rb(caoff);
320 			break;
321 		case 2:
322 			out16rb(caoff, val);
323 			(void)in16rb(caoff);
324 			break;
325 		case 4:
326 			out32rb(caoff, val);
327 			(void)in32rb(caoff);
328 			break;
329 		}
330 	}
331 	grackle_disable_config(sc);
332 }
333 
334 static int
335 grackle_route_interrupt(device_t bus, device_t dev, int pin)
336 {
337 
338 	return (0);
339 }
340 
341 static int
342 grackle_read_ivar(device_t dev, device_t child, int which, uintptr_t *result)
343 {
344 	struct	grackle_softc *sc;
345 
346 	sc = device_get_softc(dev);
347 
348 	switch (which) {
349 	case PCIB_IVAR_BUS:
350 		*result = sc->sc_bus;
351 		return (0);
352 		break;
353 	}
354 
355 	return (ENOENT);
356 }
357 
358 static struct resource *
359 grackle_alloc_resource(device_t bus, device_t child, int type, int *rid,
360     u_long start, u_long end, u_long count, u_int flags)
361 {
362 	struct			grackle_softc *sc;
363 	struct			resource *rv;
364 	struct			rman *rm;
365 	bus_space_tag_t		bt;
366 	int			needactivate;
367 
368 	needactivate = flags & RF_ACTIVE;
369 	flags &= ~RF_ACTIVE;
370 
371 	sc = device_get_softc(bus);
372 
373 	switch (type) {
374 	case SYS_RES_MEMORY:
375 		rm = &sc->sc_mem_rman;
376 		bt = PPC_BUS_SPACE_MEM;
377 		break;
378 
379 	case SYS_RES_IOPORT:
380 		rm = &sc->sc_io_rman;
381 		bt = PPC_BUS_SPACE_IO;
382 		break;
383 
384 	case SYS_RES_IRQ:
385 		return (bus_alloc_resource(bus, type, rid, start, end, count,
386 		    flags));
387 		break;
388 
389 	default:
390 		device_printf(bus, "unknown resource request from %s\n",
391 		    device_get_nameunit(child));
392 		return (NULL);
393 	}
394 
395 	rv = rman_reserve_resource(rm, start, end, count, flags, child);
396 	if (rv == NULL) {
397 		device_printf(bus, "failed to reserve resource for %s\n",
398 		    device_get_nameunit(child));
399 		return (NULL);
400 	}
401 
402 	rman_set_bustag(rv, bt);
403 	rman_set_bushandle(rv, rman_get_start(rv));
404 
405 	if (needactivate) {
406 		if (bus_activate_resource(child, type, *rid, rv) != 0) {
407 			device_printf(bus,
408 			    "failed to activate resource for %s\n",
409 			    device_get_nameunit(child));
410 			rman_release_resource(rv);
411 			return (NULL);
412 		}
413 	}
414 
415 	return (rv);
416 }
417 
418 static int
419 grackle_release_resource(device_t bus, device_t child, int type, int rid,
420     struct resource *res)
421 {
422 	if (rman_get_flags(res) & RF_ACTIVE) {
423 		int error = bus_deactivate_resource(child, type, rid, res);
424 		if (error)
425 			return error;
426 	}
427 
428 	return (rman_release_resource(res));
429 }
430 
431 static int
432 grackle_activate_resource(device_t bus, device_t child, int type, int rid,
433     struct resource *res)
434 {
435 	struct grackle_softc *sc;
436 	void	*p;
437 
438 	sc = device_get_softc(bus);
439 
440 	if (type == SYS_RES_IRQ) {
441 		return (bus_activate_resource(bus, type, rid, res));
442 	}
443 	if (type == SYS_RES_MEMORY || type == SYS_RES_IOPORT) {
444 		vm_offset_t start;
445 
446 		start = (vm_offset_t)rman_get_start(res);
447 		/*
448 		 * For i/o-ports, convert the start address to the
449 		 * MPC106 PCI i/o window
450 		 */
451 		if (type == SYS_RES_IOPORT)
452 			start += sc->sc_iostart;
453 
454 		if (bootverbose)
455 			printf("grackle mapdev: start %x, len %ld\n", start,
456 			    rman_get_size(res));
457 
458 		p = pmap_mapdev(start, (vm_size_t)rman_get_size(res));
459 		if (p == NULL)
460 			return (ENOMEM);
461 
462 		rman_set_virtual(res, p);
463 		rman_set_bushandle(res, (u_long)p);
464 	}
465 
466 	return (rman_activate_resource(res));
467 }
468 
469 static int
470 grackle_deactivate_resource(device_t bus, device_t child, int type, int rid,
471     struct resource *res)
472 {
473 	/*
474 	 * If this is a memory resource, unmap it.
475 	 */
476 	if ((type == SYS_RES_MEMORY) || (type == SYS_RES_IOPORT)) {
477 		u_int32_t psize;
478 
479 		psize = rman_get_size(res);
480 		pmap_unmapdev((vm_offset_t)rman_get_virtual(res), psize);
481 	}
482 
483 	return (rman_deactivate_resource(res));
484 }
485 
486 
487 static int
488 grackle_enable_config(struct grackle_softc *sc, u_int bus, u_int slot,
489     u_int func, u_int reg)
490 {
491 	u_int32_t	cfgval;
492 
493 	/*
494 	 * Unlike UniNorth, the format of the config word is the same
495 	 * for local (0) and remote busses.
496 	 */
497 	cfgval = (bus << 16) | (slot << 11) | (func << 8) | (reg & 0xFC)
498 	    | GRACKLE_CFG_ENABLE;
499 
500 	out32rb(sc->sc_addr, cfgval);
501 	(void) in32rb(sc->sc_addr);
502 
503 	return (1);
504 }
505 
506 static void
507 grackle_disable_config(struct grackle_softc *sc)
508 {
509 	/*
510 	 * Clear the GRACKLE_CFG_ENABLE bit to prevent stray
511 	 * accesses from causing config cycles
512 	 */
513 	out32rb(sc->sc_addr, 0);
514 }
515 
516 /*
517  * Driver to swallow Grackle host bridges from the PCI bus side.
518  */
519 static int
520 grackle_hb_probe(device_t dev)
521 {
522 
523 	if (pci_get_devid(dev) == 0x00021057) {
524 		device_set_desc(dev, "Grackle Host to PCI bridge");
525 		device_quiet(dev);
526 		return (0);
527 	}
528 
529 	return (ENXIO);
530 }
531 
532 static int
533 grackle_hb_attach(device_t dev)
534 {
535 
536 	return (0);
537 }
538 
539 static device_method_t grackle_hb_methods[] = {
540 	/* Device interface */
541 	DEVMETHOD(device_probe,         grackle_hb_probe),
542 	DEVMETHOD(device_attach,        grackle_hb_attach),
543 
544 	{ 0, 0 }
545 };
546 
547 static driver_t grackle_hb_driver = {
548 	"grackle_hb",
549 	grackle_hb_methods,
550 	1,
551 };
552 static devclass_t grackle_hb_devclass;
553 
554 DRIVER_MODULE(grackle_hb, pci, grackle_hb_driver, grackle_hb_devclass, 0, 0);
555