xref: /freebsd/sys/dev/pccbb/pccbb.c (revision 77b7cdf1999ee965ad494fddd184b18f532ac91a)
1 /*
2  * Copyright (c) 2002 M. Warner Losh.
3  * Copyright (c) 2000,2001 Jonathan Chen.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions, and the following disclaimer,
11  *    without modification, immediately at the beginning of the file.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in
14  *    the documentation and/or other materials provided with the
15  *    distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
21  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD$
30  */
31 
32 /*
33  * Copyright (c) 1998, 1999 and 2000
34  *      HAYAKAWA Koichi.  All rights reserved.
35  *
36  * Redistribution and use in source and binary forms, with or without
37  * modification, are permitted provided that the following conditions
38  * are met:
39  * 1. Redistributions of source code must retain the above copyright
40  *    notice, this list of conditions and the following disclaimer.
41  * 2. Redistributions in binary form must reproduce the above copyright
42  *    notice, this list of conditions and the following disclaimer in the
43  *    documentation and/or other materials provided with the distribution.
44  * 3. All advertising materials mentioning features or use of this software
45  *    must display the following acknowledgement:
46  *	This product includes software developed by HAYAKAWA Koichi.
47  * 4. The name of the author may not be used to endorse or promote products
48  *    derived from this software without specific prior written permission.
49  *
50  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
51  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
52  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
53  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
54  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
55  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
59  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60  */
61 
62 /*
63  * Driver for PCI to CardBus Bridge chips
64  *
65  * References:
66  *  TI Datasheets:
67  *   http://www-s.ti.com/cgi-bin/sc/generic2.cgi?family=PCI+CARDBUS+CONTROLLERS
68  *
69  * Written by Jonathan Chen <jon@freebsd.org>
70  * The author would like to acknowledge:
71  *  * HAYAKAWA Koichi: Author of the NetBSD code for the same thing
72  *  * Warner Losh: Newbus/newcard guru and author of the pccard side of things
73  *  * YAMAMOTO Shigeru: Author of another FreeBSD cardbus driver
74  *  * David Cross: Author of the initial ugly hack for a specific cardbus card
75  */
76 
77 #include <sys/param.h>
78 #include <sys/systm.h>
79 #include <sys/proc.h>
80 #include <sys/condvar.h>
81 #include <sys/errno.h>
82 #include <sys/kernel.h>
83 #include <sys/lock.h>
84 #include <sys/malloc.h>
85 #include <sys/mutex.h>
86 #include <sys/sysctl.h>
87 #include <sys/kthread.h>
88 #include <sys/bus.h>
89 #include <machine/bus.h>
90 #include <sys/rman.h>
91 #include <machine/resource.h>
92 
93 #include <pci/pcireg.h>
94 #include <pci/pcivar.h>
95 #include <machine/clock.h>
96 
97 #include <dev/pccard/pccardreg.h>
98 #include <dev/pccard/pccardvar.h>
99 
100 #include <dev/exca/excareg.h>
101 #include <dev/exca/excavar.h>
102 
103 #include <dev/pccbb/pccbbreg.h>
104 #include <dev/pccbb/pccbbvar.h>
105 
106 #include "power_if.h"
107 #include "card_if.h"
108 #include "pcib_if.h"
109 
110 #define	DPRINTF(x) do { if (cbb_debug) printf x; } while (0)
111 #define	DEVPRINTF(x) do { if (cbb_debug) device_printf x; } while (0)
112 
113 #define	PCI_MASK_CONFIG(DEV,REG,MASK,SIZE)				\
114 	pci_write_config(DEV, REG, pci_read_config(DEV, REG, SIZE) MASK, SIZE)
115 #define	PCI_MASK2_CONFIG(DEV,REG,MASK1,MASK2,SIZE)			\
116 	pci_write_config(DEV, REG, (					\
117 		pci_read_config(DEV, REG, SIZE) MASK1) MASK2, SIZE)
118 
119 #define CBB_START_MEM	0x88000000
120 #define CBB_START_32_IO 0x1000
121 #define CBB_START_16_IO 0x100
122 
123 struct yenta_chipinfo {
124 	uint32_t yc_id;
125 	const	char *yc_name;
126 	int	yc_chiptype;
127 } yc_chipsets[] = {
128 	/* Texas Instruments chips */
129 	{PCIC_ID_TI1031, "TI1031 PCI-PC Card Bridge", CB_TI113X},
130 	{PCIC_ID_TI1130, "TI1130 PCI-CardBus Bridge", CB_TI113X},
131 	{PCIC_ID_TI1131, "TI1131 PCI-CardBus Bridge", CB_TI113X},
132 
133 	{PCIC_ID_TI1210, "TI1210 PCI-CardBus Bridge", CB_TI12XX},
134 	{PCIC_ID_TI1211, "TI1211 PCI-CardBus Bridge", CB_TI12XX},
135 	{PCIC_ID_TI1220, "TI1220 PCI-CardBus Bridge", CB_TI12XX},
136 	{PCIC_ID_TI1221, "TI1221 PCI-CardBus Bridge", CB_TI12XX},
137 	{PCIC_ID_TI1225, "TI1225 PCI-CardBus Bridge", CB_TI12XX},
138 	{PCIC_ID_TI1250, "TI1250 PCI-CardBus Bridge", CB_TI125X},
139 	{PCIC_ID_TI1251, "TI1251 PCI-CardBus Bridge", CB_TI125X},
140 	{PCIC_ID_TI1251B,"TI1251B PCI-CardBus Bridge",CB_TI125X},
141 	{PCIC_ID_TI1260, "TI1260 PCI-CardBus Bridge", CB_TI12XX},
142 	{PCIC_ID_TI1260B,"TI1260B PCI-CardBus Bridge",CB_TI12XX},
143 	{PCIC_ID_TI1410, "TI1410 PCI-CardBus Bridge", CB_TI12XX},
144 	{PCIC_ID_TI1420, "TI1420 PCI-CardBus Bridge", CB_TI12XX},
145 	{PCIC_ID_TI1421, "TI1421 PCI-CardBus Bridge", CB_TI12XX},
146 	{PCIC_ID_TI1450, "TI1450 PCI-CardBus Bridge", CB_TI125X}, /*SIC!*/
147 	{PCIC_ID_TI1451, "TI1451 PCI-CardBus Bridge", CB_TI12XX},
148 	{PCIC_ID_TI1510, "TI1510 PCI-CardBus Bridge", CB_TI12XX},
149 	{PCIC_ID_TI1520, "TI1520 PCI-CardBus Bridge", CB_TI12XX},
150 	{PCIC_ID_TI4410, "TI4410 PCI-CardBus Bridge", CB_TI12XX},
151 	{PCIC_ID_TI4450, "TI4450 PCI-CardBus Bridge", CB_TI12XX},
152 	{PCIC_ID_TI4451, "TI4451 PCI-CardBus Bridge", CB_TI12XX},
153 	{PCIC_ID_TI4510, "TI4510 PCI-CardBus Bridge", CB_TI12XX},
154 
155 	/* Ricoh chips */
156 	{PCIC_ID_RICOH_RL5C465, "RF5C465 PCI-CardBus Bridge", CB_RF5C46X},
157 	{PCIC_ID_RICOH_RL5C466, "RF5C466 PCI-CardBus Bridge", CB_RF5C46X},
158 	{PCIC_ID_RICOH_RL5C475, "RF5C475 PCI-CardBus Bridge", CB_RF5C47X},
159 	{PCIC_ID_RICOH_RL5C476, "RF5C476 PCI-CardBus Bridge", CB_RF5C47X},
160 	{PCIC_ID_RICOH_RL5C477, "RF5C477 PCI-CardBus Bridge", CB_RF5C47X},
161 	{PCIC_ID_RICOH_RL5C478, "RF5C478 PCI-CardBus Bridge", CB_RF5C47X},
162 
163 	/* Toshiba products */
164 	{PCIC_ID_TOPIC95, "ToPIC95 PCI-CardBus Bridge", CB_TOPIC95},
165 	{PCIC_ID_TOPIC95B, "ToPIC95B PCI-CardBus Bridge", CB_TOPIC95},
166 	{PCIC_ID_TOPIC97, "ToPIC97 PCI-CardBus Bridge", CB_TOPIC97},
167 	{PCIC_ID_TOPIC100, "ToPIC100 PCI-CardBus Bridge", CB_TOPIC97},
168 
169 	/* Cirrus Logic */
170 	{PCIC_ID_CLPD6832, "CLPD6832 PCI-CardBus Bridge", CB_CIRRUS},
171 	{PCIC_ID_CLPD6833, "CLPD6833 PCI-CardBus Bridge", CB_CIRRUS},
172 	{PCIC_ID_CLPD6834, "CLPD6834 PCI-CardBus Bridge", CB_CIRRUS},
173 
174 	/* 02Micro */
175 	{PCIC_ID_OZ6832, "O2Micro OZ6832/6833 PCI-CardBus Bridge", CB_CIRRUS},
176 	{PCIC_ID_OZ6860, "O2Micro OZ6836/6860 PCI-CardBus Bridge", CB_CIRRUS},
177 	{PCIC_ID_OZ6872, "O2Micro OZ6812/6872 PCI-CardBus Bridge", CB_CIRRUS},
178 	{PCIC_ID_OZ6912, "O2Micro OZ6912/6972 PCI-CardBus Bridge", CB_CIRRUS},
179 	{PCIC_ID_OZ6922, "O2Micro OZ6922 PCI-CardBus Bridge", CB_CIRRUS},
180 	{PCIC_ID_OZ6933, "O2Micro OZ6933 PCI-CardBus Bridge", CB_CIRRUS},
181 
182 	/* sentinel */
183 	{0 /* null id */, "unknown", CB_UNKNOWN},
184 };
185 
186 /* sysctl vars */
187 SYSCTL_NODE(_hw, OID_AUTO, cbb, CTLFLAG_RD, 0, "CBB parameters");
188 
189 /* There's no way to say TUNEABLE_LONG to get the right types */
190 u_long cbb_start_mem = CBB_START_MEM;
191 TUNABLE_INT("hw.cbb.start_memory", (int *)&cbb_start_mem);
192 SYSCTL_ULONG(_hw_cbb, OID_AUTO, start_memory, CTLFLAG_RW,
193     &cbb_start_mem, CBB_START_MEM,
194     "Starting address for memory allocations");
195 
196 u_long cbb_start_16_io = CBB_START_16_IO;
197 TUNABLE_INT("hw.cbb.start_16_io", (int *)&cbb_start_16_io);
198 SYSCTL_ULONG(_hw_cbb, OID_AUTO, start_16_io, CTLFLAG_RW,
199     &cbb_start_16_io, CBB_START_16_IO,
200     "Starting ioport for 16-bit cards");
201 
202 u_long cbb_start_32_io = CBB_START_32_IO;
203 TUNABLE_INT("hw.cbb.start_32_io", (int *)&cbb_start_32_io);
204 SYSCTL_ULONG(_hw_cbb, OID_AUTO, start_32_io, CTLFLAG_RW,
205     &cbb_start_32_io, CBB_START_32_IO,
206     "Starting ioport for 32-bit cards");
207 
208 int cbb_debug = 0;
209 TUNABLE_INT("hw.cbb.debug", &cbb_debug);
210 SYSCTL_ULONG(_hw_cbb, OID_AUTO, debug, CTLFLAG_RW, &cbb_debug, 0,
211     "Verbose cardbus bridge debugging");
212 
213 static int	cbb_chipset(uint32_t pci_id, const char **namep);
214 static int	cbb_probe(device_t brdev);
215 static void	cbb_chipinit(struct cbb_softc *sc);
216 static int	cbb_attach(device_t brdev);
217 static int	cbb_detach(device_t brdev);
218 static int	cbb_shutdown(device_t brdev);
219 static void	cbb_driver_added(device_t brdev, driver_t *driver);
220 static void	cbb_child_detached(device_t brdev, device_t child);
221 static void	cbb_event_thread(void *arg);
222 static void	cbb_insert(struct cbb_softc *sc);
223 static void	cbb_removal(struct cbb_softc *sc);
224 static void	cbb_intr(void *arg);
225 static int	cbb_detect_voltage(device_t brdev);
226 static int	cbb_power(device_t brdev, int volts);
227 static void	cbb_cardbus_reset(device_t brdev);
228 static int	cbb_cardbus_power_enable_socket(device_t brdev,
229 		    device_t child);
230 static void	cbb_cardbus_power_disable_socket(device_t brdev,
231 		    device_t child);
232 static int	cbb_cardbus_io_open(device_t brdev, int win, uint32_t start,
233 		    uint32_t end);
234 static int	cbb_cardbus_mem_open(device_t brdev, int win,
235 		    uint32_t start, uint32_t end);
236 static void	cbb_cardbus_auto_open(struct cbb_softc *sc, int type);
237 static int	cbb_cardbus_activate_resource(device_t brdev, device_t child,
238 		    int type, int rid, struct resource *res);
239 static int	cbb_cardbus_deactivate_resource(device_t brdev,
240 		    device_t child, int type, int rid, struct resource *res);
241 static struct resource	*cbb_cardbus_alloc_resource(device_t brdev,
242 		    device_t child, int type, int *rid, u_long start,
243 		    u_long end, u_long count, uint flags);
244 static int	cbb_cardbus_release_resource(device_t brdev, device_t child,
245 		    int type, int rid, struct resource *res);
246 static int	cbb_power_enable_socket(device_t brdev, device_t child);
247 static void	cbb_power_disable_socket(device_t brdev, device_t child);
248 static int	cbb_activate_resource(device_t brdev, device_t child,
249 		    int type, int rid, struct resource *r);
250 static int	cbb_deactivate_resource(device_t brdev, device_t child,
251 		    int type, int rid, struct resource *r);
252 static struct resource	*cbb_alloc_resource(device_t brdev, device_t child,
253 		    int type, int *rid, u_long start, u_long end, u_long count,
254 		    uint flags);
255 static int	cbb_release_resource(device_t brdev, device_t child,
256 		    int type, int rid, struct resource *r);
257 static int	cbb_read_ivar(device_t brdev, device_t child, int which,
258 		    uintptr_t *result);
259 static int	cbb_write_ivar(device_t brdev, device_t child, int which,
260 		    uintptr_t value);
261 static int	cbb_maxslots(device_t brdev);
262 static uint32_t cbb_read_config(device_t brdev, int b, int s, int f,
263 		    int reg, int width);
264 static void	cbb_write_config(device_t brdev, int b, int s, int f,
265 		    int reg, uint32_t val, int width);
266 
267 /*
268  */
269 static __inline void
270 cbb_set(struct cbb_softc *sc, uint32_t reg, uint32_t val)
271 {
272 	bus_space_write_4(sc->bst, sc->bsh, reg, val);
273 }
274 
275 static __inline uint32_t
276 cbb_get(struct cbb_softc *sc, uint32_t reg)
277 {
278 	return (bus_space_read_4(sc->bst, sc->bsh, reg));
279 }
280 
281 static __inline void
282 cbb_setb(struct cbb_softc *sc, uint32_t reg, uint32_t bits)
283 {
284 	cbb_set(sc, reg, cbb_get(sc, reg) | bits);
285 }
286 
287 static __inline void
288 cbb_clrb(struct cbb_softc *sc, uint32_t reg, uint32_t bits)
289 {
290 	cbb_set(sc, reg, cbb_get(sc, reg) & ~bits);
291 }
292 
293 static void
294 cbb_remove_res(struct cbb_softc *sc, struct resource *res)
295 {
296 	struct cbb_reslist *rle;
297 
298 	SLIST_FOREACH(rle, &sc->rl, link) {
299 		if (rle->res == res) {
300 			SLIST_REMOVE(&sc->rl, rle, cbb_reslist, link);
301 			free(rle, M_DEVBUF);
302 			return;
303 		}
304 	}
305 }
306 
307 static struct resource *
308 cbb_find_res(struct cbb_softc *sc, int type, int rid)
309 {
310 	struct cbb_reslist *rle;
311 
312 	SLIST_FOREACH(rle, &sc->rl, link)
313 		if (SYS_RES_MEMORY == rle->type && rid == rle->rid)
314 			return (rle->res);
315 	return (NULL);
316 }
317 
318 static void
319 cbb_insert_res(struct cbb_softc *sc, struct resource *res, int type,
320     int rid)
321 {
322 	struct cbb_reslist *rle;
323 
324 	/*
325 	 * Need to record allocated resource so we can iterate through
326 	 * it later.
327 	 */
328 	rle = malloc(sizeof(struct cbb_reslist), M_DEVBUF, M_NOWAIT);
329 	if (!res)
330 		panic("cbb_cardbus_alloc_resource: can't record entry!");
331 	rle->res = res;
332 	rle->type = type;
333 	rle->rid = rid;
334 	SLIST_INSERT_HEAD(&sc->rl, rle, link);
335 }
336 
337 static void
338 cbb_destroy_res(struct cbb_softc *sc)
339 {
340 	struct cbb_reslist *rle;
341 
342 	while ((rle = SLIST_FIRST(&sc->rl)) != NULL) {
343 		device_printf(sc->dev, "Danger Will Robinson: Resource "
344 		    "left allocated!  This is a bug... "
345 		    "(rid=%x, type=%d, addr=%lx)\n", rle->rid, rle->type,
346 		    rman_get_start(rle->res));
347 		SLIST_REMOVE_HEAD(&sc->rl, link);
348 		free(rle, M_DEVBUF);
349 	}
350 }
351 
352 /************************************************************************/
353 /* Probe/Attach								*/
354 /************************************************************************/
355 
356 static int
357 cbb_chipset(uint32_t pci_id, const char **namep)
358 {
359 	struct yenta_chipinfo *ycp;
360 
361 	for (ycp = yc_chipsets; ycp->yc_id != 0 && pci_id != ycp->yc_id; ++ycp)
362 	    continue;
363 	if (namep != NULL)
364 		*namep = ycp->yc_name;
365 	return (ycp->yc_chiptype);
366 }
367 
368 static int
369 cbb_probe(device_t brdev)
370 {
371 	const char *name;
372 	uint32_t progif;
373 	uint32_t subclass;
374 
375 	/*
376 	 * Do we know that we support the chipset?  If so, then we
377 	 * accept the device.
378 	 */
379 	if (cbb_chipset(pci_get_devid(brdev), &name) != CB_UNKNOWN) {
380 		device_set_desc(brdev, name);
381 		return (0);
382 	}
383 
384 	/*
385 	 * We do support generic CardBus bridges.  All that we've seen
386 	 * to date have progif 0 (the Yenta spec, and successors mandate
387 	 * this).  We do not support PCI PCMCIA bridges (with one exception)
388 	 * with this driver since they generally are I/O mapped.  Those
389 	 * are supported by the pcic driver.  This should help us be more
390 	 * future proof.
391 	 */
392 	subclass = pci_get_subclass(brdev);
393 	progif = pci_get_progif(brdev);
394 	if (subclass == PCIS_BRIDGE_CARDBUS && progif == 0) {
395 		device_set_desc(brdev, "PCI-CardBus Bridge");
396 		return (0);
397 	}
398 	return (ENXIO);
399 }
400 
401 
402 static void
403 cbb_chipinit(struct cbb_softc *sc)
404 {
405 	uint32_t mux, sysctrl;
406 
407 	/* Set CardBus latency timer */
408 	if (pci_read_config(sc->dev, PCIR_SECLAT_1, 1) < 0x20)
409 		pci_write_config(sc->dev, PCIR_SECLAT_1, 0x20, 1);
410 
411 	/* Set PCI latency timer */
412 	if (pci_read_config(sc->dev, PCIR_LATTIMER, 1) < 0x20)
413 		pci_write_config(sc->dev, PCIR_LATTIMER, 0x20, 1);
414 
415 	/* Enable memory access */
416 	PCI_MASK_CONFIG(sc->dev, PCIR_COMMAND,
417 	    | PCIM_CMD_MEMEN
418 	    | PCIM_CMD_PORTEN
419 	    | PCIM_CMD_BUSMASTEREN, 2);
420 
421 	/* disable Legacy IO */
422 	switch (sc->chipset) {
423 	case CB_RF5C46X:
424 		PCI_MASK_CONFIG(sc->dev, CBBR_BRIDGECTRL,
425 		    & ~(CBBM_BRIDGECTRL_RL_3E0_EN |
426 		    CBBM_BRIDGECTRL_RL_3E2_EN), 2);
427 		break;
428 	default:
429 		pci_write_config(sc->dev, CBBR_LEGACY, 0x0, 4);
430 		break;
431 	}
432 
433 	/* Use PCI interrupt for interrupt routing */
434 	PCI_MASK2_CONFIG(sc->dev, CBBR_BRIDGECTRL,
435 	    & ~(CBBM_BRIDGECTRL_MASTER_ABORT |
436 	    CBBM_BRIDGECTRL_INTR_IREQ_EN),
437 	    | CBBM_BRIDGECTRL_WRITE_POST_EN,
438 	    2);
439 
440 	/*
441 	 * XXX this should be a function table, ala OLDCARD.  This means
442 	 * that we could more easily support ISA interrupts for pccard
443 	 * cards if we had to.
444 	 */
445 	switch (sc->chipset) {
446 	case CB_TI113X:
447 		/*
448 		 * The TI 1031, TI 1130 and TI 1131 all require another bit
449 		 * be set to enable PCI routing of interrupts, and then
450 		 * a bit for each of the CSC and Function interrupts we
451 		 * want routed.
452 		 */
453 		PCI_MASK_CONFIG(sc->dev, CBBR_CBCTRL,
454 		    | CBBM_CBCTRL_113X_PCI_INTR |
455 		    CBBM_CBCTRL_113X_PCI_CSC | CBBM_CBCTRL_113X_PCI_IRQ_EN,
456 		    1);
457 		PCI_MASK_CONFIG(sc->dev, CBBR_DEVCTRL,
458 		    & ~(CBBM_DEVCTRL_INT_SERIAL |
459 		    CBBM_DEVCTRL_INT_PCI), 1);
460 		break;
461 	case CB_TI12XX:
462 		/*
463 		 * Some TI 12xx (and [14][45]xx) based pci cards
464 		 * sometimes have issues with the MFUNC register not
465 		 * being initialized due to a bad EEPROM on board.
466 		 * Laptops that this matters on have this register
467 		 * properly initialized.
468 		 *
469 		 * The TI125X parts have a different register.
470 		 */
471 		mux = pci_read_config(sc->dev, CBBR_MFUNC, 4);
472 		sysctrl = pci_read_config(sc->dev, CBBR_SYSCTRL, 4);
473 		if (mux == 0) {
474 			mux = (mux & ~CBBM_MFUNC_PIN0) |
475 			    CBBM_MFUNC_PIN0_INTA;
476 			if ((sysctrl & CBBM_SYSCTRL_INTRTIE) == 0)
477 				mux = (mux & ~CBBM_MFUNC_PIN1) |
478 				    CBBM_MFUNC_PIN1_INTB;
479 			pci_write_config(sc->dev, CBBR_MFUNC, mux, 4);
480 		}
481 		/*FALLTHROUGH*/
482 	case CB_TI125X:
483 		/*
484 		 * Disable zoom video.  Some machines initialize this
485 		 * improperly and exerpience has shown that this helps
486 		 * on some machines.
487 		 */
488 		pci_write_config(sc->dev, CBBR_MMCTRL, 0, 4);
489 		break;
490 	case CB_TOPIC97:
491 		/*
492 		 * Disable Zoom Video, ToPIC 97, 100.
493 		 */
494 		pci_write_config(sc->dev, CBBR_TOPIC_ZV_CONTROL, 0, 1);
495 		/*
496 		 * ToPIC 97, 100
497 		 * At offset 0xa1: INTERRUPT CONTROL register
498 		 * 0x1: Turn on INT interrupts.
499 		 */
500 		PCI_MASK_CONFIG(sc->dev, CBBR_TOPIC_INTCTRL,
501 		    | CBBM_TOPIC_INTCTRL_INTIRQSEL, 1);
502 		goto topic_common;
503 	case CB_TOPIC95:
504 		/*
505 		 * SOCKETCTRL appears to be TOPIC 95/B specific
506 		 */
507 		PCI_MASK_CONFIG(sc->dev, CBBR_TOPIC_SOCKETCTRL,
508 		    | CBBM_TOPIC_SOCKETCTRL_SCR_IRQSEL, 4);
509 
510 	topic_common:;
511 		/*
512 		 * At offset 0xa0: SLOT CONTROL
513 		 * 0x80 Enable CardBus Functionality
514 		 * 0x40 Enable CardBus and PC Card registers
515 		 * 0x20 Lock ID in exca regs
516 		 * 0x10 Write protect ID in config regs
517 		 * Clear the rest of the bits, which defaults the slot
518 		 * in legacy mode to 0x3e0 and offset 0. (legacy
519 		 * mode is determined elsewhere)
520 		 */
521 		pci_write_config(sc->dev, CBBR_TOPIC_SLOTCTRL,
522 		    CBBM_TOPIC_SLOTCTRL_SLOTON |
523 		    CBBM_TOPIC_SLOTCTRL_SLOTEN |
524 		    CBBM_TOPIC_SLOTCTRL_ID_LOCK |
525 		    CBBM_TOPIC_SLOTCTRL_ID_WP, 1);
526 
527 		/*
528 		 * At offset 0xa3 Card Detect Control Register
529 		 * 0x80 CARDBUS enbale
530 		 * 0x01 Cleared for hardware change detect
531 		 */
532 		PCI_MASK2_CONFIG(sc->dev, CBBR_TOPIC_CDC,
533 		    | CBBM_TOPIC_CDC_CARDBUS,
534 		    & ~CBBM_TOPIC_CDC_SWDETECT, 4);
535 		break;
536 	}
537 
538 	/*
539 	 * Need to tell ExCA registers to route via PCI interrupts.  There
540 	 * are two ways to do this.  Once is to set INTR_ENABLE and the
541 	 * other is to set CSC to 0.  Since both methods are mutually
542 	 * compatible, we do both.
543 	 */
544 	exca_putb(&sc->exca, EXCA_INTR, EXCA_INTR_ENABLE);
545 	exca_putb(&sc->exca, EXCA_CSC_INTR, 0);
546 
547 	/* close all memory and io windows */
548 	pci_write_config(sc->dev, CBBR_MEMBASE0, 0xffffffff, 4);
549 	pci_write_config(sc->dev, CBBR_MEMLIMIT0, 0, 4);
550 	pci_write_config(sc->dev, CBBR_MEMBASE1, 0xffffffff, 4);
551 	pci_write_config(sc->dev, CBBR_MEMLIMIT1, 0, 4);
552 	pci_write_config(sc->dev, CBBR_IOBASE0, 0xffffffff, 4);
553 	pci_write_config(sc->dev, CBBR_IOLIMIT0, 0, 4);
554 	pci_write_config(sc->dev, CBBR_IOBASE1, 0xffffffff, 4);
555 	pci_write_config(sc->dev, CBBR_IOLIMIT1, 0, 4);
556 }
557 
558 static int
559 cbb_attach(device_t brdev)
560 {
561 	struct cbb_softc *sc = (struct cbb_softc *)device_get_softc(brdev);
562 	int rid;
563 
564 	mtx_init(&sc->mtx, device_get_nameunit(brdev), "cbb", MTX_DEF);
565 	cv_init(&sc->cv, "cbb cv");
566 	sc->chipset = cbb_chipset(pci_get_devid(brdev), NULL);
567 	sc->dev = brdev;
568 	sc->cbdev = NULL;
569 	sc->pccarddev = NULL;
570 	sc->secbus = pci_read_config(brdev, PCIR_SECBUS_2, 1);
571 	sc->subbus = pci_read_config(brdev, PCIR_SUBBUS_2, 1);
572 	SLIST_INIT(&sc->rl);
573 	STAILQ_INIT(&sc->intr_handlers);
574 
575 #ifndef	BURN_THE_BOATS
576 	/*
577 	 * The PCI bus code should assign us memory in the absense
578 	 * of the BIOS doing so.  However, 'should' isn't 'is,' so we kludge
579 	 * up something here until the PCI/acpi code properly assigns the
580 	 * resource.
581 	 */
582 #endif
583 	rid = CBBR_SOCKBASE;
584 	sc->base_res = bus_alloc_resource(brdev, SYS_RES_MEMORY, &rid,
585 	    0, ~0, 1, RF_ACTIVE);
586 	if (!sc->base_res) {
587 #ifdef	BURN_THE_BOATS
588 		device_printf(brdev, "Could not map register memory\n");
589 		mtx_destroy(&sc->mtx);
590 		cv_destroy(&sc->cv);
591 		return (ENOMEM);
592 #else
593 		uint32_t sockbase;
594 		/*
595 		 * Generally, the BIOS will assign this memory for us.
596 		 * However, newer BIOSes do not because the MS design
597 		 * documents have mandated that this is for the OS
598 		 * to assign rather than the BIOS.  This driver shouldn't
599 		 * be doing this, but until the pci bus code (or acpi)
600 		 * does this, we allow CardBus bridges to work on more
601 		 * machines.
602 		 */
603 		pci_write_config(brdev, rid, 0xfffffffful, 4);
604 		sockbase = pci_read_config(brdev, rid, 4);
605 		sockbase = (sockbase & 0xfffffff0ul) &
606 		    -(sockbase & 0xfffffff0ul);
607 		sc->base_res = bus_generic_alloc_resource(
608 		    device_get_parent(brdev), brdev, SYS_RES_MEMORY,
609 		    &rid, cbb_start_mem, ~0, sockbase,
610 		    RF_ACTIVE | rman_make_alignment_flags(sockbase));
611 		if (!sc->base_res) {
612 			device_printf(brdev,
613 			    "Could not grab register memory\n");
614 			mtx_destroy(&sc->mtx);
615 			cv_destroy(&sc->cv);
616 			return (ENOMEM);
617 		}
618 		sc->flags |= CBB_KLUDGE_ALLOC;
619 		pci_write_config(brdev, CBBR_SOCKBASE,
620 		    rman_get_start(sc->base_res), 4);
621 		DEVPRINTF((brdev, "PCI Memory allocated: %08lx\n",
622 		    rman_get_start(sc->base_res)));
623 #endif
624 	}
625 
626 	sc->bst = rman_get_bustag(sc->base_res);
627 	sc->bsh = rman_get_bushandle(sc->base_res);
628 	exca_init(&sc->exca, brdev, sc->bst, sc->bsh, CBB_EXCA_OFFSET);
629 	sc->exca.flags |= EXCA_HAS_MEMREG_WIN;
630 	sc->exca.chipset = EXCA_CARDBUS;
631 	cbb_chipinit(sc);
632 
633 	/* attach children */
634 	sc->cbdev = device_add_child(brdev, "cardbus", -1);
635 	if (sc->cbdev == NULL)
636 		DEVPRINTF((brdev, "WARNING: cannot add cardbus bus.\n"));
637 	else if (device_probe_and_attach(sc->cbdev) != 0) {
638 		DEVPRINTF((brdev, "WARNING: cannot attach cardbus bus!\n"));
639 		sc->cbdev = NULL;
640 	}
641 
642 	sc->pccarddev = device_add_child(brdev, "pccard", -1);
643 	if (sc->pccarddev == NULL)
644 		DEVPRINTF((brdev, "WARNING: cannot add pccard bus.\n"));
645 	else if (device_probe_and_attach(sc->pccarddev) != 0) {
646 		DEVPRINTF((brdev, "WARNING: cannot attach pccard bus.\n"));
647 		sc->pccarddev = NULL;
648 	}
649 
650 	/* Map and establish the interrupt. */
651 	rid = 0;
652 	sc->irq_res = bus_alloc_resource(brdev, SYS_RES_IRQ, &rid, 0, ~0, 1,
653 	    RF_SHAREABLE | RF_ACTIVE);
654 	if (sc->irq_res == NULL) {
655 		printf("cbb: Unable to map IRQ...\n");
656 		goto err;
657 		return (ENOMEM);
658 	}
659 
660 	if (bus_setup_intr(brdev, sc->irq_res, INTR_TYPE_AV, cbb_intr, sc,
661 	    &sc->intrhand)) {
662 		device_printf(brdev, "couldn't establish interrupt");
663 		goto err;
664 	}
665 
666 	/* reset 16-bit pcmcia bus */
667 	exca_clrb(&sc->exca, EXCA_INTR, EXCA_INTR_RESET);
668 
669 	/* turn off power */
670 	cbb_power(brdev, CARD_VCC_0V | CARD_VPP_0V);
671 
672 	/* CSC Interrupt: Card detect interrupt on */
673 	cbb_setb(sc, CBB_SOCKET_MASK, CBB_SOCKET_MASK_CD);
674 
675 	/* reset interrupt */
676 	cbb_set(sc, CBB_SOCKET_EVENT, cbb_get(sc, CBB_SOCKET_EVENT));
677 
678 	/* Start the thread */
679 	if (kthread_create(cbb_event_thread, sc, &sc->event_thread, 0, 0,
680 		"%s%d", device_get_name(sc->dev), device_get_unit(sc->dev))) {
681 		device_printf (sc->dev, "unable to create event thread.\n");
682 		panic ("cbb_create_event_thread");
683 	}
684 
685 	return (0);
686 err:
687 	if (sc->irq_res)
688 		bus_release_resource(brdev, SYS_RES_IRQ, 0, sc->irq_res);
689 	if (sc->base_res) {
690 		if (sc->flags & CBB_KLUDGE_ALLOC)
691 			bus_generic_release_resource(device_get_parent(brdev),
692 			    brdev, SYS_RES_MEMORY, CBBR_SOCKBASE,
693 			    sc->base_res);
694 		else
695 			bus_release_resource(brdev, SYS_RES_MEMORY,
696 			    CBBR_SOCKBASE, sc->base_res);
697 	}
698 	mtx_destroy(&sc->mtx);
699 	cv_destroy(&sc->cv);
700 	return (ENOMEM);
701 }
702 
703 static int
704 cbb_detach(device_t brdev)
705 {
706 	struct cbb_softc *sc = device_get_softc(brdev);
707 	int numdevs;
708 	device_t *devlist;
709 	int tmp;
710 	int error;
711 
712 	device_get_children(brdev, &devlist, &numdevs);
713 
714 	error = 0;
715 	for (tmp = 0; tmp < numdevs; tmp++) {
716 		if (device_detach(devlist[tmp]) == 0)
717 			device_delete_child(brdev, devlist[tmp]);
718 		else
719 			error++;
720 	}
721 	free(devlist, M_TEMP);
722 	if (error > 0)
723 		return (ENXIO);
724 
725 	mtx_lock(&sc->mtx);
726 	bus_teardown_intr(brdev, sc->irq_res, sc->intrhand);
727 	sc->flags |= CBB_KTHREAD_DONE;
728 	if (sc->flags & CBB_KTHREAD_RUNNING) {
729 		cv_broadcast(&sc->cv);
730 		msleep(sc->event_thread, &sc->mtx, PWAIT, "cbbun", 0);
731 	}
732 	mtx_unlock(&sc->mtx);
733 
734 	bus_release_resource(brdev, SYS_RES_IRQ, 0, sc->irq_res);
735 	if (sc->flags & CBB_KLUDGE_ALLOC)
736 		bus_generic_release_resource(device_get_parent(brdev),
737 		    brdev, SYS_RES_MEMORY, CBBR_SOCKBASE, sc->base_res);
738 	else
739 		bus_release_resource(brdev, SYS_RES_MEMORY,
740 		    CBBR_SOCKBASE, sc->base_res);
741 	mtx_destroy(&sc->mtx);
742 	cv_destroy(&sc->cv);
743 	return (0);
744 }
745 
746 static int
747 cbb_shutdown(device_t brdev)
748 {
749 	struct cbb_softc *sc = (struct cbb_softc *)device_get_softc(brdev);
750 	/* properly reset everything at shutdown */
751 
752 	PCI_MASK_CONFIG(brdev, CBBR_BRIDGECTRL, |CBBM_BRIDGECTRL_RESET, 2);
753 	exca_clrb(&sc->exca, EXCA_INTR, EXCA_INTR_RESET);
754 
755 	cbb_set(sc, CBB_SOCKET_MASK, 0);
756 
757 	cbb_power(brdev, CARD_VCC_0V | CARD_VPP_0V);
758 
759 	exca_putb(&sc->exca, EXCA_ADDRWIN_ENABLE, 0);
760 	pci_write_config(brdev, CBBR_MEMBASE0, 0, 4);
761 	pci_write_config(brdev, CBBR_MEMLIMIT0, 0, 4);
762 	pci_write_config(brdev, CBBR_MEMBASE1, 0, 4);
763 	pci_write_config(brdev, CBBR_MEMLIMIT1, 0, 4);
764 	pci_write_config(brdev, CBBR_IOBASE0, 0, 4);
765 	pci_write_config(brdev, CBBR_IOLIMIT0, 0, 4);
766 	pci_write_config(brdev, CBBR_IOBASE1, 0, 4);
767 	pci_write_config(brdev, CBBR_IOLIMIT1, 0, 4);
768 	pci_write_config(brdev, PCIR_COMMAND, 0, 2);
769 	return (0);
770 }
771 
772 static int
773 cbb_setup_intr(device_t dev, device_t child, struct resource *irq,
774   int flags, driver_intr_t *intr, void *arg, void **cookiep)
775 {
776 	struct cbb_intrhand *ih;
777 	struct cbb_softc *sc = device_get_softc(dev);
778 
779 	/*
780 	 * You aren't allowed to have fast interrupts for pccard/cardbus
781 	 * things since those interrupts are PCI and shared.  Since we use
782 	 * the PCI interrupt for the status change interrupts, it can't be
783 	 * free for use by the driver.  Fast interrupts must not be shared.
784 	 */
785 	if ((flags & INTR_FAST) != 0)
786 		return (EINVAL);
787 	ih = malloc(sizeof(struct cbb_intrhand), M_DEVBUF, M_NOWAIT);
788 	if (ih == NULL)
789 		return (ENOMEM);
790 	*cookiep = ih;
791 	ih->intr = intr;
792 	ih->arg = arg;
793 	STAILQ_INSERT_TAIL(&sc->intr_handlers, ih, entries);
794 	/*
795 	 * XXX need to turn on ISA interrupts, if we ever support them, but
796 	 * XXX for now that's all we need to do.
797 	 */
798 	return (0);
799 }
800 
801 static int
802 cbb_teardown_intr(device_t dev, device_t child, struct resource *irq,
803     void *cookie)
804 {
805 	struct cbb_intrhand *ih;
806 	struct cbb_softc *sc = device_get_softc(dev);
807 
808 	/* XXX Need to do different things for ISA interrupts. */
809 	ih = (struct cbb_intrhand *) cookie;
810 	STAILQ_REMOVE(&sc->intr_handlers, ih, cbb_intrhand, entries);
811 	free(ih, M_DEVBUF);
812 	return (0);
813 }
814 
815 
816 static void
817 cbb_driver_added(device_t brdev, driver_t *driver)
818 {
819 	struct cbb_softc *sc = device_get_softc(brdev);
820 	device_t *devlist;
821 	device_t dev;
822 	int tmp;
823 	int numdevs;
824 	int wake = 0;
825 
826 	DEVICE_IDENTIFY(driver, brdev);
827 	device_get_children(brdev, &devlist, &numdevs);
828 	for (tmp = 0; tmp < numdevs; tmp++) {
829 		dev = devlist[tmp];
830 		if (device_get_state(dev) == DS_NOTPRESENT &&
831 		    device_probe_and_attach(dev) == 0)
832 			wake++;
833 	}
834 	free(devlist, M_TEMP);
835 
836 	if (wake > 0) {
837 		mtx_lock(&sc->mtx);
838 		cv_signal(&sc->cv);
839 		mtx_unlock(&sc->mtx);
840 	}
841 }
842 
843 static void
844 cbb_child_detached(device_t brdev, device_t child)
845 {
846 	struct cbb_softc *sc = device_get_softc(brdev);
847 
848 	if (child != sc->cbdev && child != sc->pccarddev)
849 		device_printf(brdev, "Unknown child detached: %s\n",
850 		    device_get_nameunit(child));
851 }
852 
853 /************************************************************************/
854 /* Kthreads								*/
855 /************************************************************************/
856 
857 static void
858 cbb_event_thread(void *arg)
859 {
860 	struct cbb_softc *sc = arg;
861 	uint32_t status;
862 	int err;
863 
864 	/*
865 	 * We take out Giant here because we need it deep, down in
866 	 * the bowels of the vm system for mapping the memory we need
867 	 * to read the CIS.  We also need it for kthread_exit, which
868 	 * drops it.
869 	 */
870 	sc->flags |= CBB_KTHREAD_RUNNING;
871 	while (1) {
872 		/*
873 		 * Check to see if we have anything first so that
874 		 * if there's a card already inserted, we do the
875 		 * right thing.
876 		 */
877 		if (sc->flags & CBB_KTHREAD_DONE)
878 			break;
879 
880 		status = cbb_get(sc, CBB_SOCKET_STATE);
881 		mtx_lock(&Giant);
882 		if ((status & CBB_SOCKET_STAT_CD) == 0)
883 			cbb_insert(sc);
884 		else
885 			cbb_removal(sc);
886 		mtx_unlock(&Giant);
887 
888 		/*
889 		 * Wait until it has been 1s since the last time we
890 		 * get an interrupt.  We handle the rest of the interrupt
891 		 * at the top of the loop.
892 		 */
893 		mtx_lock(&sc->mtx);
894 		cv_wait(&sc->cv, &sc->mtx);
895 		err = 0;
896 		while (err != EWOULDBLOCK &&
897 		    (sc->flags & CBB_KTHREAD_DONE) == 0)
898 			err = cv_timedwait(&sc->cv, &sc->mtx, 1 * hz);
899 		mtx_unlock(&sc->mtx);
900 	}
901 	sc->flags &= ~CBB_KTHREAD_RUNNING;
902 	mtx_lock(&Giant);
903 	kthread_exit(0);
904 }
905 
906 /************************************************************************/
907 /* Insert/removal							*/
908 /************************************************************************/
909 
910 static void
911 cbb_insert(struct cbb_softc *sc)
912 {
913 	uint32_t sockevent, sockstate;
914 
915 	sockevent = cbb_get(sc, CBB_SOCKET_EVENT);
916 	sockstate = cbb_get(sc, CBB_SOCKET_STATE);
917 
918 	DEVPRINTF((sc->dev, "card inserted: event=0x%08x, state=%08x\n",
919 	    sockevent, sockstate));
920 
921 	if (sockstate & CBB_SOCKET_STAT_16BIT) {
922 		if (sc->pccarddev != NULL) {
923 			sc->flags |= CBB_16BIT_CARD;
924 			sc->flags |= CBB_CARD_OK;
925 			if (CARD_ATTACH_CARD(sc->pccarddev) != 0)
926 				device_printf(sc->dev,
927 				    "PC Card card activation failed\n");
928 		} else {
929 			device_printf(sc->dev,
930 			    "PC Card inserted, but no pccard bus.\n");
931 		}
932 	} else if (sockstate & CBB_SOCKET_STAT_CB) {
933 		if (sc->cbdev != NULL) {
934 			sc->flags &= ~CBB_16BIT_CARD;
935 			sc->flags |= CBB_CARD_OK;
936 			if (CARD_ATTACH_CARD(sc->cbdev) != 0)
937 				device_printf(sc->dev,
938 				    "CardBus card activation failed\n");
939 		} else {
940 			device_printf(sc->dev,
941 			    "CardBus card inserted, but no cardbus bus.\n");
942 		}
943 	} else {
944 		/*
945 		 * We should power the card down, and try again a couple of
946 		 * times if this happens. XXX
947 		 */
948 		device_printf(sc->dev, "Unsupported card type detected\n");
949 	}
950 }
951 
952 static void
953 cbb_removal(struct cbb_softc *sc)
954 {
955 	if (sc->flags & CBB_16BIT_CARD) {
956 		if (sc->pccarddev != NULL)
957 			CARD_DETACH_CARD(sc->pccarddev);
958 	} else {
959 		if (sc->cbdev != NULL)
960 			CARD_DETACH_CARD(sc->cbdev);
961 	}
962 	cbb_destroy_res(sc);
963 }
964 
965 /************************************************************************/
966 /* Interrupt Handler							*/
967 /************************************************************************/
968 
969 static void
970 cbb_intr(void *arg)
971 {
972 	struct cbb_softc *sc = arg;
973 	uint32_t sockevent;
974 	struct cbb_intrhand *ih;
975 
976 	/*
977 	 * This ISR needs work XXX
978 	 */
979 	sockevent = cbb_get(sc, CBB_SOCKET_EVENT);
980 	if (sockevent) {
981 		/* ack the interrupt */
982 		cbb_setb(sc, CBB_SOCKET_EVENT, sockevent);
983 
984 		/*
985 		 * If anything has happened to the socket, we assume that
986 		 * the card is no longer OK, and we shouldn't call its
987 		 * ISR.  We set CARD_OK as soon as we've attached the
988 		 * card.  This helps in a noisy eject, which happens
989 		 * all too often when users are ejecting their PC Cards.
990 		 *
991 		 * We use this method in preference to checking to see if
992 		 * the card is still there because the check suffers from
993 		 * a race condition in the bouncing case.  Prior versions
994 		 * of the pccard software used a similar trick and achieved
995 		 * excellent results.
996 		 */
997 		if (sockevent & CBB_SOCKET_EVENT_CD) {
998 			mtx_lock(&sc->mtx);
999 			sc->flags &= ~CBB_CARD_OK;
1000 			cv_signal(&sc->cv);
1001 			mtx_unlock(&sc->mtx);
1002 		}
1003 		if (sockevent & CBB_SOCKET_EVENT_CSTS) {
1004 			DPRINTF((" cstsevent occured: 0x%08x\n",
1005 			    cbb_get(sc, CBB_SOCKET_STATE)));
1006 		}
1007 		if (sockevent & CBB_SOCKET_EVENT_POWER) {
1008 			DPRINTF((" pwrevent occured: 0x%08x\n",
1009 			    cbb_get(sc, CBB_SOCKET_STATE)));
1010 		}
1011 		/* Other bits? */
1012 	}
1013 	if (sc->flags & CBB_CARD_OK) {
1014 		STAILQ_FOREACH(ih, &sc->intr_handlers, entries) {
1015 			(*ih->intr)(ih->arg);
1016 		}
1017 	}
1018 }
1019 
1020 /************************************************************************/
1021 /* Generic Power functions						*/
1022 /************************************************************************/
1023 
1024 static int
1025 cbb_detect_voltage(device_t brdev)
1026 {
1027 	struct cbb_softc *sc = device_get_softc(brdev);
1028 	uint32_t psr;
1029 	int vol = CARD_UKN_CARD;
1030 
1031 	psr = cbb_get(sc, CBB_SOCKET_STATE);
1032 
1033 	if (psr & CBB_SOCKET_STAT_5VCARD)
1034 		vol |= CARD_5V_CARD;
1035 	if (psr & CBB_SOCKET_STAT_3VCARD)
1036 		vol |= CARD_3V_CARD;
1037 	if (psr & CBB_SOCKET_STAT_XVCARD)
1038 		vol |= CARD_XV_CARD;
1039 	if (psr & CBB_SOCKET_STAT_YVCARD)
1040 		vol |= CARD_YV_CARD;
1041 
1042 	return (vol);
1043 }
1044 
1045 static int
1046 cbb_power(device_t brdev, int volts)
1047 {
1048 	uint32_t status, sock_ctrl;
1049 	struct cbb_softc *sc = device_get_softc(brdev);
1050 	int timeout;
1051 	uint32_t sockevent;
1052 
1053 	DEVPRINTF((sc->dev, "cbb_power: %s and %s [%x]\n",
1054 	    (volts & CARD_VCCMASK) == CARD_VCC_UC ? "CARD_VCC_UC" :
1055 	    (volts & CARD_VCCMASK) == CARD_VCC_5V ? "CARD_VCC_5V" :
1056 	    (volts & CARD_VCCMASK) == CARD_VCC_3V ? "CARD_VCC_3V" :
1057 	    (volts & CARD_VCCMASK) == CARD_VCC_XV ? "CARD_VCC_XV" :
1058 	    (volts & CARD_VCCMASK) == CARD_VCC_YV ? "CARD_VCC_YV" :
1059 	    (volts & CARD_VCCMASK) == CARD_VCC_0V ? "CARD_VCC_0V" :
1060 	    "VCC-UNKNOWN",
1061 	    (volts & CARD_VPPMASK) == CARD_VPP_UC ? "CARD_VPP_UC" :
1062 	    (volts & CARD_VPPMASK) == CARD_VPP_12V ? "CARD_VPP_12V" :
1063 	    (volts & CARD_VPPMASK) == CARD_VPP_VCC ? "CARD_VPP_VCC" :
1064 	    (volts & CARD_VPPMASK) == CARD_VPP_0V ? "CARD_VPP_0V" :
1065 	    "VPP-UNKNOWN",
1066 	    volts));
1067 
1068 	status = cbb_get(sc, CBB_SOCKET_STATE);
1069 	sock_ctrl = cbb_get(sc, CBB_SOCKET_CONTROL);
1070 
1071 	switch (volts & CARD_VCCMASK) {
1072 	case CARD_VCC_UC:
1073 		break;
1074 	case CARD_VCC_5V:
1075 		if (CBB_SOCKET_STAT_5VCARD & status) { /* check 5 V card */
1076 			sock_ctrl &= ~CBB_SOCKET_CTRL_VCCMASK;
1077 			sock_ctrl |= CBB_SOCKET_CTRL_VCC_5V;
1078 		} else {
1079 			device_printf(sc->dev,
1080 			    "BAD voltage request: no 5 V card\n");
1081 		}
1082 		break;
1083 	case CARD_VCC_3V:
1084 		if (CBB_SOCKET_STAT_3VCARD & status) {
1085 			sock_ctrl &= ~CBB_SOCKET_CTRL_VCCMASK;
1086 			sock_ctrl |= CBB_SOCKET_CTRL_VCC_3V;
1087 		} else {
1088 			device_printf(sc->dev,
1089 			    "BAD voltage request: no 3.3 V card\n");
1090 		}
1091 		break;
1092 	case CARD_VCC_0V:
1093 		sock_ctrl &= ~CBB_SOCKET_CTRL_VCCMASK;
1094 		break;
1095 	default:
1096 		return (0);			/* power NEVER changed */
1097 		break;
1098 	}
1099 
1100 	switch (volts & CARD_VPPMASK) {
1101 	case CARD_VPP_UC:
1102 		break;
1103 	case CARD_VPP_0V:
1104 		sock_ctrl &= ~CBB_SOCKET_CTRL_VPPMASK;
1105 		break;
1106 	case CARD_VPP_VCC:
1107 		sock_ctrl &= ~CBB_SOCKET_CTRL_VPPMASK;
1108 		sock_ctrl |= ((sock_ctrl >> 4) & 0x07);
1109 		break;
1110 	case CARD_VPP_12V:
1111 		sock_ctrl &= ~CBB_SOCKET_CTRL_VPPMASK;
1112 		sock_ctrl |= CBB_SOCKET_CTRL_VPP_12V;
1113 		break;
1114 	}
1115 
1116 	if (cbb_get(sc, CBB_SOCKET_CONTROL) == sock_ctrl)
1117 		return (1); /* no change necessary */
1118 
1119 	cbb_set(sc, CBB_SOCKET_CONTROL, sock_ctrl);
1120 	status = cbb_get(sc, CBB_SOCKET_STATE);
1121 
1122 	/*
1123 	 * XXX This busy wait is bogus.  We should wait for a power
1124 	 * interrupt and then whine if the status is bad.  If we're
1125 	 * worried about the card not coming up, then we should also
1126 	 * schedule a timeout which we can cacel in the power interrupt.
1127 	 */
1128 	timeout = 20;
1129 	do {
1130 		DELAY(20*1000);
1131 		sockevent = cbb_get(sc, CBB_SOCKET_EVENT);
1132 	} while (!(sockevent & CBB_SOCKET_EVENT_POWER) && --timeout > 0);
1133 	/* reset event status */
1134 	/* XXX should only reset EVENT_POWER */
1135 	cbb_set(sc, CBB_SOCKET_EVENT, sockevent);
1136 	if (timeout < 0) {
1137 		printf ("VCC supply failed.\n");
1138 		return (0);
1139 	}
1140 
1141 	/* XXX
1142 	 * delay 400 ms: thgough the standard defines that the Vcc set-up time
1143 	 * is 20 ms, some PC-Card bridge requires longer duration.
1144 	 * XXX Note: We should check the stutus AFTER the delay to give time
1145 	 * for things to stabilize.
1146 	 */
1147 	DELAY(400*1000);
1148 
1149 	if (status & CBB_SOCKET_STAT_BADVCC) {
1150 		device_printf(sc->dev,
1151 		    "bad Vcc request. ctrl=0x%x, status=0x%x\n",
1152 		    sock_ctrl ,status);
1153 		printf("cbb_power: %s and %s [%x]\n",
1154 		    (volts & CARD_VCCMASK) == CARD_VCC_UC ? "CARD_VCC_UC" :
1155 		    (volts & CARD_VCCMASK) == CARD_VCC_5V ? "CARD_VCC_5V" :
1156 		    (volts & CARD_VCCMASK) == CARD_VCC_3V ? "CARD_VCC_3V" :
1157 		    (volts & CARD_VCCMASK) == CARD_VCC_XV ? "CARD_VCC_XV" :
1158 		    (volts & CARD_VCCMASK) == CARD_VCC_YV ? "CARD_VCC_YV" :
1159 		    (volts & CARD_VCCMASK) == CARD_VCC_0V ? "CARD_VCC_0V" :
1160 		    "VCC-UNKNOWN",
1161 		    (volts & CARD_VPPMASK) == CARD_VPP_UC ? "CARD_VPP_UC" :
1162 		    (volts & CARD_VPPMASK) == CARD_VPP_12V ? "CARD_VPP_12V":
1163 		    (volts & CARD_VPPMASK) == CARD_VPP_VCC ? "CARD_VPP_VCC":
1164 		    (volts & CARD_VPPMASK) == CARD_VPP_0V ? "CARD_VPP_0V" :
1165 		    "VPP-UNKNOWN",
1166 		    volts);
1167 		return (0);
1168 	}
1169 	return (1);		/* power changed correctly */
1170 }
1171 
1172 /*
1173  * detect the voltage for the card, and set it.  Since the power
1174  * used is the square of the voltage, lower voltages is a big win
1175  * and what Windows does (and what Microsoft prefers).  The MS paper
1176  * also talks about preferring the CIS entry as well.
1177  */
1178 static int
1179 cbb_do_power(device_t brdev)
1180 {
1181 	int voltage;
1182 
1183 	/* Prefer lowest voltage supported */
1184 	voltage = cbb_detect_voltage(brdev);
1185 	cbb_power(brdev, CARD_VCC_0V | CARD_VPP_0V);
1186 	if (voltage & CARD_YV_CARD)
1187 		cbb_power(brdev, CARD_VCC_YV | CARD_VPP_VCC);
1188 	else if (voltage & CARD_XV_CARD)
1189 		cbb_power(brdev, CARD_VCC_XV | CARD_VPP_VCC);
1190 	else if (voltage & CARD_3V_CARD)
1191 		cbb_power(brdev, CARD_VCC_3V | CARD_VPP_VCC);
1192 	else if (voltage & CARD_5V_CARD)
1193 		cbb_power(brdev, CARD_VCC_5V | CARD_VPP_VCC);
1194 	else {
1195 		device_printf(brdev, "Unknown card voltage\n");
1196 		return (ENXIO);
1197 	}
1198 	return (0);
1199 }
1200 
1201 /************************************************************************/
1202 /* CardBus power functions						*/
1203 /************************************************************************/
1204 
1205 static void
1206 cbb_cardbus_reset(device_t brdev)
1207 {
1208 	struct cbb_softc *sc = device_get_softc(brdev);
1209 	int delay_us;
1210 
1211 	delay_us = sc->chipset == CB_RF5C47X ? 400*1000 : 20*1000;
1212 
1213 	PCI_MASK_CONFIG(brdev, CBBR_BRIDGECTRL, |CBBM_BRIDGECTRL_RESET, 2);
1214 
1215 	DELAY(delay_us);
1216 
1217 	/* If a card exists, unreset it! */
1218 	if ((cbb_get(sc, CBB_SOCKET_STATE) & CBB_SOCKET_STAT_CD) == 0) {
1219 		PCI_MASK_CONFIG(brdev, CBBR_BRIDGECTRL,
1220 		    &~CBBM_BRIDGECTRL_RESET, 2);
1221 		DELAY(delay_us);
1222 	}
1223 }
1224 
1225 static int
1226 cbb_cardbus_power_enable_socket(device_t brdev, device_t child)
1227 {
1228 	struct cbb_softc *sc = device_get_softc(brdev);
1229 	int err;
1230 
1231 	if ((cbb_get(sc, CBB_SOCKET_STATE) & CBB_SOCKET_STAT_CD) ==
1232 	    CBB_SOCKET_STAT_CD)
1233 		return (ENODEV);
1234 
1235 	err = cbb_do_power(brdev);
1236 	if (err)
1237 		return (err);
1238 	cbb_cardbus_reset(brdev);
1239 	return (0);
1240 }
1241 
1242 static void
1243 cbb_cardbus_power_disable_socket(device_t brdev, device_t child)
1244 {
1245 	cbb_power(brdev, CARD_VCC_0V | CARD_VPP_0V);
1246 	cbb_cardbus_reset(brdev);
1247 }
1248 
1249 /************************************************************************/
1250 /* CardBus Resource							*/
1251 /************************************************************************/
1252 
1253 static int
1254 cbb_cardbus_io_open(device_t brdev, int win, uint32_t start, uint32_t end)
1255 {
1256 	int basereg;
1257 	int limitreg;
1258 
1259 	if ((win < 0) || (win > 1)) {
1260 		DEVPRINTF((brdev,
1261 		    "cbb_cardbus_io_open: window out of range %d\n", win));
1262 		return (EINVAL);
1263 	}
1264 
1265 	basereg = win * 8 + CBBR_IOBASE0;
1266 	limitreg = win * 8 + CBBR_IOLIMIT0;
1267 
1268 	pci_write_config(brdev, basereg, start, 4);
1269 	pci_write_config(brdev, limitreg, end, 4);
1270 	return (0);
1271 }
1272 
1273 static int
1274 cbb_cardbus_mem_open(device_t brdev, int win, uint32_t start, uint32_t end)
1275 {
1276 	int basereg;
1277 	int limitreg;
1278 
1279 	if ((win < 0) || (win > 1)) {
1280 		DEVPRINTF((brdev,
1281 		    "cbb_cardbus_mem_open: window out of range %d\n", win));
1282 		return (EINVAL);
1283 	}
1284 
1285 	basereg = win*8 + CBBR_MEMBASE0;
1286 	limitreg = win*8 + CBBR_MEMLIMIT0;
1287 
1288 	pci_write_config(brdev, basereg, start, 4);
1289 	pci_write_config(brdev, limitreg, end, 4);
1290 	return (0);
1291 }
1292 
1293 /*
1294  * XXX The following function belongs in the pci bus layer.
1295  */
1296 static void
1297 cbb_cardbus_auto_open(struct cbb_softc *sc, int type)
1298 {
1299 	uint32_t starts[2];
1300 	uint32_t ends[2];
1301 	struct cbb_reslist *rle;
1302 	int align;
1303 	int prefetchable[2];
1304 	uint32_t reg;
1305 
1306 	starts[0] = starts[1] = 0xffffffff;
1307 	ends[0] = ends[1] = 0;
1308 
1309 	if (type == SYS_RES_MEMORY)
1310 		align = CBB_MEMALIGN;
1311 	else if (type == SYS_RES_IOPORT)
1312 		align = CBB_IOALIGN;
1313 	else
1314 		align = 1;
1315 
1316 	SLIST_FOREACH(rle, &sc->rl, link) {
1317 		if (rle->type != type)
1318 			;
1319 		else if (rle->res == NULL) {
1320 			device_printf(sc->dev, "WARNING: Resource not reserved?  "
1321 			    "(type=%d, addr=%lx)\n",
1322 			    rle->type, rman_get_start(rle->res));
1323 		} else if (!(rman_get_flags(rle->res) & RF_ACTIVE)) {
1324 			/* XXX */
1325 		} else if (starts[0] == 0xffffffff) {
1326 			starts[0] = rman_get_start(rle->res);
1327 			ends[0] = rman_get_end(rle->res);
1328 			prefetchable[0] =
1329 			    rman_get_flags(rle->res) & RF_PREFETCHABLE;
1330 		} else if (rman_get_end(rle->res) > ends[0] &&
1331 		    rman_get_start(rle->res) - ends[0] <
1332 		    CBB_AUTO_OPEN_SMALLHOLE && prefetchable[0] ==
1333 		    (rman_get_flags(rle->res) & RF_PREFETCHABLE)) {
1334 			ends[0] = rman_get_end(rle->res);
1335 		} else if (rman_get_start(rle->res) < starts[0] &&
1336 		    starts[0] - rman_get_end(rle->res) <
1337 		    CBB_AUTO_OPEN_SMALLHOLE && prefetchable[0] ==
1338 		    (rman_get_flags(rle->res) & RF_PREFETCHABLE)) {
1339 			starts[0] = rman_get_start(rle->res);
1340 		} else if (starts[1] == 0xffffffff) {
1341 			starts[1] = rman_get_start(rle->res);
1342 			ends[1] = rman_get_end(rle->res);
1343 			prefetchable[1] =
1344 			    rman_get_flags(rle->res) & RF_PREFETCHABLE;
1345 		} else if (rman_get_end(rle->res) > ends[1] &&
1346 		    rman_get_start(rle->res) - ends[1] <
1347 		    CBB_AUTO_OPEN_SMALLHOLE && prefetchable[1] ==
1348 		    (rman_get_flags(rle->res) & RF_PREFETCHABLE)) {
1349 			ends[1] = rman_get_end(rle->res);
1350 		} else if (rman_get_start(rle->res) < starts[1] &&
1351 		    starts[1] - rman_get_end(rle->res) <
1352 		    CBB_AUTO_OPEN_SMALLHOLE && prefetchable[1] ==
1353 		    (rman_get_flags(rle->res) & RF_PREFETCHABLE)) {
1354 			starts[1] = rman_get_start(rle->res);
1355 		} else {
1356 			uint32_t diffs[2];
1357 			int win;
1358 
1359 			diffs[0] = diffs[1] = 0xffffffff;
1360 			if (rman_get_start(rle->res) > ends[0])
1361 				diffs[0] = rman_get_start(rle->res) - ends[0];
1362 			else if (rman_get_end(rle->res) < starts[0])
1363 				diffs[0] = starts[0] - rman_get_end(rle->res);
1364 			if (rman_get_start(rle->res) > ends[1])
1365 				diffs[1] = rman_get_start(rle->res) - ends[1];
1366 			else if (rman_get_end(rle->res) < starts[1])
1367 				diffs[1] = starts[1] - rman_get_end(rle->res);
1368 
1369 			win = (diffs[0] <= diffs[1])?0:1;
1370 			if (rman_get_start(rle->res) > ends[win])
1371 				ends[win] = rman_get_end(rle->res);
1372 			else if (rman_get_end(rle->res) < starts[win])
1373 				starts[win] = rman_get_start(rle->res);
1374 			if (!(rman_get_flags(rle->res) & RF_PREFETCHABLE))
1375 				prefetchable[win] = 0;
1376 		}
1377 
1378 		if (starts[0] != 0xffffffff)
1379 			starts[0] -= starts[0] % align;
1380 		if (starts[1] != 0xffffffff)
1381 			starts[1] -= starts[1] % align;
1382 		if (ends[0] % align != 0)
1383 			ends[0] += align - ends[0]%align - 1;
1384 		if (ends[1] % align != 0)
1385 			ends[1] += align - ends[1]%align - 1;
1386 	}
1387 
1388 	if (type == SYS_RES_MEMORY) {
1389 		cbb_cardbus_mem_open(sc->dev, 0, starts[0], ends[0]);
1390 		cbb_cardbus_mem_open(sc->dev, 1, starts[1], ends[1]);
1391 		reg = pci_read_config(sc->dev, CBBR_BRIDGECTRL, 2);
1392 		reg &= ~(CBBM_BRIDGECTRL_PREFETCH_0|
1393 		    CBBM_BRIDGECTRL_PREFETCH_1);
1394 		reg |= (prefetchable[0]?CBBM_BRIDGECTRL_PREFETCH_0:0)|
1395 		    (prefetchable[1]?CBBM_BRIDGECTRL_PREFETCH_1:0);
1396 		pci_write_config(sc->dev, CBBR_BRIDGECTRL, reg, 2);
1397 	} else if (type == SYS_RES_IOPORT) {
1398 		cbb_cardbus_io_open(sc->dev, 0, starts[0], ends[0]);
1399 		cbb_cardbus_io_open(sc->dev, 1, starts[1], ends[1]);
1400 	}
1401 }
1402 
1403 static int
1404 cbb_cardbus_activate_resource(device_t brdev, device_t child, int type,
1405     int rid, struct resource *res)
1406 {
1407 	int ret;
1408 
1409 	ret = BUS_ACTIVATE_RESOURCE(device_get_parent(brdev), child,
1410 	    type, rid, res);
1411 	if (ret != 0)
1412 		return (ret);
1413 	cbb_cardbus_auto_open(device_get_softc(brdev), type);
1414 	return (0);
1415 }
1416 
1417 static int
1418 cbb_cardbus_deactivate_resource(device_t brdev, device_t child, int type,
1419     int rid, struct resource *res)
1420 {
1421 	int ret;
1422 
1423 	ret = BUS_DEACTIVATE_RESOURCE(device_get_parent(brdev), child,
1424 	    type, rid, res);
1425 	if (ret != 0)
1426 		return (ret);
1427 	cbb_cardbus_auto_open(device_get_softc(brdev), type);
1428 	return (0);
1429 }
1430 
1431 static struct resource *
1432 cbb_cardbus_alloc_resource(device_t brdev, device_t child, int type,
1433     int *rid, u_long start, u_long end, u_long count, uint flags)
1434 {
1435 	struct cbb_softc *sc = device_get_softc(brdev);
1436 	int tmp;
1437 	struct resource *res;
1438 
1439 	switch (type) {
1440 	case SYS_RES_IRQ:
1441 		tmp = rman_get_start(sc->irq_res);
1442 		if (start > tmp || end < tmp || count != 1) {
1443 			device_printf(child, "requested interrupt %ld-%ld,"
1444 			    "count = %ld not supported by cbb\n",
1445 			    start, end, count);
1446 			return (NULL);
1447 		}
1448 		start = end = tmp;
1449 		flags |= RF_SHAREABLE;
1450 		break;
1451 	case SYS_RES_IOPORT:
1452 		if (start <= cbb_start_32_io)
1453 			start = cbb_start_32_io;
1454 		if (end < start)
1455 			end = start;
1456 		break;
1457 	case SYS_RES_MEMORY:
1458 		if (start <= cbb_start_mem)
1459 			start = cbb_start_mem;
1460 		if (end < start)
1461 			end = start;
1462 		break;
1463 	}
1464 
1465 	res = BUS_ALLOC_RESOURCE(device_get_parent(brdev), child, type, rid,
1466 	    start, end, count, flags & ~RF_ACTIVE);
1467 	if (res == NULL) {
1468 		printf("cbb alloc res fail\n");
1469 		return (NULL);
1470 	}
1471 	cbb_insert_res(sc, res, type, *rid);
1472 	if (flags & RF_ACTIVE)
1473 		if (bus_activate_resource(child, type, *rid, res) != 0) {
1474 			bus_release_resource(child, type, *rid, res);
1475 			return (NULL);
1476 		}
1477 
1478 	return (res);
1479 }
1480 
1481 static int
1482 cbb_cardbus_release_resource(device_t brdev, device_t child, int type,
1483     int rid, struct resource *res)
1484 {
1485 	struct cbb_softc *sc = device_get_softc(brdev);
1486 	int error;
1487 
1488 	if (rman_get_flags(res) & RF_ACTIVE) {
1489 		error = bus_deactivate_resource(child, type, rid, res);
1490 		if (error != 0)
1491 			return (error);
1492 	}
1493 	cbb_remove_res(sc, res);
1494 	return (BUS_RELEASE_RESOURCE(device_get_parent(brdev), child,
1495 	    type, rid, res));
1496 }
1497 
1498 /************************************************************************/
1499 /* PC Card Power Functions						*/
1500 /************************************************************************/
1501 
1502 static int
1503 cbb_pcic_power_enable_socket(device_t brdev, device_t child)
1504 {
1505 	struct cbb_softc *sc = device_get_softc(brdev);
1506 	int err;
1507 
1508 	DPRINTF(("cbb_pcic_socket_enable:\n"));
1509 
1510 	/* power down/up the socket to reset */
1511 	err = cbb_do_power(brdev);
1512 	if (err)
1513 		return (err);
1514 	exca_reset(&sc->exca, child);
1515 
1516 	return (0);
1517 }
1518 
1519 static void
1520 cbb_pcic_power_disable_socket(device_t brdev, device_t child)
1521 {
1522 	struct cbb_softc *sc = device_get_softc(brdev);
1523 
1524 	DPRINTF(("cbb_pcic_socket_disable\n"));
1525 
1526 	/* reset signal asserting... */
1527 	exca_clrb(&sc->exca, EXCA_INTR, EXCA_INTR_RESET);
1528 	DELAY(2*1000);
1529 
1530 	/* power down the socket */
1531 	cbb_power(brdev, CARD_VCC_0V | CARD_VPP_0V);
1532 	exca_clrb(&sc->exca, EXCA_PWRCTL, EXCA_PWRCTL_OE);
1533 
1534 	/* wait 300ms until power fails (Tpf). */
1535 	DELAY(300 * 1000);
1536 }
1537 
1538 /************************************************************************/
1539 /* POWER methods							*/
1540 /************************************************************************/
1541 
1542 static int
1543 cbb_power_enable_socket(device_t brdev, device_t child)
1544 {
1545 	struct cbb_softc *sc = device_get_softc(brdev);
1546 
1547 	if (sc->flags & CBB_16BIT_CARD)
1548 		return (cbb_pcic_power_enable_socket(brdev, child));
1549 	else
1550 		return (cbb_cardbus_power_enable_socket(brdev, child));
1551 }
1552 
1553 static void
1554 cbb_power_disable_socket(device_t brdev, device_t child)
1555 {
1556 	struct cbb_softc *sc = device_get_softc(brdev);
1557 	if (sc->flags & CBB_16BIT_CARD)
1558 		cbb_pcic_power_disable_socket(brdev, child);
1559 	else
1560 		cbb_cardbus_power_disable_socket(brdev, child);
1561 }
1562 static int
1563 cbb_pcic_activate_resource(device_t brdev, device_t child, int type, int rid,
1564     struct resource *res)
1565 {
1566 	int err;
1567 	struct cbb_softc *sc = device_get_softc(brdev);
1568 	if (!(rman_get_flags(res) & RF_ACTIVE)) { /* not already activated */
1569 		switch (type) {
1570 		case SYS_RES_IOPORT:
1571 			err = exca_io_map(&sc->exca, 0, res);
1572 			break;
1573 		case SYS_RES_MEMORY:
1574 			err = exca_mem_map(&sc->exca, 0, res);
1575 			break;
1576 		default:
1577 			err = 0;
1578 			break;
1579 		}
1580 		if (err)
1581 			return (err);
1582 
1583 	}
1584 	return (BUS_ACTIVATE_RESOURCE(device_get_parent(brdev), child,
1585 	    type, rid, res));
1586 }
1587 
1588 static int
1589 cbb_pcic_deactivate_resource(device_t brdev, device_t child, int type,
1590     int rid, struct resource *res)
1591 {
1592 	struct cbb_softc *sc = device_get_softc(brdev);
1593 
1594 	if (rman_get_flags(res) & RF_ACTIVE) { /* if activated */
1595 		switch (type) {
1596 		case SYS_RES_IOPORT:
1597 			if (exca_io_unmap_res(&sc->exca, res))
1598 				return (ENOENT);
1599 			break;
1600 		case SYS_RES_MEMORY:
1601 			if (exca_mem_unmap_res(&sc->exca, res))
1602 				return (ENOENT);
1603 			break;
1604 		}
1605 	}
1606 	return (BUS_DEACTIVATE_RESOURCE(device_get_parent(brdev), child,
1607 	    type, rid, res));
1608 }
1609 
1610 static struct resource *
1611 cbb_pcic_alloc_resource(device_t brdev, device_t child, int type, int *rid,
1612     u_long start, u_long end, u_long count, uint flags)
1613 {
1614 	struct resource *res = NULL;
1615 	struct cbb_softc *sc = device_get_softc(brdev);
1616 	int tmp;
1617 
1618 	switch (type) {
1619 	case SYS_RES_MEMORY:
1620 		if (start < cbb_start_mem)
1621 			start = cbb_start_mem;
1622 		if (end < start)
1623 			end = start;
1624 		flags = (flags & ~RF_ALIGNMENT_MASK) |
1625 		    rman_make_alignment_flags(CBB_MEMALIGN);
1626 		break;
1627 	case SYS_RES_IOPORT:
1628 		if (start < cbb_start_16_io)
1629 			start = cbb_start_16_io;
1630 		if (end < start)
1631 			end = start;
1632 		break;
1633 	case SYS_RES_IRQ:
1634 		tmp = rman_get_start(sc->irq_res);
1635 		if (start > tmp || end < tmp || count != 1) {
1636 			device_printf(child, "requested interrupt %ld-%ld,"
1637 			    "count = %ld not supported by cbb\n",
1638 			    start, end, count);
1639 			return (NULL);
1640 		}
1641 		flags |= RF_SHAREABLE;
1642 		start = end = rman_get_start(sc->irq_res);
1643 		break;
1644 	}
1645 	res = BUS_ALLOC_RESOURCE(device_get_parent(brdev), child, type, rid,
1646 	    start, end, count, flags & ~RF_ACTIVE);
1647 	if (res == NULL)
1648 		return (NULL);
1649 	cbb_insert_res(sc, res, type, *rid);
1650 	if (flags & RF_ACTIVE) {
1651 		if (bus_activate_resource(child, type, *rid, res) != 0) {
1652 			bus_release_resource(child, type, *rid, res);
1653 			return (NULL);
1654 		}
1655 	}
1656 
1657 	return (res);
1658 }
1659 
1660 static int
1661 cbb_pcic_release_resource(device_t brdev, device_t child, int type,
1662     int rid, struct resource *res)
1663 {
1664 	struct cbb_softc *sc = device_get_softc(brdev);
1665 	int error;
1666 
1667 	if (rman_get_flags(res) & RF_ACTIVE) {
1668 		error = bus_deactivate_resource(child, type, rid, res);
1669 		if (error != 0)
1670 			return (error);
1671 	}
1672 	cbb_remove_res(sc, res);
1673 	return (BUS_RELEASE_RESOURCE(device_get_parent(brdev), child,
1674 	    type, rid, res));
1675 }
1676 
1677 /************************************************************************/
1678 /* PC Card methods							*/
1679 /************************************************************************/
1680 
1681 static int
1682 cbb_pcic_set_res_flags(device_t brdev, device_t child, int type, int rid,
1683     uint32_t flags)
1684 {
1685 	struct cbb_softc *sc = device_get_softc(brdev);
1686 	struct resource *res;
1687 
1688 	if (type != SYS_RES_MEMORY)
1689 		return (EINVAL);
1690 	res = cbb_find_res(sc, type, rid);
1691 	if (res == NULL) {
1692 		device_printf(brdev,
1693 		    "set_res_flags: specified rid not found\n");
1694 		return (ENOENT);
1695 	}
1696 	return (exca_mem_set_flags(&sc->exca, res, flags));
1697 }
1698 
1699 static int
1700 cbb_pcic_set_memory_offset(device_t brdev, device_t child, int rid,
1701     uint32_t cardaddr, uint32_t *deltap)
1702 {
1703 	struct cbb_softc *sc = device_get_softc(brdev);
1704 	struct resource *res;
1705 
1706 	res = cbb_find_res(sc, SYS_RES_MEMORY, rid);
1707 	if (res == NULL) {
1708 		device_printf(brdev,
1709 		    "set_memory_offset: specified rid not found\n");
1710 		return (ENOENT);
1711 	}
1712 	return (exca_mem_set_offset(&sc->exca, res, cardaddr, deltap));
1713 }
1714 
1715 /************************************************************************/
1716 /* BUS Methods								*/
1717 /************************************************************************/
1718 
1719 
1720 static int
1721 cbb_activate_resource(device_t brdev, device_t child, int type, int rid,
1722     struct resource *r)
1723 {
1724 	struct cbb_softc *sc = device_get_softc(brdev);
1725 
1726 	if (sc->flags & CBB_16BIT_CARD)
1727 		return (cbb_pcic_activate_resource(brdev, child, type, rid, r));
1728 	else
1729 		return (cbb_cardbus_activate_resource(brdev, child, type, rid,
1730 		    r));
1731 }
1732 
1733 static int
1734 cbb_deactivate_resource(device_t brdev, device_t child, int type,
1735     int rid, struct resource *r)
1736 {
1737 	struct cbb_softc *sc = device_get_softc(brdev);
1738 
1739 	if (sc->flags & CBB_16BIT_CARD)
1740 		return (cbb_pcic_deactivate_resource(brdev, child, type,
1741 		    rid, r));
1742 	else
1743 		return (cbb_cardbus_deactivate_resource(brdev, child, type,
1744 		    rid, r));
1745 }
1746 
1747 static struct resource *
1748 cbb_alloc_resource(device_t brdev, device_t child, int type, int *rid,
1749     u_long start, u_long end, u_long count, uint flags)
1750 {
1751 	struct cbb_softc *sc = device_get_softc(brdev);
1752 
1753 	if (sc->flags & CBB_16BIT_CARD)
1754 		return (cbb_pcic_alloc_resource(brdev, child, type, rid,
1755 		    start, end, count, flags));
1756 	else
1757 		return (cbb_cardbus_alloc_resource(brdev, child, type, rid,
1758 		    start, end, count, flags));
1759 }
1760 
1761 static int
1762 cbb_release_resource(device_t brdev, device_t child, int type, int rid,
1763     struct resource *r)
1764 {
1765 	struct cbb_softc *sc = device_get_softc(brdev);
1766 
1767 	if (sc->flags & CBB_16BIT_CARD)
1768 		return (cbb_pcic_release_resource(brdev, child, type,
1769 		    rid, r));
1770 	else
1771 		return (cbb_cardbus_release_resource(brdev, child, type,
1772 		    rid, r));
1773 }
1774 
1775 static int
1776 cbb_read_ivar(device_t brdev, device_t child, int which, uintptr_t *result)
1777 {
1778 	struct cbb_softc *sc = device_get_softc(brdev);
1779 
1780 	switch (which) {
1781 	case PCIB_IVAR_BUS:
1782 		*result = sc->secbus;
1783 		return (0);
1784 	}
1785 	return (ENOENT);
1786 }
1787 
1788 static int
1789 cbb_write_ivar(device_t brdev, device_t child, int which, uintptr_t value)
1790 {
1791 	struct cbb_softc *sc = device_get_softc(brdev);
1792 
1793 	switch (which) {
1794 	case PCIB_IVAR_BUS:
1795 		sc->secbus = value;
1796 		break;
1797 	}
1798 	return (ENOENT);
1799 }
1800 
1801 /************************************************************************/
1802 /* PCI compat methods							*/
1803 /************************************************************************/
1804 
1805 static int
1806 cbb_maxslots(device_t brdev)
1807 {
1808 	return (0);
1809 }
1810 
1811 static uint32_t
1812 cbb_read_config(device_t brdev, int b, int s, int f, int reg, int width)
1813 {
1814 	/*
1815 	 * Pass through to the next ppb up the chain (i.e. our grandparent).
1816 	 */
1817 	return (PCIB_READ_CONFIG(device_get_parent(device_get_parent(brdev)),
1818 	    b, s, f, reg, width));
1819 }
1820 
1821 static void
1822 cbb_write_config(device_t brdev, int b, int s, int f, int reg, uint32_t val,
1823     int width)
1824 {
1825 	/*
1826 	 * Pass through to the next ppb up the chain (i.e. our grandparent).
1827 	 */
1828 	PCIB_WRITE_CONFIG(device_get_parent(device_get_parent(brdev)),
1829 	    b, s, f, reg, val, width);
1830 }
1831 
1832 static int
1833 cbb_suspend(device_t self)
1834 {
1835 	int			error = 0;
1836 	struct cbb_softc	*sc = device_get_softc(self);
1837 
1838 	cbb_setb(sc, CBB_SOCKET_MASK, 0);	/* Quiet hardware */
1839 	bus_teardown_intr(self, sc->irq_res, sc->intrhand);
1840 	sc->flags &= ~CBB_CARD_OK;		/* Card is bogus now */
1841 	error = bus_generic_suspend(self);
1842 	return (error);
1843 }
1844 
1845 static int
1846 cbb_resume(device_t self)
1847 {
1848 	int	error = 0;
1849 	struct cbb_softc *sc = (struct cbb_softc *)device_get_softc(self);
1850 	uint32_t tmp;
1851 
1852 	/*
1853 	 * Some BIOSes will not save the BARs for the pci chips, so we
1854 	 * must do it ourselves.  If the BAR is reset to 0 for an I/O
1855 	 * device, it will read back as 0x1, so no explicit test for
1856 	 * memory devices are needed.
1857 	 *
1858 	 * Note: The PCI bus code should do this automatically for us on
1859 	 * suspend/resume, but until it does, we have to cope.
1860 	 */
1861 	pci_write_config(self, CBBR_SOCKBASE, rman_get_start(sc->base_res), 4);
1862 	DEVPRINTF((self, "PCI Memory allocated: %08lx\n",
1863 	    rman_get_start(sc->base_res)));
1864 
1865 	cbb_chipinit(sc);
1866 
1867 	/* reset interrupt -- Do we really need to do this? */
1868 	tmp = cbb_get(sc, CBB_SOCKET_EVENT);
1869 	cbb_set(sc, CBB_SOCKET_EVENT, tmp);
1870 
1871 	/* re-establish the interrupt. */
1872 	if (bus_setup_intr(self, sc->irq_res, INTR_TYPE_AV, cbb_intr, sc,
1873 	    &sc->intrhand)) {
1874 		device_printf(self, "couldn't re-establish interrupt");
1875 		bus_release_resource(self, SYS_RES_IRQ, 0, sc->irq_res);
1876 		bus_release_resource(self, SYS_RES_MEMORY, CBBR_SOCKBASE,
1877 		    sc->base_res);
1878 		sc->irq_res = NULL;
1879 		sc->base_res = NULL;
1880 		return (ENOMEM);
1881 	}
1882 
1883 	/* CSC Interrupt: Card detect interrupt on */
1884 	cbb_setb(sc, CBB_SOCKET_MASK, CBB_SOCKET_MASK_CD);
1885 
1886 	/* Signal the thread to wakeup. */
1887 	mtx_lock(&sc->mtx);
1888 	cv_signal(&sc->cv);
1889 	mtx_unlock(&sc->mtx);
1890 
1891 	error = bus_generic_resume(self);
1892 
1893 	return (error);
1894 }
1895 
1896 static int
1897 cbb_child_present(device_t self)
1898 {
1899 	struct cbb_softc *sc = (struct cbb_softc *)device_get_softc(self);
1900 	uint32_t sockstate;
1901 
1902 	sockstate = cbb_get(sc, CBB_SOCKET_STATE);
1903 	return ((sockstate & CBB_SOCKET_STAT_CD) != 0 &&
1904 	  (sc->flags & CBB_CARD_OK) != 0);
1905 }
1906 
1907 static device_method_t cbb_methods[] = {
1908 	/* Device interface */
1909 	DEVMETHOD(device_probe,			cbb_probe),
1910 	DEVMETHOD(device_attach,		cbb_attach),
1911 	DEVMETHOD(device_detach,		cbb_detach),
1912 	DEVMETHOD(device_shutdown,		cbb_shutdown),
1913 	DEVMETHOD(device_suspend,		cbb_suspend),
1914 	DEVMETHOD(device_resume,		cbb_resume),
1915 
1916 	/* bus methods */
1917 	DEVMETHOD(bus_print_child,		bus_generic_print_child),
1918 	DEVMETHOD(bus_read_ivar,		cbb_read_ivar),
1919 	DEVMETHOD(bus_write_ivar,		cbb_write_ivar),
1920 	DEVMETHOD(bus_alloc_resource,		cbb_alloc_resource),
1921 	DEVMETHOD(bus_release_resource,		cbb_release_resource),
1922 	DEVMETHOD(bus_activate_resource,	cbb_activate_resource),
1923 	DEVMETHOD(bus_deactivate_resource,	cbb_deactivate_resource),
1924 	DEVMETHOD(bus_driver_added,		cbb_driver_added),
1925 	DEVMETHOD(bus_child_detached,		cbb_child_detached),
1926 	DEVMETHOD(bus_setup_intr,		cbb_setup_intr),
1927 	DEVMETHOD(bus_teardown_intr,		cbb_teardown_intr),
1928 	DEVMETHOD(bus_child_present,		cbb_child_present),
1929 
1930 	/* 16-bit card interface */
1931 	DEVMETHOD(card_set_res_flags,		cbb_pcic_set_res_flags),
1932 	DEVMETHOD(card_set_memory_offset,	cbb_pcic_set_memory_offset),
1933 
1934 	/* power interface */
1935 	DEVMETHOD(power_enable_socket,		cbb_power_enable_socket),
1936 	DEVMETHOD(power_disable_socket,		cbb_power_disable_socket),
1937 
1938 	/* pcib compatibility interface */
1939 	DEVMETHOD(pcib_maxslots,		cbb_maxslots),
1940 	DEVMETHOD(pcib_read_config,		cbb_read_config),
1941 	DEVMETHOD(pcib_write_config,		cbb_write_config),
1942 	{0,0}
1943 };
1944 
1945 static driver_t cbb_driver = {
1946 	"cbb",
1947 	cbb_methods,
1948 	sizeof(struct cbb_softc)
1949 };
1950 
1951 static devclass_t cbb_devclass;
1952 
1953 DRIVER_MODULE(cbb, pci, cbb_driver, cbb_devclass, 0, 0);
1954 MODULE_VERSION(cbb, 1);
1955 MODULE_DEPEND(cbb, exca, 1, 1, 1);
1956