ofbus.c revision 1.18 1 1.18 itojun /* $NetBSD: ofbus.c,v 1.18 2004/04/22 00:17:12 itojun Exp $ */
2 1.1 ws
3 1.1 ws /*
4 1.1 ws * Copyright (C) 1995, 1996 Wolfgang Solfrank.
5 1.1 ws * Copyright (C) 1995, 1996 TooLs GmbH.
6 1.1 ws * All rights reserved.
7 1.1 ws *
8 1.1 ws * Redistribution and use in source and binary forms, with or without
9 1.1 ws * modification, are permitted provided that the following conditions
10 1.1 ws * are met:
11 1.1 ws * 1. Redistributions of source code must retain the above copyright
12 1.1 ws * notice, this list of conditions and the following disclaimer.
13 1.1 ws * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 ws * notice, this list of conditions and the following disclaimer in the
15 1.1 ws * documentation and/or other materials provided with the distribution.
16 1.1 ws * 3. All advertising materials mentioning features or use of this software
17 1.1 ws * must display the following acknowledgement:
18 1.1 ws * This product includes software developed by TooLs GmbH.
19 1.1 ws * 4. The name of TooLs GmbH may not be used to endorse or promote products
20 1.1 ws * derived from this software without specific prior written permission.
21 1.1 ws *
22 1.1 ws * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
23 1.1 ws * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 ws * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 ws * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 1.1 ws * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
27 1.1 ws * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
28 1.1 ws * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 1.1 ws * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30 1.1 ws * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
31 1.1 ws * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 ws */
33 1.12 lukem
34 1.12 lukem #include <sys/cdefs.h>
35 1.18 itojun __KERNEL_RCSID(0, "$NetBSD: ofbus.c,v 1.18 2004/04/22 00:17:12 itojun Exp $");
36 1.1 ws
37 1.1 ws #include <sys/param.h>
38 1.7 cgd #include <sys/systm.h>
39 1.1 ws #include <sys/device.h>
40 1.1 ws
41 1.1 ws #include <dev/ofw/openfirm.h>
42 1.1 ws
43 1.10 mycroft int ofbus_match __P((struct device *, struct cfdata *, void *));
44 1.10 mycroft void ofbus_attach __P((struct device *, struct device *, void *));
45 1.10 mycroft static int ofbus_print __P((void *, const char *));
46 1.1 ws
47 1.15 thorpej CFATTACH_DECL(ofbus, sizeof(struct device),
48 1.16 thorpej ofbus_match, ofbus_attach, NULL, NULL);
49 1.1 ws
50 1.1 ws static int
51 1.10 mycroft ofbus_print(aux, pnp)
52 1.1 ws void *aux;
53 1.7 cgd const char *pnp;
54 1.1 ws {
55 1.10 mycroft struct ofbus_attach_args *oba = aux;
56 1.7 cgd
57 1.7 cgd if (pnp)
58 1.17 thorpej aprint_normal("%s at %s", oba->oba_ofname, pnp);
59 1.1 ws else
60 1.17 thorpej aprint_normal(" (%s)", oba->oba_ofname);
61 1.1 ws return UNCONF;
62 1.1 ws }
63 1.1 ws
64 1.1 ws int
65 1.10 mycroft ofbus_match(parent, cf, aux)
66 1.1 ws struct device *parent;
67 1.4 thorpej struct cfdata *cf;
68 1.4 thorpej void *aux;
69 1.1 ws {
70 1.10 mycroft struct ofbus_attach_args *oba = aux;
71 1.10 mycroft
72 1.10 mycroft if (strcmp(oba->oba_busname, "ofw"))
73 1.10 mycroft return (0);
74 1.10 mycroft if (!OF_child(oba->oba_phandle))
75 1.10 mycroft return (0);
76 1.10 mycroft return (1);
77 1.1 ws }
78 1.1 ws
79 1.1 ws void
80 1.10 mycroft ofbus_attach(parent, dev, aux)
81 1.1 ws struct device *parent, *dev;
82 1.1 ws void *aux;
83 1.1 ws {
84 1.10 mycroft struct ofbus_attach_args *oba = aux;
85 1.10 mycroft struct ofbus_attach_args oba2;
86 1.13 chs char name[64];
87 1.13 chs int child, units;
88 1.7 cgd
89 1.3 christos printf("\n");
90 1.1 ws
91 1.1 ws /*
92 1.1 ws * This is a hack to make the probe work on the scsi (and ide) bus.
93 1.1 ws * YES, I THINK IT IS A BUG IN THE OPENFIRMWARE TO NOT PROBE ALL
94 1.1 ws * DEVICES ON THESE BUSSES.
95 1.1 ws */
96 1.1 ws units = 1;
97 1.13 chs name[0] = 0;
98 1.10 mycroft if (OF_getprop(oba->oba_phandle, "name", name, sizeof name) > 0) {
99 1.1 ws if (!strcmp(name, "scsi"))
100 1.1 ws units = 7; /* What about wide or hostid != 7? XXX */
101 1.1 ws else if (!strcmp(name, "ide"))
102 1.1 ws units = 2;
103 1.1 ws }
104 1.6 cgd
105 1.11 thorpej for (child = OF_child(oba->oba_phandle); child != 0;
106 1.11 thorpej child = OF_peer(child)) {
107 1.10 mycroft oba2.oba_busname = "ofw";
108 1.13 chs of_packagename(child, name, sizeof name);
109 1.10 mycroft oba2.oba_phandle = child;
110 1.13 chs for (oba2.oba_unit = 0; oba2.oba_unit < units;
111 1.13 chs oba2.oba_unit++) {
112 1.13 chs if (units > 1) {
113 1.18 itojun snprintf(oba2.oba_ofname,
114 1.18 itojun sizeof(oba2.oba_ofname), "%s@%d", name,
115 1.18 itojun oba2.oba_unit);
116 1.13 chs } else {
117 1.18 itojun strlcpy(oba2.oba_ofname, name,
118 1.18 itojun sizeof(oba2.oba_ofname));
119 1.13 chs }
120 1.10 mycroft config_found(dev, &oba2, ofbus_print);
121 1.13 chs }
122 1.1 ws }
123 1.1 ws }
124