if_hme_sbus.c revision 1.17 1 /* $NetBSD: if_hme_sbus.c,v 1.17 2002/12/10 13:44:47 pk Exp $ */
2
3 /*-
4 * Copyright (c) 1999 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Paul Kranenburg.
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. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the NetBSD
21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 */
38
39 /*
40 * SBus front-end device driver for the HME ethernet device.
41 */
42
43 #include <sys/cdefs.h>
44 __KERNEL_RCSID(0, "$NetBSD: if_hme_sbus.c,v 1.17 2002/12/10 13:44:47 pk Exp $");
45
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #include <sys/syslog.h>
49 #include <sys/device.h>
50 #include <sys/malloc.h>
51 #include <sys/socket.h>
52
53 #include <net/if.h>
54 #include <net/if_dl.h>
55 #include <net/if_ether.h>
56 #include <net/if_media.h>
57
58 #include <dev/mii/mii.h>
59 #include <dev/mii/miivar.h>
60
61 #include <machine/bus.h>
62 #include <machine/intr.h>
63 #include <machine/autoconf.h>
64
65 #include <dev/sbus/sbusvar.h>
66 #include <dev/ic/hmevar.h>
67
68 struct hmesbus_softc {
69 struct hme_softc hsc_hme; /* HME device */
70 struct sbusdev hsc_sbus; /* SBus device */
71 };
72
73 int hmematch_sbus __P((struct device *, struct cfdata *, void *));
74 void hmeattach_sbus __P((struct device *, struct device *, void *));
75
76 CFATTACH_DECL(hme_sbus, sizeof(struct hmesbus_softc),
77 hmematch_sbus, hmeattach_sbus, NULL, NULL);
78
79 int
80 hmematch_sbus(parent, cf, aux)
81 struct device *parent;
82 struct cfdata *cf;
83 void *aux;
84 {
85 struct sbus_attach_args *sa = aux;
86
87 return (strcmp(cf->cf_name, sa->sa_name) == 0 ||
88 strcmp("SUNW,qfe", sa->sa_name) == 0 ||
89 strcmp("SUNW,hme", sa->sa_name) == 0);
90 }
91
92 void
93 hmeattach_sbus(parent, self, aux)
94 struct device *parent, *self;
95 void *aux;
96 {
97 struct sbus_attach_args *sa = aux;
98 struct hmesbus_softc *hsc = (void *)self;
99 struct hme_softc *sc = &hsc->hsc_hme;
100 struct sbusdev *sd = &hsc->hsc_sbus;
101 u_int32_t burst, sbusburst;
102 int node;
103
104 /* XXX the following declarations should be elsewhere */
105 extern void myetheraddr __P((u_char *));
106
107 node = sa->sa_node;
108
109 /* Pass on the bus tags */
110 sc->sc_bustag = sa->sa_bustag;
111 sc->sc_dmatag = sa->sa_dmatag;
112
113 printf(": Sun Happy Meal Ethernet (%s)\n",
114 sa->sa_name);
115
116 if (sa->sa_nreg < 5) {
117 printf("%s: only %d register sets\n",
118 self->dv_xname, sa->sa_nreg);
119 return;
120 }
121
122 /*
123 * Map five register banks:
124 *
125 * bank 0: HME SEB registers
126 * bank 1: HME ETX registers
127 * bank 2: HME ERX registers
128 * bank 3: HME MAC registers
129 * bank 4: HME MIF registers
130 *
131 */
132 if (sbus_bus_map(sa->sa_bustag,
133 sa->sa_reg[0].oa_space,
134 sa->sa_reg[0].oa_base,
135 (bus_size_t)sa->sa_reg[0].oa_size,
136 0, &sc->sc_seb) != 0) {
137 printf("%s: cannot map SEB registers\n", self->dv_xname);
138 return;
139 }
140 if (sbus_bus_map(sa->sa_bustag,
141 sa->sa_reg[1].oa_space,
142 sa->sa_reg[1].oa_base,
143 (bus_size_t)sa->sa_reg[1].oa_size,
144 0, &sc->sc_etx) != 0) {
145 printf("%s: cannot map ETX registers\n", self->dv_xname);
146 return;
147 }
148 if (sbus_bus_map(sa->sa_bustag,
149 sa->sa_reg[2].oa_space,
150 sa->sa_reg[2].oa_base,
151 (bus_size_t)sa->sa_reg[2].oa_size,
152 0, &sc->sc_erx) != 0) {
153 printf("%s: cannot map ERX registers\n", self->dv_xname);
154 return;
155 }
156 if (sbus_bus_map(sa->sa_bustag,
157 sa->sa_reg[3].oa_space,
158 sa->sa_reg[3].oa_base,
159 (bus_size_t)sa->sa_reg[3].oa_size,
160 0, &sc->sc_mac) != 0) {
161 printf("%s: cannot map MAC registers\n", self->dv_xname);
162 return;
163 }
164 if (sbus_bus_map(sa->sa_bustag,
165 sa->sa_reg[4].oa_space,
166 sa->sa_reg[4].oa_base,
167 (bus_size_t)sa->sa_reg[4].oa_size,
168 0, &sc->sc_mif) != 0) {
169 printf("%s: cannot map MIF registers\n", self->dv_xname);
170 return;
171 }
172
173 sd->sd_reset = (void *)hme_reset;
174 sbus_establish(sd, self);
175
176 myetheraddr(sc->sc_enaddr);
177
178 /*
179 * Get transfer burst size from PROM and pass it on
180 * to the back-end driver.
181 */
182 sbusburst = ((struct sbus_softc *)parent)->sc_burst;
183 if (sbusburst == 0)
184 sbusburst = SBUS_BURST_32 - 1; /* 1->16 */
185
186 burst = PROM_getpropint(node, "burst-sizes", -1);
187 if (burst == -1)
188 /* take SBus burst sizes */
189 burst = sbusburst;
190
191 /* Clamp at parent's burst sizes */
192 burst &= sbusburst;
193
194 /* Translate into plain numerical format */
195 sc->sc_burst = (burst & SBUS_BURST_32) ? 32 :
196 (burst & SBUS_BURST_16) ? 16 : 0;
197
198 sc->sc_pci = 0; /* XXXXX should all be done in bus_dma. */
199 hme_config(sc);
200
201 /* Establish interrupt handler */
202 if (sa->sa_nintr != 0)
203 (void)bus_intr_establish(sa->sa_bustag, sa->sa_pri, IPL_NET,
204 hme_intr, sc);
205 }
206