2005-01-06 01:43:34 +00:00
|
|
|
/*-
|
2003-04-20 19:05:33 +00:00
|
|
|
* Copyright (c) 1997, 1998, 1999, 2000-2003
|
|
|
|
* Bill Paul <wpaul@windriver.com>. 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, 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Bill Paul.
|
|
|
|
* 4. Neither the name of the author nor the names of any co-contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY Bill Paul 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 Bill Paul OR THE VOICES IN HIS HEAD
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2003-08-24 17:55:58 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2003-04-20 19:05:33 +00:00
|
|
|
/*
|
2007-09-25 20:47:24 +00:00
|
|
|
* ASIX Electronics AX88172/AX88178/AX88778 USB 2.0 ethernet driver.
|
|
|
|
* Used in the LinkSys USB200M and various other adapters.
|
2003-04-20 19:05:33 +00:00
|
|
|
*
|
|
|
|
* Manuals available from:
|
|
|
|
* http://www.asix.com.tw/datasheet/mac/Ax88172.PDF
|
|
|
|
* Note: you need the manual for the AX88170 chip (USB 1.x ethernet
|
|
|
|
* controller) to find the definitions for the RX control register.
|
|
|
|
* http://www.asix.com.tw/datasheet/mac/Ax88170.PDF
|
|
|
|
*
|
|
|
|
* Written by Bill Paul <wpaul@windriver.com>
|
|
|
|
* Senior Engineer
|
|
|
|
* Wind River Systems
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The AX88172 provides USB ethernet supports at 10 and 100Mbps.
|
|
|
|
* It uses an external PHY (reference designs use a RealTek chip),
|
|
|
|
* and has a 64-bit multicast hash filter. There is some information
|
|
|
|
* missing from the manual which one needs to know in order to make
|
|
|
|
* the chip function:
|
|
|
|
*
|
|
|
|
* - You must set bit 7 in the RX control register, otherwise the
|
|
|
|
* chip won't receive any packets.
|
|
|
|
* - You must initialize all 3 IPG registers, or you won't be able
|
|
|
|
* to send any packets.
|
|
|
|
*
|
|
|
|
* Note that this device appears to only support loading the station
|
|
|
|
* address via autload from the EEPROM (i.e. there's no way to manaully
|
|
|
|
* set it).
|
|
|
|
*
|
|
|
|
* (Adam Weinberger wanted me to name this driver if_gir.c.)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
2007-09-25 20:47:24 +00:00
|
|
|
#include <sys/endian.h>
|
2003-04-20 19:05:33 +00:00
|
|
|
#include <sys/sockio.h>
|
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/malloc.h>
|
2007-03-31 23:23:42 +00:00
|
|
|
#include <sys/lock.h>
|
2003-04-20 19:05:33 +00:00
|
|
|
#include <sys/kernel.h>
|
2004-05-30 20:08:47 +00:00
|
|
|
#include <sys/module.h>
|
2003-04-20 19:05:33 +00:00
|
|
|
#include <sys/socket.h>
|
2006-06-04 14:42:38 +00:00
|
|
|
#include <sys/sx.h>
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/if_arp.h>
|
|
|
|
#include <net/ethernet.h>
|
|
|
|
#include <net/if_dl.h>
|
|
|
|
#include <net/if_media.h>
|
2005-06-10 16:49:24 +00:00
|
|
|
#include <net/if_types.h>
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
#include <net/bpf.h>
|
|
|
|
|
|
|
|
#include <sys/bus.h>
|
2003-07-16 02:20:14 +00:00
|
|
|
#include <machine/bus.h>
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
#include <dev/usb/usb.h>
|
|
|
|
#include <dev/usb/usbdi.h>
|
|
|
|
#include <dev/usb/usbdi_util.h>
|
|
|
|
#include <dev/usb/usbdivar.h>
|
2004-06-27 12:41:44 +00:00
|
|
|
#include "usbdevs.h"
|
2003-04-20 19:05:33 +00:00
|
|
|
#include <dev/usb/usb_ethersubr.h>
|
|
|
|
|
|
|
|
#include <dev/mii/mii.h>
|
|
|
|
#include <dev/mii/miivar.h>
|
|
|
|
|
2005-10-22 05:06:55 +00:00
|
|
|
/* "device miibus" required. See GENERIC if you get errors here. */
|
2003-04-20 19:05:33 +00:00
|
|
|
#include "miibus_if.h"
|
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
/*
|
|
|
|
* AXE_178_MAX_FRAME_BURST
|
|
|
|
* max frame burst size for Ax88178 and Ax88772
|
|
|
|
* 0 2048 bytes
|
|
|
|
* 1 4096 bytes
|
|
|
|
* 2 8192 bytes
|
|
|
|
* 3 16384 bytes
|
|
|
|
* use the largest your system can handle without usb stalling.
|
|
|
|
*
|
|
|
|
* NB: 88772 parts appear to generate lots of input errors with
|
|
|
|
* a 2K rx buffer and 8K is only slightly faster than 4K on an
|
|
|
|
* EHCI port on a T42 so change at your own risk.
|
|
|
|
*/
|
|
|
|
#define AXE_178_MAX_FRAME_BURST 1
|
|
|
|
|
2003-04-20 19:05:33 +00:00
|
|
|
#include <dev/usb/if_axereg.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Various supported device vendors/products.
|
|
|
|
*/
|
2007-06-30 20:08:08 +00:00
|
|
|
const struct axe_type axe_devs[] = {
|
|
|
|
{ { USB_VENDOR_ABOCOM, USB_PRODUCT_ABOCOM_UF200}, 0 },
|
|
|
|
{ { USB_VENDOR_ACERCM, USB_PRODUCT_ACERCM_EP1427X2}, 0 },
|
2008-05-13 14:00:09 +00:00
|
|
|
{ { USB_VENDOR_APPLE, USB_PRODUCT_APPLE_ETHERNET}, AX772 },
|
2007-06-30 20:08:08 +00:00
|
|
|
{ { USB_VENDOR_ASIX, USB_PRODUCT_ASIX_AX88172}, 0 },
|
|
|
|
{ { USB_VENDOR_ASIX, USB_PRODUCT_ASIX_AX88772}, AX772 },
|
|
|
|
{ { USB_VENDOR_ASIX, USB_PRODUCT_ASIX_AX88178}, AX178 },
|
|
|
|
{ { USB_VENDOR_ATEN, USB_PRODUCT_ATEN_UC210T}, 0 },
|
|
|
|
{ { USB_VENDOR_BELKIN, USB_PRODUCT_BELKIN_F5D5055 }, AX178 },
|
|
|
|
{ { USB_VENDOR_BILLIONTON, USB_PRODUCT_BILLIONTON_USB2AR}, 0},
|
|
|
|
{ { USB_VENDOR_CISCOLINKSYS, USB_PRODUCT_CISCOLINKSYS_USB200MV2}, AX772 },
|
|
|
|
{ { USB_VENDOR_COREGA, USB_PRODUCT_COREGA_FETHER_USB2_TX }, 0},
|
|
|
|
{ { USB_VENDOR_DLINK, USB_PRODUCT_DLINK_DUBE100}, 0 },
|
|
|
|
{ { USB_VENDOR_DLINK, USB_PRODUCT_DLINK_DUBE100B1 }, AX772 },
|
|
|
|
{ { USB_VENDOR_GOODWAY, USB_PRODUCT_GOODWAY_GWUSB2E}, 0 },
|
|
|
|
{ { USB_VENDOR_IODATA, USB_PRODUCT_IODATA_ETGUS2 }, AX178 },
|
|
|
|
{ { USB_VENDOR_JVC, USB_PRODUCT_JVC_MP_PRX1}, 0 },
|
|
|
|
{ { USB_VENDOR_LINKSYS2, USB_PRODUCT_LINKSYS2_USB200M}, 0 },
|
|
|
|
{ { USB_VENDOR_LINKSYS4, USB_PRODUCT_LINKSYS4_USB1000 }, AX178 },
|
|
|
|
{ { USB_VENDOR_MELCO, USB_PRODUCT_MELCO_LUAU2KTX}, 0 },
|
|
|
|
{ { USB_VENDOR_NETGEAR, USB_PRODUCT_NETGEAR_FA120}, 0 },
|
|
|
|
{ { USB_VENDOR_OQO, USB_PRODUCT_OQO_ETHER01PLUS }, AX772 },
|
|
|
|
{ { USB_VENDOR_PLANEX3, USB_PRODUCT_PLANEX3_GU1000T }, AX178 },
|
|
|
|
{ { USB_VENDOR_SYSTEMTALKS, USB_PRODUCT_SYSTEMTALKS_SGCX2UL}, 0 },
|
|
|
|
{ { USB_VENDOR_SITECOM, USB_PRODUCT_SITECOM_LN029}, 0 },
|
|
|
|
{ { USB_VENDOR_SITECOMEU, USB_PRODUCT_SITECOMEU_LN028 }, AX178 }
|
2003-04-20 19:05:33 +00:00
|
|
|
};
|
|
|
|
|
2007-06-30 20:08:08 +00:00
|
|
|
#define axe_lookup(v, p) ((const struct axe_type *)usb_lookup(axe_devs, v, p))
|
|
|
|
|
2007-06-18 22:25:46 +00:00
|
|
|
static device_probe_t axe_match;
|
|
|
|
static device_attach_t axe_attach;
|
|
|
|
static device_detach_t axe_detach;
|
|
|
|
static device_shutdown_t axe_shutdown;
|
|
|
|
static miibus_readreg_t axe_miibus_readreg;
|
|
|
|
static miibus_writereg_t axe_miibus_writereg;
|
|
|
|
static miibus_statchg_t axe_miibus_statchg;
|
2006-09-06 23:44:25 +00:00
|
|
|
|
|
|
|
static int axe_encap(struct axe_softc *, struct mbuf *, int);
|
|
|
|
static void axe_rxeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
|
|
|
|
static void axe_txeof(usbd_xfer_handle, usbd_private_handle, usbd_status);
|
|
|
|
static void axe_tick(void *);
|
|
|
|
static void axe_tick_task(void *);
|
|
|
|
static void axe_start(struct ifnet *);
|
|
|
|
static int axe_ioctl(struct ifnet *, u_long, caddr_t);
|
|
|
|
static void axe_init(void *);
|
|
|
|
static void axe_stop(struct axe_softc *);
|
|
|
|
static void axe_watchdog(struct ifnet *);
|
|
|
|
static int axe_cmd(struct axe_softc *, int, int, int, void *);
|
|
|
|
static int axe_ifmedia_upd(struct ifnet *);
|
|
|
|
static void axe_ifmedia_sts(struct ifnet *, struct ifmediareq *);
|
|
|
|
|
|
|
|
static void axe_setmulti(struct axe_softc *);
|
|
|
|
|
|
|
|
static device_method_t axe_methods[] = {
|
2003-04-20 19:05:33 +00:00
|
|
|
/* Device interface */
|
|
|
|
DEVMETHOD(device_probe, axe_match),
|
|
|
|
DEVMETHOD(device_attach, axe_attach),
|
|
|
|
DEVMETHOD(device_detach, axe_detach),
|
|
|
|
DEVMETHOD(device_shutdown, axe_shutdown),
|
|
|
|
|
|
|
|
/* bus interface */
|
|
|
|
DEVMETHOD(bus_print_child, bus_generic_print_child),
|
|
|
|
DEVMETHOD(bus_driver_added, bus_generic_driver_added),
|
|
|
|
|
|
|
|
/* MII interface */
|
|
|
|
DEVMETHOD(miibus_readreg, axe_miibus_readreg),
|
|
|
|
DEVMETHOD(miibus_writereg, axe_miibus_writereg),
|
|
|
|
DEVMETHOD(miibus_statchg, axe_miibus_statchg),
|
|
|
|
|
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static driver_t axe_driver = {
|
2003-04-20 19:05:33 +00:00
|
|
|
"axe",
|
|
|
|
axe_methods,
|
|
|
|
sizeof(struct axe_softc)
|
|
|
|
};
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static devclass_t axe_devclass;
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
DRIVER_MODULE(axe, uhub, axe_driver, axe_devclass, usbd_driver_load, 0);
|
|
|
|
DRIVER_MODULE(miibus, axe, miibus_driver, miibus_devclass, 0, 0);
|
|
|
|
MODULE_DEPEND(axe, usb, 1, 1, 1);
|
|
|
|
MODULE_DEPEND(axe, miibus, 1, 1, 1);
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static int
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_cmd(struct axe_softc *sc, int cmd, int index, int val, void *buf)
|
|
|
|
{
|
|
|
|
usb_device_request_t req;
|
|
|
|
usbd_status err;
|
|
|
|
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPLOCKASSERT(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
if (sc->axe_dying)
|
|
|
|
return(0);
|
|
|
|
|
|
|
|
if (AXE_CMD_DIR(cmd))
|
|
|
|
req.bmRequestType = UT_WRITE_VENDOR_DEVICE;
|
|
|
|
else
|
|
|
|
req.bmRequestType = UT_READ_VENDOR_DEVICE;
|
|
|
|
req.bRequest = AXE_CMD_CMD(cmd);
|
|
|
|
USETW(req.wValue, val);
|
|
|
|
USETW(req.wIndex, index);
|
|
|
|
USETW(req.wLength, AXE_CMD_LEN(cmd));
|
|
|
|
|
|
|
|
err = usbd_do_request(sc->axe_udev, &req, buf);
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
return(-1);
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static int
|
|
|
|
axe_miibus_readreg(device_t dev, int phy, int reg)
|
2003-04-20 19:05:33 +00:00
|
|
|
{
|
2007-06-17 18:46:26 +00:00
|
|
|
struct axe_softc *sc = device_get_softc(dev);
|
2003-04-20 19:05:33 +00:00
|
|
|
usbd_status err;
|
|
|
|
u_int16_t val;
|
|
|
|
|
|
|
|
if (sc->axe_dying)
|
|
|
|
return(0);
|
|
|
|
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPLOCKASSERT(sc);
|
2003-06-15 21:45:43 +00:00
|
|
|
#ifdef notdef
|
2003-04-20 19:05:33 +00:00
|
|
|
/*
|
|
|
|
* The chip tells us the MII address of any supported
|
|
|
|
* PHYs attached to the chip, so only read from those.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (sc->axe_phyaddrs[0] != AXE_NOPHY && phy != sc->axe_phyaddrs[0])
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
if (sc->axe_phyaddrs[1] != AXE_NOPHY && phy != sc->axe_phyaddrs[1])
|
|
|
|
return (0);
|
2003-06-15 21:45:43 +00:00
|
|
|
#endif
|
|
|
|
if (sc->axe_phyaddrs[0] != 0xFF && sc->axe_phyaddrs[0] != phy)
|
|
|
|
return (0);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
AXE_LOCK(sc);
|
|
|
|
axe_cmd(sc, AXE_CMD_MII_OPMODE_SW, 0, 0, NULL);
|
|
|
|
err = axe_cmd(sc, AXE_CMD_MII_READ_REG, reg, phy, (void *)&val);
|
|
|
|
axe_cmd(sc, AXE_CMD_MII_OPMODE_HW, 0, 0, NULL);
|
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
|
|
|
|
if (err) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "read PHY failed\n");
|
2003-04-20 19:05:33 +00:00
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
2008-05-13 14:00:09 +00:00
|
|
|
if (val && val != 0xffff)
|
2003-06-15 21:45:43 +00:00
|
|
|
sc->axe_phyaddrs[0] = phy;
|
|
|
|
|
2008-03-07 16:55:24 +00:00
|
|
|
return (le16toh(val));
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static int
|
|
|
|
axe_miibus_writereg(device_t dev, int phy, int reg, int val)
|
2003-04-20 19:05:33 +00:00
|
|
|
{
|
2007-06-17 18:46:26 +00:00
|
|
|
struct axe_softc *sc = device_get_softc(dev);
|
2003-04-20 19:05:33 +00:00
|
|
|
usbd_status err;
|
|
|
|
|
|
|
|
if (sc->axe_dying)
|
|
|
|
return(0);
|
|
|
|
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPLOCKASSERT(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_LOCK(sc);
|
|
|
|
axe_cmd(sc, AXE_CMD_MII_OPMODE_SW, 0, 0, NULL);
|
2008-03-07 16:55:24 +00:00
|
|
|
val = htole32(val);
|
2003-04-20 19:05:33 +00:00
|
|
|
err = axe_cmd(sc, AXE_CMD_MII_WRITE_REG, reg, phy, (void *)&val);
|
|
|
|
axe_cmd(sc, AXE_CMD_MII_OPMODE_HW, 0, 0, NULL);
|
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
|
|
|
|
if (err) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "write PHY failed\n");
|
2003-04-20 19:05:33 +00:00
|
|
|
return(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static void
|
|
|
|
axe_miibus_statchg(device_t dev)
|
2003-04-20 19:05:33 +00:00
|
|
|
{
|
2007-06-17 18:46:26 +00:00
|
|
|
struct axe_softc *sc = device_get_softc(dev);
|
2003-04-20 19:05:33 +00:00
|
|
|
struct mii_data *mii = GET_MII(sc);
|
2007-09-25 20:47:24 +00:00
|
|
|
int val, err;
|
|
|
|
|
|
|
|
val = (mii->mii_media_active & IFM_GMASK) == IFM_FDX ?
|
|
|
|
AXE_MEDIA_FULL_DUPLEX : 0;
|
|
|
|
if (sc->axe_flags & (AX178|AX772)) {
|
|
|
|
val |= AXE_178_MEDIA_RX_EN | AXE_178_MEDIA_MAGIC;
|
|
|
|
|
|
|
|
switch (IFM_SUBTYPE(mii->mii_media_active)) {
|
|
|
|
case IFM_1000_T:
|
|
|
|
val |= AXE_178_MEDIA_GMII | AXE_178_MEDIA_ENCK;
|
|
|
|
break;
|
|
|
|
case IFM_100_TX:
|
|
|
|
val |= AXE_178_MEDIA_100TX;
|
|
|
|
break;
|
|
|
|
case IFM_10_T:
|
|
|
|
/* doesn't need to be handled */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
err = axe_cmd(sc, AXE_CMD_WRITE_MEDIA, 0, val, NULL);
|
|
|
|
if (err)
|
|
|
|
device_printf(dev, "media change failed, error %d\n", err);
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set media options.
|
|
|
|
*/
|
2006-09-06 23:44:25 +00:00
|
|
|
static int
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_ifmedia_upd(struct ifnet *ifp)
|
|
|
|
{
|
|
|
|
struct axe_softc *sc = ifp->if_softc;
|
|
|
|
struct mii_data *mii = GET_MII(sc);
|
|
|
|
|
|
|
|
sc->axe_link = 0;
|
|
|
|
if (mii->mii_instance) {
|
|
|
|
struct mii_softc *miisc;
|
|
|
|
LIST_FOREACH(miisc, &mii->mii_phys, mii_list)
|
|
|
|
mii_phy_reset(miisc);
|
|
|
|
}
|
|
|
|
mii_mediachg(mii);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Report current media status.
|
|
|
|
*/
|
2006-09-06 23:44:25 +00:00
|
|
|
static void
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_ifmedia_sts(struct ifnet *ifp, struct ifmediareq *ifmr)
|
|
|
|
{
|
|
|
|
struct axe_softc *sc = ifp->if_softc;
|
|
|
|
struct mii_data *mii = GET_MII(sc);
|
|
|
|
|
|
|
|
mii_pollstat(mii);
|
|
|
|
ifmr->ifm_active = mii->mii_media_active;
|
|
|
|
ifmr->ifm_status = mii->mii_media_status;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static void
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_setmulti(struct axe_softc *sc)
|
|
|
|
{
|
|
|
|
struct ifnet *ifp;
|
|
|
|
struct ifmultiaddr *ifma;
|
|
|
|
u_int32_t h = 0;
|
|
|
|
u_int16_t rxmode;
|
|
|
|
u_int8_t hashtbl[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
|
|
|
|
|
2005-06-10 16:49:24 +00:00
|
|
|
ifp = sc->axe_ifp;
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
AXE_LOCK(sc);
|
|
|
|
axe_cmd(sc, AXE_CMD_RXCTL_READ, 0, 0, (void *)&rxmode);
|
2008-03-07 16:55:24 +00:00
|
|
|
rxmode = le16toh(rxmode);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
if (ifp->if_flags & IFF_ALLMULTI || ifp->if_flags & IFF_PROMISC) {
|
|
|
|
rxmode |= AXE_RXCMD_ALLMULTI;
|
|
|
|
axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, rxmode, NULL);
|
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
return;
|
|
|
|
} else
|
|
|
|
rxmode &= ~AXE_RXCMD_ALLMULTI;
|
|
|
|
|
2005-08-03 00:18:35 +00:00
|
|
|
IF_ADDR_LOCK(ifp);
|
2004-12-08 22:02:58 +00:00
|
|
|
TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link)
|
|
|
|
{
|
2003-04-20 19:05:33 +00:00
|
|
|
if (ifma->ifma_addr->sa_family != AF_LINK)
|
|
|
|
continue;
|
2004-06-09 14:34:04 +00:00
|
|
|
h = ether_crc32_be(LLADDR((struct sockaddr_dl *)
|
|
|
|
ifma->ifma_addr), ETHER_ADDR_LEN) >> 26;
|
2003-04-20 19:05:33 +00:00
|
|
|
hashtbl[h / 8] |= 1 << (h % 8);
|
|
|
|
}
|
2005-08-03 00:18:35 +00:00
|
|
|
IF_ADDR_UNLOCK(ifp);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
axe_cmd(sc, AXE_CMD_WRITE_MCAST, 0, 0, (void *)&hashtbl);
|
|
|
|
axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, rxmode, NULL);
|
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-09-25 20:47:24 +00:00
|
|
|
static void
|
|
|
|
axe_ax88178_init(struct axe_softc *sc)
|
|
|
|
{
|
|
|
|
int gpio0 = 0, phymode = 0;
|
|
|
|
u_int16_t eeprom;
|
|
|
|
|
|
|
|
axe_cmd(sc, AXE_CMD_SROM_WR_ENABLE, 0, 0, NULL);
|
|
|
|
/* XXX magic */
|
|
|
|
axe_cmd(sc, AXE_CMD_SROM_READ, 0, 0x0017, &eeprom);
|
2008-03-07 16:55:24 +00:00
|
|
|
eeprom = le16toh(eeprom);
|
2007-09-25 20:47:24 +00:00
|
|
|
axe_cmd(sc, AXE_CMD_SROM_WR_DISABLE, 0, 0, NULL);
|
|
|
|
|
|
|
|
/* if EEPROM is invalid we have to use to GPIO0 */
|
|
|
|
if (eeprom == 0xffff) {
|
|
|
|
phymode = 0;
|
|
|
|
gpio0 = 1;
|
|
|
|
} else {
|
|
|
|
phymode = eeprom & 7;
|
|
|
|
gpio0 = (eeprom & 0x80) ? 0 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
axe_cmd(sc, AXE_CMD_WRITE_GPIO, 0, 0x008c, NULL);
|
|
|
|
usbd_delay_ms(sc->axe_udev, 40);
|
|
|
|
if ((eeprom >> 8) != 1) {
|
|
|
|
axe_cmd(sc, AXE_CMD_WRITE_GPIO, 0, 0x003c, NULL);
|
|
|
|
usbd_delay_ms(sc->axe_udev, 30);
|
|
|
|
|
|
|
|
axe_cmd(sc, AXE_CMD_WRITE_GPIO, 0, 0x001c, NULL);
|
|
|
|
usbd_delay_ms(sc->axe_udev, 300);
|
|
|
|
|
|
|
|
axe_cmd(sc, AXE_CMD_WRITE_GPIO, 0, 0x003c, NULL);
|
|
|
|
usbd_delay_ms(sc->axe_udev, 30);
|
|
|
|
} else {
|
|
|
|
axe_cmd(sc, AXE_CMD_WRITE_GPIO, 0, 0x0004, NULL);
|
|
|
|
usbd_delay_ms(sc->axe_udev, 30);
|
|
|
|
axe_cmd(sc, AXE_CMD_WRITE_GPIO, 0, 0x000c, NULL);
|
|
|
|
usbd_delay_ms(sc->axe_udev, 30);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* soft reset */
|
|
|
|
axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, 0, NULL);
|
|
|
|
usbd_delay_ms(sc->axe_udev, 150);
|
|
|
|
axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0,
|
|
|
|
AXE_SW_RESET_PRL | AXE_178_RESET_MAGIC, NULL);
|
|
|
|
usbd_delay_ms(sc->axe_udev, 150);
|
|
|
|
axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, 0, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
axe_ax88772_init(struct axe_softc *sc)
|
|
|
|
{
|
|
|
|
axe_cmd(sc, AXE_CMD_WRITE_GPIO, 0, 0x00b0, NULL);
|
|
|
|
usbd_delay_ms(sc->axe_udev, 40);
|
|
|
|
|
|
|
|
if (sc->axe_phyaddrs[1] == AXE_INTPHY) {
|
|
|
|
/* ask for embedded PHY */
|
|
|
|
axe_cmd(sc, AXE_CMD_SW_PHY_SELECT, 0, 0x01, NULL);
|
|
|
|
usbd_delay_ms(sc->axe_udev, 10);
|
|
|
|
|
|
|
|
/* power down and reset state, pin reset state */
|
|
|
|
axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_CLEAR, NULL);
|
|
|
|
usbd_delay_ms(sc->axe_udev, 60);
|
|
|
|
|
|
|
|
/* power down/reset state, pin operating state */
|
|
|
|
axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0,
|
|
|
|
AXE_SW_RESET_IPPD | AXE_SW_RESET_PRL, NULL);
|
|
|
|
usbd_delay_ms(sc->axe_udev, 150);
|
|
|
|
|
|
|
|
/* power up, reset */
|
|
|
|
axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0, AXE_SW_RESET_PRL, NULL);
|
|
|
|
|
|
|
|
/* power up, operating */
|
|
|
|
axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0,
|
|
|
|
AXE_SW_RESET_IPRL | AXE_SW_RESET_PRL, NULL);
|
|
|
|
} else {
|
|
|
|
/* ask for external PHY */
|
|
|
|
axe_cmd(sc, AXE_CMD_SW_PHY_SELECT, 0, 0x00, NULL);
|
|
|
|
usbd_delay_ms(sc->axe_udev, 10);
|
|
|
|
|
|
|
|
/* power down/reset state, pin operating state */
|
|
|
|
axe_cmd(sc, AXE_CMD_SW_RESET_REG, 0,
|
|
|
|
AXE_SW_RESET_IPPD | AXE_SW_RESET_PRL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
usbd_delay_ms(sc->axe_udev, 150);
|
|
|
|
axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, 0, NULL);
|
|
|
|
}
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static void
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_reset(struct axe_softc *sc)
|
|
|
|
{
|
|
|
|
if (sc->axe_dying)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (usbd_set_config_no(sc->axe_udev, AXE_CONFIG_NO, 1) ||
|
2003-06-15 21:45:43 +00:00
|
|
|
usbd_device2interface_handle(sc->axe_udev, AXE_IFACE_IDX,
|
2003-04-20 19:05:33 +00:00
|
|
|
&sc->axe_iface)) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "getting interface handle failed\n");
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait a little while for the chip to get its brains in order. */
|
|
|
|
DELAY(1000);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Probe for a AX88172 chip.
|
|
|
|
*/
|
2007-06-13 05:37:59 +00:00
|
|
|
static int
|
|
|
|
axe_match(device_t self)
|
2003-04-20 19:05:33 +00:00
|
|
|
{
|
2007-06-17 16:24:49 +00:00
|
|
|
struct usb_attach_arg *uaa = device_get_ivars(self);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
if (!uaa->iface)
|
|
|
|
return(UMATCH_NONE);
|
2007-06-30 20:08:08 +00:00
|
|
|
return (axe_lookup(uaa->vendor, uaa->product) != NULL ?
|
|
|
|
UMATCH_VENDOR_PRODUCT : UMATCH_NONE);
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attach the interface. Allocate softc structures, do ifmedia
|
|
|
|
* setup and ethernet/BPF attach.
|
|
|
|
*/
|
2007-06-13 05:37:59 +00:00
|
|
|
static int
|
|
|
|
axe_attach(device_t self)
|
2003-04-20 19:05:33 +00:00
|
|
|
{
|
2007-06-17 18:46:26 +00:00
|
|
|
struct axe_softc *sc = device_get_softc(self);
|
|
|
|
struct usb_attach_arg *uaa = device_get_ivars(self);
|
2007-09-25 20:47:24 +00:00
|
|
|
const struct axe_type *type;
|
2003-04-20 19:05:33 +00:00
|
|
|
u_char eaddr[ETHER_ADDR_LEN];
|
|
|
|
struct ifnet *ifp;
|
|
|
|
usb_interface_descriptor_t *id;
|
|
|
|
usb_endpoint_descriptor_t *ed;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
sc->axe_udev = uaa->device;
|
|
|
|
sc->axe_dev = self;
|
2007-09-25 20:47:24 +00:00
|
|
|
type = axe_lookup(uaa->vendor, uaa->product);
|
|
|
|
if (type != NULL)
|
|
|
|
sc->axe_flags = type->axe_flags;
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
if (usbd_set_config_no(sc->axe_udev, AXE_CONFIG_NO, 1)) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "getting interface handle failed\n");
|
2007-06-12 15:37:19 +00:00
|
|
|
return ENXIO;
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
|
2006-05-27 23:46:13 +00:00
|
|
|
usb_init_task(&sc->axe_tick_task, axe_tick_task, sc);
|
|
|
|
|
2003-06-15 21:45:43 +00:00
|
|
|
if (usbd_device2interface_handle(uaa->device,
|
|
|
|
AXE_IFACE_IDX, &sc->axe_iface)) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "getting interface handle failed\n");
|
2007-06-12 15:37:19 +00:00
|
|
|
return ENXIO;
|
2003-06-15 21:45:43 +00:00
|
|
|
}
|
|
|
|
|
2007-09-25 20:47:24 +00:00
|
|
|
sc->axe_boundary = 64;
|
|
|
|
if (sc->axe_flags & (AX178|AX772)) {
|
|
|
|
if (sc->axe_udev->speed == USB_SPEED_HIGH) {
|
|
|
|
sc->axe_bufsz = AXE_178_MAX_BUFSZ;
|
|
|
|
sc->axe_boundary = 512;
|
|
|
|
} else
|
|
|
|
sc->axe_bufsz = AXE_178_MIN_BUFSZ;
|
|
|
|
} else
|
2007-11-10 16:23:38 +00:00
|
|
|
sc->axe_bufsz = AXE_172_BUFSZ;
|
2007-09-25 20:47:24 +00:00
|
|
|
{ /* XXX debug */
|
|
|
|
device_printf(sc->axe_dev, "%s, bufsz %d, boundary %d\n",
|
|
|
|
sc->axe_flags & AX178 ? "AX88178" :
|
|
|
|
sc->axe_flags & AX772 ? "AX88772" : "AX88172",
|
|
|
|
sc->axe_bufsz, sc->axe_boundary);
|
|
|
|
}
|
|
|
|
|
2003-06-15 21:45:43 +00:00
|
|
|
id = usbd_get_interface_descriptor(sc->axe_iface);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
/* Find endpoints. */
|
|
|
|
for (i = 0; i < id->bNumEndpoints; i++) {
|
2003-06-15 21:45:43 +00:00
|
|
|
ed = usbd_interface2endpoint_descriptor(sc->axe_iface, i);
|
2003-04-20 19:05:33 +00:00
|
|
|
if (!ed) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "couldn't get ep %d\n", i);
|
2007-06-12 15:37:19 +00:00
|
|
|
return ENXIO;
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
|
|
|
|
UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
|
|
|
|
sc->axe_ed[AXE_ENDPT_RX] = ed->bEndpointAddress;
|
|
|
|
} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
|
|
|
|
UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
|
|
|
|
sc->axe_ed[AXE_ENDPT_TX] = ed->bEndpointAddress;
|
|
|
|
} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
|
|
|
|
UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
|
|
|
|
sc->axe_ed[AXE_ENDPT_INTR] = ed->bEndpointAddress;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mtx_init(&sc->axe_mtx, device_get_nameunit(self), MTX_NETWORK_LOCK,
|
|
|
|
MTX_DEF | MTX_RECURSE);
|
2006-06-04 14:42:38 +00:00
|
|
|
sx_init(&sc->axe_sleeplock, device_get_nameunit(self));
|
|
|
|
AXE_SLEEPLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_LOCK(sc);
|
|
|
|
|
2007-09-25 20:47:24 +00:00
|
|
|
/* We need the PHYID for the init dance in some cases */
|
|
|
|
axe_cmd(sc, AXE_CMD_READ_PHYID, 0, 0, (void *)&sc->axe_phyaddrs);
|
|
|
|
|
|
|
|
if (sc->axe_flags & AX178)
|
|
|
|
axe_ax88178_init(sc);
|
|
|
|
else if (sc->axe_flags & AX772)
|
|
|
|
axe_ax88772_init(sc);
|
|
|
|
|
2003-04-20 19:05:33 +00:00
|
|
|
/*
|
|
|
|
* Get station address.
|
|
|
|
*/
|
2007-09-25 20:47:24 +00:00
|
|
|
if (sc->axe_flags & (AX178|AX772))
|
|
|
|
axe_cmd(sc, AXE_178_CMD_READ_NODEID, 0, 0, &eaddr);
|
|
|
|
else
|
|
|
|
axe_cmd(sc, AXE_172_CMD_READ_NODEID, 0, 0, &eaddr);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
/*
|
2007-09-25 20:47:24 +00:00
|
|
|
* Fetch IPG values.
|
2003-04-20 19:05:33 +00:00
|
|
|
*/
|
|
|
|
axe_cmd(sc, AXE_CMD_READ_IPG012, 0, 0, (void *)&sc->axe_ipgs);
|
|
|
|
|
2003-06-15 21:45:43 +00:00
|
|
|
/*
|
|
|
|
* Work around broken adapters that appear to lie about
|
|
|
|
* their PHY addresses.
|
|
|
|
*/
|
|
|
|
sc->axe_phyaddrs[0] = sc->axe_phyaddrs[1] = 0xFF;
|
|
|
|
|
2005-06-10 16:49:24 +00:00
|
|
|
ifp = sc->axe_ifp = if_alloc(IFT_ETHER);
|
|
|
|
if (ifp == NULL) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "can not if_alloc()\n");
|
2005-09-16 09:20:58 +00:00
|
|
|
AXE_UNLOCK(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
|
|
|
sx_destroy(&sc->axe_sleeplock);
|
2005-09-16 09:20:58 +00:00
|
|
|
mtx_destroy(&sc->axe_mtx);
|
2007-06-12 15:37:19 +00:00
|
|
|
return ENXIO;
|
2005-06-10 16:49:24 +00:00
|
|
|
}
|
2003-04-20 19:05:33 +00:00
|
|
|
ifp->if_softc = sc;
|
2007-06-10 07:24:32 +00:00
|
|
|
if_initname(ifp, "axe", device_get_unit(sc->axe_dev));
|
2003-04-20 19:05:33 +00:00
|
|
|
ifp->if_mtu = ETHERMTU;
|
2004-08-11 03:38:55 +00:00
|
|
|
ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST |
|
|
|
|
IFF_NEEDSGIANT;
|
2003-04-20 19:05:33 +00:00
|
|
|
ifp->if_ioctl = axe_ioctl;
|
|
|
|
ifp->if_start = axe_start;
|
|
|
|
ifp->if_watchdog = axe_watchdog;
|
|
|
|
ifp->if_init = axe_init;
|
2007-05-12 05:56:10 +00:00
|
|
|
IFQ_SET_MAXLEN(&ifp->if_snd, IFQ_MAXLEN);
|
|
|
|
ifp->if_snd.ifq_drv_maxlen = IFQ_MAXLEN;
|
|
|
|
IFQ_SET_READY(&ifp->if_snd);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
if (mii_phy_probe(self, &sc->axe_miibus,
|
|
|
|
axe_ifmedia_upd, axe_ifmedia_sts)) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "MII without any PHY!\n");
|
2005-09-16 09:20:58 +00:00
|
|
|
if_free(ifp);
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_UNLOCK(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
|
|
|
sx_destroy(&sc->axe_sleeplock);
|
2003-04-20 19:05:33 +00:00
|
|
|
mtx_destroy(&sc->axe_mtx);
|
2007-06-12 15:37:19 +00:00
|
|
|
return ENXIO;
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Call MI attach routine.
|
|
|
|
*/
|
|
|
|
|
|
|
|
ether_ifattach(ifp, eaddr);
|
|
|
|
callout_handle_init(&sc->axe_stat_ch);
|
|
|
|
usb_register_netisr();
|
|
|
|
|
|
|
|
sc->axe_dying = 0;
|
|
|
|
|
|
|
|
AXE_UNLOCK(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
2007-06-12 15:37:19 +00:00
|
|
|
return 0;
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static int
|
|
|
|
axe_detach(device_t dev)
|
2003-04-20 19:05:33 +00:00
|
|
|
{
|
|
|
|
struct axe_softc *sc;
|
|
|
|
struct ifnet *ifp;
|
|
|
|
|
|
|
|
sc = device_get_softc(dev);
|
|
|
|
AXE_LOCK(sc);
|
2005-06-10 16:49:24 +00:00
|
|
|
ifp = sc->axe_ifp;
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
sc->axe_dying = 1;
|
|
|
|
untimeout(axe_tick, sc, sc->axe_stat_ch);
|
2006-05-27 23:46:13 +00:00
|
|
|
usb_rem_task(sc->axe_udev, &sc->axe_tick_task);
|
|
|
|
|
2003-04-20 19:05:33 +00:00
|
|
|
ether_ifdetach(ifp);
|
2005-09-16 09:20:58 +00:00
|
|
|
if_free(ifp);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
if (sc->axe_ep[AXE_ENDPT_TX] != NULL)
|
|
|
|
usbd_abort_pipe(sc->axe_ep[AXE_ENDPT_TX]);
|
|
|
|
if (sc->axe_ep[AXE_ENDPT_RX] != NULL)
|
|
|
|
usbd_abort_pipe(sc->axe_ep[AXE_ENDPT_RX]);
|
|
|
|
if (sc->axe_ep[AXE_ENDPT_INTR] != NULL)
|
|
|
|
usbd_abort_pipe(sc->axe_ep[AXE_ENDPT_INTR]);
|
|
|
|
|
|
|
|
AXE_UNLOCK(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
sx_destroy(&sc->axe_sleeplock);
|
2003-04-20 19:05:33 +00:00
|
|
|
mtx_destroy(&sc->axe_mtx);
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
static int
|
|
|
|
axe_rx_list_init(struct axe_softc *sc)
|
|
|
|
{
|
|
|
|
struct axe_cdata *cd;
|
|
|
|
struct axe_chain *c;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
cd = &sc->axe_cdata;
|
|
|
|
for (i = 0; i < AXE_RX_LIST_CNT; i++) {
|
|
|
|
c = &cd->axe_rx_chain[i];
|
|
|
|
c->axe_sc = sc;
|
|
|
|
c->axe_idx = i;
|
|
|
|
c->axe_mbuf = NULL;
|
|
|
|
if (c->axe_xfer == NULL) {
|
|
|
|
c->axe_xfer = usbd_alloc_xfer(sc->axe_udev);
|
|
|
|
if (c->axe_xfer == NULL)
|
|
|
|
return (ENOBUFS);
|
|
|
|
c->axe_buf = usbd_alloc_buffer(c->axe_xfer,
|
|
|
|
sc->axe_bufsz);
|
|
|
|
if (c->axe_buf == NULL) {
|
|
|
|
usbd_free_xfer(c->axe_xfer);
|
|
|
|
return (ENOBUFS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static void
|
2007-11-10 16:23:38 +00:00
|
|
|
axe_rx_list_free(struct axe_softc *sc)
|
2003-04-20 19:05:33 +00:00
|
|
|
{
|
2007-11-10 16:23:38 +00:00
|
|
|
int i;
|
2003-04-20 19:05:33 +00:00
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
for (i = 0; i < AXE_RX_LIST_CNT; i++) {
|
|
|
|
if (sc->axe_cdata.axe_rx_chain[i].axe_mbuf != NULL) {
|
|
|
|
m_freem(sc->axe_cdata.axe_rx_chain[i].axe_mbuf);
|
|
|
|
sc->axe_cdata.axe_rx_chain[i].axe_mbuf = NULL;
|
|
|
|
}
|
|
|
|
if (sc->axe_cdata.axe_rx_chain[i].axe_xfer != NULL) {
|
|
|
|
usbd_free_xfer(sc->axe_cdata.axe_rx_chain[i].axe_xfer);
|
|
|
|
sc->axe_cdata.axe_rx_chain[i].axe_xfer = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-04-20 19:05:33 +00:00
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
static int
|
|
|
|
axe_tx_list_init(struct axe_softc *sc)
|
|
|
|
{
|
|
|
|
struct axe_cdata *cd;
|
|
|
|
struct axe_chain *c;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
cd = &sc->axe_cdata;
|
|
|
|
for (i = 0; i < AXE_TX_LIST_CNT; i++) {
|
|
|
|
c = &cd->axe_tx_chain[i];
|
|
|
|
c->axe_sc = sc;
|
|
|
|
c->axe_idx = i;
|
|
|
|
c->axe_mbuf = NULL;
|
|
|
|
if (c->axe_xfer == NULL) {
|
|
|
|
c->axe_xfer = usbd_alloc_xfer(sc->axe_udev);
|
|
|
|
if (c->axe_xfer == NULL)
|
|
|
|
return (ENOBUFS);
|
|
|
|
c->axe_buf = usbd_alloc_buffer(c->axe_xfer,
|
|
|
|
sc->axe_bufsz);
|
|
|
|
if (c->axe_buf == NULL) {
|
|
|
|
usbd_free_xfer(c->axe_xfer);
|
|
|
|
return (ENOBUFS);
|
|
|
|
}
|
|
|
|
}
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
return (0);
|
|
|
|
}
|
2003-04-20 19:05:33 +00:00
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
static void
|
|
|
|
axe_tx_list_free(struct axe_softc *sc)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Free TX resources. */
|
|
|
|
for (i = 0; i < AXE_TX_LIST_CNT; i++) {
|
|
|
|
if (sc->axe_cdata.axe_tx_chain[i].axe_mbuf != NULL) {
|
|
|
|
m_freem(sc->axe_cdata.axe_tx_chain[i].axe_mbuf);
|
|
|
|
sc->axe_cdata.axe_tx_chain[i].axe_mbuf = NULL;
|
|
|
|
}
|
|
|
|
if (sc->axe_cdata.axe_tx_chain[i].axe_xfer != NULL) {
|
|
|
|
usbd_free_xfer(sc->axe_cdata.axe_tx_chain[i].axe_xfer);
|
|
|
|
sc->axe_cdata.axe_tx_chain[i].axe_xfer = NULL;
|
|
|
|
}
|
|
|
|
}
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A frame has been uploaded: pass the resulting mbuf chain up to
|
|
|
|
* the higher level protocols.
|
|
|
|
*/
|
2006-09-06 23:44:25 +00:00
|
|
|
static void
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_rxeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
|
|
|
|
{
|
|
|
|
struct axe_softc *sc;
|
2007-11-10 16:23:38 +00:00
|
|
|
struct axe_chain *c = (struct axe_chain *) priv;
|
2003-04-20 19:05:33 +00:00
|
|
|
struct mbuf *m;
|
2007-11-10 16:23:38 +00:00
|
|
|
u_char *buf;
|
2003-04-20 19:05:33 +00:00
|
|
|
struct ifnet *ifp;
|
2007-11-10 16:23:38 +00:00
|
|
|
struct axe_sframe_hdr *hdr;
|
|
|
|
int total_len = 0;
|
|
|
|
int pktlen = 0;
|
2003-04-20 19:05:33 +00:00
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
sc = c->axe_sc;
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_LOCK(sc);
|
2005-06-10 16:49:24 +00:00
|
|
|
ifp = sc->axe_ifp;
|
2003-04-20 19:05:33 +00:00
|
|
|
|
2005-08-09 10:20:02 +00:00
|
|
|
if (!(ifp->if_drv_flags & IFF_DRV_RUNNING)) {
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status != USBD_NORMAL_COMPLETION) {
|
|
|
|
if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
|
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (usbd_ratecheck(&sc->axe_rx_notice))
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "usb error on rx: %s\n",
|
2003-04-20 19:05:33 +00:00
|
|
|
usbd_errstr(status));
|
|
|
|
if (status == USBD_STALLED)
|
|
|
|
usbd_clear_endpoint_stall(sc->axe_ep[AXE_ENDPT_RX]);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
usbd_get_xfer_status(xfer, NULL, NULL, &total_len, NULL);
|
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
buf = c->axe_buf;
|
2003-04-20 19:05:33 +00:00
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
do {
|
|
|
|
if (sc->axe_flags & (AX178|AX772)) {
|
|
|
|
if (total_len < sizeof(struct axe_sframe_hdr)) {
|
|
|
|
ifp->if_ierrors++;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if ((pktlen % 2) != 0)
|
|
|
|
pktlen++;
|
|
|
|
buf += pktlen;
|
|
|
|
|
|
|
|
hdr = (struct axe_sframe_hdr *) buf;
|
|
|
|
total_len -= sizeof(struct axe_sframe_hdr);
|
|
|
|
if ((hdr->len ^ hdr->ilen) != 0xffff) {
|
|
|
|
ifp->if_ierrors++;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
pktlen = le16toh(hdr->len);
|
|
|
|
if (pktlen > total_len) {
|
|
|
|
ifp->if_ierrors++;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
buf += sizeof(struct axe_sframe_hdr);
|
|
|
|
total_len -= pktlen + (pktlen % 2);
|
|
|
|
} else {
|
|
|
|
pktlen = total_len;
|
|
|
|
total_len = 0;
|
2007-09-25 20:47:24 +00:00
|
|
|
}
|
2007-11-10 16:23:38 +00:00
|
|
|
|
|
|
|
if (pktlen < sizeof(struct ether_header)) {
|
2007-09-25 20:47:24 +00:00
|
|
|
ifp->if_ierrors++;
|
|
|
|
goto done;
|
|
|
|
}
|
2007-11-10 16:23:38 +00:00
|
|
|
m = m_getcl(M_DONTWAIT, MT_DATA, M_PKTHDR);
|
|
|
|
if (m == NULL) {
|
2007-09-25 20:47:24 +00:00
|
|
|
ifp->if_ierrors++;
|
|
|
|
goto done;
|
|
|
|
}
|
2007-11-10 16:23:38 +00:00
|
|
|
m->m_data += ETHER_ALIGN;
|
|
|
|
memcpy(mtod(m, void *), buf, pktlen);
|
|
|
|
m->m_pkthdr.len = m->m_len = pktlen;
|
|
|
|
m->m_pkthdr.rcvif = ifp;
|
|
|
|
|
|
|
|
ifp->if_input(ifp, m);
|
|
|
|
ifp->if_ipackets++;
|
|
|
|
} while (total_len > 0);
|
|
|
|
/* fall thru... */
|
2003-04-20 19:05:33 +00:00
|
|
|
done:
|
|
|
|
/* Setup new transfer. */
|
2007-11-10 16:23:38 +00:00
|
|
|
usbd_setup_xfer(xfer, sc->axe_ep[AXE_ENDPT_RX],
|
|
|
|
c, c->axe_buf, sc->axe_bufsz, USBD_SHORT_XFER_OK | USBD_NO_COPY,
|
2003-04-20 19:05:33 +00:00
|
|
|
USBD_NO_TIMEOUT, axe_rxeof);
|
2007-11-10 16:23:38 +00:00
|
|
|
usbd_transfer(xfer);
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A frame was downloaded to the chip. It's safe for us to clean up
|
|
|
|
* the list buffers.
|
|
|
|
*/
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static void
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_txeof(usbd_xfer_handle xfer, usbd_private_handle priv, usbd_status status)
|
|
|
|
{
|
|
|
|
struct axe_softc *sc;
|
2007-11-10 16:23:38 +00:00
|
|
|
struct axe_chain *c;
|
2003-04-20 19:05:33 +00:00
|
|
|
struct ifnet *ifp;
|
|
|
|
usbd_status err;
|
|
|
|
|
|
|
|
c = priv;
|
2007-11-10 16:23:38 +00:00
|
|
|
sc = c->axe_sc;
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_LOCK(sc);
|
2005-06-10 16:49:24 +00:00
|
|
|
ifp = sc->axe_ifp;
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
if (status != USBD_NORMAL_COMPLETION) {
|
|
|
|
if (status == USBD_NOT_STARTED || status == USBD_CANCELLED) {
|
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
return;
|
|
|
|
}
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "usb error on tx: %s\n",
|
2003-04-20 19:05:33 +00:00
|
|
|
usbd_errstr(status));
|
|
|
|
if (status == USBD_STALLED)
|
|
|
|
usbd_clear_endpoint_stall(sc->axe_ep[AXE_ENDPT_TX]);
|
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ifp->if_timer = 0;
|
2005-08-09 10:20:02 +00:00
|
|
|
ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
|
2007-11-10 16:23:38 +00:00
|
|
|
usbd_get_xfer_status(c->axe_xfer, NULL, NULL, NULL, &err);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
if (c->axe_mbuf != NULL) {
|
|
|
|
m_freem(c->axe_mbuf);
|
|
|
|
c->axe_mbuf = NULL;
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (err)
|
|
|
|
ifp->if_oerrors++;
|
|
|
|
else
|
|
|
|
ifp->if_opackets++;
|
|
|
|
|
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
|
|
|
|
axe_start(ifp);
|
|
|
|
|
2003-04-20 19:05:33 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static void
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_tick(void *xsc)
|
2006-05-27 23:46:13 +00:00
|
|
|
{
|
|
|
|
struct axe_softc *sc = xsc;
|
|
|
|
|
|
|
|
if (sc == NULL)
|
|
|
|
return;
|
|
|
|
if (sc->axe_dying)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Perform periodic stuff in process context */
|
2006-10-19 01:15:58 +00:00
|
|
|
usb_add_task(sc->axe_udev, &sc->axe_tick_task, USB_TASKQ_DRIVER);
|
2006-05-27 23:46:13 +00:00
|
|
|
}
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static void
|
2006-05-27 23:46:13 +00:00
|
|
|
axe_tick_task(void *xsc)
|
2003-04-20 19:05:33 +00:00
|
|
|
{
|
|
|
|
struct axe_softc *sc;
|
|
|
|
struct ifnet *ifp;
|
|
|
|
struct mii_data *mii;
|
|
|
|
|
|
|
|
sc = xsc;
|
|
|
|
|
|
|
|
if (sc == NULL)
|
|
|
|
return;
|
|
|
|
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_LOCK(sc);
|
|
|
|
|
2005-06-10 16:49:24 +00:00
|
|
|
ifp = sc->axe_ifp;
|
2003-04-20 19:05:33 +00:00
|
|
|
mii = GET_MII(sc);
|
|
|
|
if (mii == NULL) {
|
|
|
|
AXE_UNLOCK(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mii_tick(mii);
|
|
|
|
if (!sc->axe_link && mii->mii_media_status & IFM_ACTIVE &&
|
|
|
|
IFM_SUBTYPE(mii->mii_media_active) != IFM_NONE) {
|
|
|
|
sc->axe_link++;
|
2007-05-12 05:56:10 +00:00
|
|
|
if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_start(ifp);
|
|
|
|
}
|
|
|
|
|
|
|
|
sc->axe_stat_ch = timeout(axe_tick, sc, hz);
|
|
|
|
|
|
|
|
AXE_UNLOCK(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static int
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_encap(struct axe_softc *sc, struct mbuf *m, int idx)
|
|
|
|
{
|
2007-11-10 16:23:38 +00:00
|
|
|
struct axe_chain *c;
|
2003-04-20 19:05:33 +00:00
|
|
|
usbd_status err;
|
2007-09-25 20:47:24 +00:00
|
|
|
struct axe_sframe_hdr hdr;
|
|
|
|
int length;
|
2003-04-20 19:05:33 +00:00
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
c = &sc->axe_cdata.axe_tx_chain[idx];
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy the mbuf data into a contiguous buffer, leaving two
|
|
|
|
* bytes at the beginning to hold the frame length.
|
|
|
|
*/
|
2007-09-25 20:47:24 +00:00
|
|
|
if (sc->axe_flags & (AX178|AX772)) {
|
|
|
|
hdr.len = htole16(m->m_pkthdr.len);
|
|
|
|
hdr.ilen = ~hdr.len;
|
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
memcpy(c->axe_buf, &hdr, sizeof(hdr));
|
2007-09-25 20:47:24 +00:00
|
|
|
length = sizeof(hdr);
|
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
m_copydata(m, 0, m->m_pkthdr.len, c->axe_buf + length);
|
2007-09-25 20:47:24 +00:00
|
|
|
length += m->m_pkthdr.len;
|
|
|
|
|
|
|
|
if ((length % sc->axe_boundary) == 0) {
|
|
|
|
hdr.len = 0;
|
|
|
|
hdr.ilen = 0xffff;
|
2007-11-10 16:23:38 +00:00
|
|
|
memcpy(c->axe_buf + length, &hdr, sizeof(hdr));
|
2007-09-25 20:47:24 +00:00
|
|
|
length += sizeof(hdr);
|
|
|
|
}
|
|
|
|
} else {
|
2007-11-10 16:23:38 +00:00
|
|
|
m_copydata(m, 0, m->m_pkthdr.len, c->axe_buf);
|
2007-09-25 20:47:24 +00:00
|
|
|
length = m->m_pkthdr.len;
|
|
|
|
}
|
2007-11-10 16:23:38 +00:00
|
|
|
c->axe_mbuf = m;
|
2003-04-20 19:05:33 +00:00
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
usbd_setup_xfer(c->axe_xfer, sc->axe_ep[AXE_ENDPT_TX],
|
|
|
|
c, c->axe_buf, length, USBD_FORCE_SHORT_XFER, 10000, axe_txeof);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
/* Transmit */
|
2007-11-10 16:23:38 +00:00
|
|
|
err = usbd_transfer(c->axe_xfer);
|
2003-04-20 19:05:33 +00:00
|
|
|
if (err != USBD_IN_PROGRESS) {
|
2006-06-04 14:42:38 +00:00
|
|
|
/* XXX probably don't want to sleep here */
|
|
|
|
AXE_SLEEPLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_stop(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
return(EIO);
|
|
|
|
}
|
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
sc->axe_cdata.axe_tx_cnt++;
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static void
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_start(struct ifnet *ifp)
|
|
|
|
{
|
|
|
|
struct axe_softc *sc;
|
|
|
|
struct mbuf *m_head = NULL;
|
|
|
|
|
|
|
|
sc = ifp->if_softc;
|
|
|
|
AXE_LOCK(sc);
|
|
|
|
|
|
|
|
if (!sc->axe_link) {
|
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-08-09 10:20:02 +00:00
|
|
|
if (ifp->if_drv_flags & IFF_DRV_OACTIVE) {
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-05-12 05:56:10 +00:00
|
|
|
IFQ_DRV_DEQUEUE(&ifp->if_snd, m_head);
|
2003-04-20 19:05:33 +00:00
|
|
|
if (m_head == NULL) {
|
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (axe_encap(sc, m_head, 0)) {
|
2007-05-12 05:56:10 +00:00
|
|
|
IFQ_DRV_PREPEND(&ifp->if_snd, m_head);
|
2005-08-09 10:20:02 +00:00
|
|
|
ifp->if_drv_flags |= IFF_DRV_OACTIVE;
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If there's a BPF listener, bounce a copy of this frame
|
|
|
|
* to him.
|
|
|
|
*/
|
|
|
|
BPF_MTAP(ifp, m_head);
|
|
|
|
|
2005-08-09 10:20:02 +00:00
|
|
|
ifp->if_drv_flags |= IFF_DRV_OACTIVE;
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set a timeout in case the chip goes out to lunch.
|
|
|
|
*/
|
|
|
|
ifp->if_timer = 5;
|
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static void
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_init(void *xsc)
|
|
|
|
{
|
|
|
|
struct axe_softc *sc = xsc;
|
2005-06-10 16:49:24 +00:00
|
|
|
struct ifnet *ifp = sc->axe_ifp;
|
2007-11-10 16:23:38 +00:00
|
|
|
struct axe_chain *c;
|
2003-04-20 19:05:33 +00:00
|
|
|
usbd_status err;
|
|
|
|
int i;
|
|
|
|
int rxmode;
|
|
|
|
|
2005-08-09 10:20:02 +00:00
|
|
|
if (ifp->if_drv_flags & IFF_DRV_RUNNING)
|
2003-04-20 19:05:33 +00:00
|
|
|
return;
|
|
|
|
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_LOCK(sc);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cancel pending I/O and free all RX/TX buffers.
|
|
|
|
*/
|
2003-07-04 01:50:39 +00:00
|
|
|
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_reset(sc);
|
|
|
|
|
|
|
|
#ifdef notdef
|
|
|
|
/* Set MAC address */
|
2005-11-11 16:04:59 +00:00
|
|
|
axe_mac(sc, IF_LLADDR(sc->axe_ifp), 1);
|
2003-04-20 19:05:33 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Enable RX logic. */
|
|
|
|
|
|
|
|
/* Init TX ring. */
|
2007-11-10 16:23:38 +00:00
|
|
|
if (axe_tx_list_init(sc) == ENOBUFS) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "tx list init failed\n");
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_UNLOCK(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Init RX ring. */
|
2007-11-10 16:23:38 +00:00
|
|
|
if (axe_rx_list_init(sc) == ENOBUFS) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "rx list init failed\n");
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_UNLOCK(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set transmitter IPG values */
|
2007-09-25 20:47:24 +00:00
|
|
|
if (sc->axe_flags & (AX178|AX772)) {
|
|
|
|
axe_cmd(sc, AXE_178_CMD_WRITE_IPG012, sc->axe_ipgs[2],
|
|
|
|
(sc->axe_ipgs[1]<<8) | sc->axe_ipgs[0], NULL);
|
|
|
|
} else {
|
|
|
|
axe_cmd(sc, AXE_172_CMD_WRITE_IPG0, 0, sc->axe_ipgs[0], NULL);
|
|
|
|
axe_cmd(sc, AXE_172_CMD_WRITE_IPG1, 0, sc->axe_ipgs[1], NULL);
|
|
|
|
axe_cmd(sc, AXE_172_CMD_WRITE_IPG2, 0, sc->axe_ipgs[2], NULL);
|
|
|
|
}
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
/* Enable receiver, set RX mode */
|
2007-09-25 20:47:24 +00:00
|
|
|
rxmode = AXE_RXCMD_MULTICAST|AXE_RXCMD_ENABLE;
|
|
|
|
if (sc->axe_flags & (AX178|AX772)) {
|
|
|
|
if (sc->axe_bufsz == AXE_178_MAX_BUFSZ)
|
2007-11-10 16:23:38 +00:00
|
|
|
rxmode |= AXE_178_RXCMD_MFB;
|
2007-09-25 20:47:24 +00:00
|
|
|
} else
|
|
|
|
rxmode |= AXE_172_RXCMD_UNICAST;
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
/* If we want promiscuous mode, set the allframes bit. */
|
|
|
|
if (ifp->if_flags & IFF_PROMISC)
|
|
|
|
rxmode |= AXE_RXCMD_PROMISC;
|
|
|
|
|
|
|
|
if (ifp->if_flags & IFF_BROADCAST)
|
|
|
|
rxmode |= AXE_RXCMD_BROADCAST;
|
|
|
|
|
|
|
|
axe_cmd(sc, AXE_CMD_RXCTL_WRITE, 0, rxmode, NULL);
|
|
|
|
|
|
|
|
/* Load the multicast filter. */
|
|
|
|
axe_setmulti(sc);
|
|
|
|
|
|
|
|
/* Open RX and TX pipes. */
|
|
|
|
err = usbd_open_pipe(sc->axe_iface, sc->axe_ed[AXE_ENDPT_RX],
|
|
|
|
USBD_EXCLUSIVE_USE, &sc->axe_ep[AXE_ENDPT_RX]);
|
|
|
|
if (err) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "open rx pipe failed: %s\n",
|
|
|
|
usbd_errstr(err));
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_UNLOCK(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = usbd_open_pipe(sc->axe_iface, sc->axe_ed[AXE_ENDPT_TX],
|
|
|
|
USBD_EXCLUSIVE_USE, &sc->axe_ep[AXE_ENDPT_TX]);
|
|
|
|
if (err) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "open tx pipe failed: %s\n",
|
|
|
|
usbd_errstr(err));
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_UNLOCK(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start up the receive pipe. */
|
2007-11-10 16:23:38 +00:00
|
|
|
for (i = 0; i < AXE_RX_LIST_CNT; i++) {
|
|
|
|
c = &sc->axe_cdata.axe_rx_chain[i];
|
|
|
|
usbd_setup_xfer(c->axe_xfer, sc->axe_ep[AXE_ENDPT_RX],
|
|
|
|
c, c->axe_buf, sc->axe_bufsz,
|
|
|
|
USBD_SHORT_XFER_OK | USBD_NO_COPY,
|
|
|
|
USBD_NO_TIMEOUT, axe_rxeof);
|
|
|
|
usbd_transfer(c->axe_xfer);
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
|
2005-08-09 10:20:02 +00:00
|
|
|
ifp->if_drv_flags |= IFF_DRV_RUNNING;
|
|
|
|
ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
AXE_UNLOCK(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
sc->axe_stat_ch = timeout(axe_tick, sc, hz);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static int
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_ioctl(struct ifnet *ifp, u_long command, caddr_t data)
|
|
|
|
{
|
|
|
|
struct axe_softc *sc = ifp->if_softc;
|
|
|
|
struct ifreq *ifr = (struct ifreq *)data;
|
|
|
|
struct mii_data *mii;
|
|
|
|
u_int16_t rxmode;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
switch(command) {
|
|
|
|
case SIOCSIFFLAGS:
|
|
|
|
if (ifp->if_flags & IFF_UP) {
|
2005-08-09 10:20:02 +00:00
|
|
|
if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
|
2003-04-20 19:05:33 +00:00
|
|
|
ifp->if_flags & IFF_PROMISC &&
|
|
|
|
!(sc->axe_if_flags & IFF_PROMISC)) {
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_LOCK(sc);
|
|
|
|
axe_cmd(sc, AXE_CMD_RXCTL_READ,
|
|
|
|
0, 0, (void *)&rxmode);
|
2008-03-07 16:55:24 +00:00
|
|
|
rxmode = le16toh(rxmode);
|
2003-04-20 19:05:33 +00:00
|
|
|
rxmode |= AXE_RXCMD_PROMISC;
|
|
|
|
axe_cmd(sc, AXE_CMD_RXCTL_WRITE,
|
|
|
|
0, rxmode, NULL);
|
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
axe_setmulti(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
2005-08-09 10:20:02 +00:00
|
|
|
} else if (ifp->if_drv_flags & IFF_DRV_RUNNING &&
|
2003-04-20 19:05:33 +00:00
|
|
|
!(ifp->if_flags & IFF_PROMISC) &&
|
|
|
|
sc->axe_if_flags & IFF_PROMISC) {
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_LOCK(sc);
|
|
|
|
axe_cmd(sc, AXE_CMD_RXCTL_READ,
|
|
|
|
0, 0, (void *)&rxmode);
|
2008-03-07 16:55:24 +00:00
|
|
|
rxmode = le16toh(rxmode);
|
2003-04-20 19:05:33 +00:00
|
|
|
rxmode &= ~AXE_RXCMD_PROMISC;
|
|
|
|
axe_cmd(sc, AXE_CMD_RXCTL_WRITE,
|
|
|
|
0, rxmode, NULL);
|
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
axe_setmulti(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
2005-08-09 10:20:02 +00:00
|
|
|
} else if (!(ifp->if_drv_flags & IFF_DRV_RUNNING))
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_init(sc);
|
|
|
|
} else {
|
2006-06-04 14:42:38 +00:00
|
|
|
if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
|
|
|
|
AXE_SLEEPLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_stop(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
|
|
|
}
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
sc->axe_if_flags = ifp->if_flags;
|
|
|
|
error = 0;
|
|
|
|
break;
|
|
|
|
case SIOCADDMULTI:
|
|
|
|
case SIOCDELMULTI:
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_setmulti(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
error = 0;
|
|
|
|
break;
|
|
|
|
case SIOCGIFMEDIA:
|
|
|
|
case SIOCSIFMEDIA:
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
mii = GET_MII(sc);
|
|
|
|
error = ifmedia_ioctl(ifp, ifr, &mii->mii_media, command);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
error = ether_ioctl(ifp, command, data);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return(error);
|
|
|
|
}
|
|
|
|
|
2006-09-06 23:44:25 +00:00
|
|
|
static void
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_watchdog(struct ifnet *ifp)
|
|
|
|
{
|
|
|
|
struct axe_softc *sc;
|
2007-11-10 16:23:38 +00:00
|
|
|
struct axe_chain *c;
|
2003-04-20 19:05:33 +00:00
|
|
|
usbd_status stat;
|
|
|
|
|
|
|
|
sc = ifp->if_softc;
|
|
|
|
AXE_LOCK(sc);
|
|
|
|
|
|
|
|
ifp->if_oerrors++;
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "watchdog timeout\n");
|
2003-04-20 19:05:33 +00:00
|
|
|
|
2007-11-10 16:23:38 +00:00
|
|
|
c = &sc->axe_cdata.axe_tx_chain[0];
|
|
|
|
usbd_get_xfer_status(c->axe_xfer, NULL, NULL, NULL, &stat);
|
|
|
|
axe_txeof(c->axe_xfer, c, stat);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
|
2007-05-12 05:56:10 +00:00
|
|
|
if (!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_start(ifp);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Stop the adapter and free any mbufs allocated to the
|
|
|
|
* RX and TX lists.
|
|
|
|
*/
|
2006-09-06 23:44:25 +00:00
|
|
|
static void
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_stop(struct axe_softc *sc)
|
|
|
|
{
|
|
|
|
usbd_status err;
|
|
|
|
struct ifnet *ifp;
|
|
|
|
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPLOCKASSERT(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
AXE_LOCK(sc);
|
|
|
|
|
2005-06-10 16:49:24 +00:00
|
|
|
ifp = sc->axe_ifp;
|
2003-04-20 19:05:33 +00:00
|
|
|
ifp->if_timer = 0;
|
|
|
|
|
|
|
|
untimeout(axe_tick, sc, sc->axe_stat_ch);
|
|
|
|
|
|
|
|
/* Stop transfers. */
|
|
|
|
if (sc->axe_ep[AXE_ENDPT_RX] != NULL) {
|
|
|
|
err = usbd_abort_pipe(sc->axe_ep[AXE_ENDPT_RX]);
|
|
|
|
if (err) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "abort rx pipe failed: %s\n",
|
|
|
|
usbd_errstr(err));
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
err = usbd_close_pipe(sc->axe_ep[AXE_ENDPT_RX]);
|
|
|
|
if (err) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "close rx pipe failed: %s\n",
|
|
|
|
usbd_errstr(err));
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
sc->axe_ep[AXE_ENDPT_RX] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc->axe_ep[AXE_ENDPT_TX] != NULL) {
|
|
|
|
err = usbd_abort_pipe(sc->axe_ep[AXE_ENDPT_TX]);
|
|
|
|
if (err) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "abort tx pipe failed: %s\n",
|
|
|
|
usbd_errstr(err));
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
err = usbd_close_pipe(sc->axe_ep[AXE_ENDPT_TX]);
|
|
|
|
if (err) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev, "close tx pipe failed: %s\n",
|
|
|
|
usbd_errstr(err));
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
sc->axe_ep[AXE_ENDPT_TX] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc->axe_ep[AXE_ENDPT_INTR] != NULL) {
|
|
|
|
err = usbd_abort_pipe(sc->axe_ep[AXE_ENDPT_INTR]);
|
|
|
|
if (err) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev,
|
|
|
|
"abort intr pipe failed: %s\n", usbd_errstr(err));
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
err = usbd_close_pipe(sc->axe_ep[AXE_ENDPT_INTR]);
|
|
|
|
if (err) {
|
2007-06-10 07:24:32 +00:00
|
|
|
device_printf(sc->axe_dev,
|
|
|
|
"close intr pipe failed: %s\n", usbd_errstr(err));
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|
|
|
|
sc->axe_ep[AXE_ENDPT_INTR] = NULL;
|
|
|
|
}
|
|
|
|
|
2004-05-29 15:21:33 +00:00
|
|
|
axe_reset(sc);
|
|
|
|
|
2003-04-20 19:05:33 +00:00
|
|
|
/* Free RX resources. */
|
2007-11-10 16:23:38 +00:00
|
|
|
axe_rx_list_free(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
/* Free TX resources. */
|
2007-11-10 16:23:38 +00:00
|
|
|
axe_tx_list_free(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
2005-08-09 10:20:02 +00:00
|
|
|
ifp->if_drv_flags &= ~(IFF_DRV_RUNNING | IFF_DRV_OACTIVE);
|
2003-04-20 19:05:33 +00:00
|
|
|
sc->axe_link = 0;
|
|
|
|
AXE_UNLOCK(sc);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Stop all chip I/O so that the kernel's probe routines don't
|
|
|
|
* get confused by errant DMAs when rebooting.
|
|
|
|
*/
|
2007-06-18 22:25:46 +00:00
|
|
|
static int
|
2006-09-06 23:44:25 +00:00
|
|
|
axe_shutdown(device_t dev)
|
2003-04-20 19:05:33 +00:00
|
|
|
{
|
|
|
|
struct axe_softc *sc;
|
|
|
|
|
|
|
|
sc = device_get_softc(dev);
|
|
|
|
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
axe_stop(sc);
|
2006-06-04 14:42:38 +00:00
|
|
|
AXE_SLEEPUNLOCK(sc);
|
2003-04-20 19:05:33 +00:00
|
|
|
|
2007-06-18 22:25:46 +00:00
|
|
|
return (0);
|
2003-04-20 19:05:33 +00:00
|
|
|
}
|