624 lines
14 KiB
C
624 lines
14 KiB
C
/* W5500 Stand-alone Ethernet Controller with SPI
|
|
*
|
|
* Copyright (c) 2020 Linumiz
|
|
* Author: Parthiban Nallathambi <parthiban@linumiz.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#define DT_DRV_COMPAT wiznet_w5500
|
|
|
|
#include <zephyr/logging/log.h>
|
|
LOG_MODULE_REGISTER(eth_w5500, CONFIG_ETHERNET_LOG_LEVEL);
|
|
|
|
#include <zephyr/kernel.h>
|
|
#include <zephyr/device.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <zephyr/drivers/gpio.h>
|
|
#include <zephyr/drivers/spi.h>
|
|
#include <zephyr/net/net_pkt.h>
|
|
#include <zephyr/net/net_if.h>
|
|
#include <zephyr/net/ethernet.h>
|
|
#include <ethernet/eth_stats.h>
|
|
|
|
#include "eth.h"
|
|
#include "eth_w5500_priv.h"
|
|
|
|
#define WIZNET_OUI_B0 0x00
|
|
#define WIZNET_OUI_B1 0x08
|
|
#define WIZNET_OUI_B2 0xdc
|
|
|
|
#define W5500_SPI_BLOCK_SELECT(addr) (((addr) >> 16) & 0x1f)
|
|
#define W5500_SPI_READ_CONTROL(addr) (W5500_SPI_BLOCK_SELECT(addr) << 3)
|
|
#define W5500_SPI_WRITE_CONTROL(addr) \
|
|
((W5500_SPI_BLOCK_SELECT(addr) << 3) | BIT(2))
|
|
|
|
static int w5500_spi_read(const struct device *dev, uint32_t addr,
|
|
uint8_t *data, uint32_t len)
|
|
{
|
|
const struct w5500_config *cfg = dev->config;
|
|
int ret;
|
|
|
|
uint8_t cmd[3] = {
|
|
addr >> 8,
|
|
addr,
|
|
W5500_SPI_READ_CONTROL(addr)
|
|
};
|
|
const struct spi_buf tx_buf = {
|
|
.buf = cmd,
|
|
.len = ARRAY_SIZE(cmd),
|
|
};
|
|
const struct spi_buf_set tx = {
|
|
.buffers = &tx_buf,
|
|
.count = 1,
|
|
};
|
|
/* skip the default dummy 0x010203 */
|
|
const struct spi_buf rx_buf[2] = {
|
|
{
|
|
.buf = NULL,
|
|
.len = 3
|
|
},
|
|
{
|
|
.buf = data,
|
|
.len = len
|
|
},
|
|
};
|
|
const struct spi_buf_set rx = {
|
|
.buffers = rx_buf,
|
|
.count = ARRAY_SIZE(rx_buf),
|
|
};
|
|
|
|
ret = spi_transceive_dt(&cfg->spi, &tx, &rx);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int w5500_spi_write(const struct device *dev, uint32_t addr,
|
|
uint8_t *data, uint32_t len)
|
|
{
|
|
const struct w5500_config *cfg = dev->config;
|
|
int ret;
|
|
uint8_t cmd[3] = {
|
|
addr >> 8,
|
|
addr,
|
|
W5500_SPI_WRITE_CONTROL(addr),
|
|
};
|
|
const struct spi_buf tx_buf[2] = {
|
|
{
|
|
.buf = cmd,
|
|
.len = ARRAY_SIZE(cmd),
|
|
},
|
|
{
|
|
.buf = data,
|
|
.len = len,
|
|
},
|
|
};
|
|
const struct spi_buf_set tx = {
|
|
.buffers = tx_buf,
|
|
.count = ARRAY_SIZE(tx_buf),
|
|
};
|
|
|
|
ret = spi_write_dt(&cfg->spi, &tx);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int w5500_readbuf(const struct device *dev, uint16_t offset, uint8_t *buf,
|
|
int len)
|
|
{
|
|
uint32_t addr;
|
|
int remain = 0;
|
|
int ret;
|
|
const uint32_t mem_start = W5500_Sn_RX_MEM_START;
|
|
const uint16_t mem_size = W5500_RX_MEM_SIZE;
|
|
|
|
offset %= mem_size;
|
|
addr = mem_start + offset;
|
|
|
|
if (offset + len > mem_size) {
|
|
remain = (offset + len) % mem_size;
|
|
len = mem_size - offset;
|
|
}
|
|
|
|
ret = w5500_spi_read(dev, addr, buf, len);
|
|
if (ret || !remain) {
|
|
return ret;
|
|
}
|
|
|
|
return w5500_spi_read(dev, mem_start, buf + len, remain);
|
|
}
|
|
|
|
static int w5500_writebuf(const struct device *dev, uint16_t offset, uint8_t *buf,
|
|
int len)
|
|
{
|
|
uint32_t addr;
|
|
int ret = 0;
|
|
int remain = 0;
|
|
const uint32_t mem_start = W5500_Sn_TX_MEM_START;
|
|
const uint32_t mem_size = W5500_TX_MEM_SIZE;
|
|
|
|
offset %= mem_size;
|
|
addr = mem_start + offset;
|
|
|
|
if (offset + len > mem_size) {
|
|
remain = (offset + len) % mem_size;
|
|
len = mem_size - offset;
|
|
}
|
|
|
|
ret = w5500_spi_write(dev, addr, buf, len);
|
|
if (ret || !remain) {
|
|
return ret;
|
|
}
|
|
|
|
return w5500_spi_write(dev, mem_start, buf + len, remain);
|
|
}
|
|
|
|
static int w5500_command(const struct device *dev, uint8_t cmd)
|
|
{
|
|
uint8_t reg;
|
|
k_timepoint_t end = sys_timepoint_calc(K_MSEC(100));
|
|
|
|
w5500_spi_write(dev, W5500_S0_CR, &cmd, 1);
|
|
while (1) {
|
|
w5500_spi_read(dev, W5500_S0_CR, ®, 1);
|
|
if (!reg) {
|
|
break;
|
|
}
|
|
if (sys_timepoint_expired(end)) {
|
|
return -EIO;
|
|
}
|
|
k_busy_wait(W5500_PHY_ACCESS_DELAY);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int w5500_tx(const struct device *dev, struct net_pkt *pkt)
|
|
{
|
|
struct w5500_runtime *ctx = dev->data;
|
|
uint16_t len = net_pkt_get_len(pkt);
|
|
uint16_t offset;
|
|
uint8_t off[2];
|
|
int ret;
|
|
|
|
w5500_spi_read(dev, W5500_S0_TX_WR, off, 2);
|
|
offset = sys_get_be16(off);
|
|
|
|
if (net_pkt_read(pkt, ctx->buf, len)) {
|
|
return -EIO;
|
|
}
|
|
|
|
ret = w5500_writebuf(dev, offset, ctx->buf, len);
|
|
if (ret < 0) {
|
|
return ret;
|
|
}
|
|
|
|
sys_put_be16(offset + len, off);
|
|
w5500_spi_write(dev, W5500_S0_TX_WR, off, 2);
|
|
|
|
w5500_command(dev, S0_CR_SEND);
|
|
if (k_sem_take(&ctx->tx_sem, K_MSEC(10))) {
|
|
return -EIO;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void w5500_rx(const struct device *dev)
|
|
{
|
|
uint8_t header[2];
|
|
uint8_t tmp[2];
|
|
uint16_t off;
|
|
uint16_t rx_len;
|
|
uint16_t rx_buf_len;
|
|
uint16_t read_len;
|
|
uint16_t reader;
|
|
struct net_buf *pkt_buf = NULL;
|
|
struct net_pkt *pkt;
|
|
struct w5500_runtime *ctx = dev->data;
|
|
const struct w5500_config *config = dev->config;
|
|
|
|
w5500_spi_read(dev, W5500_S0_RX_RSR, tmp, 2);
|
|
rx_buf_len = sys_get_be16(tmp);
|
|
|
|
if (rx_buf_len == 0) {
|
|
return;
|
|
}
|
|
|
|
w5500_spi_read(dev, W5500_S0_RX_RD, tmp, 2);
|
|
off = sys_get_be16(tmp);
|
|
|
|
w5500_readbuf(dev, off, header, 2);
|
|
rx_len = sys_get_be16(header) - 2;
|
|
|
|
pkt = net_pkt_rx_alloc_with_buffer(ctx->iface, rx_len,
|
|
AF_UNSPEC, 0, K_MSEC(config->timeout));
|
|
if (!pkt) {
|
|
eth_stats_update_errors_rx(ctx->iface);
|
|
return;
|
|
}
|
|
|
|
pkt_buf = pkt->buffer;
|
|
|
|
read_len = rx_len;
|
|
reader = off + 2;
|
|
|
|
do {
|
|
size_t frag_len;
|
|
uint8_t *data_ptr;
|
|
size_t frame_len;
|
|
|
|
data_ptr = pkt_buf->data;
|
|
|
|
frag_len = net_buf_tailroom(pkt_buf);
|
|
|
|
if (read_len > frag_len) {
|
|
frame_len = frag_len;
|
|
} else {
|
|
frame_len = read_len;
|
|
}
|
|
|
|
w5500_readbuf(dev, reader, data_ptr, frame_len);
|
|
net_buf_add(pkt_buf, frame_len);
|
|
reader += frame_len;
|
|
|
|
read_len -= frame_len;
|
|
pkt_buf = pkt_buf->frags;
|
|
} while (read_len > 0);
|
|
|
|
if (net_recv_data(ctx->iface, pkt) < 0) {
|
|
net_pkt_unref(pkt);
|
|
}
|
|
|
|
sys_put_be16(off + 2 + rx_len, tmp);
|
|
w5500_spi_write(dev, W5500_S0_RX_RD, tmp, 2);
|
|
w5500_command(dev, S0_CR_RECV);
|
|
}
|
|
|
|
static void w5500_update_link_status(const struct device *dev)
|
|
{
|
|
uint8_t phycfgr;
|
|
struct w5500_runtime *ctx = dev->data;
|
|
|
|
if (w5500_spi_read(dev, W5500_PHYCFGR, &phycfgr, 1) < 0) {
|
|
return;
|
|
}
|
|
|
|
if (phycfgr & 0x01) {
|
|
if (ctx->link_up != true) {
|
|
LOG_INF("%s: Link up", dev->name);
|
|
ctx->link_up = true;
|
|
net_eth_carrier_on(ctx->iface);
|
|
}
|
|
} else {
|
|
if (ctx->link_up != false) {
|
|
LOG_INF("%s: Link down", dev->name);
|
|
ctx->link_up = false;
|
|
net_eth_carrier_off(ctx->iface);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void w5500_thread(void *p1, void *p2, void *p3)
|
|
{
|
|
ARG_UNUSED(p2);
|
|
ARG_UNUSED(p3);
|
|
|
|
const struct device *dev = p1;
|
|
uint8_t ir;
|
|
int res;
|
|
struct w5500_runtime *ctx = dev->data;
|
|
const struct w5500_config *config = dev->config;
|
|
|
|
while (true) {
|
|
res = k_sem_take(&ctx->int_sem, K_MSEC(CONFIG_PHY_MONITOR_PERIOD));
|
|
|
|
if (res == 0) {
|
|
/* semaphore taken, update link status and receive packets */
|
|
if (ctx->link_up != true) {
|
|
w5500_update_link_status(dev);
|
|
}
|
|
|
|
while (gpio_pin_get_dt(&(config->interrupt))) {
|
|
/* Read interrupt */
|
|
w5500_spi_read(dev, W5500_S0_IR, &ir, 1);
|
|
|
|
if (ir) {
|
|
/* Clear interrupt */
|
|
w5500_spi_write(dev, W5500_S0_IR, &ir, 1);
|
|
|
|
LOG_DBG("IR received");
|
|
|
|
if (ir & S0_IR_SENDOK) {
|
|
k_sem_give(&ctx->tx_sem);
|
|
LOG_DBG("TX Done");
|
|
}
|
|
|
|
if (ir & S0_IR_RECV) {
|
|
w5500_rx(dev);
|
|
LOG_DBG("RX Done");
|
|
}
|
|
}
|
|
}
|
|
} else if (res == -EAGAIN) {
|
|
/* semaphore timeout period expired, check link status */
|
|
w5500_update_link_status(dev);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void w5500_iface_init(struct net_if *iface)
|
|
{
|
|
const struct device *dev = net_if_get_device(iface);
|
|
struct w5500_runtime *ctx = dev->data;
|
|
|
|
net_if_set_link_addr(iface, ctx->mac_addr,
|
|
sizeof(ctx->mac_addr),
|
|
NET_LINK_ETHERNET);
|
|
|
|
if (!ctx->iface) {
|
|
ctx->iface = iface;
|
|
}
|
|
|
|
ethernet_init(iface);
|
|
|
|
/* Do not start the interface until PHY link is up */
|
|
net_if_carrier_off(iface);
|
|
}
|
|
|
|
static enum ethernet_hw_caps w5500_get_capabilities(const struct device *dev)
|
|
{
|
|
ARG_UNUSED(dev);
|
|
|
|
return ETHERNET_LINK_10BASE_T | ETHERNET_LINK_100BASE_T
|
|
#if defined(CONFIG_NET_PROMISCUOUS_MODE)
|
|
| ETHERNET_PROMISC_MODE
|
|
#endif
|
|
;
|
|
}
|
|
|
|
static int w5500_set_config(const struct device *dev,
|
|
enum ethernet_config_type type,
|
|
const struct ethernet_config *config)
|
|
{
|
|
struct w5500_runtime *ctx = dev->data;
|
|
|
|
switch (type) {
|
|
case ETHERNET_CONFIG_TYPE_MAC_ADDRESS:
|
|
memcpy(ctx->mac_addr,
|
|
config->mac_address.addr,
|
|
sizeof(ctx->mac_addr));
|
|
w5500_spi_write(dev, W5500_SHAR, ctx->mac_addr, sizeof(ctx->mac_addr));
|
|
LOG_INF("%s MAC set to %02x:%02x:%02x:%02x:%02x:%02x",
|
|
dev->name,
|
|
ctx->mac_addr[0], ctx->mac_addr[1],
|
|
ctx->mac_addr[2], ctx->mac_addr[3],
|
|
ctx->mac_addr[4], ctx->mac_addr[5]);
|
|
|
|
/* Register Ethernet MAC Address with the upper layer */
|
|
net_if_set_link_addr(ctx->iface, ctx->mac_addr,
|
|
sizeof(ctx->mac_addr),
|
|
NET_LINK_ETHERNET);
|
|
|
|
return 0;
|
|
case ETHERNET_CONFIG_TYPE_PROMISC_MODE:
|
|
if (IS_ENABLED(CONFIG_NET_PROMISCUOUS_MODE)) {
|
|
uint8_t mode;
|
|
uint8_t mr = W5500_S0_MR_MF;
|
|
|
|
w5500_spi_read(dev, W5500_S0_MR, &mode, 1);
|
|
|
|
if (config->promisc_mode) {
|
|
if (!(mode & BIT(mr))) {
|
|
return -EALREADY;
|
|
}
|
|
|
|
/* disable MAC filtering */
|
|
WRITE_BIT(mode, mr, 0);
|
|
} else {
|
|
if (mode & BIT(mr)) {
|
|
return -EALREADY;
|
|
}
|
|
|
|
/* enable MAC filtering */
|
|
WRITE_BIT(mode, mr, 1);
|
|
}
|
|
|
|
return w5500_spi_write(dev, W5500_S0_MR, &mode, 1);
|
|
}
|
|
|
|
return -ENOTSUP;
|
|
default:
|
|
return -ENOTSUP;
|
|
}
|
|
}
|
|
|
|
static int w5500_hw_start(const struct device *dev)
|
|
{
|
|
uint8_t mode = S0_MR_MACRAW | BIT(W5500_S0_MR_MF);
|
|
uint8_t mask = IR_S0;
|
|
|
|
/* configure Socket 0 with MACRAW mode and MAC filtering enabled */
|
|
w5500_spi_write(dev, W5500_S0_MR, &mode, 1);
|
|
w5500_command(dev, S0_CR_OPEN);
|
|
|
|
/* enable interrupt */
|
|
w5500_spi_write(dev, W5500_SIMR, &mask, 1);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int w5500_hw_stop(const struct device *dev)
|
|
{
|
|
uint8_t mask = 0;
|
|
|
|
/* disable interrupt */
|
|
w5500_spi_write(dev, W5500_SIMR, &mask, 1);
|
|
w5500_command(dev, S0_CR_CLOSE);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct ethernet_api w5500_api_funcs = {
|
|
.iface_api.init = w5500_iface_init,
|
|
.get_capabilities = w5500_get_capabilities,
|
|
.set_config = w5500_set_config,
|
|
.start = w5500_hw_start,
|
|
.stop = w5500_hw_stop,
|
|
.send = w5500_tx,
|
|
};
|
|
|
|
static int w5500_soft_reset(const struct device *dev)
|
|
{
|
|
int ret;
|
|
uint8_t mask = 0;
|
|
uint8_t tmp = MR_RST;
|
|
|
|
ret = w5500_spi_write(dev, W5500_MR, &tmp, 1);
|
|
if (ret < 0) {
|
|
return ret;
|
|
}
|
|
|
|
k_msleep(5);
|
|
tmp = MR_PB;
|
|
w5500_spi_write(dev, W5500_MR, &tmp, 1);
|
|
|
|
/* disable interrupt */
|
|
return w5500_spi_write(dev, W5500_SIMR, &mask, 1);
|
|
}
|
|
|
|
static void w5500_gpio_callback(const struct device *dev,
|
|
struct gpio_callback *cb,
|
|
uint32_t pins)
|
|
{
|
|
struct w5500_runtime *ctx =
|
|
CONTAINER_OF(cb, struct w5500_runtime, gpio_cb);
|
|
|
|
k_sem_give(&ctx->int_sem);
|
|
}
|
|
|
|
static void w5500_set_macaddr(const struct device *dev)
|
|
{
|
|
struct w5500_runtime *ctx = dev->data;
|
|
|
|
#if DT_INST_PROP(0, zephyr_random_mac_address)
|
|
gen_random_mac(ctx->mac_addr, WIZNET_OUI_B0, WIZNET_OUI_B1, WIZNET_OUI_B2);
|
|
#endif
|
|
|
|
w5500_spi_write(dev, W5500_SHAR, ctx->mac_addr, sizeof(ctx->mac_addr));
|
|
}
|
|
|
|
static void w5500_memory_configure(const struct device *dev)
|
|
{
|
|
int i;
|
|
uint8_t mem = 0x10;
|
|
|
|
/* Configure RX & TX memory to 16K */
|
|
w5500_spi_write(dev, W5500_Sn_RXMEM_SIZE(0), &mem, 1);
|
|
w5500_spi_write(dev, W5500_Sn_TXMEM_SIZE(0), &mem, 1);
|
|
|
|
mem = 0;
|
|
for (i = 1; i < 8; i++) {
|
|
w5500_spi_write(dev, W5500_Sn_RXMEM_SIZE(i), &mem, 1);
|
|
w5500_spi_write(dev, W5500_Sn_TXMEM_SIZE(i), &mem, 1);
|
|
}
|
|
}
|
|
|
|
static int w5500_init(const struct device *dev)
|
|
{
|
|
int err;
|
|
uint8_t rtr[2];
|
|
const struct w5500_config *config = dev->config;
|
|
struct w5500_runtime *ctx = dev->data;
|
|
|
|
ctx->link_up = false;
|
|
|
|
if (!spi_is_ready_dt(&config->spi)) {
|
|
LOG_ERR("SPI master port %s not ready", config->spi.bus->name);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (!gpio_is_ready_dt(&config->interrupt)) {
|
|
LOG_ERR("GPIO port %s not ready", config->interrupt.port->name);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (gpio_pin_configure_dt(&config->interrupt, GPIO_INPUT)) {
|
|
LOG_ERR("Unable to configure GPIO pin %u", config->interrupt.pin);
|
|
return -EINVAL;
|
|
}
|
|
|
|
gpio_init_callback(&(ctx->gpio_cb), w5500_gpio_callback,
|
|
BIT(config->interrupt.pin));
|
|
|
|
if (gpio_add_callback(config->interrupt.port, &(ctx->gpio_cb))) {
|
|
return -EINVAL;
|
|
}
|
|
|
|
gpio_pin_interrupt_configure_dt(&config->interrupt,
|
|
GPIO_INT_EDGE_FALLING);
|
|
|
|
if (config->reset.port) {
|
|
if (!gpio_is_ready_dt(&config->reset)) {
|
|
LOG_ERR("GPIO port %s not ready", config->reset.port->name);
|
|
return -EINVAL;
|
|
}
|
|
if (gpio_pin_configure_dt(&config->reset, GPIO_OUTPUT)) {
|
|
LOG_ERR("Unable to configure GPIO pin %u", config->reset.pin);
|
|
return -EINVAL;
|
|
}
|
|
gpio_pin_set_dt(&config->reset, 0);
|
|
k_usleep(500);
|
|
}
|
|
|
|
err = w5500_soft_reset(dev);
|
|
if (err) {
|
|
LOG_ERR("Reset failed");
|
|
return err;
|
|
}
|
|
|
|
w5500_set_macaddr(dev);
|
|
w5500_memory_configure(dev);
|
|
|
|
/* check retry time value */
|
|
w5500_spi_read(dev, W5500_RTR, rtr, 2);
|
|
if (sys_get_be16(rtr) != RTR_DEFAULT) {
|
|
LOG_ERR("Unable to read RTR register");
|
|
return -ENODEV;
|
|
}
|
|
|
|
k_thread_create(&ctx->thread, ctx->thread_stack,
|
|
CONFIG_ETH_W5500_RX_THREAD_STACK_SIZE,
|
|
w5500_thread,
|
|
(void *)dev, NULL, NULL,
|
|
K_PRIO_COOP(CONFIG_ETH_W5500_RX_THREAD_PRIO),
|
|
0, K_NO_WAIT);
|
|
k_thread_name_set(&ctx->thread, "eth_w5500");
|
|
|
|
LOG_INF("W5500 Initialized");
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct w5500_runtime w5500_0_runtime = {
|
|
#if NODE_HAS_VALID_MAC_ADDR(DT_DRV_INST(0))
|
|
.mac_addr = DT_INST_PROP(0, local_mac_address),
|
|
#endif
|
|
.tx_sem = Z_SEM_INITIALIZER(w5500_0_runtime.tx_sem,
|
|
1, UINT_MAX),
|
|
.int_sem = Z_SEM_INITIALIZER(w5500_0_runtime.int_sem,
|
|
0, UINT_MAX),
|
|
};
|
|
|
|
static const struct w5500_config w5500_0_config = {
|
|
.spi = SPI_DT_SPEC_INST_GET(0, SPI_WORD_SET(8), 0),
|
|
.interrupt = GPIO_DT_SPEC_INST_GET(0, int_gpios),
|
|
.reset = GPIO_DT_SPEC_INST_GET_OR(0, reset_gpios, { 0 }),
|
|
.timeout = CONFIG_ETH_W5500_TIMEOUT,
|
|
};
|
|
|
|
ETH_NET_DEVICE_DT_INST_DEFINE(0,
|
|
w5500_init, NULL,
|
|
&w5500_0_runtime, &w5500_0_config,
|
|
CONFIG_ETH_INIT_PRIORITY, &w5500_api_funcs, NET_ETH_MTU);
|