xref: /freebsd/sys/dev/pccbb/pccbb.c (revision c4f6a2a9e1b1879b618c436ab4f56ff75c73a0f5)
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},
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, "O2Mirco OZ6832/6833 PCI-CardBus Bridge", CB_CIRRUS},
176 	{PCIC_ID_OZ6860, "O2Mirco OZ6836/6860 PCI-CardBus Bridge", CB_CIRRUS},
177 	{PCIC_ID_OZ6872, "O2Mirco OZ6812/6872 PCI-CardBus Bridge", CB_CIRRUS},
178 	{PCIC_ID_OZ6912, "O2Mirco OZ6912/6972 PCI-CardBus Bridge", CB_CIRRUS},
179 	{PCIC_ID_OZ6922, "O2Mirco OZ6822 PCI-CardBus Bridge", CB_CIRRUS},
180 	{PCIC_ID_OZ6933, "O2Mirco OZ6833 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 int	cbb_card_reprobe(device_t brdev, device_t busdev);
222 static void	cbb_event_thread(void *arg);
223 static void	cbb_insert(struct cbb_softc *sc);
224 static void	cbb_removal(struct cbb_softc *sc);
225 static void	cbb_intr(void *arg);
226 static int	cbb_detect_voltage(device_t brdev);
227 static int	cbb_power(device_t brdev, int volts);
228 static void	cbb_cardbus_reset(device_t brdev);
229 static int	cbb_cardbus_power_enable_socket(device_t brdev,
230 		    device_t child);
231 static void	cbb_cardbus_power_disable_socket(device_t brdev,
232 		    device_t child);
233 static int	cbb_cardbus_io_open(device_t brdev, int win, uint32_t start,
234 		    uint32_t end);
235 static int	cbb_cardbus_mem_open(device_t brdev, int win,
236 		    uint32_t start, uint32_t end);
237 static void	cbb_cardbus_auto_open(struct cbb_softc *sc, int type);
238 static int	cbb_cardbus_activate_resource(device_t brdev, device_t child,
239 		    int type, int rid, struct resource *res);
240 static int	cbb_cardbus_deactivate_resource(device_t brdev,
241 		    device_t child, int type, int rid, struct resource *res);
242 static struct resource	*cbb_cardbus_alloc_resource(device_t brdev,
243 		    device_t child, int type, int *rid, u_long start,
244 		    u_long end, u_long count, uint flags);
245 static int	cbb_cardbus_release_resource(device_t brdev, device_t child,
246 		    int type, int rid, struct resource *res);
247 static int	cbb_power_enable_socket(device_t brdev, device_t child);
248 static void	cbb_power_disable_socket(device_t brdev, device_t child);
249 static int	cbb_activate_resource(device_t brdev, device_t child,
250 		    int type, int rid, struct resource *r);
251 static int	cbb_deactivate_resource(device_t brdev, device_t child,
252 		    int type, int rid, struct resource *r);
253 static struct resource	*cbb_alloc_resource(device_t brdev, device_t child,
254 		    int type, int *rid, u_long start, u_long end, u_long count,
255 		    uint flags);
256 static int	cbb_release_resource(device_t brdev, device_t child,
257 		    int type, int rid, struct resource *r);
258 static int	cbb_read_ivar(device_t brdev, device_t child, int which,
259 		    uintptr_t *result);
260 static int	cbb_write_ivar(device_t brdev, device_t child, int which,
261 		    uintptr_t value);
262 static int	cbb_maxslots(device_t brdev);
263 static uint32_t cbb_read_config(device_t brdev, int b, int s, int f,
264 		    int reg, int width);
265 static void	cbb_write_config(device_t brdev, int b, int s, int f,
266 		    int reg, uint32_t val, int width);
267 
268 /*
269  */
270 static __inline void
271 cbb_set(struct cbb_softc *sc, uint32_t reg, uint32_t val)
272 {
273 	bus_space_write_4(sc->bst, sc->bsh, reg, val);
274 }
275 
276 static __inline uint32_t
277 cbb_get(struct cbb_softc *sc, uint32_t reg)
278 {
279 	return (bus_space_read_4(sc->bst, sc->bsh, reg));
280 }
281 
282 static __inline void
283 cbb_setb(struct cbb_softc *sc, uint32_t reg, uint32_t bits)
284 {
285 	cbb_set(sc, reg, cbb_get(sc, reg) | bits);
286 }
287 
288 static __inline void
289 cbb_clrb(struct cbb_softc *sc, uint32_t reg, uint32_t bits)
290 {
291 	cbb_set(sc, reg, cbb_get(sc, reg) & ~bits);
292 }
293 
294 static void
295 cbb_remove_res(struct cbb_softc *sc, struct resource *res)
296 {
297 	struct cbb_reslist *rle;
298 
299 	SLIST_FOREACH(rle, &sc->rl, link) {
300 		if (rle->res == res) {
301 			SLIST_REMOVE(&sc->rl, rle, cbb_reslist, link);
302 			free(rle, M_DEVBUF);
303 			return;
304 		}
305 	}
306 }
307 
308 static struct resource *
309 cbb_find_res(struct cbb_softc *sc, int type, int rid)
310 {
311 	struct cbb_reslist *rle;
312 
313 	SLIST_FOREACH(rle, &sc->rl, link)
314 		if (SYS_RES_MEMORY == rle->type && rid == rle->rid)
315 			return (rle->res);
316 	return (NULL);
317 }
318 
319 static void
320 cbb_insert_res(struct cbb_softc *sc, struct resource *res, int type,
321     int rid)
322 {
323 	struct cbb_reslist *rle;
324 
325 	/*
326 	 * Need to record allocated resource so we can iterate through
327 	 * it later.
328 	 */
329 	rle = malloc(sizeof(struct cbb_reslist), M_DEVBUF, M_NOWAIT);
330 	if (!res)
331 		panic("cbb_cardbus_alloc_resource: can't record entry!");
332 	rle->res = res;
333 	rle->type = type;
334 	rle->rid = rid;
335 	SLIST_INSERT_HEAD(&sc->rl, rle, link);
336 }
337 
338 static void
339 cbb_destroy_res(struct cbb_softc *sc)
340 {
341 	struct cbb_reslist *rle;
342 
343 	while ((rle = SLIST_FIRST(&sc->rl)) != NULL) {
344 		device_printf(sc->dev, "Danger Will Robinson: Resource "
345 		    "left allocated!  This is a bug... "
346 		    "(rid=%x, type=%d, addr=%lx)\n", rle->rid, rle->type,
347 		    rman_get_start(rle->res));
348 		SLIST_REMOVE_HEAD(&sc->rl, link);
349 		free(rle, M_DEVBUF);
350 	}
351 }
352 
353 /************************************************************************/
354 /* Probe/Attach								*/
355 /************************************************************************/
356 
357 static int
358 cbb_chipset(uint32_t pci_id, const char **namep)
359 {
360 	struct yenta_chipinfo *ycp;
361 
362 	for (ycp = yc_chipsets; ycp->yc_id != 0 && pci_id != ycp->yc_id; ++ycp)
363 	    continue;
364 	if (namep != NULL)
365 		*namep = ycp->yc_name;
366 	return (ycp->yc_chiptype);
367 }
368 
369 static int
370 cbb_probe(device_t brdev)
371 {
372 	const char *name;
373 	uint32_t progif;
374 	uint32_t subclass;
375 
376 	/*
377 	 * Do we know that we support the chipset?  If so, then we
378 	 * accept the device.
379 	 */
380 	if (cbb_chipset(pci_get_devid(brdev), &name) != CB_UNKNOWN) {
381 		device_set_desc(brdev, name);
382 		return (0);
383 	}
384 
385 	/*
386 	 * We do support generic CardBus bridges.  All that we've seen
387 	 * to date have progif 0 (the Yenta spec, and successors mandate
388 	 * this).  We do not support PCI PCMCIA bridges (with one exception)
389 	 * with this driver since they generally are I/O mapped.  Those
390 	 * are supported by the pcic driver.  This should help us be more
391 	 * future proof.
392 	 */
393 	subclass = pci_get_subclass(brdev);
394 	progif = pci_get_progif(brdev);
395 	if (subclass == PCIS_BRIDGE_CARDBUS && progif == 0) {
396 		device_set_desc(brdev, "PCI-CardBus Bridge");
397 		return (0);
398 	}
399 	return (ENXIO);
400 }
401 
402 
403 static void
404 cbb_chipinit(struct cbb_softc *sc)
405 {
406 	uint32_t mux, sysctrl;
407 
408 	/* Set CardBus latency timer */
409 	if (pci_read_config(sc->dev, PCIR_SECLAT_1, 1) < 0x20)
410 		pci_write_config(sc->dev, PCIR_SECLAT_1, 0x20, 1);
411 
412 	/* Set PCI latency timer */
413 	if (pci_read_config(sc->dev, PCIR_LATTIMER, 1) < 0x20)
414 		pci_write_config(sc->dev, PCIR_LATTIMER, 0x20, 1);
415 
416 	/* Enable memory access */
417 	PCI_MASK_CONFIG(sc->dev, PCIR_COMMAND,
418 	    | PCIM_CMD_MEMEN
419 	    | PCIM_CMD_PORTEN
420 	    | PCIM_CMD_BUSMASTEREN, 2);
421 
422 	/* disable Legacy IO */
423 	switch (sc->chipset) {
424 	case CB_RF5C46X:
425 		PCI_MASK_CONFIG(sc->dev, CBBR_BRIDGECTRL,
426 		    & ~(CBBM_BRIDGECTRL_RL_3E0_EN |
427 		    CBBM_BRIDGECTRL_RL_3E2_EN), 2);
428 		break;
429 	default:
430 		pci_write_config(sc->dev, CBBR_LEGACY, 0x0, 4);
431 		break;
432 	}
433 
434 	/* Use PCI interrupt for interrupt routing */
435 	PCI_MASK2_CONFIG(sc->dev, CBBR_BRIDGECTRL,
436 	    & ~(CBBM_BRIDGECTRL_MASTER_ABORT |
437 	    CBBM_BRIDGECTRL_INTR_IREQ_EN),
438 	    | CBBM_BRIDGECTRL_WRITE_POST_EN,
439 	    2);
440 
441 	/*
442 	 * XXX this should be a function table, ala OLDCARD.  This means
443 	 * that we could more easily support ISA interrupts for pccard
444 	 * cards if we had to.
445 	 */
446 	switch (sc->chipset) {
447 	case CB_TI113X:
448 		/*
449 		 * The TI 1031, TI 1130 and TI 1131 all require another bit
450 		 * be set to enable PCI routing of interrupts, and then
451 		 * a bit for each of the CSC and Function interrupts we
452 		 * want routed.
453 		 */
454 		PCI_MASK_CONFIG(sc->dev, CBBR_CBCTRL,
455 		    | CBBM_CBCTRL_113X_PCI_INTR |
456 		    CBBM_CBCTRL_113X_PCI_CSC | CBBM_CBCTRL_113X_PCI_IRQ_EN,
457 		    1);
458 		PCI_MASK_CONFIG(sc->dev, CBBR_DEVCTRL,
459 		    & ~(CBBM_DEVCTRL_INT_SERIAL |
460 		    CBBM_DEVCTRL_INT_PCI), 1);
461 		break;
462 	case CB_TI12XX:
463 		/*
464 		 * Some TI 12xx (and [14][45]xx) based pci cards
465 		 * sometimes have issues with the MFUNC register not
466 		 * being initialized due to a bad EEPROM on board.
467 		 * Laptops that this matters on have this register
468 		 * properly initialized.
469 		 *
470 		 * The TI125X parts have a different register.
471 		 */
472 		mux = pci_read_config(sc->dev, CBBR_MFUNC, 4);
473 		sysctrl = pci_read_config(sc->dev, CBBR_SYSCTRL, 4);
474 		if (mux == 0) {
475 			mux = (mux & ~CBBM_MFUNC_PIN0) |
476 			    CBBM_MFUNC_PIN0_INTA;
477 			if ((sysctrl & CBBM_SYSCTRL_INTRTIE) == 0)
478 				mux = (mux & ~CBBM_MFUNC_PIN1) |
479 				    CBBM_MFUNC_PIN1_INTB;
480 			pci_write_config(sc->dev, CBBR_MFUNC, mux, 4);
481 		}
482 		/*FALLTHROUGH*/
483 	case CB_TI125X:
484 		/*
485 		 * Disable zoom video.  Some machines initialize this
486 		 * improperly and exerpience has shown that this helps
487 		 * on some machines.
488 		 */
489 		pci_write_config(sc->dev, CBBR_MMCTRL, 0, 4);
490 		break;
491 	case CB_TOPIC97:
492 		/*
493 		 * Disable Zoom Video, ToPIC 97, 100.
494 		 */
495 		pci_write_config(sc->dev, CBBR_TOPIC_ZV_CONTROL, 0, 1);
496 		/*
497 		 * ToPIC 97, 100
498 		 * At offset 0xa1: INTERRUPT CONTROL register
499 		 * 0x1: Turn on INT interrupts.
500 		 */
501 		PCI_MASK_CONFIG(sc->dev, CBBR_TOPIC_INTCTRL,
502 		    | CBBM_TOPIC_INTCTRL_INTIRQSEL, 1);
503 		goto topic_common;
504 	case CB_TOPIC95:
505 		/*
506 		 * SOCKETCTRL appears to be TOPIC 95/B specific
507 		 */
508 		PCI_MASK_CONFIG(sc->dev, CBBR_TOPIC_SOCKETCTRL,
509 		    | CBBM_TOPIC_SOCKETCTRL_SCR_IRQSEL, 4);
510 
511 	topic_common:;
512 		/*
513 		 * At offset 0xa0: SLOT CONTROL
514 		 * 0x80 Enable Cardbus Functionality
515 		 * 0x40 Enable Cardbus and PC Card registers
516 		 * 0x20 Lock ID in exca regs
517 		 * 0x10 Write protect ID in config regs
518 		 * Clear the rest of the bits, which defaults the slot
519 		 * in legacy mode to 0x3e0 and offset 0. (legacy
520 		 * mode is determined elsewhere)
521 		 */
522 		pci_write_config(sc->dev, CBBR_TOPIC_SLOTCTRL,
523 		    CBBM_TOPIC_SLOTCTRL_SLOTON |
524 		    CBBM_TOPIC_SLOTCTRL_SLOTEN |
525 		    CBBM_TOPIC_SLOTCTRL_ID_LOCK |
526 		    CBBM_TOPIC_SLOTCTRL_ID_WP, 1);
527 
528 		/*
529 		 * At offset 0xa3 Card Detect Control Register
530 		 * 0x80 CARDBUS enbale
531 		 * 0x01 Cleared for hardware change detect
532 		 */
533 		PCI_MASK2_CONFIG(sc->dev, CBBR_TOPIC_CDC,
534 		    | CBBM_TOPIC_CDC_CARDBUS,
535 		    & ~CBBM_TOPIC_CDC_SWDETECT, 4);
536 		break;
537 	}
538 
539 	/*
540 	 * Need to tell ExCA registers to route via PCI interrupts.  There
541 	 * are two ways to do this.  Once is to set INTR_ENABLE and the
542 	 * other is to set CSC to 0.  Since both methods are mutually
543 	 * compatible, we do both.
544 	 */
545 	exca_write(&sc->exca, EXCA_INTR, EXCA_INTR_ENABLE);
546 	exca_write(&sc->exca, EXCA_CSC_INTR, 0);
547 
548 	/* close all memory and io windows */
549 	pci_write_config(sc->dev, CBBR_MEMBASE0, 0xffffffff, 4);
550 	pci_write_config(sc->dev, CBBR_MEMLIMIT0, 0, 4);
551 	pci_write_config(sc->dev, CBBR_MEMBASE1, 0xffffffff, 4);
552 	pci_write_config(sc->dev, CBBR_MEMLIMIT1, 0, 4);
553 	pci_write_config(sc->dev, CBBR_IOBASE0, 0xffffffff, 4);
554 	pci_write_config(sc->dev, CBBR_IOLIMIT0, 0, 4);
555 	pci_write_config(sc->dev, CBBR_IOBASE1, 0xffffffff, 4);
556 	pci_write_config(sc->dev, CBBR_IOLIMIT1, 0, 4);
557 }
558 
559 static int
560 cbb_attach(device_t brdev)
561 {
562 	struct cbb_softc *sc = (struct cbb_softc *)device_get_softc(brdev);
563 	int rid;
564 
565 	mtx_init(&sc->mtx, device_get_nameunit(brdev), "cbb", MTX_DEF);
566 	cv_init(&sc->cv, "cbb cv");
567 	sc->chipset = cbb_chipset(pci_get_devid(brdev), NULL);
568 	sc->dev = brdev;
569 	sc->cbdev = NULL;
570 	sc->pccarddev = NULL;
571 	sc->secbus = pci_read_config(brdev, PCIR_SECBUS_2, 1);
572 	sc->subbus = pci_read_config(brdev, PCIR_SUBBUS_2, 1);
573 	SLIST_INIT(&sc->rl);
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 		sockbase = pci_read_config(brdev, rid, 4);
604 		if (sockbase < 0x100000 || sockbase >= 0xfffffff0) {
605 			pci_write_config(brdev, rid, 0xffffffff, 4);
606 			sockbase = pci_read_config(brdev, rid, 4);
607 			sockbase = (sockbase & 0xfffffff0) &
608 			    -(sockbase & 0xfffffff0);
609 			sc->base_res = bus_generic_alloc_resource(
610 			    device_get_parent(brdev), brdev, SYS_RES_MEMORY,
611 			    &rid, cbb_start_mem, ~0, sockbase,
612 			    RF_ACTIVE|rman_make_alignment_flags(sockbase));
613 			if (!sc->base_res) {
614 				device_printf(brdev,
615 				    "Could not grab register memory\n");
616 				mtx_destroy(&sc->mtx);
617 				cv_destroy(&sc->cv);
618 				return (ENOMEM);
619 			}
620 			sc->flags |= CBB_KLUDGE_ALLOC;
621 			pci_write_config(brdev, CBBR_SOCKBASE,
622 			    rman_get_start(sc->base_res), 4);
623 			DEVPRINTF((brdev, "PCI Memory allocated: %08lx\n",
624 			    rman_get_start(sc->base_res)));
625 		} else {
626 			device_printf(brdev, "Could not map register memory\n");
627 			goto err;
628 		}
629 #endif
630 	}
631 
632 	sc->bst = rman_get_bustag(sc->base_res);
633 	sc->bsh = rman_get_bushandle(sc->base_res);
634 	exca_init(&sc->exca, brdev, sc->bst, sc->bsh, CBB_EXCA_OFFSET);
635 	sc->exca.flags |= EXCA_HAS_MEMREG_WIN;
636 	cbb_chipinit(sc);
637 
638 	/* attach children */
639 	sc->cbdev = device_add_child(brdev, "cardbus", -1);
640 	if (sc->cbdev == NULL)
641 		DEVPRINTF((brdev, "WARNING: cannot add cardbus bus.\n"));
642 	else if (device_probe_and_attach(sc->cbdev) != 0) {
643 		DEVPRINTF((brdev, "WARNING: cannot attach cardbus bus!\n"));
644 		sc->cbdev = NULL;
645 	}
646 
647 	sc->pccarddev = device_add_child(brdev, "pccard", -1);
648 	if (sc->pccarddev == NULL)
649 		DEVPRINTF((brdev, "WARNING: cannot add pccard bus.\n"));
650 	else if (device_probe_and_attach(sc->pccarddev) != 0) {
651 		DEVPRINTF((brdev, "WARNING: cannot attach pccard bus.\n"));
652 		sc->pccarddev = NULL;
653 	}
654 
655 	/* Map and establish the interrupt. */
656 	rid = 0;
657 	sc->irq_res = bus_alloc_resource(brdev, SYS_RES_IRQ, &rid, 0, ~0, 1,
658 	    RF_SHAREABLE | RF_ACTIVE);
659 	if (sc->irq_res == NULL) {
660 		printf("cbb: Unable to map IRQ...\n");
661 		goto err;
662 		return (ENOMEM);
663 	}
664 
665 	if (bus_setup_intr(brdev, sc->irq_res, INTR_TYPE_AV, cbb_intr, sc,
666 	    &sc->intrhand)) {
667 		device_printf(brdev, "couldn't establish interrupt");
668 		goto err;
669 	}
670 
671 	/* reset 16-bit pcmcia bus */
672 	exca_clrb(&sc->exca, EXCA_INTR, EXCA_INTR_RESET);
673 
674 	/* turn off power */
675 	cbb_power(brdev, CARD_VCC_0V | CARD_VPP_0V);
676 
677 	/* CSC Interrupt: Card detect interrupt on */
678 	cbb_setb(sc, CBB_SOCKET_MASK, CBB_SOCKET_MASK_CD);
679 
680 	/* reset interrupt */
681 	cbb_set(sc, CBB_SOCKET_EVENT, cbb_get(sc, CBB_SOCKET_EVENT));
682 
683 	/* Start the thread */
684 	if (kthread_create(cbb_event_thread, sc, &sc->event_thread, 0,
685 		"%s%d", device_get_name(sc->dev), device_get_unit(sc->dev))) {
686 		device_printf (sc->dev, "unable to create event thread.\n");
687 		panic ("cbb_create_event_thread");
688 	}
689 
690 	return (0);
691 err:
692 	if (sc->irq_res)
693 		bus_release_resource(brdev, SYS_RES_IRQ, 0, sc->irq_res);
694 	if (sc->base_res) {
695 		if (sc->flags & CBB_KLUDGE_ALLOC)
696 			bus_generic_release_resource(device_get_parent(brdev),
697 			    brdev, SYS_RES_MEMORY, CBBR_SOCKBASE,
698 			    sc->base_res);
699 		else
700 			bus_release_resource(brdev, SYS_RES_MEMORY,
701 			    CBBR_SOCKBASE, sc->base_res);
702 	}
703 	mtx_destroy(&sc->mtx);
704 	cv_destroy(&sc->cv);
705 	return (ENOMEM);
706 }
707 
708 static int
709 cbb_detach(device_t brdev)
710 {
711 	struct cbb_softc *sc = device_get_softc(brdev);
712 	int numdevs;
713 	device_t *devlist;
714 	int tmp;
715 	int error;
716 
717 	device_get_children(brdev, &devlist, &numdevs);
718 
719 	error = 0;
720 	for (tmp = 0; tmp < numdevs; tmp++) {
721 		if (device_detach(devlist[tmp]) == 0)
722 			device_delete_child(brdev, devlist[tmp]);
723 		else
724 			error++;
725 	}
726 	free(devlist, M_TEMP);
727 	if (error > 0)
728 		return (ENXIO);
729 
730 	mtx_lock(&sc->mtx);
731 	bus_teardown_intr(brdev, sc->irq_res, sc->intrhand);
732 	sc->flags |= CBB_KTHREAD_DONE;
733 	if (sc->flags & CBB_KTHREAD_RUNNING) {
734 		wakeup(sc);
735 		mtx_unlock(&sc->mtx);
736 		DEVPRINTF((brdev, "waiting for kthread exit..."));
737 		error = tsleep(sc, PWAIT, "cbb-detach-wait", 60 * hz);
738 		if (error)
739 			DPRINTF(("timeout\n"));
740 		else
741 			DPRINTF(("done\n"));
742 	} else {
743 		mtx_unlock(&sc->mtx);
744 	}
745 
746 	bus_release_resource(brdev, SYS_RES_IRQ, 0, sc->irq_res);
747 	bus_release_resource(brdev, SYS_RES_MEMORY, CBBR_SOCKBASE,
748 	    sc->base_res);
749 	mtx_destroy(&sc->mtx);
750 	cv_destroy(&sc->cv);
751 	return (0);
752 }
753 
754 static int
755 cbb_shutdown(device_t brdev)
756 {
757 	struct cbb_softc *sc = (struct cbb_softc *)device_get_softc(brdev);
758 	/* properly reset everything at shutdown */
759 
760 	PCI_MASK_CONFIG(brdev, CBBR_BRIDGECTRL, |CBBM_BRIDGECTRL_RESET, 2);
761 	exca_clrb(&sc->exca, EXCA_INTR, EXCA_INTR_RESET);
762 
763 	cbb_set(sc, CBB_SOCKET_MASK, 0);
764 
765 	cbb_power(brdev, CARD_VCC_0V | CARD_VPP_0V);
766 
767 	exca_write(&sc->exca, EXCA_ADDRWIN_ENABLE, 0);
768 	pci_write_config(brdev, CBBR_MEMBASE0, 0, 4);
769 	pci_write_config(brdev, CBBR_MEMLIMIT0, 0, 4);
770 	pci_write_config(brdev, CBBR_MEMBASE1, 0, 4);
771 	pci_write_config(brdev, CBBR_MEMLIMIT1, 0, 4);
772 	pci_write_config(brdev, CBBR_IOBASE0, 0, 4);
773 	pci_write_config(brdev, CBBR_IOLIMIT0, 0, 4);
774 	pci_write_config(brdev, CBBR_IOBASE1, 0, 4);
775 	pci_write_config(brdev, CBBR_IOLIMIT1, 0, 4);
776 	pci_write_config(brdev, PCIR_COMMAND, 0, 2);
777 	return (0);
778 }
779 
780 static int
781 cbb_setup_intr(device_t dev, device_t child, struct resource *irq,
782   int flags, driver_intr_t *intr, void *arg, void **cookiep)
783 {
784 	int err;
785 
786 	/*
787 	 * You aren't allowed to have fast interrupts for pccard/cardbus
788 	 * things since those interrupts are PCI and shared.  Since we use
789 	 * the PCI interrupt for the status change interrupts, it can't be
790 	 * free for use by the driver.  Fast interrupts must not be shared.
791 	 */
792 	if ((flags & INTR_FAST) != 0)
793 		return (EINVAL);
794 	err = bus_generic_setup_intr(dev, child, irq, flags, intr, arg,
795 	    cookiep);
796 	/*
797 	 * XXX need to turn on ISA interrupts, if we ever support them, but
798 	 * XXX for now that's all we need to do.
799 	 */
800 	return (err);
801 }
802 
803 static int
804 cbb_teardown_intr(device_t dev, device_t child, struct resource *irq,
805     void *cookie)
806 {
807 	/* XXX Need to do different things for ISA interrupts. */
808 	return (bus_generic_teardown_intr(dev, child, irq, cookie));
809 }
810 
811 
812 static void
813 cbb_driver_added(device_t brdev, driver_t *driver)
814 {
815 	struct cbb_softc *sc = device_get_softc(brdev);
816 	device_t *devlist;
817 	int tmp;
818 	int numdevs;
819 	int wake;
820 	uint32_t sockstate;
821 
822 	DEVICE_IDENTIFY(driver, brdev);
823 	device_get_children(brdev, &devlist, &numdevs);
824 	wake = 0;
825 	sockstate = cbb_get(sc, CBB_SOCKET_STATE);
826 	for (tmp = 0; tmp < numdevs; tmp++) {
827 		if (device_get_state(devlist[tmp]) == DS_NOTPRESENT &&
828 		    device_probe_and_attach(devlist[tmp]) == 0) {
829 			if (devlist[tmp] == NULL)
830 				/* NOTHING */;
831 			else if (strcmp(driver->name, "cardbus") == 0) {
832 				sc->cbdev = devlist[tmp];
833 				if (((sockstate & CBB_SOCKET_STAT_CD) == 0) &&
834 				    (sockstate & CBB_SOCKET_STAT_CB))
835 					wake++;
836 			} else if (strcmp(driver->name, "pccard") == 0) {
837 				sc->pccarddev = devlist[tmp];
838 				if (((sockstate & CBB_SOCKET_STAT_CD) == 0) &&
839 				    (sockstate & CBB_SOCKET_STAT_16BIT))
840 					wake++;
841 			} else
842 				device_printf(brdev,
843 				    "Unsupported child bus: %s\n",
844 				    driver->name);
845 		}
846 	}
847 	free(devlist, M_TEMP);
848 
849 	if (wake > 0) {
850 		if ((cbb_get(sc, CBB_SOCKET_STATE) & CBB_SOCKET_STAT_CD)
851 		    == 0) {
852 			mtx_lock(&sc->mtx);
853 			wakeup(sc);
854 			mtx_unlock(&sc->mtx);
855 		}
856 	}
857 }
858 
859 static void
860 cbb_child_detached(device_t brdev, device_t child)
861 {
862 	struct cbb_softc *sc = device_get_softc(brdev);
863 
864 	if (child == sc->cbdev)
865 		sc->cbdev = NULL;
866 	else if (child == sc->pccarddev)
867 		sc->pccarddev = NULL;
868 	else
869 		device_printf(brdev, "Unknown child detached: %s %p/%p\n",
870 		    device_get_nameunit(child), sc->cbdev, sc->pccarddev);
871 }
872 
873 static int
874 cbb_card_reprobe(device_t brdev, device_t busdev)
875 {
876 	struct cbb_softc *sc = device_get_softc(brdev);
877 	int wake = 0;
878 	uint32_t sockstate;
879 
880 	sockstate = cbb_get(sc, CBB_SOCKET_STATE);
881 
882 	if ((sockstate & CBB_SOCKET_STAT_CD) == 0) {
883 		if (busdev == sc->cbdev &&
884 		    (sockstate & CBB_SOCKET_STAT_CB))
885 			wake++;
886 		else if (busdev == sc->pccarddev &&
887 		    (sockstate & CBB_SOCKET_STAT_16BIT))
888 			wake++;
889 
890 		if (wake > 0) {
891 			mtx_lock(&sc->mtx);
892 			wakeup(sc);
893 			mtx_unlock(&sc->mtx);
894 			return (0);
895 		}
896 		return (EBUSY);
897 	}
898 	return (ENOENT);
899 }
900 
901 /************************************************************************/
902 /* Kthreads								*/
903 /************************************************************************/
904 
905 static void
906 cbb_event_thread(void *arg)
907 {
908 	struct cbb_softc *sc = arg;
909 	uint32_t status;
910 	int err;
911 
912 	/*
913 	 * We take out Giant here because we drop it in tsleep
914 	 * and need it for kthread_exit, which drops it.
915 	 */
916 	mtx_lock(&Giant);
917 	sc->flags |= CBB_KTHREAD_RUNNING;
918 	while (1) {
919 		/*
920 		 * Check to see if we have anything first so that
921 		 * if there's a card already inserted, we do the
922 		 * right thing.
923 		 */
924 		if (sc->flags & CBB_KTHREAD_DONE)
925 			break;
926 
927 		status = cbb_get(sc, CBB_SOCKET_STATE);
928 		if ((status & CBB_SOCKET_STAT_CD) == 0)
929 			cbb_insert(sc);
930 		else
931 			cbb_removal(sc);
932 		/*
933 		 * Wait until it has been 1s since the last time we
934 		 * get an interrupt.  We handle the rest of the interrupt
935 		 * at the top of the loop.
936 		 */
937 		mtx_lock(&sc->mtx);
938 		cv_wait(&sc->cv, &sc->mtx);
939 		do {
940 			err = cv_timedwait(&sc->cv, &sc->mtx, 1 * hz);
941 		} while (err != EWOULDBLOCK &&
942 		    (sc->flags & CBB_KTHREAD_DONE) == 0);
943 		mtx_unlock(&sc->mtx);
944 	}
945 	sc->flags &= ~CBB_KTHREAD_RUNNING;
946 	/*
947 	 * XXX I think there's a race here.  If we wakeup in the other
948 	 * thread before kthread_exit is called and this routine returns,
949 	 * and that thread causes us to be unmapped, then we are setting
950 	 * ourselves up for a panic.  Make sure that I check out
951 	 * jhb's crash.c for a fix.
952 	 */
953 	wakeup(sc);
954 	kthread_exit(0);
955 }
956 
957 /************************************************************************/
958 /* Insert/removal							*/
959 /************************************************************************/
960 
961 static void
962 cbb_insert(struct cbb_softc *sc)
963 {
964 	uint32_t sockevent, sockstate;
965 	int timeout = 30;
966 
967 	/*
968 	 * Debounce interrupt.  However, most of the debounce
969 	 * is done in the thread's timeout routines.
970 	 */
971 	do {
972 		sockevent = cbb_get(sc, CBB_SOCKET_EVENT);
973 		sockstate = cbb_get(sc, CBB_SOCKET_STATE);
974 	} while (sockstate & CBB_SOCKET_STAT_CD && --timeout > 0);
975 
976 	if (timeout < 0) {
977 		device_printf (sc->dev, "insert timeout");
978 		return;
979 	}
980 
981 	DEVPRINTF((sc->dev, "card inserted: event=0x%08x, state=%08x\n",
982 	    sockevent, sockstate));
983 
984 	if (sockstate & CBB_SOCKET_STAT_16BIT) {
985 		if (sc->pccarddev != NULL) {
986 			sc->flags |= CBB_16BIT_CARD;
987 			if (CARD_ATTACH_CARD(sc->pccarddev) != 0)
988 				device_printf(sc->dev,
989 				    "PC Card card activation failed\n");
990 		} else {
991 			device_printf(sc->dev,
992 			    "PC Card inserted, but no pccard bus.\n");
993 		}
994 	} else if (sockstate & CBB_SOCKET_STAT_CB) {
995 		if (sc->cbdev != NULL) {
996 			sc->flags &= ~CBB_16BIT_CARD;
997 			if (CARD_ATTACH_CARD(sc->cbdev) != 0)
998 				device_printf(sc->dev,
999 				    "CardBus card activation failed\n");
1000 		} else {
1001 			device_printf(sc->dev,
1002 			    "CardBUS card inserted, but no cardbus bus.\n");
1003 		}
1004 	} else {
1005 		/*
1006 		 * We should power the card down, and try again a couple of
1007 		 * times if this happens. XXX
1008 		 */
1009 		device_printf (sc->dev, "Unsupported card type detected\n");
1010 	}
1011 }
1012 
1013 static void
1014 cbb_removal(struct cbb_softc *sc)
1015 {
1016 	if (sc->flags & CBB_16BIT_CARD && sc->pccarddev != NULL)
1017 		CARD_DETACH_CARD(sc->pccarddev, DETACH_FORCE);
1018 	else if ((!(sc->flags & CBB_16BIT_CARD)) && sc->cbdev != NULL)
1019 		CARD_DETACH_CARD(sc->cbdev, DETACH_FORCE);
1020 	cbb_destroy_res(sc);
1021 }
1022 
1023 /************************************************************************/
1024 /* Interrupt Handler							*/
1025 /************************************************************************/
1026 
1027 static void
1028 cbb_intr(void *arg)
1029 {
1030 	struct cbb_softc *sc = arg;
1031 	uint32_t sockevent;
1032 
1033 	/*
1034 	 * This ISR needs work XXX
1035 	 */
1036 	sockevent = cbb_get(sc, CBB_SOCKET_EVENT);
1037 	if (sockevent) {
1038 		/* ack the interrupt */
1039 		cbb_setb(sc, CBB_SOCKET_EVENT, sockevent);
1040 
1041 		if (sockevent & CBB_SOCKET_EVENT_CD) {
1042 			mtx_lock(&sc->mtx);
1043 			cv_signal(&sc->cv);
1044 			mtx_unlock(&sc->mtx);
1045 		}
1046 		if (sockevent & CBB_SOCKET_EVENT_CSTS) {
1047 			DPRINTF((" cstsevent occured: 0x%08x\n",
1048 			    cbb_get(sc, CBB_SOCKET_STATE)));
1049 		}
1050 		if (sockevent & CBB_SOCKET_EVENT_POWER) {
1051 			DPRINTF((" pwrevent occured: 0x%08x\n",
1052 			    cbb_get(sc, CBB_SOCKET_STATE)));
1053 		}
1054 		/* Other bits? */
1055 	}
1056 
1057 	/* Call the interrupt if we still have the card */
1058 }
1059 
1060 /************************************************************************/
1061 /* Generic Power functions						*/
1062 /************************************************************************/
1063 
1064 static int
1065 cbb_detect_voltage(device_t brdev)
1066 {
1067 	struct cbb_softc *sc = device_get_softc(brdev);
1068 	uint32_t psr;
1069 	int vol = CARD_UKN_CARD;
1070 
1071 	psr = cbb_get(sc, CBB_SOCKET_STATE);
1072 
1073 	if (psr & CBB_SOCKET_STAT_5VCARD)
1074 		vol |= CARD_5V_CARD;
1075 	if (psr & CBB_SOCKET_STAT_3VCARD)
1076 		vol |= CARD_3V_CARD;
1077 	if (psr & CBB_SOCKET_STAT_XVCARD)
1078 		vol |= CARD_XV_CARD;
1079 	if (psr & CBB_SOCKET_STAT_YVCARD)
1080 		vol |= CARD_YV_CARD;
1081 
1082 	return (vol);
1083 }
1084 
1085 static int
1086 cbb_power(device_t brdev, int volts)
1087 {
1088 	uint32_t status, sock_ctrl;
1089 	struct cbb_softc *sc = device_get_softc(brdev);
1090 	int timeout;
1091 	uint32_t sockevent;
1092 
1093 	DEVPRINTF((sc->dev, "cbb_power: %s and %s [%x]\n",
1094 	    (volts & CARD_VCCMASK) == CARD_VCC_UC ? "CARD_VCC_UC" :
1095 	    (volts & CARD_VCCMASK) == CARD_VCC_5V ? "CARD_VCC_5V" :
1096 	    (volts & CARD_VCCMASK) == CARD_VCC_3V ? "CARD_VCC_3V" :
1097 	    (volts & CARD_VCCMASK) == CARD_VCC_XV ? "CARD_VCC_XV" :
1098 	    (volts & CARD_VCCMASK) == CARD_VCC_YV ? "CARD_VCC_YV" :
1099 	    (volts & CARD_VCCMASK) == CARD_VCC_0V ? "CARD_VCC_0V" :
1100 	    "VCC-UNKNOWN",
1101 	    (volts & CARD_VPPMASK) == CARD_VPP_UC ? "CARD_VPP_UC" :
1102 	    (volts & CARD_VPPMASK) == CARD_VPP_12V ? "CARD_VPP_12V" :
1103 	    (volts & CARD_VPPMASK) == CARD_VPP_VCC ? "CARD_VPP_VCC" :
1104 	    (volts & CARD_VPPMASK) == CARD_VPP_0V ? "CARD_VPP_0V" :
1105 	    "VPP-UNKNOWN",
1106 	    volts));
1107 
1108 	status = cbb_get(sc, CBB_SOCKET_STATE);
1109 	sock_ctrl = cbb_get(sc, CBB_SOCKET_CONTROL);
1110 
1111 	switch (volts & CARD_VCCMASK) {
1112 	case CARD_VCC_UC:
1113 		break;
1114 	case CARD_VCC_5V:
1115 		if (CBB_SOCKET_STAT_5VCARD & status) { /* check 5 V card */
1116 			sock_ctrl &= ~CBB_SOCKET_CTRL_VCCMASK;
1117 			sock_ctrl |= CBB_SOCKET_CTRL_VCC_5V;
1118 		} else {
1119 			device_printf(sc->dev,
1120 			    "BAD voltage request: no 5 V card\n");
1121 		}
1122 		break;
1123 	case CARD_VCC_3V:
1124 		if (CBB_SOCKET_STAT_3VCARD & status) {
1125 			sock_ctrl &= ~CBB_SOCKET_CTRL_VCCMASK;
1126 			sock_ctrl |= CBB_SOCKET_CTRL_VCC_3V;
1127 		} else {
1128 			device_printf(sc->dev,
1129 			    "BAD voltage request: no 3.3 V card\n");
1130 		}
1131 		break;
1132 	case CARD_VCC_0V:
1133 		sock_ctrl &= ~CBB_SOCKET_CTRL_VCCMASK;
1134 		break;
1135 	default:
1136 		return (0);			/* power NEVER changed */
1137 		break;
1138 	}
1139 
1140 	switch (volts & CARD_VPPMASK) {
1141 	case CARD_VPP_UC:
1142 		break;
1143 	case CARD_VPP_0V:
1144 		sock_ctrl &= ~CBB_SOCKET_CTRL_VPPMASK;
1145 		break;
1146 	case CARD_VPP_VCC:
1147 		sock_ctrl &= ~CBB_SOCKET_CTRL_VPPMASK;
1148 		sock_ctrl |= ((sock_ctrl >> 4) & 0x07);
1149 		break;
1150 	case CARD_VPP_12V:
1151 		sock_ctrl &= ~CBB_SOCKET_CTRL_VPPMASK;
1152 		sock_ctrl |= CBB_SOCKET_CTRL_VPP_12V;
1153 		break;
1154 	}
1155 
1156 	if (cbb_get(sc, CBB_SOCKET_CONTROL) == sock_ctrl)
1157 		return (1); /* no change necessary */
1158 
1159 	cbb_set(sc, CBB_SOCKET_CONTROL, sock_ctrl);
1160 	status = cbb_get(sc, CBB_SOCKET_STATE);
1161 
1162 	/*
1163 	 * XXX This busy wait is bogus.  We should wait for a power
1164 	 * interrupt and then whine if the status is bad.  If we're
1165 	 * worried about the card not coming up, then we should also
1166 	 * schedule a timeout which we can cacel in the power interrupt.
1167 	 */
1168 	timeout = 20;
1169 	do {
1170 		DELAY(20*1000);
1171 		sockevent = cbb_get(sc, CBB_SOCKET_EVENT);
1172 	} while (!(sockevent & CBB_SOCKET_EVENT_POWER) && --timeout > 0);
1173 	/* reset event status */
1174 	/* XXX should only reset EVENT_POWER */
1175 	cbb_set(sc, CBB_SOCKET_EVENT, sockevent);
1176 	if (timeout < 0) {
1177 		printf ("VCC supply failed.\n");
1178 		return (0);
1179 	}
1180 
1181 	/* XXX
1182 	 * delay 400 ms: thgough the standard defines that the Vcc set-up time
1183 	 * is 20 ms, some PC-Card bridge requires longer duration.
1184 	 * XXX Note: We should check the stutus AFTER the delay to give time
1185 	 * for things to stabilize.
1186 	 */
1187 	DELAY(400*1000);
1188 
1189 	if (status & CBB_SOCKET_STAT_BADVCC) {
1190 		device_printf(sc->dev,
1191 		    "bad Vcc request. ctrl=0x%x, status=0x%x\n",
1192 		    sock_ctrl ,status);
1193 		printf("cbb_power: %s and %s [%x]\n",
1194 		    (volts & CARD_VCCMASK) == CARD_VCC_UC ? "CARD_VCC_UC" :
1195 		    (volts & CARD_VCCMASK) == CARD_VCC_5V ? "CARD_VCC_5V" :
1196 		    (volts & CARD_VCCMASK) == CARD_VCC_3V ? "CARD_VCC_3V" :
1197 		    (volts & CARD_VCCMASK) == CARD_VCC_XV ? "CARD_VCC_XV" :
1198 		    (volts & CARD_VCCMASK) == CARD_VCC_YV ? "CARD_VCC_YV" :
1199 		    (volts & CARD_VCCMASK) == CARD_VCC_0V ? "CARD_VCC_0V" :
1200 		    "VCC-UNKNOWN",
1201 		    (volts & CARD_VPPMASK) == CARD_VPP_UC ? "CARD_VPP_UC" :
1202 		    (volts & CARD_VPPMASK) == CARD_VPP_12V ? "CARD_VPP_12V":
1203 		    (volts & CARD_VPPMASK) == CARD_VPP_VCC ? "CARD_VPP_VCC":
1204 		    (volts & CARD_VPPMASK) == CARD_VPP_0V ? "CARD_VPP_0V" :
1205 		    "VPP-UNKNOWN",
1206 		    volts);
1207 		return (0);
1208 	}
1209 	return (1);		/* power changed correctly */
1210 }
1211 
1212 /*
1213  * detect the voltage for the card, and set it.  Since the power
1214  * used is the square of the voltage, lower voltages is a big win
1215  * and what Windows does (and what Microsoft prefers).  The MS paper
1216  * also talks about preferring the CIS entry as well.
1217  */
1218 static int
1219 cbb_do_power(device_t brdev)
1220 {
1221 	int voltage;
1222 
1223 	/* Prefer lowest voltage supported */
1224 	voltage = cbb_detect_voltage(brdev);
1225 	cbb_power(brdev, CARD_VCC_0V | CARD_VPP_0V);
1226 	if (voltage & CARD_YV_CARD)
1227 		cbb_power(brdev, CARD_VCC_YV | CARD_VPP_VCC);
1228 	else if (voltage & CARD_XV_CARD)
1229 		cbb_power(brdev, CARD_VCC_XV | CARD_VPP_VCC);
1230 	else if (voltage & CARD_3V_CARD)
1231 		cbb_power(brdev, CARD_VCC_3V | CARD_VPP_VCC);
1232 	else if (voltage & CARD_5V_CARD)
1233 		cbb_power(brdev, CARD_VCC_5V | CARD_VPP_VCC);
1234 	else {
1235 		device_printf(brdev, "Unknown card voltage\n");
1236 		return (ENXIO);
1237 	}
1238 	return (0);
1239 }
1240 
1241 /************************************************************************/
1242 /* Cardbus power functions						*/
1243 /************************************************************************/
1244 
1245 static void
1246 cbb_cardbus_reset(device_t brdev)
1247 {
1248 	struct cbb_softc *sc = device_get_softc(brdev);
1249 	int delay_us;
1250 
1251 	delay_us = sc->chipset == CB_RF5C47X ? 400*1000 : 20*1000;
1252 
1253 	PCI_MASK_CONFIG(brdev, CBBR_BRIDGECTRL, |CBBM_BRIDGECTRL_RESET, 2);
1254 
1255 	DELAY(delay_us);
1256 
1257 	/* If a card exists, unreset it! */
1258 	if ((cbb_get(sc, CBB_SOCKET_STATE) & CBB_SOCKET_STAT_CD) == 0) {
1259 		PCI_MASK_CONFIG(brdev, CBBR_BRIDGECTRL,
1260 		    &~CBBM_BRIDGECTRL_RESET, 2);
1261 		DELAY(delay_us);
1262 	}
1263 }
1264 
1265 static int
1266 cbb_cardbus_power_enable_socket(device_t brdev, device_t child)
1267 {
1268 	struct cbb_softc *sc = device_get_softc(brdev);
1269 	int err;
1270 
1271 	if ((cbb_get(sc, CBB_SOCKET_STATE) & CBB_SOCKET_STAT_CD) ==
1272 	    CBB_SOCKET_STAT_CD)
1273 		return (ENODEV);
1274 
1275 	err = cbb_do_power(brdev);
1276 	if (err)
1277 		return (err);
1278 	cbb_cardbus_reset(brdev);
1279 	return (0);
1280 }
1281 
1282 static void
1283 cbb_cardbus_power_disable_socket(device_t brdev, device_t child)
1284 {
1285 	cbb_power(brdev, CARD_VCC_0V | CARD_VPP_0V);
1286 	cbb_cardbus_reset(brdev);
1287 }
1288 
1289 /************************************************************************/
1290 /* Cardbus Resource							*/
1291 /************************************************************************/
1292 
1293 static int
1294 cbb_cardbus_io_open(device_t brdev, int win, uint32_t start, uint32_t end)
1295 {
1296 	int basereg;
1297 	int limitreg;
1298 
1299 	if ((win < 0) || (win > 1)) {
1300 		DEVPRINTF((brdev,
1301 		    "cbb_cardbus_io_open: window out of range %d\n", win));
1302 		return (EINVAL);
1303 	}
1304 
1305 	basereg = win * 8 + CBBR_IOBASE0;
1306 	limitreg = win * 8 + CBBR_IOLIMIT0;
1307 
1308 	pci_write_config(brdev, basereg, start, 4);
1309 	pci_write_config(brdev, limitreg, end, 4);
1310 	return (0);
1311 }
1312 
1313 static int
1314 cbb_cardbus_mem_open(device_t brdev, int win, uint32_t start, uint32_t end)
1315 {
1316 	int basereg;
1317 	int limitreg;
1318 
1319 	if ((win < 0) || (win > 1)) {
1320 		DEVPRINTF((brdev,
1321 		    "cbb_cardbus_mem_open: window out of range %d\n", win));
1322 		return (EINVAL);
1323 	}
1324 
1325 	basereg = win*8 + CBBR_MEMBASE0;
1326 	limitreg = win*8 + CBBR_MEMLIMIT0;
1327 
1328 	pci_write_config(brdev, basereg, start, 4);
1329 	pci_write_config(brdev, limitreg, end, 4);
1330 	return (0);
1331 }
1332 
1333 /*
1334  * XXX The following function belongs in the pci bus layer.
1335  */
1336 static void
1337 cbb_cardbus_auto_open(struct cbb_softc *sc, int type)
1338 {
1339 	uint32_t starts[2];
1340 	uint32_t ends[2];
1341 	struct cbb_reslist *rle;
1342 	int align;
1343 	int prefetchable[2];
1344 	uint32_t reg;
1345 
1346 	starts[0] = starts[1] = 0xffffffff;
1347 	ends[0] = ends[1] = 0;
1348 
1349 	if (type == SYS_RES_MEMORY)
1350 		align = CBB_MEMALIGN;
1351 	else if (type == SYS_RES_IOPORT)
1352 		align = CBB_IOALIGN;
1353 	else
1354 		align = 1;
1355 
1356 	SLIST_FOREACH(rle, &sc->rl, link) {
1357 		if (rle->type != type)
1358 			;
1359 		else if (rle->res == NULL) {
1360 			device_printf(sc->dev, "WARNING: Resource not reserved?  "
1361 			    "(type=%d, addr=%lx)\n",
1362 			    rle->type, rman_get_start(rle->res));
1363 		} else if (!(rman_get_flags(rle->res) & RF_ACTIVE)) {
1364 			/* XXX */
1365 		} else if (starts[0] == 0xffffffff) {
1366 			starts[0] = rman_get_start(rle->res);
1367 			ends[0] = rman_get_end(rle->res);
1368 			prefetchable[0] =
1369 			    rman_get_flags(rle->res) & RF_PREFETCHABLE;
1370 		} else if (rman_get_end(rle->res) > ends[0] &&
1371 		    rman_get_start(rle->res) - ends[0] <
1372 		    CBB_AUTO_OPEN_SMALLHOLE && prefetchable[0] ==
1373 		    (rman_get_flags(rle->res) & RF_PREFETCHABLE)) {
1374 			ends[0] = rman_get_end(rle->res);
1375 		} else if (rman_get_start(rle->res) < starts[0] &&
1376 		    starts[0] - rman_get_end(rle->res) <
1377 		    CBB_AUTO_OPEN_SMALLHOLE && prefetchable[0] ==
1378 		    (rman_get_flags(rle->res) & RF_PREFETCHABLE)) {
1379 			starts[0] = rman_get_start(rle->res);
1380 		} else if (starts[1] == 0xffffffff) {
1381 			starts[1] = rman_get_start(rle->res);
1382 			ends[1] = rman_get_end(rle->res);
1383 			prefetchable[1] =
1384 			    rman_get_flags(rle->res) & RF_PREFETCHABLE;
1385 		} else if (rman_get_end(rle->res) > ends[1] &&
1386 		    rman_get_start(rle->res) - ends[1] <
1387 		    CBB_AUTO_OPEN_SMALLHOLE && prefetchable[1] ==
1388 		    (rman_get_flags(rle->res) & RF_PREFETCHABLE)) {
1389 			ends[1] = rman_get_end(rle->res);
1390 		} else if (rman_get_start(rle->res) < starts[1] &&
1391 		    starts[1] - rman_get_end(rle->res) <
1392 		    CBB_AUTO_OPEN_SMALLHOLE && prefetchable[1] ==
1393 		    (rman_get_flags(rle->res) & RF_PREFETCHABLE)) {
1394 			starts[1] = rman_get_start(rle->res);
1395 		} else {
1396 			uint32_t diffs[2];
1397 			int win;
1398 
1399 			diffs[0] = diffs[1] = 0xffffffff;
1400 			if (rman_get_start(rle->res) > ends[0])
1401 				diffs[0] = rman_get_start(rle->res) - ends[0];
1402 			else if (rman_get_end(rle->res) < starts[0])
1403 				diffs[0] = starts[0] - rman_get_end(rle->res);
1404 			if (rman_get_start(rle->res) > ends[1])
1405 				diffs[1] = rman_get_start(rle->res) - ends[1];
1406 			else if (rman_get_end(rle->res) < starts[1])
1407 				diffs[1] = starts[1] - rman_get_end(rle->res);
1408 
1409 			win = (diffs[0] <= diffs[1])?0:1;
1410 			if (rman_get_start(rle->res) > ends[win])
1411 				ends[win] = rman_get_end(rle->res);
1412 			else if (rman_get_end(rle->res) < starts[win])
1413 				starts[win] = rman_get_start(rle->res);
1414 			if (!(rman_get_flags(rle->res) & RF_PREFETCHABLE))
1415 				prefetchable[win] = 0;
1416 		}
1417 
1418 		if (starts[0] != 0xffffffff)
1419 			starts[0] -= starts[0] % align;
1420 		if (starts[1] != 0xffffffff)
1421 			starts[1] -= starts[1] % align;
1422 		if (ends[0] % align != 0)
1423 			ends[0] += align - ends[0]%align - 1;
1424 		if (ends[1] % align != 0)
1425 			ends[1] += align - ends[1]%align - 1;
1426 	}
1427 
1428 	if (type == SYS_RES_MEMORY) {
1429 		cbb_cardbus_mem_open(sc->dev, 0, starts[0], ends[0]);
1430 		cbb_cardbus_mem_open(sc->dev, 1, starts[1], ends[1]);
1431 		reg = pci_read_config(sc->dev, CBBR_BRIDGECTRL, 2);
1432 		reg &= ~(CBBM_BRIDGECTRL_PREFETCH_0|
1433 		    CBBM_BRIDGECTRL_PREFETCH_1);
1434 		reg |= (prefetchable[0]?CBBM_BRIDGECTRL_PREFETCH_0:0)|
1435 		    (prefetchable[1]?CBBM_BRIDGECTRL_PREFETCH_1:0);
1436 		pci_write_config(sc->dev, CBBR_BRIDGECTRL, reg, 2);
1437 	} else if (type == SYS_RES_IOPORT) {
1438 		cbb_cardbus_io_open(sc->dev, 0, starts[0], ends[0]);
1439 		cbb_cardbus_io_open(sc->dev, 1, starts[1], ends[1]);
1440 	}
1441 }
1442 
1443 static int
1444 cbb_cardbus_activate_resource(device_t brdev, device_t child, int type,
1445     int rid, struct resource *res)
1446 {
1447 	int ret;
1448 
1449 	ret = BUS_ACTIVATE_RESOURCE(device_get_parent(brdev), child,
1450 	    type, rid, res);
1451 	if (ret != 0)
1452 		return (ret);
1453 	cbb_cardbus_auto_open(device_get_softc(brdev), type);
1454 	return (0);
1455 }
1456 
1457 static int
1458 cbb_cardbus_deactivate_resource(device_t brdev, device_t child, int type,
1459     int rid, struct resource *res)
1460 {
1461 	int ret;
1462 
1463 	ret = BUS_DEACTIVATE_RESOURCE(device_get_parent(brdev), child,
1464 	    type, rid, res);
1465 	if (ret != 0)
1466 		return (ret);
1467 	cbb_cardbus_auto_open(device_get_softc(brdev), type);
1468 	return (0);
1469 }
1470 
1471 static struct resource *
1472 cbb_cardbus_alloc_resource(device_t brdev, device_t child, int type,
1473     int *rid, u_long start, u_long end, u_long count, uint flags)
1474 {
1475 	struct cbb_softc *sc = device_get_softc(brdev);
1476 	int tmp;
1477 	struct resource *res;
1478 
1479 	switch (type) {
1480 	case SYS_RES_IRQ:
1481 		tmp = rman_get_start(sc->irq_res);
1482 		if (start > tmp || end < tmp || count != 1) {
1483 			device_printf(child, "requested interrupt %ld-%ld,"
1484 			    "count = %ld not supported by cbb\n",
1485 			    start, end, count);
1486 			return (NULL);
1487 		}
1488 		start = end = tmp;
1489 		break;
1490 	case SYS_RES_IOPORT:
1491 		if (start <= cbb_start_32_io)
1492 			start = cbb_start_32_io;
1493 		if (end < start)
1494 			end = start;
1495 		break;
1496 	case SYS_RES_MEMORY:
1497 		if (start <= cbb_start_mem)
1498 			start = cbb_start_mem;
1499 		if (end < start)
1500 			end = start;
1501 		break;
1502 	}
1503 
1504 	res = BUS_ALLOC_RESOURCE(device_get_parent(brdev), child, type, rid,
1505 	    start, end, count, flags & ~RF_ACTIVE);
1506 	if (res == NULL) {
1507 		printf("cbb alloc res fail\n");
1508 		return (NULL);
1509 	}
1510 	cbb_insert_res(sc, res, type, *rid);
1511 	if (flags & RF_ACTIVE)
1512 		if (bus_activate_resource(child, type, *rid, res) != 0) {
1513 			bus_release_resource(child, type, *rid, res);
1514 			return (NULL);
1515 		}
1516 
1517 	return (res);
1518 }
1519 
1520 static int
1521 cbb_cardbus_release_resource(device_t brdev, device_t child, int type,
1522     int rid, struct resource *res)
1523 {
1524 	struct cbb_softc *sc = device_get_softc(brdev);
1525 	int error;
1526 
1527 	if (rman_get_flags(res) & RF_ACTIVE) {
1528 		error = bus_deactivate_resource(child, type, rid, res);
1529 		if (error != 0)
1530 			return (error);
1531 	}
1532 	cbb_remove_res(sc, res);
1533 	return (BUS_RELEASE_RESOURCE(device_get_parent(brdev), child,
1534 	    type, rid, res));
1535 }
1536 
1537 /************************************************************************/
1538 /* PC Card Power Functions						*/
1539 /************************************************************************/
1540 
1541 static int
1542 cbb_pcic_power_enable_socket(device_t brdev, device_t child)
1543 {
1544 	struct cbb_softc *sc = device_get_softc(brdev);
1545 	int err;
1546 
1547 	DPRINTF(("cbb_pcic_socket_enable:\n"));
1548 
1549 	/* power down/up the socket to reset */
1550 	err = cbb_do_power(brdev);
1551 	if (err)
1552 		return (err);
1553 	exca_reset(&sc->exca, child);
1554 
1555 	return (0);
1556 }
1557 
1558 static void
1559 cbb_pcic_power_disable_socket(device_t brdev, device_t child)
1560 {
1561 	struct cbb_softc *sc = device_get_softc(brdev);
1562 
1563 	DPRINTF(("cbb_pcic_socket_disable\n"));
1564 
1565 	/* reset signal asserting... */
1566 	exca_clrb(&sc->exca, EXCA_INTR, EXCA_INTR_RESET);
1567 	DELAY(2*1000);
1568 
1569 	/* power down the socket */
1570 	cbb_power(brdev, CARD_VCC_0V | CARD_VPP_0V);
1571 	exca_clrb(&sc->exca, EXCA_PWRCTL, EXCA_PWRCTL_OE);
1572 
1573 	/* wait 300ms until power fails (Tpf). */
1574 	DELAY(300 * 1000);
1575 }
1576 
1577 /************************************************************************/
1578 /* POWER methods							*/
1579 /************************************************************************/
1580 
1581 static int
1582 cbb_power_enable_socket(device_t brdev, device_t child)
1583 {
1584 	struct cbb_softc *sc = device_get_softc(brdev);
1585 
1586 	if (sc->flags & CBB_16BIT_CARD)
1587 		return (cbb_pcic_power_enable_socket(brdev, child));
1588 	else
1589 		return (cbb_cardbus_power_enable_socket(brdev, child));
1590 }
1591 
1592 static void
1593 cbb_power_disable_socket(device_t brdev, device_t child)
1594 {
1595 	struct cbb_softc *sc = device_get_softc(brdev);
1596 	if (sc->flags & CBB_16BIT_CARD)
1597 		cbb_pcic_power_disable_socket(brdev, child);
1598 	else
1599 		cbb_cardbus_power_disable_socket(brdev, child);
1600 }
1601 static int
1602 cbb_pcic_activate_resource(device_t brdev, device_t child, int type, int rid,
1603     struct resource *res)
1604 {
1605 	int err;
1606 	struct cbb_softc *sc = device_get_softc(brdev);
1607 	if (!(rman_get_flags(res) & RF_ACTIVE)) { /* not already activated */
1608 		switch (type) {
1609 		case SYS_RES_IOPORT:
1610 			err = exca_io_map(&sc->exca, 0, res);
1611 			break;
1612 		case SYS_RES_MEMORY:
1613 			err = exca_mem_map(&sc->exca, 0, res);
1614 			break;
1615 		default:
1616 			err = 0;
1617 			break;
1618 		}
1619 		if (err)
1620 			return (err);
1621 
1622 	}
1623 	return (BUS_ACTIVATE_RESOURCE(device_get_parent(brdev), child,
1624 	    type, rid, res));
1625 }
1626 
1627 static int
1628 cbb_pcic_deactivate_resource(device_t brdev, device_t child, int type,
1629     int rid, struct resource *res)
1630 {
1631 	struct cbb_softc *sc = device_get_softc(brdev);
1632 
1633 	if (rman_get_flags(res) & RF_ACTIVE) { /* if activated */
1634 		switch (type) {
1635 		case SYS_RES_IOPORT:
1636 			if (exca_io_unmap_res(&sc->exca, res))
1637 				return (ENOENT);
1638 			break;
1639 		case SYS_RES_MEMORY:
1640 			if (exca_mem_unmap_res(&sc->exca, res))
1641 				return (ENOENT);
1642 			break;
1643 		}
1644 	}
1645 	return (BUS_DEACTIVATE_RESOURCE(device_get_parent(brdev), child,
1646 	    type, rid, res));
1647 }
1648 
1649 static struct resource *
1650 cbb_pcic_alloc_resource(device_t brdev, device_t child, int type, int *rid,
1651     u_long start, u_long end, u_long count, uint flags)
1652 {
1653 	struct resource *res = NULL;
1654 	struct cbb_softc *sc = device_get_softc(brdev);
1655 	int tmp;
1656 
1657 	switch (type) {
1658 	case SYS_RES_MEMORY:
1659 		if (start < cbb_start_mem)
1660 			start = cbb_start_mem;
1661 		if (end < start)
1662 			end = start;
1663 		flags = (flags & ~RF_ALIGNMENT_MASK) |
1664 		    rman_make_alignment_flags(CBB_MEMALIGN);
1665 		break;
1666 	case SYS_RES_IOPORT:
1667 		if (start < cbb_start_16_io)
1668 			start = cbb_start_16_io;
1669 		if (end < start)
1670 			end = start;
1671 		break;
1672 	case SYS_RES_IRQ:
1673 		tmp = rman_get_start(sc->irq_res);
1674 		if (start > tmp || end < tmp || count != 1) {
1675 			device_printf(child, "requested interrupt %ld-%ld,"
1676 			    "count = %ld not supported by cbb\n",
1677 			    start, end, count);
1678 			return (NULL);
1679 		}
1680 		flags |= RF_SHAREABLE;
1681 		start = end = rman_get_start(sc->irq_res);
1682 		break;
1683 	}
1684 	res = BUS_ALLOC_RESOURCE(device_get_parent(brdev), child, type, rid,
1685 	    start, end, count, flags & ~RF_ACTIVE);
1686 	if (res == NULL)
1687 		return (NULL);
1688 	cbb_insert_res(sc, res, type, *rid);
1689 	if (flags & RF_ACTIVE) {
1690 		if (bus_activate_resource(child, type, *rid, res) != 0) {
1691 			bus_release_resource(child, type, *rid, res);
1692 			return (NULL);
1693 		}
1694 	}
1695 
1696 	return (res);
1697 }
1698 
1699 static int
1700 cbb_pcic_release_resource(device_t brdev, device_t child, int type,
1701     int rid, struct resource *res)
1702 {
1703 	struct cbb_softc *sc = device_get_softc(brdev);
1704 	int error;
1705 
1706 	if (rman_get_flags(res) & RF_ACTIVE) {
1707 		error = bus_deactivate_resource(child, type, rid, res);
1708 		if (error != 0)
1709 			return (error);
1710 	}
1711 	cbb_remove_res(sc, res);
1712 	return (BUS_RELEASE_RESOURCE(device_get_parent(brdev), child,
1713 	    type, rid, res));
1714 }
1715 
1716 /************************************************************************/
1717 /* PC Card methods							*/
1718 /************************************************************************/
1719 
1720 static int
1721 cbb_pcic_set_res_flags(device_t brdev, device_t child, int type, int rid,
1722     uint32_t flags)
1723 {
1724 	struct cbb_softc *sc = device_get_softc(brdev);
1725 	struct resource *res;
1726 
1727 	if (type != SYS_RES_MEMORY)
1728 		return (EINVAL);
1729 	res = cbb_find_res(sc, type, rid);
1730 	if (res == NULL) {
1731 		device_printf(brdev,
1732 		    "set_res_flags: specified rid not found\n");
1733 		return (ENOENT);
1734 	}
1735 	return (exca_mem_set_flags(&sc->exca, res, flags));
1736 }
1737 
1738 static int
1739 cbb_pcic_set_memory_offset(device_t brdev, device_t child, int rid,
1740     uint32_t cardaddr, uint32_t *deltap)
1741 {
1742 	struct cbb_softc *sc = device_get_softc(brdev);
1743 	struct resource *res;
1744 
1745 	res = cbb_find_res(sc, SYS_RES_MEMORY, rid);
1746 	if (res == NULL) {
1747 		device_printf(brdev,
1748 		    "set_memory_offset: specified rid not found\n");
1749 		return (ENOENT);
1750 	}
1751 	return (exca_mem_set_offset(&sc->exca, res, cardaddr, deltap));
1752 }
1753 
1754 /************************************************************************/
1755 /* BUS Methods								*/
1756 /************************************************************************/
1757 
1758 
1759 static int
1760 cbb_activate_resource(device_t brdev, device_t child, int type, int rid,
1761     struct resource *r)
1762 {
1763 	struct cbb_softc *sc = device_get_softc(brdev);
1764 
1765 	if (sc->flags & CBB_16BIT_CARD)
1766 		return (cbb_pcic_activate_resource(brdev, child, type, rid, r));
1767 	else
1768 		return (cbb_cardbus_activate_resource(brdev, child, type, rid,
1769 		    r));
1770 }
1771 
1772 static int
1773 cbb_deactivate_resource(device_t brdev, device_t child, int type,
1774     int rid, struct resource *r)
1775 {
1776 	struct cbb_softc *sc = device_get_softc(brdev);
1777 
1778 	if (sc->flags & CBB_16BIT_CARD)
1779 		return (cbb_pcic_deactivate_resource(brdev, child, type,
1780 		    rid, r));
1781 	else
1782 		return (cbb_cardbus_deactivate_resource(brdev, child, type,
1783 		    rid, r));
1784 }
1785 
1786 static struct resource *
1787 cbb_alloc_resource(device_t brdev, device_t child, int type, int *rid,
1788     u_long start, u_long end, u_long count, uint flags)
1789 {
1790 	struct cbb_softc *sc = device_get_softc(brdev);
1791 
1792 	if (sc->flags & CBB_16BIT_CARD)
1793 		return (cbb_pcic_alloc_resource(brdev, child, type, rid,
1794 		    start, end, count, flags));
1795 	else
1796 		return (cbb_cardbus_alloc_resource(brdev, child, type, rid,
1797 		    start, end, count, flags));
1798 }
1799 
1800 static int
1801 cbb_release_resource(device_t brdev, device_t child, int type, int rid,
1802     struct resource *r)
1803 {
1804 	struct cbb_softc *sc = device_get_softc(brdev);
1805 
1806 	if (sc->flags & CBB_16BIT_CARD)
1807 		return (cbb_pcic_release_resource(brdev, child, type,
1808 		    rid, r));
1809 	else
1810 		return (cbb_cardbus_release_resource(brdev, child, type,
1811 		    rid, r));
1812 }
1813 
1814 static int
1815 cbb_read_ivar(device_t brdev, device_t child, int which, uintptr_t *result)
1816 {
1817 	struct cbb_softc *sc = device_get_softc(brdev);
1818 
1819 	switch (which) {
1820 	case PCIB_IVAR_BUS:
1821 		*result = sc->secbus;
1822 		return (0);
1823 	}
1824 	return (ENOENT);
1825 }
1826 
1827 static int
1828 cbb_write_ivar(device_t brdev, device_t child, int which, uintptr_t value)
1829 {
1830 	struct cbb_softc *sc = device_get_softc(brdev);
1831 
1832 	switch (which) {
1833 	case PCIB_IVAR_BUS:
1834 		sc->secbus = value;
1835 		break;
1836 	}
1837 	return (ENOENT);
1838 }
1839 
1840 /************************************************************************/
1841 /* PCI compat methods							*/
1842 /************************************************************************/
1843 
1844 static int
1845 cbb_maxslots(device_t brdev)
1846 {
1847 	return (0);
1848 }
1849 
1850 static uint32_t
1851 cbb_read_config(device_t brdev, int b, int s, int f, int reg, int width)
1852 {
1853 	/*
1854 	 * Pass through to the next ppb up the chain (i.e. our grandparent).
1855 	 */
1856 	return (PCIB_READ_CONFIG(device_get_parent(device_get_parent(brdev)),
1857 	    b, s, f, reg, width));
1858 }
1859 
1860 static void
1861 cbb_write_config(device_t brdev, int b, int s, int f, int reg, uint32_t val,
1862     int width)
1863 {
1864 	/*
1865 	 * Pass through to the next ppb up the chain (i.e. our grandparent).
1866 	 */
1867 	PCIB_WRITE_CONFIG(device_get_parent(device_get_parent(brdev)),
1868 	    b, s, f, reg, val, width);
1869 }
1870 
1871 static int
1872 cbb_suspend(device_t self)
1873 {
1874 	int			error = 0;
1875 	struct cbb_softc*	sc = device_get_softc(self);
1876 
1877 	bus_teardown_intr(self, sc->irq_res, sc->intrhand);
1878 	error = bus_generic_suspend(self);
1879 	return (error);
1880 }
1881 
1882 static int
1883 cbb_resume(device_t self)
1884 {
1885 	int	error = 0;
1886 	struct cbb_softc *sc = (struct cbb_softc *)device_get_softc(self);
1887 	uint32_t tmp;
1888 
1889 	pci_write_config(self, CBBR_SOCKBASE, rman_get_start(sc->base_res), 4);
1890 	DEVPRINTF((self, "PCI Memory allocated: %08lx\n",
1891 	    rman_get_start(sc->base_res)));
1892 
1893 	cbb_chipinit(sc);
1894 
1895 	/* re-establish the interrupt. */
1896 	if (bus_setup_intr(self, sc->irq_res, INTR_TYPE_AV, cbb_intr, sc,
1897 	    &sc->intrhand)) {
1898 		device_printf(self, "couldn't re-establish interrupt");
1899 		bus_release_resource(self, SYS_RES_IRQ, 0, sc->irq_res);
1900 		bus_release_resource(self, SYS_RES_MEMORY, CBBR_SOCKBASE,
1901 		    sc->base_res);
1902 		sc->irq_res = NULL;
1903 		sc->base_res = NULL;
1904 		return (ENOMEM);
1905 	}
1906 
1907 	/* CSC Interrupt: Card detect interrupt on */
1908 	cbb_setb(sc, CBB_SOCKET_MASK, CBB_SOCKET_MASK_CD);
1909 
1910 	/* reset interrupt */
1911 	tmp = cbb_get(sc, CBB_SOCKET_EVENT);
1912 	cbb_set(sc, CBB_SOCKET_EVENT, tmp);
1913 
1914 	/*
1915 	 * Some BIOSes will not save the BARs for the pci chips, so we
1916 	 * must do it ourselves.  If the BAR is reset to 0 for an I/O
1917 	 * device, it will read back as 0x1, so no explicit test for
1918 	 * memory devices are needed.
1919 	 *
1920 	 * Note: The PCI bus code should do this automatically for us on
1921 	 * suspend/resume, but until it does, we have to cope.
1922 	 */
1923 	if (pci_read_config(self, CBBR_SOCKBASE, 4) == 0)
1924                 pci_write_config(self, CBBR_SOCKBASE,
1925 		    rman_get_start(sc->base_res), 4);
1926 
1927 	error = bus_generic_resume(self);
1928 
1929 	return (error);
1930 }
1931 
1932 static device_method_t cbb_methods[] = {
1933 	/* Device interface */
1934 	DEVMETHOD(device_probe,			cbb_probe),
1935 	DEVMETHOD(device_attach,		cbb_attach),
1936 	DEVMETHOD(device_detach,		cbb_detach),
1937 	DEVMETHOD(device_shutdown,		cbb_shutdown),
1938 	DEVMETHOD(device_suspend,		cbb_suspend),
1939 	DEVMETHOD(device_resume,		cbb_resume),
1940 
1941 	/* bus methods */
1942 	DEVMETHOD(bus_print_child,		bus_generic_print_child),
1943 	DEVMETHOD(bus_read_ivar,		cbb_read_ivar),
1944 	DEVMETHOD(bus_write_ivar,		cbb_write_ivar),
1945 	DEVMETHOD(bus_alloc_resource,		cbb_alloc_resource),
1946 	DEVMETHOD(bus_release_resource,		cbb_release_resource),
1947 	DEVMETHOD(bus_activate_resource,	cbb_activate_resource),
1948 	DEVMETHOD(bus_deactivate_resource,	cbb_deactivate_resource),
1949 	DEVMETHOD(bus_driver_added,		cbb_driver_added),
1950 	DEVMETHOD(bus_child_detached,		cbb_child_detached),
1951 	DEVMETHOD(bus_setup_intr,		cbb_setup_intr),
1952 	DEVMETHOD(bus_teardown_intr,		cbb_teardown_intr),
1953 
1954 	/* 16-bit card interface */
1955 	DEVMETHOD(card_set_res_flags,		cbb_pcic_set_res_flags),
1956 	DEVMETHOD(card_set_memory_offset,	cbb_pcic_set_memory_offset),
1957 	DEVMETHOD(card_reprobe_card,		cbb_card_reprobe),
1958 
1959 	/* power interface */
1960 	DEVMETHOD(power_enable_socket,		cbb_power_enable_socket),
1961 	DEVMETHOD(power_disable_socket,		cbb_power_disable_socket),
1962 
1963 	/* pcib compatibility interface */
1964 	DEVMETHOD(pcib_maxslots,		cbb_maxslots),
1965 	DEVMETHOD(pcib_read_config,		cbb_read_config),
1966 	DEVMETHOD(pcib_write_config,		cbb_write_config),
1967 	{0,0}
1968 };
1969 
1970 static driver_t cbb_driver = {
1971 	"cbb",
1972 	cbb_methods,
1973 	sizeof(struct cbb_softc)
1974 };
1975 
1976 static devclass_t cbb_devclass;
1977 
1978 DRIVER_MODULE(cbb, pci, cbb_driver, cbb_devclass, 0, 0);
1979 MODULE_VERSION(cbb, 1);
1980 MODULE_DEPEND(cbb, exca, 1, 1, 1);
1981