if_tlp_pci.c revision 1.131 1 1.131 thorpej /* $NetBSD: if_tlp_pci.c,v 1.131 2023/12/20 04:32:30 thorpej Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*-
4 1.65 mycroft * Copyright (c) 1998, 1999, 2000, 2002 The NetBSD Foundation, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.1 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.65 mycroft * NASA Ames Research Center; and Charles M. Hannum.
10 1.1 thorpej *
11 1.1 thorpej * Redistribution and use in source and binary forms, with or without
12 1.1 thorpej * modification, are permitted provided that the following conditions
13 1.1 thorpej * are met:
14 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
15 1.1 thorpej * notice, this list of conditions and the following disclaimer.
16 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
18 1.1 thorpej * documentation and/or other materials provided with the distribution.
19 1.1 thorpej *
20 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
31 1.1 thorpej */
32 1.1 thorpej
33 1.1 thorpej /*
34 1.1 thorpej * PCI bus front-end for the Digital Semiconductor ``Tulip'' (21x4x)
35 1.1 thorpej * Ethernet controller family driver.
36 1.1 thorpej */
37 1.55 lukem
38 1.55 lukem #include <sys/cdefs.h>
39 1.131 thorpej __KERNEL_RCSID(0, "$NetBSD: if_tlp_pci.c,v 1.131 2023/12/20 04:32:30 thorpej Exp $");
40 1.1 thorpej
41 1.1 thorpej #include <sys/param.h>
42 1.78 perry #include <sys/systm.h>
43 1.78 perry #include <sys/mbuf.h>
44 1.131 thorpej #include <sys/kmem.h>
45 1.1 thorpej #include <sys/kernel.h>
46 1.1 thorpej #include <sys/socket.h>
47 1.1 thorpej #include <sys/ioctl.h>
48 1.1 thorpej #include <sys/errno.h>
49 1.1 thorpej #include <sys/device.h>
50 1.27 thorpej
51 1.27 thorpej #include <machine/endian.h>
52 1.78 perry
53 1.1 thorpej #include <net/if.h>
54 1.1 thorpej #include <net/if_dl.h>
55 1.1 thorpej #include <net/if_media.h>
56 1.1 thorpej #include <net/if_ether.h>
57 1.1 thorpej
58 1.102 ad #include <sys/bus.h>
59 1.102 ad #include <sys/intr.h>
60 1.1 thorpej
61 1.1 thorpej #include <dev/mii/miivar.h>
62 1.23 thorpej #include <dev/mii/mii_bitbang.h>
63 1.1 thorpej
64 1.1 thorpej #include <dev/ic/tulipreg.h>
65 1.1 thorpej #include <dev/ic/tulipvar.h>
66 1.1 thorpej
67 1.1 thorpej #include <dev/pci/pcivar.h>
68 1.1 thorpej #include <dev/pci/pcireg.h>
69 1.1 thorpej #include <dev/pci/pcidevs.h>
70 1.1 thorpej
71 1.1 thorpej /*
72 1.1 thorpej * PCI configuration space registers used by the Tulip.
73 1.1 thorpej */
74 1.118 dyoung #define TULIP_PCI_IOBA PCI_BAR(0) /* i/o mapped base */
75 1.118 dyoung #define TULIP_PCI_MMBA PCI_BAR(1) /* memory mapped base */
76 1.18 thorpej #define TULIP_PCI_CFDA 0x40 /* configuration driver area */
77 1.18 thorpej
78 1.18 thorpej #define CFDA_SLEEP 0x80000000 /* sleep mode */
79 1.26 thorpej #define CFDA_SNOOZE 0x40000000 /* snooze mode */
80 1.1 thorpej
81 1.1 thorpej struct tulip_pci_softc {
82 1.1 thorpej struct tulip_softc sc_tulip; /* real Tulip softc */
83 1.1 thorpej
84 1.1 thorpej /* PCI-specific goo. */
85 1.1 thorpej void *sc_ih; /* interrupt handle */
86 1.108 cegger bus_size_t sc_mapsize;
87 1.8 thorpej
88 1.8 thorpej pci_chipset_tag_t sc_pc; /* our PCI chipset */
89 1.8 thorpej pcitag_t sc_pcitag; /* our PCI tag */
90 1.8 thorpej
91 1.8 thorpej int sc_flags; /* flags; see below */
92 1.8 thorpej
93 1.8 thorpej LIST_HEAD(, tulip_pci_softc) sc_intrslaves;
94 1.8 thorpej LIST_ENTRY(tulip_pci_softc) sc_intrq;
95 1.8 thorpej
96 1.8 thorpej /* Our {ROM,interrupt} master. */
97 1.8 thorpej struct tulip_pci_softc *sc_master;
98 1.1 thorpej };
99 1.1 thorpej
100 1.8 thorpej /* sc_flags */
101 1.8 thorpej #define TULIP_PCI_SHAREDINTR 0x01 /* interrupt is shared */
102 1.8 thorpej #define TULIP_PCI_SLAVEINTR 0x02 /* interrupt is slave */
103 1.8 thorpej #define TULIP_PCI_SHAREDROM 0x04 /* ROM is shared */
104 1.8 thorpej #define TULIP_PCI_SLAVEROM 0x08 /* slave of shared ROM */
105 1.8 thorpej
106 1.114 cegger static int tlp_pci_match(device_t, cfdata_t, void *);
107 1.103 dyoung static void tlp_pci_attach(device_t, device_t, void *);
108 1.108 cegger static int tlp_pci_detach(device_t, int);
109 1.1 thorpej
110 1.108 cegger CFATTACH_DECL3_NEW(tlp_pci, sizeof(struct tulip_pci_softc),
111 1.108 cegger tlp_pci_match, tlp_pci_attach, tlp_pci_detach, NULL, NULL, NULL,
112 1.108 cegger DVF_DETACH_SHUTDOWN);
113 1.1 thorpej
114 1.130 thorpej static const struct device_compatible_entry compat_data[] = {
115 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_DEC, PCI_PRODUCT_DEC_21040),
116 1.130 thorpej .value = TULIP_CHIP_21040 },
117 1.1 thorpej
118 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_DEC, PCI_PRODUCT_DEC_21041),
119 1.130 thorpej .value = TULIP_CHIP_21041 },
120 1.130 thorpej
121 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_DEC, PCI_PRODUCT_DEC_21140),
122 1.130 thorpej .value = TULIP_CHIP_21140 },
123 1.130 thorpej
124 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_DEC, PCI_PRODUCT_DEC_21142),
125 1.130 thorpej .value = TULIP_CHIP_21142 },
126 1.130 thorpej
127 1.130 thorpej
128 1.130 thorpej
129 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_LITEON, PCI_PRODUCT_LITEON_82C168),
130 1.130 thorpej .value = TULIP_CHIP_82C168 },
131 1.1 thorpej
132 1.4 thorpej /*
133 1.20 thorpej * Note: This is like a MX98725 with Wake-On-LAN and a
134 1.4 thorpej * 128-bit multicast hash table.
135 1.4 thorpej */
136 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_LITEON, PCI_PRODUCT_LITEON_82C115),
137 1.130 thorpej .value = TULIP_CHIP_82C115 },
138 1.130 thorpej
139 1.130 thorpej
140 1.130 thorpej
141 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_MACRONIX, PCI_PRODUCT_MACRONIX_MX98713),
142 1.130 thorpej .value = TULIP_CHIP_MX98713 },
143 1.130 thorpej
144 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_MACRONIX, PCI_PRODUCT_MACRONIX_MX987x5),
145 1.130 thorpej .value = TULIP_CHIP_MX98715 },
146 1.130 thorpej
147 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_COMPEX, PCI_PRODUCT_COMPEX_RL100TX),
148 1.130 thorpej .value = TULIP_CHIP_MX98713 },
149 1.130 thorpej
150 1.130 thorpej
151 1.130 thorpej
152 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_WINBOND, PCI_PRODUCT_WINBOND_W89C840F),
153 1.130 thorpej .value = TULIP_CHIP_WB89C840F },
154 1.130 thorpej
155 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_COMPEX, PCI_PRODUCT_COMPEX_RL100ATX),
156 1.130 thorpej .value = TULIP_CHIP_WB89C840F },
157 1.130 thorpej
158 1.130 thorpej
159 1.130 thorpej
160 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_DAVICOM, PCI_PRODUCT_DAVICOM_DM9102),
161 1.130 thorpej .value = TULIP_CHIP_DM9102 },
162 1.130 thorpej
163 1.130 thorpej
164 1.130 thorpej
165 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_ADMTEK, PCI_PRODUCT_ADMTEK_AL981),
166 1.130 thorpej .value = TULIP_CHIP_AL981 },
167 1.4 thorpej
168 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_ADMTEK, PCI_PRODUCT_ADMTEK_AN983),
169 1.130 thorpej .value = TULIP_CHIP_AN985 },
170 1.47 thorpej
171 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_ADMTEK, PCI_PRODUCT_ADMTEK_ADM9511),
172 1.130 thorpej .value = TULIP_CHIP_AN985 },
173 1.1 thorpej
174 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_ADMTEK, PCI_PRODUCT_ADMTEK_ADM9513),
175 1.130 thorpej .value = TULIP_CHIP_AN985 },
176 1.88 rpaulo
177 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_ACCTON, PCI_PRODUCT_ACCTON_EN2242),
178 1.130 thorpej .value = TULIP_CHIP_AN985 },
179 1.130 thorpej
180 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_3COM, PCI_PRODUCT_3COM_3C910SOHOB),
181 1.130 thorpej .value = TULIP_CHIP_AN985 },
182 1.130 thorpej
183 1.130 thorpej
184 1.130 thorpej
185 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_ASIX, PCI_PRODUCT_ASIX_AX88140A),
186 1.130 thorpej .value = TULIP_CHIP_AX88140 },
187 1.130 thorpej
188 1.130 thorpej
189 1.130 thorpej
190 1.130 thorpej { .id = PCI_ID_CODE(PCI_VENDOR_CONEXANT,
191 1.130 thorpej PCI_PRODUCT_CONEXANT_LANFINITY),
192 1.130 thorpej .value = TULIP_CHIP_RS7112 },
193 1.130 thorpej
194 1.130 thorpej
195 1.130 thorpej
196 1.130 thorpej PCI_COMPAT_EOL
197 1.1 thorpej };
198 1.1 thorpej
199 1.8 thorpej struct tlp_pci_quirks {
200 1.77 thorpej void (*tpq_func)(struct tulip_pci_softc *,
201 1.101 tsutsui const uint8_t *);
202 1.101 tsutsui uint8_t tpq_oui[3];
203 1.8 thorpej };
204 1.8 thorpej
205 1.77 thorpej static void tlp_pci_dec_quirks(struct tulip_pci_softc *,
206 1.101 tsutsui const uint8_t *);
207 1.15 thorpej
208 1.77 thorpej static void tlp_pci_znyx_21040_quirks(struct tulip_pci_softc *,
209 1.101 tsutsui const uint8_t *);
210 1.77 thorpej static void tlp_pci_smc_21040_quirks(struct tulip_pci_softc *,
211 1.101 tsutsui const uint8_t *);
212 1.77 thorpej static void tlp_pci_cogent_21040_quirks(struct tulip_pci_softc *,
213 1.101 tsutsui const uint8_t *);
214 1.77 thorpej static void tlp_pci_accton_21040_quirks(struct tulip_pci_softc *,
215 1.101 tsutsui const uint8_t *);
216 1.77 thorpej
217 1.77 thorpej static void tlp_pci_cobalt_21142_quirks(struct tulip_pci_softc *,
218 1.101 tsutsui const uint8_t *);
219 1.77 thorpej static void tlp_pci_algor_21142_quirks(struct tulip_pci_softc *,
220 1.101 tsutsui const uint8_t *);
221 1.77 thorpej static void tlp_pci_netwinder_21142_quirks(struct tulip_pci_softc *,
222 1.101 tsutsui const uint8_t *);
223 1.96 rumble static void tlp_pci_phobos_21142_quirks(struct tulip_pci_softc *,
224 1.101 tsutsui const uint8_t *);
225 1.77 thorpej static void tlp_pci_znyx_21142_quirks(struct tulip_pci_softc *,
226 1.101 tsutsui const uint8_t *);
227 1.28 thorpej
228 1.77 thorpej static void tlp_pci_adaptec_quirks(struct tulip_pci_softc *,
229 1.101 tsutsui const uint8_t *);
230 1.58 chs
231 1.77 thorpej static const struct tlp_pci_quirks tlp_pci_21040_quirks[] = {
232 1.8 thorpej { tlp_pci_znyx_21040_quirks, { 0x00, 0xc0, 0x95 } },
233 1.8 thorpej { tlp_pci_smc_21040_quirks, { 0x00, 0x00, 0xc0 } },
234 1.8 thorpej { tlp_pci_cogent_21040_quirks, { 0x00, 0x00, 0x92 } },
235 1.8 thorpej { tlp_pci_accton_21040_quirks, { 0x00, 0x00, 0xe8 } },
236 1.8 thorpej { NULL, { 0, 0, 0 } }
237 1.8 thorpej };
238 1.8 thorpej
239 1.77 thorpej static const struct tlp_pci_quirks tlp_pci_21041_quirks[] = {
240 1.15 thorpej { tlp_pci_dec_quirks, { 0x08, 0x00, 0x2b } },
241 1.15 thorpej { tlp_pci_dec_quirks, { 0x00, 0x00, 0xf8 } },
242 1.15 thorpej { NULL, { 0, 0, 0 } }
243 1.15 thorpej };
244 1.15 thorpej
245 1.77 thorpej static void tlp_pci_asante_21140_quirks(struct tulip_pci_softc *,
246 1.101 tsutsui const uint8_t *);
247 1.99 macallan static void tlp_pci_e100_quirks(struct tulip_pci_softc *,
248 1.101 tsutsui const uint8_t *);
249 1.96 rumble static void tlp_pci_phobos_21140_quirks(struct tulip_pci_softc *,
250 1.101 tsutsui const uint8_t *);
251 1.77 thorpej static void tlp_pci_smc_21140_quirks(struct tulip_pci_softc *,
252 1.101 tsutsui const uint8_t *);
253 1.77 thorpej static void tlp_pci_vpc_21140_quirks(struct tulip_pci_softc *,
254 1.101 tsutsui const uint8_t *);
255 1.17 thorpej
256 1.77 thorpej static const struct tlp_pci_quirks tlp_pci_21140_quirks[] = {
257 1.15 thorpej { tlp_pci_dec_quirks, { 0x08, 0x00, 0x2b } },
258 1.15 thorpej { tlp_pci_dec_quirks, { 0x00, 0x00, 0xf8 } },
259 1.99 macallan { tlp_pci_e100_quirks, { 0x00, 0xa0, 0x59 } },
260 1.17 thorpej { tlp_pci_asante_21140_quirks, { 0x00, 0x00, 0x94 } },
261 1.60 chs { tlp_pci_adaptec_quirks, { 0x00, 0x00, 0x92 } },
262 1.59 chs { tlp_pci_adaptec_quirks, { 0x00, 0x00, 0xd1 } },
263 1.96 rumble { tlp_pci_phobos_21140_quirks, { 0x00, 0x60, 0xf5 } },
264 1.62 chs { tlp_pci_smc_21140_quirks, { 0x00, 0x00, 0xc0 } },
265 1.69 minoura { tlp_pci_vpc_21140_quirks, { 0x00, 0x03, 0xff } },
266 1.15 thorpej { NULL, { 0, 0, 0 } }
267 1.15 thorpej };
268 1.15 thorpej
269 1.77 thorpej static const struct tlp_pci_quirks tlp_pci_21142_quirks[] = {
270 1.21 thorpej { tlp_pci_dec_quirks, { 0x08, 0x00, 0x2b } },
271 1.21 thorpej { tlp_pci_dec_quirks, { 0x00, 0x00, 0xf8 } },
272 1.28 thorpej { tlp_pci_cobalt_21142_quirks, { 0x00, 0x10, 0xe0 } },
273 1.52 thorpej { tlp_pci_algor_21142_quirks, { 0x00, 0x40, 0xbc } },
274 1.59 chs { tlp_pci_adaptec_quirks, { 0x00, 0x00, 0xd1 } },
275 1.63 thorpej { tlp_pci_netwinder_21142_quirks,{ 0x00, 0x10, 0x57 } },
276 1.96 rumble { tlp_pci_phobos_21142_quirks, { 0x00, 0x60, 0xf5 } },
277 1.73 itohy { tlp_pci_znyx_21142_quirks, { 0x00, 0xc0, 0x95 } },
278 1.21 thorpej { NULL, { 0, 0, 0 } }
279 1.21 thorpej };
280 1.21 thorpej
281 1.77 thorpej static int tlp_pci_shared_intr(void *);
282 1.8 thorpej
283 1.77 thorpej static void
284 1.101 tsutsui tlp_pci_get_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr,
285 1.77 thorpej const struct tlp_pci_quirks *tpq)
286 1.8 thorpej {
287 1.8 thorpej
288 1.8 thorpej for (; tpq->tpq_func != NULL; tpq++) {
289 1.8 thorpej if (tpq->tpq_oui[0] == enaddr[0] &&
290 1.8 thorpej tpq->tpq_oui[1] == enaddr[1] &&
291 1.8 thorpej tpq->tpq_oui[2] == enaddr[2]) {
292 1.8 thorpej (*tpq->tpq_func)(psc, enaddr);
293 1.8 thorpej return;
294 1.8 thorpej }
295 1.8 thorpej }
296 1.8 thorpej }
297 1.8 thorpej
298 1.77 thorpej static void
299 1.77 thorpej tlp_pci_check_slaved(struct tulip_pci_softc *psc, int shared, int slaved)
300 1.8 thorpej {
301 1.8 thorpej extern struct cfdriver tlp_cd;
302 1.8 thorpej struct tulip_pci_softc *cur, *best = NULL;
303 1.8 thorpej struct tulip_softc *sc = &psc->sc_tulip;
304 1.8 thorpej int i;
305 1.8 thorpej
306 1.8 thorpej /*
307 1.8 thorpej * First of all, find the lowest pcidev numbered device on our
308 1.11 thorpej * bus marked as shared. That should be our master.
309 1.8 thorpej */
310 1.8 thorpej for (i = 0; i < tlp_cd.cd_ndevs; i++) {
311 1.106 tsutsui if ((cur = device_lookup_private(&tlp_cd, i)) == NULL)
312 1.8 thorpej continue;
313 1.107 cegger if (device_parent(cur->sc_tulip.sc_dev) !=
314 1.107 cegger device_parent(sc->sc_dev))
315 1.8 thorpej continue;
316 1.8 thorpej if ((cur->sc_flags & shared) == 0)
317 1.8 thorpej continue;
318 1.11 thorpej if (cur == psc)
319 1.11 thorpej continue;
320 1.9 thorpej if (best == NULL ||
321 1.9 thorpej best->sc_tulip.sc_devno > cur->sc_tulip.sc_devno)
322 1.8 thorpej best = cur;
323 1.8 thorpej }
324 1.8 thorpej
325 1.8 thorpej if (best != NULL) {
326 1.8 thorpej psc->sc_master = best;
327 1.8 thorpej psc->sc_flags |= (shared | slaved);
328 1.8 thorpej }
329 1.8 thorpej }
330 1.8 thorpej
331 1.77 thorpej static int
332 1.107 cegger tlp_pci_match(device_t parent, cfdata_t match, void *aux)
333 1.1 thorpej {
334 1.1 thorpej struct pci_attach_args *pa = aux;
335 1.1 thorpej
336 1.130 thorpej if (pci_compatible_match(pa, compat_data)) {
337 1.130 thorpej /* Don't match lmc cards */
338 1.130 thorpej const pcireg_t subsys = pci_conf_read(pa->pa_pc, pa->pa_tag,
339 1.130 thorpej PCI_SUBSYS_ID_REG);
340 1.130 thorpej if (PCI_VENDOR(subsys) == PCI_VENDOR_LMC) {
341 1.130 thorpej return 0;
342 1.130 thorpej }
343 1.101 tsutsui return 10; /* beat if_de.c */
344 1.130 thorpej }
345 1.101 tsutsui return 0;
346 1.1 thorpej }
347 1.1 thorpej
348 1.77 thorpej static void
349 1.103 dyoung tlp_pci_attach(device_t parent, device_t self, void *aux)
350 1.1 thorpej {
351 1.103 dyoung struct tulip_pci_softc *psc = device_private(self);
352 1.1 thorpej struct tulip_softc *sc = &psc->sc_tulip;
353 1.1 thorpej struct pci_attach_args *pa = aux;
354 1.1 thorpej pci_chipset_tag_t pc = pa->pa_pc;
355 1.1 thorpej pci_intr_handle_t ih;
356 1.1 thorpej const char *intrstr = NULL;
357 1.1 thorpej bus_space_tag_t iot, memt;
358 1.1 thorpej bus_space_handle_t ioh, memh;
359 1.1 thorpej int ioh_valid, memh_valid, i, j;
360 1.130 thorpej const struct device_compatible_entry *dce;
361 1.90 thorpej prop_data_t ea;
362 1.101 tsutsui uint8_t enaddr[ETHER_ADDR_LEN];
363 1.101 tsutsui uint32_t val = 0;
364 1.100 dsl pcireg_t reg;
365 1.92 christos int error;
366 1.108 cegger bus_size_t iosize = 0, memsize = 0;
367 1.123 christos char intrbuf[PCI_INTRSTR_LEN];
368 1.8 thorpej
369 1.107 cegger sc->sc_dev = self;
370 1.9 thorpej sc->sc_devno = pa->pa_device;
371 1.8 thorpej psc->sc_pc = pa->pa_pc;
372 1.8 thorpej psc->sc_pcitag = pa->pa_tag;
373 1.8 thorpej
374 1.8 thorpej LIST_INIT(&psc->sc_intrslaves);
375 1.1 thorpej
376 1.130 thorpej dce = pci_compatible_lookup(pa, compat_data);
377 1.130 thorpej KASSERT(dce != NULL);
378 1.130 thorpej sc->sc_chip = (tulip_chip_t)dce->value;
379 1.1 thorpej
380 1.1 thorpej /*
381 1.6 thorpej * By default, Tulip registers are 8 bytes long (4 bytes
382 1.6 thorpej * followed by a 4 byte pad).
383 1.6 thorpej */
384 1.6 thorpej sc->sc_regshift = 3;
385 1.34 thorpej
386 1.34 thorpej /*
387 1.34 thorpej * No power management hooks.
388 1.34 thorpej * XXX Maybe we should add some!
389 1.34 thorpej */
390 1.34 thorpej sc->sc_flags |= TULIPF_ENABLED;
391 1.6 thorpej
392 1.6 thorpej /*
393 1.1 thorpej * Get revision info, and set some chip-specific variables.
394 1.1 thorpej */
395 1.1 thorpej sc->sc_rev = PCI_REVISION(pa->pa_class);
396 1.1 thorpej switch (sc->sc_chip) {
397 1.1 thorpej case TULIP_CHIP_21140:
398 1.1 thorpej if (sc->sc_rev >= 0x20)
399 1.1 thorpej sc->sc_chip = TULIP_CHIP_21140A;
400 1.1 thorpej break;
401 1.1 thorpej
402 1.1 thorpej case TULIP_CHIP_21142:
403 1.1 thorpej if (sc->sc_rev >= 0x20)
404 1.1 thorpej sc->sc_chip = TULIP_CHIP_21143;
405 1.1 thorpej break;
406 1.1 thorpej
407 1.1 thorpej case TULIP_CHIP_82C168:
408 1.1 thorpej if (sc->sc_rev >= 0x20)
409 1.1 thorpej sc->sc_chip = TULIP_CHIP_82C169;
410 1.1 thorpej break;
411 1.1 thorpej
412 1.1 thorpej case TULIP_CHIP_MX98713:
413 1.1 thorpej if (sc->sc_rev >= 0x10)
414 1.1 thorpej sc->sc_chip = TULIP_CHIP_MX98713A;
415 1.1 thorpej break;
416 1.1 thorpej
417 1.1 thorpej case TULIP_CHIP_MX98715:
418 1.20 thorpej if (sc->sc_rev >= 0x20)
419 1.20 thorpej sc->sc_chip = TULIP_CHIP_MX98715A;
420 1.101 tsutsui if (sc->sc_rev >= 0x25)
421 1.101 tsutsui sc->sc_chip = TULIP_CHIP_MX98715AEC_X;
422 1.1 thorpej if (sc->sc_rev >= 0x30)
423 1.1 thorpej sc->sc_chip = TULIP_CHIP_MX98725;
424 1.1 thorpej break;
425 1.1 thorpej
426 1.1 thorpej case TULIP_CHIP_WB89C840F:
427 1.7 thorpej sc->sc_regshift = 2;
428 1.4 thorpej break;
429 1.4 thorpej
430 1.47 thorpej case TULIP_CHIP_AN985:
431 1.47 thorpej /*
432 1.47 thorpej * The AN983 and AN985 are very similar, and are
433 1.47 thorpej * differentiated by a "signature" register that
434 1.47 thorpej * is like, but not identical, to a PCI ID register.
435 1.47 thorpej */
436 1.47 thorpej reg = pci_conf_read(pc, pa->pa_tag, 0x80);
437 1.47 thorpej switch (reg) {
438 1.47 thorpej case 0x09811317:
439 1.47 thorpej sc->sc_chip = TULIP_CHIP_AN985;
440 1.47 thorpej break;
441 1.47 thorpej
442 1.47 thorpej case 0x09851317:
443 1.47 thorpej sc->sc_chip = TULIP_CHIP_AN983;
444 1.47 thorpej break;
445 1.47 thorpej
446 1.47 thorpej default:
447 1.47 thorpej /* Unknown -- use default. */
448 1.51 cgd break;
449 1.47 thorpej }
450 1.47 thorpej break;
451 1.47 thorpej
452 1.4 thorpej case TULIP_CHIP_AX88140:
453 1.4 thorpej if (sc->sc_rev >= 0x10)
454 1.4 thorpej sc->sc_chip = TULIP_CHIP_AX88141;
455 1.1 thorpej break;
456 1.1 thorpej
457 1.38 thorpej case TULIP_CHIP_DM9102:
458 1.38 thorpej if (sc->sc_rev >= 0x30)
459 1.38 thorpej sc->sc_chip = TULIP_CHIP_DM9102A;
460 1.38 thorpej break;
461 1.38 thorpej
462 1.1 thorpej default:
463 1.1 thorpej /* Nothing. */
464 1.51 cgd break;
465 1.1 thorpej }
466 1.1 thorpej
467 1.109 cegger aprint_normal(": %s Ethernet, pass %d.%d\n",
468 1.117 christos tlp_chip_name(sc->sc_chip),
469 1.1 thorpej (sc->sc_rev >> 4) & 0xf, sc->sc_rev & 0xf);
470 1.10 thorpej
471 1.10 thorpej switch (sc->sc_chip) {
472 1.10 thorpej case TULIP_CHIP_21040:
473 1.10 thorpej if (sc->sc_rev < 0x20) {
474 1.109 cegger aprint_normal_dev(self,
475 1.109 cegger "21040 must be at least pass 2.0\n");
476 1.10 thorpej return;
477 1.10 thorpej }
478 1.10 thorpej break;
479 1.10 thorpej
480 1.10 thorpej case TULIP_CHIP_21140:
481 1.10 thorpej if (sc->sc_rev < 0x11) {
482 1.109 cegger aprint_normal_dev(self,
483 1.109 cegger "21140 must be at least pass 1.1\n");
484 1.10 thorpej return;
485 1.10 thorpej }
486 1.10 thorpej break;
487 1.10 thorpej
488 1.10 thorpej default:
489 1.10 thorpej /* Nothing. */
490 1.51 cgd break;
491 1.10 thorpej }
492 1.1 thorpej
493 1.18 thorpej /*
494 1.18 thorpej * Check to see if the device is in power-save mode, and
495 1.18 thorpej * being it out if necessary.
496 1.18 thorpej */
497 1.18 thorpej switch (sc->sc_chip) {
498 1.18 thorpej case TULIP_CHIP_21140:
499 1.18 thorpej case TULIP_CHIP_21140A:
500 1.25 thorpej case TULIP_CHIP_21142:
501 1.25 thorpej case TULIP_CHIP_21143:
502 1.18 thorpej case TULIP_CHIP_MX98713A:
503 1.18 thorpej case TULIP_CHIP_MX98715:
504 1.20 thorpej case TULIP_CHIP_MX98715A:
505 1.46 castor case TULIP_CHIP_MX98715AEC_X:
506 1.18 thorpej case TULIP_CHIP_MX98725:
507 1.38 thorpej case TULIP_CHIP_DM9102:
508 1.38 thorpej case TULIP_CHIP_DM9102A:
509 1.80 rpaulo case TULIP_CHIP_AX88140:
510 1.80 rpaulo case TULIP_CHIP_AX88141:
511 1.88 rpaulo case TULIP_CHIP_RS7112:
512 1.18 thorpej /*
513 1.18 thorpej * Clear the "sleep mode" bit in the CFDA register.
514 1.18 thorpej */
515 1.18 thorpej reg = pci_conf_read(pc, pa->pa_tag, TULIP_PCI_CFDA);
516 1.126 msaitoh if (reg & (CFDA_SLEEP | CFDA_SNOOZE))
517 1.18 thorpej pci_conf_write(pc, pa->pa_tag, TULIP_PCI_CFDA,
518 1.126 msaitoh reg & ~(CFDA_SLEEP | CFDA_SNOOZE));
519 1.18 thorpej break;
520 1.18 thorpej
521 1.18 thorpej default:
522 1.18 thorpej /* Nothing. */
523 1.51 cgd break;
524 1.18 thorpej }
525 1.18 thorpej
526 1.92 christos /* power up chip */
527 1.113 cegger if ((error = pci_activate(pa->pa_pc, pa->pa_tag, self,
528 1.92 christos NULL)) && error != EOPNOTSUPP) {
529 1.124 msaitoh aprint_error_dev(self, "cannot activate %d\n", error);
530 1.92 christos return;
531 1.18 thorpej }
532 1.18 thorpej
533 1.18 thorpej /*
534 1.18 thorpej * Map the device.
535 1.18 thorpej */
536 1.101 tsutsui
537 1.18 thorpej ioh_valid = (pci_mapreg_map(pa, TULIP_PCI_IOBA,
538 1.18 thorpej PCI_MAPREG_TYPE_IO, 0,
539 1.108 cegger &iot, &ioh, NULL, &iosize) == 0);
540 1.18 thorpej memh_valid = (pci_mapreg_map(pa, TULIP_PCI_MMBA,
541 1.126 msaitoh PCI_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT, 0,
542 1.108 cegger &memt, &memh, NULL, &memsize) == 0);
543 1.18 thorpej if (memh_valid) {
544 1.18 thorpej sc->sc_st = memt;
545 1.18 thorpej sc->sc_sh = memh;
546 1.108 cegger psc->sc_mapsize = memsize;
547 1.110 cegger if (ioh_valid) {
548 1.108 cegger bus_space_unmap(iot, ioh, iosize);
549 1.110 cegger ioh_valid = 0;
550 1.110 cegger }
551 1.18 thorpej } else if (ioh_valid) {
552 1.18 thorpej sc->sc_st = iot;
553 1.18 thorpej sc->sc_sh = ioh;
554 1.108 cegger psc->sc_mapsize = iosize;
555 1.110 cegger if (memh_valid) {
556 1.110 cegger bus_space_unmap(memt, memh, memsize);
557 1.110 cegger memh_valid = 0;
558 1.110 cegger }
559 1.18 thorpej } else {
560 1.107 cegger aprint_error_dev(self, "unable to map device registers\n");
561 1.110 cegger goto fail;
562 1.18 thorpej }
563 1.18 thorpej
564 1.1 thorpej sc->sc_dmat = pa->pa_dmat;
565 1.1 thorpej
566 1.1 thorpej /*
567 1.1 thorpej * Make sure bus mastering is enabled.
568 1.1 thorpej */
569 1.1 thorpej pci_conf_write(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
570 1.1 thorpej pci_conf_read(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG) |
571 1.1 thorpej PCI_COMMAND_MASTER_ENABLE);
572 1.1 thorpej
573 1.1 thorpej /*
574 1.1 thorpej * Get the cacheline size.
575 1.1 thorpej */
576 1.1 thorpej sc->sc_cacheline = PCI_CACHELINE(pci_conf_read(pc, pa->pa_tag,
577 1.1 thorpej PCI_BHLC_REG));
578 1.22 thorpej
579 1.22 thorpej /*
580 1.22 thorpej * Get PCI data moving command info.
581 1.22 thorpej */
582 1.22 thorpej if (pa->pa_flags & PCI_FLAGS_MRL_OKAY)
583 1.22 thorpej sc->sc_flags |= TULIPF_MRL;
584 1.22 thorpej if (pa->pa_flags & PCI_FLAGS_MRM_OKAY)
585 1.22 thorpej sc->sc_flags |= TULIPF_MRM;
586 1.22 thorpej if (pa->pa_flags & PCI_FLAGS_MWI_OKAY)
587 1.22 thorpej sc->sc_flags |= TULIPF_MWI;
588 1.1 thorpej
589 1.1 thorpej /*
590 1.30 thorpej * Read the contents of the Ethernet Address ROM/SROM.
591 1.30 thorpej */
592 1.1 thorpej switch (sc->sc_chip) {
593 1.1 thorpej case TULIP_CHIP_21040:
594 1.33 mycroft sc->sc_srom_addrbits = 6;
595 1.131 thorpej sc->sc_srom = kmem_alloc(TULIP_ROM_SIZE(6), KM_SLEEP);
596 1.1 thorpej TULIP_WRITE(sc, CSR_MIIROM, MIIROM_SROMCS);
597 1.33 mycroft for (i = 0; i < TULIP_ROM_SIZE(6); i++) {
598 1.1 thorpej for (j = 0; j < 10000; j++) {
599 1.1 thorpej val = TULIP_READ(sc, CSR_MIIROM);
600 1.1 thorpej if ((val & MIIROM_DN) == 0)
601 1.1 thorpej break;
602 1.1 thorpej }
603 1.5 thorpej sc->sc_srom[i] = val & MIIROM_DATA;
604 1.1 thorpej }
605 1.1 thorpej break;
606 1.1 thorpej
607 1.1 thorpej case TULIP_CHIP_82C168:
608 1.1 thorpej case TULIP_CHIP_82C169:
609 1.5 thorpej {
610 1.33 mycroft sc->sc_srom_addrbits = 2;
611 1.131 thorpej sc->sc_srom = kmem_zalloc(TULIP_ROM_SIZE(2), KM_SLEEP);
612 1.5 thorpej
613 1.1 thorpej /*
614 1.1 thorpej * The Lite-On PNIC stores the Ethernet address in
615 1.1 thorpej * the first 3 words of the EEPROM. EEPROM access
616 1.1 thorpej * is not like the other Tulip chips.
617 1.1 thorpej */
618 1.33 mycroft for (i = 0; i < 6; i += 2) {
619 1.1 thorpej TULIP_WRITE(sc, CSR_PNIC_SROMCTL,
620 1.33 mycroft PNIC_SROMCTL_READ | (i >> 1));
621 1.1 thorpej for (j = 0; j < 500; j++) {
622 1.1 thorpej delay(2);
623 1.1 thorpej val = TULIP_READ(sc, CSR_MIIROM);
624 1.1 thorpej if ((val & PNIC_MIIROM_BUSY) == 0)
625 1.1 thorpej break;
626 1.1 thorpej }
627 1.1 thorpej if (val & PNIC_MIIROM_BUSY) {
628 1.109 cegger aprint_error_dev(self, "EEPROM timed out\n");
629 1.110 cegger goto fail;
630 1.1 thorpej }
631 1.33 mycroft val &= PNIC_MIIROM_DATA;
632 1.33 mycroft sc->sc_srom[i] = val >> 8;
633 1.33 mycroft sc->sc_srom[i + 1] = val & 0xff;
634 1.1 thorpej }
635 1.1 thorpej break;
636 1.5 thorpej }
637 1.1 thorpej
638 1.1 thorpej default:
639 1.52 thorpej /*
640 1.85 thorpej * XXX This isn't quite the right way to do this; we should
641 1.85 thorpej * XXX be attempting to fetch the mac-addr property in the
642 1.85 thorpej * XXX bus-agnostic part of the driver independently. But
643 1.85 thorpej * XXX that requires a larger change in the SROM handling
644 1.85 thorpej * XXX logic, and for now we can at least remove a machine-
645 1.85 thorpej * XXX dependent wart from the PCI front-end.
646 1.85 thorpej */
647 1.107 cegger ea = prop_dictionary_get(device_properties(self),
648 1.116 martin "mac-address");
649 1.90 thorpej if (ea != NULL) {
650 1.52 thorpej extern int tlp_srom_debug;
651 1.90 thorpej KASSERT(prop_object_type(ea) == PROP_TYPE_DATA);
652 1.90 thorpej KASSERT(prop_data_size(ea) == ETHER_ADDR_LEN);
653 1.90 thorpej
654 1.128 msaitoh memcpy(enaddr, prop_data_value(ea),
655 1.90 thorpej ETHER_ADDR_LEN);
656 1.90 thorpej
657 1.52 thorpej sc->sc_srom_addrbits = 6;
658 1.131 thorpej sc->sc_srom = kmem_zalloc(TULIP_ROM_SIZE(6), KM_SLEEP);
659 1.85 thorpej memcpy(sc->sc_srom, enaddr, sizeof(enaddr));
660 1.52 thorpej if (tlp_srom_debug) {
661 1.109 cegger aprint_normal("SROM CONTENTS:");
662 1.52 thorpej for (i = 0; i < TULIP_ROM_SIZE(6); i++) {
663 1.52 thorpej if ((i % 8) == 0)
664 1.109 cegger aprint_normal("\n\t");
665 1.129 msaitoh aprint_normal("0x%02x ",
666 1.129 msaitoh sc->sc_srom[i]);
667 1.52 thorpej }
668 1.109 cegger aprint_normal("\n");
669 1.52 thorpej }
670 1.52 thorpej break;
671 1.52 thorpej }
672 1.58 chs
673 1.58 chs /* Check for a slaved ROM on a multi-port board. */
674 1.58 chs tlp_pci_check_slaved(psc, TULIP_PCI_SHAREDROM,
675 1.58 chs TULIP_PCI_SLAVEROM);
676 1.58 chs if (psc->sc_flags & TULIP_PCI_SLAVEROM) {
677 1.58 chs sc->sc_srom_addrbits =
678 1.58 chs psc->sc_master->sc_tulip.sc_srom_addrbits;
679 1.58 chs sc->sc_srom = psc->sc_master->sc_tulip.sc_srom;
680 1.58 chs enaddr[5] +=
681 1.58 chs sc->sc_devno - psc->sc_master->sc_tulip.sc_devno;
682 1.58 chs }
683 1.58 chs else if (tlp_read_srom(sc) == 0)
684 1.33 mycroft goto cant_cope;
685 1.33 mycroft break;
686 1.1 thorpej }
687 1.1 thorpej
688 1.1 thorpej /*
689 1.1 thorpej * Deal with chip/board quirks. This includes setting up
690 1.1 thorpej * the mediasw, and extracting the Ethernet address from
691 1.1 thorpej * the rombuf.
692 1.1 thorpej */
693 1.1 thorpej switch (sc->sc_chip) {
694 1.5 thorpej case TULIP_CHIP_21040:
695 1.5 thorpej /*
696 1.8 thorpej * Parse the Ethernet Address ROM.
697 1.5 thorpej */
698 1.33 mycroft if (tlp_parse_old_srom(sc, enaddr) == 0)
699 1.33 mycroft goto cant_cope;
700 1.5 thorpej
701 1.8 thorpej
702 1.8 thorpej /*
703 1.5 thorpej * All 21040 boards start out with the same
704 1.5 thorpej * media switch.
705 1.5 thorpej */
706 1.5 thorpej sc->sc_mediasw = &tlp_21040_mediasw;
707 1.5 thorpej
708 1.5 thorpej /*
709 1.8 thorpej * Deal with any quirks this board might have.
710 1.5 thorpej */
711 1.8 thorpej tlp_pci_get_quirks(psc, enaddr, tlp_pci_21040_quirks);
712 1.12 thorpej break;
713 1.12 thorpej
714 1.12 thorpej case TULIP_CHIP_21041:
715 1.12 thorpej /* Check for new format SROM. */
716 1.12 thorpej if (tlp_isv_srom_enaddr(sc, enaddr) == 0) {
717 1.12 thorpej /*
718 1.12 thorpej * Not an ISV SROM; try the old DEC Ethernet Address
719 1.12 thorpej * ROM format.
720 1.12 thorpej */
721 1.33 mycroft if (tlp_parse_old_srom(sc, enaddr) == 0)
722 1.33 mycroft goto cant_cope;
723 1.12 thorpej }
724 1.12 thorpej
725 1.12 thorpej /*
726 1.12 thorpej * All 21041 boards use the same media switch; they all
727 1.12 thorpej * work basically the same! Yippee!
728 1.12 thorpej */
729 1.12 thorpej sc->sc_mediasw = &tlp_21041_mediasw;
730 1.12 thorpej
731 1.12 thorpej /*
732 1.12 thorpej * Deal with any quirks this board might have.
733 1.12 thorpej */
734 1.15 thorpej tlp_pci_get_quirks(psc, enaddr, tlp_pci_21041_quirks);
735 1.5 thorpej break;
736 1.5 thorpej
737 1.13 thorpej case TULIP_CHIP_21140:
738 1.13 thorpej case TULIP_CHIP_21140A:
739 1.13 thorpej /* Check for new format SROM. */
740 1.13 thorpej if (tlp_isv_srom_enaddr(sc, enaddr) == 0) {
741 1.13 thorpej /*
742 1.16 thorpej * Not an ISV SROM; try the old DEC Ethernet Address
743 1.16 thorpej * ROM format.
744 1.13 thorpej */
745 1.33 mycroft if (tlp_parse_old_srom(sc, enaddr) == 0)
746 1.33 mycroft goto cant_cope;
747 1.13 thorpej } else {
748 1.13 thorpej /*
749 1.13 thorpej * We start out with the 2114x ISV media switch.
750 1.13 thorpej * When we search for quirks, we may change to
751 1.13 thorpej * a different switch.
752 1.13 thorpej */
753 1.13 thorpej sc->sc_mediasw = &tlp_2114x_isv_mediasw;
754 1.13 thorpej }
755 1.13 thorpej
756 1.13 thorpej /*
757 1.13 thorpej * Deal with any quirks this board might have.
758 1.13 thorpej */
759 1.15 thorpej tlp_pci_get_quirks(psc, enaddr, tlp_pci_21140_quirks);
760 1.21 thorpej
761 1.21 thorpej /*
762 1.21 thorpej * Bail out now if we can't deal with this board.
763 1.21 thorpej */
764 1.21 thorpej if (sc->sc_mediasw == NULL)
765 1.21 thorpej goto cant_cope;
766 1.21 thorpej break;
767 1.21 thorpej
768 1.32 thorpej case TULIP_CHIP_21142:
769 1.31 thorpej case TULIP_CHIP_21143:
770 1.32 thorpej /* Check for new format SROM. */
771 1.32 thorpej if (tlp_isv_srom_enaddr(sc, enaddr) == 0) {
772 1.21 thorpej /*
773 1.28 thorpej * Not an ISV SROM; try the old DEC Ethernet Address
774 1.28 thorpej * ROM format.
775 1.21 thorpej */
776 1.63 thorpej if (tlp_parse_old_srom(sc, enaddr) == 0) {
777 1.63 thorpej /*
778 1.63 thorpej * One last try: just copy the address
779 1.63 thorpej * from offset 20 and try to look
780 1.63 thorpej * up quirks.
781 1.63 thorpej */
782 1.63 thorpej memcpy(enaddr, &sc->sc_srom[20],
783 1.63 thorpej ETHER_ADDR_LEN);
784 1.63 thorpej }
785 1.21 thorpej } else {
786 1.21 thorpej /*
787 1.21 thorpej * We start out with the 2114x ISV media switch.
788 1.21 thorpej * When we search for quirks, we may change to
789 1.21 thorpej * a different switch.
790 1.21 thorpej */
791 1.21 thorpej sc->sc_mediasw = &tlp_2114x_isv_mediasw;
792 1.21 thorpej }
793 1.21 thorpej
794 1.21 thorpej /*
795 1.21 thorpej * Deal with any quirks this board might have.
796 1.21 thorpej */
797 1.21 thorpej tlp_pci_get_quirks(psc, enaddr, tlp_pci_21142_quirks);
798 1.15 thorpej
799 1.15 thorpej /*
800 1.15 thorpej * Bail out now if we can't deal with this board.
801 1.15 thorpej */
802 1.15 thorpej if (sc->sc_mediasw == NULL)
803 1.15 thorpej goto cant_cope;
804 1.13 thorpej break;
805 1.13 thorpej
806 1.1 thorpej case TULIP_CHIP_82C168:
807 1.1 thorpej case TULIP_CHIP_82C169:
808 1.1 thorpej /*
809 1.1 thorpej * Lite-On PNIC's Ethernet address is the first 6
810 1.1 thorpej * bytes of its EEPROM.
811 1.1 thorpej */
812 1.5 thorpej memcpy(enaddr, sc->sc_srom, ETHER_ADDR_LEN);
813 1.1 thorpej
814 1.1 thorpej /*
815 1.1 thorpej * Lite-On PNICs always use the same mediasw; we
816 1.1 thorpej * select MII vs. internal NWAY automatically.
817 1.1 thorpej */
818 1.1 thorpej sc->sc_mediasw = &tlp_pnic_mediasw;
819 1.18 thorpej break;
820 1.18 thorpej
821 1.18 thorpej case TULIP_CHIP_MX98713:
822 1.19 thorpej /*
823 1.19 thorpej * The Macronix MX98713 has an MII and GPIO, but no
824 1.19 thorpej * internal Nway block. This chip is basically a
825 1.19 thorpej * perfect 21140A clone, with the exception of the
826 1.19 thorpej * a magic register frobbing in order to make the
827 1.19 thorpej * interface function.
828 1.19 thorpej */
829 1.19 thorpej if (tlp_isv_srom_enaddr(sc, enaddr)) {
830 1.19 thorpej sc->sc_mediasw = &tlp_2114x_isv_mediasw;
831 1.19 thorpej break;
832 1.19 thorpej }
833 1.19 thorpej /* FALLTHROUGH */
834 1.19 thorpej
835 1.20 thorpej case TULIP_CHIP_82C115:
836 1.20 thorpej /*
837 1.20 thorpej * Yippee! The Lite-On 82C115 is a clone of
838 1.20 thorpej * the MX98725 (the data sheet even says `MXIC'
839 1.20 thorpej * on it)! Imagine that, a clone of a clone.
840 1.20 thorpej *
841 1.20 thorpej * The differences are really minimal:
842 1.20 thorpej *
843 1.20 thorpej * - Wake-On-LAN support
844 1.20 thorpej * - 128-bit multicast hash table, rather than
845 1.20 thorpej * the standard 512-bit hash table
846 1.20 thorpej */
847 1.20 thorpej /* FALLTHROUGH */
848 1.20 thorpej
849 1.18 thorpej case TULIP_CHIP_MX98713A:
850 1.20 thorpej case TULIP_CHIP_MX98715A:
851 1.46 castor case TULIP_CHIP_MX98715AEC_X:
852 1.18 thorpej case TULIP_CHIP_MX98725:
853 1.18 thorpej /*
854 1.19 thorpej * The MX98713A has an MII as well as an internal Nway block,
855 1.19 thorpej * but no GPIO. The MX98715 and MX98725 have an internal
856 1.19 thorpej * Nway block only.
857 1.19 thorpej *
858 1.19 thorpej * The internal Nway block, unlike the Lite-On PNIC's, does
859 1.19 thorpej * just that - performs Nway. Once autonegotiation completes,
860 1.19 thorpej * we must program the GPR media information into the chip.
861 1.19 thorpej *
862 1.20 thorpej * The byte offset of the Ethernet address is stored at
863 1.20 thorpej * offset 0x70.
864 1.19 thorpej */
865 1.20 thorpej memcpy(enaddr, &sc->sc_srom[sc->sc_srom[0x70]], ETHER_ADDR_LEN);
866 1.19 thorpej sc->sc_mediasw = &tlp_pmac_mediasw;
867 1.1 thorpej break;
868 1.1 thorpej
869 1.1 thorpej case TULIP_CHIP_WB89C840F:
870 1.1 thorpej /*
871 1.1 thorpej * Winbond 89C840F's Ethernet address is the first
872 1.1 thorpej * 6 bytes of its EEPROM.
873 1.1 thorpej */
874 1.5 thorpej memcpy(enaddr, sc->sc_srom, ETHER_ADDR_LEN);
875 1.1 thorpej
876 1.1 thorpej /*
877 1.1 thorpej * Winbond 89C840F has an MII attached to the SIO.
878 1.1 thorpej */
879 1.1 thorpej sc->sc_mediasw = &tlp_sio_mii_mediasw;
880 1.19 thorpej break;
881 1.19 thorpej
882 1.19 thorpej case TULIP_CHIP_AL981:
883 1.19 thorpej /*
884 1.19 thorpej * The ADMtek AL981's Ethernet address is located
885 1.19 thorpej * at offset 8 of its EEPROM.
886 1.19 thorpej */
887 1.19 thorpej memcpy(enaddr, &sc->sc_srom[8], ETHER_ADDR_LEN);
888 1.19 thorpej
889 1.19 thorpej /*
890 1.19 thorpej * ADMtek AL981 has a built-in PHY accessed through
891 1.19 thorpej * special registers.
892 1.19 thorpej */
893 1.19 thorpej sc->sc_mediasw = &tlp_al981_mediasw;
894 1.47 thorpej break;
895 1.47 thorpej
896 1.47 thorpej case TULIP_CHIP_AN983:
897 1.47 thorpej case TULIP_CHIP_AN985:
898 1.47 thorpej /*
899 1.47 thorpej * The ADMtek AN985's Ethernet address is located
900 1.47 thorpej * at offset 8 of its EEPROM.
901 1.47 thorpej */
902 1.47 thorpej memcpy(enaddr, &sc->sc_srom[8], ETHER_ADDR_LEN);
903 1.47 thorpej
904 1.47 thorpej /*
905 1.47 thorpej * The ADMtek AN985 can be configured in Single-Chip
906 1.47 thorpej * mode or MAC-only mode. Single-Chip uses the built-in
907 1.47 thorpej * PHY, MAC-only has an external PHY (usually HomePNA).
908 1.47 thorpej * The selection is based on an EEPROM setting, and both
909 1.47 thorpej * PHYs are accessed via MII attached to SIO.
910 1.49 thorpej *
911 1.49 thorpej * The AN985 "ghosts" the internal PHY onto all
912 1.49 thorpej * MII addresses, so we have to use a media init
913 1.49 thorpej * routine that limits the search.
914 1.49 thorpej * XXX How does this work with MAC-only mode?
915 1.47 thorpej */
916 1.49 thorpej sc->sc_mediasw = &tlp_an985_mediasw;
917 1.38 thorpej break;
918 1.38 thorpej
919 1.38 thorpej case TULIP_CHIP_DM9102:
920 1.38 thorpej case TULIP_CHIP_DM9102A:
921 1.39 thorpej /*
922 1.39 thorpej * Some boards with the Davicom chip have an ISV
923 1.39 thorpej * SROM (mostly DM9102A boards -- trying to describe
924 1.39 thorpej * the HomePNA PHY, probably) although the data in
925 1.39 thorpej * them is generally wrong. Check for ISV format
926 1.39 thorpej * and grab the Ethernet address that way, and if
927 1.39 thorpej * that fails, fall back on grabbing it from an
928 1.39 thorpej * observed offset of 20 (which is where it would
929 1.39 thorpej * be in an ISV SROM anyhow, tho ISV can cope with
930 1.39 thorpej * multi-port boards).
931 1.39 thorpej */
932 1.56 matt if (!tlp_isv_srom_enaddr(sc, enaddr)) {
933 1.116 martin
934 1.116 martin prop_data_t eaddrprop;
935 1.116 martin
936 1.116 martin eaddrprop = prop_dictionary_get(
937 1.116 martin device_properties(self), "mac-address");
938 1.116 martin
939 1.116 martin if (eaddrprop != NULL
940 1.116 martin && prop_data_size(eaddrprop) == ETHER_ADDR_LEN)
941 1.116 martin memcpy(enaddr,
942 1.128 msaitoh prop_data_value(eaddrprop),
943 1.116 martin ETHER_ADDR_LEN);
944 1.116 martin else
945 1.116 martin memcpy(enaddr, &sc->sc_srom[20],
946 1.116 martin ETHER_ADDR_LEN);
947 1.56 matt }
948 1.38 thorpej
949 1.38 thorpej /*
950 1.38 thorpej * Davicom chips all have an internal MII interface
951 1.39 thorpej * and a built-in PHY. DM9102A also has a an external
952 1.39 thorpej * MII interface, usually with a HomePNA PHY attached
953 1.39 thorpej * to it.
954 1.38 thorpej */
955 1.38 thorpej sc->sc_mediasw = &tlp_dm9102_mediasw;
956 1.1 thorpej break;
957 1.1 thorpej
958 1.80 rpaulo case TULIP_CHIP_AX88140:
959 1.80 rpaulo case TULIP_CHIP_AX88141:
960 1.80 rpaulo /*
961 1.80 rpaulo * ASIX AX88140/AX88141 Ethernet Address is located at offset
962 1.80 rpaulo * 20 of the SROM.
963 1.80 rpaulo */
964 1.80 rpaulo memcpy(enaddr, &sc->sc_srom[20], ETHER_ADDR_LEN);
965 1.80 rpaulo
966 1.80 rpaulo /*
967 1.80 rpaulo * ASIX AX88140A/AX88141 chip can have a built-in PHY or
968 1.80 rpaulo * an external MII interface.
969 1.80 rpaulo */
970 1.80 rpaulo sc->sc_mediasw = &tlp_asix_mediasw;
971 1.80 rpaulo break;
972 1.80 rpaulo
973 1.88 rpaulo case TULIP_CHIP_RS7112:
974 1.88 rpaulo /*
975 1.88 rpaulo * RS7112 Ethernet Address is located of offset 0x19a
976 1.88 rpaulo * of the SROM
977 1.88 rpaulo */
978 1.88 rpaulo memcpy(enaddr, &sc->sc_srom[0x19a], ETHER_ADDR_LEN);
979 1.88 rpaulo
980 1.88 rpaulo /* RS7112 chip has a PHY at MII address 1 */
981 1.88 rpaulo sc->sc_mediasw = &tlp_rs7112_mediasw;
982 1.88 rpaulo break;
983 1.88 rpaulo
984 1.1 thorpej default:
985 1.13 thorpej cant_cope:
986 1.109 cegger aprint_error_dev(self, "sorry, unable to handle your board\n");
987 1.110 cegger goto fail;
988 1.1 thorpej }
989 1.1 thorpej
990 1.1 thorpej /*
991 1.8 thorpej * Handle shared interrupts.
992 1.1 thorpej */
993 1.8 thorpej if (psc->sc_flags & TULIP_PCI_SHAREDINTR) {
994 1.8 thorpej if (psc->sc_master)
995 1.8 thorpej psc->sc_flags |= TULIP_PCI_SLAVEINTR;
996 1.8 thorpej else {
997 1.8 thorpej tlp_pci_check_slaved(psc, TULIP_PCI_SHAREDINTR,
998 1.8 thorpej TULIP_PCI_SLAVEINTR);
999 1.8 thorpej if (psc->sc_master == NULL)
1000 1.8 thorpej psc->sc_master = psc;
1001 1.8 thorpej }
1002 1.8 thorpej LIST_INSERT_HEAD(&psc->sc_master->sc_intrslaves,
1003 1.8 thorpej psc, sc_intrq);
1004 1.1 thorpej }
1005 1.8 thorpej
1006 1.8 thorpej if (psc->sc_flags & TULIP_PCI_SLAVEINTR) {
1007 1.109 cegger aprint_normal_dev(self, "sharing interrupt with %s\n",
1008 1.107 cegger device_xname(psc->sc_master->sc_tulip.sc_dev));
1009 1.8 thorpej } else {
1010 1.8 thorpej /*
1011 1.8 thorpej * Map and establish our interrupt.
1012 1.8 thorpej */
1013 1.48 sommerfe if (pci_intr_map(pa, &ih)) {
1014 1.107 cegger aprint_error_dev(self, "unable to map interrupt\n");
1015 1.110 cegger goto fail;
1016 1.8 thorpej }
1017 1.123 christos intrstr = pci_intr_string(pc, ih, intrbuf, sizeof(intrbuf));
1018 1.125 jdolecek psc->sc_ih = pci_intr_establish_xname(pc, ih, IPL_NET,
1019 1.8 thorpej (psc->sc_flags & TULIP_PCI_SHAREDINTR) ?
1020 1.125 jdolecek tlp_pci_shared_intr : tlp_intr, sc, device_xname(self));
1021 1.8 thorpej if (psc->sc_ih == NULL) {
1022 1.107 cegger aprint_error_dev(self, "unable to establish interrupt");
1023 1.8 thorpej if (intrstr != NULL)
1024 1.109 cegger aprint_error(" at %s", intrstr);
1025 1.109 cegger aprint_error("\n");
1026 1.110 cegger goto fail;
1027 1.8 thorpej }
1028 1.109 cegger aprint_normal_dev(self, "interrupting at %s\n",
1029 1.8 thorpej intrstr);
1030 1.1 thorpej }
1031 1.1 thorpej
1032 1.1 thorpej /*
1033 1.1 thorpej * Finish off the attach.
1034 1.1 thorpej */
1035 1.111 cegger error = tlp_attach(sc, enaddr);
1036 1.111 cegger if (error)
1037 1.111 cegger goto fail;
1038 1.110 cegger return;
1039 1.110 cegger
1040 1.110 cegger fail:
1041 1.110 cegger if (psc->sc_ih != NULL) {
1042 1.110 cegger pci_intr_disestablish(psc->sc_pc, psc->sc_ih);
1043 1.110 cegger psc->sc_ih = NULL;
1044 1.110 cegger }
1045 1.110 cegger
1046 1.110 cegger if (ioh_valid)
1047 1.110 cegger bus_space_unmap(iot, ioh, iosize);
1048 1.110 cegger if (memh_valid)
1049 1.110 cegger bus_space_unmap(memt, memh, memsize);
1050 1.110 cegger psc->sc_mapsize = 0;
1051 1.110 cegger return;
1052 1.8 thorpej }
1053 1.8 thorpej
1054 1.77 thorpej static int
1055 1.108 cegger tlp_pci_detach(device_t self, int flags)
1056 1.108 cegger {
1057 1.108 cegger struct tulip_pci_softc *psc = device_private(self);
1058 1.108 cegger struct tulip_softc *sc = &psc->sc_tulip;
1059 1.108 cegger int rv;
1060 1.108 cegger
1061 1.108 cegger rv = tlp_detach(sc);
1062 1.108 cegger if (rv)
1063 1.108 cegger return rv;
1064 1.108 cegger
1065 1.108 cegger if (psc->sc_ih != NULL) {
1066 1.108 cegger pci_intr_disestablish(psc->sc_pc, psc->sc_ih);
1067 1.108 cegger psc->sc_ih = NULL;
1068 1.108 cegger }
1069 1.108 cegger
1070 1.108 cegger if (psc->sc_mapsize) {
1071 1.108 cegger bus_space_unmap(sc->sc_st, sc->sc_sh, psc->sc_mapsize);
1072 1.108 cegger psc->sc_mapsize = 0;
1073 1.108 cegger }
1074 1.108 cegger
1075 1.108 cegger return 0;
1076 1.108 cegger }
1077 1.108 cegger
1078 1.108 cegger static int
1079 1.77 thorpej tlp_pci_shared_intr(void *arg)
1080 1.8 thorpej {
1081 1.8 thorpej struct tulip_pci_softc *master = arg, *slave;
1082 1.8 thorpej int rv = 0;
1083 1.8 thorpej
1084 1.8 thorpej for (slave = LIST_FIRST(&master->sc_intrslaves);
1085 1.8 thorpej slave != NULL;
1086 1.8 thorpej slave = LIST_NEXT(slave, sc_intrq))
1087 1.8 thorpej rv |= tlp_intr(&slave->sc_tulip);
1088 1.78 perry
1089 1.101 tsutsui return rv;
1090 1.15 thorpej }
1091 1.15 thorpej
1092 1.77 thorpej static void
1093 1.101 tsutsui tlp_pci_dec_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr)
1094 1.15 thorpej {
1095 1.15 thorpej struct tulip_softc *sc = &psc->sc_tulip;
1096 1.15 thorpej
1097 1.15 thorpej /*
1098 1.15 thorpej * This isn't really a quirk-gathering device, really. We
1099 1.15 thorpej * just want to get the spiffy DEC board name from the SROM.
1100 1.15 thorpej */
1101 1.15 thorpej strcpy(sc->sc_name, "DEC ");
1102 1.15 thorpej
1103 1.15 thorpej if (memcmp(&sc->sc_srom[29], "DE500", 5) == 0 ||
1104 1.15 thorpej memcmp(&sc->sc_srom[29], "DE450", 5) == 0)
1105 1.15 thorpej memcpy(&sc->sc_name[4], &sc->sc_srom[29], 8);
1106 1.81 rpaulo else
1107 1.81 rpaulo sc->sc_name[3] = '\0';
1108 1.8 thorpej }
1109 1.8 thorpej
1110 1.77 thorpej static void
1111 1.101 tsutsui tlp_pci_znyx_21040_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr)
1112 1.8 thorpej {
1113 1.8 thorpej struct tulip_softc *sc = &psc->sc_tulip;
1114 1.101 tsutsui uint16_t id = 0;
1115 1.11 thorpej
1116 1.11 thorpej /*
1117 1.11 thorpej * If we have a slaved ROM, just copy the bits from the master.
1118 1.11 thorpej * This is in case we fail the ROM ID check (older boards) and
1119 1.11 thorpej * need to fall back on Ethernet address model checking; that
1120 1.11 thorpej * will fail for slave chips.
1121 1.11 thorpej */
1122 1.11 thorpej if (psc->sc_flags & TULIP_PCI_SLAVEROM) {
1123 1.11 thorpej strcpy(sc->sc_name, psc->sc_master->sc_tulip.sc_name);
1124 1.11 thorpej sc->sc_mediasw = psc->sc_master->sc_tulip.sc_mediasw;
1125 1.11 thorpej psc->sc_flags |=
1126 1.11 thorpej psc->sc_master->sc_flags & TULIP_PCI_SHAREDINTR;
1127 1.11 thorpej return;
1128 1.11 thorpej }
1129 1.8 thorpej
1130 1.8 thorpej if (sc->sc_srom[32] == 0x4a && sc->sc_srom[33] == 0x52) {
1131 1.8 thorpej id = sc->sc_srom[37] | (sc->sc_srom[36] << 8);
1132 1.8 thorpej switch (id) {
1133 1.8 thorpej zx312:
1134 1.8 thorpej case 0x0602: /* ZX312 */
1135 1.8 thorpej strcpy(sc->sc_name, "ZNYX ZX312");
1136 1.8 thorpej return;
1137 1.8 thorpej
1138 1.8 thorpej case 0x0622: /* ZX312T */
1139 1.8 thorpej strcpy(sc->sc_name, "ZNYX ZX312T");
1140 1.8 thorpej sc->sc_mediasw = &tlp_21040_tp_mediasw;
1141 1.8 thorpej return;
1142 1.8 thorpej
1143 1.8 thorpej zx314_inta:
1144 1.8 thorpej case 0x0701: /* ZX314 INTA */
1145 1.8 thorpej psc->sc_flags |= TULIP_PCI_SHAREDINTR;
1146 1.8 thorpej /* FALLTHROUGH */
1147 1.8 thorpej case 0x0711: /* ZX314 */
1148 1.8 thorpej strcpy(sc->sc_name, "ZNYX ZX314");
1149 1.8 thorpej psc->sc_flags |= TULIP_PCI_SHAREDROM;
1150 1.8 thorpej sc->sc_mediasw = &tlp_21040_tp_mediasw;
1151 1.8 thorpej return;
1152 1.8 thorpej
1153 1.8 thorpej zx315_inta:
1154 1.8 thorpej case 0x0801: /* ZX315 INTA */
1155 1.8 thorpej psc->sc_flags |= TULIP_PCI_SHAREDINTR;
1156 1.8 thorpej /* FALLTHROUGH */
1157 1.8 thorpej case 0x0811: /* ZX315 */
1158 1.8 thorpej strcpy(sc->sc_name, "ZNYX ZX315");
1159 1.8 thorpej psc->sc_flags |= TULIP_PCI_SHAREDROM;
1160 1.8 thorpej return;
1161 1.8 thorpej
1162 1.8 thorpej default:
1163 1.8 thorpej id = 0;
1164 1.51 cgd break;
1165 1.8 thorpej }
1166 1.8 thorpej }
1167 1.8 thorpej
1168 1.8 thorpej /*
1169 1.8 thorpej * Deal with boards that have broken ROMs.
1170 1.8 thorpej */
1171 1.8 thorpej if (id == 0) {
1172 1.8 thorpej if ((enaddr[3] & ~3) == 0xf0 && (enaddr[5] & 3) == 0x00)
1173 1.8 thorpej goto zx314_inta;
1174 1.8 thorpej if ((enaddr[3] & ~3) == 0xf4 && (enaddr[5] & 1) == 0x00)
1175 1.8 thorpej goto zx315_inta;
1176 1.8 thorpej if ((enaddr[3] & ~3) == 0xec)
1177 1.8 thorpej goto zx312;
1178 1.8 thorpej }
1179 1.8 thorpej
1180 1.8 thorpej strcpy(sc->sc_name, "ZNYX ZX31x");
1181 1.73 itohy }
1182 1.73 itohy
1183 1.77 thorpej static void tlp_pci_znyx_21142_qs6611_reset(struct tulip_softc *);
1184 1.73 itohy
1185 1.77 thorpej static void
1186 1.101 tsutsui tlp_pci_znyx_21142_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr)
1187 1.73 itohy {
1188 1.73 itohy struct tulip_softc *sc = &psc->sc_tulip;
1189 1.73 itohy pcireg_t subid;
1190 1.73 itohy
1191 1.73 itohy subid = pci_conf_read(psc->sc_pc, psc->sc_pcitag, PCI_SUBSYS_ID_REG);
1192 1.73 itohy
1193 1.73 itohy if (PCI_VENDOR(subid) != PCI_VENDOR_ZNYX)
1194 1.73 itohy return; /* ? */
1195 1.73 itohy
1196 1.73 itohy switch (PCI_PRODUCT(subid) & 0xff) {
1197 1.73 itohy /*
1198 1.73 itohy * ZNYX 21143 boards with QS6611 PHY
1199 1.73 itohy */
1200 1.73 itohy case 0x12: /* ZX345Q */
1201 1.73 itohy case 0x13: /* ZX346Q */
1202 1.73 itohy case 0x14: /* ZX348Q */
1203 1.73 itohy case 0x18: /* ZX414 */
1204 1.73 itohy case 0x19: /* ZX412 */
1205 1.73 itohy case 0x1a: /* ZX444 */
1206 1.73 itohy case 0x1b: /* ZX442 */
1207 1.73 itohy case 0x23: /* ZX212 */
1208 1.73 itohy case 0x24: /* ZX214 */
1209 1.73 itohy case 0x29: /* ZX374 */
1210 1.73 itohy case 0x2d: /* ZX372 */
1211 1.73 itohy case 0x2b: /* ZX244 */
1212 1.73 itohy case 0x2c: /* ZX424 */
1213 1.73 itohy case 0x2e: /* ZX422 */
1214 1.115 jmcneill aprint_normal_dev(sc->sc_dev, "QS6611 PHY\n");
1215 1.73 itohy sc->sc_reset = tlp_pci_znyx_21142_qs6611_reset;
1216 1.73 itohy break;
1217 1.73 itohy }
1218 1.73 itohy }
1219 1.73 itohy
1220 1.77 thorpej static void
1221 1.77 thorpej tlp_pci_znyx_21142_qs6611_reset(struct tulip_softc *sc)
1222 1.73 itohy {
1223 1.73 itohy
1224 1.73 itohy /*
1225 1.73 itohy * Reset QS6611 PHY.
1226 1.73 itohy */
1227 1.73 itohy TULIP_WRITE(sc, CSR_SIAGEN,
1228 1.73 itohy SIAGEN_CWE | SIAGEN_LGS1 | SIAGEN_ABM | (0xf << 16));
1229 1.73 itohy delay(200);
1230 1.73 itohy TULIP_WRITE(sc, CSR_SIAGEN, (0x4 << 16));
1231 1.73 itohy delay(10000);
1232 1.8 thorpej }
1233 1.8 thorpej
1234 1.77 thorpej static void
1235 1.101 tsutsui tlp_pci_smc_21040_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr)
1236 1.8 thorpej {
1237 1.8 thorpej struct tulip_softc *sc = &psc->sc_tulip;
1238 1.101 tsutsui uint16_t id1, id2, ei;
1239 1.8 thorpej int auibnc = 0, utp = 0;
1240 1.8 thorpej char *cp;
1241 1.8 thorpej
1242 1.8 thorpej id1 = sc->sc_srom[0x60] | (sc->sc_srom[0x61] << 8);
1243 1.8 thorpej id2 = sc->sc_srom[0x62] | (sc->sc_srom[0x63] << 8);
1244 1.8 thorpej ei = sc->sc_srom[0x66] | (sc->sc_srom[0x67] << 8);
1245 1.8 thorpej
1246 1.8 thorpej strcpy(sc->sc_name, "SMC 8432");
1247 1.8 thorpej cp = &sc->sc_name[8];
1248 1.8 thorpej
1249 1.8 thorpej if ((id1 & 1) == 0) {
1250 1.8 thorpej *cp++ = 'B';
1251 1.8 thorpej auibnc = 1;
1252 1.8 thorpej }
1253 1.8 thorpej if ((id1 & 0xff) > 0x32) {
1254 1.8 thorpej *cp++ = 'T';
1255 1.8 thorpej utp = 1;
1256 1.8 thorpej }
1257 1.8 thorpej if ((id1 & 0x4000) == 0) {
1258 1.8 thorpej *cp++ = 'A';
1259 1.8 thorpej auibnc = 1;
1260 1.8 thorpej }
1261 1.8 thorpej if (id2 == 0x15) {
1262 1.8 thorpej sc->sc_name[7] = '4';
1263 1.8 thorpej *cp++ = '-';
1264 1.8 thorpej *cp++ = 'C';
1265 1.8 thorpej *cp++ = 'H';
1266 1.8 thorpej *cp++ = ei ? '2' : '1';
1267 1.8 thorpej }
1268 1.8 thorpej *cp = '\0';
1269 1.8 thorpej
1270 1.8 thorpej if (utp != 0 && auibnc == 0)
1271 1.8 thorpej sc->sc_mediasw = &tlp_21040_tp_mediasw;
1272 1.8 thorpej else if (utp == 0 && auibnc != 0)
1273 1.8 thorpej sc->sc_mediasw = &tlp_21040_auibnc_mediasw;
1274 1.8 thorpej }
1275 1.8 thorpej
1276 1.77 thorpej static void
1277 1.101 tsutsui tlp_pci_cogent_21040_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr)
1278 1.8 thorpej {
1279 1.8 thorpej
1280 1.8 thorpej strcpy(psc->sc_tulip.sc_name, "Cogent multi-port");
1281 1.126 msaitoh psc->sc_flags |= TULIP_PCI_SHAREDINTR | TULIP_PCI_SHAREDROM;
1282 1.8 thorpej }
1283 1.8 thorpej
1284 1.77 thorpej static void
1285 1.101 tsutsui tlp_pci_accton_21040_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr)
1286 1.8 thorpej {
1287 1.8 thorpej
1288 1.8 thorpej strcpy(psc->sc_tulip.sc_name, "ACCTON EN1203");
1289 1.17 thorpej }
1290 1.17 thorpej
1291 1.77 thorpej static void tlp_pci_asante_21140_reset(struct tulip_softc *);
1292 1.17 thorpej
1293 1.77 thorpej static void
1294 1.101 tsutsui tlp_pci_asante_21140_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr)
1295 1.17 thorpej {
1296 1.17 thorpej struct tulip_softc *sc = &psc->sc_tulip;
1297 1.17 thorpej
1298 1.17 thorpej /*
1299 1.17 thorpej * Some Asante boards don't use the ISV SROM format. For
1300 1.17 thorpej * those that don't, we initialize the GPIO direction bits,
1301 1.17 thorpej * and provide our own reset hook, which resets the MII.
1302 1.17 thorpej *
1303 1.17 thorpej * All of these boards use SIO-attached-MII media.
1304 1.17 thorpej */
1305 1.17 thorpej if (sc->sc_mediasw == &tlp_2114x_isv_mediasw)
1306 1.17 thorpej return;
1307 1.17 thorpej
1308 1.17 thorpej strcpy(sc->sc_name, "Asante");
1309 1.17 thorpej
1310 1.17 thorpej sc->sc_gp_dir = 0xbf;
1311 1.17 thorpej sc->sc_reset = tlp_pci_asante_21140_reset;
1312 1.17 thorpej sc->sc_mediasw = &tlp_sio_mii_mediasw;
1313 1.17 thorpej }
1314 1.17 thorpej
1315 1.101 tsutsui static void
1316 1.101 tsutsui tlp_pci_e100_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr)
1317 1.99 macallan {
1318 1.99 macallan struct tulip_softc *sc = &psc->sc_tulip;
1319 1.99 macallan
1320 1.99 macallan if (sc->sc_mediasw == &tlp_2114x_isv_mediasw)
1321 1.99 macallan return;
1322 1.99 macallan
1323 1.99 macallan strcpy(sc->sc_name, "UMAX E100");
1324 1.99 macallan
1325 1.99 macallan sc->sc_gp_dir = 0xbf;
1326 1.99 macallan sc->sc_reset = tlp_pci_asante_21140_reset;
1327 1.99 macallan sc->sc_mediasw = &tlp_sio_mii_mediasw;
1328 1.99 macallan }
1329 1.99 macallan
1330 1.77 thorpej static void
1331 1.77 thorpej tlp_pci_asante_21140_reset(struct tulip_softc *sc)
1332 1.17 thorpej {
1333 1.17 thorpej
1334 1.17 thorpej TULIP_WRITE(sc, CSR_GPP, GPP_GPC | sc->sc_gp_dir);
1335 1.17 thorpej TULIP_WRITE(sc, CSR_GPP, 0x8);
1336 1.17 thorpej delay(100);
1337 1.17 thorpej TULIP_WRITE(sc, CSR_GPP, 0);
1338 1.62 chs }
1339 1.62 chs
1340 1.96 rumble static void tlp_pci_phobos_21140_reset(struct tulip_softc *);
1341 1.96 rumble
1342 1.96 rumble static void
1343 1.101 tsutsui tlp_pci_phobos_21140_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr)
1344 1.96 rumble {
1345 1.96 rumble struct tulip_softc *sc = &psc->sc_tulip;
1346 1.96 rumble
1347 1.96 rumble /*
1348 1.120 jakllsch * Phobos boards just use MII-on-SIO.
1349 1.96 rumble */
1350 1.96 rumble sc->sc_mediasw = &tlp_sio_mii_mediasw;
1351 1.96 rumble sc->sc_reset = tlp_pci_phobos_21140_reset;
1352 1.96 rumble
1353 1.96 rumble /*
1354 1.96 rumble * These boards appear solely on sgimips machines behind a special
1355 1.96 rumble * GIO<->PCI ASIC and require the DBO and BLE bits to be set in CSR0.
1356 1.96 rumble */
1357 1.96 rumble sc->sc_flags |= (TULIPF_BLE | TULIPF_DBO);
1358 1.96 rumble }
1359 1.96 rumble
1360 1.96 rumble static void
1361 1.96 rumble tlp_pci_phobos_21140_reset(struct tulip_softc *sc)
1362 1.96 rumble {
1363 1.96 rumble
1364 1.121 jakllsch TULIP_WRITE(sc, CSR_GPP, GPP_GPC | 0xfd);
1365 1.96 rumble delay(10);
1366 1.96 rumble TULIP_WRITE(sc, CSR_GPP, 0xfd);
1367 1.96 rumble delay(10);
1368 1.96 rumble TULIP_WRITE(sc, CSR_GPP, 0);
1369 1.96 rumble }
1370 1.96 rumble
1371 1.62 chs /*
1372 1.62 chs * SMC 9332DST media switch.
1373 1.62 chs */
1374 1.77 thorpej static void tlp_smc9332dst_tmsw_init(struct tulip_softc *);
1375 1.62 chs
1376 1.77 thorpej static const struct tulip_mediasw tlp_smc9332dst_mediasw = {
1377 1.62 chs tlp_smc9332dst_tmsw_init,
1378 1.62 chs tlp_21140_gpio_get,
1379 1.62 chs tlp_21140_gpio_set
1380 1.62 chs };
1381 1.62 chs
1382 1.77 thorpej static void
1383 1.101 tsutsui tlp_pci_smc_21140_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr)
1384 1.62 chs {
1385 1.62 chs struct tulip_softc *sc = &psc->sc_tulip;
1386 1.62 chs
1387 1.62 chs strcpy(psc->sc_tulip.sc_name, "SMC 9332DST");
1388 1.62 chs sc->sc_mediasw = &tlp_smc9332dst_mediasw;
1389 1.62 chs }
1390 1.62 chs
1391 1.77 thorpej static void
1392 1.77 thorpej tlp_smc9332dst_tmsw_init(struct tulip_softc *sc)
1393 1.62 chs {
1394 1.62 chs struct tulip_21x4x_media *tm;
1395 1.126 msaitoh struct mii_data *mii = &sc->sc_mii;
1396 1.62 chs const char *sep = "";
1397 1.62 chs uint32_t reg;
1398 1.62 chs int i, cnt;
1399 1.62 chs
1400 1.62 chs sc->sc_gp_dir = GPP_SMC9332DST_PINS;
1401 1.62 chs sc->sc_opmode = OPMODE_MBO | OPMODE_PS;
1402 1.62 chs TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
1403 1.62 chs
1404 1.126 msaitoh ifmedia_init(&mii->mii_media, 0, tlp_mediachange, tlp_mediastatus);
1405 1.115 jmcneill aprint_normal_dev(sc->sc_dev, "");
1406 1.62 chs
1407 1.62 chs #define ADD(m, c) \
1408 1.131 thorpej tm = kmem_zalloc(sizeof(*tm), KM_SLEEP); \
1409 1.62 chs tm->tm_opmode = (c); \
1410 1.62 chs tm->tm_gpdata = GPP_SMC9332DST_INIT; \
1411 1.126 msaitoh ifmedia_add(&mii->mii_media, (m), 0, tm)
1412 1.115 jmcneill #define PRINT(str) aprint_normal("%s%s", sep, str); sep = ", "
1413 1.62 chs
1414 1.62 chs ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, 0, 0), OPMODE_TTM);
1415 1.62 chs PRINT("10baseT");
1416 1.62 chs
1417 1.62 chs ADD(IFM_MAKEWORD(IFM_ETHER, IFM_10_T, IFM_FDX, 0),
1418 1.62 chs OPMODE_TTM | OPMODE_FD);
1419 1.62 chs PRINT("10baseT-FDX");
1420 1.62 chs
1421 1.62 chs ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, 0, 0),
1422 1.62 chs OPMODE_PS | OPMODE_PCS | OPMODE_SCR);
1423 1.62 chs PRINT("100baseTX");
1424 1.62 chs
1425 1.62 chs ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_FDX, 0),
1426 1.62 chs OPMODE_PS | OPMODE_PCS | OPMODE_SCR | OPMODE_FD);
1427 1.62 chs PRINT("100baseTX-FDX");
1428 1.62 chs
1429 1.62 chs #undef ADD
1430 1.62 chs #undef PRINT
1431 1.62 chs
1432 1.115 jmcneill aprint_normal("\n");
1433 1.62 chs
1434 1.62 chs tlp_reset(sc);
1435 1.62 chs TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode | OPMODE_PCS | OPMODE_SCR);
1436 1.62 chs TULIP_WRITE(sc, CSR_GPP, GPP_GPC | sc->sc_gp_dir);
1437 1.62 chs delay(10);
1438 1.62 chs TULIP_WRITE(sc, CSR_GPP, GPP_SMC9332DST_INIT);
1439 1.62 chs delay(200000);
1440 1.62 chs cnt = 0;
1441 1.62 chs for (i = 1000; i > 0; i--) {
1442 1.62 chs reg = TULIP_READ(sc, CSR_GPP);
1443 1.62 chs if ((~reg & (GPP_SMC9332DST_OK10 |
1444 1.62 chs GPP_SMC9332DST_OK100)) == 0) {
1445 1.62 chs if (cnt++ > 100) {
1446 1.62 chs break;
1447 1.62 chs }
1448 1.62 chs } else if ((reg & GPP_SMC9332DST_OK10) == 0) {
1449 1.62 chs break;
1450 1.62 chs } else {
1451 1.62 chs cnt = 0;
1452 1.62 chs }
1453 1.62 chs delay(1000);
1454 1.62 chs }
1455 1.126 msaitoh if (cnt > 100)
1456 1.126 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_100_TX);
1457 1.126 msaitoh else
1458 1.126 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_10_T);
1459 1.69 minoura }
1460 1.69 minoura
1461 1.77 thorpej static void
1462 1.101 tsutsui tlp_pci_vpc_21140_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr)
1463 1.69 minoura {
1464 1.69 minoura struct tulip_softc *sc = &psc->sc_tulip;
1465 1.126 msaitoh char *p1 = (char *)&sc->sc_srom[32];
1466 1.69 minoura char *p2 = &sc->sc_name[0];
1467 1.69 minoura
1468 1.69 minoura do {
1469 1.70 jdolecek if ((unsigned char) *p1 & 0x80)
1470 1.69 minoura *p2++ = ' ';
1471 1.69 minoura else
1472 1.69 minoura *p2++ = *p1;
1473 1.69 minoura } while (*p1++);
1474 1.28 thorpej }
1475 1.28 thorpej
1476 1.77 thorpej static void tlp_pci_cobalt_21142_reset(struct tulip_softc *);
1477 1.36 soren
1478 1.77 thorpej static void
1479 1.101 tsutsui tlp_pci_cobalt_21142_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr)
1480 1.28 thorpej {
1481 1.28 thorpej struct tulip_softc *sc = &psc->sc_tulip;
1482 1.28 thorpej
1483 1.28 thorpej /*
1484 1.28 thorpej * Cobalt Networks interfaces are just MII-on-SIO.
1485 1.28 thorpej */
1486 1.36 soren sc->sc_reset = tlp_pci_cobalt_21142_reset;
1487 1.28 thorpej sc->sc_mediasw = &tlp_sio_mii_mediasw;
1488 1.36 soren
1489 1.36 soren /*
1490 1.36 soren * The Cobalt systems tend to fall back to store-and-forward
1491 1.36 soren * pretty quickly, so we select that from the beginning to
1492 1.36 soren * avoid initial timeouts.
1493 1.36 soren */
1494 1.36 soren sc->sc_txthresh = TXTH_SF;
1495 1.36 soren }
1496 1.36 soren
1497 1.77 thorpej static void
1498 1.77 thorpej tlp_pci_cobalt_21142_reset(struct tulip_softc *sc)
1499 1.36 soren {
1500 1.101 tsutsui
1501 1.36 soren /*
1502 1.36 soren * Reset PHY.
1503 1.36 soren */
1504 1.36 soren TULIP_WRITE(sc, CSR_SIAGEN, SIAGEN_CWE | (1 << 16));
1505 1.36 soren delay(10);
1506 1.36 soren TULIP_WRITE(sc, CSR_SIAGEN, SIAGEN_CWE);
1507 1.36 soren delay(10);
1508 1.52 thorpej }
1509 1.52 thorpej
1510 1.77 thorpej static void
1511 1.101 tsutsui tlp_pci_algor_21142_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr)
1512 1.52 thorpej {
1513 1.52 thorpej struct tulip_softc *sc = &psc->sc_tulip;
1514 1.52 thorpej
1515 1.52 thorpej /*
1516 1.52 thorpej * Algorithmics boards just have MII-on-SIO.
1517 1.52 thorpej *
1518 1.52 thorpej * XXX They also have AUI on the serial interface.
1519 1.52 thorpej * XXX Deal with this.
1520 1.52 thorpej */
1521 1.52 thorpej sc->sc_mediasw = &tlp_sio_mii_mediasw;
1522 1.58 chs }
1523 1.58 chs
1524 1.64 chs /*
1525 1.64 chs * Cogent EM1x0 (aka. Adaptec ANA-6910) media switch.
1526 1.64 chs */
1527 1.77 thorpej static void tlp_cogent_em1x0_tmsw_init(struct tulip_softc *);
1528 1.64 chs
1529 1.77 thorpej static const struct tulip_mediasw tlp_cogent_em1x0_mediasw = {
1530 1.64 chs tlp_cogent_em1x0_tmsw_init,
1531 1.64 chs tlp_21140_gpio_get,
1532 1.64 chs tlp_21140_gpio_set
1533 1.64 chs };
1534 1.64 chs
1535 1.77 thorpej static void
1536 1.101 tsutsui tlp_pci_adaptec_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr)
1537 1.58 chs {
1538 1.61 chs struct tulip_softc *sc = &psc->sc_tulip;
1539 1.64 chs uint8_t *srom = sc->sc_srom, id0;
1540 1.61 chs uint16_t id1, id2;
1541 1.61 chs
1542 1.64 chs if (sc->sc_mediasw == NULL) {
1543 1.64 chs id0 = srom[32];
1544 1.64 chs switch (id0) {
1545 1.64 chs case 0x12:
1546 1.64 chs strcpy(psc->sc_tulip.sc_name, "Cogent EM100TX");
1547 1.101 tsutsui sc->sc_mediasw = &tlp_cogent_em1x0_mediasw;
1548 1.64 chs break;
1549 1.64 chs
1550 1.122 chs case 0x13:
1551 1.122 chs strcpy(psc->sc_tulip.sc_name, "Cogent ???");
1552 1.129 msaitoh sc->sc_mediasw = &tlp_cogent_em1x0_mediasw;
1553 1.122 chs psc->sc_flags |= TULIP_PCI_SHAREDINTR |
1554 1.122 chs TULIP_PCI_SHAREDROM;
1555 1.122 chs break;
1556 1.122 chs
1557 1.64 chs case 0x15:
1558 1.64 chs strcpy(psc->sc_tulip.sc_name, "Cogent EM100FX");
1559 1.101 tsutsui sc->sc_mediasw = &tlp_cogent_em1x0_mediasw;
1560 1.64 chs break;
1561 1.64 chs
1562 1.64 chs #if 0
1563 1.64 chs case XXX:
1564 1.64 chs strcpy(psc->sc_tulip.sc_name, "Cogent EM110TX");
1565 1.101 tsutsui sc->sc_mediasw = &tlp_cogent_em1x0_mediasw;
1566 1.64 chs break;
1567 1.64 chs #endif
1568 1.64 chs
1569 1.64 chs default:
1570 1.64 chs printf("%s: unknown Cogent board ID 0x%02x\n",
1571 1.107 cegger device_xname(sc->sc_dev), id0);
1572 1.64 chs }
1573 1.64 chs return;
1574 1.64 chs }
1575 1.64 chs
1576 1.61 chs id1 = TULIP_ROM_GETW(srom, 0);
1577 1.61 chs id2 = TULIP_ROM_GETW(srom, 2);
1578 1.61 chs if (id1 != 0x1109) {
1579 1.61 chs goto unknown;
1580 1.61 chs }
1581 1.61 chs
1582 1.61 chs switch (id2) {
1583 1.61 chs case 0x1900:
1584 1.61 chs strcpy(psc->sc_tulip.sc_name, "Adaptec ANA-6911");
1585 1.61 chs break;
1586 1.61 chs
1587 1.61 chs case 0x2400:
1588 1.61 chs strcpy(psc->sc_tulip.sc_name, "Adaptec ANA-6944A");
1589 1.126 msaitoh psc->sc_flags |= TULIP_PCI_SHAREDINTR | TULIP_PCI_SHAREDROM;
1590 1.61 chs break;
1591 1.58 chs
1592 1.61 chs case 0x2b00:
1593 1.61 chs strcpy(psc->sc_tulip.sc_name, "Adaptec ANA-6911A");
1594 1.61 chs break;
1595 1.61 chs
1596 1.61 chs case 0x3000:
1597 1.61 chs strcpy(psc->sc_tulip.sc_name, "Adaptec ANA-6922");
1598 1.126 msaitoh psc->sc_flags |= TULIP_PCI_SHAREDINTR | TULIP_PCI_SHAREDROM;
1599 1.61 chs break;
1600 1.61 chs
1601 1.61 chs default:
1602 1.101 tsutsui unknown:
1603 1.61 chs printf("%s: unknown Adaptec/Cogent board ID 0x%04x/0x%04x\n",
1604 1.107 cegger device_xname(sc->sc_dev), id1, id2);
1605 1.61 chs }
1606 1.64 chs }
1607 1.64 chs
1608 1.77 thorpej static void
1609 1.77 thorpej tlp_cogent_em1x0_tmsw_init(struct tulip_softc *sc)
1610 1.64 chs {
1611 1.64 chs struct tulip_21x4x_media *tm;
1612 1.126 msaitoh struct mii_data *mii = &sc->sc_mii;
1613 1.64 chs const char *sep = "";
1614 1.64 chs
1615 1.64 chs sc->sc_gp_dir = GPP_COGENT_EM1x0_PINS;
1616 1.64 chs sc->sc_opmode = OPMODE_MBO | OPMODE_PS;
1617 1.64 chs TULIP_WRITE(sc, CSR_OPMODE, sc->sc_opmode);
1618 1.64 chs
1619 1.126 msaitoh ifmedia_init(&mii->mii_media, 0, tlp_mediachange, tlp_mediastatus);
1620 1.115 jmcneill aprint_normal_dev(sc->sc_dev, "");
1621 1.64 chs
1622 1.64 chs #define ADD(m, c) \
1623 1.131 thorpej tm = kmem_zalloc(sizeof(*tm), KM_SLEEP); \
1624 1.64 chs tm->tm_opmode = (c); \
1625 1.64 chs tm->tm_gpdata = GPP_COGENT_EM1x0_INIT; \
1626 1.126 msaitoh ifmedia_add(&mii->mii_media, (m), 0, tm)
1627 1.115 jmcneill #define PRINT(str) aprint_normal("%s%s", sep, str); sep = ", "
1628 1.64 chs
1629 1.64 chs if (sc->sc_srom[32] == 0x15) {
1630 1.64 chs ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_FX, 0, 0),
1631 1.64 chs OPMODE_PS | OPMODE_PCS);
1632 1.64 chs PRINT("100baseFX");
1633 1.64 chs
1634 1.64 chs ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_FX, IFM_FDX, 0),
1635 1.64 chs OPMODE_PS | OPMODE_PCS | OPMODE_FD);
1636 1.64 chs PRINT("100baseFX-FDX");
1637 1.115 jmcneill aprint_normal("\n");
1638 1.64 chs
1639 1.126 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_100_FX);
1640 1.64 chs } else {
1641 1.64 chs ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, 0, 0),
1642 1.64 chs OPMODE_PS | OPMODE_PCS | OPMODE_SCR);
1643 1.64 chs PRINT("100baseTX");
1644 1.64 chs
1645 1.64 chs ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_FX, IFM_FDX, 0),
1646 1.64 chs OPMODE_PS | OPMODE_PCS | OPMODE_SCR | OPMODE_FD);
1647 1.64 chs PRINT("100baseTX-FDX");
1648 1.115 jmcneill aprint_normal("\n");
1649 1.64 chs
1650 1.126 msaitoh ifmedia_set(&mii->mii_media, IFM_ETHER | IFM_100_TX);
1651 1.64 chs }
1652 1.64 chs
1653 1.64 chs #undef ADD
1654 1.64 chs #undef PRINT
1655 1.63 thorpej }
1656 1.63 thorpej
1657 1.77 thorpej static void tlp_pci_netwinder_21142_reset(struct tulip_softc *);
1658 1.63 thorpej
1659 1.77 thorpej static void
1660 1.77 thorpej tlp_pci_netwinder_21142_quirks(struct tulip_pci_softc *psc,
1661 1.101 tsutsui const uint8_t *enaddr)
1662 1.63 thorpej {
1663 1.63 thorpej struct tulip_softc *sc = &psc->sc_tulip;
1664 1.63 thorpej
1665 1.63 thorpej /*
1666 1.120 jakllsch * Netwinders just use MII-on-SIO.
1667 1.63 thorpej */
1668 1.63 thorpej sc->sc_mediasw = &tlp_sio_mii_mediasw;
1669 1.63 thorpej sc->sc_reset = tlp_pci_netwinder_21142_reset;
1670 1.63 thorpej }
1671 1.63 thorpej
1672 1.63 thorpej void
1673 1.77 thorpej tlp_pci_netwinder_21142_reset(struct tulip_softc *sc)
1674 1.63 thorpej {
1675 1.63 thorpej
1676 1.63 thorpej /*
1677 1.63 thorpej * Reset the PHY.
1678 1.63 thorpej */
1679 1.63 thorpej TULIP_WRITE(sc, CSR_SIAGEN, 0x0821 << 16);
1680 1.63 thorpej delay(10);
1681 1.63 thorpej TULIP_WRITE(sc, CSR_SIAGEN, 0x0000 << 16);
1682 1.63 thorpej delay(10);
1683 1.63 thorpej TULIP_WRITE(sc, CSR_SIAGEN, 0x0001 << 16);
1684 1.63 thorpej delay(10);
1685 1.1 thorpej }
1686 1.96 rumble
1687 1.96 rumble static void tlp_pci_phobos_21142_reset(struct tulip_softc *);
1688 1.96 rumble
1689 1.96 rumble static void
1690 1.101 tsutsui tlp_pci_phobos_21142_quirks(struct tulip_pci_softc *psc, const uint8_t *enaddr)
1691 1.96 rumble {
1692 1.96 rumble struct tulip_softc *sc = &psc->sc_tulip;
1693 1.96 rumble
1694 1.96 rumble /*
1695 1.120 jakllsch * Phobos boards just use MII-on-SIO.
1696 1.96 rumble */
1697 1.96 rumble sc->sc_mediasw = &tlp_sio_mii_mediasw;
1698 1.96 rumble sc->sc_reset = tlp_pci_phobos_21142_reset;
1699 1.96 rumble
1700 1.96 rumble /*
1701 1.96 rumble * These boards appear solely on sgimips machines behind a special
1702 1.96 rumble * GIO<->PCI ASIC and require the DBO and BLE bits to be set in CSR0.
1703 1.96 rumble */
1704 1.96 rumble sc->sc_flags |= (TULIPF_BLE | TULIPF_DBO);
1705 1.96 rumble }
1706 1.96 rumble
1707 1.96 rumble static void
1708 1.96 rumble tlp_pci_phobos_21142_reset(struct tulip_softc *sc)
1709 1.96 rumble {
1710 1.96 rumble /*
1711 1.96 rumble * Reset PHY.
1712 1.96 rumble */
1713 1.96 rumble TULIP_WRITE(sc, CSR_SIAGEN, (0x880f << 16));
1714 1.96 rumble delay(10);
1715 1.96 rumble TULIP_WRITE(sc, CSR_SIAGEN, (0x800f << 16));
1716 1.96 rumble delay(10);
1717 1.96 rumble }
1718