2009-05-12 17:15:24 +04:00
|
|
|
/* $NetBSD: if_awi_pcmcia.c,v 1.42 2009/05/12 13:18:04 cegger Exp $ */
|
1999-11-05 08:13:36 +03:00
|
|
|
|
1999-11-04 20:12:43 +03:00
|
|
|
/*-
|
2004-08-10 20:43:47 +04:00
|
|
|
* Copyright (c) 1999, 2004 The NetBSD Foundation, Inc.
|
1999-11-04 20:12:43 +03:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Bill Sommerfeld
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* PCMCIA attachment for BayStack 650 802.11FH PCMCIA card,
|
|
|
|
* based on the AMD 79c930 802.11 controller chip.
|
|
|
|
*
|
2003-10-22 13:04:39 +04:00
|
|
|
* This attachment can probably be trivially adapted for other FH and
|
1999-11-04 20:12:43 +03:00
|
|
|
* DS cards based on the same chipset.
|
|
|
|
*/
|
|
|
|
|
2001-11-13 10:24:43 +03:00
|
|
|
#include <sys/cdefs.h>
|
2009-05-12 17:15:24 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: if_awi_pcmcia.c,v 1.42 2009/05/12 13:18:04 cegger Exp $");
|
2001-11-13 10:24:43 +03:00
|
|
|
|
1999-11-04 20:12:43 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/syslog.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/if_dl.h>
|
|
|
|
#include <net/if_ether.h>
|
|
|
|
#include <net/if_media.h>
|
2003-10-13 12:10:48 +04:00
|
|
|
|
2005-06-22 10:14:51 +04:00
|
|
|
#include <net80211/ieee80211_netbsd.h>
|
2003-10-13 12:10:48 +04:00
|
|
|
#include <net80211/ieee80211_var.h>
|
1999-11-04 20:12:43 +03:00
|
|
|
|
2007-10-19 15:59:34 +04:00
|
|
|
#include <sys/cpu.h>
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <sys/intr.h>
|
1999-11-04 20:12:43 +03:00
|
|
|
|
|
|
|
#include <dev/ic/am79c930reg.h>
|
|
|
|
#include <dev/ic/am79c930var.h>
|
|
|
|
#include <dev/ic/awireg.h>
|
|
|
|
#include <dev/ic/awivar.h>
|
|
|
|
|
|
|
|
#include <dev/pcmcia/pcmciareg.h>
|
|
|
|
#include <dev/pcmcia/pcmciavar.h>
|
|
|
|
#include <dev/pcmcia/pcmciadevs.h>
|
|
|
|
|
2009-05-12 17:15:24 +04:00
|
|
|
static int awi_pcmcia_match(struct device *, cfdata_t, void *);
|
2004-08-10 20:43:47 +04:00
|
|
|
static int awi_pcmcia_validate_config(struct pcmcia_config_entry *);
|
2001-09-18 13:09:57 +04:00
|
|
|
static void awi_pcmcia_attach(struct device *, struct device *, void *);
|
|
|
|
static int awi_pcmcia_detach(struct device *, int);
|
|
|
|
static int awi_pcmcia_enable(struct awi_softc *);
|
|
|
|
static void awi_pcmcia_disable(struct awi_softc *);
|
1999-11-04 20:12:43 +03:00
|
|
|
|
|
|
|
struct awi_pcmcia_softc {
|
2000-02-01 13:00:41 +03:00
|
|
|
struct awi_softc sc_awi; /* real "awi" softc */
|
1999-11-04 20:12:43 +03:00
|
|
|
|
|
|
|
/* PCMCIA-specific goo */
|
|
|
|
struct pcmcia_function *sc_pf; /* our PCMCIA function */
|
2001-09-18 13:09:57 +04:00
|
|
|
void *sc_ih; /* interrupt handler */
|
1999-11-04 20:12:43 +03:00
|
|
|
|
2004-08-10 20:43:47 +04:00
|
|
|
int sc_state;
|
|
|
|
#define AWI_PCMCIA_ATTACHED 3
|
|
|
|
};
|
1999-11-04 20:12:43 +03:00
|
|
|
|
2002-10-01 01:57:46 +04:00
|
|
|
CFATTACH_DECL(awi_pcmcia, sizeof(struct awi_pcmcia_softc),
|
2002-10-02 20:51:16 +04:00
|
|
|
awi_pcmcia_match, awi_pcmcia_attach, awi_pcmcia_detach, awi_activate);
|
1999-11-04 20:12:43 +03:00
|
|
|
|
2004-08-10 22:39:08 +04:00
|
|
|
static const struct pcmcia_product awi_pcmcia_products[] = {
|
2000-02-03 11:52:21 +03:00
|
|
|
{ PCMCIA_VENDOR_BAY, PCMCIA_PRODUCT_BAY_STACK_650,
|
2004-08-10 22:39:08 +04:00
|
|
|
PCMCIA_CIS_BAY_STACK_650 },
|
2000-02-03 11:52:21 +03:00
|
|
|
|
2000-03-22 14:22:20 +03:00
|
|
|
{ PCMCIA_VENDOR_BAY, PCMCIA_PRODUCT_BAY_STACK_660,
|
2004-08-10 22:39:08 +04:00
|
|
|
PCMCIA_CIS_BAY_STACK_660 },
|
2000-03-22 14:22:20 +03:00
|
|
|
|
|
|
|
{ PCMCIA_VENDOR_BAY, PCMCIA_PRODUCT_BAY_SURFER_PRO,
|
2004-08-10 22:39:08 +04:00
|
|
|
PCMCIA_CIS_BAY_SURFER_PRO },
|
2000-03-22 14:22:20 +03:00
|
|
|
|
|
|
|
{ PCMCIA_VENDOR_AMD, PCMCIA_PRODUCT_AMD_AM79C930,
|
2004-08-10 22:39:08 +04:00
|
|
|
PCMCIA_CIS_AMD_AM79C930 },
|
2000-02-03 11:52:21 +03:00
|
|
|
|
|
|
|
{ PCMCIA_VENDOR_ICOM, PCMCIA_PRODUCT_ICOM_SL200,
|
2004-08-10 22:39:08 +04:00
|
|
|
PCMCIA_CIS_ICOM_SL200 },
|
2000-02-03 11:52:21 +03:00
|
|
|
|
2000-03-23 01:33:47 +03:00
|
|
|
{ PCMCIA_VENDOR_NOKIA, PCMCIA_PRODUCT_NOKIA_C020_WLAN,
|
2004-08-10 22:39:08 +04:00
|
|
|
PCMCIA_CIS_NOKIA_C020_WLAN },
|
2000-03-23 01:33:47 +03:00
|
|
|
|
2000-06-09 17:05:02 +04:00
|
|
|
{ PCMCIA_VENDOR_FARALLON, PCMCIA_PRODUCT_FARALLON_SKYLINE,
|
2004-08-10 22:39:08 +04:00
|
|
|
PCMCIA_CIS_FARALLON_SKYLINE },
|
2000-02-03 11:52:21 +03:00
|
|
|
};
|
2004-08-10 22:39:08 +04:00
|
|
|
static const size_t awi_pcmcia_nproducts =
|
|
|
|
sizeof(awi_pcmcia_products) / sizeof(awi_pcmcia_products[0]);
|
1999-11-06 19:43:53 +03:00
|
|
|
|
2000-03-22 14:22:20 +03:00
|
|
|
static int
|
2009-03-14 18:35:58 +03:00
|
|
|
awi_pcmcia_enable(struct awi_softc *sc)
|
1999-11-04 20:12:43 +03:00
|
|
|
{
|
2000-02-01 11:58:25 +03:00
|
|
|
struct awi_pcmcia_softc *psc = (struct awi_pcmcia_softc *)sc;
|
1999-11-04 20:12:43 +03:00
|
|
|
struct pcmcia_function *pf = psc->sc_pf;
|
2004-08-10 20:43:47 +04:00
|
|
|
int error;
|
|
|
|
|
1999-11-04 20:12:43 +03:00
|
|
|
/* establish the interrupt. */
|
2001-09-18 13:09:57 +04:00
|
|
|
psc->sc_ih = pcmcia_intr_establish(pf, IPL_NET, awi_intr, sc);
|
2004-08-10 20:43:47 +04:00
|
|
|
if (!psc->sc_ih)
|
|
|
|
return (EIO);
|
2000-03-22 14:22:20 +03:00
|
|
|
|
2004-08-10 20:43:47 +04:00
|
|
|
error = pcmcia_function_enable(pf);
|
|
|
|
if (error) {
|
2001-09-18 13:09:57 +04:00
|
|
|
pcmcia_intr_disestablish(pf, psc->sc_ih);
|
2004-08-10 20:43:47 +04:00
|
|
|
psc->sc_ih = 0;
|
2000-03-22 14:22:20 +03:00
|
|
|
}
|
|
|
|
|
2004-08-10 20:43:47 +04:00
|
|
|
return (error);
|
1999-11-04 20:12:43 +03:00
|
|
|
}
|
|
|
|
|
2000-03-22 14:22:20 +03:00
|
|
|
static void
|
2009-03-14 18:35:58 +03:00
|
|
|
awi_pcmcia_disable(struct awi_softc *sc)
|
1999-11-04 20:12:43 +03:00
|
|
|
{
|
2000-02-01 11:58:25 +03:00
|
|
|
struct awi_pcmcia_softc *psc = (struct awi_pcmcia_softc *)sc;
|
1999-11-04 20:12:43 +03:00
|
|
|
struct pcmcia_function *pf = psc->sc_pf;
|
|
|
|
|
2000-02-01 11:58:25 +03:00
|
|
|
pcmcia_function_disable(pf);
|
2001-09-18 13:09:57 +04:00
|
|
|
pcmcia_intr_disestablish(pf, psc->sc_ih);
|
2004-08-10 20:43:47 +04:00
|
|
|
psc->sc_ih = 0;
|
1999-11-04 20:12:43 +03:00
|
|
|
}
|
|
|
|
|
2000-03-22 14:22:20 +03:00
|
|
|
static int
|
2009-05-12 17:15:24 +04:00
|
|
|
awi_pcmcia_match(struct device *parent, cfdata_t match,
|
2006-10-12 05:30:41 +04:00
|
|
|
void *aux)
|
1999-11-04 20:12:43 +03:00
|
|
|
{
|
|
|
|
struct pcmcia_attach_args *pa = aux;
|
|
|
|
|
2004-08-10 22:39:08 +04:00
|
|
|
if (pcmcia_product_lookup(pa, awi_pcmcia_products, awi_pcmcia_nproducts,
|
|
|
|
sizeof(awi_pcmcia_products[0]), NULL))
|
1999-11-04 20:12:43 +03:00
|
|
|
return (1);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2000-03-22 14:22:20 +03:00
|
|
|
static int
|
2009-03-14 18:35:58 +03:00
|
|
|
awi_pcmcia_validate_config(struct pcmcia_config_entry *cfe)
|
1999-11-04 20:12:43 +03:00
|
|
|
{
|
2004-08-10 20:43:47 +04:00
|
|
|
if (cfe->iftype != PCMCIA_IFTYPE_IO ||
|
|
|
|
cfe->num_iospace < 1 ||
|
|
|
|
cfe->iospace[0].length < AM79C930_IO_SIZE)
|
|
|
|
return (EINVAL);
|
|
|
|
if (cfe->num_memspace < 1) {
|
|
|
|
cfe->memspace[0].length = AM79C930_MEM_SIZE;
|
|
|
|
cfe->memspace[0].cardaddr = 0;
|
|
|
|
cfe->memspace[0].hostaddr = 0;
|
|
|
|
} else if (cfe->memspace[0].length < AM79C930_MEM_SIZE)
|
|
|
|
return (EINVAL);
|
|
|
|
return (0);
|
1999-11-04 20:12:43 +03:00
|
|
|
}
|
|
|
|
|
2000-03-22 14:22:20 +03:00
|
|
|
static void
|
2006-11-16 04:32:37 +03:00
|
|
|
awi_pcmcia_attach(struct device *parent, struct device *self,
|
2006-10-12 05:30:41 +04:00
|
|
|
void *aux)
|
1999-11-04 20:12:43 +03:00
|
|
|
{
|
2000-02-01 11:58:25 +03:00
|
|
|
struct awi_pcmcia_softc *psc = (void *)self;
|
1999-11-04 20:12:43 +03:00
|
|
|
struct awi_softc *sc = &psc->sc_awi;
|
|
|
|
struct pcmcia_attach_args *pa = aux;
|
|
|
|
struct pcmcia_config_entry *cfe;
|
2004-08-10 20:43:47 +04:00
|
|
|
int error;
|
2000-02-03 11:52:21 +03:00
|
|
|
|
1999-11-04 20:12:43 +03:00
|
|
|
psc->sc_pf = pa->pf;
|
|
|
|
|
2004-08-10 20:43:47 +04:00
|
|
|
error = pcmcia_function_configure(pa->pf, awi_pcmcia_validate_config);
|
|
|
|
if (error) {
|
2008-04-06 01:31:23 +04:00
|
|
|
aprint_error_dev(self, "configure failed, error=%d\n",
|
2004-08-10 20:43:47 +04:00
|
|
|
error);
|
|
|
|
return;
|
1999-11-04 20:12:43 +03:00
|
|
|
}
|
|
|
|
|
2004-08-10 20:43:47 +04:00
|
|
|
cfe = pa->pf->cfe;
|
|
|
|
sc->sc_chip.sc_bustype = AM79C930_BUS_PCMCIA;
|
|
|
|
sc->sc_chip.sc_iot = cfe->iospace[0].handle.iot;
|
|
|
|
sc->sc_chip.sc_ioh = cfe->iospace[0].handle.ioh;
|
|
|
|
if (cfe->num_memspace > 0) {
|
|
|
|
sc->sc_chip.sc_memt = cfe->memspace[0].handle.memt;
|
|
|
|
sc->sc_chip.sc_memh = cfe->memspace[0].handle.memh;
|
1999-11-04 20:48:13 +03:00
|
|
|
am79c930_chip_init(&sc->sc_chip, 1);
|
2004-08-10 20:43:47 +04:00
|
|
|
} else
|
|
|
|
am79c930_chip_init(&sc->sc_chip, 0);
|
|
|
|
|
|
|
|
error = awi_pcmcia_enable(sc);
|
|
|
|
if (error)
|
|
|
|
goto fail;
|
2004-08-11 02:49:12 +04:00
|
|
|
sc->sc_enabled = 1;
|
2004-08-10 20:43:47 +04:00
|
|
|
|
|
|
|
awi_read_bytes(sc, AWI_BANNER, sc->sc_banner, AWI_BANNER_LEN);
|
|
|
|
if (memcmp(sc->sc_banner, "PCnetMobile:", 12))
|
|
|
|
goto fail2;
|
1999-11-04 20:12:43 +03:00
|
|
|
|
|
|
|
sc->sc_enable = awi_pcmcia_enable;
|
|
|
|
sc->sc_disable = awi_pcmcia_disable;
|
|
|
|
|
2000-03-22 14:22:20 +03:00
|
|
|
sc->sc_cansleep = 1;
|
2000-02-01 11:52:05 +03:00
|
|
|
|
2000-03-22 14:22:20 +03:00
|
|
|
if (awi_attach(sc) != 0) {
|
2008-04-06 01:31:23 +04:00
|
|
|
aprint_error_dev(self, "failed to attach controller\n");
|
2004-08-10 20:43:47 +04:00
|
|
|
goto fail2;
|
2000-02-01 11:52:05 +03:00
|
|
|
}
|
1999-11-06 19:43:53 +03:00
|
|
|
|
2000-03-22 14:22:20 +03:00
|
|
|
sc->sc_enabled = 0;
|
2004-08-11 02:49:12 +04:00
|
|
|
awi_pcmcia_disable(sc);
|
2004-08-10 20:43:47 +04:00
|
|
|
psc->sc_state = AWI_PCMCIA_ATTACHED;
|
2000-03-22 14:22:20 +03:00
|
|
|
return;
|
1999-11-04 20:12:43 +03:00
|
|
|
|
2004-08-10 20:43:47 +04:00
|
|
|
fail2:
|
|
|
|
sc->sc_enabled = 0;
|
2004-08-11 02:49:12 +04:00
|
|
|
awi_pcmcia_disable(sc);
|
2004-08-10 20:43:47 +04:00
|
|
|
fail:
|
|
|
|
pcmcia_function_unconfigure(pa->pf);
|
1999-11-04 20:12:43 +03:00
|
|
|
}
|
|
|
|
|
2000-03-22 14:22:20 +03:00
|
|
|
static int
|
2006-11-16 04:32:37 +03:00
|
|
|
awi_pcmcia_detach(struct device *self, int flags)
|
1999-11-04 20:12:43 +03:00
|
|
|
{
|
|
|
|
struct awi_pcmcia_softc *psc = (struct awi_pcmcia_softc *)self;
|
2000-03-22 14:22:20 +03:00
|
|
|
int error;
|
|
|
|
|
2004-08-10 20:43:47 +04:00
|
|
|
if (psc->sc_state != AWI_PCMCIA_ATTACHED)
|
2000-03-22 14:22:20 +03:00
|
|
|
return (0);
|
|
|
|
|
|
|
|
error = awi_detach(&psc->sc_awi);
|
2004-08-10 20:43:47 +04:00
|
|
|
if (error)
|
2000-03-22 14:22:20 +03:00
|
|
|
return (error);
|
|
|
|
|
2004-08-10 20:43:47 +04:00
|
|
|
pcmcia_function_unconfigure(psc->sc_pf);
|
1999-11-04 20:12:43 +03:00
|
|
|
|
2000-03-22 14:22:20 +03:00
|
|
|
return (0);
|
1999-11-04 20:12:43 +03:00
|
|
|
}
|