sh: sh_eth: Change new network API

sh_eth used old network API. This patch changed new API.

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
This commit is contained in:
Nobuhiro Iwamatsu 2008-11-21 12:04:18 +09:00 committed by Ben Warren
parent 890a02e8ee
commit bd3980cc09
4 changed files with 243 additions and 137 deletions

View file

@ -82,3 +82,11 @@ int dcache_status (void)
{ {
return 0; return 0;
} }
int cpu_eth_init(bd_t *bis)
{
#ifdef CONFIG_SH_ETHER
sh_eth_initialize(bis);
#endif
return 0;
}

View file

@ -24,6 +24,7 @@
#include <common.h> #include <common.h>
#include <malloc.h> #include <malloc.h>
#include <net.h> #include <net.h>
#include <netdev.h>
#include <asm/errno.h> #include <asm/errno.h>
#include <asm/io.h> #include <asm/io.h>
@ -36,12 +37,7 @@
# error "Please define CONFIG_SH_ETHER_PHY_ADDR" # error "Please define CONFIG_SH_ETHER_PHY_ADDR"
#endif #endif
extern int eth_init(bd_t *bd); #define SH_ETH_PHY_DELAY 50000
extern void eth_halt(void);
extern int eth_rx(void);
extern int eth_send(volatile void *packet, int length);
static struct dev_info_s *dev;
/* /*
* Bits are written to the PHY serially using the * Bits are written to the PHY serially using the
@ -89,7 +85,7 @@ static void sh_eth_mii_ind_bus_release(int port)
udelay(1); udelay(1);
} }
static int sh_eth_mii_read_phy_bits(int port, u32 * val, int len) static void sh_eth_mii_read_phy_bits(int port, u32 *val, int len)
{ {
int i; int i;
u32 pir; u32 pir;
@ -106,8 +102,6 @@ static int sh_eth_mii_read_phy_bits(int port, u32 * val, int len)
outl(0, PIR(port)); outl(0, PIR(port));
udelay(1); udelay(1);
} }
return 0;
} }
#define PHY_INIT 0xFFFFFFFF #define PHY_INIT 0xFFFFFFFF
@ -183,26 +177,23 @@ static void sh_eth_mii_write_phy_reg(int port, u8 phy_addr, int reg, u16 val)
sh_eth_mii_ind_bus_release(port); sh_eth_mii_ind_bus_release(port);
} }
void eth_halt(void) int sh_eth_send(struct eth_device *dev, volatile void *packet, int len)
{ {
} struct sh_eth_dev *eth = dev->priv;
int port = eth->port, ret = 0, timeout;
int eth_send(volatile void *packet, int len) struct sh_eth_info *port_info = &eth->port_info[port];
{
int port = dev->port;
struct port_info_s *port_info = &dev->port_info[port];
int timeout;
int rc = 0;
if (!packet || len > 0xffff) { if (!packet || len > 0xffff) {
printf("eth_send: Invalid argument\n"); printf(SHETHER_NAME ": %s: Invalid argument\n", __func__);
return -EINVAL; ret = -EINVAL;
goto err;
} }
/* packet must be a 4 byte boundary */ /* packet must be a 4 byte boundary */
if ((int)packet & (4 - 1)) { if ((int)packet & (4 - 1)) {
printf("eth_send: packet not 4 byte alligned\n"); printf(SHETHER_NAME ": %s: packet not 4 byte alligned\n", __func__);
return -EFAULT; ret = -EFAULT;
goto err;
} }
/* Update tx descriptor */ /* Update tx descriptor */
@ -224,24 +215,25 @@ int eth_send(volatile void *packet, int len)
udelay(100); udelay(100);
if (timeout < 0) { if (timeout < 0) {
printf("eth_send: transmit timeout\n"); printf(SHETHER_NAME ": transmit timeout\n");
rc = -1; ret = -ETIMEDOUT;
goto err; goto err;
} }
err:
port_info->tx_desc_cur++; port_info->tx_desc_cur++;
if (port_info->tx_desc_cur >= port_info->tx_desc_base + NUM_TX_DESC) if (port_info->tx_desc_cur >= port_info->tx_desc_base + NUM_TX_DESC)
port_info->tx_desc_cur = port_info->tx_desc_base; port_info->tx_desc_cur = port_info->tx_desc_base;
return rc; return ret;
err:
return ret;
} }
int eth_rx(void) int sh_eth_recv(struct eth_device *dev)
{ {
int port = dev->port; struct sh_eth_dev *eth = dev->priv;
struct port_info_s *port_info = &dev->port_info[port]; int port = eth->port, len = 0;
int len = 0; struct sh_eth_info *port_info = &eth->port_info[port];
volatile u8 *packet; volatile u8 *packet;
/* Check if the rx descriptor is ready */ /* Check if the rx descriptor is ready */
@ -275,10 +267,10 @@ int eth_rx(void)
} }
#define EDMR_INIT_CNT 1000 #define EDMR_INIT_CNT 1000
static int sh_eth_reset(struct dev_info_s *dev) static int sh_eth_reset(struct sh_eth_dev *eth)
{ {
int port = dev->port; int port = eth->port;
int i; int ret = 0, i;
/* Start e-dmac transmitter and receiver */ /* Start e-dmac transmitter and receiver */
outl(EDSR_ENALL, EDSR(port)); outl(EDSR_ENALL, EDSR(port));
@ -292,33 +284,36 @@ static int sh_eth_reset(struct dev_info_s *dev)
} }
if (i == EDMR_INIT_CNT) { if (i == EDMR_INIT_CNT) {
printf("Error: Software reset timeout\n"); printf(SHETHER_NAME ": Software reset timeout\n");
return -1; ret = -EIO;
}
return 0;
} }
static int sh_eth_tx_desc_init(struct dev_info_s *dev) return ret;
}
static int sh_eth_tx_desc_init(struct sh_eth_dev *eth)
{ {
int port = dev->port; int port = eth->port, i, ret = 0;
struct port_info_s *port_info = &dev->port_info[port];
u32 tmp_addr; u32 tmp_addr;
struct sh_eth_info *port_info = &eth->port_info[port];
struct tx_desc_s *cur_tx_desc; struct tx_desc_s *cur_tx_desc;
int i;
/* Allocate tx descriptors. They must be TX_DESC_SIZE bytes /*
aligned */ * Allocate tx descriptors. They must be TX_DESC_SIZE bytes aligned
if (!(port_info->tx_desc_malloc = malloc(NUM_TX_DESC * */
port_info->tx_desc_malloc = malloc(NUM_TX_DESC *
sizeof(struct tx_desc_s) + sizeof(struct tx_desc_s) +
TX_DESC_SIZE - 1))) { TX_DESC_SIZE - 1);
printf("Error: malloc failed\n"); if (!port_info->tx_desc_malloc) {
return -ENOMEM; printf(SHETHER_NAME ": malloc failed\n");
ret = -ENOMEM;
goto err;
} }
tmp_addr = (u32) (((int)port_info->tx_desc_malloc + TX_DESC_SIZE - 1) & tmp_addr = (u32) (((int)port_info->tx_desc_malloc + TX_DESC_SIZE - 1) &
~(TX_DESC_SIZE - 1)); ~(TX_DESC_SIZE - 1));
/* Make sure we use a P2 address (non-cacheable) */ /* Make sure we use a P2 address (non-cacheable) */
port_info->tx_desc_base = (struct tx_desc_s *)ADDR_TO_P2(tmp_addr); port_info->tx_desc_base = (struct tx_desc_s *)ADDR_TO_P2(tmp_addr);
port_info->tx_desc_cur = port_info->tx_desc_base; port_info->tx_desc_cur = port_info->tx_desc_base;
/* Initialize all descriptors */ /* Initialize all descriptors */
@ -340,26 +335,30 @@ static int sh_eth_tx_desc_init(struct dev_info_s *dev)
outl(ADDR_TO_PHY(cur_tx_desc), TDFXR(port)); outl(ADDR_TO_PHY(cur_tx_desc), TDFXR(port));
outl(0x01, TDFFR(port));/* Last discriptor bit */ outl(0x01, TDFFR(port));/* Last discriptor bit */
return 0; err:
return ret;
} }
static int sh_eth_rx_desc_init(struct dev_info_s *dev) static int sh_eth_rx_desc_init(struct sh_eth_dev *eth)
{ {
int port = dev->port; int port = eth->port, i , ret = 0;
struct port_info_s *port_info = &dev->port_info[port]; struct sh_eth_info *port_info = &eth->port_info[port];
u32 tmp_addr;
struct rx_desc_s *cur_rx_desc; struct rx_desc_s *cur_rx_desc;
u32 tmp_addr;
u8 *rx_buf; u8 *rx_buf;
int i;
/* Allocate rx descriptors. They must be RX_DESC_SIZE bytes /*
aligned */ * Allocate rx descriptors. They must be RX_DESC_SIZE bytes aligned
if (!(port_info->rx_desc_malloc = malloc(NUM_RX_DESC * */
port_info->rx_desc_malloc = malloc(NUM_RX_DESC *
sizeof(struct rx_desc_s) + sizeof(struct rx_desc_s) +
RX_DESC_SIZE - 1))) { RX_DESC_SIZE - 1);
printf("Error: malloc failed\n"); if (!port_info->rx_desc_malloc) {
return -ENOMEM; printf(SHETHER_NAME ": malloc failed\n");
ret = -ENOMEM;
goto err;
} }
tmp_addr = (u32) (((int)port_info->rx_desc_malloc + RX_DESC_SIZE - 1) & tmp_addr = (u32) (((int)port_info->rx_desc_malloc + RX_DESC_SIZE - 1) &
~(RX_DESC_SIZE - 1)); ~(RX_DESC_SIZE - 1));
/* Make sure we use a P2 address (non-cacheable) */ /* Make sure we use a P2 address (non-cacheable) */
@ -367,15 +366,17 @@ static int sh_eth_rx_desc_init(struct dev_info_s *dev)
port_info->rx_desc_cur = port_info->rx_desc_base; port_info->rx_desc_cur = port_info->rx_desc_base;
/* Allocate rx data buffers. They must be 32 bytes aligned and in /*
P2 area */ * Allocate rx data buffers. They must be 32 bytes aligned and in
if (!(port_info->rx_buf_malloc = malloc(NUM_RX_DESC * MAX_BUF_SIZE + * P2 area
31))) { */
printf("Error: malloc failed\n"); port_info->rx_buf_malloc = malloc(NUM_RX_DESC * MAX_BUF_SIZE + 31);
free(port_info->rx_desc_malloc); if (!port_info->rx_buf_malloc) {
port_info->rx_desc_malloc = NULL; printf(SHETHER_NAME ": malloc failed\n");
return -ENOMEM; ret = -ENOMEM;
goto err_buf_malloc;
} }
tmp_addr = (u32)(((int)port_info->rx_buf_malloc + (32 - 1)) & tmp_addr = (u32)(((int)port_info->rx_buf_malloc + (32 - 1)) &
~(32 - 1)); ~(32 - 1));
port_info->rx_buf_base = (u8 *)ADDR_TO_P2(tmp_addr); port_info->rx_buf_base = (u8 *)ADDR_TO_P2(tmp_addr);
@ -399,18 +400,31 @@ static int sh_eth_rx_desc_init(struct dev_info_s *dev)
outl(ADDR_TO_PHY(cur_rx_desc), RDFXR(port)); outl(ADDR_TO_PHY(cur_rx_desc), RDFXR(port));
outl(RDFFR_RDLF, RDFFR(port)); outl(RDFFR_RDLF, RDFFR(port));
return 0; return ret;
err_buf_malloc:
free(port_info->rx_desc_malloc);
port_info->rx_desc_malloc = NULL;
err:
return ret;
} }
static void sh_eth_desc_free(struct dev_info_s *dev) static void sh_eth_tx_desc_free(struct sh_eth_dev *eth)
{ {
int port = dev->port; int port = eth->port;
struct port_info_s *port_info = &dev->port_info[port]; struct sh_eth_info *port_info = &eth->port_info[port];
if (port_info->tx_desc_malloc) { if (port_info->tx_desc_malloc) {
free(port_info->tx_desc_malloc); free(port_info->tx_desc_malloc);
port_info->tx_desc_malloc = NULL; port_info->tx_desc_malloc = NULL;
} }
}
static void sh_eth_rx_desc_free(struct sh_eth_dev *eth)
{
int port = eth->port;
struct sh_eth_info *port_info = &eth->port_info[port];
if (port_info->rx_desc_malloc) { if (port_info->rx_desc_malloc) {
free(port_info->rx_desc_malloc); free(port_info->rx_desc_malloc);
@ -423,36 +437,48 @@ static void sh_eth_desc_free(struct dev_info_s *dev)
} }
} }
static int sh_eth_desc_init(struct dev_info_s *dev) static int sh_eth_desc_init(struct sh_eth_dev *eth)
{ {
int rc; int ret = 0;
if ((rc = sh_eth_tx_desc_init(dev)) || (rc = sh_eth_rx_desc_init(dev))) { ret = sh_eth_tx_desc_init(eth);
sh_eth_desc_free(dev); if (ret)
return rc; goto err_tx_init;
ret = sh_eth_rx_desc_init(eth);
if (ret)
goto err_rx_init;
return ret;
err_rx_init:
sh_eth_tx_desc_free(eth);
err_tx_init:
return ret;
} }
return 0; static int sh_eth_phy_config(struct sh_eth_dev *eth)
}
static int sh_eth_phy_config(struct dev_info_s *dev)
{ {
int port = dev->port; int port = eth->port, timeout, ret = 0;
struct port_info_s *port_info = &dev->port_info[port]; struct sh_eth_info *port_info = &eth->port_info[port];
int timeout;
u32 val; u32 val;
/* Reset phy */ /* Reset phy */
sh_eth_mii_write_phy_reg(port, port_info->phy_addr, PHY_CTRL, PHY_C_RESET); sh_eth_mii_write_phy_reg
(port, port_info->phy_addr, PHY_CTRL, PHY_C_RESET);
timeout = 10; timeout = 10;
while (timeout--) { while (timeout--) {
val = sh_eth_mii_read_phy_reg(port, port_info->phy_addr, PHY_CTRL); val = sh_eth_mii_read_phy_reg(port,
port_info->phy_addr, PHY_CTRL);
if (!(val & PHY_C_RESET)) if (!(val & PHY_C_RESET))
break; break;
udelay(50000); udelay(SH_ETH_PHY_DELAY);
} }
if (timeout < 0) { if (timeout < 0) {
printf("%s phy reset timeout\n", __func__); printf(SHETHER_NAME ": phy reset timeout\n");
return -1; ret = -EIO;
goto err_tout;
} }
/* Advertise 100/10 baseT full/half duplex */ /* Advertise 100/10 baseT full/half duplex */
@ -467,23 +493,27 @@ static int sh_eth_phy_config(struct dev_info_s *dev)
val = sh_eth_mii_read_phy_reg(port, port_info->phy_addr, 1); val = sh_eth_mii_read_phy_reg(port, port_info->phy_addr, 1);
if (val & PHY_S_ANEGC) if (val & PHY_S_ANEGC)
break; break;
udelay(50000);
udelay(SH_ETH_PHY_DELAY);
} }
if (timeout < 0) { if (timeout < 0) {
printf("sh_eth_phy_config() phy auto-negotiation failed\n"); printf(SHETHER_NAME ": phy auto-negotiation failed\n");
return -1; ret = -ETIMEDOUT;
goto err_tout;
} }
return 0; return ret;
err_tout:
return ret;
} }
static int sh_eth_config(struct dev_info_s *dev, bd_t * bd) static int sh_eth_config(struct sh_eth_dev *eth, bd_t *bd)
{ {
int port = dev->port; int port = eth->port, ret = 0;
struct port_info_s *port_info = &dev->port_info[port]; u32 val, phy_status;
u32 val; struct sh_eth_info *port_info = &eth->port_info[port];
u32 phy_status;
int rc;
/* Configure e-dmac registers */ /* Configure e-dmac registers */
outl((inl(EDMR(port)) & ~EMDR_DESC_R) | EDMR_EL, EDMR(port)); outl((inl(EDMR(port)) & ~EMDR_DESC_R) | EDMR_EL, EDMR(port));
@ -513,20 +543,20 @@ static int sh_eth_config(struct dev_info_s *dev, bd_t * bd)
outl(TPAUSER_TPAUSE, TPAUSER(port)); outl(TPAUSER_TPAUSE, TPAUSER(port));
/* Configure phy */ /* Configure phy */
if ((rc = sh_eth_phy_config(dev))) ret = sh_eth_phy_config(eth);
return rc; if (ret) {
printf(SHETHER_NAME ":i phy config timeout\n");
goto err_phy_cfg;
}
/* Read phy status to finish configuring the e-mac */ /* Read phy status to finish configuring the e-mac */
phy_status = sh_eth_mii_read_phy_reg(dev->port, phy_status = sh_eth_mii_read_phy_reg(port, port_info->phy_addr, 1);
dev->port_info[dev->port].phy_addr,
1);
/* Set the transfer speed */ /* Set the transfer speed */
if (phy_status & (PHY_S_100X_F|PHY_S_100X_H)) { if (phy_status & (PHY_S_100X_F|PHY_S_100X_H)) {
printf("100Base/"); printf(SHETHER_NAME ": 100Base/");
outl(GECMR_100B, GECMR(port)); outl(GECMR_100B, GECMR(port));
} else { } else {
printf("10Base/"); printf(SHETHER_NAME ": 10Base/");
outl(GECMR_10B, GECMR(port)); outl(GECMR_10B, GECMR(port));
} }
@ -538,27 +568,34 @@ static int sh_eth_config(struct dev_info_s *dev, bd_t * bd)
printf("Half\n"); printf("Half\n");
outl((ECMR_CHG_DM|ECMR_RE|ECMR_TE), ECMR(port)); outl((ECMR_CHG_DM|ECMR_RE|ECMR_TE), ECMR(port));
} }
return 0;
return ret;
err_phy_cfg:
return ret;
} }
static int sh_eth_start(struct dev_info_s *dev) static void sh_eth_start(struct sh_eth_dev *eth)
{ {
/* /*
* Enable the e-dmac receiver only. The transmitter will be enabled when * Enable the e-dmac receiver only. The transmitter will be enabled when
* we have something to transmit * we have something to transmit
*/ */
outl(EDRRR_R, EDRRR(dev->port)); outl(EDRRR_R, EDRRR(eth->port));
}
return 0; static void sh_eth_stop(struct sh_eth_dev *eth)
{
outl(~EDRRR_R, EDRRR(eth->port));
} }
static int sh_eth_get_mac(bd_t *bd) static int sh_eth_get_mac(bd_t *bd)
{ {
char *s, *e; char *s, *e;
int i;
s = getenv("ethaddr"); s = getenv("ethaddr");
if (s != NULL) { if (s != NULL) {
int i;
for (i = 0; i < 6; ++i) { for (i = 0; i < 6; ++i) {
bd->bi_enetaddr[i] = s ? simple_strtoul(s, &e, 16) : 0; bd->bi_enetaddr[i] = s ? simple_strtoul(s, &e, 16) : 0;
if (s) if (s)
@ -570,34 +607,92 @@ static int sh_eth_get_mac(bd_t *bd)
return 0; return 0;
} }
int eth_init(bd_t *bd) int sh_eth_init(struct eth_device *dev, bd_t *bd)
{ {
int rc; int ret = 0;
/* Allocate main device information structure */ struct sh_eth_dev *eth = dev->priv;
if (!(dev = malloc(sizeof(*dev)))) {
printf("eth_init: malloc failed\n"); ret = sh_eth_reset(eth);
return -ENOMEM; if (ret)
goto err;
ret = sh_eth_desc_init(eth);
if (ret)
goto err;
ret = sh_eth_config(eth, bd);
if (ret)
goto err_config;
sh_eth_start(eth);
return ret;
err_config:
sh_eth_tx_desc_free(eth);
sh_eth_rx_desc_free(eth);
err:
return ret;
} }
memset(dev, 0, sizeof(*dev)); void sh_eth_halt(struct eth_device *dev)
{
struct sh_eth_dev *eth = dev->priv;
dev->port = CONFIG_SH_ETHER_USE_PORT; sh_eth_reset(eth);
dev->port_info[dev->port].phy_addr = CONFIG_SH_ETHER_PHY_ADDR; sh_eth_stop(eth);
}
int sh_eth_initialize(bd_t *bd)
{
int ret = 0;
struct sh_eth_dev *eth = NULL;
struct eth_device *dev = NULL;
eth = (struct sh_eth_dev *)malloc(sizeof(struct sh_eth_dev));
if (!eth) {
printf(SHETHER_NAME ": %s: malloc failed\n", __func__);
ret = -ENOMEM;
goto err;
}
dev = (struct eth_device *)malloc(sizeof(struct eth_device));
if (!dev) {
printf(SHETHER_NAME ": %s: malloc failed\n", __func__);
ret = -ENOMEM;
goto err;
}
memset(dev, 0, sizeof(struct eth_device));
memset(eth, 0, sizeof(struct sh_eth_dev));
eth->port = CONFIG_SH_ETHER_USE_PORT;
eth->port_info[eth->port].phy_addr = CONFIG_SH_ETHER_PHY_ADDR;
dev->priv = (void *)eth;
dev->iobase = 0;
dev->init = sh_eth_init;
dev->halt = sh_eth_halt;
dev->send = sh_eth_send;
dev->recv = sh_eth_recv;
eth->port_info[eth->port].dev = dev;
sprintf(dev->name, SHETHER_NAME);
/* Register Device to EtherNet subsystem */
eth_register(dev);
sh_eth_get_mac(bd); sh_eth_get_mac(bd);
if ((rc = sh_eth_reset(dev)) || (rc = sh_eth_desc_init(dev))) return ret;
goto err;
if ((rc = sh_eth_config(dev, bd)) || (rc = sh_eth_start(dev)))
goto err_desc;
return 0;
err_desc:
sh_eth_desc_free(dev);
err: err:
if (dev)
free(dev); free(dev);
printf("eth_init: Failed\n");
return rc; if (eth)
free(eth);
printf(SHETHER_NAME ": Failed\n");
return ret;
} }

View file

@ -20,6 +20,7 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include <netdev.h>
#include <asm/types.h> #include <asm/types.h>
#define SHETHER_NAME "sh_eth" #define SHETHER_NAME "sh_eth"
@ -48,7 +49,7 @@
#define TX_DESC_PADDING 4 #define TX_DESC_PADDING 4
#define TX_DESC_SIZE (12 + TX_DESC_PADDING) #define TX_DESC_SIZE (12 + TX_DESC_PADDING)
/* Tx descriptor. We always use 4 bytes of padding */ /* Tx descriptor. We always use 3 bytes of padding */
struct tx_desc_s { struct tx_desc_s {
volatile u32 td0; volatile u32 td0;
u32 td1; u32 td1;
@ -72,7 +73,7 @@ struct rx_desc_s {
u32 padding; u32 padding;
}; };
struct port_info_s { struct sh_eth_info {
struct tx_desc_s *tx_desc_malloc; struct tx_desc_s *tx_desc_malloc;
struct tx_desc_s *tx_desc_base; struct tx_desc_s *tx_desc_base;
struct tx_desc_s *tx_desc_cur; struct tx_desc_s *tx_desc_cur;
@ -83,11 +84,12 @@ struct port_info_s {
u8 *rx_buf_base; u8 *rx_buf_base;
u8 mac_addr[6]; u8 mac_addr[6];
u8 phy_addr; u8 phy_addr;
struct eth_device *dev;
}; };
struct dev_info_s { struct sh_eth_dev {
int port; int port;
struct port_info_s port_info[MAX_PORT_NUM]; struct sh_eth_info port_info[MAX_PORT_NUM];
}; };
/* Register Address */ /* Register Address */

View file

@ -70,6 +70,7 @@ int skge_initialize(bd_t *bis);
int tsi108_eth_initialize(bd_t *bis); int tsi108_eth_initialize(bd_t *bis);
int uec_initialize(int index); int uec_initialize(int index);
int uli526x_initialize(bd_t *bis); int uli526x_initialize(bd_t *bis);
int sh_eth_initialize(bd_t *bis);
/* Boards with PCI network controllers can call this from their board_eth_init() /* Boards with PCI network controllers can call this from their board_eth_init()
* function to initialize whatever's on board. * function to initialize whatever's on board.