Home | History | Annotate | Line # | Download | only in dev
obio.c revision 1.5.2.1.2.1
      1  1.5.2.1   perry /*	$NetBSD: obio.c,v 1.5.2.1.2.1 1999/06/21 00:51:38 thorpej Exp $	*/
      2      1.2  tsubai 
      3      1.2  tsubai /*-
      4      1.2  tsubai  * Copyright (C) 1998	Internet Research Institute, Inc.
      5      1.2  tsubai  * All rights reserved.
      6      1.2  tsubai  *
      7      1.2  tsubai  * Redistribution and use in source and binary forms, with or without
      8      1.2  tsubai  * modification, are permitted provided that the following conditions
      9      1.2  tsubai  * are met:
     10      1.2  tsubai  * 1. Redistributions of source code must retain the above copyright
     11      1.2  tsubai  *    notice, this list of conditions and the following disclaimer.
     12      1.2  tsubai  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.2  tsubai  *    notice, this list of conditions and the following disclaimer in the
     14      1.2  tsubai  *    documentation and/or other materials provided with the distribution.
     15      1.2  tsubai  * 3. All advertising materials mentioning features or use of this software
     16      1.2  tsubai  *    must display the following acknowledgement:
     17      1.2  tsubai  *	This product includes software developed by
     18      1.2  tsubai  *	Internet Research Institute, Inc.
     19      1.2  tsubai  * 4. The name of the author may not be used to endorse or promote products
     20      1.2  tsubai  *    derived from this software without specific prior written permission.
     21      1.2  tsubai  *
     22      1.2  tsubai  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     23      1.2  tsubai  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     24      1.2  tsubai  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     25      1.2  tsubai  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     26      1.2  tsubai  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     27      1.2  tsubai  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     28      1.2  tsubai  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     29      1.2  tsubai  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     30      1.2  tsubai  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     31      1.2  tsubai  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     32      1.2  tsubai  */
     33      1.2  tsubai 
     34      1.1  tsubai #include <sys/types.h>
     35      1.1  tsubai #include <sys/param.h>
     36      1.1  tsubai #include <sys/systm.h>
     37      1.1  tsubai #include <sys/kernel.h>
     38      1.1  tsubai #include <sys/device.h>
     39      1.1  tsubai 
     40      1.1  tsubai #include <dev/pci/pcivar.h>
     41      1.1  tsubai #include <dev/pci/pcidevs.h>
     42      1.1  tsubai 
     43      1.1  tsubai #include <dev/ofw/openfirm.h>
     44      1.1  tsubai 
     45      1.1  tsubai #include <machine/autoconf.h>
     46      1.1  tsubai 
     47      1.1  tsubai static void obio_attach __P((struct device *, struct device *, void *));
     48      1.1  tsubai static int obio_match __P((struct device *, struct cfdata *, void *));
     49      1.1  tsubai static int obio_print __P((void *, const char *));
     50      1.1  tsubai 
     51      1.1  tsubai struct obio_softc {
     52      1.1  tsubai 	struct device sc_dev;
     53      1.1  tsubai 	int sc_node;
     54      1.1  tsubai };
     55      1.1  tsubai 
     56      1.1  tsubai 
     57      1.1  tsubai struct cfattach obio_ca = {
     58      1.1  tsubai 	sizeof(struct obio_softc), obio_match, obio_attach
     59      1.1  tsubai };
     60      1.1  tsubai 
     61      1.1  tsubai int
     62      1.1  tsubai obio_match(parent, cf, aux)
     63      1.1  tsubai 	struct device *parent;
     64      1.1  tsubai 	struct cfdata *cf;
     65      1.1  tsubai 	void *aux;
     66      1.1  tsubai {
     67      1.1  tsubai 	struct pci_attach_args *pa = aux;
     68      1.1  tsubai 
     69      1.2  tsubai 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_APPLE)
     70      1.2  tsubai 		switch (PCI_PRODUCT(pa->pa_id)) {
     71      1.2  tsubai 
     72      1.3  tsubai 		case 0x02:	/* gc */
     73      1.3  tsubai 		case 0x07:	/* ohare */
     74      1.4  tsubai 		case 0x10:	/* mac-io "Heathrow" */
     75  1.5.2.1   perry 		case 0x17:	/* mac-io "Paddington" */
     76      1.2  tsubai 			return 1;
     77      1.2  tsubai 		}
     78      1.1  tsubai 
     79      1.1  tsubai 	return 0;
     80      1.1  tsubai }
     81      1.1  tsubai 
     82      1.1  tsubai /*
     83      1.1  tsubai  * Attach all the sub-devices we can find
     84      1.1  tsubai  */
     85      1.1  tsubai void
     86      1.1  tsubai obio_attach(parent, self, aux)
     87      1.1  tsubai 	struct device *parent, *self;
     88      1.1  tsubai 	void *aux;
     89      1.1  tsubai {
     90      1.1  tsubai 	struct obio_softc *sc = (struct obio_softc *)self;
     91      1.2  tsubai 	struct pci_attach_args *pa = aux;
     92      1.1  tsubai 	struct confargs ca;
     93      1.1  tsubai 	int node, child, namelen;
     94      1.1  tsubai 	u_int reg[20];
     95      1.1  tsubai 	int intr[5];
     96      1.1  tsubai 	char name[32];
     97      1.1  tsubai 
     98      1.2  tsubai 	switch (PCI_PRODUCT(pa->pa_id)) {
     99      1.2  tsubai 
    100  1.5.2.1   perry 	/* XXX should not use name */
    101      1.3  tsubai 	case 0x02:
    102      1.2  tsubai 		node = OF_finddevice("/bandit/gc");
    103      1.2  tsubai 		break;
    104      1.2  tsubai 
    105      1.3  tsubai 	case 0x07:
    106      1.2  tsubai 		node = OF_finddevice("/bandit/ohare");
    107      1.3  tsubai 		break;
    108      1.3  tsubai 
    109      1.3  tsubai 	case 0x10:
    110      1.4  tsubai 	case 0x17:
    111  1.5.2.1   perry 		node = OF_finddevice("mac-io");
    112  1.5.2.1   perry 		if (node == -1)
    113  1.5.2.1   perry 			node = OF_finddevice("/pci/mac-io");
    114      1.2  tsubai 		break;
    115      1.2  tsubai 
    116      1.2  tsubai 	default:
    117      1.2  tsubai 		printf("obio_attach: unknown obio controller\n");
    118      1.2  tsubai 		return;
    119      1.2  tsubai 	}
    120      1.2  tsubai 
    121      1.1  tsubai 	sc->sc_node = node;
    122      1.1  tsubai 
    123      1.1  tsubai 	if (OF_getprop(node, "assigned-addresses", reg, sizeof(reg)) < 12)
    124      1.1  tsubai 		return;
    125      1.1  tsubai 	ca.ca_baseaddr = reg[2];
    126      1.1  tsubai 
    127      1.1  tsubai 	printf(": addr 0x%x\n", ca.ca_baseaddr);
    128      1.1  tsubai 
    129      1.1  tsubai 	for (child = OF_child(node); child; child = OF_peer(child)) {
    130      1.1  tsubai 		namelen = OF_getprop(child, "name", name, sizeof(name));
    131      1.1  tsubai 		if (namelen < 0)
    132      1.1  tsubai 			continue;
    133      1.1  tsubai 		if (namelen >= sizeof(name))
    134      1.1  tsubai 			continue;
    135      1.1  tsubai 
    136      1.1  tsubai 		name[namelen] = 0;
    137      1.1  tsubai 		ca.ca_name = name;
    138      1.1  tsubai 		ca.ca_node = child;
    139      1.1  tsubai 
    140      1.1  tsubai 		ca.ca_nreg  = OF_getprop(child, "reg", reg, sizeof(reg));
    141      1.1  tsubai 		ca.ca_nintr = OF_getprop(child, "AAPL,interrupts", intr,
    142      1.1  tsubai 				sizeof(intr));
    143      1.5  tsubai 		if (ca.ca_nintr == -1)
    144      1.5  tsubai 			ca.ca_nintr = OF_getprop(child, "interrupts", intr,
    145      1.5  tsubai 					sizeof(intr));
    146      1.5  tsubai 
    147      1.1  tsubai 		ca.ca_reg = reg;
    148      1.1  tsubai 		ca.ca_intr = intr;
    149      1.1  tsubai 
    150      1.1  tsubai 		config_found(self, &ca, obio_print);
    151      1.1  tsubai 	}
    152      1.1  tsubai }
    153      1.1  tsubai 
    154      1.1  tsubai int
    155      1.1  tsubai obio_print(aux, obio)
    156      1.1  tsubai 	void *aux;
    157      1.1  tsubai 	const char *obio;
    158      1.1  tsubai {
    159      1.1  tsubai 	struct confargs *ca = aux;
    160      1.1  tsubai 
    161      1.1  tsubai 	if (obio)
    162      1.1  tsubai 		printf("%s at %s", ca->ca_name, obio);
    163      1.1  tsubai 
    164      1.1  tsubai 	if (ca->ca_nreg > 0)
    165      1.1  tsubai 		printf(" offset 0x%x", ca->ca_reg[0]);
    166      1.1  tsubai 
    167      1.1  tsubai 	return UNCONF;
    168      1.1  tsubai }
    169