pccard.c revision 181342
1/*	$NetBSD: pcmcia.c,v 1.23 2000/07/28 19:17:02 drochner Exp $	*/
2
3/*-
4 * Copyright (c) 1997 Marc Horowitz.  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 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 *    must display the following acknowledgement:
16 *	This product includes software developed by Marc Horowitz.
17 * 4. The name of the author may not be used to endorse or promote products
18 *    derived from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sys/dev/pccard/pccard.c 181342 2008-08-06 07:34:35Z imp $");
34
35#include <sys/param.h>
36#include <sys/systm.h>
37#include <sys/malloc.h>
38#include <sys/module.h>
39#include <sys/kernel.h>
40#include <sys/queue.h>
41#include <sys/sysctl.h>
42#include <sys/types.h>
43
44#include <sys/bus.h>
45#include <machine/bus.h>
46#include <sys/rman.h>
47#include <machine/resource.h>
48
49#include <net/ethernet.h>
50
51#include <dev/pccard/pccardreg.h>
52#include <dev/pccard/pccardvar.h>
53#include <dev/pccard/pccardvarp.h>
54#include <dev/pccard/pccard_cis.h>
55
56#include "power_if.h"
57#include "card_if.h"
58
59#define PCCARDDEBUG
60
61/* sysctl vars */
62SYSCTL_NODE(_hw, OID_AUTO, pccard, CTLFLAG_RD, 0, "PCCARD parameters");
63
64int	pccard_debug = 0;
65TUNABLE_INT("hw.pccard.debug", &pccard_debug);
66SYSCTL_INT(_hw_pccard, OID_AUTO, debug, CTLFLAG_RW,
67    &pccard_debug, 0,
68  "pccard debug");
69
70int	pccard_cis_debug = 0;
71TUNABLE_INT("hw.pccard.cis_debug", &pccard_cis_debug);
72SYSCTL_INT(_hw_pccard, OID_AUTO, cis_debug, CTLFLAG_RW,
73    &pccard_cis_debug, 0, "pccard CIS debug");
74
75#ifdef PCCARDDEBUG
76#define	DPRINTF(arg) if (pccard_debug) printf arg
77#define	DEVPRINTF(arg) if (pccard_debug) device_printf arg
78#define PRVERBOSE(arg) printf arg
79#define DEVPRVERBOSE(arg) device_printf arg
80#else
81#define	DPRINTF(arg)
82#define	DEVPRINTF(arg)
83#define PRVERBOSE(arg) if (bootverbose) printf arg
84#define DEVPRVERBOSE(arg) if (bootverbose) device_printf arg
85#endif
86
87static int	pccard_ccr_read(struct pccard_function *pf, int ccr);
88static void	pccard_ccr_write(struct pccard_function *pf, int ccr, int val);
89static int	pccard_attach_card(device_t dev);
90static int	pccard_detach_card(device_t dev);
91static void	pccard_function_init(struct pccard_function *pf, int entry);
92static void	pccard_function_free(struct pccard_function *pf);
93static int	pccard_function_enable(struct pccard_function *pf);
94static void	pccard_function_disable(struct pccard_function *pf);
95static int	pccard_probe(device_t dev);
96static int	pccard_attach(device_t dev);
97static int	pccard_detach(device_t dev);
98static void	pccard_print_resources(struct resource_list *rl,
99		    const char *name, int type, int count, const char *format);
100static int	pccard_print_child(device_t dev, device_t child);
101static int	pccard_set_resource(device_t dev, device_t child, int type,
102		    int rid, u_long start, u_long count);
103static int	pccard_get_resource(device_t dev, device_t child, int type,
104		    int rid, u_long *startp, u_long *countp);
105static void	pccard_delete_resource(device_t dev, device_t child, int type,
106		    int rid);
107static int	pccard_set_res_flags(device_t dev, device_t child, int type,
108		    int rid, uint32_t flags);
109static int	pccard_set_memory_offset(device_t dev, device_t child, int rid,
110		    uint32_t offset, uint32_t *deltap);
111static int	pccard_probe_and_attach_child(device_t dev, device_t child,
112		    struct pccard_function *pf);
113static void	pccard_probe_nomatch(device_t cbdev, device_t child);
114static int	pccard_read_ivar(device_t bus, device_t child, int which,
115		    u_char *result);
116static void	pccard_driver_added(device_t dev, driver_t *driver);
117static struct resource *pccard_alloc_resource(device_t dev,
118		    device_t child, int type, int *rid, u_long start,
119		    u_long end, u_long count, u_int flags);
120static int	pccard_release_resource(device_t dev, device_t child, int type,
121		    int rid, struct resource *r);
122static void	pccard_child_detached(device_t parent, device_t dev);
123static int      pccard_filter(void *arg);
124static void	pccard_intr(void *arg);
125static int	pccard_setup_intr(device_t dev, device_t child,
126		    struct resource *irq, int flags, driver_filter_t *filt,
127		    driver_intr_t *intr, void *arg, void **cookiep);
128static int	pccard_teardown_intr(device_t dev, device_t child,
129		    struct resource *r, void *cookie);
130
131static const struct pccard_product *
132pccard_do_product_lookup(device_t bus, device_t dev,
133			 const struct pccard_product *tab, size_t ent_size,
134			 pccard_product_match_fn matchfn);
135
136
137static int
138pccard_ccr_read(struct pccard_function *pf, int ccr)
139{
140	return (bus_space_read_1(pf->pf_ccrt, pf->pf_ccrh,
141	    pf->pf_ccr_offset + ccr));
142}
143
144static void
145pccard_ccr_write(struct pccard_function *pf, int ccr, int val)
146{
147	if ((pf->ccr_mask) & (1 << (ccr / 2))) {
148		bus_space_write_1(pf->pf_ccrt, pf->pf_ccrh,
149		    pf->pf_ccr_offset + ccr, val);
150	}
151}
152
153static int
154pccard_set_default_descr(device_t dev)
155{
156	const char *vendorstr, *prodstr;
157	uint32_t vendor, prod;
158	char *str;
159
160	if (pccard_get_vendor_str(dev, &vendorstr))
161		return (0);
162	if (pccard_get_product_str(dev, &prodstr))
163		return (0);
164	if (vendorstr != NULL && prodstr != NULL) {
165		str = malloc(strlen(vendorstr) + strlen(prodstr) + 2, M_DEVBUF,
166		    M_WAITOK);
167		sprintf(str, "%s %s", vendorstr, prodstr);
168		device_set_desc_copy(dev, str);
169		free(str, M_DEVBUF);
170	} else {
171		if (pccard_get_vendor(dev, &vendor))
172			return (0);
173		if (pccard_get_product(dev, &prod))
174			return (0);
175		str = malloc(100, M_DEVBUF, M_WAITOK);
176		snprintf(str, 100, "vendor=0x%x product=0x%x", vendor, prod);
177		device_set_desc_copy(dev, str);
178		free(str, M_DEVBUF);
179	}
180	return (0);
181}
182
183static int
184pccard_attach_card(device_t dev)
185{
186	struct pccard_softc *sc = PCCARD_SOFTC(dev);
187	struct pccard_function *pf;
188	struct pccard_ivar *ivar;
189	device_t child;
190	int i;
191
192	if (!STAILQ_EMPTY(&sc->card.pf_head)) {
193		if (bootverbose || pccard_debug)
194			device_printf(dev, "Card already inserted.\n");
195	}
196
197	DEVPRINTF((dev, "chip_socket_enable\n"));
198	POWER_ENABLE_SOCKET(device_get_parent(dev), dev);
199
200	DEVPRINTF((dev, "read_cis\n"));
201	pccard_read_cis(sc);
202
203	DEVPRINTF((dev, "check_cis_quirks\n"));
204	pccard_check_cis_quirks(dev);
205
206	/*
207	 * bail now if the card has no functions, or if there was an error in
208	 * the cis.
209	 */
210
211	if (sc->card.error) {
212		device_printf(dev, "CARD ERROR!\n");
213		return (1);
214	}
215	if (STAILQ_EMPTY(&sc->card.pf_head)) {
216		device_printf(dev, "Card has no functions!\n");
217		return (1);
218	}
219
220	if (bootverbose || pccard_debug)
221		pccard_print_cis(dev);
222
223	DEVPRINTF((dev, "functions scanning\n"));
224	i = -1;
225	STAILQ_FOREACH(pf, &sc->card.pf_head, pf_list) {
226		i++;
227		if (STAILQ_EMPTY(&pf->cfe_head)) {
228			device_printf(dev,
229			    "Function %d has no config entries.!\n", i);
230			continue;
231		}
232		pf->sc = sc;
233		pf->cfe = NULL;
234		pf->dev = NULL;
235	}
236	DEVPRINTF((dev, "Card has %d functions. pccard_mfc is %d\n", i + 1,
237	    pccard_mfc(sc)));
238
239	STAILQ_FOREACH(pf, &sc->card.pf_head, pf_list) {
240		if (STAILQ_EMPTY(&pf->cfe_head))
241			continue;
242		ivar = malloc(sizeof(struct pccard_ivar), M_DEVBUF,
243		    M_WAITOK | M_ZERO);
244		resource_list_init(&ivar->resources);
245		child = device_add_child(dev, NULL, -1);
246		device_set_ivars(child, ivar);
247		ivar->pf = pf;
248		pf->dev = child;
249		pccard_probe_and_attach_child(dev, child, pf);
250	}
251	return (0);
252}
253
254static int
255pccard_probe_and_attach_child(device_t dev, device_t child,
256    struct pccard_function *pf)
257{
258	struct pccard_softc *sc = PCCARD_SOFTC(dev);
259	int error;
260
261	/*
262	 * In NetBSD, the drivers are responsible for activating each
263	 * function of a card and selecting the config to use.  In
264	 * FreeBSD, all that's done automatically in the typical lazy
265	 * way we do device resoruce allocation (except we pick the
266	 * cfe up front).  This is the biggest depature from the
267	 * inherited NetBSD model.
268	 *
269	 * This seems to work well in practice for most cards.
270	 * However, there are two cases that are problematic.  If a
271	 * driver wishes to pick and chose which config entry to use,
272	 * then this method falls down.  These are usually older
273	 * cards.  In addition, there are some cards that have
274	 * multiple hardware units on the cards, but presents only one
275	 * CIS chain.  These cards are combination cards, but only one
276	 * of these units can be on at a time.
277	 *
278	 * To overcome this limitation, while preserving the basic
279	 * model, the probe routine can select a cfe and try to
280	 * activate it.  If that succeeds, then we'll keep track of
281	 * and let that information persist until we attach the card.
282	 * Probe routines that do this MUST return 0, and cannot
283	 * participate in the bidding process for a device.  This
284	 * seems harsh until you realize that if a probe routine knows
285	 * enough to override the cfe we pick, then chances are very
286	 * very good that it is the only driver that could hope to
287	 * cope with the card.  Bidding is for generic drivers, and
288	 * while some of them may also match, none of them will do
289	 * configuration override.
290	 */
291	error = device_probe(child);
292	if (error != 0)
293		goto out;
294	pccard_function_init(pf, -1);
295	if (sc->sc_enabled_count == 0)
296		POWER_ENABLE_SOCKET(device_get_parent(dev), dev);
297	if (pccard_function_enable(pf) == 0 &&
298	    pccard_set_default_descr(child) == 0 &&
299	    device_attach(child) == 0) {
300		DEVPRINTF((sc->dev, "function %d CCR at %d offset %x mask %x: "
301		    "%x %x %x %x, %x %x %x %x, %x\n",
302		    pf->number, pf->pf_ccr_window, pf->pf_ccr_offset,
303		    pf->ccr_mask, pccard_ccr_read(pf, 0x00),
304		    pccard_ccr_read(pf, 0x02), pccard_ccr_read(pf, 0x04),
305		    pccard_ccr_read(pf, 0x06), pccard_ccr_read(pf, 0x0A),
306		    pccard_ccr_read(pf, 0x0C), pccard_ccr_read(pf, 0x0E),
307		    pccard_ccr_read(pf, 0x10), pccard_ccr_read(pf, 0x12)));
308		return (0);
309	}
310	error = ENXIO;
311out:;
312	/*
313	 * Probe may fail AND also try to select a cfe, if so, free
314	 * it.  This is how we do cfe override.  Or the attach fails.
315	 * Either way, we have to clean up.
316	 */
317	if (pf->cfe != NULL)
318		pccard_function_disable(pf);
319	pf->cfe = NULL;
320	pccard_function_free(pf);
321	return error;
322}
323
324static int
325pccard_detach_card(device_t dev)
326{
327	struct pccard_softc *sc = PCCARD_SOFTC(dev);
328	struct pccard_function *pf;
329	struct pccard_config_entry *cfe;
330	struct pccard_ivar *devi;
331	int state;
332
333	/*
334	 * We are running on either the PCCARD socket's event thread
335	 * or in user context detaching a device by user request.
336	 */
337	STAILQ_FOREACH(pf, &sc->card.pf_head, pf_list) {
338		if (pf->dev == NULL)
339			continue;
340		state = device_get_state(pf->dev);
341		if (state == DS_ATTACHED || state == DS_BUSY)
342			device_detach(pf->dev);
343		if (pf->cfe != NULL)
344			pccard_function_disable(pf);
345		pccard_function_free(pf);
346		devi = PCCARD_IVAR(pf->dev);
347		device_delete_child(dev, pf->dev);
348		free(devi, M_DEVBUF);
349	}
350	if (sc->sc_enabled_count == 0)
351		POWER_DISABLE_SOCKET(device_get_parent(dev), dev);
352
353	while (NULL != (pf = STAILQ_FIRST(&sc->card.pf_head))) {
354		while (NULL != (cfe = STAILQ_FIRST(&pf->cfe_head))) {
355			STAILQ_REMOVE_HEAD(&pf->cfe_head, cfe_list);
356			free(cfe, M_DEVBUF);
357		}
358		STAILQ_REMOVE_HEAD(&sc->card.pf_head, pf_list);
359		free(pf, M_DEVBUF);
360	}
361	STAILQ_INIT(&sc->card.pf_head);
362	return (0);
363}
364
365static const struct pccard_product *
366pccard_do_product_lookup(device_t bus, device_t dev,
367    const struct pccard_product *tab, size_t ent_size,
368    pccard_product_match_fn matchfn)
369{
370	const struct pccard_product *ent;
371	int matches;
372	uint32_t vendor;
373	uint32_t prod;
374	const char *vendorstr;
375	const char *prodstr;
376	const char *cis3str;
377	const char *cis4str;
378
379#ifdef DIAGNOSTIC
380	if (sizeof *ent > ent_size)
381		panic("pccard_product_lookup: bogus ent_size %jd",
382		    (intmax_t) ent_size);
383#endif
384	if (pccard_get_vendor(dev, &vendor))
385		return (NULL);
386	if (pccard_get_product(dev, &prod))
387		return (NULL);
388	if (pccard_get_vendor_str(dev, &vendorstr))
389		return (NULL);
390	if (pccard_get_product_str(dev, &prodstr))
391		return (NULL);
392	if (pccard_get_cis3_str(dev, &cis3str))
393		return (NULL);
394	if (pccard_get_cis4_str(dev, &cis4str))
395		return (NULL);
396	for (ent = tab; ent->pp_vendor != 0; ent =
397	    (const struct pccard_product *) ((const char *) ent + ent_size)) {
398		matches = 1;
399		if (ent->pp_vendor == PCCARD_VENDOR_ANY &&
400		    ent->pp_product == PCCARD_PRODUCT_ANY &&
401		    ent->pp_cis[0] == NULL &&
402		    ent->pp_cis[1] == NULL) {
403			if (ent->pp_name)
404				device_printf(dev,
405				    "Total wildcard entry ignored for %s\n",
406				    ent->pp_name);
407			continue;
408		}
409		if (matches && ent->pp_vendor != PCCARD_VENDOR_ANY &&
410		    vendor != ent->pp_vendor)
411			matches = 0;
412		if (matches && ent->pp_product != PCCARD_PRODUCT_ANY &&
413		    prod != ent->pp_product)
414			matches = 0;
415		if (matches && ent->pp_cis[0] &&
416		    (vendorstr == NULL ||
417		    strcmp(ent->pp_cis[0], vendorstr) != 0))
418			matches = 0;
419		if (matches && ent->pp_cis[1] &&
420		    (prodstr == NULL ||
421		    strcmp(ent->pp_cis[1], prodstr) != 0))
422			matches = 0;
423		if (matches && ent->pp_cis[2] &&
424		    (cis3str == NULL ||
425		    strcmp(ent->pp_cis[2], cis3str) != 0))
426			matches = 0;
427		if (matches && ent->pp_cis[3] &&
428		    (cis4str == NULL ||
429		    strcmp(ent->pp_cis[3], cis4str) != 0))
430			matches = 0;
431		if (matchfn != NULL)
432			matches = (*matchfn)(dev, ent, matches);
433		if (matches)
434			return (ent);
435	}
436	return (NULL);
437}
438
439/**
440 * @brief pccard_select_cfe
441 *
442 * Select a cfe entry to use.  Should be called from the pccard's probe
443 * routine after it knows for sure that it wants this card.
444 *
445 * XXX I think we need to make this symbol be static, ala the kobj stuff
446 * we do for everything else.  This is a quick hack.
447 */
448int
449pccard_select_cfe(device_t dev, int entry)
450{
451	struct pccard_ivar *devi = PCCARD_IVAR(dev);
452	struct pccard_function *pf = devi->pf;
453
454	pccard_function_init(pf, entry);
455	return (pf->cfe ? 0 : ENOMEM);
456}
457
458/*
459 * Initialize a PCCARD function.  May be called as long as the function is
460 * disabled.
461 *
462 * Note: pccard_function_init should not keep resources allocated.  It should
463 * only set them up ala isa pnp, set the values in the rl lists, and return.
464 * Any resource held after pccard_function_init is called is a bug.  However,
465 * the bus routines to get the resources also assume that pccard_function_init
466 * does this, so they need to be fixed too.
467 */
468static void
469pccard_function_init(struct pccard_function *pf, int entry)
470{
471	struct pccard_config_entry *cfe;
472	struct pccard_ivar *devi = PCCARD_IVAR(pf->dev);
473	struct resource_list *rl = &devi->resources;
474	struct resource_list_entry *rle;
475	struct resource *r = 0;
476	device_t bus;
477	u_long start, end, len;
478	int i, rid, spaces;
479
480	if (pf->pf_flags & PFF_ENABLED) {
481		printf("pccard_function_init: function is enabled");
482		return;
483	}
484
485	/*
486	 * Driver probe routine requested a specific entry already
487	 * that succeeded.
488	 */
489	if (pf->cfe != NULL)
490		return;
491
492	/*
493	 * walk the list of configuration entries until we find one that
494	 * we can allocate all the resources to.
495	 */
496	bus = device_get_parent(pf->dev);
497	STAILQ_FOREACH(cfe, &pf->cfe_head, cfe_list) {
498		if (cfe->iftype != PCCARD_IFTYPE_IO)
499			continue;
500		if (entry != -1 && cfe->number != entry)
501			continue;
502		spaces = 0;
503		for (i = 0; i < cfe->num_iospace; i++) {
504			start = cfe->iospace[i].start;
505			if (start)
506				end = start + cfe->iospace[i].length - 1;
507			else
508				end = ~0UL;
509			DEVPRINTF((bus, "I/O rid %d start %lx end %lx\n",
510			    i, start, end));
511			rid = i;
512			len = cfe->iospace[i].length;
513			r = bus_alloc_resource(bus, SYS_RES_IOPORT, &rid,
514			    start, end, len, rman_make_alignment_flags(len));
515			if (r == NULL)
516				goto not_this_one;
517			rle = resource_list_add(rl, SYS_RES_IOPORT,
518			    rid, rman_get_start(r), rman_get_end(r),
519			    cfe->iospace[i].length);
520			if (rle == NULL)
521				panic("Cannot add resource rid %d IOPORT", rid);
522			rle->res = r;
523			spaces++;
524		}
525		for (i = 0; i < cfe->num_memspace; i++) {
526			start = cfe->memspace[i].hostaddr;
527			if (start)
528				end = start + cfe->memspace[i].length - 1;
529			else
530				end = ~0UL;
531			DEVPRINTF((bus, "Memory rid %d start %lx end %lx\n",
532			    i, start, end));
533			rid = i;
534			len = cfe->memspace[i].length;
535			r = bus_alloc_resource(bus, SYS_RES_MEMORY, &rid,
536			    start, end, len, rman_make_alignment_flags(len));
537			if (r == NULL)
538				goto not_this_one;
539			rle = resource_list_add(rl, SYS_RES_MEMORY,
540			    rid, rman_get_start(r), rman_get_end(r),
541			    cfe->memspace[i].length);
542			if (rle == NULL)
543				panic("Cannot add resource rid %d MEM", rid);
544			rle->res = r;
545			spaces++;
546		}
547		if (spaces == 0) {
548			DEVPRINTF((bus, "Neither memory nor I/O mapped\n"));
549			goto not_this_one;
550		}
551		if (cfe->irqmask) {
552			rid = 0;
553			r = bus_alloc_resource_any(bus, SYS_RES_IRQ, &rid,
554			    RF_SHAREABLE);
555			if (r == NULL)
556				goto not_this_one;
557			rle = resource_list_add(rl, SYS_RES_IRQ, rid,
558			    rman_get_start(r), rman_get_end(r), 1);
559			if (rle == NULL)
560				panic("Cannot add resource rid %d IRQ", rid);
561			rle->res = r;
562		}
563		/* If we get to here, we've allocated all we need */
564		pf->cfe = cfe;
565		break;
566	    not_this_one:;
567		DEVPRVERBOSE((bus, "Allocation failed for cfe %d\n",
568		    cfe->number));
569		resource_list_purge(rl);
570	}
571}
572
573/*
574 * Free resources allocated by pccard_function_init(), May be called as long
575 * as the function is disabled.
576 *
577 * NOTE: This function should be unnecessary.  pccard_function_init should
578 * never keep resources initialized.
579 */
580static void
581pccard_function_free(struct pccard_function *pf)
582{
583	struct pccard_ivar *devi = PCCARD_IVAR(pf->dev);
584	struct resource_list_entry *rle;
585
586	if (pf->pf_flags & PFF_ENABLED) {
587		printf("pccard_function_free: function is enabled");
588		return;
589	}
590
591	STAILQ_FOREACH(rle, &devi->resources, link) {
592		if (rle->res) {
593			if (rman_get_device(rle->res) != pf->sc->dev)
594				device_printf(pf->sc->dev,
595				    "function_free: Resource still owned by "
596				    "child, oops. "
597				    "(type=%d, rid=%d, addr=%lx)\n",
598				    rle->type, rle->rid,
599				    rman_get_start(rle->res));
600			BUS_RELEASE_RESOURCE(device_get_parent(pf->sc->dev),
601			    pf->sc->dev, rle->type, rle->rid, rle->res);
602			rle->res = NULL;
603		}
604	}
605	resource_list_free(&devi->resources);
606}
607
608static void
609pccard_mfc_adjust_iobase(struct pccard_function *pf, bus_addr_t addr,
610    bus_addr_t offset, bus_size_t size)
611{
612	bus_size_t iosize, tmp;
613
614	if (addr != 0) {
615		if (pf->pf_mfc_iomax == 0) {
616			pf->pf_mfc_iobase = addr + offset;
617			pf->pf_mfc_iomax = pf->pf_mfc_iobase + size;
618		} else {
619			/* this makes the assumption that nothing overlaps */
620			if (pf->pf_mfc_iobase > addr + offset)
621				pf->pf_mfc_iobase = addr + offset;
622			if (pf->pf_mfc_iomax < addr + offset + size)
623				pf->pf_mfc_iomax = addr + offset + size;
624		}
625	}
626
627	tmp = pf->pf_mfc_iomax - pf->pf_mfc_iobase;
628	/* round up to nearest (2^n)-1 */
629	for (iosize = 1; iosize < tmp; iosize <<= 1)
630		;
631	iosize--;
632
633	DEVPRINTF((pf->dev, "MFC: I/O base %#jx IOSIZE %#jx\n",
634	    (uintmax_t)pf->pf_mfc_iobase, (uintmax_t)(iosize + 1)));
635	pccard_ccr_write(pf, PCCARD_CCR_IOBASE0,
636	    pf->pf_mfc_iobase & 0xff);
637	pccard_ccr_write(pf, PCCARD_CCR_IOBASE1,
638	    (pf->pf_mfc_iobase >> 8) & 0xff);
639	pccard_ccr_write(pf, PCCARD_CCR_IOBASE2, 0);
640	pccard_ccr_write(pf, PCCARD_CCR_IOBASE3, 0);
641	pccard_ccr_write(pf, PCCARD_CCR_IOSIZE, iosize);
642}
643
644/* Enable a PCCARD function */
645static int
646pccard_function_enable(struct pccard_function *pf)
647{
648	struct pccard_function *tmp;
649	int reg;
650	device_t dev = pf->sc->dev;
651
652	if (pf->cfe == NULL) {
653		DEVPRVERBOSE((dev, "No config entry could be allocated.\n"));
654		return (ENOMEM);
655	}
656
657	/*
658	 * Increase the reference count on the socket, enabling power, if
659	 * necessary. XXX: I don't see the enable power part here!
660	 */
661	pf->sc->sc_enabled_count++;
662
663	if (pf->pf_flags & PFF_ENABLED) {
664		/*
665		 * Don't do anything if we're already enabled.
666		 */
667		return (0);
668	}
669
670	/*
671	 * it's possible for different functions' CCRs to be in the same
672	 * underlying page.  Check for that.
673	 */
674	STAILQ_FOREACH(tmp, &pf->sc->card.pf_head, pf_list) {
675		if ((tmp->pf_flags & PFF_ENABLED) &&
676		    (pf->ccr_base >= (tmp->ccr_base - tmp->pf_ccr_offset)) &&
677		    ((pf->ccr_base + PCCARD_CCR_SIZE) <=
678		    (tmp->ccr_base - tmp->pf_ccr_offset +
679		    tmp->pf_ccr_realsize))) {
680			pf->pf_ccrt = tmp->pf_ccrt;
681			pf->pf_ccrh = tmp->pf_ccrh;
682			pf->pf_ccr_realsize = tmp->pf_ccr_realsize;
683
684			/*
685			 * pf->pf_ccr_offset = (tmp->pf_ccr_offset -
686			 * tmp->ccr_base) + pf->ccr_base;
687			 */
688			/* pf->pf_ccr_offset =
689			    (tmp->pf_ccr_offset + pf->ccr_base) -
690			    tmp->ccr_base; */
691			pf->pf_ccr_window = tmp->pf_ccr_window;
692			break;
693		}
694	}
695	if (tmp == NULL) {
696		pf->ccr_rid = 0;
697		pf->ccr_res = bus_alloc_resource(dev, SYS_RES_MEMORY,
698		    &pf->ccr_rid, 0, ~0, PCCARD_MEM_PAGE_SIZE, RF_ACTIVE);
699		if (!pf->ccr_res)
700			goto bad;
701		DEVPRINTF((dev, "ccr_res == %lx-%lx, base=%x\n",
702		    rman_get_start(pf->ccr_res), rman_get_end(pf->ccr_res),
703		    pf->ccr_base));
704		CARD_SET_RES_FLAGS(device_get_parent(dev), dev, SYS_RES_MEMORY,
705		    pf->ccr_rid, PCCARD_A_MEM_ATTR);
706		CARD_SET_MEMORY_OFFSET(device_get_parent(dev), dev,
707		    pf->ccr_rid, pf->ccr_base, &pf->pf_ccr_offset);
708		pf->pf_ccrt = rman_get_bustag(pf->ccr_res);
709		pf->pf_ccrh = rman_get_bushandle(pf->ccr_res);
710		pf->pf_ccr_realsize = 1;
711	}
712
713	reg = (pf->cfe->number & PCCARD_CCR_OPTION_CFINDEX);
714	reg |= PCCARD_CCR_OPTION_LEVIREQ;
715	if (pccard_mfc(pf->sc)) {
716		reg |= (PCCARD_CCR_OPTION_FUNC_ENABLE |
717			PCCARD_CCR_OPTION_ADDR_DECODE);
718		/* PCCARD_CCR_OPTION_IRQ_ENABLE set elsewhere as needed */
719	}
720	pccard_ccr_write(pf, PCCARD_CCR_OPTION, reg);
721
722	reg = 0;
723	if ((pf->cfe->flags & PCCARD_CFE_IO16) == 0)
724		reg |= PCCARD_CCR_STATUS_IOIS8;
725	if (pf->cfe->flags & PCCARD_CFE_AUDIO)
726		reg |= PCCARD_CCR_STATUS_AUDIO;
727	pccard_ccr_write(pf, PCCARD_CCR_STATUS, reg);
728
729	pccard_ccr_write(pf, PCCARD_CCR_SOCKETCOPY, 0);
730
731	if (pccard_mfc(pf->sc))
732		pccard_mfc_adjust_iobase(pf, 0, 0, 0);
733
734#ifdef PCCARDDEBUG
735	if (pccard_debug) {
736		STAILQ_FOREACH(tmp, &pf->sc->card.pf_head, pf_list) {
737			device_printf(tmp->sc->dev,
738			    "function %d CCR at %d offset %x: "
739			    "%x %x %x %x, %x %x %x %x, %x\n",
740			    tmp->number, tmp->pf_ccr_window,
741			    tmp->pf_ccr_offset,
742			    pccard_ccr_read(tmp, 0x00),
743			    pccard_ccr_read(tmp, 0x02),
744			    pccard_ccr_read(tmp, 0x04),
745			    pccard_ccr_read(tmp, 0x06),
746			    pccard_ccr_read(tmp, 0x0A),
747			    pccard_ccr_read(tmp, 0x0C),
748			    pccard_ccr_read(tmp, 0x0E),
749			    pccard_ccr_read(tmp, 0x10),
750			    pccard_ccr_read(tmp, 0x12));
751		}
752	}
753#endif
754	pf->pf_flags |= PFF_ENABLED;
755	return (0);
756
757 bad:
758	/*
759	 * Decrement the reference count, and power down the socket, if
760	 * necessary.
761	 */
762	pf->sc->sc_enabled_count--;
763	DEVPRINTF((dev, "bad --enabled_count = %d\n", pf->sc->sc_enabled_count));
764
765	return (1);
766}
767
768/* Disable PCCARD function. */
769static void
770pccard_function_disable(struct pccard_function *pf)
771{
772	struct pccard_function *tmp;
773	device_t dev = pf->sc->dev;
774
775	if (pf->cfe == NULL)
776		panic("pccard_function_disable: function not initialized");
777
778	if ((pf->pf_flags & PFF_ENABLED) == 0) {
779		/*
780		 * Don't do anything if we're already disabled.
781		 */
782		return;
783	}
784
785	if (pf->intr_handler != NULL) {
786		struct pccard_ivar *devi = PCCARD_IVAR(pf->dev);
787		struct resource_list_entry *rle =
788		    resource_list_find(&devi->resources, SYS_RES_IRQ, 0);
789		if (rle == NULL)
790			panic("Can't disable an interrupt with no IRQ res\n");
791		BUS_TEARDOWN_INTR(dev, pf->dev, rle->res,
792		    pf->intr_handler_cookie);
793	}
794
795	/*
796	 * it's possible for different functions' CCRs to be in the same
797	 * underlying page.  Check for that.  Note we mark us as disabled
798	 * first to avoid matching ourself.
799	 */
800
801	pf->pf_flags &= ~PFF_ENABLED;
802	STAILQ_FOREACH(tmp, &pf->sc->card.pf_head, pf_list) {
803		if ((tmp->pf_flags & PFF_ENABLED) &&
804		    (pf->ccr_base >= (tmp->ccr_base - tmp->pf_ccr_offset)) &&
805		    ((pf->ccr_base + PCCARD_CCR_SIZE) <=
806		    (tmp->ccr_base - tmp->pf_ccr_offset +
807		    tmp->pf_ccr_realsize)))
808			break;
809	}
810
811	/* Not used by anyone else; unmap the CCR. */
812	if (tmp == NULL) {
813		bus_release_resource(dev, SYS_RES_MEMORY, pf->ccr_rid,
814		    pf->ccr_res);
815		pf->ccr_res = NULL;
816	}
817
818	/*
819	 * Decrement the reference count, and power down the socket, if
820	 * necessary.
821	 */
822	pf->sc->sc_enabled_count--;
823}
824
825#define PCCARD_NPORT	2
826#define PCCARD_NMEM	5
827#define PCCARD_NIRQ	1
828#define PCCARD_NDRQ	0
829
830static int
831pccard_probe(device_t dev)
832{
833	device_set_desc(dev, "16-bit PCCard bus");
834	return (0);
835}
836
837static int
838pccard_attach(device_t dev)
839{
840	struct pccard_softc *sc = PCCARD_SOFTC(dev);
841	int err;
842
843	sc->dev = dev;
844	sc->sc_enabled_count = 0;
845	if ((err = pccard_device_create(sc)) != 0)
846		return  (err);
847	STAILQ_INIT(&sc->card.pf_head);
848	return (bus_generic_attach(dev));
849}
850
851static int
852pccard_detach(device_t dev)
853{
854	pccard_detach_card(dev);
855	pccard_device_destroy(device_get_softc(dev));
856	return (0);
857}
858
859static int
860pccard_suspend(device_t self)
861{
862	pccard_detach_card(self);
863	return (0);
864}
865
866static
867int
868pccard_resume(device_t self)
869{
870	return (0);
871}
872
873static void
874pccard_print_resources(struct resource_list *rl, const char *name, int type,
875    int count, const char *format)
876{
877	struct resource_list_entry *rle;
878	int printed;
879	int i;
880
881	printed = 0;
882	for (i = 0; i < count; i++) {
883		rle = resource_list_find(rl, type, i);
884		if (rle != NULL) {
885			if (printed == 0)
886				printf(" %s ", name);
887			else if (printed > 0)
888				printf(",");
889			printed++;
890			printf(format, rle->start);
891			if (rle->count > 1) {
892				printf("-");
893				printf(format, rle->start + rle->count - 1);
894			}
895		} else if (i > 3) {
896			/* check the first few regardless */
897			break;
898		}
899	}
900}
901
902static int
903pccard_print_child(device_t dev, device_t child)
904{
905	struct pccard_ivar *devi = PCCARD_IVAR(child);
906	struct resource_list *rl = &devi->resources;
907	int retval = 0;
908
909	retval += bus_print_child_header(dev, child);
910	retval += printf(" at");
911
912	if (devi != NULL) {
913		pccard_print_resources(rl, "port", SYS_RES_IOPORT,
914		    PCCARD_NPORT, "%#lx");
915		pccard_print_resources(rl, "iomem", SYS_RES_MEMORY,
916		    PCCARD_NMEM, "%#lx");
917		pccard_print_resources(rl, "irq", SYS_RES_IRQ, PCCARD_NIRQ,
918		    "%ld");
919		pccard_print_resources(rl, "drq", SYS_RES_DRQ, PCCARD_NDRQ,
920		    "%ld");
921		retval += printf(" function %d config %d", devi->pf->number,
922		    devi->pf->cfe->number);
923	}
924
925	retval += bus_print_child_footer(dev, child);
926
927	return (retval);
928}
929
930static int
931pccard_set_resource(device_t dev, device_t child, int type, int rid,
932    u_long start, u_long count)
933{
934	struct pccard_ivar *devi = PCCARD_IVAR(child);
935	struct resource_list *rl = &devi->resources;
936
937	if (type != SYS_RES_IOPORT && type != SYS_RES_MEMORY
938	    && type != SYS_RES_IRQ && type != SYS_RES_DRQ)
939		return (EINVAL);
940	if (rid < 0)
941		return (EINVAL);
942	if (type == SYS_RES_IOPORT && rid >= PCCARD_NPORT)
943		return (EINVAL);
944	if (type == SYS_RES_MEMORY && rid >= PCCARD_NMEM)
945		return (EINVAL);
946	if (type == SYS_RES_IRQ && rid >= PCCARD_NIRQ)
947		return (EINVAL);
948	if (type == SYS_RES_DRQ && rid >= PCCARD_NDRQ)
949		return (EINVAL);
950
951	resource_list_add(rl, type, rid, start, start + count - 1, count);
952	if (NULL != resource_list_alloc(rl, device_get_parent(dev), dev,
953	    type, &rid, start, start + count - 1, count, 0))
954		return 0;
955	else
956		return ENOMEM;
957}
958
959static int
960pccard_get_resource(device_t dev, device_t child, int type, int rid,
961    u_long *startp, u_long *countp)
962{
963	struct pccard_ivar *devi = PCCARD_IVAR(child);
964	struct resource_list *rl = &devi->resources;
965	struct resource_list_entry *rle;
966
967	rle = resource_list_find(rl, type, rid);
968	if (rle == NULL)
969		return (ENOENT);
970
971	if (startp != NULL)
972		*startp = rle->start;
973	if (countp != NULL)
974		*countp = rle->count;
975
976	return (0);
977}
978
979static void
980pccard_delete_resource(device_t dev, device_t child, int type, int rid)
981{
982	struct pccard_ivar *devi = PCCARD_IVAR(child);
983	struct resource_list *rl = &devi->resources;
984	resource_list_delete(rl, type, rid);
985}
986
987static int
988pccard_set_res_flags(device_t dev, device_t child, int type, int rid,
989    uint32_t flags)
990{
991	return (CARD_SET_RES_FLAGS(device_get_parent(dev), child, type,
992	    rid, flags));
993}
994
995static int
996pccard_set_memory_offset(device_t dev, device_t child, int rid,
997    uint32_t offset, uint32_t *deltap)
998
999{
1000	return (CARD_SET_MEMORY_OFFSET(device_get_parent(dev), child, rid,
1001	    offset, deltap));
1002}
1003
1004static void
1005pccard_probe_nomatch(device_t bus, device_t child)
1006{
1007	struct pccard_ivar *devi = PCCARD_IVAR(child);
1008	struct pccard_function *pf = devi->pf;
1009	struct pccard_softc *sc = PCCARD_SOFTC(bus);
1010	int i;
1011
1012	device_printf(bus, "<unknown card>");
1013	printf(" (manufacturer=0x%04x, product=0x%04x, function_type=%d) "
1014	    "at function %d\n", sc->card.manufacturer, sc->card.product,
1015	    pf->function, pf->number);
1016	device_printf(bus, "   CIS info: ");
1017	for (i = 0; sc->card.cis1_info[i] != NULL && i < 4; i++)
1018		printf("%s%s", i > 0 ? ", " : "", sc->card.cis1_info[i]);
1019	printf("\n");
1020	return;
1021}
1022
1023static int
1024pccard_child_location_str(device_t bus, device_t child, char *buf,
1025    size_t buflen)
1026{
1027	struct pccard_ivar *devi = PCCARD_IVAR(child);
1028	struct pccard_function *pf = devi->pf;
1029
1030	snprintf(buf, buflen, "function=%d", pf->number);
1031	return (0);
1032}
1033
1034/* XXX Maybe this should be in subr_bus? */
1035static void
1036pccard_safe_quote(char *dst, const char *src, size_t len)
1037{
1038	char *walker = dst, *ep = dst + len - 1;
1039
1040	if (len == 0)
1041		return;
1042	while (src != NULL && walker < ep)
1043	{
1044		if (*src == '"') {
1045			if (ep - walker < 2)
1046				break;
1047			*walker++ = '\\';
1048		}
1049		*walker++ = *src++;
1050	}
1051	*walker = '\0';
1052}
1053
1054static int
1055pccard_child_pnpinfo_str(device_t bus, device_t child, char *buf,
1056    size_t buflen)
1057{
1058	struct pccard_ivar *devi = PCCARD_IVAR(child);
1059	struct pccard_function *pf = devi->pf;
1060	struct pccard_softc *sc = PCCARD_SOFTC(bus);
1061	char cis0[128], cis1[128];
1062
1063	pccard_safe_quote(cis0, sc->card.cis1_info[0], sizeof(cis0));
1064	pccard_safe_quote(cis1, sc->card.cis1_info[1], sizeof(cis1));
1065	snprintf(buf, buflen, "manufacturer=0x%04x product=0x%04x "
1066	    "cisvendor=\"%s\" cisproduct=\"%s\" function_type=%d",
1067	    sc->card.manufacturer, sc->card.product, cis0, cis1, pf->function);
1068	return (0);
1069}
1070
1071static int
1072pccard_read_ivar(device_t bus, device_t child, int which, u_char *result)
1073{
1074	struct pccard_ivar *devi = PCCARD_IVAR(child);
1075	struct pccard_function *pf = devi->pf;
1076	struct pccard_softc *sc = PCCARD_SOFTC(bus);
1077
1078	if (!pf)
1079		panic("No pccard function pointer");
1080	switch (which) {
1081	default:
1082		return (EINVAL);
1083	case PCCARD_IVAR_ETHADDR:
1084		bcopy(pf->pf_funce_lan_nid, result, ETHER_ADDR_LEN);
1085		break;
1086	case PCCARD_IVAR_VENDOR:
1087		*(uint32_t *)result = sc->card.manufacturer;
1088		break;
1089	case PCCARD_IVAR_PRODUCT:
1090		*(uint32_t *)result = sc->card.product;
1091		break;
1092	case PCCARD_IVAR_PRODEXT:
1093		*(uint16_t *)result = sc->card.prodext;
1094		break;
1095	case PCCARD_IVAR_FUNCTION:
1096		*(uint32_t *)result = pf->function;
1097		break;
1098	case PCCARD_IVAR_FUNCTION_NUMBER:
1099		*(uint32_t *)result = pf->number;
1100		break;
1101	case PCCARD_IVAR_VENDOR_STR:
1102		*(const char **)result = sc->card.cis1_info[0];
1103		break;
1104	case PCCARD_IVAR_PRODUCT_STR:
1105		*(const char **)result = sc->card.cis1_info[1];
1106		break;
1107	case PCCARD_IVAR_CIS3_STR:
1108		*(const char **)result = sc->card.cis1_info[2];
1109		break;
1110	case PCCARD_IVAR_CIS4_STR:
1111		*(const char **)result = sc->card.cis1_info[3];
1112		break;
1113	}
1114	return (0);
1115}
1116
1117static void
1118pccard_driver_added(device_t dev, driver_t *driver)
1119{
1120	struct pccard_softc *sc = PCCARD_SOFTC(dev);
1121	struct pccard_function *pf;
1122	device_t child;
1123
1124	STAILQ_FOREACH(pf, &sc->card.pf_head, pf_list) {
1125		if (STAILQ_EMPTY(&pf->cfe_head))
1126			continue;
1127		child = pf->dev;
1128		if (device_get_state(child) != DS_NOTPRESENT)
1129			continue;
1130		pccard_probe_and_attach_child(dev, child, pf);
1131	}
1132	return;
1133}
1134
1135static struct resource *
1136pccard_alloc_resource(device_t dev, device_t child, int type, int *rid,
1137    u_long start, u_long end, u_long count, u_int flags)
1138{
1139	struct pccard_ivar *dinfo;
1140	struct resource_list_entry *rle = 0;
1141	int passthrough = (device_get_parent(child) != dev);
1142	int isdefault = (start == 0 && end == ~0UL && count == 1);
1143	struct resource *r = NULL;
1144
1145	/* XXX I'm no longer sure this is right */
1146	if (passthrough) {
1147		return (BUS_ALLOC_RESOURCE(device_get_parent(dev), child,
1148		    type, rid, start, end, count, flags));
1149	}
1150
1151	dinfo = device_get_ivars(child);
1152	rle = resource_list_find(&dinfo->resources, type, *rid);
1153
1154	if (rle == NULL && isdefault)
1155		return (NULL);	/* no resource of that type/rid */
1156	if (rle == NULL || rle->res == NULL) {
1157		/* XXX Need to adjust flags */
1158		r = bus_alloc_resource(dev, type, rid, start, end,
1159		  count, flags);
1160		if (r == NULL)
1161		    goto bad;
1162		resource_list_add(&dinfo->resources, type, *rid,
1163		  rman_get_start(r), rman_get_end(r), count);
1164		rle = resource_list_find(&dinfo->resources, type, *rid);
1165		if (!rle)
1166		    goto bad;
1167		rle->res = r;
1168	}
1169	/*
1170	 * If dev doesn't own the device, then we can't give this device
1171	 * out.
1172	 */
1173	if (rman_get_device(rle->res) != dev)
1174		return (NULL);
1175	rman_set_device(rle->res, child);
1176	if (flags & RF_ACTIVE)
1177		BUS_ACTIVATE_RESOURCE(dev, child, type, *rid, rle->res);
1178	return (rle->res);
1179bad:;
1180	device_printf(dev, "WARNING: Resource not reserved by pccard\n");
1181	return (NULL);
1182}
1183
1184static int
1185pccard_release_resource(device_t dev, device_t child, int type, int rid,
1186    struct resource *r)
1187{
1188	struct pccard_ivar *dinfo;
1189	int passthrough = (device_get_parent(child) != dev);
1190	struct resource_list_entry *rle = 0;
1191
1192	if (passthrough)
1193		return BUS_RELEASE_RESOURCE(device_get_parent(dev), child,
1194		    type, rid, r);
1195
1196	dinfo = device_get_ivars(child);
1197
1198	rle = resource_list_find(&dinfo->resources, type, rid);
1199
1200	if (!rle) {
1201		device_printf(dev, "Allocated resource not found, "
1202		    "%d %x %lx %lx\n",
1203		    type, rid, rman_get_start(r), rman_get_size(r));
1204		return ENOENT;
1205	}
1206	if (!rle->res) {
1207		device_printf(dev, "Allocated resource not recorded\n");
1208		return ENOENT;
1209	}
1210	/*
1211	 * Deactivate the resource (since it is being released), and
1212	 * assign it to the bus.
1213	 */
1214	BUS_DEACTIVATE_RESOURCE(dev, child, type, rid, rle->res);
1215	rman_set_device(rle->res, dev);
1216	return (0);
1217}
1218
1219static void
1220pccard_child_detached(device_t parent, device_t dev)
1221{
1222	struct pccard_ivar *ivar = PCCARD_IVAR(dev);
1223	struct pccard_function *pf = ivar->pf;
1224
1225	pccard_function_disable(pf);
1226}
1227
1228static int
1229pccard_filter(void *arg)
1230{
1231	struct pccard_function *pf = (struct pccard_function*) arg;
1232	int reg;
1233	int doisr = 1;
1234
1235	/*
1236	 * MFC cards know if they interrupted, so we have to ack the
1237	 * interrupt and call the ISR.  Non-MFC cards don't have these
1238	 * bits, so they always get called.  Many non-MFC cards have
1239	 * this bit set always upon read, but some do not.
1240	 *
1241	 * We always ack the interrupt, even if there's no ISR
1242	 * for the card.  This is done on the theory that acking
1243	 * the interrupt will pacify the card enough to keep an
1244	 * interrupt storm from happening.  Of course this won't
1245	 * help in the non-MFC case.
1246	 *
1247	 * This has no impact for MPSAFEness of the client drivers.
1248	 * We register this with whatever flags the intr_handler
1249	 * was registered with.  All these functions are MPSAFE.
1250	 */
1251	if (pccard_mfc(pf->sc)) {
1252		reg = pccard_ccr_read(pf, PCCARD_CCR_STATUS);
1253		if (reg & PCCARD_CCR_STATUS_INTR)
1254			pccard_ccr_write(pf, PCCARD_CCR_STATUS,
1255			    reg & ~PCCARD_CCR_STATUS_INTR);
1256		else
1257			doisr = 0;
1258	}
1259	if (doisr) {
1260		if (pf->intr_filter != NULL)
1261			return (pf->intr_filter(pf->intr_handler_arg));
1262		return (FILTER_SCHEDULE_THREAD);
1263	}
1264	return (FILTER_STRAY);
1265}
1266
1267static void
1268pccard_intr(void *arg)
1269{
1270	struct pccard_function *pf = (struct pccard_function*) arg;
1271
1272	pf->intr_handler(pf->intr_handler_arg);
1273}
1274
1275static int
1276pccard_setup_intr(device_t dev, device_t child, struct resource *irq,
1277    int flags, driver_filter_t *filt, driver_intr_t *intr, void *arg,
1278    void **cookiep)
1279{
1280	struct pccard_softc *sc = PCCARD_SOFTC(dev);
1281	struct pccard_ivar *ivar = PCCARD_IVAR(child);
1282	struct pccard_function *pf = ivar->pf;
1283	int err;
1284
1285	if (pf->intr_filter != NULL || pf->intr_handler != NULL)
1286		panic("Only one interrupt handler per function allowed");
1287	err = bus_generic_setup_intr(dev, child, irq, flags, pccard_filter,
1288	    intr ? pccard_intr : NULL, pf, cookiep);
1289	if (err != 0)
1290		return (err);
1291	pf->intr_filter = filt;
1292	pf->intr_handler = intr;
1293	pf->intr_handler_arg = arg;
1294	pf->intr_handler_cookie = *cookiep;
1295	if (pccard_mfc(sc)) {
1296		pccard_ccr_write(pf, PCCARD_CCR_OPTION,
1297		    pccard_ccr_read(pf, PCCARD_CCR_OPTION) |
1298		    PCCARD_CCR_OPTION_IREQ_ENABLE);
1299	}
1300	return (0);
1301}
1302
1303static int
1304pccard_teardown_intr(device_t dev, device_t child, struct resource *r,
1305    void *cookie)
1306{
1307	struct pccard_softc *sc = PCCARD_SOFTC(dev);
1308	struct pccard_ivar *ivar = PCCARD_IVAR(child);
1309	struct pccard_function *pf = ivar->pf;
1310	int ret;
1311
1312	if (pccard_mfc(sc)) {
1313		pccard_ccr_write(pf, PCCARD_CCR_OPTION,
1314		    pccard_ccr_read(pf, PCCARD_CCR_OPTION) &
1315		    ~PCCARD_CCR_OPTION_IREQ_ENABLE);
1316	}
1317	ret = bus_generic_teardown_intr(dev, child, r, cookie);
1318	if (ret == 0) {
1319		pf->intr_handler = NULL;
1320		pf->intr_handler_arg = NULL;
1321		pf->intr_handler_cookie = NULL;
1322	}
1323
1324	return (ret);
1325}
1326
1327static int
1328pccard_activate_resource(device_t brdev, device_t child, int type, int rid,
1329    struct resource *r)
1330{
1331	struct pccard_ivar *ivar = PCCARD_IVAR(child);
1332	struct pccard_function *pf = ivar->pf;
1333
1334	switch(type) {
1335	case SYS_RES_IOPORT:
1336		/*
1337		 * We need to adjust IOBASE[01] and IOSIZE if we're an MFC
1338		 * card.
1339		 */
1340		if (pccard_mfc(pf->sc))
1341			pccard_mfc_adjust_iobase(pf, rman_get_start(r), 0,
1342			    rman_get_size(r));
1343		break;
1344	default:
1345		break;
1346	}
1347	return (bus_generic_activate_resource(brdev, child, type, rid, r));
1348}
1349
1350static int
1351pccard_deactivate_resource(device_t brdev, device_t child, int type,
1352    int rid, struct resource *r)
1353{
1354	/* XXX undo pccard_activate_resource? XXX */
1355	return (bus_generic_deactivate_resource(brdev, child, type, rid, r));
1356}
1357
1358static int
1359pccard_attr_read_impl(device_t brdev, device_t child, uint32_t offset,
1360    uint8_t *val)
1361{
1362	struct pccard_ivar *devi = PCCARD_IVAR(child);
1363	struct pccard_function *pf = devi->pf;
1364
1365	/*
1366	 * Optimization.  Most of the time, devices want to access
1367	 * the same page of the attribute memory that the CCR is in.
1368	 * We take advantage of this fact here.
1369	 */
1370	if (offset / PCCARD_MEM_PAGE_SIZE ==
1371	    pf->ccr_base / PCCARD_MEM_PAGE_SIZE)
1372		*val = bus_space_read_1(pf->pf_ccrt, pf->pf_ccrh,
1373		    offset % PCCARD_MEM_PAGE_SIZE);
1374	else {
1375		CARD_SET_MEMORY_OFFSET(brdev, child, pf->ccr_rid, offset,
1376		    &offset);
1377		*val = bus_space_read_1(pf->pf_ccrt, pf->pf_ccrh, offset);
1378		CARD_SET_MEMORY_OFFSET(brdev, child, pf->ccr_rid, pf->ccr_base,
1379		    &offset);
1380	}
1381	return 0;
1382}
1383
1384static int
1385pccard_attr_write_impl(device_t brdev, device_t child, uint32_t offset,
1386    uint8_t val)
1387{
1388	struct pccard_ivar *devi = PCCARD_IVAR(child);
1389	struct pccard_function *pf = devi->pf;
1390
1391	/*
1392	 * Optimization.  Most of the time, devices want to access
1393	 * the same page of the attribute memory that the CCR is in.
1394	 * We take advantage of this fact here.
1395	 */
1396	if (offset / PCCARD_MEM_PAGE_SIZE ==
1397	    pf->ccr_base / PCCARD_MEM_PAGE_SIZE)
1398		bus_space_write_1(pf->pf_ccrt, pf->pf_ccrh,
1399		    offset % PCCARD_MEM_PAGE_SIZE, val);
1400	else {
1401		CARD_SET_MEMORY_OFFSET(brdev, child, pf->ccr_rid, offset,
1402		    &offset);
1403		bus_space_write_1(pf->pf_ccrt, pf->pf_ccrh, offset, val);
1404		CARD_SET_MEMORY_OFFSET(brdev, child, pf->ccr_rid, pf->ccr_base,
1405		    &offset);
1406	}
1407
1408	return 0;
1409}
1410
1411static int
1412pccard_ccr_read_impl(device_t brdev, device_t child, uint32_t offset,
1413    uint8_t *val)
1414{
1415	struct pccard_ivar *devi = PCCARD_IVAR(child);
1416
1417	*val = pccard_ccr_read(devi->pf, offset);
1418	device_printf(child, "ccr_read of %#x (%#x) is %#x\n", offset,
1419	  devi->pf->pf_ccr_offset, *val);
1420	return 0;
1421}
1422
1423static int
1424pccard_ccr_write_impl(device_t brdev, device_t child, uint32_t offset,
1425    uint8_t val)
1426{
1427	struct pccard_ivar *devi = PCCARD_IVAR(child);
1428	struct pccard_function *pf = devi->pf;
1429
1430	/*
1431	 * Can't use pccard_ccr_write since client drivers may access
1432	 * registers not contained in the 'mask' if they are non-standard.
1433	 */
1434	device_printf(child, "ccr_write of %#x to %#x (%#x)\n", val, offset,
1435	  devi->pf->pf_ccr_offset);
1436	bus_space_write_1(pf->pf_ccrt, pf->pf_ccrh, pf->pf_ccr_offset + offset,
1437	    val);
1438	return 0;
1439}
1440
1441
1442static device_method_t pccard_methods[] = {
1443	/* Device interface */
1444	DEVMETHOD(device_probe,		pccard_probe),
1445	DEVMETHOD(device_attach,	pccard_attach),
1446	DEVMETHOD(device_detach,	pccard_detach),
1447	DEVMETHOD(device_shutdown,	bus_generic_shutdown),
1448	DEVMETHOD(device_suspend,	pccard_suspend),
1449	DEVMETHOD(device_resume,	pccard_resume),
1450
1451	/* Bus interface */
1452	DEVMETHOD(bus_print_child,	pccard_print_child),
1453	DEVMETHOD(bus_driver_added,	pccard_driver_added),
1454	DEVMETHOD(bus_child_detached,	pccard_child_detached),
1455	DEVMETHOD(bus_alloc_resource,	pccard_alloc_resource),
1456	DEVMETHOD(bus_release_resource,	pccard_release_resource),
1457	DEVMETHOD(bus_activate_resource, pccard_activate_resource),
1458	DEVMETHOD(bus_deactivate_resource, pccard_deactivate_resource),
1459	DEVMETHOD(bus_setup_intr,	pccard_setup_intr),
1460	DEVMETHOD(bus_teardown_intr,	pccard_teardown_intr),
1461	DEVMETHOD(bus_set_resource,	pccard_set_resource),
1462	DEVMETHOD(bus_get_resource,	pccard_get_resource),
1463	DEVMETHOD(bus_delete_resource,	pccard_delete_resource),
1464	DEVMETHOD(bus_probe_nomatch,	pccard_probe_nomatch),
1465	DEVMETHOD(bus_read_ivar,	pccard_read_ivar),
1466	DEVMETHOD(bus_child_pnpinfo_str, pccard_child_pnpinfo_str),
1467	DEVMETHOD(bus_child_location_str, pccard_child_location_str),
1468
1469	/* Card Interface */
1470	DEVMETHOD(card_set_res_flags,	pccard_set_res_flags),
1471	DEVMETHOD(card_set_memory_offset, pccard_set_memory_offset),
1472	DEVMETHOD(card_attach_card,	pccard_attach_card),
1473	DEVMETHOD(card_detach_card,	pccard_detach_card),
1474	DEVMETHOD(card_do_product_lookup, pccard_do_product_lookup),
1475	DEVMETHOD(card_cis_scan,	pccard_scan_cis),
1476	DEVMETHOD(card_attr_read,	pccard_attr_read_impl),
1477	DEVMETHOD(card_attr_write,	pccard_attr_write_impl),
1478	DEVMETHOD(card_ccr_read,	pccard_ccr_read_impl),
1479	DEVMETHOD(card_ccr_write,	pccard_ccr_write_impl),
1480
1481	{ 0, 0 }
1482};
1483
1484static driver_t pccard_driver = {
1485	"pccard",
1486	pccard_methods,
1487	sizeof(struct pccard_softc)
1488};
1489
1490devclass_t	pccard_devclass;
1491
1492/* Maybe we need to have a slot device? */
1493DRIVER_MODULE(pccard, pcic, pccard_driver, pccard_devclass, 0, 0);
1494DRIVER_MODULE(pccard, cbb, pccard_driver, pccard_devclass, 0, 0);
1495MODULE_VERSION(pccard, 1);
1496