cardbus.c revision 1.28 1 1.28 wiz /* $NetBSD: cardbus.c,v 1.28 2000/10/12 12:42:03 wiz Exp $ */
2 1.1 haya
3 1.1 haya /*
4 1.18 haya * Copyright (c) 1997, 1998, 1999 and 2000
5 1.4 haya * HAYAKAWA Koichi. All rights reserved.
6 1.1 haya *
7 1.1 haya * Redistribution and use in source and binary forms, with or without
8 1.1 haya * modification, are permitted provided that the following conditions
9 1.1 haya * are met:
10 1.1 haya * 1. Redistributions of source code must retain the above copyright
11 1.1 haya * notice, this list of conditions and the following disclaimer.
12 1.1 haya * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 haya * notice, this list of conditions and the following disclaimer in the
14 1.1 haya * documentation and/or other materials provided with the distribution.
15 1.1 haya * 3. All advertising materials mentioning features or use of this software
16 1.1 haya * must display the following acknowledgement:
17 1.1 haya * This product includes software developed by HAYAKAWA Koichi.
18 1.1 haya * 4. The name of the author may not be used to endorse or promote products
19 1.1 haya * derived from this software without specific prior written permission.
20 1.1 haya *
21 1.1 haya *
22 1.1 haya * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 haya * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24 1.1 haya * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25 1.1 haya * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
26 1.1 haya * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27 1.1 haya * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28 1.1 haya * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 haya * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
30 1.1 haya * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31 1.1 haya * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 1.1 haya * POSSIBILITY OF SUCH DAMAGE.
33 1.1 haya */
34 1.1 haya
35 1.4 haya #include "opt_cardbus.h"
36 1.1 haya
37 1.1 haya #include <sys/types.h>
38 1.1 haya #include <sys/param.h>
39 1.1 haya #include <sys/systm.h>
40 1.1 haya #include <sys/device.h>
41 1.1 haya #include <sys/malloc.h>
42 1.1 haya #include <sys/kernel.h>
43 1.1 haya #include <sys/syslog.h>
44 1.19 haya #include <sys/proc.h>
45 1.1 haya
46 1.1 haya #include <machine/bus.h>
47 1.1 haya
48 1.1 haya #include <dev/cardbus/cardbusvar.h>
49 1.15 joda #include <dev/cardbus/cardbusdevs.h>
50 1.1 haya
51 1.7 joda #include <dev/cardbus/cardbus_exrom.h>
52 1.7 joda
53 1.1 haya #include <dev/pci/pcivar.h> /* XXX */
54 1.1 haya #include <dev/pci/pcireg.h> /* XXX */
55 1.1 haya
56 1.20 soren #include <dev/pcmcia/pcmciareg.h>
57 1.10 joda
58 1.1 haya #if defined CARDBUS_DEBUG
59 1.1 haya #define STATIC
60 1.1 haya #define DPRINTF(a) printf a
61 1.1 haya #else
62 1.1 haya #define STATIC static
63 1.1 haya #define DPRINTF(a)
64 1.1 haya #endif
65 1.1 haya
66 1.1 haya
67 1.1 haya STATIC void cardbusattach __P((struct device *, struct device *, void *));
68 1.1 haya /* STATIC int cardbusprint __P((void *, const char *)); */
69 1.1 haya int cardbus_attach_card __P((struct cardbus_softc *));
70 1.1 haya
71 1.1 haya STATIC int cardbusmatch __P((struct device *, struct cfdata *, void *));
72 1.1 haya static int cardbussubmatch __P((struct device *, struct cfdata *, void *));
73 1.1 haya static int cardbusprint __P((void *, const char *));
74 1.1 haya
75 1.10 joda typedef void (*tuple_decode_func)(u_int8_t*, int, void*);
76 1.10 joda
77 1.10 joda static int decode_tuples __P((u_int8_t *, int, tuple_decode_func, void*));
78 1.10 joda #ifdef CARDBUS_DEBUG
79 1.10 joda static void print_tuple __P((u_int8_t*, int, void*));
80 1.10 joda #endif
81 1.1 haya
82 1.7 joda static int cardbus_read_tuples __P((struct cardbus_attach_args *,
83 1.7 joda cardbusreg_t, u_int8_t *, size_t));
84 1.7 joda
85 1.8 joda static void enable_function __P((struct cardbus_softc *, int, int));
86 1.8 joda static void disable_function __P((struct cardbus_softc *, int));
87 1.8 joda
88 1.1 haya
89 1.1 haya struct cfattach cardbus_ca = {
90 1.1 haya sizeof(struct cardbus_softc), cardbusmatch, cardbusattach
91 1.1 haya };
92 1.1 haya
93 1.1 haya #ifndef __NetBSD_Version__
94 1.1 haya struct cfdriver cardbus_cd = {
95 1.1 haya NULL, "cardbus", DV_DULL
96 1.1 haya };
97 1.1 haya #endif
98 1.1 haya
99 1.1 haya
100 1.1 haya STATIC int
101 1.1 haya cardbusmatch(parent, cf, aux)
102 1.1 haya struct device *parent;
103 1.1 haya struct cfdata *cf;
104 1.1 haya void *aux;
105 1.1 haya {
106 1.1 haya struct cbslot_attach_args *cba = aux;
107 1.1 haya
108 1.1 haya if (strcmp(cba->cba_busname, cf->cf_driver->cd_name)) {
109 1.1 haya DPRINTF(("cardbusmatch: busname differs %s <=> %s\n",
110 1.1 haya cba->cba_busname, cf->cf_driver->cd_name));
111 1.1 haya return 0;
112 1.1 haya }
113 1.1 haya
114 1.1 haya return 1;
115 1.1 haya }
116 1.1 haya
117 1.1 haya
118 1.1 haya
119 1.1 haya STATIC void
120 1.1 haya cardbusattach(parent, self, aux)
121 1.1 haya struct device *parent;
122 1.1 haya struct device *self;
123 1.1 haya void *aux;
124 1.1 haya {
125 1.1 haya struct cardbus_softc *sc = (void *)self;
126 1.1 haya struct cbslot_attach_args *cba = aux;
127 1.1 haya int cdstatus;
128 1.1 haya
129 1.1 haya sc->sc_bus = cba->cba_bus;
130 1.22 haya sc->sc_device = 0;
131 1.1 haya sc->sc_intrline = cba->cba_intrline;
132 1.1 haya sc->sc_cacheline = cba->cba_cacheline;
133 1.1 haya sc->sc_lattimer = cba->cba_lattimer;
134 1.1 haya
135 1.3 augustss printf(": bus %d device %d", sc->sc_bus, sc->sc_device);
136 1.3 augustss printf(" cacheline 0x%x, lattimer 0x%x\n", sc->sc_cacheline,sc->sc_lattimer);
137 1.1 haya
138 1.1 haya sc->sc_iot = cba->cba_iot; /* CardBus I/O space tag */
139 1.1 haya sc->sc_memt = cba->cba_memt; /* CardBus MEM space tag */
140 1.1 haya sc->sc_dmat = cba->cba_dmat; /* DMA tag */
141 1.1 haya sc->sc_cc = cba->cba_cc;
142 1.1 haya sc->sc_cf = cba->cba_cf;
143 1.1 haya
144 1.1 haya #if rbus
145 1.1 haya sc->sc_rbus_iot = cba->cba_rbus_iot;
146 1.1 haya sc->sc_rbus_memt = cba->cba_rbus_memt;
147 1.1 haya #endif
148 1.1 haya
149 1.1 haya sc->sc_funcs = NULL;
150 1.1 haya
151 1.1 haya cdstatus = 0;
152 1.1 haya }
153 1.1 haya
154 1.7 joda static int
155 1.7 joda cardbus_read_tuples(ca, cis_ptr, tuples, len)
156 1.7 joda struct cardbus_attach_args *ca;
157 1.7 joda cardbusreg_t cis_ptr;
158 1.7 joda u_int8_t *tuples;
159 1.7 joda size_t len;
160 1.7 joda {
161 1.8 joda struct cardbus_softc *sc = ca->ca_ct->ct_sc;
162 1.7 joda cardbus_chipset_tag_t cc = ca->ca_ct->ct_cc;
163 1.7 joda cardbus_function_tag_t cf = ca->ca_ct->ct_cf;
164 1.7 joda cardbustag_t tag = ca->ca_tag;
165 1.7 joda cardbusreg_t command;
166 1.7 joda int found = 0;
167 1.7 joda
168 1.7 joda int i, j;
169 1.7 joda int cardbus_space = cis_ptr & CARDBUS_CIS_ASIMASK;
170 1.7 joda bus_space_handle_t bar_memh;
171 1.7 joda bus_size_t bar_size;
172 1.7 joda bus_addr_t bar_addr;
173 1.7 joda
174 1.7 joda int reg;
175 1.7 joda
176 1.7 joda memset(tuples, 0, len);
177 1.7 joda
178 1.7 joda cis_ptr = cis_ptr & CARDBUS_CIS_ADDRMASK;
179 1.7 joda
180 1.7 joda switch(cardbus_space) {
181 1.7 joda case CARDBUS_CIS_ASI_TUPLE:
182 1.8 joda DPRINTF(("%s: reading CIS data from configuration space\n",
183 1.8 joda sc->sc_dev.dv_xname));
184 1.7 joda for (i = cis_ptr, j = 0; i < 0xff; i += 4) {
185 1.7 joda u_int32_t e = (cf->cardbus_conf_read)(cc, tag, i);
186 1.7 joda tuples[j] = 0xff & e;
187 1.7 joda e >>= 8;
188 1.7 joda tuples[j + 1] = 0xff & e;
189 1.7 joda e >>= 8;
190 1.7 joda tuples[j + 2] = 0xff & e;
191 1.7 joda e >>= 8;
192 1.7 joda tuples[j + 3] = 0xff & e;
193 1.7 joda j += 4;
194 1.7 joda }
195 1.7 joda found++;
196 1.7 joda break;
197 1.1 haya
198 1.7 joda case CARDBUS_CIS_ASI_BAR0:
199 1.7 joda case CARDBUS_CIS_ASI_BAR1:
200 1.7 joda case CARDBUS_CIS_ASI_BAR2:
201 1.7 joda case CARDBUS_CIS_ASI_BAR3:
202 1.7 joda case CARDBUS_CIS_ASI_BAR4:
203 1.7 joda case CARDBUS_CIS_ASI_BAR5:
204 1.7 joda case CARDBUS_CIS_ASI_ROM:
205 1.7 joda if(cardbus_space == CARDBUS_CIS_ASI_ROM) {
206 1.7 joda reg = CARDBUS_ROM_REG;
207 1.8 joda DPRINTF(("%s: reading CIS data from ROM\n",
208 1.8 joda sc->sc_dev.dv_xname));
209 1.7 joda } else {
210 1.7 joda reg = CARDBUS_BASE0_REG + (cardbus_space - 1) * 4;
211 1.7 joda DPRINTF(("%s: reading CIS data from BAR%d\n",
212 1.8 joda sc->sc_dev.dv_xname, cardbus_space - 1));
213 1.7 joda }
214 1.7 joda
215 1.7 joda /* XXX zero register so mapreg_map doesn't get confused by old
216 1.7 joda contents */
217 1.7 joda cardbus_conf_write(cc, cf, tag, reg, 0);
218 1.7 joda if(Cardbus_mapreg_map(ca->ca_ct, reg,
219 1.7 joda CARDBUS_MAPREG_TYPE_MEM | PCI_MAPREG_MEM_TYPE_32BIT,
220 1.7 joda 0,
221 1.7 joda NULL, &bar_memh, &bar_addr, &bar_size)) {
222 1.8 joda printf("%s: failed to map memory\n", sc->sc_dev.dv_xname);
223 1.7 joda return 1;
224 1.7 joda }
225 1.7 joda
226 1.7 joda
227 1.7 joda if(cardbus_space == CARDBUS_CIS_ASI_ROM) {
228 1.7 joda cardbusreg_t exrom;
229 1.7 joda int save;
230 1.7 joda struct cardbus_rom_image_head rom_image;
231 1.7 joda struct cardbus_rom_image *p;
232 1.7 joda
233 1.7 joda save = splhigh();
234 1.7 joda /* enable rom address decoder */
235 1.7 joda exrom = cardbus_conf_read(cc, cf, tag, reg);
236 1.7 joda cardbus_conf_write(cc, cf, tag, reg, exrom | 1);
237 1.7 joda
238 1.7 joda command = cardbus_conf_read(cc, cf, tag, CARDBUS_COMMAND_STATUS_REG);
239 1.7 joda cardbus_conf_write(cc, cf, tag, CARDBUS_COMMAND_STATUS_REG,
240 1.7 joda command | CARDBUS_COMMAND_MEM_ENABLE);
241 1.7 joda
242 1.7 joda if(cardbus_read_exrom(ca->ca_memt, bar_memh, &rom_image))
243 1.7 joda goto out;
244 1.7 joda
245 1.7 joda for(p = SIMPLEQ_FIRST(&rom_image);
246 1.7 joda p;
247 1.7 joda p = SIMPLEQ_NEXT(p, next)) {
248 1.7 joda if(p->rom_image == CARDBUS_CIS_ASI_ROM_IMAGE(cis_ptr)) {
249 1.7 joda bus_space_read_region_1(p->romt, p->romh,
250 1.7 joda CARDBUS_CIS_ADDR(cis_ptr),
251 1.7 joda tuples, 256);
252 1.7 joda found++;
253 1.7 joda }
254 1.7 joda break;
255 1.7 joda }
256 1.7 joda while((p = SIMPLEQ_FIRST(&rom_image)) != NULL) {
257 1.7 joda SIMPLEQ_REMOVE_HEAD(&rom_image, p, next);
258 1.7 joda free(p, M_DEVBUF);
259 1.7 joda }
260 1.7 joda out:
261 1.7 joda exrom = cardbus_conf_read(cc, cf, tag, reg);
262 1.7 joda cardbus_conf_write(cc, cf, tag, reg, exrom & ~1);
263 1.7 joda splx(save);
264 1.7 joda } else {
265 1.7 joda command = cardbus_conf_read(cc, cf, tag, CARDBUS_COMMAND_STATUS_REG);
266 1.7 joda cardbus_conf_write(cc, cf, tag, CARDBUS_COMMAND_STATUS_REG,
267 1.7 joda command | CARDBUS_COMMAND_MEM_ENABLE);
268 1.7 joda /* XXX byte order? */
269 1.7 joda bus_space_read_region_1(ca->ca_memt, bar_memh,
270 1.7 joda cis_ptr, tuples, 256);
271 1.7 joda found++;
272 1.7 joda }
273 1.7 joda command = cardbus_conf_read(cc, cf, tag, CARDBUS_COMMAND_STATUS_REG);
274 1.7 joda cardbus_conf_write(cc, cf, tag, CARDBUS_COMMAND_STATUS_REG,
275 1.7 joda command & ~CARDBUS_COMMAND_MEM_ENABLE);
276 1.7 joda cardbus_conf_write(cc, cf, tag, reg, 0);
277 1.7 joda #if 0
278 1.7 joda /* XXX unmap memory */
279 1.7 joda (*ca->ca_ct->ct_cf->cardbus_space_free)(ca->ca_ct,
280 1.7 joda ca->ca_ct->ct_sc->sc_rbus_memt,
281 1.7 joda bar_memh, bar_size);
282 1.7 joda #endif
283 1.7 joda break;
284 1.1 haya
285 1.7 joda #ifdef DIAGNOSTIC
286 1.7 joda default:
287 1.8 joda panic("%s: bad CIS space (%d)", sc->sc_dev.dv_xname, cardbus_space);
288 1.7 joda #endif
289 1.7 joda }
290 1.7 joda return !found;
291 1.7 joda }
292 1.1 haya
293 1.10 joda static void
294 1.10 joda parse_tuple(u_int8_t *tuple, int len, void *data)
295 1.10 joda {
296 1.10 joda #ifdef CARDBUS_DEBUG
297 1.10 joda static const char __func__[] = "parse_tuple";
298 1.10 joda #endif
299 1.10 joda struct cardbus_cis_info *cis = data;
300 1.10 joda int bar_index;
301 1.10 joda int i;
302 1.10 joda char *p;
303 1.10 joda switch(tuple[0]) {
304 1.10 joda case PCMCIA_CISTPL_MANFID:
305 1.10 joda if(tuple[1] != 5) {
306 1.10 joda DPRINTF(("%s: wrong length manufacturer id (%d)\n",
307 1.10 joda __func__, tuple[1]));
308 1.10 joda break;
309 1.10 joda }
310 1.10 joda cis->manufacturer = tuple[2] | (tuple[3] << 8);
311 1.10 joda cis->product = tuple[4] | (tuple[5] << 8);
312 1.10 joda break;
313 1.10 joda case PCMCIA_CISTPL_VERS_1:
314 1.10 joda memcpy(cis->cis1_info_buf, tuple + 2, tuple[1]);
315 1.10 joda i = 0;
316 1.10 joda p = cis->cis1_info_buf + 2;
317 1.10 joda while(i < sizeof(cis->cis1_info) / sizeof(cis->cis1_info[0])) {
318 1.10 joda cis->cis1_info[i++] = p;
319 1.10 joda while(*p != '\0' && *p != '\xff')
320 1.10 joda p++;
321 1.10 joda if(*p == '\xff')
322 1.10 joda break;
323 1.10 joda p++;
324 1.10 joda }
325 1.10 joda break;
326 1.10 joda case PCMCIA_CISTPL_BAR:
327 1.10 joda if(tuple[1] != 6) {
328 1.10 joda DPRINTF(("%s: BAR with short length (%d)\n", __func__, tuple[1]));
329 1.10 joda break;
330 1.10 joda }
331 1.10 joda bar_index = tuple[2] & 7;
332 1.10 joda if(bar_index == 0) {
333 1.11 joda DPRINTF(("%s: invalid ASI in BAR tuple\n", __func__));
334 1.10 joda break;
335 1.10 joda }
336 1.10 joda bar_index--;
337 1.10 joda cis->bar[bar_index].flags = tuple[2];
338 1.10 joda cis->bar[bar_index].size = (tuple[4] << 0) |
339 1.17 joda (tuple[5] << 8) |
340 1.17 joda (tuple[6] << 16) |
341 1.17 joda (tuple[7] << 24);
342 1.10 joda break;
343 1.10 joda case PCMCIA_CISTPL_FUNCID:
344 1.10 joda cis->funcid = tuple[2];
345 1.10 joda break;
346 1.10 joda
347 1.10 joda case PCMCIA_CISTPL_FUNCE:
348 1.25 joda switch(cis->funcid) {
349 1.25 joda case PCMCIA_FUNCTION_SERIAL:
350 1.25 joda if(tuple[1] >= 2 &&
351 1.25 joda tuple[2] == 0 /* XXX PCMCIA_TPLFE_TYPE_SERIAL_??? */) {
352 1.25 joda cis->funce.serial.uart_type = tuple[3] & 0x1f;
353 1.25 joda cis->funce.serial.uart_present = 1;
354 1.25 joda }
355 1.25 joda break;
356 1.25 joda case PCMCIA_FUNCTION_NETWORK:
357 1.25 joda if(tuple[1] >= 8 && tuple[2] == PCMCIA_TPLFE_TYPE_LAN_NID) {
358 1.10 joda if(tuple[3] > sizeof(cis->funce.network.netid)) {
359 1.10 joda DPRINTF(("%s: unknown network id type (len = %d)\n",
360 1.10 joda __func__, tuple[3]));
361 1.10 joda } else {
362 1.24 mycroft cis->funce.network.netid_present = 1;
363 1.10 joda memcpy(cis->funce.network.netid,
364 1.10 joda tuple + 4, tuple[3]);
365 1.10 joda }
366 1.10 joda }
367 1.25 joda break;
368 1.10 joda }
369 1.10 joda break;
370 1.10 joda }
371 1.10 joda }
372 1.10 joda
373 1.1 haya /*
374 1.1 haya * int cardbus_attach_card(struct cardbus_softc *sc)
375 1.1 haya *
376 1.1 haya * This function attaches the card on the slot: turns on power,
377 1.28 wiz * reads and analyses tuple, sets configuration index.
378 1.1 haya *
379 1.1 haya * This function returns the number of recognised device functions.
380 1.1 haya * If no functions are recognised, return 0.
381 1.1 haya */
382 1.1 haya int
383 1.1 haya cardbus_attach_card(sc)
384 1.1 haya struct cardbus_softc *sc;
385 1.1 haya {
386 1.1 haya cardbus_chipset_tag_t cc;
387 1.1 haya cardbus_function_tag_t cf;
388 1.1 haya int cdstatus;
389 1.1 haya cardbustag_t tag;
390 1.1 haya cardbusreg_t id, class, cis_ptr;
391 1.1 haya cardbusreg_t bhlc;
392 1.1 haya u_int8_t tuple[2048];
393 1.1 haya int function, nfunction;
394 1.1 haya struct cardbus_devfunc **previous_next = &(sc->sc_funcs);
395 1.1 haya struct device *csc;
396 1.1 haya int no_work_funcs = 0;
397 1.1 haya cardbus_devfunc_t ct;
398 1.1 haya
399 1.1 haya cc = sc->sc_cc;
400 1.1 haya cf = sc->sc_cf;
401 1.1 haya
402 1.1 haya DPRINTF(("cardbus_attach_card: cb%d start\n", sc->sc_dev.dv_unit));
403 1.1 haya
404 1.1 haya /* inspect initial voltage */
405 1.1 haya if (0 == (cdstatus = (cf->cardbus_ctrl)(cc, CARDBUS_CD))) {
406 1.1 haya DPRINTF(("cardbusattach: no CardBus card on cb%d\n", sc->sc_dev.dv_unit));
407 1.1 haya return 0;
408 1.1 haya }
409 1.1 haya
410 1.8 joda enable_function(sc, cdstatus, 8); /* XXX use fake function 8 to
411 1.8 joda keep power on during whole
412 1.8 joda configuration */
413 1.1 haya function = 0;
414 1.1 haya
415 1.1 haya tag = cardbus_make_tag(cc, cf, sc->sc_bus, sc->sc_device, function);
416 1.1 haya
417 1.1 haya /*
418 1.1 haya * Wait until power comes up. Maxmum 500 ms.
419 1.1 haya */
420 1.1 haya {
421 1.1 haya int i;
422 1.1 haya for (i = 0; i < 5; ++i) {
423 1.1 haya id = cardbus_conf_read(cc, cf, tag, CARDBUS_ID_REG);
424 1.1 haya if (id != 0xffffffff && id != 0) {
425 1.1 haya break;
426 1.1 haya }
427 1.19 haya if (cold) { /* before kernel thread invoked */
428 1.19 haya delay(100*1000);
429 1.19 haya } else { /* thread context */
430 1.19 haya if (tsleep((void *)sc, PCATCH, "cardbus", hz/10) != EWOULDBLOCK) {
431 1.19 haya break;
432 1.19 haya }
433 1.19 haya }
434 1.1 haya }
435 1.1 haya if (i == 5) {
436 1.1 haya return 0;
437 1.1 haya }
438 1.1 haya }
439 1.1 haya
440 1.1 haya bhlc = cardbus_conf_read(cc, cf, tag, CARDBUS_BHLC_REG);
441 1.1 haya if (CARDBUS_LATTIMER(bhlc) < 0x10) {
442 1.5 joda bhlc &= ~(CARDBUS_LATTIMER_MASK << CARDBUS_LATTIMER_SHIFT);
443 1.1 haya bhlc |= (0x10 << CARDBUS_LATTIMER_SHIFT);
444 1.1 haya cardbus_conf_write(cc, cf, tag, CARDBUS_BHLC_REG, bhlc);
445 1.1 haya }
446 1.1 haya
447 1.1 haya nfunction = CARDBUS_HDRTYPE_MULTIFN(bhlc) ? 8 : 1;
448 1.1 haya
449 1.8 joda for(function = 0; function < nfunction; function++) {
450 1.13 haya struct cardbus_attach_args ca;
451 1.8 joda
452 1.13 haya tag = cardbus_make_tag(cc, cf, sc->sc_bus, sc->sc_device, function);
453 1.13 haya
454 1.13 haya id = cardbus_conf_read(cc, cf, tag, CARDBUS_ID_REG);
455 1.13 haya class = cardbus_conf_read(cc, cf, tag, CARDBUS_CLASS_REG);
456 1.13 haya cis_ptr = cardbus_conf_read(cc, cf, tag, CARDBUS_CIS_REG);
457 1.13 haya
458 1.13 haya /* Invalid vendor ID value? */
459 1.14 joda if (CARDBUS_VENDOR(id) == CARDBUS_VENDOR_INVALID) {
460 1.13 haya continue;
461 1.13 haya }
462 1.8 joda
463 1.13 haya DPRINTF(("cardbus_attach_card: Vendor 0x%x, Product 0x%x, CIS 0x%x\n",
464 1.13 haya CARDBUS_VENDOR(id), CARDBUS_PRODUCT(id), cis_ptr));
465 1.1 haya
466 1.13 haya enable_function(sc, cdstatus, function);
467 1.1 haya
468 1.13 haya /* clean up every BAR */
469 1.13 haya cardbus_conf_write(cc, cf, tag, CARDBUS_BASE0_REG, 0);
470 1.13 haya cardbus_conf_write(cc, cf, tag, CARDBUS_BASE1_REG, 0);
471 1.13 haya cardbus_conf_write(cc, cf, tag, CARDBUS_BASE2_REG, 0);
472 1.13 haya cardbus_conf_write(cc, cf, tag, CARDBUS_BASE3_REG, 0);
473 1.13 haya cardbus_conf_write(cc, cf, tag, CARDBUS_BASE4_REG, 0);
474 1.13 haya cardbus_conf_write(cc, cf, tag, CARDBUS_BASE5_REG, 0);
475 1.13 haya cardbus_conf_write(cc, cf, tag, CARDBUS_ROM_REG, 0);
476 1.7 joda
477 1.13 haya /*
478 1.13 haya * We need to allocate the ct here, since we might
479 1.13 haya * need it when reading the CIS
480 1.13 haya */
481 1.13 haya if (NULL == (ct = (cardbus_devfunc_t)malloc(sizeof(struct cardbus_devfunc),
482 1.13 haya M_DEVBUF, M_NOWAIT))) {
483 1.13 haya panic("no room for cardbus_tag");
484 1.13 haya }
485 1.13 haya
486 1.13 haya ct->ct_cc = sc->sc_cc;
487 1.13 haya ct->ct_cf = sc->sc_cf;
488 1.13 haya ct->ct_bus = sc->sc_bus;
489 1.13 haya ct->ct_dev = sc->sc_device;
490 1.13 haya ct->ct_func = function;
491 1.13 haya ct->ct_sc = sc;
492 1.13 haya ct->ct_next = NULL;
493 1.13 haya *previous_next = ct;
494 1.17 joda
495 1.17 joda memset(&ca, 0, sizeof(ca));
496 1.13 haya
497 1.13 haya ca.ca_unit = sc->sc_dev.dv_unit;
498 1.13 haya ca.ca_ct = ct;
499 1.13 haya
500 1.13 haya ca.ca_iot = sc->sc_iot;
501 1.13 haya ca.ca_memt = sc->sc_memt;
502 1.13 haya ca.ca_dmat = sc->sc_dmat;
503 1.13 haya
504 1.13 haya ca.ca_tag = tag;
505 1.13 haya ca.ca_device = sc->sc_device;
506 1.13 haya ca.ca_function = function;
507 1.13 haya ca.ca_id = id;
508 1.13 haya ca.ca_class = class;
509 1.13 haya
510 1.13 haya ca.ca_intrline = sc->sc_intrline;
511 1.13 haya
512 1.13 haya bzero(tuple, 2048);
513 1.13 haya
514 1.13 haya if(cardbus_read_tuples(&ca, cis_ptr, tuple, sizeof(tuple))) {
515 1.13 haya printf("cardbus_attach_card: failed to read CIS\n");
516 1.13 haya } else {
517 1.10 joda #ifdef CARDBUS_DEBUG
518 1.10 joda decode_tuples(tuple, 2048, print_tuple, NULL);
519 1.10 joda #endif
520 1.10 joda decode_tuples(tuple, 2048, parse_tuple, &ca.ca_cis);
521 1.13 haya }
522 1.13 haya
523 1.13 haya if (NULL == (csc = config_found_sm((void *)sc, &ca, cardbusprint, cardbussubmatch))) {
524 1.13 haya /* do not match */
525 1.13 haya disable_function(sc, function);
526 1.13 haya free(ct, M_DEVBUF);
527 1.13 haya *previous_next = NULL;
528 1.13 haya } else {
529 1.13 haya /* found */
530 1.13 haya previous_next = &(ct->ct_next);
531 1.13 haya ct->ct_device = csc;
532 1.13 haya ++no_work_funcs;
533 1.13 haya }
534 1.1 haya }
535 1.13 haya /*
536 1.13 haya * XXX power down pseudo function 8 (this will power down the card
537 1.13 haya * if no functions were attached).
538 1.13 haya */
539 1.8 joda disable_function(sc, 8);
540 1.1 haya
541 1.1 haya return no_work_funcs;
542 1.1 haya }
543 1.1 haya
544 1.1 haya
545 1.1 haya static int
546 1.1 haya cardbussubmatch(parent, cf, aux)
547 1.1 haya struct device *parent;
548 1.1 haya struct cfdata *cf;
549 1.1 haya void *aux;
550 1.1 haya {
551 1.1 haya struct cardbus_attach_args *ca = aux;
552 1.1 haya
553 1.1 haya if (cf->cardbuscf_dev != CARDBUS_UNK_DEV &&
554 1.1 haya cf->cardbuscf_dev != ca->ca_unit) {
555 1.1 haya return 0;
556 1.1 haya }
557 1.1 haya if (cf->cardbuscf_function != CARDBUS_UNK_FUNCTION &&
558 1.1 haya cf->cardbuscf_function != ca->ca_function) {
559 1.1 haya return 0;
560 1.1 haya }
561 1.1 haya
562 1.1 haya return ((*cf->cf_attach->ca_match)(parent, cf, aux));
563 1.1 haya }
564 1.1 haya
565 1.1 haya
566 1.1 haya
567 1.1 haya static int
568 1.1 haya cardbusprint(aux, pnp)
569 1.1 haya void *aux;
570 1.1 haya const char *pnp;
571 1.1 haya {
572 1.10 joda struct cardbus_attach_args *ca = aux;
573 1.10 joda char devinfo[256];
574 1.10 joda int i;
575 1.10 joda if (pnp) {
576 1.10 joda pci_devinfo(ca->ca_id, ca->ca_class, 1, devinfo);
577 1.10 joda for (i = 0; i < 4; i++) {
578 1.10 joda if (ca->ca_cis.cis1_info[i] == NULL)
579 1.10 joda break;
580 1.10 joda if (i)
581 1.10 joda printf(", ");
582 1.10 joda printf("%s", ca->ca_cis.cis1_info[i]);
583 1.10 joda }
584 1.10 joda if (i)
585 1.10 joda printf(" ");
586 1.10 joda printf("(manufacturer 0x%x, product 0x%x)", ca->ca_cis.manufacturer,
587 1.10 joda ca->ca_cis.product);
588 1.10 joda printf(" %s at %s", devinfo, pnp);
589 1.10 joda }
590 1.10 joda printf(" dev %d function %d", ca->ca_device, ca->ca_function);
591 1.1 haya
592 1.10 joda return UNCONF;
593 1.1 haya }
594 1.1 haya
595 1.1 haya
596 1.1 haya
597 1.1 haya
598 1.1 haya
599 1.1 haya
600 1.1 haya /*
601 1.18 haya * void cardbus_detach_card(struct cardbus_softc *sc)
602 1.18 haya *
603 1.18 haya * This function detaches the card on the slot: detach device data
604 1.18 haya * structure and turns off the power.
605 1.18 haya *
606 1.18 haya * This function must not be called under interrupt context.
607 1.18 haya */
608 1.18 haya void
609 1.18 haya cardbus_detach_card(sc)
610 1.18 haya struct cardbus_softc *sc;
611 1.18 haya {
612 1.18 haya struct cardbus_devfunc *ct, *ct_next, **prev_next;
613 1.18 haya
614 1.18 haya prev_next = &(sc->sc_funcs->ct_next);
615 1.18 haya
616 1.18 haya for (ct = sc->sc_funcs; ct != NULL; ct = ct_next) {
617 1.18 haya struct device *fndev = ct->ct_device;
618 1.18 haya ct_next = ct->ct_next;
619 1.18 haya
620 1.19 haya DPRINTF(("%s: detaching %s\n", sc->sc_dev.dv_xname, fndev->dv_xname));
621 1.18 haya /* call device detach function */
622 1.18 haya
623 1.18 haya if (0 != config_detach(fndev, 0)) {
624 1.18 haya printf("%s: cannot detaching dev %s, function %d\n",
625 1.18 haya sc->sc_dev.dv_xname, fndev->dv_xname, ct->ct_func);
626 1.18 haya prev_next = &(ct->ct_next);
627 1.18 haya } else {
628 1.18 haya sc->sc_poweron_func &= ~(1 << ct->ct_func);
629 1.18 haya *prev_next = ct->ct_next;
630 1.18 haya free(ct, M_DEVBUF);
631 1.18 haya }
632 1.18 haya }
633 1.19 haya
634 1.19 haya sc->sc_poweron_func = 0;
635 1.19 haya sc->sc_cf->cardbus_power(sc->sc_cc, CARDBUS_VCC_0V | CARDBUS_VPP_0V);
636 1.18 haya }
637 1.18 haya
638 1.18 haya
639 1.18 haya
640 1.18 haya
641 1.18 haya /*
642 1.1 haya * void *cardbus_intr_establish(cc, cf, irq, level, func, arg)
643 1.1 haya * Interrupt handler of pccard.
644 1.1 haya * args:
645 1.1 haya * cardbus_chipset_tag_t *cc
646 1.1 haya * int irq:
647 1.1 haya */
648 1.1 haya void *
649 1.1 haya cardbus_intr_establish(cc, cf, irq, level, func, arg)
650 1.1 haya cardbus_chipset_tag_t cc;
651 1.1 haya cardbus_function_tag_t cf;
652 1.1 haya cardbus_intr_handle_t irq;
653 1.1 haya int level;
654 1.1 haya int (*func) __P((void *));
655 1.1 haya void *arg;
656 1.1 haya {
657 1.1 haya DPRINTF(("- cardbus_intr_establish: irq %d\n", irq));
658 1.1 haya
659 1.1 haya return (*cf->cardbus_intr_establish)(cc, irq, level, func, arg);
660 1.1 haya }
661 1.1 haya
662 1.1 haya
663 1.1 haya
664 1.1 haya /*
665 1.1 haya * void cardbus_intr_disestablish(cc, cf, handler)
666 1.1 haya * Interrupt handler of pccard.
667 1.1 haya * args:
668 1.1 haya * cardbus_chipset_tag_t *cc
669 1.1 haya */
670 1.1 haya void
671 1.1 haya cardbus_intr_disestablish(cc, cf, handler)
672 1.1 haya cardbus_chipset_tag_t cc;
673 1.1 haya cardbus_function_tag_t cf;
674 1.1 haya void *handler;
675 1.1 haya {
676 1.1 haya DPRINTF(("- pccard_intr_disestablish\n"));
677 1.1 haya
678 1.1 haya (*cf->cardbus_intr_disestablish)(cc, handler);
679 1.1 haya return;
680 1.1 haya }
681 1.1 haya
682 1.1 haya
683 1.1 haya
684 1.8 joda /* XXX this should be merged with cardbus_function_{enable,disable},
685 1.8 joda but we don't have a ct when these functions are called */
686 1.8 joda
687 1.8 joda static void
688 1.8 joda enable_function(sc, cdstatus, function)
689 1.8 joda struct cardbus_softc *sc;
690 1.8 joda int cdstatus;
691 1.8 joda int function;
692 1.8 joda {
693 1.18 haya
694 1.21 mycroft if (sc->sc_poweron_func == 0) {
695 1.21 mycroft /* switch to 3V and/or wait for power to stabilize */
696 1.23 haya if (cdstatus & CARDBUS_3V_CARD) {
697 1.8 joda sc->sc_cf->cardbus_power(sc->sc_cc, CARDBUS_VCC_3V);
698 1.23 haya } else {
699 1.23 haya /* No cards other than 3.3V cards. */
700 1.23 haya return;
701 1.23 haya }
702 1.8 joda (sc->sc_cf->cardbus_ctrl)(sc->sc_cc, CARDBUS_RESET);
703 1.8 joda }
704 1.8 joda sc->sc_poweron_func |= (1 << function);
705 1.8 joda }
706 1.8 joda
707 1.8 joda static void
708 1.8 joda disable_function(sc, function)
709 1.8 joda struct cardbus_softc *sc;
710 1.8 joda int function;
711 1.8 joda {
712 1.18 haya
713 1.8 joda sc->sc_poweron_func &= ~(1 << function);
714 1.21 mycroft if (sc->sc_poweron_func == 0) {
715 1.8 joda /* power-off because no functions are enabled */
716 1.8 joda sc->sc_cf->cardbus_power(sc->sc_cc, CARDBUS_VCC_0V);
717 1.8 joda }
718 1.8 joda }
719 1.8 joda
720 1.1 haya /*
721 1.9 haya * int cardbus_function_enable(struct cardbus_softc *sc, int func)
722 1.1 haya *
723 1.1 haya * This function enables a function on a card. When no power is
724 1.1 haya * applied on the card, power will be applied on it.
725 1.1 haya */
726 1.1 haya int
727 1.9 haya cardbus_function_enable(sc, func)
728 1.9 haya struct cardbus_softc *sc;
729 1.9 haya int func;
730 1.1 haya {
731 1.1 haya cardbus_chipset_tag_t cc = sc->sc_cc;
732 1.1 haya cardbus_function_tag_t cf = sc->sc_cf;
733 1.1 haya cardbusreg_t command;
734 1.1 haya cardbustag_t tag;
735 1.1 haya
736 1.1 haya DPRINTF(("entering cardbus_function_enable... "));
737 1.1 haya
738 1.1 haya /* entering critical area */
739 1.1 haya
740 1.8 joda enable_function(sc, CARDBUS_3V_CARD, func); /* XXX: sc_vold should be used */
741 1.1 haya
742 1.1 haya /* exiting critical area */
743 1.1 haya
744 1.9 haya tag = cardbus_make_tag(cc, cf, sc->sc_bus, sc->sc_device, func);
745 1.9 haya
746 1.1 haya command = cardbus_conf_read(cc, cf, tag, CARDBUS_COMMAND_STATUS_REG);
747 1.1 haya command |= (CARDBUS_COMMAND_MEM_ENABLE | CARDBUS_COMMAND_IO_ENABLE | CARDBUS_COMMAND_MASTER_ENABLE); /* XXX: good guess needed */
748 1.9 haya
749 1.1 haya cardbus_conf_write(cc, cf, tag, CARDBUS_COMMAND_STATUS_REG, command);
750 1.1 haya
751 1.9 haya cardbus_free_tag(cc, cf, tag);
752 1.1 haya
753 1.1 haya DPRINTF(("%x\n", sc->sc_poweron_func));
754 1.1 haya
755 1.1 haya return 0;
756 1.1 haya }
757 1.1 haya
758 1.1 haya
759 1.1 haya /*
760 1.9 haya * int cardbus_function_disable(struct cardbus_softc *, int func)
761 1.1 haya *
762 1.1 haya * This function disable a function on a card. When no functions are
763 1.1 haya * enabled, it turns off the power.
764 1.1 haya */
765 1.1 haya int
766 1.9 haya cardbus_function_disable(sc, func)
767 1.9 haya struct cardbus_softc *sc;
768 1.9 haya int func;
769 1.1 haya {
770 1.1 haya
771 1.9 haya DPRINTF(("entering cardbus_function_disable... "));
772 1.1 haya
773 1.8 joda disable_function(sc, func);
774 1.1 haya
775 1.1 haya return 0;
776 1.1 haya }
777 1.1 haya
778 1.1 haya
779 1.16 thorpej /*
780 1.16 thorpej * int cardbus_get_capability(cardbus_chipset_tag_t cc,
781 1.16 thorpej * cardbus_function_tag_t cf, cardbustag_t tag, int capid, int *offset,
782 1.16 thorpej * cardbusreg_t *value)
783 1.16 thorpej *
784 1.16 thorpej * Find the specified PCI capability.
785 1.16 thorpej */
786 1.16 thorpej int
787 1.16 thorpej cardbus_get_capability(cc, cf, tag, capid, offset, value)
788 1.16 thorpej cardbus_chipset_tag_t cc;
789 1.16 thorpej cardbus_function_tag_t cf;
790 1.16 thorpej cardbustag_t tag;
791 1.16 thorpej int capid;
792 1.16 thorpej int *offset;
793 1.16 thorpej cardbusreg_t *value;
794 1.16 thorpej {
795 1.16 thorpej cardbusreg_t reg;
796 1.16 thorpej unsigned int ofs;
797 1.16 thorpej
798 1.16 thorpej reg = cardbus_conf_read(cc, cf, tag, PCI_COMMAND_STATUS_REG);
799 1.16 thorpej if (!(reg & PCI_STATUS_CAPLIST_SUPPORT))
800 1.16 thorpej return (0);
801 1.16 thorpej
802 1.16 thorpej ofs = PCI_CAPLIST_PTR(cardbus_conf_read(cc, cf, tag,
803 1.16 thorpej PCI_CAPLISTPTR_REG));
804 1.16 thorpej while (ofs != 0) {
805 1.16 thorpej #ifdef DIAGNOSTIC
806 1.16 thorpej if ((ofs & 3) || (ofs < 0x40))
807 1.16 thorpej panic("cardbus_get_capability");
808 1.16 thorpej #endif
809 1.16 thorpej reg = cardbus_conf_read(cc, cf, tag, ofs);
810 1.16 thorpej if (PCI_CAPLIST_CAP(reg) == capid) {
811 1.16 thorpej if (offset)
812 1.16 thorpej *offset = ofs;
813 1.16 thorpej if (value)
814 1.16 thorpej *value = reg;
815 1.16 thorpej return (1);
816 1.16 thorpej }
817 1.16 thorpej ofs = PCI_CAPLIST_NEXT(reg);
818 1.16 thorpej }
819 1.1 haya
820 1.16 thorpej return (0);
821 1.16 thorpej }
822 1.1 haya
823 1.1 haya
824 1.1 haya /*
825 1.1 haya * below this line, there are some functions for decoding tuples.
826 1.1 haya * They should go out from this file.
827 1.1 haya */
828 1.1 haya
829 1.10 joda static u_int8_t *
830 1.10 joda decode_tuple __P((u_int8_t *tuple, tuple_decode_func func, void *data));
831 1.1 haya
832 1.1 haya static int
833 1.10 joda decode_tuples(tuple, buflen, func, data)
834 1.1 haya u_int8_t *tuple;
835 1.1 haya int buflen;
836 1.10 joda tuple_decode_func func;
837 1.10 joda void *data;
838 1.1 haya {
839 1.1 haya u_int8_t *tp = tuple;
840 1.1 haya
841 1.20 soren if (PCMCIA_CISTPL_LINKTARGET != *tuple) {
842 1.1 haya DPRINTF(("WRONG TUPLE: 0x%x\n", *tuple));
843 1.1 haya return 0;
844 1.1 haya }
845 1.1 haya
846 1.10 joda while (NULL != (tp = decode_tuple(tp, func, data))) {
847 1.1 haya if (tuple + buflen < tp) {
848 1.1 haya break;
849 1.1 haya }
850 1.1 haya }
851 1.1 haya
852 1.1 haya return 1;
853 1.1 haya }
854 1.1 haya
855 1.1 haya
856 1.1 haya static u_int8_t *
857 1.10 joda decode_tuple(tuple, func, data)
858 1.1 haya u_int8_t *tuple;
859 1.10 joda tuple_decode_func func;
860 1.10 joda void *data;
861 1.1 haya {
862 1.10 joda u_int8_t type;
863 1.10 joda u_int8_t len;
864 1.1 haya
865 1.10 joda type = tuple[0];
866 1.10 joda len = tuple[1] + 2;
867 1.1 haya
868 1.10 joda (*func)(tuple, len, data);
869 1.1 haya
870 1.20 soren if (PCMCIA_CISTPL_END == type) {
871 1.10 joda return NULL;
872 1.1 haya }
873 1.1 haya
874 1.10 joda return tuple + len;
875 1.1 haya }
876 1.1 haya
877 1.1 haya
878 1.3 augustss #ifdef CARDBUS_DEBUG
879 1.10 joda static char *tuple_name __P((int type));
880 1.10 joda
881 1.1 haya static char *
882 1.1 haya tuple_name(type)
883 1.1 haya int type;
884 1.1 haya {
885 1.1 haya static char *tuple_name_s [] = {
886 1.1 haya "TPL_NULL", "TPL_DEVICE", "Reserved", "Reserved", /* 0-3 */
887 1.1 haya "CONFIG_CB", "CFTABLE_ENTRY_CB", "Reserved", "BAR", /* 4-7 */
888 1.1 haya "Reserved", "Reserved", "Reserved", "Reserved", /* 8-B */
889 1.1 haya "Reserved", "Reserved", "Reserved", "Reserved", /* C-F */
890 1.1 haya "CHECKSUM", "LONGLINK_A", "LONGLINK_C", "LINKTARGET", /* 10-13 */
891 1.1 haya "NO_LINK", "VERS_1", "ALTSTR", "DEVICE_A",
892 1.1 haya "JEDEC_C", "JEDEC_A", "CONFIG", "CFTABLE_ENTRY",
893 1.1 haya "DEVICE_OC", "DEVICE_OA", "DEVICE_GEO", "DEVICE_GEO_A",
894 1.1 haya "MANFID", "FUNCID", "FUNCE", "SWIL", /* 20-23 */
895 1.1 haya "Reserved", "Reserved", "Reserved", "Reserved", /* 24-27 */
896 1.1 haya "Reserved", "Reserved", "Reserved", "Reserved", /* 28-2B */
897 1.1 haya "Reserved", "Reserved", "Reserved", "Reserved", /* 2C-2F */
898 1.1 haya "Reserved", "Reserved", "Reserved", "Reserved", /* 30-33 */
899 1.1 haya "Reserved", "Reserved", "Reserved", "Reserved", /* 34-37 */
900 1.1 haya "Reserved", "Reserved", "Reserved", "Reserved", /* 38-3B */
901 1.1 haya "Reserved", "Reserved", "Reserved", "Reserved", /* 3C-3F */
902 1.1 haya "VERS_2", "FORMAT", "GEOMETRY", "BYTEORDER",
903 1.1 haya "DATE", "BATTERY", "ORG"
904 1.1 haya };
905 1.1 haya #define NAME_LEN(x) (sizeof x / sizeof(x[0]))
906 1.1 haya
907 1.1 haya if (type > 0 && type < NAME_LEN(tuple_name_s)) {
908 1.1 haya return tuple_name_s[type];
909 1.1 haya } else if (0xff == type) {
910 1.1 haya return "END";
911 1.1 haya } else {
912 1.1 haya return "Reserved";
913 1.1 haya }
914 1.1 haya }
915 1.10 joda
916 1.10 joda static void
917 1.10 joda print_tuple(tuple, len, data)
918 1.10 joda u_int8_t *tuple;
919 1.10 joda int len;
920 1.10 joda void *data;
921 1.10 joda {
922 1.10 joda int i;
923 1.10 joda
924 1.10 joda printf("tuple: %s len %d\n", tuple_name(tuple[0]), len);
925 1.10 joda
926 1.10 joda for (i = 0; i < len; ++i) {
927 1.10 joda if (i % 16 == 0) {
928 1.10 joda printf(" 0x%2x:", i);
929 1.10 joda }
930 1.10 joda printf(" %x",tuple[i]);
931 1.10 joda if (i % 16 == 15) {
932 1.10 joda printf("\n");
933 1.10 joda }
934 1.10 joda }
935 1.10 joda if (i % 16 != 0) {
936 1.10 joda printf("\n");
937 1.10 joda }
938 1.10 joda }
939 1.10 joda
940 1.3 augustss #endif
941