enable asix host driver
This commit is contained in:
773
class/vendor/usbh_asix.c
vendored
Normal file
773
class/vendor/usbh_asix.c
vendored
Normal file
@@ -0,0 +1,773 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2024, sakumisu
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*/
|
||||||
|
#include "usbh_core.h"
|
||||||
|
#include "usbh_asix.h"
|
||||||
|
#include "usb_cdc.h"
|
||||||
|
|
||||||
|
#undef USB_DBG_TAG
|
||||||
|
#define USB_DBG_TAG "asix"
|
||||||
|
#include "usb_log.h"
|
||||||
|
|
||||||
|
#define DEV_FORMAT "/dev/asix"
|
||||||
|
|
||||||
|
static struct usbh_asix g_asix_class;
|
||||||
|
#define CONFIG_USBHOST_ASIX_ETH_MAX_SEGSZE (1514U + 8)
|
||||||
|
|
||||||
|
static USB_NOCACHE_RAM_SECTION USB_MEM_ALIGNX uint8_t g_asix_rx_buffer[CONFIG_USBHOST_ASIX_ETH_MAX_SEGSZE];
|
||||||
|
static USB_NOCACHE_RAM_SECTION USB_MEM_ALIGNX uint8_t g_asix_tx_buffer[CONFIG_USBHOST_ASIX_ETH_MAX_SEGSZE];
|
||||||
|
static USB_NOCACHE_RAM_SECTION USB_MEM_ALIGNX uint8_t g_asix_inttx_buffer[16];
|
||||||
|
USB_NOCACHE_RAM_SECTION USB_MEM_ALIGNX uint8_t g_asix_buf[32];
|
||||||
|
|
||||||
|
#define ETH_ALEN 6
|
||||||
|
|
||||||
|
#define PHY_MODE_MARVELL 0x0000
|
||||||
|
#define MII_MARVELL_LED_CTRL 0x0018
|
||||||
|
#define MII_MARVELL_STATUS 0x001b
|
||||||
|
#define MII_MARVELL_CTRL 0x0014
|
||||||
|
|
||||||
|
#define MARVELL_LED_MANUAL 0x0019
|
||||||
|
|
||||||
|
#define MARVELL_STATUS_HWCFG 0x0004
|
||||||
|
|
||||||
|
#define MARVELL_CTRL_TXDELAY 0x0002
|
||||||
|
#define MARVELL_CTRL_RXDELAY 0x0080
|
||||||
|
|
||||||
|
#define PHY_MODE_RTL8211CL 0x000C
|
||||||
|
|
||||||
|
#define AX88772A_PHY14H 0x14
|
||||||
|
#define AX88772A_PHY14H_DEFAULT 0x442C
|
||||||
|
|
||||||
|
#define AX88772A_PHY15H 0x15
|
||||||
|
#define AX88772A_PHY15H_DEFAULT 0x03C8
|
||||||
|
|
||||||
|
#define AX88772A_PHY16H 0x16
|
||||||
|
#define AX88772A_PHY16H_DEFAULT 0x4044
|
||||||
|
|
||||||
|
#define SPEED_100 0
|
||||||
|
#define SPEED_10 1
|
||||||
|
|
||||||
|
static int usbh_asix_read_cmd(struct usbh_asix *asix_class,
|
||||||
|
uint8_t cmd,
|
||||||
|
uint16_t value,
|
||||||
|
uint16_t index,
|
||||||
|
void *data,
|
||||||
|
uint16_t size)
|
||||||
|
{
|
||||||
|
struct usb_setup_packet *setup = asix_class->hport->setup;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
setup->bmRequestType = USB_REQUEST_DIR_IN | USB_REQUEST_VENDOR | USB_REQUEST_RECIPIENT_DEVICE;
|
||||||
|
setup->bRequest = cmd;
|
||||||
|
setup->wValue = value;
|
||||||
|
setup->wIndex = index;
|
||||||
|
setup->wLength = size;
|
||||||
|
|
||||||
|
ret = usbh_control_transfer(asix_class->hport, setup, g_asix_buf);
|
||||||
|
if (ret < 0) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
memcpy(data, g_asix_buf, ret - 8);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int usbh_asix_write_cmd(struct usbh_asix *asix_class,
|
||||||
|
uint8_t cmd,
|
||||||
|
uint16_t value,
|
||||||
|
uint16_t index,
|
||||||
|
void *data,
|
||||||
|
uint16_t size)
|
||||||
|
{
|
||||||
|
struct usb_setup_packet *setup = asix_class->hport->setup;
|
||||||
|
|
||||||
|
setup->bmRequestType = USB_REQUEST_DIR_OUT | USB_REQUEST_VENDOR | USB_REQUEST_RECIPIENT_DEVICE;
|
||||||
|
setup->bRequest = cmd;
|
||||||
|
setup->wValue = value;
|
||||||
|
setup->wIndex = index;
|
||||||
|
setup->wLength = size;
|
||||||
|
|
||||||
|
memcpy(g_asix_buf, data, size);
|
||||||
|
|
||||||
|
return usbh_control_transfer(asix_class->hport, setup, g_asix_buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int usbh_asix_mdio_write(struct usbh_asix *asix_class, int phy_id, int loc, int val)
|
||||||
|
{
|
||||||
|
uint8_t smsr;
|
||||||
|
uint16_t res = (uint16_t)val;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
for (uint8_t i = 0; i < 10; i++) {
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_SET_SW_MII, 0, 0, NULL, 0);
|
||||||
|
if (ret < 0) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
usb_osal_msleep(1);
|
||||||
|
ret = usbh_asix_read_cmd(asix_class, AX_CMD_STATMNGSTS_REG, 0, 0, &smsr, 1);
|
||||||
|
if (ret < 0) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (smsr & AX_HOST_EN) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_WRITE_MII_REG, phy_id, loc, &res, 2);
|
||||||
|
if (ret < 0) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_SET_HW_MII, 0, 0, NULL, 0);
|
||||||
|
if (ret < 0) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int usbh_asix_mdio_read(struct usbh_asix *asix_class, int phy_id, int loc)
|
||||||
|
{
|
||||||
|
uint8_t smsr;
|
||||||
|
uint16_t res;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
for (uint8_t i = 0; i < 10; i++) {
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_SET_SW_MII, 0, 0, NULL, 0);
|
||||||
|
if (ret < 0) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
usb_osal_msleep(1);
|
||||||
|
ret = usbh_asix_read_cmd(asix_class, AX_CMD_STATMNGSTS_REG, 0, 0, &smsr, 1);
|
||||||
|
if (ret < 0) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (smsr & AX_HOST_EN) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_READ_MII_REG, phy_id, loc, &res, 2);
|
||||||
|
if (ret < 0) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_SET_HW_MII, 0, 0, NULL, 0);
|
||||||
|
if (ret < 0) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int usbh_asix_read_phy_addr(struct usbh_asix *asix_class, bool internal)
|
||||||
|
{
|
||||||
|
int ret, offset;
|
||||||
|
uint8_t buf[2];
|
||||||
|
|
||||||
|
ret = usbh_asix_read_cmd(asix_class, AX_CMD_READ_PHY_ID, 0, 0, buf, 2);
|
||||||
|
if (ret < 0) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
offset = (internal ? 1 : 0);
|
||||||
|
ret = buf[offset];
|
||||||
|
|
||||||
|
USB_LOG_INFO("%s PHY address 0x%x\r\n", internal ? "internal" : "external", ret);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int usbh_asix_sw_reset(struct usbh_asix *asix_class, uint8_t flags)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_SW_RESET, flags, 0, NULL, 0);
|
||||||
|
if (ret < 0)
|
||||||
|
USB_LOG_ERR("Failed to send software reset: %d\r\n", ret);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static uint16_t usbh_asix_read_rx_ctl(struct usbh_asix *asix_class)
|
||||||
|
{
|
||||||
|
uint16_t v;
|
||||||
|
int ret = usbh_asix_read_cmd(asix_class, AX_CMD_READ_RX_CTL, 0, 0, &v, 2);
|
||||||
|
if (ret < 0) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int usbh_asix_write_rx_ctl(struct usbh_asix *asix_class, uint16_t mode)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
USB_LOG_DBG("asix_write_rx_ctl() - mode = 0x%04x\r\n", mode);
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_WRITE_RX_CTL, mode, 0, NULL, 0);
|
||||||
|
if (ret < 0)
|
||||||
|
USB_LOG_ERR("Failed to write RX_CTL mode to 0x%04x: %02x\r\n",
|
||||||
|
mode, ret);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static uint16_t usbh_asix_read_medium_status(struct usbh_asix *asix_class)
|
||||||
|
{
|
||||||
|
uint16_t v;
|
||||||
|
int ret = usbh_asix_read_cmd(asix_class, AX_CMD_READ_MEDIUM_STATUS, 0, 0, &v, 2);
|
||||||
|
|
||||||
|
if (ret < 0) {
|
||||||
|
USB_LOG_ERR("Error reading Medium Status register: %02x\r\n",
|
||||||
|
ret);
|
||||||
|
return ret; /* TODO: callers not checking for error ret */
|
||||||
|
}
|
||||||
|
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int usbh_asix_write_medium_mode(struct usbh_asix *asix_class, uint16_t mode)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
USB_LOG_DBG("asix_write_medium_mode() - mode = 0x%04x\r\n", mode);
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_WRITE_MEDIUM_MODE, mode, 0, NULL, 0);
|
||||||
|
if (ret < 0)
|
||||||
|
USB_LOG_ERR("Failed to write Medium Mode mode to 0x%04x: %02x\r\n",
|
||||||
|
mode, ret);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int usbh_asix_write_gpio(struct usbh_asix *asix_class, uint16_t value, int sleep)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
USB_LOG_DBG("asix_write_gpio() - value = 0x%04x\r\n", value);
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_WRITE_GPIOS, value, 0, NULL, 0);
|
||||||
|
if (ret < 0)
|
||||||
|
USB_LOG_ERR("Failed to write GPIO value 0x%04x: %d\r\n",
|
||||||
|
value, ret);
|
||||||
|
|
||||||
|
if (sleep)
|
||||||
|
usb_osal_msleep(sleep);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* AX88772 & AX88178 have a 16-bit RX_CTL value
|
||||||
|
*/
|
||||||
|
static void usbh_asix_set_multicast(struct usbh_asix *asix_class)
|
||||||
|
{
|
||||||
|
uint16_t rx_ctl = AX_DEFAULT_RX_CTL | AX_RX_CTL_AM;
|
||||||
|
const uint8_t multi_filter[] = { 0x00, 0x00, 0x20, 0x80, 0x00, 0x00, 0x00, 0x40 };
|
||||||
|
|
||||||
|
usbh_asix_write_cmd(asix_class, AX_CMD_WRITE_MULTI_FILTER, 0, 0, (uint8_t *)multi_filter, AX_MCAST_FILTER_SIZE);
|
||||||
|
usbh_asix_write_cmd(asix_class, AX_CMD_WRITE_RX_CTL, rx_ctl, 0, NULL, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int usbh_ax88772_hw_reset(struct usbh_asix *asix_class)
|
||||||
|
{
|
||||||
|
uint16_t rx_ctl;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = usbh_asix_write_gpio(asix_class, AX_GPIO_RSE | AX_GPIO_GPO_2 | AX_GPIO_GPO2EN, 5);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_SW_PHY_SELECT, asix_class->embd_phy,
|
||||||
|
0, NULL, 0);
|
||||||
|
if (ret < 0) {
|
||||||
|
USB_LOG_ERR("Select PHY #1 failed: %d\r\n", ret);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (asix_class->embd_phy) {
|
||||||
|
ret = usbh_asix_sw_reset(asix_class, AX_SWRESET_IPPD);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
usb_osal_msleep(10);
|
||||||
|
|
||||||
|
ret = usbh_asix_sw_reset(asix_class, AX_SWRESET_CLEAR);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
usb_osal_msleep(60);
|
||||||
|
|
||||||
|
ret = usbh_asix_sw_reset(asix_class, AX_SWRESET_IPRL | AX_SWRESET_PRL);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
} else {
|
||||||
|
ret = usbh_asix_sw_reset(asix_class, AX_SWRESET_IPPD | AX_SWRESET_PRL);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
usb_osal_msleep(150);
|
||||||
|
|
||||||
|
ret = usbh_asix_write_rx_ctl(asix_class, AX_DEFAULT_RX_CTL);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
ret = usbh_asix_write_medium_mode(asix_class, AX88772_MEDIUM_DEFAULT);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_WRITE_IPG0,
|
||||||
|
AX88772_IPG0_DEFAULT | AX88772_IPG1_DEFAULT,
|
||||||
|
AX88772_IPG2_DEFAULT, NULL, 0);
|
||||||
|
if (ret < 0) {
|
||||||
|
USB_LOG_ERR("Write IPG,IPG1,IPG2 failed: %d\r\n", ret);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Rewrite MAC address */
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_WRITE_NODE_ID, 0, 0, asix_class->mac, ETH_ALEN);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
/* Set RX_CTL to default values with 2k buffer, and enable cactus */
|
||||||
|
ret = usbh_asix_write_rx_ctl(asix_class, AX_DEFAULT_RX_CTL);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
rx_ctl = usbh_asix_read_rx_ctl(asix_class);
|
||||||
|
USB_LOG_INFO("RX_CTL is 0x%04x after all initializations\r\n",
|
||||||
|
rx_ctl);
|
||||||
|
|
||||||
|
rx_ctl = usbh_asix_read_medium_status(asix_class);
|
||||||
|
USB_LOG_INFO("Medium Status is 0x%04x after all initializations\r\n",
|
||||||
|
rx_ctl);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
out:
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int usbh_ax88772a_hw_reset(struct usbh_asix *asix_class)
|
||||||
|
{
|
||||||
|
uint16_t rx_ctl, phy14h, phy15h, phy16h;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = usbh_asix_write_gpio(asix_class, AX_GPIO_RSE, 5);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_SW_PHY_SELECT, asix_class->embd_phy | AX_PHYSEL_SSEN, 0, 0, NULL);
|
||||||
|
if (ret < 0) {
|
||||||
|
USB_LOG_ERR("Select PHY #1 failed: %d\r\n", ret);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
usb_osal_msleep(10);
|
||||||
|
|
||||||
|
ret = usbh_asix_sw_reset(asix_class, AX_SWRESET_IPPD | AX_SWRESET_IPRL);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
usb_osal_msleep(10);
|
||||||
|
|
||||||
|
ret = usbh_asix_sw_reset(asix_class, AX_SWRESET_IPRL);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
usb_osal_msleep(160);
|
||||||
|
|
||||||
|
ret = usbh_asix_sw_reset(asix_class, AX_SWRESET_CLEAR);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
ret = usbh_asix_sw_reset(asix_class, AX_SWRESET_IPRL);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
usb_osal_msleep(200);
|
||||||
|
|
||||||
|
if (asix_class->chipcode == AX_AX88772B_CHIPCODE) {
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_QCTCTRL, 0x8000, 0x8001, NULL, 0);
|
||||||
|
if (ret < 0) {
|
||||||
|
USB_LOG_ERR("Write BQ setting failed: %d\r\n", ret);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
} else if (asix_class->chipcode == AX_AX88772A_CHIPCODE) {
|
||||||
|
/* Check if the PHY registers have default settings */
|
||||||
|
phy14h = usbh_asix_mdio_read(asix_class, asix_class->phy_addr,
|
||||||
|
AX88772A_PHY14H);
|
||||||
|
phy15h = usbh_asix_mdio_read(asix_class, asix_class->phy_addr,
|
||||||
|
AX88772A_PHY15H);
|
||||||
|
phy16h = usbh_asix_mdio_read(asix_class, asix_class->phy_addr,
|
||||||
|
AX88772A_PHY16H);
|
||||||
|
|
||||||
|
USB_LOG_DBG("772a_hw_reset: MR20=0x%x MR21=0x%x MR22=0x%x\r\n",
|
||||||
|
phy14h, phy15h, phy16h);
|
||||||
|
|
||||||
|
/* Restore PHY registers default setting if not */
|
||||||
|
if (phy14h != AX88772A_PHY14H_DEFAULT)
|
||||||
|
usbh_asix_mdio_write(asix_class, asix_class->phy_addr,
|
||||||
|
AX88772A_PHY14H,
|
||||||
|
AX88772A_PHY14H_DEFAULT);
|
||||||
|
if (phy15h != AX88772A_PHY15H_DEFAULT)
|
||||||
|
usbh_asix_mdio_write(asix_class, asix_class->phy_addr,
|
||||||
|
AX88772A_PHY15H,
|
||||||
|
AX88772A_PHY15H_DEFAULT);
|
||||||
|
if (phy16h != AX88772A_PHY16H_DEFAULT)
|
||||||
|
usbh_asix_mdio_write(asix_class, asix_class->phy_addr,
|
||||||
|
AX88772A_PHY16H,
|
||||||
|
AX88772A_PHY16H_DEFAULT);
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_WRITE_IPG0,
|
||||||
|
AX88772_IPG0_DEFAULT | AX88772_IPG1_DEFAULT,
|
||||||
|
AX88772_IPG2_DEFAULT, 0, NULL);
|
||||||
|
if (ret < 0) {
|
||||||
|
USB_LOG_ERR("Write IPG,IPG1,IPG2 failed: %d\r\n", ret);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Rewrite MAC address */
|
||||||
|
ret = usbh_asix_write_cmd(asix_class, AX_CMD_WRITE_NODE_ID, 0, 0, asix_class->mac, ETH_ALEN);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
/* Set RX_CTL to default values with 2k buffer, and enable cactus */
|
||||||
|
ret = usbh_asix_write_rx_ctl(asix_class, AX_DEFAULT_RX_CTL);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
ret = usbh_asix_write_medium_mode(asix_class, AX88772_MEDIUM_DEFAULT);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
/* Set RX_CTL to default values with 2k buffer, and enable cactus */
|
||||||
|
ret = usbh_asix_write_rx_ctl(asix_class, AX_DEFAULT_RX_CTL);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
rx_ctl = usbh_asix_read_rx_ctl(asix_class);
|
||||||
|
USB_LOG_INFO("RX_CTL is 0x%04x after all initializations\r\n", rx_ctl);
|
||||||
|
|
||||||
|
rx_ctl = usbh_asix_read_medium_status(asix_class);
|
||||||
|
USB_LOG_INFO("Medium Status is 0x%04x after all initializations\r\n", rx_ctl);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
out:
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void usbh_ax88772_mac_link_down(struct usbh_asix *asix_class)
|
||||||
|
{
|
||||||
|
usbh_asix_write_medium_mode(asix_class, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void usbh_ax88772_mac_link_up(struct usbh_asix *asix_class, int speed, int duplex, bool tx_pause, bool rx_pause)
|
||||||
|
{
|
||||||
|
uint16_t m = AX_MEDIUM_AC | AX_MEDIUM_RE;
|
||||||
|
|
||||||
|
m |= duplex ? AX_MEDIUM_FD : 0;
|
||||||
|
|
||||||
|
switch (speed) {
|
||||||
|
case SPEED_100:
|
||||||
|
m |= AX_MEDIUM_PS;
|
||||||
|
break;
|
||||||
|
case SPEED_10:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tx_pause)
|
||||||
|
m |= AX_MEDIUM_TFC;
|
||||||
|
|
||||||
|
if (rx_pause)
|
||||||
|
m |= AX_MEDIUM_RFC;
|
||||||
|
|
||||||
|
usbh_asix_write_medium_mode(asix_class, m);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int usbh_asix_connect(struct usbh_hubport *hport, uint8_t intf)
|
||||||
|
{
|
||||||
|
struct usb_endpoint_descriptor *ep_desc;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
struct usbh_asix *asix_class = &g_asix_class;
|
||||||
|
|
||||||
|
memset(asix_class, 0, sizeof(struct usbh_asix));
|
||||||
|
|
||||||
|
asix_class->hport = hport;
|
||||||
|
asix_class->intf = intf;
|
||||||
|
|
||||||
|
hport->config.intf[intf].priv = asix_class;
|
||||||
|
|
||||||
|
if ((hport->device_desc.idVendor == 0x0b95) && (hport->device_desc.idProduct == 0x772b)) {
|
||||||
|
asix_class->name = "ASIX AX88772B";
|
||||||
|
} else if ((hport->device_desc.idVendor == 0x0b95) && (hport->device_desc.idProduct == 0x7720)) {
|
||||||
|
asix_class->name = "ASIX AX88772";
|
||||||
|
} else if ((hport->device_desc.idVendor == 0x0b95) && (hport->device_desc.idProduct == 0x1780)) {
|
||||||
|
asix_class->name = "ASIX AX88178";
|
||||||
|
}
|
||||||
|
|
||||||
|
for (uint8_t i = 0; i < (ETH_ALEN >> 1); i++) {
|
||||||
|
ret = usbh_asix_read_cmd(asix_class, AX_CMD_READ_EEPROM,
|
||||||
|
0x04 + i, 0, &asix_class->mac[i * 2], 2);
|
||||||
|
if (ret < 0) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
USB_LOG_INFO("asix MAC address %02x:%02x:%02x:%02x:%02x:%02x\r\n",
|
||||||
|
asix_class->mac[0],
|
||||||
|
asix_class->mac[1],
|
||||||
|
asix_class->mac[2],
|
||||||
|
asix_class->mac[3],
|
||||||
|
asix_class->mac[4],
|
||||||
|
asix_class->mac[5]);
|
||||||
|
|
||||||
|
ret = usbh_asix_read_phy_addr(asix_class, true);
|
||||||
|
if (ret < 0) {
|
||||||
|
USB_LOG_ERR("Failed to read phy addr: %d\r\n", ret);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
asix_class->phy_addr = ret;
|
||||||
|
asix_class->embd_phy = ((ret & 0x1f) == AX_EMBD_PHY_ADDR);
|
||||||
|
|
||||||
|
ret = usbh_asix_read_cmd(asix_class, AX_CMD_STATMNGSTS_REG, 0, 0, &asix_class->chipcode, 1);
|
||||||
|
if (ret < 0) {
|
||||||
|
USB_LOG_ERR("Failed to read STATMNGSTS_REG: %d\r\n", ret);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
asix_class->chipcode &= AX_CHIPCODE_MASK;
|
||||||
|
USB_LOG_INFO("asix chipcode 0x%x\r\n", asix_class->chipcode);
|
||||||
|
|
||||||
|
if (asix_class->chipcode == AX_AX88772_CHIPCODE) {
|
||||||
|
usbh_ax88772_hw_reset(asix_class);
|
||||||
|
} else {
|
||||||
|
usbh_ax88772a_hw_reset(asix_class);
|
||||||
|
}
|
||||||
|
for (uint8_t i = 0; i < hport->config.intf[intf].altsetting[0].intf_desc.bNumEndpoints; i++) {
|
||||||
|
ep_desc = &hport->config.intf[intf].altsetting[0].ep[i].ep_desc;
|
||||||
|
|
||||||
|
if (USB_GET_ENDPOINT_TYPE(ep_desc->bmAttributes) == USB_ENDPOINT_TYPE_INTERRUPT) {
|
||||||
|
if (ep_desc->bEndpointAddress & 0x80) {
|
||||||
|
USBH_EP_INIT(asix_class->intin, ep_desc);
|
||||||
|
} else {
|
||||||
|
return -USB_ERR_NOTSUPP;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (ep_desc->bEndpointAddress & 0x80) {
|
||||||
|
USBH_EP_INIT(asix_class->bulkin, ep_desc);
|
||||||
|
} else {
|
||||||
|
USBH_EP_INIT(asix_class->bulkout, ep_desc);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
usbh_asix_set_multicast(asix_class);
|
||||||
|
|
||||||
|
USB_LOG_INFO("Init %s done\r\n", asix_class->name);
|
||||||
|
|
||||||
|
memcpy(hport->config.intf[intf].devname, DEV_FORMAT, CONFIG_USBHOST_DEV_NAMELEN);
|
||||||
|
|
||||||
|
USB_LOG_INFO("Register ASIX Class:%s\r\n", hport->config.intf[intf].devname);
|
||||||
|
usbh_asix_run(asix_class);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int usbh_asix_disconnect(struct usbh_hubport *hport, uint8_t intf)
|
||||||
|
{
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
|
struct usbh_asix *asix_class = (struct usbh_asix *)hport->config.intf[intf].priv;
|
||||||
|
|
||||||
|
if (asix_class) {
|
||||||
|
if (asix_class->bulkin) {
|
||||||
|
usbh_kill_urb(&asix_class->bulkin_urb);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (asix_class->bulkout) {
|
||||||
|
usbh_kill_urb(&asix_class->bulkout_urb);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (asix_class->intin) {
|
||||||
|
usbh_kill_urb(&asix_class->intin_urb);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (hport->config.intf[intf].devname[0] != '\0') {
|
||||||
|
USB_LOG_INFO("Unregister ASIX Class:%s\r\n", hport->config.intf[intf].devname);
|
||||||
|
usbh_asix_stop(asix_class);
|
||||||
|
}
|
||||||
|
|
||||||
|
memset(asix_class, 0, sizeof(struct usbh_asix));
|
||||||
|
}
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
int usbh_asix_get_notification(struct usbh_asix *asix_class)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
usbh_int_urb_fill(&asix_class->intin_urb, asix_class->hport, asix_class->intin, g_asix_inttx_buffer, 8, USB_OSAL_WAITING_FOREVER, NULL, NULL);
|
||||||
|
ret = usbh_submit_urb(&asix_class->intin_urb);
|
||||||
|
if (ret < 0) {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (g_asix_inttx_buffer[1] == 0x00) {
|
||||||
|
if (g_asix_inttx_buffer[2] == 0x19) {
|
||||||
|
asix_class->connect_status = true;
|
||||||
|
usbh_ax88772_mac_link_up(asix_class, SPEED_100, 1, 1, 1);
|
||||||
|
} else {
|
||||||
|
asix_class->connect_status = false;
|
||||||
|
usbh_ax88772_mac_link_down(asix_class);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void usbh_asix_rx_thread(void *argument)
|
||||||
|
{
|
||||||
|
uint32_t g_asix_rx_length;
|
||||||
|
int ret;
|
||||||
|
err_t err;
|
||||||
|
uint16_t len;
|
||||||
|
uint16_t len_crc;
|
||||||
|
struct pbuf *p;
|
||||||
|
struct netif *netif = (struct netif *)argument;
|
||||||
|
|
||||||
|
USB_LOG_INFO("Create asix rx thread\r\n");
|
||||||
|
// clang-format off
|
||||||
|
find_class:
|
||||||
|
// clang-format on
|
||||||
|
g_asix_class.connect_status = false;
|
||||||
|
if (usbh_find_class_instance("/dev/asix") == NULL) {
|
||||||
|
goto delete;
|
||||||
|
}
|
||||||
|
|
||||||
|
while (g_asix_class.connect_status == false) {
|
||||||
|
ret = usbh_asix_get_notification(&g_asix_class);
|
||||||
|
if (ret < 0) {
|
||||||
|
usb_osal_msleep(100);
|
||||||
|
goto find_class;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
g_asix_rx_length = 0;
|
||||||
|
while (1) {
|
||||||
|
usbh_bulk_urb_fill(&g_asix_class.bulkin_urb, g_asix_class.hport, g_asix_class.bulkin, &g_asix_rx_buffer[g_asix_rx_length], USB_GET_MAXPACKETSIZE(g_asix_class.bulkin->wMaxPacketSize), USB_OSAL_WAITING_FOREVER, NULL, NULL);
|
||||||
|
ret = usbh_submit_urb(&g_asix_class.bulkin_urb);
|
||||||
|
if (ret < 0) {
|
||||||
|
goto find_class;
|
||||||
|
}
|
||||||
|
|
||||||
|
g_asix_rx_length += g_asix_class.bulkin_urb.actual_length;
|
||||||
|
|
||||||
|
if (g_asix_rx_length % USB_GET_MAXPACKETSIZE(g_asix_class.bulkin->wMaxPacketSize)) {
|
||||||
|
//len = g_asix_rx_buffer[0] | ((uint16_t)(g_asix_rx_buffer[1]) << 8);
|
||||||
|
//len_crc = g_asix_rx_buffer[2] | ((uint16_t)(g_asix_rx_buffer[3]) << 8);
|
||||||
|
|
||||||
|
USB_LOG_DBG("rxlen:%d\r\n", g_asix_rx_length);
|
||||||
|
|
||||||
|
p = pbuf_alloc(PBUF_RAW, g_asix_rx_length - 4, PBUF_POOL);
|
||||||
|
if (p != NULL) {
|
||||||
|
memcpy(p->payload, (uint8_t *)&g_asix_rx_buffer[4], g_asix_rx_length - 4);
|
||||||
|
g_asix_rx_length = 0;
|
||||||
|
|
||||||
|
err = netif->input(p, netif);
|
||||||
|
if (err != ERR_OK) {
|
||||||
|
pbuf_free(p);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
g_asix_rx_length = 0;
|
||||||
|
USB_LOG_ERR("No memory to alloc pbuf for asix rx\r\n");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// clang-format off
|
||||||
|
delete:
|
||||||
|
USB_LOG_INFO("Delete asix rx thread\r\n");
|
||||||
|
usb_osal_thread_delete(NULL);
|
||||||
|
// clang-format on
|
||||||
|
}
|
||||||
|
|
||||||
|
err_t usbh_asix_linkoutput(struct netif *netif, struct pbuf *p)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
struct pbuf *q;
|
||||||
|
uint16_t actual_len;
|
||||||
|
uint8_t *buffer = &g_asix_tx_buffer[4];
|
||||||
|
|
||||||
|
if (g_asix_class.connect_status == false) {
|
||||||
|
return ERR_BUF;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (q = p; q != NULL; q = q->next) {
|
||||||
|
memcpy(buffer, q->payload, q->len);
|
||||||
|
buffer += q->len;
|
||||||
|
}
|
||||||
|
|
||||||
|
g_asix_tx_buffer[0] = p->tot_len & 0xff;
|
||||||
|
g_asix_tx_buffer[1] = (p->tot_len >> 8) & 0xff;
|
||||||
|
g_asix_tx_buffer[2] = ~g_asix_tx_buffer[0];
|
||||||
|
g_asix_tx_buffer[3] = ~g_asix_tx_buffer[1];
|
||||||
|
|
||||||
|
if (p->tot_len % USB_GET_MAXPACKETSIZE(g_asix_class.bulkout->wMaxPacketSize)) {
|
||||||
|
USB_LOG_DBG("txlen:%d\r\n", p->tot_len + 8);
|
||||||
|
g_asix_tx_buffer[p->tot_len + 4 + 0] = 0x00;
|
||||||
|
g_asix_tx_buffer[p->tot_len + 4 + 1] = 0x00;
|
||||||
|
g_asix_tx_buffer[p->tot_len + 4 + 2] = 0xff;
|
||||||
|
g_asix_tx_buffer[p->tot_len + 4 + 3] = 0xff;
|
||||||
|
actual_len = p->tot_len + 8;
|
||||||
|
} else {
|
||||||
|
USB_LOG_DBG("txlen:%d\r\n", p->tot_len + 4);
|
||||||
|
actual_len = p->tot_len + 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
usbh_bulk_urb_fill(&g_asix_class.bulkout_urb, g_asix_class.hport, g_asix_class.bulkout, g_asix_tx_buffer, actual_len, USB_OSAL_WAITING_FOREVER, NULL, NULL);
|
||||||
|
ret = usbh_submit_urb(&g_asix_class.bulkout_urb);
|
||||||
|
if (ret < 0) {
|
||||||
|
return ERR_BUF;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ERR_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
__WEAK void usbh_asix_run(struct usbh_asix *asix_class)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
__WEAK void usbh_asix_stop(struct usbh_asix *asix_class)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct usbh_class_driver asix_class_driver = {
|
||||||
|
.driver_name = "asix",
|
||||||
|
.connect = usbh_asix_connect,
|
||||||
|
.disconnect = usbh_asix_disconnect
|
||||||
|
};
|
||||||
|
|
||||||
|
CLASS_INFO_DEFINE const struct usbh_class_info ax88772b_class_info = {
|
||||||
|
.match_flags = USB_CLASS_MATCH_VENDOR | USB_CLASS_MATCH_PRODUCT | USB_CLASS_MATCH_INTF_CLASS,
|
||||||
|
.class = 0xff,
|
||||||
|
.subclass = 0x00,
|
||||||
|
.protocol = 0x00,
|
||||||
|
.vid = 0x0B95,
|
||||||
|
.pid = 0x772B,
|
||||||
|
.class_driver = &asix_class_driver
|
||||||
|
};
|
||||||
|
|
||||||
|
CLASS_INFO_DEFINE const struct usbh_class_info ax88772_class_info = {
|
||||||
|
.match_flags = USB_CLASS_MATCH_VENDOR | USB_CLASS_MATCH_PRODUCT | USB_CLASS_MATCH_INTF_CLASS,
|
||||||
|
.class = 0xff,
|
||||||
|
.subclass = 0x00,
|
||||||
|
.protocol = 0x00,
|
||||||
|
.vid = 0x0B95,
|
||||||
|
.pid = 0x7720,
|
||||||
|
.class_driver = &asix_class_driver
|
||||||
|
};
|
||||||
180
class/vendor/usbh_asix.h
vendored
Normal file
180
class/vendor/usbh_asix.h
vendored
Normal file
@@ -0,0 +1,180 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2024, sakumisu
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*/
|
||||||
|
#ifndef USBH_ASIX_H
|
||||||
|
#define USBH_ASIX_H
|
||||||
|
|
||||||
|
#include "lwip/netif.h"
|
||||||
|
#include "lwip/pbuf.h"
|
||||||
|
|
||||||
|
/* ASIX AX8817X based USB 2.0 Ethernet Devices */
|
||||||
|
|
||||||
|
#define AX_CMD_SET_SW_MII 0x06
|
||||||
|
#define AX_CMD_READ_MII_REG 0x07
|
||||||
|
#define AX_CMD_WRITE_MII_REG 0x08
|
||||||
|
#define AX_CMD_STATMNGSTS_REG 0x09
|
||||||
|
#define AX_CMD_SET_HW_MII 0x0a
|
||||||
|
#define AX_CMD_READ_EEPROM 0x0b
|
||||||
|
#define AX_CMD_WRITE_EEPROM 0x0c
|
||||||
|
#define AX_CMD_WRITE_ENABLE 0x0d
|
||||||
|
#define AX_CMD_WRITE_DISABLE 0x0e
|
||||||
|
#define AX_CMD_READ_RX_CTL 0x0f
|
||||||
|
#define AX_CMD_WRITE_RX_CTL 0x10
|
||||||
|
#define AX_CMD_READ_IPG012 0x11
|
||||||
|
#define AX_CMD_WRITE_IPG0 0x12
|
||||||
|
#define AX_CMD_WRITE_IPG1 0x13
|
||||||
|
#define AX_CMD_READ_NODE_ID 0x13
|
||||||
|
#define AX_CMD_WRITE_NODE_ID 0x14
|
||||||
|
#define AX_CMD_WRITE_IPG2 0x14
|
||||||
|
#define AX_CMD_WRITE_MULTI_FILTER 0x16
|
||||||
|
#define AX88172_CMD_READ_NODE_ID 0x17
|
||||||
|
#define AX_CMD_READ_PHY_ID 0x19
|
||||||
|
#define AX_CMD_READ_MEDIUM_STATUS 0x1a
|
||||||
|
#define AX_CMD_WRITE_MEDIUM_MODE 0x1b
|
||||||
|
#define AX_CMD_READ_MONITOR_MODE 0x1c
|
||||||
|
#define AX_CMD_WRITE_MONITOR_MODE 0x1d
|
||||||
|
#define AX_CMD_READ_GPIOS 0x1e
|
||||||
|
#define AX_CMD_WRITE_GPIOS 0x1f
|
||||||
|
#define AX_CMD_SW_RESET 0x20
|
||||||
|
#define AX_CMD_SW_PHY_STATUS 0x21
|
||||||
|
#define AX_CMD_SW_PHY_SELECT 0x22
|
||||||
|
#define AX_QCTCTRL 0x2A
|
||||||
|
|
||||||
|
#define AX_CHIPCODE_MASK 0x70
|
||||||
|
#define AX_AX88772_CHIPCODE 0x00
|
||||||
|
#define AX_AX88772A_CHIPCODE 0x10
|
||||||
|
#define AX_AX88772B_CHIPCODE 0x20
|
||||||
|
#define AX_HOST_EN 0x01
|
||||||
|
|
||||||
|
#define AX_PHYSEL_PSEL 0x01
|
||||||
|
#define AX_PHYSEL_SSMII 0
|
||||||
|
#define AX_PHYSEL_SSEN 0x10
|
||||||
|
|
||||||
|
#define AX_PHY_SELECT_MASK (BIT(3) | BIT(2))
|
||||||
|
#define AX_PHY_SELECT_INTERNAL 0
|
||||||
|
#define AX_PHY_SELECT_EXTERNAL BIT(2)
|
||||||
|
|
||||||
|
#define AX_MONITOR_MODE 0x01
|
||||||
|
#define AX_MONITOR_LINK 0x02
|
||||||
|
#define AX_MONITOR_MAGIC 0x04
|
||||||
|
#define AX_MONITOR_HSFS 0x10
|
||||||
|
|
||||||
|
/* AX88172 Medium Status Register values */
|
||||||
|
#define AX88172_MEDIUM_FD 0x02
|
||||||
|
#define AX88172_MEDIUM_TX 0x04
|
||||||
|
#define AX88172_MEDIUM_FC 0x10
|
||||||
|
#define AX88172_MEDIUM_DEFAULT \
|
||||||
|
(AX88172_MEDIUM_FD | AX88172_MEDIUM_TX | AX88172_MEDIUM_FC)
|
||||||
|
|
||||||
|
#define AX_MCAST_FILTER_SIZE 8
|
||||||
|
#define AX_MAX_MCAST 64
|
||||||
|
|
||||||
|
#define AX_SWRESET_CLEAR 0x00
|
||||||
|
#define AX_SWRESET_RR 0x01
|
||||||
|
#define AX_SWRESET_RT 0x02
|
||||||
|
#define AX_SWRESET_PRTE 0x04
|
||||||
|
#define AX_SWRESET_PRL 0x08
|
||||||
|
#define AX_SWRESET_BZ 0x10
|
||||||
|
#define AX_SWRESET_IPRL 0x20
|
||||||
|
#define AX_SWRESET_IPPD 0x40
|
||||||
|
|
||||||
|
#define AX88772_IPG0_DEFAULT 0x15
|
||||||
|
#define AX88772_IPG1_DEFAULT 0x0c
|
||||||
|
#define AX88772_IPG2_DEFAULT 0x12
|
||||||
|
|
||||||
|
/* AX88772 & AX88178 Medium Mode Register */
|
||||||
|
#define AX_MEDIUM_PF 0x0080
|
||||||
|
#define AX_MEDIUM_JFE 0x0040
|
||||||
|
#define AX_MEDIUM_TFC 0x0020
|
||||||
|
#define AX_MEDIUM_RFC 0x0010
|
||||||
|
#define AX_MEDIUM_ENCK 0x0008
|
||||||
|
#define AX_MEDIUM_AC 0x0004
|
||||||
|
#define AX_MEDIUM_FD 0x0002
|
||||||
|
#define AX_MEDIUM_GM 0x0001
|
||||||
|
#define AX_MEDIUM_SM 0x1000
|
||||||
|
#define AX_MEDIUM_SBP 0x0800
|
||||||
|
#define AX_MEDIUM_PS 0x0200
|
||||||
|
#define AX_MEDIUM_RE 0x0100
|
||||||
|
|
||||||
|
#define AX88178_MEDIUM_DEFAULT \
|
||||||
|
(AX_MEDIUM_PS | AX_MEDIUM_FD | AX_MEDIUM_AC | \
|
||||||
|
AX_MEDIUM_RFC | AX_MEDIUM_TFC | AX_MEDIUM_JFE | \
|
||||||
|
AX_MEDIUM_RE)
|
||||||
|
|
||||||
|
#define AX88772_MEDIUM_DEFAULT \
|
||||||
|
(AX_MEDIUM_FD | AX_MEDIUM_PS | \
|
||||||
|
AX_MEDIUM_AC | AX_MEDIUM_RE)
|
||||||
|
|
||||||
|
/* AX88772 & AX88178 RX_CTL values */
|
||||||
|
#define AX_RX_CTL_SO 0x0080
|
||||||
|
#define AX_RX_CTL_AP 0x0020
|
||||||
|
#define AX_RX_CTL_AM 0x0010
|
||||||
|
#define AX_RX_CTL_AB 0x0008
|
||||||
|
#define AX_RX_CTL_SEP 0x0004
|
||||||
|
#define AX_RX_CTL_AMALL 0x0002
|
||||||
|
#define AX_RX_CTL_PRO 0x0001
|
||||||
|
#define AX_RX_CTL_MFB_2048 0x0000
|
||||||
|
#define AX_RX_CTL_MFB_4096 0x0100
|
||||||
|
#define AX_RX_CTL_MFB_8192 0x0200
|
||||||
|
#define AX_RX_CTL_MFB_16384 0x0300
|
||||||
|
|
||||||
|
#define AX_DEFAULT_RX_CTL (AX_RX_CTL_SO | AX_RX_CTL_AB)
|
||||||
|
|
||||||
|
/* GPIO 0 .. 2 toggles */
|
||||||
|
#define AX_GPIO_GPO0EN 0x01 /* GPIO0 Output enable */
|
||||||
|
#define AX_GPIO_GPO_0 0x02 /* GPIO0 Output value */
|
||||||
|
#define AX_GPIO_GPO1EN 0x04 /* GPIO1 Output enable */
|
||||||
|
#define AX_GPIO_GPO_1 0x08 /* GPIO1 Output value */
|
||||||
|
#define AX_GPIO_GPO2EN 0x10 /* GPIO2 Output enable */
|
||||||
|
#define AX_GPIO_GPO_2 0x20 /* GPIO2 Output value */
|
||||||
|
#define AX_GPIO_RESERVED 0x40 /* Reserved */
|
||||||
|
#define AX_GPIO_RSE 0x80 /* Reload serial EEPROM */
|
||||||
|
|
||||||
|
#define AX_EEPROM_MAGIC 0xdeadbeef
|
||||||
|
#define AX_EEPROM_LEN 0x200
|
||||||
|
|
||||||
|
#define AX_EMBD_PHY_ADDR 0x10
|
||||||
|
|
||||||
|
struct usbh_asix {
|
||||||
|
struct usbh_hubport *hport;
|
||||||
|
struct usb_endpoint_descriptor *bulkin; /* Bulk IN endpoint */
|
||||||
|
struct usb_endpoint_descriptor *bulkout; /* Bulk OUT endpoint */
|
||||||
|
struct usb_endpoint_descriptor *intin; /* INTR IN endpoint */
|
||||||
|
struct usbh_urb bulkout_urb;
|
||||||
|
struct usbh_urb bulkin_urb;
|
||||||
|
struct usbh_urb intin_urb;
|
||||||
|
|
||||||
|
uint8_t intf;
|
||||||
|
char *name;
|
||||||
|
uint8_t phy_addr;
|
||||||
|
uint8_t embd_phy;
|
||||||
|
uint8_t chipcode;
|
||||||
|
uint16_t mac_capabilities;
|
||||||
|
|
||||||
|
bool connect_status;
|
||||||
|
uint8_t mac[6];
|
||||||
|
|
||||||
|
ip_addr_t ipaddr;
|
||||||
|
ip_addr_t netmask;
|
||||||
|
ip_addr_t gateway;
|
||||||
|
};
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
int usbh_asix_get_notification(struct usbh_asix *asix_class);
|
||||||
|
|
||||||
|
void usbh_asix_run(struct usbh_asix *asix_class);
|
||||||
|
void usbh_asix_stop(struct usbh_asix *asix_class);
|
||||||
|
|
||||||
|
void usbh_asix_rx_thread(void *argument);
|
||||||
|
err_t usbh_asix_linkoutput(struct netif *netif, struct pbuf *p);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* USBH_ASIX_H */
|
||||||
121
demo/usb_host.c
121
demo/usb_host.c
@@ -13,8 +13,9 @@
|
|||||||
#define TEST_USBH_VIDEO 0
|
#define TEST_USBH_VIDEO 0
|
||||||
|
|
||||||
#if __has_include("lwip/pbuf.h")
|
#if __has_include("lwip/pbuf.h")
|
||||||
#define TEST_USBH_CDC_ECM 1
|
#define TEST_USBH_CDC_ECM 0
|
||||||
#define TEST_USBH_RNDIS 1
|
#define TEST_USBH_RNDIS 0
|
||||||
|
#define TEST_USBH_ASIX 0
|
||||||
#else
|
#else
|
||||||
#define TEST_USBH_CDC_ECM 0
|
#define TEST_USBH_CDC_ECM 0
|
||||||
#define TEST_USBH_RNDIS 0
|
#define TEST_USBH_RNDIS 0
|
||||||
@@ -349,7 +350,7 @@ void usbh_videostreaming_parse_yuyv2(struct usbh_urb *urb, struct usbh_videostre
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if TEST_USBH_CDC_ECM || TEST_USBH_RNDIS
|
#if TEST_USBH_CDC_ECM || TEST_USBH_RNDIS || TEST_USBH_ASIX
|
||||||
#include "netif/etharp.h"
|
#include "netif/etharp.h"
|
||||||
#include "lwip/netif.h"
|
#include "lwip/netif.h"
|
||||||
#include "lwip/pbuf.h"
|
#include "lwip/pbuf.h"
|
||||||
@@ -673,6 +674,118 @@ void usbh_rndis_stop(struct usbh_rndis *rndis_class)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if TEST_USBH_ASIX
|
||||||
|
#include "usbh_asix.h"
|
||||||
|
|
||||||
|
struct netif g_asix_netif;
|
||||||
|
|
||||||
|
#ifdef __RTTHREAD__
|
||||||
|
static struct eth_device asix_dev;
|
||||||
|
|
||||||
|
static rt_err_t rt_usbh_asix_control(rt_device_t dev, int cmd, void *args)
|
||||||
|
{
|
||||||
|
struct usbh_asix *asix_class = (struct usbh_asix *)dev->user_data;
|
||||||
|
|
||||||
|
switch (cmd) {
|
||||||
|
case NIOCTL_GADDR:
|
||||||
|
|
||||||
|
/* get mac address */
|
||||||
|
if (args)
|
||||||
|
rt_memcpy(args, asix_class->mac, 6);
|
||||||
|
else
|
||||||
|
return -RT_ERROR;
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return RT_EOK;
|
||||||
|
}
|
||||||
|
|
||||||
|
static rt_err_t rt_usbh_asix_eth_tx(rt_device_t dev, struct pbuf *p)
|
||||||
|
{
|
||||||
|
return usbh_asix_linkoutput(NULL, p);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static err_t usbh_asix_if_init(struct netif *netif)
|
||||||
|
{
|
||||||
|
LWIP_ASSERT("netif != NULL", (netif != NULL));
|
||||||
|
|
||||||
|
netif->mtu = 1500;
|
||||||
|
netif->flags = NETIF_FLAG_BROADCAST | NETIF_FLAG_ETHARP | NETIF_FLAG_LINK_UP | NETIF_FLAG_UP;
|
||||||
|
netif->state = NULL;
|
||||||
|
netif->name[0] = 'E';
|
||||||
|
netif->name[1] = 'X';
|
||||||
|
netif->output = etharp_output;
|
||||||
|
netif->linkoutput = usbh_asix_linkoutput;
|
||||||
|
return ERR_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
void usbh_asix_run(struct usbh_asix *asix_class)
|
||||||
|
{
|
||||||
|
#ifdef __RTTHREAD__
|
||||||
|
struct netdev *netdev;
|
||||||
|
|
||||||
|
memset(&asix_dev, 0, sizeof(struct eth_device));
|
||||||
|
|
||||||
|
asix_dev.parent.control = rt_usbh_asix_control;
|
||||||
|
asix_dev.eth_rx = NULL;
|
||||||
|
asix_dev.eth_tx = rt_usbh_asix_eth_tx;
|
||||||
|
asix_dev.parent.user_data = asix_class;
|
||||||
|
|
||||||
|
eth_device_init(&asix_dev, "u2");
|
||||||
|
eth_device_linkchange(&asix_dev, RT_TRUE);
|
||||||
|
|
||||||
|
usb_osal_thread_create("usbh_asix_rx", 2048, CONFIG_USBHOST_PSC_PRIO + 1, usbh_asix_rx_thread, asix_dev.netif);
|
||||||
|
#else
|
||||||
|
struct netif *netif = &g_asix_netif;
|
||||||
|
|
||||||
|
netif->hwaddr_len = 6;
|
||||||
|
memcpy(netif->hwaddr, asix_class->mac, 6);
|
||||||
|
|
||||||
|
IP4_ADDR(&asix_class->ipaddr, 0, 0, 0, 0);
|
||||||
|
IP4_ADDR(&asix_class->netmask, 0, 0, 0, 0);
|
||||||
|
IP4_ADDR(&asix_class->gateway, 0, 0, 0, 0);
|
||||||
|
|
||||||
|
netif = netif_add(netif, &asix_class->ipaddr, &asix_class->netmask, &asix_class->gateway, NULL, usbh_asix_if_init, tcpip_input);
|
||||||
|
netif_set_default(netif);
|
||||||
|
while (!netif_is_up(netif)) {
|
||||||
|
}
|
||||||
|
|
||||||
|
dhcp_handle1 = xTimerCreate((const char *)"dhcp1", (TickType_t)200, (UBaseType_t)pdTRUE, (void *const)netif, (TimerCallbackFunction_t)dhcp_timeout);
|
||||||
|
if (dhcp_handle1 == NULL) {
|
||||||
|
USB_LOG_ERR("timer creation failed! \r\n");
|
||||||
|
while (1) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
usb_osal_thread_create("usbh_asix_rx", 2048, CONFIG_USBHOST_PSC_PRIO + 1, usbh_asix_rx_thread, netif);
|
||||||
|
#if LWIP_DHCP
|
||||||
|
dhcp_start(netif);
|
||||||
|
xTimerStart(dhcp_handle1, 0);
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
void usbh_asix_stop(struct usbh_asix *asix_class)
|
||||||
|
{
|
||||||
|
#ifdef __RTTHREAD__
|
||||||
|
eth_device_deinit(&asix_dev);
|
||||||
|
#else
|
||||||
|
struct netif *netif = &g_asix_netif;
|
||||||
|
#if LWIP_DHCP
|
||||||
|
dhcp_stop(netif);
|
||||||
|
dhcp_cleanup(netif);
|
||||||
|
#endif
|
||||||
|
netif_set_down(netif);
|
||||||
|
netif_remove(netif);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void usbh_cdc_acm_run(struct usbh_cdc_acm *cdc_acm_class)
|
void usbh_cdc_acm_run(struct usbh_cdc_acm *cdc_acm_class)
|
||||||
{
|
{
|
||||||
#if TEST_USBH_CDC_ACM
|
#if TEST_USBH_CDC_ACM
|
||||||
@@ -737,7 +850,7 @@ void usbh_class_test(void)
|
|||||||
#ifdef __RTTHREAD__
|
#ifdef __RTTHREAD__
|
||||||
/* do nothing */
|
/* do nothing */
|
||||||
#else
|
#else
|
||||||
#if TEST_USBH_CDC_ECM || TEST_USBH_RNDIS
|
#if TEST_USBH_CDC_ECM || TEST_USBH_RNDIS || TEST_USBH_ASIX
|
||||||
/* Initialize the LwIP stack */
|
/* Initialize the LwIP stack */
|
||||||
tcpip_init(NULL, NULL);
|
tcpip_init(NULL, NULL);
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user