pccard_cis_quirks.c revision 120849
165483Simp/*	$NetBSD: pcmcia_cis_quirks.c,v 1.6 2000/04/12 21:07:55 scw Exp $ */
252506Simp
3119418Sobrien#include <sys/cdefs.h>
4119418Sobrien__FBSDID("$FreeBSD: head/sys/dev/pccard/pccard_cis_quirks.c 120849 2003-10-06 07:17:20Z imp $");
5119418Sobrien
652506Simp#define	PCCARDDEBUG
752506Simp
852506Simp/*
952506Simp * Copyright (c) 1998 Marc Horowitz.  All rights reserved.
1052506Simp *
1152506Simp * Redistribution and use in source and binary forms, with or without
1252506Simp * modification, are permitted provided that the following conditions
1352506Simp * are met:
1452506Simp * 1. Redistributions of source code must retain the above copyright
1552506Simp *    notice, this list of conditions and the following disclaimer.
1652506Simp * 2. Redistributions in binary form must reproduce the above copyright
1752506Simp *    notice, this list of conditions and the following disclaimer in the
1852506Simp *    documentation and/or other materials provided with the distribution.
1952506Simp * 3. All advertising materials mentioning features or use of this software
2052506Simp *    must display the following acknowledgement:
2152506Simp *	This product includes software developed by Marc Horowitz.
2252506Simp * 4. The name of the author may not be used to endorse or promote products
2352506Simp *    derived from this software without specific prior written permission.
2452506Simp *
2552506Simp * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
2652506Simp * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
2752506Simp * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2852506Simp * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2952506Simp * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
3052506Simp * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
3152506Simp * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
3252506Simp * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3352506Simp * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
3452506Simp * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3552506Simp */
3652506Simp
3752506Simp#include <sys/param.h>
3852506Simp#include <sys/systm.h>
3952506Simp#include <sys/malloc.h>
4052506Simp#include <sys/module.h>
4152506Simp#include <sys/kernel.h>
4252506Simp#include <sys/queue.h>
4352506Simp#include <sys/types.h>
4452506Simp
4552506Simp#include <sys/bus.h>
4652506Simp#include <machine/bus.h>
4752506Simp#include <sys/rman.h>
4852506Simp#include <machine/resource.h>
4952506Simp
5052506Simp#include <dev/pccard/pccarddevs.h>
5152506Simp#include <dev/pccard/pccardreg.h>
5252506Simp#include <dev/pccard/pccardvar.h>
5352506Simp
5452506Simp/* There are cards out there whose CIS flat-out lies.  This file
5552506Simp   contains struct pccard_function chains for those devices. */
5652506Simp
5752506Simp/* these structures are just static templates which are then copied
5852506Simp   into "live" allocated structures */
5952506Simp
6052506Simpstruct pccard_function pccard_3cxem556_func0 = {
6152506Simp	0,			/* function number */
6252506Simp	PCCARD_FUNCTION_NETWORK,
6352506Simp	0x07,			/* last cfe number */
6452506Simp	0x800,			/* ccr_base */
6552506Simp	0x63,			/* ccr_mask */
6652506Simp};
6752506Simp
6852506Simpstruct pccard_config_entry pccard_3cxem556_func0_cfe0 = {
6952506Simp	0x07,			/* cfe number */
7052506Simp	PCCARD_CFE_IO8 | PCCARD_CFE_IO16 | PCCARD_CFE_IRQLEVEL,
7152506Simp	PCCARD_IFTYPE_IO,
7252506Simp	1,			/* num_iospace */
7352506Simp	4,			/* iomask */
7452506Simp	{ { 0x0010, 0 } },	/* iospace */
7552506Simp	0xffff,			/* irqmask */
7652506Simp	0,			/* num_memspace */
7752506Simp	{ },			/* memspace */
7852506Simp	0,			/* maxtwins */
7952506Simp};
8052506Simp
8152506Simpstatic struct pccard_function pccard_3cxem556_func1 = {
8252506Simp	1,			/* function number */
8352506Simp	PCCARD_FUNCTION_SERIAL,
8452506Simp	0x27,			/* last cfe number */
8552506Simp	0x900,			/* ccr_base */
8652506Simp	0x63,			/* ccr_mask */
8752506Simp};
8852506Simp
8952506Simpstatic struct pccard_config_entry pccard_3cxem556_func1_cfe0 = {
9052506Simp	0x27,			/* cfe number */
9152506Simp	PCCARD_CFE_IO8 | PCCARD_CFE_IRQLEVEL,
9252506Simp	PCCARD_IFTYPE_IO,
9352506Simp	1,			/* num_iospace */
9452506Simp	3,			/* iomask */
9552506Simp	{ { 0x0008, 0 } },	/* iospace */
9652506Simp	0xffff,			/* irqmask */
9752506Simp	0,			/* num_memspace */
9852506Simp	{ },			/* memspace */
9952506Simp	0,			/* maxtwins */
10052506Simp};
10152506Simp
10253813Simpstatic struct pccard_function pccard_3ccfem556bi_func0 = {
10353813Simp	0,			/* function number */
10453813Simp	PCCARD_FUNCTION_NETWORK,
10553813Simp	0x07,			/* last cfe number */
10653813Simp	0x1000,			/* ccr_base */
10753813Simp	0x267,			/* ccr_mask */
10853813Simp};
10953813Simp
11053813Simpstatic struct pccard_config_entry pccard_3ccfem556bi_func0_cfe0 = {
11153813Simp	0x07,			/* cfe number */
11253813Simp	PCCARD_CFE_IO8 | PCCARD_CFE_IO16 | PCCARD_CFE_IRQLEVEL,
11353813Simp	PCCARD_IFTYPE_IO,
11453813Simp	1,			/* num_iospace */
11553813Simp	5,			/* iomask */
11653813Simp	{ { 0x0020, 0 } },	/* iospace */
11753813Simp	0xffff,			/* irqmask */
11853813Simp	0,			/* num_memspace */
11953813Simp	{ },			/* memspace */
12053813Simp	0,			/* maxtwins */
12153813Simp};
12253813Simp
12353813Simpstatic struct pccard_function pccard_3ccfem556bi_func1 = {
12453813Simp	1,			/* function number */
12553813Simp	PCCARD_FUNCTION_SERIAL,
12653813Simp	0x27,			/* last cfe number */
12753813Simp	0x1100,			/* ccr_base */
12853813Simp	0x277,			/* ccr_mask */
12953813Simp};
13053813Simp
13153813Simpstatic struct pccard_config_entry pccard_3ccfem556bi_func1_cfe0 = {
13253813Simp	0x27,			/* cfe number */
13353813Simp	PCCARD_CFE_IO8 | PCCARD_CFE_IRQLEVEL,
13453813Simp	PCCARD_IFTYPE_IO,
13553813Simp	1,			/* num_iospace */
13653813Simp	3,			/* iomask */
13753813Simp	{ { 0x0008, 0 } },	/* iospace */
13853813Simp	0xffff,			/* irqmask */
13953813Simp	0,			/* num_memspace */
14053813Simp	{ },			/* memspace */
14153813Simp	0,			/* maxtwins */
14253813Simp};
14353813Simp
14452506Simpstatic struct pccard_function pccard_sveclancard_func0 = {
14552506Simp	0,			/* function number */
14652506Simp	PCCARD_FUNCTION_NETWORK,
14752506Simp	0x1,			/* last cfe number */
14852506Simp	0x100,			/* ccr_base */
14952506Simp	0x1,			/* ccr_mask */
15052506Simp};
15152506Simp
15252506Simpstatic struct pccard_config_entry pccard_sveclancard_func0_cfe0 = {
15352506Simp	0x1,			/* cfe number */
15452506Simp	PCCARD_CFE_MWAIT_REQUIRED | PCCARD_CFE_RDYBSY_ACTIVE |
15552506Simp	PCCARD_CFE_WP_ACTIVE | PCCARD_CFE_BVD_ACTIVE | PCCARD_CFE_IO16,
15652506Simp	PCCARD_IFTYPE_IO,
15752506Simp	1,			/* num_iospace */
15852506Simp	5,			/* iomask */
15952506Simp	{ { 0x20, 0x300 } },	/* iospace */
16052506Simp	0xdeb8,			/* irqmask */
16152506Simp	0,			/* num_memspace */
16252506Simp	{ },			/* memspace */
16352506Simp	0,			/* maxtwins */
16452506Simp};
16552506Simp
16665483Simpstatic struct pccard_function pccard_ndc_nd5100_func0 = {
16765483Simp	0,			/* function number */
16865483Simp	PCCARD_FUNCTION_NETWORK,
16965483Simp	0x23,			/* last cfe number */
17065483Simp	0x3f8,			/* ccr_base */
17165483Simp	0x3,			/* ccr_mask */
17265483Simp};
17365483Simp
17465483Simpstatic struct pccard_config_entry pccard_ndc_nd5100_func0_cfe0 = {
17565483Simp	0x20,			/* cfe number */
17665483Simp	PCCARD_CFE_MWAIT_REQUIRED | PCCARD_CFE_IO16 | PCCARD_CFE_IRQLEVEL,
17765483Simp	PCCARD_IFTYPE_IO,
17865483Simp	1,			/* num_iospace */
17965483Simp	5,			/* iomask */
18065483Simp	{ { 0x20, 0x300 } },	/* iospace */
18165483Simp	0xdeb8,			/* irqmask */
18265483Simp	0,			/* num_memspace */
18365483Simp	{ },			/* memspace */
18465483Simp	0,			/* maxtwins */
18565483Simp};
18665483Simp
18752506Simpstatic struct pccard_cis_quirk pccard_cis_quirks[] = {
18886272Simp	{ PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CXEM556, PCMCIA_CIS_INVALID,
18952506Simp	  &pccard_3cxem556_func0, &pccard_3cxem556_func0_cfe0 },
19086272Simp	{ PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CXEM556, PCMCIA_CIS_INVALID,
19152506Simp	  &pccard_3cxem556_func1, &pccard_3cxem556_func1_cfe0 },
19286272Simp	{ PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CXEM556INT, PCMCIA_CIS_INVALID,
19353813Simp	  &pccard_3cxem556_func0, &pccard_3cxem556_func0_cfe0 },
19486272Simp	{ PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CXEM556INT, PCMCIA_CIS_INVALID,
19553813Simp	  &pccard_3cxem556_func1, &pccard_3cxem556_func1_cfe0 },
19686272Simp	{ PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CCFEM556BI,
19786272Simp	  PCMCIA_CIS_INVALID,
19853813Simp	  &pccard_3ccfem556bi_func0, &pccard_3ccfem556bi_func0_cfe0 },
19986272Simp	{ PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CCFEM556BI,
20086272Simp	  PCMCIA_CIS_INVALID,
20153813Simp	  &pccard_3ccfem556bi_func1, &pccard_3ccfem556bi_func1_cfe0 },
20286272Simp	{ PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID, PCMCIA_CIS_SVEC_LANCARD,
20352506Simp	  &pccard_sveclancard_func0, &pccard_sveclancard_func0_cfe0 },
20486272Simp	{ PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID, PCMCIA_CIS_NDC_ND5100_E,
20565483Simp	  &pccard_ndc_nd5100_func0, &pccard_ndc_nd5100_func0_cfe0 },
20652506Simp};
20752506Simp
20852506Simpstatic int n_pccard_cis_quirks =
20952506Simp	sizeof(pccard_cis_quirks)/sizeof(pccard_cis_quirks[0]);
21052506Simp
211120849Simpstatic int
212120849Simppccard_cis_quirk_match(struct pccard_softc *sc, struct pccard_cis_quirk *q)
213120849Simp{
214120849Simp	if ((sc->card.manufacturer == q->manufacturer) &&
215120849Simp		(sc->card.product == q->product) &&
216120849Simp		(((sc->card.manufacturer != PCMCIA_VENDOR_INVALID) &&
217120849Simp		  (sc->card.product != PCMCIA_PRODUCT_INVALID)) ||
218120849Simp		 ((sc->card.manufacturer == PCMCIA_VENDOR_INVALID) &&
219120849Simp		  (sc->card.product == PCMCIA_PRODUCT_INVALID) &&
220120849Simp		  sc->card.cis1_info[0] &&
221120849Simp		  (strcmp(sc->card.cis1_info[0], q->cis1_info[0]) == 0) &&
222120849Simp		  sc->card.cis1_info[1] &&
223120849Simp		  (strcmp(sc->card.cis1_info[1], q->cis1_info[1]) == 0))))
224120849Simp		return (1);
225120849Simp	return (0);
226120849Simp}
227120849Simp
22852506Simpvoid pccard_check_cis_quirks(device_t dev)
22952506Simp{
23064850Simp	struct pccard_softc *sc = PCCARD_SOFTC(dev);
23152506Simp	int wiped = 0;
23252506Simp	int i, j;
23352506Simp	struct pccard_function *pf, *pf_next, *pf_last;
23452506Simp	struct pccard_config_entry *cfe, *cfe_next;
235120849Simp	struct pccard_cis_quirk *q;
23652506Simp
23752506Simp	pf = NULL;
23852506Simp	pf_last = NULL;
23952506Simp
24052506Simp	for (i=0; i<n_pccard_cis_quirks; i++) {
241120849Simp		q = &pccard_cis_quirks[i];
242120849Simp		if (!pccard_cis_quirk_match(sc, q))
243120849Simp			continue;
244120849Simp		if (!wiped) {
245120849Simp			if (bootverbose) {
246120849Simp				device_printf(dev, "using CIS quirks for ");
247120849Simp				for (j = 0; j < 4; j++) {
248120849Simp					if (sc->card.cis1_info[j] == NULL)
249120849Simp						break;
250120849Simp					if (j)
251120849Simp						printf(", ");
252120849Simp					printf("%s", sc->card.cis1_info[j]);
25352506Simp				}
254120849Simp				printf("\n");
255120849Simp			}
25652506Simp
257120849Simp			for (pf = STAILQ_FIRST(&sc->card.pf_head); pf != NULL;
258120849Simp			     pf = pf_next) {
259120849Simp				for (cfe = STAILQ_FIRST(&pf->cfe_head); cfe != NULL;
260120849Simp				     cfe = cfe_next) {
261120849Simp					cfe_next = STAILQ_NEXT(cfe, cfe_list);
262120849Simp					free(cfe, M_DEVBUF);
26352506Simp				}
264120849Simp				pf_next = STAILQ_NEXT(pf, pf_list);
265120849Simp				free(pf, M_DEVBUF);
26652506Simp			}
26752506Simp
268120849Simp			STAILQ_INIT(&sc->card.pf_head);
269120849Simp			wiped = 1;
270120849Simp		}
27152506Simp
272120849Simp		if (pf_last == q->pf) {
273120849Simp			cfe = malloc(sizeof(*cfe), M_DEVBUF, M_NOWAIT);
274120849Simp			*cfe = *q->cfe;
275120849Simp			STAILQ_INSERT_TAIL(&pf->cfe_head, cfe, cfe_list);
276120849Simp		} else {
277120849Simp			pf = malloc(sizeof(*pf), M_DEVBUF, M_NOWAIT);
278120849Simp			*pf = *q->pf;
279120849Simp			STAILQ_INIT(&pf->cfe_head);
280120849Simp			cfe = malloc(sizeof(*cfe), M_DEVBUF, M_NOWAIT);
281120849Simp			*cfe = *q->cfe;
282120849Simp			STAILQ_INSERT_TAIL(&pf->cfe_head, cfe, cfe_list);
283120849Simp			STAILQ_INSERT_TAIL(&sc->card.pf_head, pf, pf_list);
284120849Simp			pf_last = q->pf;
28552506Simp		}
28652506Simp	}
28752506Simp}
288