if_re_cardbus.c revision 1.26 1 1.26 jakllsch /* $NetBSD: if_re_cardbus.c,v 1.26 2010/07/27 21:02:00 jakllsch Exp $ */
2 1.1 jonathan
3 1.1 jonathan /*
4 1.1 jonathan * Copyright (c) 2004 Jonathan Stone
5 1.1 jonathan * All rights reserved.
6 1.1 jonathan *
7 1.1 jonathan * Redistribution and use in source and binary forms, with or without
8 1.1 jonathan * modification, are permitted provided that the following conditions
9 1.1 jonathan * are met:
10 1.1 jonathan * 1. Redistributions of source code must retain the above copyright
11 1.1 jonathan * notice, this list of conditions and the following disclaimer.
12 1.1 jonathan * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 jonathan * notice, this list of conditions and the following disclaimer in the
14 1.1 jonathan * documentation and/or other materials provided with the distribution.
15 1.1 jonathan * 3. The name of the author may not be used to endorse or promote products
16 1.1 jonathan * derived from this software without specific prior written permission.
17 1.1 jonathan *
18 1.1 jonathan * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 1.1 jonathan * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 1.1 jonathan * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 1.1 jonathan * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 1.1 jonathan * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 1.1 jonathan * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 1.1 jonathan * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 1.1 jonathan * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 1.1 jonathan * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 1.1 jonathan * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 1.1 jonathan */
29 1.1 jonathan
30 1.1 jonathan /*
31 1.1 jonathan * if_re_cardbus.c:
32 1.1 jonathan * Cardbus specific routines for Realtek 8169 ethernet adapter.
33 1.1 jonathan * Tested for :
34 1.1 jonathan * Netgear GA-511 (8169S)
35 1.3 kanaoka * Buffalo LPC-CB-CLGT
36 1.1 jonathan */
37 1.1 jonathan
38 1.1 jonathan #include <sys/cdefs.h>
39 1.26 jakllsch __KERNEL_RCSID(0, "$NetBSD: if_re_cardbus.c,v 1.26 2010/07/27 21:02:00 jakllsch Exp $");
40 1.1 jonathan
41 1.1 jonathan #include <sys/param.h>
42 1.1 jonathan #include <sys/systm.h>
43 1.1 jonathan #include <sys/device.h>
44 1.1 jonathan
45 1.1 jonathan #include <net/if.h>
46 1.1 jonathan #include <net/if_ether.h>
47 1.1 jonathan #include <net/if_media.h>
48 1.1 jonathan
49 1.14 ad #include <sys/bus.h>
50 1.1 jonathan
51 1.1 jonathan #include <dev/pci/pcireg.h>
52 1.1 jonathan #include <dev/pci/pcivar.h>
53 1.1 jonathan #include <dev/pci/pcidevs.h>
54 1.1 jonathan
55 1.1 jonathan #include <dev/cardbus/cardbusvar.h>
56 1.1 jonathan
57 1.1 jonathan #include <dev/mii/mii.h>
58 1.1 jonathan #include <dev/mii/miivar.h>
59 1.1 jonathan
60 1.1 jonathan /*
61 1.1 jonathan * Default to using PIO access for this driver. On SMP systems,
62 1.1 jonathan * there appear to be problems with memory mapped mode: it looks like
63 1.1 jonathan * doing too many memory mapped access back to back in rapid succession
64 1.1 jonathan * can hang the bus. I'm inclined to blame this on crummy design/construction
65 1.1 jonathan * on the part of Realtek. Memory mapped mode does appear to work on
66 1.1 jonathan * uniprocessor systems though.
67 1.1 jonathan */
68 1.5 perry #define RTK_USEIOSPACE
69 1.1 jonathan
70 1.1 jonathan #include <dev/ic/rtl81x9reg.h>
71 1.1 jonathan #include <dev/ic/rtl81x9var.h>
72 1.1 jonathan
73 1.1 jonathan #include <dev/ic/rtl8169var.h>
74 1.1 jonathan
75 1.1 jonathan /*
76 1.1 jonathan * Various supported device vendors/types and their names.
77 1.1 jonathan */
78 1.1 jonathan static const struct rtk_type re_cardbus_devs[] = {
79 1.1 jonathan { PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169,
80 1.1 jonathan RTK_8169, "Realtek 10/100/1000baseT" },
81 1.1 jonathan { 0, 0, 0, NULL }
82 1.1 jonathan };
83 1.1 jonathan
84 1.17 tsutsui static int re_cardbus_match(device_t, cfdata_t, void *);
85 1.17 tsutsui static void re_cardbus_attach(device_t, device_t, void *);
86 1.17 tsutsui static int re_cardbus_detach(device_t, int);
87 1.1 jonathan
88 1.1 jonathan struct re_cardbus_softc {
89 1.5 perry struct rtk_softc sc_rtk; /* real rtk softc */
90 1.1 jonathan
91 1.1 jonathan /* CardBus-specific goo. */
92 1.1 jonathan void *sc_ih;
93 1.1 jonathan cardbus_devfunc_t sc_ct;
94 1.21 dyoung pcitag_t sc_tag;
95 1.23 dyoung pcireg_t sc_csr;
96 1.1 jonathan int sc_bar_reg;
97 1.1 jonathan pcireg_t sc_bar_val;
98 1.18 drochner cardbus_intr_line_t sc_intrline;
99 1.1 jonathan };
100 1.1 jonathan
101 1.17 tsutsui CFATTACH_DECL_NEW(re_cardbus, sizeof(struct re_cardbus_softc),
102 1.1 jonathan re_cardbus_match, re_cardbus_attach, re_cardbus_detach, re_activate);
103 1.1 jonathan
104 1.4 kanaoka const struct rtk_type *re_cardbus_lookup(const struct cardbus_attach_args *);
105 1.1 jonathan
106 1.4 kanaoka void re_cardbus_setup(struct re_cardbus_softc *);
107 1.1 jonathan
108 1.4 kanaoka int re_cardbus_enable(struct rtk_softc *);
109 1.4 kanaoka void re_cardbus_disable(struct rtk_softc *);
110 1.1 jonathan
111 1.1 jonathan const struct rtk_type *
112 1.4 kanaoka re_cardbus_lookup(const struct cardbus_attach_args *ca)
113 1.1 jonathan {
114 1.1 jonathan const struct rtk_type *t;
115 1.1 jonathan
116 1.1 jonathan for (t = re_cardbus_devs; t->rtk_name != NULL; t++) {
117 1.24 dyoung if (PCI_VENDOR(ca->ca_id) == t->rtk_vid &&
118 1.24 dyoung PCI_PRODUCT(ca->ca_id) == t->rtk_did) {
119 1.4 kanaoka return t;
120 1.1 jonathan }
121 1.1 jonathan }
122 1.4 kanaoka return NULL;
123 1.1 jonathan }
124 1.1 jonathan
125 1.1 jonathan int
126 1.17 tsutsui re_cardbus_match(device_t parent, cfdata_t cf, void *aux)
127 1.1 jonathan {
128 1.1 jonathan struct cardbus_attach_args *ca = aux;
129 1.1 jonathan
130 1.1 jonathan if (re_cardbus_lookup(ca) != NULL)
131 1.4 kanaoka return 1;
132 1.1 jonathan
133 1.4 kanaoka return 0;
134 1.1 jonathan }
135 1.1 jonathan
136 1.1 jonathan
137 1.1 jonathan void
138 1.17 tsutsui re_cardbus_attach(device_t parent, device_t self, void *aux)
139 1.1 jonathan {
140 1.7 thorpej struct re_cardbus_softc *csc = device_private(self);
141 1.1 jonathan struct rtk_softc *sc = &csc->sc_rtk;
142 1.1 jonathan struct cardbus_attach_args *ca = aux;
143 1.1 jonathan cardbus_devfunc_t ct = ca->ca_ct;
144 1.1 jonathan const struct rtk_type *t;
145 1.1 jonathan bus_addr_t adr;
146 1.1 jonathan
147 1.17 tsutsui sc->sc_dev = self;
148 1.1 jonathan sc->sc_dmat = ca->ca_dmat;
149 1.1 jonathan csc->sc_ct = ct;
150 1.1 jonathan csc->sc_tag = ca->ca_tag;
151 1.1 jonathan csc->sc_intrline = ca->ca_intrline;
152 1.1 jonathan
153 1.5 perry t = re_cardbus_lookup(ca);
154 1.5 perry if (t == NULL) {
155 1.5 perry aprint_error("\n");
156 1.17 tsutsui panic("%s: impossible", __func__);
157 1.5 perry }
158 1.5 perry aprint_normal(": %s\n", t->rtk_name);
159 1.5 perry
160 1.1 jonathan /*
161 1.1 jonathan * Power management hooks.
162 1.1 jonathan */
163 1.1 jonathan sc->sc_enable = re_cardbus_enable;
164 1.1 jonathan sc->sc_disable = re_cardbus_disable;
165 1.1 jonathan
166 1.1 jonathan /*
167 1.1 jonathan * Map control/status registers.
168 1.1 jonathan */
169 1.24 dyoung csc->sc_csr = PCI_COMMAND_MASTER_ENABLE;
170 1.1 jonathan #ifdef RTK_USEIOSPACE
171 1.24 dyoung if (Cardbus_mapreg_map(ct, RTK_PCI_LOIO, PCI_MAPREG_TYPE_IO, 0,
172 1.26 jakllsch &sc->rtk_btag, &sc->rtk_bhandle, &adr, &sc->rtk_bsize) == 0) {
173 1.24 dyoung csc->sc_csr |= PCI_COMMAND_IO_ENABLE;
174 1.1 jonathan csc->sc_bar_reg = RTK_PCI_LOIO;
175 1.24 dyoung csc->sc_bar_val = adr | PCI_MAPREG_TYPE_IO;
176 1.1 jonathan }
177 1.1 jonathan #else
178 1.24 dyoung if (Cardbus_mapreg_map(ct, RTK_PCI_LOMEM, PCI_MAPREG_TYPE_MEM, 0,
179 1.26 jakllsch &sc->rtk_btag, &sc->rtk_bhandle, &adr, &sc->rtk_bsize) == 0) {
180 1.24 dyoung csc->sc_csr |= PCI_COMMAND_MEM_ENABLE;
181 1.1 jonathan csc->sc_bar_reg = RTK_PCI_LOMEM;
182 1.24 dyoung csc->sc_bar_val = adr | PCI_MAPREG_TYPE_MEM;
183 1.1 jonathan }
184 1.1 jonathan #endif
185 1.1 jonathan else {
186 1.17 tsutsui aprint_error_dev(self, "unable to map deviceregisters\n");
187 1.1 jonathan return;
188 1.1 jonathan }
189 1.1 jonathan /*
190 1.1 jonathan * Handle power management nonsense and initialize the
191 1.1 jonathan * configuration registers.
192 1.1 jonathan */
193 1.1 jonathan re_cardbus_setup(csc);
194 1.1 jonathan
195 1.1 jonathan sc->sc_dmat = ca->ca_dmat;
196 1.1 jonathan re_attach(sc);
197 1.1 jonathan
198 1.1 jonathan /*
199 1.1 jonathan * Power down the socket.
200 1.1 jonathan */
201 1.1 jonathan Cardbus_function_disable(csc->sc_ct);
202 1.1 jonathan }
203 1.1 jonathan
204 1.5 perry int
205 1.17 tsutsui re_cardbus_detach(device_t self, int flags)
206 1.1 jonathan {
207 1.7 thorpej struct re_cardbus_softc *csc = device_private(self);
208 1.1 jonathan struct rtk_softc *sc = &csc->sc_rtk;
209 1.1 jonathan struct cardbus_devfunc *ct = csc->sc_ct;
210 1.17 tsutsui int rv;
211 1.1 jonathan
212 1.1 jonathan #ifdef DIAGNOSTIC
213 1.1 jonathan if (ct == NULL)
214 1.1 jonathan panic("%s: cardbus softc, cardbus_devfunc NULL",
215 1.17 tsutsui device_xname(self));
216 1.1 jonathan #endif
217 1.15 jmcneill
218 1.1 jonathan rv = re_detach(sc);
219 1.1 jonathan if (rv)
220 1.4 kanaoka return rv;
221 1.15 jmcneill
222 1.1 jonathan /*
223 1.1 jonathan * Unhook the interrupt handler.
224 1.1 jonathan */
225 1.1 jonathan if (csc->sc_ih != NULL)
226 1.25 dyoung Cardbus_intr_disestablish(ct, csc->sc_ih);
227 1.5 perry
228 1.1 jonathan /*
229 1.1 jonathan * Release bus space and close window.
230 1.1 jonathan */
231 1.1 jonathan if (csc->sc_bar_reg != 0)
232 1.1 jonathan Cardbus_mapreg_unmap(ct, csc->sc_bar_reg,
233 1.26 jakllsch sc->rtk_btag, sc->rtk_bhandle, sc->rtk_bsize);
234 1.1 jonathan
235 1.4 kanaoka return 0;
236 1.1 jonathan }
237 1.1 jonathan
238 1.5 perry void
239 1.1 jonathan re_cardbus_setup(struct re_cardbus_softc *csc)
240 1.1 jonathan {
241 1.1 jonathan struct rtk_softc *sc = &csc->sc_rtk;
242 1.1 jonathan cardbus_devfunc_t ct = csc->sc_ct;
243 1.1 jonathan cardbus_chipset_tag_t cc = ct->ct_cc;
244 1.1 jonathan cardbus_function_tag_t cf = ct->ct_cf;
245 1.17 tsutsui pcireg_t reg, command;
246 1.17 tsutsui int pmreg;
247 1.1 jonathan
248 1.1 jonathan /*
249 1.1 jonathan * Handle power management nonsense.
250 1.1 jonathan */
251 1.1 jonathan if (cardbus_get_capability(cc, cf, csc->sc_tag,
252 1.1 jonathan PCI_CAP_PWRMGMT, &pmreg, 0)) {
253 1.24 dyoung command = Cardbus_conf_read(ct, csc->sc_tag,
254 1.1 jonathan pmreg + PCI_PMCSR);
255 1.10 dogcow if (command & PCI_PMCSR_STATE_MASK) {
256 1.17 tsutsui pcireg_t iobase, membase, irq;
257 1.1 jonathan
258 1.1 jonathan /* Save important PCI config data. */
259 1.24 dyoung iobase = Cardbus_conf_read(ct, csc->sc_tag,
260 1.1 jonathan RTK_PCI_LOIO);
261 1.24 dyoung membase = Cardbus_conf_read(ct, csc->sc_tag,
262 1.1 jonathan RTK_PCI_LOMEM);
263 1.24 dyoung irq = Cardbus_conf_read(ct, csc->sc_tag,
264 1.24 dyoung PCI_INTERRUPT_REG);
265 1.1 jonathan
266 1.1 jonathan /* Reset the power state. */
267 1.17 tsutsui aprint_normal_dev(sc->sc_dev,
268 1.17 tsutsui "chip is in D%d power mode -- setting to D0\n",
269 1.10 dogcow command & PCI_PMCSR_STATE_MASK);
270 1.10 dogcow command &= ~PCI_PMCSR_STATE_MASK;
271 1.24 dyoung Cardbus_conf_write(ct, csc->sc_tag,
272 1.1 jonathan pmreg + PCI_PMCSR, command);
273 1.1 jonathan
274 1.1 jonathan /* Restore PCI config data. */
275 1.24 dyoung Cardbus_conf_write(ct, csc->sc_tag,
276 1.1 jonathan RTK_PCI_LOIO, iobase);
277 1.24 dyoung Cardbus_conf_write(ct, csc->sc_tag,
278 1.1 jonathan RTK_PCI_LOMEM, membase);
279 1.24 dyoung Cardbus_conf_write(ct, csc->sc_tag,
280 1.24 dyoung PCI_INTERRUPT_REG, irq);
281 1.1 jonathan }
282 1.1 jonathan }
283 1.1 jonathan
284 1.1 jonathan /* Program the BAR */
285 1.24 dyoung Cardbus_conf_write(ct, csc->sc_tag, csc->sc_bar_reg, csc->sc_bar_val);
286 1.1 jonathan
287 1.1 jonathan /* Enable the appropriate bits in the CARDBUS CSR. */
288 1.24 dyoung reg = Cardbus_conf_read(ct, csc->sc_tag, PCI_COMMAND_STATUS_REG);
289 1.24 dyoung reg &= ~(PCI_COMMAND_IO_ENABLE|PCI_COMMAND_MEM_ENABLE);
290 1.1 jonathan reg |= csc->sc_csr;
291 1.24 dyoung Cardbus_conf_write(ct, csc->sc_tag, PCI_COMMAND_STATUS_REG, reg);
292 1.1 jonathan
293 1.1 jonathan /*
294 1.1 jonathan * Make sure the latency timer is set to some reasonable
295 1.1 jonathan * value.
296 1.1 jonathan */
297 1.24 dyoung reg = Cardbus_conf_read(ct, csc->sc_tag, PCI_BHLC_REG);
298 1.24 dyoung if (PCI_LATTIMER(reg) < 0x40) {
299 1.24 dyoung reg &= ~(PCI_LATTIMER_MASK << PCI_LATTIMER_SHIFT);
300 1.24 dyoung reg |= (0x40 << PCI_LATTIMER_SHIFT);
301 1.24 dyoung Cardbus_conf_write(ct, csc->sc_tag, PCI_BHLC_REG, reg);
302 1.1 jonathan }
303 1.1 jonathan }
304 1.1 jonathan
305 1.5 perry int
306 1.1 jonathan re_cardbus_enable(struct rtk_softc *sc)
307 1.1 jonathan {
308 1.17 tsutsui struct re_cardbus_softc *csc = (struct re_cardbus_softc *)sc;
309 1.1 jonathan cardbus_devfunc_t ct = csc->sc_ct;
310 1.1 jonathan
311 1.1 jonathan /*
312 1.1 jonathan * Power on the socket.
313 1.1 jonathan */
314 1.1 jonathan Cardbus_function_enable(ct);
315 1.1 jonathan
316 1.1 jonathan /*
317 1.1 jonathan * Set up the PCI configuration registers.
318 1.1 jonathan */
319 1.1 jonathan re_cardbus_setup(csc);
320 1.1 jonathan
321 1.1 jonathan /*
322 1.1 jonathan * Map and establish the interrupt.
323 1.1 jonathan */
324 1.25 dyoung csc->sc_ih = Cardbus_intr_establish(ct, csc->sc_intrline,
325 1.1 jonathan IPL_NET, re_intr, sc);
326 1.1 jonathan if (csc->sc_ih == NULL) {
327 1.17 tsutsui aprint_error_dev(sc->sc_dev,
328 1.18 drochner "unable to establish interrupt\n");
329 1.1 jonathan Cardbus_function_disable(csc->sc_ct);
330 1.4 kanaoka return 1;
331 1.1 jonathan }
332 1.4 kanaoka return 0;
333 1.1 jonathan }
334 1.1 jonathan
335 1.5 perry void
336 1.1 jonathan re_cardbus_disable(struct rtk_softc *sc)
337 1.1 jonathan {
338 1.17 tsutsui struct re_cardbus_softc *csc = (struct re_cardbus_softc *)sc;
339 1.1 jonathan cardbus_devfunc_t ct = csc->sc_ct;
340 1.1 jonathan
341 1.1 jonathan /* Unhook the interrupt handler. */
342 1.25 dyoung Cardbus_intr_disestablish(ct, csc->sc_ih);
343 1.1 jonathan csc->sc_ih = NULL;
344 1.1 jonathan
345 1.1 jonathan /* Power down the socket. */
346 1.1 jonathan Cardbus_function_disable(ct);
347 1.1 jonathan }
348