1999-10-15 01:28:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1995, David Greenman
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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 unmodified, 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 AUTHOR 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 AUTHOR 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.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/socket.h>
|
1999-10-25 02:55:14 +00:00
|
|
|
#include <sys/kernel.h>
|
2000-07-23 15:15:43 +00:00
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <machine/clock.h>
|
1999-10-15 01:28:04 +00:00
|
|
|
|
|
|
|
#include <sys/module.h>
|
1999-10-25 02:55:14 +00:00
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <machine/bus.h>
|
|
|
|
|
|
|
|
#include <net/ethernet.h>
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/if_arp.h>
|
|
|
|
#include <net/if_mib.h>
|
|
|
|
|
2000-07-23 15:15:43 +00:00
|
|
|
#include <dev/ed/if_edreg.h>
|
1999-10-15 01:28:04 +00:00
|
|
|
#include <dev/ed/if_edvar.h>
|
2000-01-21 03:08:46 +00:00
|
|
|
#include <dev/pccard/pccardvar.h>
|
2000-07-23 15:15:43 +00:00
|
|
|
#include <pccard/cardinfo.h>
|
|
|
|
#include <pccard/slot.h>
|
|
|
|
|
|
|
|
#define CARD_MAJOR 50
|
1999-10-15 01:28:04 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* PC-Card (PCMCIA) specific code.
|
|
|
|
*/
|
1999-10-25 02:55:14 +00:00
|
|
|
static int ed_pccard_probe(device_t);
|
|
|
|
static int ed_pccard_attach(device_t);
|
1999-12-01 07:38:54 +00:00
|
|
|
static int ed_pccard_detach(device_t);
|
1999-10-15 01:28:04 +00:00
|
|
|
|
2000-07-23 15:15:43 +00:00
|
|
|
static void ax88190_geteprom(device_t);
|
|
|
|
static int ed_pccard_memwrite(device_t dev, off_t offset, u_char byte);
|
|
|
|
static int ed_pccard_memread(device_t dev, off_t offset, u_char *buf, int size);
|
|
|
|
|
1999-10-25 02:55:14 +00:00
|
|
|
static device_method_t ed_pccard_methods[] = {
|
|
|
|
/* Device interface */
|
|
|
|
DEVMETHOD(device_probe, ed_pccard_probe),
|
|
|
|
DEVMETHOD(device_attach, ed_pccard_attach),
|
1999-10-25 06:15:45 +00:00
|
|
|
DEVMETHOD(device_detach, ed_pccard_detach),
|
1999-10-15 01:28:04 +00:00
|
|
|
|
1999-10-25 02:55:14 +00:00
|
|
|
{ 0, 0 }
|
|
|
|
};
|
1999-10-15 01:28:04 +00:00
|
|
|
|
1999-10-25 02:55:14 +00:00
|
|
|
static driver_t ed_pccard_driver = {
|
|
|
|
"ed",
|
|
|
|
ed_pccard_methods,
|
|
|
|
sizeof(struct ed_softc)
|
|
|
|
};
|
|
|
|
|
|
|
|
static devclass_t ed_pccard_devclass;
|
|
|
|
|
|
|
|
DRIVER_MODULE(ed, pccard, ed_pccard_driver, ed_pccard_devclass, 0, 0);
|
1999-10-15 01:28:04 +00:00
|
|
|
|
|
|
|
/*
|
1999-10-25 02:55:14 +00:00
|
|
|
* ed_pccard_detach - unload the driver and clear the table.
|
1999-10-15 01:28:04 +00:00
|
|
|
* XXX TODO:
|
|
|
|
* This is usually called when the card is ejected, but
|
|
|
|
* can be caused by a modunload of a controller driver.
|
|
|
|
* The idea is to reset the driver's view of the device
|
|
|
|
* and ensure that any driver entry points such as
|
|
|
|
* read and write do not hang.
|
|
|
|
*/
|
1999-12-01 07:38:54 +00:00
|
|
|
static int
|
1999-10-25 02:55:14 +00:00
|
|
|
ed_pccard_detach(device_t dev)
|
1999-10-15 01:28:04 +00:00
|
|
|
{
|
1999-10-25 02:55:14 +00:00
|
|
|
struct ed_softc *sc = device_get_softc(dev);
|
1999-10-15 01:28:04 +00:00
|
|
|
struct ifnet *ifp = &sc->arpcom.ac_if;
|
|
|
|
|
|
|
|
if (sc->gone) {
|
1999-10-25 02:55:14 +00:00
|
|
|
device_printf(dev, "already unloaded\n");
|
1999-12-01 07:38:54 +00:00
|
|
|
return (0);
|
1999-10-15 01:28:04 +00:00
|
|
|
}
|
1999-12-10 07:22:53 +00:00
|
|
|
ed_stop(sc);
|
1999-10-15 01:28:04 +00:00
|
|
|
ifp->if_flags &= ~IFF_RUNNING;
|
2000-07-13 22:54:34 +00:00
|
|
|
ether_ifdetach(ifp, ETHER_BPF_SUPPORTED);
|
1999-10-15 01:28:04 +00:00
|
|
|
sc->gone = 1;
|
1999-12-10 07:22:53 +00:00
|
|
|
bus_teardown_intr(dev, sc->irq_res, sc->irq_handle);
|
|
|
|
ed_release_resources(dev);
|
1999-12-01 07:38:54 +00:00
|
|
|
return (0);
|
1999-10-15 01:28:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Probe framework for pccards. Replicates the standard framework,
|
|
|
|
* minus the pccard driver registration and ignores the ether address
|
|
|
|
* supplied (from the CIS), relying on the probe to find it instead.
|
|
|
|
*/
|
|
|
|
static int
|
1999-10-25 02:55:14 +00:00
|
|
|
ed_pccard_probe(device_t dev)
|
1999-10-15 01:28:04 +00:00
|
|
|
{
|
|
|
|
int error;
|
2000-07-23 15:15:43 +00:00
|
|
|
int flags;
|
|
|
|
struct ed_softc *sc = device_get_softc(dev);
|
|
|
|
|
|
|
|
flags = device_get_flags(dev);
|
|
|
|
|
|
|
|
if (ED_FLAGS_GETTYPE(flags) == ED_FLAGS_AX88190) {
|
|
|
|
/* Special setup for AX88190 */
|
|
|
|
u_char rdbuf[4];
|
|
|
|
int iobase;
|
|
|
|
int attr_ioport;
|
2000-08-14 04:31:07 +00:00
|
|
|
|
|
|
|
/* XXX Allocate the port resource during setup. */
|
|
|
|
error = ed_alloc_port(dev, 0, ED_NOVELL_IO_PORTS);
|
|
|
|
if (error != 0)
|
|
|
|
return (error);
|
|
|
|
|
2000-07-23 15:15:43 +00:00
|
|
|
sc->chip_type = ED_CHIP_TYPE_AX88190;
|
|
|
|
/*
|
|
|
|
* Check & Set Attribute Memory IOBASE Register
|
|
|
|
*/
|
|
|
|
ed_pccard_memread(dev,ED_AX88190_IOBASE0,rdbuf,4);
|
|
|
|
attr_ioport = rdbuf[2] << 8 | rdbuf[0];
|
2000-08-14 04:31:07 +00:00
|
|
|
iobase = rman_get_start(sc->port_res);
|
2000-07-23 15:15:43 +00:00
|
|
|
if (attr_ioport != iobase) {
|
|
|
|
#if notdef
|
|
|
|
printf("AX88190 IOBASE MISMATCH %04x -> %04x Setting\n",attr_ioport,iobase);
|
|
|
|
#endif /* notdef */
|
|
|
|
ed_pccard_memwrite(dev,ED_AX88190_IOBASE0,iobase & 0xff);
|
|
|
|
ed_pccard_memwrite(dev,ED_AX88190_IOBASE1,(iobase >> 8) & 0xff);
|
|
|
|
}
|
2000-08-14 04:31:07 +00:00
|
|
|
ed_ax88190_geteprom(sc);
|
|
|
|
|
|
|
|
ed_release_resources(dev);
|
2000-07-23 15:15:43 +00:00
|
|
|
}
|
1999-10-25 02:55:14 +00:00
|
|
|
|
2000-04-28 05:01:35 +00:00
|
|
|
error = ed_probe_Novell(dev);
|
1999-10-15 01:28:04 +00:00
|
|
|
if (error == 0)
|
|
|
|
goto end;
|
|
|
|
ed_release_resources(dev);
|
|
|
|
|
2000-04-28 05:01:35 +00:00
|
|
|
error = ed_probe_WD80x3(dev);
|
1999-10-15 01:28:04 +00:00
|
|
|
if (error == 0)
|
|
|
|
goto end;
|
|
|
|
ed_release_resources(dev);
|
|
|
|
|
|
|
|
end:
|
|
|
|
if (error == 0)
|
|
|
|
error = ed_alloc_irq(dev, 0, 0);
|
|
|
|
|
|
|
|
ed_release_resources(dev);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1999-10-25 02:55:14 +00:00
|
|
|
ed_pccard_attach(device_t dev)
|
1999-10-15 01:28:04 +00:00
|
|
|
{
|
1999-10-25 02:55:14 +00:00
|
|
|
struct ed_softc *sc = device_get_softc(dev);
|
|
|
|
int flags = device_get_flags(dev);
|
|
|
|
int error;
|
2000-01-21 03:08:46 +00:00
|
|
|
int i;
|
|
|
|
u_char sum;
|
|
|
|
u_char ether_addr[ETHER_ADDR_LEN];
|
1999-10-25 02:55:14 +00:00
|
|
|
|
|
|
|
if (sc->port_used > 0)
|
1999-11-18 14:18:19 +00:00
|
|
|
ed_alloc_port(dev, sc->port_rid, sc->port_used);
|
1999-10-25 02:55:14 +00:00
|
|
|
if (sc->mem_used)
|
1999-11-18 14:18:19 +00:00
|
|
|
ed_alloc_memory(dev, sc->mem_rid, sc->mem_used);
|
1999-10-25 02:55:14 +00:00
|
|
|
ed_alloc_irq(dev, sc->irq_rid, 0);
|
|
|
|
|
|
|
|
error = bus_setup_intr(dev, sc->irq_res, INTR_TYPE_NET,
|
|
|
|
edintr, sc, &sc->irq_handle);
|
|
|
|
if (error) {
|
|
|
|
printf("setup intr failed %d \n", error);
|
|
|
|
ed_release_resources(dev);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
2000-06-29 07:31:37 +00:00
|
|
|
if (ed_get_Linksys(sc) == 0) {
|
|
|
|
pccard_get_ether(dev, ether_addr);
|
|
|
|
for (i = 0, sum = 0; i < ETHER_ADDR_LEN; i++)
|
|
|
|
sum |= ether_addr[i];
|
|
|
|
if (sum)
|
|
|
|
bcopy(ether_addr, sc->arpcom.ac_enaddr, ETHER_ADDR_LEN);
|
|
|
|
}
|
2000-01-21 03:08:46 +00:00
|
|
|
|
1999-10-25 02:55:14 +00:00
|
|
|
error = ed_attach(sc, device_get_unit(dev), flags);
|
1999-10-25 06:15:45 +00:00
|
|
|
return (error);
|
1999-10-15 01:28:04 +00:00
|
|
|
}
|
2000-07-23 15:15:43 +00:00
|
|
|
|
|
|
|
/* XXX: Warner-san, any plan to provide access to the attribute memory? */
|
|
|
|
static int
|
|
|
|
ed_pccard_memwrite(device_t dev, off_t offset, u_char byte)
|
|
|
|
{
|
|
|
|
struct pccard_devinfo *devi;
|
|
|
|
dev_t d;
|
|
|
|
struct iovec iov;
|
|
|
|
struct uio uios;
|
|
|
|
|
|
|
|
devi = device_get_ivars(dev);
|
|
|
|
|
|
|
|
iov.iov_base = &byte;
|
|
|
|
iov.iov_len = sizeof(byte);
|
|
|
|
|
|
|
|
uios.uio_iov = &iov;
|
|
|
|
uios.uio_iovcnt = 1;
|
|
|
|
uios.uio_offset = offset;
|
|
|
|
uios.uio_resid = sizeof(byte);
|
|
|
|
uios.uio_segflg = UIO_SYSSPACE;
|
|
|
|
uios.uio_rw = UIO_WRITE;
|
|
|
|
uios.uio_procp = 0;
|
|
|
|
|
|
|
|
d = makedev(CARD_MAJOR, devi->slt->slotnum);
|
|
|
|
return devsw(d)->d_write(d, &uios, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ed_pccard_memread(device_t dev, off_t offset, u_char *buf, int size)
|
|
|
|
{
|
|
|
|
struct pccard_devinfo *devi;
|
|
|
|
dev_t d;
|
|
|
|
struct iovec iov;
|
|
|
|
struct uio uios;
|
|
|
|
|
|
|
|
devi = device_get_ivars(dev);
|
|
|
|
|
|
|
|
iov.iov_base = buf;
|
|
|
|
iov.iov_len = size;
|
|
|
|
|
|
|
|
uios.uio_iov = &iov;
|
|
|
|
uios.uio_iovcnt = 1;
|
|
|
|
uios.uio_offset = offset;
|
|
|
|
uios.uio_resid = size;
|
|
|
|
uios.uio_segflg = UIO_SYSSPACE;
|
|
|
|
uios.uio_rw = UIO_READ;
|
|
|
|
uios.uio_procp = 0;
|
|
|
|
|
|
|
|
d = makedev(CARD_MAJOR, devi->slt->slotnum);
|
|
|
|
return devsw(d)->d_read(d, &uios, 0);
|
|
|
|
}
|