if_ex_cardbus.c revision 1.45 1 1.45 drochner /* $NetBSD: if_ex_cardbus.c,v 1.45 2008/06/24 19:44:52 drochner Exp $ */
2 1.1 haya
3 1.1 haya /*
4 1.1 haya * CardBus specific routines for 3Com 3C575-family CardBus ethernet adapter
5 1.1 haya *
6 1.1 haya * Copyright (c) 1998 and 1999
7 1.1 haya * HAYAKAWA Koichi. All rights reserved.
8 1.1 haya *
9 1.1 haya * Redistribution and use in source and binary forms, with or without
10 1.1 haya * modification, are permitted provided that the following conditions
11 1.1 haya * are met:
12 1.1 haya * 1. Redistributions of source code must retain the above copyright
13 1.1 haya * notice, this list of conditions and the following disclaimer.
14 1.1 haya * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 haya * notice, this list of conditions and the following disclaimer in the
16 1.1 haya * documentation and/or other materials provided with the distribution.
17 1.1 haya * 3. All advertising materials mentioning features or use of this software
18 1.1 haya * must display the following acknowledgement:
19 1.1 haya * This product includes software developed by the author.
20 1.1 haya * 4. Neither the name of the author nor the names of any co-contributors
21 1.1 haya * may be used to endorse or promote products derived from this software
22 1.1 haya * without specific prior written permission.
23 1.1 haya *
24 1.1 haya * THIS SOFTWARE IS PROVIDED BY HAYAKAWA KOICHI ``AS IS'' AND
25 1.1 haya * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 1.1 haya * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 1.1 haya * ARE DISCLAIMED. IN NO EVENT SHALL TAKESHI OHASHI OR CONTRIBUTORS BE LIABLE
28 1.1 haya * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 1.1 haya * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 1.1 haya * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 1.1 haya * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 1.1 haya * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 1.1 haya * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 1.1 haya * SUCH DAMAGE.
35 1.1 haya *
36 1.1 haya *
37 1.1 haya */
38 1.23 lukem
39 1.23 lukem #include <sys/cdefs.h>
40 1.45 drochner __KERNEL_RCSID(0, "$NetBSD: if_ex_cardbus.c,v 1.45 2008/06/24 19:44:52 drochner Exp $");
41 1.1 haya
42 1.22 wiz /* #define EX_DEBUG 4 */ /* define to report information for debugging */
43 1.1 haya
44 1.1 haya #include <sys/param.h>
45 1.1 haya #include <sys/systm.h>
46 1.9 thorpej #include <sys/mbuf.h>
47 1.9 thorpej #include <sys/socket.h>
48 1.1 haya #include <sys/ioctl.h>
49 1.1 haya #include <sys/errno.h>
50 1.1 haya #include <sys/syslog.h>
51 1.35 perry #include <sys/select.h>
52 1.9 thorpej #include <sys/device.h>
53 1.1 haya
54 1.1 haya #include <net/if.h>
55 1.1 haya #include <net/if_dl.h>
56 1.9 thorpej #include <net/if_ether.h>
57 1.1 haya #include <net/if_media.h>
58 1.1 haya
59 1.40 ad #include <sys/cpu.h>
60 1.40 ad #include <sys/bus.h>
61 1.5 haya
62 1.1 haya #include <dev/cardbus/cardbusvar.h>
63 1.33 mycroft #include <dev/pci/pcidevs.h>
64 1.1 haya
65 1.1 haya #include <dev/mii/miivar.h>
66 1.1 haya
67 1.1 haya #include <dev/ic/elink3var.h>
68 1.1 haya #include <dev/ic/elink3reg.h>
69 1.1 haya #include <dev/ic/elinkxlreg.h>
70 1.1 haya #include <dev/ic/elinkxlvar.h>
71 1.1 haya
72 1.1 haya #if defined DEBUG && !defined EX_DEBUG
73 1.1 haya #define EX_DEBUG
74 1.1 haya #endif
75 1.1 haya
76 1.1 haya #if defined EX_DEBUG
77 1.1 haya #define DPRINTF(a) printf a
78 1.1 haya #else
79 1.1 haya #define DPRINTF(a)
80 1.1 haya #endif
81 1.1 haya
82 1.1 haya #define CARDBUS_3C575BTX_FUNCSTAT_PCIREG CARDBUS_BASE2_REG /* means 0x18 */
83 1.1 haya #define EX_CB_INTR 4 /* intr acknowledge reg. CardBus only */
84 1.1 haya #define EX_CB_INTR_ACK 0x8000 /* intr acknowledge bit */
85 1.1 haya
86 1.43 spz int ex_cardbus_match(device_t, cfdata_t, void *);
87 1.44 cegger void ex_cardbus_attach(device_t, device_t, void *);
88 1.43 spz int ex_cardbus_detach(device_t, int);
89 1.34 perry void ex_cardbus_intr_ack(struct ex_softc *);
90 1.34 perry
91 1.34 perry int ex_cardbus_enable(struct ex_softc *);
92 1.34 perry void ex_cardbus_disable(struct ex_softc *);
93 1.1 haya
94 1.1 haya struct ex_cardbus_softc {
95 1.9 thorpej struct ex_softc sc_softc;
96 1.1 haya
97 1.9 thorpej cardbus_devfunc_t sc_ct;
98 1.45 drochner cardbus_intr_line_t sc_intrline;
99 1.44 cegger uint8_t sc_cardbus_flags;
100 1.1 haya #define EX_REATTACH 0x01
101 1.1 haya #define EX_ABSENT 0x02
102 1.44 cegger uint8_t sc_cardtype;
103 1.16 haya #define EX_CB_BOOMERANG 1
104 1.16 haya #define EX_CB_CYCLONE 2
105 1.1 haya
106 1.9 thorpej /* CardBus function status space. 575B requests it. */
107 1.9 thorpej bus_space_tag_t sc_funct;
108 1.9 thorpej bus_space_handle_t sc_funch;
109 1.11 augustss bus_size_t sc_funcsize;
110 1.11 augustss
111 1.11 augustss bus_size_t sc_mapsize; /* the size of mapped bus space region */
112 1.35 perry
113 1.19 thorpej cardbustag_t sc_tag;
114 1.19 thorpej
115 1.19 thorpej int sc_csr; /* CSR bits */
116 1.19 thorpej int sc_bar_reg; /* which BAR to use */
117 1.19 thorpej pcireg_t sc_bar_val; /* value of the BAR */
118 1.19 thorpej int sc_bar_reg1; /* which BAR to use */
119 1.19 thorpej pcireg_t sc_bar_val1; /* value of the BAR */
120 1.35 perry
121 1.1 haya };
122 1.1 haya
123 1.43 spz CFATTACH_DECL_NEW(ex_cardbus, sizeof(struct ex_cardbus_softc),
124 1.27 thorpej ex_cardbus_match, ex_cardbus_attach, ex_cardbus_detach, ex_activate);
125 1.9 thorpej
126 1.9 thorpej const struct ex_cardbus_product {
127 1.44 cegger uint32_t ecp_prodid; /* CardBus product ID */
128 1.9 thorpej int ecp_flags; /* initial softc flags */
129 1.9 thorpej pcireg_t ecp_csr; /* PCI CSR flags */
130 1.9 thorpej int ecp_cardtype; /* card type */
131 1.9 thorpej const char *ecp_name; /* device name */
132 1.9 thorpej } ex_cardbus_products[] = {
133 1.33 mycroft { PCI_PRODUCT_3COM_3C575TX,
134 1.18 fvdl EX_CONF_MII | EX_CONF_EEPROM_OFF | EX_CONF_EEPROM_8BIT,
135 1.9 thorpej CARDBUS_COMMAND_IO_ENABLE | CARDBUS_COMMAND_MASTER_ENABLE,
136 1.16 haya EX_CB_BOOMERANG,
137 1.9 thorpej "3c575-TX Ethernet" },
138 1.9 thorpej
139 1.33 mycroft { PCI_PRODUCT_3COM_3C575BTX,
140 1.18 fvdl EX_CONF_90XB|EX_CONF_MII|EX_CONF_INV_LED_POLARITY |
141 1.18 fvdl EX_CONF_EEPROM_OFF | EX_CONF_EEPROM_8BIT,
142 1.9 thorpej CARDBUS_COMMAND_IO_ENABLE | CARDBUS_COMMAND_MEM_ENABLE |
143 1.9 thorpej CARDBUS_COMMAND_MASTER_ENABLE,
144 1.16 haya EX_CB_CYCLONE,
145 1.9 thorpej "3c575B-TX Ethernet" },
146 1.9 thorpej
147 1.33 mycroft { PCI_PRODUCT_3COM_3C575CTX,
148 1.18 fvdl EX_CONF_90XB | EX_CONF_PHY_POWER | EX_CONF_EEPROM_OFF |
149 1.18 fvdl EX_CONF_EEPROM_8BIT,
150 1.15 haya CARDBUS_COMMAND_IO_ENABLE | CARDBUS_COMMAND_MEM_ENABLE |
151 1.15 haya CARDBUS_COMMAND_MASTER_ENABLE,
152 1.16 haya EX_CB_CYCLONE,
153 1.15 haya "3c575CT Ethernet" },
154 1.15 haya
155 1.33 mycroft { PCI_PRODUCT_3COM_3C656_E,
156 1.31 mycroft EX_CONF_90XB | EX_CONF_PHY_POWER | EX_CONF_EEPROM_OFF |
157 1.32 mycroft EX_CONF_EEPROM_8BIT | EX_CONF_INV_LED_POLARITY,
158 1.31 mycroft CARDBUS_COMMAND_IO_ENABLE | CARDBUS_COMMAND_MEM_ENABLE |
159 1.31 mycroft CARDBUS_COMMAND_MASTER_ENABLE,
160 1.31 mycroft EX_CB_CYCLONE,
161 1.31 mycroft "3c656-TX Ethernet" },
162 1.31 mycroft
163 1.33 mycroft { PCI_PRODUCT_3COM_3C656B_E,
164 1.31 mycroft EX_CONF_90XB | EX_CONF_PHY_POWER | EX_CONF_EEPROM_OFF |
165 1.32 mycroft EX_CONF_EEPROM_8BIT | EX_CONF_INV_LED_POLARITY,
166 1.31 mycroft CARDBUS_COMMAND_IO_ENABLE | CARDBUS_COMMAND_MEM_ENABLE |
167 1.31 mycroft CARDBUS_COMMAND_MASTER_ENABLE,
168 1.31 mycroft EX_CB_CYCLONE,
169 1.31 mycroft "3c656B-TX Ethernet" },
170 1.31 mycroft
171 1.33 mycroft { PCI_PRODUCT_3COM_3C656C_E,
172 1.31 mycroft EX_CONF_90XB | EX_CONF_PHY_POWER | EX_CONF_EEPROM_OFF |
173 1.31 mycroft EX_CONF_EEPROM_8BIT,
174 1.31 mycroft CARDBUS_COMMAND_IO_ENABLE | CARDBUS_COMMAND_MEM_ENABLE |
175 1.31 mycroft CARDBUS_COMMAND_MASTER_ENABLE,
176 1.31 mycroft EX_CB_CYCLONE,
177 1.31 mycroft "3c656C-TX Ethernet" },
178 1.31 mycroft
179 1.9 thorpej { 0,
180 1.14 thorpej 0,
181 1.9 thorpej 0,
182 1.9 thorpej 0,
183 1.9 thorpej NULL },
184 1.1 haya };
185 1.1 haya
186 1.19 thorpej
187 1.34 perry void ex_cardbus_setup(struct ex_cardbus_softc *);
188 1.19 thorpej
189 1.9 thorpej const struct ex_cardbus_product *ex_cardbus_lookup
190 1.34 perry (const struct cardbus_attach_args *);
191 1.9 thorpej
192 1.9 thorpej const struct ex_cardbus_product *
193 1.44 cegger ex_cardbus_lookup(const struct cardbus_attach_args *ca)
194 1.9 thorpej {
195 1.9 thorpej const struct ex_cardbus_product *ecp;
196 1.9 thorpej
197 1.33 mycroft if (CARDBUS_VENDOR(ca->ca_id) != PCI_VENDOR_3COM)
198 1.9 thorpej return (NULL);
199 1.1 haya
200 1.9 thorpej for (ecp = ex_cardbus_products; ecp->ecp_name != NULL; ecp++)
201 1.9 thorpej if (CARDBUS_PRODUCT(ca->ca_id) == ecp->ecp_prodid)
202 1.9 thorpej return (ecp);
203 1.9 thorpej return (NULL);
204 1.9 thorpej }
205 1.1 haya
206 1.9 thorpej int
207 1.43 spz ex_cardbus_match(device_t parent, cfdata_t cf, void *aux)
208 1.1 haya {
209 1.9 thorpej struct cardbus_attach_args *ca = aux;
210 1.9 thorpej
211 1.9 thorpej if (ex_cardbus_lookup(ca) != NULL)
212 1.9 thorpej return (1);
213 1.1 haya
214 1.9 thorpej return (0);
215 1.1 haya }
216 1.1 haya
217 1.9 thorpej void
218 1.43 spz ex_cardbus_attach(device_t parent, device_t self, void *aux)
219 1.9 thorpej {
220 1.37 thorpej struct ex_cardbus_softc *csc = device_private(self);
221 1.17 haya struct ex_softc *sc = &csc->sc_softc;
222 1.9 thorpej struct cardbus_attach_args *ca = aux;
223 1.9 thorpej cardbus_devfunc_t ct = ca->ca_ct;
224 1.19 thorpej #if rbus
225 1.19 thorpej #else
226 1.9 thorpej cardbus_chipset_tag_t cc = ct->ct_cc;
227 1.19 thorpej #endif
228 1.9 thorpej const struct ex_cardbus_product *ecp;
229 1.19 thorpej bus_addr_t adr, adr1;
230 1.9 thorpej
231 1.43 spz sc->sc_dev = self;
232 1.43 spz
233 1.19 thorpej sc->ex_bustype = EX_BUS_CARDBUS;
234 1.19 thorpej sc->sc_dmat = ca->ca_dmat;
235 1.19 thorpej csc->sc_ct = ca->ca_ct;
236 1.19 thorpej csc->sc_intrline = ca->ca_intrline;
237 1.19 thorpej csc->sc_tag = ca->ca_tag;
238 1.9 thorpej
239 1.9 thorpej ecp = ex_cardbus_lookup(ca);
240 1.9 thorpej if (ecp == NULL) {
241 1.9 thorpej printf("\n");
242 1.9 thorpej panic("ex_cardbus_attach: impossible");
243 1.9 thorpej }
244 1.1 haya
245 1.43 spz aprint_normal(": 3Com %s\n", ecp->ecp_name);
246 1.1 haya
247 1.9 thorpej sc->ex_conf = ecp->ecp_flags;
248 1.19 thorpej csc->sc_cardtype = ecp->ecp_cardtype;
249 1.19 thorpej csc->sc_csr = ecp->ecp_csr;
250 1.1 haya
251 1.19 thorpej if (Cardbus_mapreg_map(ct, CARDBUS_BASE0_REG, CARDBUS_MAPREG_TYPE_IO, 0,
252 1.19 thorpej &sc->sc_iot, &sc->sc_ioh, &adr, &csc->sc_mapsize) == 0) {
253 1.1 haya #if rbus
254 1.1 haya #else
255 1.19 thorpej (*ct->ct_cf->cardbus_io_open)(cc, 0, adr, adr + csc->sc_mapsize);
256 1.1 haya #endif
257 1.19 thorpej csc->sc_bar_reg = CARDBUS_BASE0_REG;
258 1.19 thorpej csc->sc_bar_val = adr | CARDBUS_MAPREG_TYPE_IO;
259 1.1 haya
260 1.19 thorpej if (csc->sc_cardtype == EX_CB_CYCLONE) {
261 1.19 thorpej /* Map CardBus function status window. */
262 1.35 perry if (Cardbus_mapreg_map(ct,
263 1.19 thorpej CARDBUS_3C575BTX_FUNCSTAT_PCIREG,
264 1.19 thorpej CARDBUS_MAPREG_TYPE_MEM, 0,
265 1.19 thorpej &csc->sc_funct, &csc->sc_funch,
266 1.19 thorpej &adr1, &csc->sc_funcsize) == 0) {
267 1.19 thorpej
268 1.19 thorpej csc->sc_bar_reg1 =
269 1.19 thorpej CARDBUS_3C575BTX_FUNCSTAT_PCIREG;
270 1.19 thorpej csc->sc_bar_val1 =
271 1.19 thorpej adr1 | CARDBUS_MAPREG_TYPE_MEM;
272 1.19 thorpej
273 1.19 thorpej } else {
274 1.42 cegger aprint_error_dev(self, "unable to map function "
275 1.42 cegger "status window\n");
276 1.19 thorpej return;
277 1.19 thorpej }
278 1.9 thorpej
279 1.19 thorpej /* Setup interrupt acknowledge hook */
280 1.19 thorpej sc->intr_ack = ex_cardbus_intr_ack;
281 1.9 thorpej }
282 1.9 thorpej }
283 1.19 thorpej else {
284 1.43 spz aprint_naive(": can't map i/o space\n");
285 1.19 thorpej return;
286 1.9 thorpej }
287 1.1 haya
288 1.19 thorpej /* Power management hooks. */
289 1.19 thorpej sc->enable = ex_cardbus_enable;
290 1.19 thorpej sc->disable = ex_cardbus_disable;
291 1.1 haya
292 1.19 thorpej /*
293 1.19 thorpej * Handle power management nonsense and
294 1.20 kanaoka * initialize the configuration registers.
295 1.19 thorpej */
296 1.19 thorpej ex_cardbus_setup(csc);
297 1.1 haya
298 1.9 thorpej ex_config(sc);
299 1.9 thorpej
300 1.17 haya if (csc->sc_cardtype == EX_CB_CYCLONE)
301 1.17 haya bus_space_write_4(csc->sc_funct, csc->sc_funch,
302 1.9 thorpej EX_CB_INTR, EX_CB_INTR_ACK);
303 1.1 haya
304 1.35 perry Cardbus_function_disable(csc->sc_ct);
305 1.1 haya }
306 1.1 haya
307 1.9 thorpej void
308 1.44 cegger ex_cardbus_intr_ack(struct ex_softc *sc)
309 1.1 haya {
310 1.17 haya struct ex_cardbus_softc *csc = (struct ex_cardbus_softc *)sc;
311 1.9 thorpej
312 1.17 haya bus_space_write_4(csc->sc_funct, csc->sc_funch, EX_CB_INTR,
313 1.9 thorpej EX_CB_INTR_ACK);
314 1.1 haya }
315 1.1 haya
316 1.9 thorpej int
317 1.43 spz ex_cardbus_detach(device_t self, int arg)
318 1.1 haya {
319 1.37 thorpej struct ex_cardbus_softc *csc = device_private(self);
320 1.17 haya struct ex_softc *sc = &csc->sc_softc;
321 1.17 haya struct cardbus_devfunc *ct = csc->sc_ct;
322 1.11 augustss int rv;
323 1.1 haya
324 1.11 augustss #if defined(DIAGNOSTIC)
325 1.11 augustss if (ct == NULL) {
326 1.43 spz panic("%s: data structure lacks", device_xname(self));
327 1.11 augustss }
328 1.11 augustss #endif
329 1.10 haya
330 1.11 augustss rv = ex_detach(sc);
331 1.11 augustss if (rv == 0) {
332 1.11 augustss /*
333 1.11 augustss * Unhook the interrupt handler.
334 1.11 augustss */
335 1.11 augustss cardbus_intr_disestablish(ct->ct_cc, ct->ct_cf, sc->sc_ih);
336 1.1 haya
337 1.17 haya if (csc->sc_cardtype == EX_CB_CYCLONE) {
338 1.12 thorpej Cardbus_mapreg_unmap(ct,
339 1.12 thorpej CARDBUS_3C575BTX_FUNCSTAT_PCIREG,
340 1.17 haya csc->sc_funct, csc->sc_funch, csc->sc_funcsize);
341 1.11 augustss }
342 1.1 haya
343 1.12 thorpej Cardbus_mapreg_unmap(ct, CARDBUS_BASE0_REG, sc->sc_iot,
344 1.17 haya sc->sc_ioh, csc->sc_mapsize);
345 1.11 augustss }
346 1.11 augustss return (rv);
347 1.1 haya }
348 1.1 haya
349 1.9 thorpej int
350 1.44 cegger ex_cardbus_enable(struct ex_softc *sc)
351 1.1 haya {
352 1.9 thorpej struct ex_cardbus_softc *csc = (struct ex_cardbus_softc *)sc;
353 1.9 thorpej cardbus_function_tag_t cf = csc->sc_ct->ct_cf;
354 1.9 thorpej cardbus_chipset_tag_t cc = csc->sc_ct->ct_cc;
355 1.9 thorpej
356 1.9 thorpej Cardbus_function_enable(csc->sc_ct);
357 1.19 thorpej ex_cardbus_setup(csc);
358 1.9 thorpej
359 1.9 thorpej sc->sc_ih = cardbus_intr_establish(cc, cf, csc->sc_intrline,
360 1.9 thorpej IPL_NET, ex_intr, sc);
361 1.9 thorpej if (NULL == sc->sc_ih) {
362 1.43 spz aprint_error_dev(sc->sc_dev, "couldn't establish interrupt\n");
363 1.9 thorpej return (1);
364 1.9 thorpej }
365 1.1 haya
366 1.9 thorpej return (0);
367 1.1 haya }
368 1.1 haya
369 1.9 thorpej void
370 1.44 cegger ex_cardbus_disable(struct ex_softc *sc)
371 1.1 haya {
372 1.9 thorpej struct ex_cardbus_softc *csc = (struct ex_cardbus_softc *)sc;
373 1.9 thorpej cardbus_function_tag_t cf = csc->sc_ct->ct_cf;
374 1.9 thorpej cardbus_chipset_tag_t cc = csc->sc_ct->ct_cc;
375 1.1 haya
376 1.19 thorpej cardbus_intr_disestablish(cc, cf, sc->sc_ih);
377 1.19 thorpej sc->sc_ih = NULL;
378 1.19 thorpej
379 1.9 thorpej Cardbus_function_disable(csc->sc_ct);
380 1.1 haya
381 1.1 haya }
382 1.19 thorpej
383 1.35 perry void
384 1.44 cegger ex_cardbus_setup(struct ex_cardbus_softc *csc)
385 1.19 thorpej {
386 1.19 thorpej cardbus_devfunc_t ct = csc->sc_ct;
387 1.19 thorpej cardbus_chipset_tag_t cc = ct->ct_cc;
388 1.19 thorpej cardbus_function_tag_t cf = ct->ct_cf;
389 1.19 thorpej cardbusreg_t reg;
390 1.19 thorpej
391 1.41 jmcneill (void)cardbus_set_powerstate(ct, csc->sc_tag, PCI_PWR_D0);
392 1.19 thorpej
393 1.30 mycroft /* Program the BAR */
394 1.30 mycroft cardbus_conf_write(cc, cf, csc->sc_tag,
395 1.35 perry csc->sc_bar_reg, csc->sc_bar_val);
396 1.19 thorpej /* Make sure the right access type is on the CardBus bridge. */
397 1.19 thorpej (ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_IO_ENABLE);
398 1.19 thorpej if (csc->sc_cardtype == EX_CB_CYCLONE) {
399 1.30 mycroft /* Program the BAR */
400 1.30 mycroft cardbus_conf_write(cc, cf, csc->sc_tag,
401 1.35 perry csc->sc_bar_reg1, csc->sc_bar_val1);
402 1.19 thorpej /*
403 1.19 thorpej * Make sure CardBus brigde can access memory space. Usually
404 1.19 thorpej * memory access is enabled by BIOS, but some BIOSes do not
405 1.19 thorpej * enable it.
406 1.19 thorpej */
407 1.19 thorpej (ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_MEM_ENABLE);
408 1.19 thorpej }
409 1.19 thorpej (ct->ct_cf->cardbus_ctrl)(cc, CARDBUS_BM_ENABLE);
410 1.19 thorpej
411 1.19 thorpej /* Enable the appropriate bits in the CARDBUS CSR. */
412 1.19 thorpej reg = cardbus_conf_read(cc, cf, csc->sc_tag,
413 1.19 thorpej CARDBUS_COMMAND_STATUS_REG);
414 1.19 thorpej reg |= csc->sc_csr;
415 1.19 thorpej cardbus_conf_write(cc, cf, csc->sc_tag, CARDBUS_COMMAND_STATUS_REG,
416 1.19 thorpej reg);
417 1.35 perry
418 1.19 thorpej /*
419 1.28 wiz * set latency timer
420 1.19 thorpej */
421 1.19 thorpej reg = cardbus_conf_read(cc, cf, csc->sc_tag, CARDBUS_BHLC_REG);
422 1.19 thorpej if (CARDBUS_LATTIMER(reg) < 0x20) {
423 1.19 thorpej /* at least the value of latency timer should 0x20. */
424 1.19 thorpej DPRINTF(("if_ex_cardbus: lattimer 0x%x -> 0x20\n",
425 1.19 thorpej CARDBUS_LATTIMER(reg)));
426 1.19 thorpej reg &= ~(CARDBUS_LATTIMER_MASK << CARDBUS_LATTIMER_SHIFT);
427 1.19 thorpej reg |= (0x20 << CARDBUS_LATTIMER_SHIFT);
428 1.19 thorpej cardbus_conf_write(cc, cf, csc->sc_tag, CARDBUS_BHLC_REG, reg);
429 1.19 thorpej }
430 1.19 thorpej }
431