2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2008-06-11 12:05:00 +00:00
|
|
|
/*
|
2016-05-04 08:47:31 +00:00
|
|
|
* sh_eth.c - Driver for Renesas ethernet controller.
|
2008-06-11 12:05:00 +00:00
|
|
|
*
|
2011-11-14 07:56:59 +00:00
|
|
|
* Copyright (C) 2008, 2011 Renesas Solutions Corp.
|
2014-11-04 00:15:48 +00:00
|
|
|
* Copyright (c) 2008, 2011, 2014 2014 Nobuhiro Iwamatsu
|
2008-06-11 12:05:00 +00:00
|
|
|
* Copyright (c) 2007 Carlos Munoz <carlos@kenati.com>
|
2014-11-04 00:15:48 +00:00
|
|
|
* Copyright (C) 2013, 2014 Renesas Electronics Corporation
|
2008-06-11 12:05:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:39 +00:00
|
|
|
#include <cpu_func.h>
|
2019-08-01 15:46:52 +00:00
|
|
|
#include <env.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2008-06-11 12:05:00 +00:00
|
|
|
#include <malloc.h>
|
|
|
|
#include <net.h>
|
2008-11-21 03:04:18 +00:00
|
|
|
#include <netdev.h>
|
2011-10-11 09:10:14 +00:00
|
|
|
#include <miiphy.h>
|
2020-05-10 17:39:56 +00:00
|
|
|
#include <asm/cache.h>
|
2020-05-10 17:40:11 +00:00
|
|
|
#include <linux/delay.h>
|
2016-09-21 02:28:55 +00:00
|
|
|
#include <linux/errno.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2008-06-11 12:05:00 +00:00
|
|
|
#include <asm/io.h>
|
|
|
|
|
2018-01-19 17:57:17 +00:00
|
|
|
#ifdef CONFIG_DM_ETH
|
|
|
|
#include <clk.h>
|
|
|
|
#include <dm.h>
|
|
|
|
#include <linux/mii.h>
|
|
|
|
#include <asm/gpio.h>
|
|
|
|
#endif
|
|
|
|
|
2008-06-11 12:05:00 +00:00
|
|
|
#include "sh_eth.h"
|
|
|
|
|
|
|
|
#ifndef CONFIG_SH_ETHER_USE_PORT
|
|
|
|
# error "Please define CONFIG_SH_ETHER_USE_PORT"
|
|
|
|
#endif
|
|
|
|
#ifndef CONFIG_SH_ETHER_PHY_ADDR
|
|
|
|
# error "Please define CONFIG_SH_ETHER_PHY_ADDR"
|
|
|
|
#endif
|
2013-08-22 04:22:01 +00:00
|
|
|
|
2019-05-03 13:41:00 +00:00
|
|
|
#if defined(CONFIG_SH_ETHER_CACHE_WRITEBACK) && \
|
|
|
|
!CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
|
2013-08-22 04:22:03 +00:00
|
|
|
#define flush_cache_wback(addr, len) \
|
2019-07-31 12:48:17 +00:00
|
|
|
flush_dcache_range((unsigned long)addr, \
|
|
|
|
(unsigned long)(addr + ALIGN(len, CONFIG_SH_ETHER_ALIGNE_SIZE)))
|
2011-01-27 01:06:08 +00:00
|
|
|
#else
|
|
|
|
#define flush_cache_wback(...)
|
|
|
|
#endif
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2013-08-22 04:22:03 +00:00
|
|
|
#if defined(CONFIG_SH_ETHER_CACHE_INVALIDATE) && defined(CONFIG_ARM)
|
|
|
|
#define invalidate_cache(addr, len) \
|
|
|
|
{ \
|
2019-07-31 12:48:17 +00:00
|
|
|
unsigned long line_size = CONFIG_SH_ETHER_ALIGNE_SIZE; \
|
|
|
|
unsigned long start, end; \
|
2013-08-22 04:22:03 +00:00
|
|
|
\
|
2019-07-31 12:48:17 +00:00
|
|
|
start = (unsigned long)addr; \
|
|
|
|
end = start + len; \
|
2013-08-22 04:22:03 +00:00
|
|
|
start &= ~(line_size - 1); \
|
|
|
|
end = ((end + line_size - 1) & ~(line_size - 1)); \
|
|
|
|
\
|
|
|
|
invalidate_dcache_range(start, end); \
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define invalidate_cache(...)
|
|
|
|
#endif
|
|
|
|
|
2012-01-11 01:23:51 +00:00
|
|
|
#define TIMEOUT_CNT 1000
|
|
|
|
|
2018-01-21 13:27:51 +00:00
|
|
|
static int sh_eth_send_common(struct sh_eth_dev *eth, void *packet, int len)
|
2008-06-11 12:05:00 +00:00
|
|
|
{
|
2018-02-16 23:46:26 +00:00
|
|
|
int ret = 0, timeout;
|
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2008-06-11 12:05:00 +00:00
|
|
|
|
|
|
|
if (!packet || len > 0xffff) {
|
2008-11-21 03:04:18 +00:00
|
|
|
printf(SHETHER_NAME ": %s: Invalid argument\n", __func__);
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto err;
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* packet must be a 4 byte boundary */
|
2019-07-31 12:48:17 +00:00
|
|
|
if ((uintptr_t)packet & 3) {
|
2017-11-30 23:08:00 +00:00
|
|
|
printf(SHETHER_NAME ": %s: packet not 4 byte aligned\n"
|
2014-01-22 22:52:19 +00:00
|
|
|
, __func__);
|
2008-11-21 03:04:18 +00:00
|
|
|
ret = -EFAULT;
|
|
|
|
goto err;
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Update tx descriptor */
|
2011-01-27 01:06:08 +00:00
|
|
|
flush_cache_wback(packet, len);
|
2008-06-11 12:05:00 +00:00
|
|
|
port_info->tx_desc_cur->td2 = ADDR_TO_PHY(packet);
|
|
|
|
port_info->tx_desc_cur->td1 = len << 16;
|
|
|
|
/* Must preserve the end of descriptor list indication */
|
|
|
|
if (port_info->tx_desc_cur->td0 & TD_TDLE)
|
|
|
|
port_info->tx_desc_cur->td0 = TD_TACT | TD_TFP | TD_TDLE;
|
|
|
|
else
|
|
|
|
port_info->tx_desc_cur->td0 = TD_TACT | TD_TFP;
|
|
|
|
|
2014-11-04 00:15:48 +00:00
|
|
|
flush_cache_wback(port_info->tx_desc_cur, sizeof(struct tx_desc_s));
|
|
|
|
|
2008-06-11 12:05:00 +00:00
|
|
|
/* Restart the transmitter if disabled */
|
2017-11-30 23:10:32 +00:00
|
|
|
if (!(sh_eth_read(port_info, EDTRR) & EDTRR_TRNS))
|
|
|
|
sh_eth_write(port_info, EDTRR_TRNS, EDTRR);
|
2008-06-11 12:05:00 +00:00
|
|
|
|
|
|
|
/* Wait until packet is transmitted */
|
2012-01-11 01:23:51 +00:00
|
|
|
timeout = TIMEOUT_CNT;
|
2013-08-22 04:22:03 +00:00
|
|
|
do {
|
|
|
|
invalidate_cache(port_info->tx_desc_cur,
|
|
|
|
sizeof(struct tx_desc_s));
|
2008-06-11 12:05:00 +00:00
|
|
|
udelay(100);
|
2013-08-22 04:22:03 +00:00
|
|
|
} while (port_info->tx_desc_cur->td0 & TD_TACT && timeout--);
|
2008-06-11 12:05:00 +00:00
|
|
|
|
|
|
|
if (timeout < 0) {
|
2008-11-21 03:04:18 +00:00
|
|
|
printf(SHETHER_NAME ": transmit timeout\n");
|
|
|
|
ret = -ETIMEDOUT;
|
2008-06-11 12:05:00 +00:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
port_info->tx_desc_cur++;
|
|
|
|
if (port_info->tx_desc_cur >= port_info->tx_desc_base + NUM_TX_DESC)
|
|
|
|
port_info->tx_desc_cur = port_info->tx_desc_base;
|
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
err:
|
|
|
|
return ret;
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
|
|
|
|
2018-01-21 14:39:50 +00:00
|
|
|
static int sh_eth_recv_start(struct sh_eth_dev *eth)
|
2018-01-21 13:27:51 +00:00
|
|
|
{
|
2018-02-16 23:46:26 +00:00
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2008-06-11 12:05:00 +00:00
|
|
|
|
|
|
|
/* Check if the rx descriptor is ready */
|
2013-08-22 04:22:03 +00:00
|
|
|
invalidate_cache(port_info->rx_desc_cur, sizeof(struct rx_desc_s));
|
2018-01-21 14:39:50 +00:00
|
|
|
if (port_info->rx_desc_cur->rd0 & RD_RACT)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
/* Check for errors */
|
|
|
|
if (port_info->rx_desc_cur->rd0 & RD_RFE)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2018-02-16 23:47:38 +00:00
|
|
|
return port_info->rx_desc_cur->rd1 & 0xffff;
|
2018-01-21 14:39:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void sh_eth_recv_finish(struct sh_eth_dev *eth)
|
|
|
|
{
|
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
|
|
|
|
|
|
|
/* Make current descriptor available again */
|
|
|
|
if (port_info->rx_desc_cur->rd0 & RD_RDLE)
|
|
|
|
port_info->rx_desc_cur->rd0 = RD_RACT | RD_RDLE;
|
|
|
|
else
|
|
|
|
port_info->rx_desc_cur->rd0 = RD_RACT;
|
|
|
|
|
|
|
|
flush_cache_wback(port_info->rx_desc_cur,
|
|
|
|
sizeof(struct rx_desc_s));
|
|
|
|
|
|
|
|
/* Point to the next descriptor */
|
|
|
|
port_info->rx_desc_cur++;
|
|
|
|
if (port_info->rx_desc_cur >=
|
|
|
|
port_info->rx_desc_base + NUM_RX_DESC)
|
|
|
|
port_info->rx_desc_cur = port_info->rx_desc_base;
|
|
|
|
}
|
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
static int sh_eth_reset(struct sh_eth_dev *eth)
|
2008-06-11 12:05:00 +00:00
|
|
|
{
|
2017-11-30 23:10:32 +00:00
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2014-01-22 22:52:18 +00:00
|
|
|
#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
|
2008-11-21 03:04:18 +00:00
|
|
|
int ret = 0, i;
|
2008-06-11 12:05:00 +00:00
|
|
|
|
|
|
|
/* Start e-dmac transmitter and receiver */
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, EDSR_ENALL, EDSR);
|
2008-06-11 12:05:00 +00:00
|
|
|
|
|
|
|
/* Perform a software reset and wait for it to complete */
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, EDMR_SRST, EDMR);
|
2014-01-22 22:52:19 +00:00
|
|
|
for (i = 0; i < TIMEOUT_CNT; i++) {
|
2017-11-30 23:10:32 +00:00
|
|
|
if (!(sh_eth_read(port_info, EDMR) & EDMR_SRST))
|
2008-06-11 12:05:00 +00:00
|
|
|
break;
|
|
|
|
udelay(1000);
|
|
|
|
}
|
|
|
|
|
2012-01-11 01:23:51 +00:00
|
|
|
if (i == TIMEOUT_CNT) {
|
2008-11-21 03:04:18 +00:00
|
|
|
printf(SHETHER_NAME ": Software reset timeout\n");
|
|
|
|
ret = -EIO;
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
2008-11-21 03:04:18 +00:00
|
|
|
|
|
|
|
return ret;
|
2011-01-18 08:53:45 +00:00
|
|
|
#else
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, sh_eth_read(port_info, EDMR) | EDMR_SRST, EDMR);
|
2018-02-16 23:57:49 +00:00
|
|
|
mdelay(3);
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info,
|
|
|
|
sh_eth_read(port_info, EDMR) & ~EDMR_SRST, EDMR);
|
2011-01-18 08:53:45 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
#endif
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
static int sh_eth_tx_desc_init(struct sh_eth_dev *eth)
|
2008-06-11 12:05:00 +00:00
|
|
|
{
|
2018-02-16 23:46:26 +00:00
|
|
|
int i, ret = 0;
|
2014-11-04 00:15:47 +00:00
|
|
|
u32 alloc_desc_size = NUM_TX_DESC * sizeof(struct tx_desc_s);
|
2018-02-16 23:46:26 +00:00
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2008-06-11 12:05:00 +00:00
|
|
|
struct tx_desc_s *cur_tx_desc;
|
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
/*
|
2014-11-04 00:15:46 +00:00
|
|
|
* Allocate rx descriptors. They must be aligned to size of struct
|
|
|
|
* tx_desc_s.
|
2008-11-21 03:04:18 +00:00
|
|
|
*/
|
2014-11-04 00:15:47 +00:00
|
|
|
port_info->tx_desc_alloc =
|
|
|
|
memalign(sizeof(struct tx_desc_s), alloc_desc_size);
|
|
|
|
if (!port_info->tx_desc_alloc) {
|
|
|
|
printf(SHETHER_NAME ": memalign failed\n");
|
2008-11-21 03:04:18 +00:00
|
|
|
ret = -ENOMEM;
|
|
|
|
goto err;
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
2008-11-21 03:04:18 +00:00
|
|
|
|
2017-12-01 04:56:08 +00:00
|
|
|
flush_cache_wback(port_info->tx_desc_alloc, alloc_desc_size);
|
2014-11-04 00:15:47 +00:00
|
|
|
|
2008-06-11 12:05:00 +00:00
|
|
|
/* Make sure we use a P2 address (non-cacheable) */
|
2014-11-04 00:15:47 +00:00
|
|
|
port_info->tx_desc_base =
|
2019-07-31 12:48:17 +00:00
|
|
|
(struct tx_desc_s *)ADDR_TO_P2((uintptr_t)port_info->tx_desc_alloc);
|
2008-06-11 12:05:00 +00:00
|
|
|
port_info->tx_desc_cur = port_info->tx_desc_base;
|
|
|
|
|
|
|
|
/* Initialize all descriptors */
|
|
|
|
for (cur_tx_desc = port_info->tx_desc_base, i = 0; i < NUM_TX_DESC;
|
|
|
|
cur_tx_desc++, i++) {
|
|
|
|
cur_tx_desc->td0 = 0x00;
|
|
|
|
cur_tx_desc->td1 = 0x00;
|
|
|
|
cur_tx_desc->td2 = 0x00;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mark the end of the descriptors */
|
|
|
|
cur_tx_desc--;
|
|
|
|
cur_tx_desc->td0 |= TD_TDLE;
|
|
|
|
|
2017-11-30 23:08:00 +00:00
|
|
|
/*
|
|
|
|
* Point the controller to the tx descriptor list. Must use physical
|
|
|
|
* addresses
|
|
|
|
*/
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, ADDR_TO_PHY(port_info->tx_desc_base), TDLAR);
|
2014-01-22 22:52:18 +00:00
|
|
|
#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, ADDR_TO_PHY(port_info->tx_desc_base), TDFAR);
|
|
|
|
sh_eth_write(port_info, ADDR_TO_PHY(cur_tx_desc), TDFXR);
|
|
|
|
sh_eth_write(port_info, 0x01, TDFFR);/* Last discriptor bit */
|
2011-01-18 08:53:45 +00:00
|
|
|
#endif
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
err:
|
|
|
|
return ret;
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
static int sh_eth_rx_desc_init(struct sh_eth_dev *eth)
|
2008-06-11 12:05:00 +00:00
|
|
|
{
|
2018-02-16 23:46:26 +00:00
|
|
|
int i, ret = 0;
|
2014-11-04 00:15:47 +00:00
|
|
|
u32 alloc_desc_size = NUM_RX_DESC * sizeof(struct rx_desc_s);
|
2018-02-16 23:46:26 +00:00
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2008-06-11 12:05:00 +00:00
|
|
|
struct rx_desc_s *cur_rx_desc;
|
|
|
|
u8 *rx_buf;
|
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
/*
|
2014-11-04 00:15:46 +00:00
|
|
|
* Allocate rx descriptors. They must be aligned to size of struct
|
|
|
|
* rx_desc_s.
|
2008-11-21 03:04:18 +00:00
|
|
|
*/
|
2014-11-04 00:15:47 +00:00
|
|
|
port_info->rx_desc_alloc =
|
|
|
|
memalign(sizeof(struct rx_desc_s), alloc_desc_size);
|
|
|
|
if (!port_info->rx_desc_alloc) {
|
|
|
|
printf(SHETHER_NAME ": memalign failed\n");
|
2008-11-21 03:04:18 +00:00
|
|
|
ret = -ENOMEM;
|
|
|
|
goto err;
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
2008-11-21 03:04:18 +00:00
|
|
|
|
2014-11-04 00:15:47 +00:00
|
|
|
flush_cache_wback(port_info->rx_desc_alloc, alloc_desc_size);
|
|
|
|
|
2008-06-11 12:05:00 +00:00
|
|
|
/* Make sure we use a P2 address (non-cacheable) */
|
2014-11-04 00:15:47 +00:00
|
|
|
port_info->rx_desc_base =
|
2019-07-31 12:48:17 +00:00
|
|
|
(struct rx_desc_s *)ADDR_TO_P2((uintptr_t)port_info->rx_desc_alloc);
|
2008-06-11 12:05:00 +00:00
|
|
|
|
|
|
|
port_info->rx_desc_cur = port_info->rx_desc_base;
|
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
/*
|
2014-11-04 00:15:47 +00:00
|
|
|
* Allocate rx data buffers. They must be RX_BUF_ALIGNE_SIZE bytes
|
|
|
|
* aligned and in P2 area.
|
2008-11-21 03:04:18 +00:00
|
|
|
*/
|
2014-11-04 00:15:47 +00:00
|
|
|
port_info->rx_buf_alloc =
|
|
|
|
memalign(RX_BUF_ALIGNE_SIZE, NUM_RX_DESC * MAX_BUF_SIZE);
|
|
|
|
if (!port_info->rx_buf_alloc) {
|
|
|
|
printf(SHETHER_NAME ": alloc failed\n");
|
2008-11-21 03:04:18 +00:00
|
|
|
ret = -ENOMEM;
|
2014-11-04 00:15:47 +00:00
|
|
|
goto err_buf_alloc;
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
2008-11-21 03:04:18 +00:00
|
|
|
|
2019-07-31 12:48:17 +00:00
|
|
|
port_info->rx_buf_base = (u8 *)ADDR_TO_P2((uintptr_t)port_info->rx_buf_alloc);
|
2008-06-11 12:05:00 +00:00
|
|
|
|
|
|
|
/* Initialize all descriptors */
|
|
|
|
for (cur_rx_desc = port_info->rx_desc_base,
|
|
|
|
rx_buf = port_info->rx_buf_base, i = 0;
|
|
|
|
i < NUM_RX_DESC; cur_rx_desc++, rx_buf += MAX_BUF_SIZE, i++) {
|
|
|
|
cur_rx_desc->rd0 = RD_RACT;
|
|
|
|
cur_rx_desc->rd1 = MAX_BUF_SIZE << 16;
|
2017-11-30 23:08:00 +00:00
|
|
|
cur_rx_desc->rd2 = (u32)ADDR_TO_PHY(rx_buf);
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Mark the end of the descriptors */
|
|
|
|
cur_rx_desc--;
|
|
|
|
cur_rx_desc->rd0 |= RD_RDLE;
|
|
|
|
|
|
|
|
/* Point the controller to the rx descriptor list */
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, ADDR_TO_PHY(port_info->rx_desc_base), RDLAR);
|
2014-01-22 22:52:18 +00:00
|
|
|
#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, ADDR_TO_PHY(port_info->rx_desc_base), RDFAR);
|
|
|
|
sh_eth_write(port_info, ADDR_TO_PHY(cur_rx_desc), RDFXR);
|
|
|
|
sh_eth_write(port_info, RDFFR_RDLF, RDFFR);
|
2011-01-18 08:53:45 +00:00
|
|
|
#endif
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
return ret;
|
|
|
|
|
2014-11-04 00:15:47 +00:00
|
|
|
err_buf_alloc:
|
|
|
|
free(port_info->rx_desc_alloc);
|
|
|
|
port_info->rx_desc_alloc = NULL;
|
2008-11-21 03:04:18 +00:00
|
|
|
|
|
|
|
err:
|
|
|
|
return ret;
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
static void sh_eth_tx_desc_free(struct sh_eth_dev *eth)
|
2008-06-11 12:05:00 +00:00
|
|
|
{
|
2018-02-16 23:46:26 +00:00
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2014-11-04 00:15:47 +00:00
|
|
|
if (port_info->tx_desc_alloc) {
|
|
|
|
free(port_info->tx_desc_alloc);
|
|
|
|
port_info->tx_desc_alloc = NULL;
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
2008-11-21 03:04:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void sh_eth_rx_desc_free(struct sh_eth_dev *eth)
|
|
|
|
{
|
2018-02-16 23:46:26 +00:00
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2014-11-04 00:15:47 +00:00
|
|
|
if (port_info->rx_desc_alloc) {
|
|
|
|
free(port_info->rx_desc_alloc);
|
|
|
|
port_info->rx_desc_alloc = NULL;
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 00:15:47 +00:00
|
|
|
if (port_info->rx_buf_alloc) {
|
|
|
|
free(port_info->rx_buf_alloc);
|
|
|
|
port_info->rx_buf_alloc = NULL;
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
static int sh_eth_desc_init(struct sh_eth_dev *eth)
|
2008-06-11 12:05:00 +00:00
|
|
|
{
|
2008-11-21 03:04:18 +00:00
|
|
|
int ret = 0;
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
ret = sh_eth_tx_desc_init(eth);
|
|
|
|
if (ret)
|
|
|
|
goto err_tx_init;
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
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;
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
|
|
|
|
2018-01-21 13:55:44 +00:00
|
|
|
static void sh_eth_write_hwaddr(struct sh_eth_info *port_info,
|
|
|
|
unsigned char *mac)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
val = (mac[0] << 24) | (mac[1] << 16) | (mac[2] << 8) | mac[3];
|
|
|
|
sh_eth_write(port_info, val, MAHR);
|
|
|
|
|
|
|
|
val = (mac[4] << 8) | mac[5];
|
|
|
|
sh_eth_write(port_info, val, MALR);
|
|
|
|
}
|
|
|
|
|
2018-01-21 14:10:21 +00:00
|
|
|
static void sh_eth_mac_regs_config(struct sh_eth_dev *eth, unsigned char *mac)
|
2008-06-11 12:05:00 +00:00
|
|
|
{
|
2018-01-21 14:10:21 +00:00
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2019-07-31 10:58:06 +00:00
|
|
|
unsigned long edmr;
|
2008-06-11 12:05:00 +00:00
|
|
|
|
|
|
|
/* Configure e-dmac registers */
|
2019-07-31 10:58:06 +00:00
|
|
|
edmr = sh_eth_read(port_info, EDMR);
|
|
|
|
edmr &= ~EMDR_DESC_R;
|
|
|
|
edmr |= EMDR_DESC | EDMR_EL;
|
|
|
|
#if defined(CONFIG_R8A77980)
|
|
|
|
edmr |= EDMR_NBST;
|
|
|
|
#endif
|
|
|
|
sh_eth_write(port_info, edmr, EDMR);
|
2013-08-22 04:22:02 +00:00
|
|
|
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, 0, EESIPR);
|
|
|
|
sh_eth_write(port_info, 0, TRSCER);
|
|
|
|
sh_eth_write(port_info, 0, TFTR);
|
|
|
|
sh_eth_write(port_info, (FIFO_SIZE_T | FIFO_SIZE_R), FDR);
|
|
|
|
sh_eth_write(port_info, RMCR_RST, RMCR);
|
2014-01-22 22:52:18 +00:00
|
|
|
#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, 0, RPADIR);
|
2011-01-18 08:53:45 +00:00
|
|
|
#endif
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, (FIFO_F_D_RFF | FIFO_F_D_RFD), FCFTR);
|
2008-06-11 12:05:00 +00:00
|
|
|
|
|
|
|
/* Configure e-mac registers */
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, 0, ECSIPR);
|
2008-06-11 12:05:00 +00:00
|
|
|
|
|
|
|
/* Set Mac address */
|
2018-01-21 14:10:21 +00:00
|
|
|
sh_eth_write_hwaddr(port_info, mac);
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, RFLR_RFL_MIN, RFLR);
|
2012-06-26 16:38:06 +00:00
|
|
|
#if defined(SH_ETH_TYPE_GETHER)
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, 0, PIPR);
|
2014-01-22 22:52:18 +00:00
|
|
|
#endif
|
|
|
|
#if defined(SH_ETH_TYPE_GETHER) || defined(SH_ETH_TYPE_RZ)
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, APR_AP, APR);
|
|
|
|
sh_eth_write(port_info, MPR_MP, MPR);
|
|
|
|
sh_eth_write(port_info, TPAUSER_TPAUSE, TPAUSER);
|
2011-01-18 08:53:45 +00:00
|
|
|
#endif
|
2011-11-14 07:56:59 +00:00
|
|
|
|
2012-08-02 22:08:40 +00:00
|
|
|
#if defined(CONFIG_CPU_SH7734) || defined(CONFIG_R8A7740)
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, CONFIG_SH_ETHER_SH7734_MII, RMII_MII);
|
2019-07-31 10:58:06 +00:00
|
|
|
#elif defined(CONFIG_RCAR_GEN2) || defined(CONFIG_R8A77980)
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, sh_eth_read(port_info, RMIIMR) | 0x1, RMIIMR);
|
2012-05-15 15:49:39 +00:00
|
|
|
#endif
|
2018-01-21 14:10:21 +00:00
|
|
|
}
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2018-01-21 14:10:21 +00:00
|
|
|
static int sh_eth_phy_regs_config(struct sh_eth_dev *eth)
|
|
|
|
{
|
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
|
|
|
struct phy_device *phy = port_info->phydev;
|
|
|
|
int ret = 0;
|
|
|
|
u32 val = 0;
|
2011-11-14 07:56:59 +00:00
|
|
|
|
2008-06-11 12:05:00 +00:00
|
|
|
/* Set the transfer speed */
|
2011-10-11 09:10:14 +00:00
|
|
|
if (phy->speed == 100) {
|
2008-11-21 03:04:18 +00:00
|
|
|
printf(SHETHER_NAME ": 100Base/");
|
2012-06-26 16:38:06 +00:00
|
|
|
#if defined(SH_ETH_TYPE_GETHER)
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, GECMR_100B, GECMR);
|
2012-11-04 15:54:30 +00:00
|
|
|
#elif defined(CONFIG_CPU_SH7757) || defined(CONFIG_CPU_SH7752)
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, 1, RTRATE);
|
2019-07-31 10:58:06 +00:00
|
|
|
#elif defined(CONFIG_RCAR_GEN2) || defined(CONFIG_R8A77980)
|
2011-11-14 07:56:59 +00:00
|
|
|
val = ECMR_RTM;
|
|
|
|
#endif
|
2011-10-11 09:10:14 +00:00
|
|
|
} else if (phy->speed == 10) {
|
2008-11-21 03:04:18 +00:00
|
|
|
printf(SHETHER_NAME ": 10Base/");
|
2012-06-26 16:38:06 +00:00
|
|
|
#if defined(SH_ETH_TYPE_GETHER)
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, GECMR_10B, GECMR);
|
2012-11-04 15:54:30 +00:00
|
|
|
#elif defined(CONFIG_CPU_SH7757) || defined(CONFIG_CPU_SH7752)
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, 0, RTRATE);
|
2011-01-18 08:53:45 +00:00
|
|
|
#endif
|
2011-11-14 07:56:59 +00:00
|
|
|
}
|
2012-06-26 16:38:06 +00:00
|
|
|
#if defined(SH_ETH_TYPE_GETHER)
|
2012-05-15 15:49:39 +00:00
|
|
|
else if (phy->speed == 1000) {
|
|
|
|
printf(SHETHER_NAME ": 1000Base/");
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, GECMR_1000B, GECMR);
|
2012-05-15 15:49:39 +00:00
|
|
|
}
|
|
|
|
#endif
|
2008-06-11 12:05:00 +00:00
|
|
|
|
|
|
|
/* Check if full duplex mode is supported by the phy */
|
2011-10-11 09:10:14 +00:00
|
|
|
if (phy->duplex) {
|
2008-06-11 12:05:00 +00:00
|
|
|
printf("Full\n");
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info,
|
2017-11-30 23:08:00 +00:00
|
|
|
val | (ECMR_CHG_DM | ECMR_RE | ECMR_TE | ECMR_DM),
|
2012-06-26 16:38:09 +00:00
|
|
|
ECMR);
|
2008-06-11 12:05:00 +00:00
|
|
|
} else {
|
|
|
|
printf("Half\n");
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info,
|
2017-11-30 23:08:00 +00:00
|
|
|
val | (ECMR_CHG_DM | ECMR_RE | ECMR_TE),
|
|
|
|
ECMR);
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
2008-11-21 03:04:18 +00:00
|
|
|
|
|
|
|
return ret;
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
static void sh_eth_start(struct sh_eth_dev *eth)
|
2008-06-11 12:05:00 +00:00
|
|
|
{
|
2017-11-30 23:10:32 +00:00
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
|
|
|
|
2008-06-11 12:05:00 +00:00
|
|
|
/*
|
|
|
|
* Enable the e-dmac receiver only. The transmitter will be enabled when
|
|
|
|
* we have something to transmit
|
|
|
|
*/
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, EDRRR_R, EDRRR);
|
2008-11-21 03:04:18 +00:00
|
|
|
}
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
static void sh_eth_stop(struct sh_eth_dev *eth)
|
|
|
|
{
|
2017-11-30 23:10:32 +00:00
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
|
|
|
|
|
|
|
sh_eth_write(port_info, ~EDRRR_R, EDRRR);
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
|
|
|
|
2018-01-21 14:10:21 +00:00
|
|
|
static int sh_eth_init_common(struct sh_eth_dev *eth, unsigned char *mac)
|
2008-06-11 12:05:00 +00:00
|
|
|
{
|
2008-11-21 03:04:18 +00:00
|
|
|
int ret = 0;
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
ret = sh_eth_reset(eth);
|
|
|
|
if (ret)
|
2018-01-21 14:10:21 +00:00
|
|
|
return ret;
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
ret = sh_eth_desc_init(eth);
|
|
|
|
if (ret)
|
2018-01-21 14:10:21 +00:00
|
|
|
return ret;
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2018-01-21 14:10:21 +00:00
|
|
|
sh_eth_mac_regs_config(eth, mac);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_eth_start_common(struct sh_eth_dev *eth)
|
|
|
|
{
|
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = phy_startup(port_info->phydev);
|
|
|
|
if (ret) {
|
|
|
|
printf(SHETHER_NAME ": phy startup failure\n");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = sh_eth_phy_regs_config(eth);
|
2008-11-21 03:04:18 +00:00
|
|
|
if (ret)
|
2018-01-21 14:10:21 +00:00
|
|
|
return ret;
|
2008-11-21 03:04:18 +00:00
|
|
|
|
|
|
|
sh_eth_start(eth);
|
|
|
|
|
2018-01-21 14:10:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-01-19 17:57:17 +00:00
|
|
|
#ifndef CONFIG_DM_ETH
|
2018-01-21 14:31:48 +00:00
|
|
|
static int sh_eth_phy_config_legacy(struct sh_eth_dev *eth)
|
|
|
|
{
|
2018-02-16 23:46:26 +00:00
|
|
|
int ret = 0;
|
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2018-01-21 14:31:48 +00:00
|
|
|
struct eth_device *dev = port_info->dev;
|
|
|
|
struct phy_device *phydev;
|
|
|
|
|
|
|
|
phydev = phy_connect(
|
|
|
|
miiphy_get_dev_by_name(dev->name),
|
|
|
|
port_info->phy_addr, dev, CONFIG_SH_ETHER_PHY_MODE);
|
|
|
|
port_info->phydev = phydev;
|
|
|
|
phy_config(phydev);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_eth_send_legacy(struct eth_device *dev, void *packet, int len)
|
|
|
|
{
|
|
|
|
struct sh_eth_dev *eth = dev->priv;
|
|
|
|
|
|
|
|
return sh_eth_send_common(eth, packet, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_eth_recv_common(struct sh_eth_dev *eth)
|
|
|
|
{
|
2018-02-16 23:46:26 +00:00
|
|
|
int len = 0;
|
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2018-01-21 14:31:48 +00:00
|
|
|
uchar *packet = (uchar *)ADDR_TO_P2(port_info->rx_desc_cur->rd2);
|
|
|
|
|
|
|
|
len = sh_eth_recv_start(eth);
|
|
|
|
if (len > 0) {
|
|
|
|
invalidate_cache(packet, len);
|
|
|
|
net_process_received_packet(packet, len);
|
|
|
|
sh_eth_recv_finish(eth);
|
|
|
|
} else
|
|
|
|
len = 0;
|
|
|
|
|
|
|
|
/* Restart the receiver if disabled */
|
|
|
|
if (!(sh_eth_read(port_info, EDRRR) & EDRRR_R))
|
|
|
|
sh_eth_write(port_info, EDRRR_R, EDRRR);
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_eth_recv_legacy(struct eth_device *dev)
|
|
|
|
{
|
|
|
|
struct sh_eth_dev *eth = dev->priv;
|
|
|
|
|
|
|
|
return sh_eth_recv_common(eth);
|
|
|
|
}
|
|
|
|
|
2020-06-26 06:13:33 +00:00
|
|
|
static int sh_eth_init_legacy(struct eth_device *dev, struct bd_info *bd)
|
2018-01-21 14:10:21 +00:00
|
|
|
{
|
|
|
|
struct sh_eth_dev *eth = dev->priv;
|
|
|
|
int ret;
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2018-01-21 14:10:21 +00:00
|
|
|
ret = sh_eth_init_common(eth, dev->enetaddr);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = sh_eth_phy_config_legacy(eth);
|
|
|
|
if (ret) {
|
|
|
|
printf(SHETHER_NAME ": phy config timeout\n");
|
|
|
|
goto err_start;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = sh_eth_start_common(eth);
|
|
|
|
if (ret)
|
|
|
|
goto err_start;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_start:
|
2008-11-21 03:04:18 +00:00
|
|
|
sh_eth_tx_desc_free(eth);
|
|
|
|
sh_eth_rx_desc_free(eth);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-01-21 14:10:21 +00:00
|
|
|
void sh_eth_halt_legacy(struct eth_device *dev)
|
2008-11-21 03:04:18 +00:00
|
|
|
{
|
|
|
|
struct sh_eth_dev *eth = dev->priv;
|
2017-11-30 23:08:00 +00:00
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
sh_eth_stop(eth);
|
|
|
|
}
|
|
|
|
|
2020-06-26 06:13:33 +00:00
|
|
|
int sh_eth_initialize(struct bd_info *bd)
|
2008-11-21 03:04:18 +00:00
|
|
|
{
|
2014-01-22 22:52:19 +00:00
|
|
|
int ret = 0;
|
2008-11-21 03:04:18 +00:00
|
|
|
struct sh_eth_dev *eth = NULL;
|
2014-01-22 22:52:19 +00:00
|
|
|
struct eth_device *dev = NULL;
|
2017-11-30 23:08:00 +00:00
|
|
|
struct mii_dev *mdiodev;
|
2008-11-21 03:04:18 +00:00
|
|
|
|
2014-01-22 22:52:19 +00:00
|
|
|
eth = (struct sh_eth_dev *)malloc(sizeof(struct sh_eth_dev));
|
2008-11-21 03:04:18 +00:00
|
|
|
if (!eth) {
|
|
|
|
printf(SHETHER_NAME ": %s: malloc failed\n", __func__);
|
|
|
|
ret = -ENOMEM;
|
2008-06-11 12:05:00 +00:00
|
|
|
goto err;
|
2008-11-21 03:04:18 +00:00
|
|
|
}
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2014-01-22 22:52:19 +00:00
|
|
|
dev = (struct eth_device *)malloc(sizeof(struct eth_device));
|
2008-11-21 03:04:18 +00:00
|
|
|
if (!dev) {
|
|
|
|
printf(SHETHER_NAME ": %s: malloc failed\n", __func__);
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto err;
|
|
|
|
}
|
2014-01-22 22:52:19 +00:00
|
|
|
memset(dev, 0, sizeof(struct eth_device));
|
|
|
|
memset(eth, 0, sizeof(struct sh_eth_dev));
|
2008-06-11 12:05:00 +00:00
|
|
|
|
2008-11-21 03:04:18 +00:00
|
|
|
eth->port = CONFIG_SH_ETHER_USE_PORT;
|
|
|
|
eth->port_info[eth->port].phy_addr = CONFIG_SH_ETHER_PHY_ADDR;
|
2017-11-30 23:10:32 +00:00
|
|
|
eth->port_info[eth->port].iobase =
|
|
|
|
(void __iomem *)(BASE_IO_ADDR + 0x800 * eth->port);
|
2008-11-21 03:04:18 +00:00
|
|
|
|
2014-01-22 22:52:19 +00:00
|
|
|
dev->priv = (void *)eth;
|
|
|
|
dev->iobase = 0;
|
2018-01-21 14:10:21 +00:00
|
|
|
dev->init = sh_eth_init_legacy;
|
|
|
|
dev->halt = sh_eth_halt_legacy;
|
2018-01-21 13:27:51 +00:00
|
|
|
dev->send = sh_eth_send_legacy;
|
|
|
|
dev->recv = sh_eth_recv_legacy;
|
2014-01-22 22:52:19 +00:00
|
|
|
eth->port_info[eth->port].dev = dev;
|
2008-11-21 03:04:18 +00:00
|
|
|
|
2015-12-30 13:05:58 +00:00
|
|
|
strcpy(dev->name, SHETHER_NAME);
|
2008-11-21 03:04:18 +00:00
|
|
|
|
2014-01-22 22:52:19 +00:00
|
|
|
/* Register Device to EtherNet subsystem */
|
|
|
|
eth_register(dev);
|
2008-11-21 03:04:18 +00:00
|
|
|
|
2011-10-11 09:10:14 +00:00
|
|
|
bb_miiphy_buses[0].priv = eth;
|
2017-11-30 23:08:00 +00:00
|
|
|
mdiodev = mdio_alloc();
|
2016-08-08 16:28:38 +00:00
|
|
|
if (!mdiodev)
|
|
|
|
return -ENOMEM;
|
|
|
|
strncpy(mdiodev->name, dev->name, MDIO_NAME_LEN);
|
|
|
|
mdiodev->read = bb_miiphy_read;
|
|
|
|
mdiodev->write = bb_miiphy_write;
|
|
|
|
|
2017-11-30 23:08:00 +00:00
|
|
|
ret = mdio_register(mdiodev);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2011-10-11 09:10:14 +00:00
|
|
|
|
2017-08-03 18:22:14 +00:00
|
|
|
if (!eth_env_get_enetaddr("ethaddr", dev->enetaddr))
|
2009-02-12 00:14:09 +00:00
|
|
|
puts("Please set MAC address\n");
|
2008-11-21 03:04:18 +00:00
|
|
|
|
|
|
|
return ret;
|
2008-06-11 12:05:00 +00:00
|
|
|
|
|
|
|
err:
|
2008-11-21 03:04:18 +00:00
|
|
|
if (dev)
|
|
|
|
free(dev);
|
|
|
|
|
|
|
|
if (eth)
|
|
|
|
free(eth);
|
|
|
|
|
|
|
|
printf(SHETHER_NAME ": Failed\n");
|
|
|
|
return ret;
|
2008-06-11 12:05:00 +00:00
|
|
|
}
|
2011-10-11 09:10:14 +00:00
|
|
|
|
2018-01-19 17:57:17 +00:00
|
|
|
#else /* CONFIG_DM_ETH */
|
|
|
|
|
|
|
|
struct sh_ether_priv {
|
|
|
|
struct sh_eth_dev shdev;
|
|
|
|
|
|
|
|
struct mii_dev *bus;
|
2018-02-16 23:57:49 +00:00
|
|
|
phys_addr_t iobase;
|
2018-01-19 17:57:17 +00:00
|
|
|
struct clk clk;
|
|
|
|
struct gpio_desc reset_gpio;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int sh_ether_send(struct udevice *dev, void *packet, int len)
|
|
|
|
{
|
|
|
|
struct sh_ether_priv *priv = dev_get_priv(dev);
|
|
|
|
struct sh_eth_dev *eth = &priv->shdev;
|
|
|
|
|
|
|
|
return sh_eth_send_common(eth, packet, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_ether_recv(struct udevice *dev, int flags, uchar **packetp)
|
|
|
|
{
|
|
|
|
struct sh_ether_priv *priv = dev_get_priv(dev);
|
|
|
|
struct sh_eth_dev *eth = &priv->shdev;
|
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2019-07-31 12:48:17 +00:00
|
|
|
uchar *packet = (uchar *)ADDR_TO_P2((uintptr_t)port_info->rx_desc_cur->rd2);
|
2018-01-19 17:57:17 +00:00
|
|
|
int len;
|
|
|
|
|
|
|
|
len = sh_eth_recv_start(eth);
|
|
|
|
if (len > 0) {
|
|
|
|
invalidate_cache(packet, len);
|
|
|
|
*packetp = packet;
|
|
|
|
|
|
|
|
return len;
|
|
|
|
} else {
|
|
|
|
len = 0;
|
|
|
|
|
|
|
|
/* Restart the receiver if disabled */
|
|
|
|
if (!(sh_eth_read(port_info, EDRRR) & EDRRR_R))
|
|
|
|
sh_eth_write(port_info, EDRRR_R, EDRRR);
|
|
|
|
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_ether_free_pkt(struct udevice *dev, uchar *packet, int length)
|
|
|
|
{
|
|
|
|
struct sh_ether_priv *priv = dev_get_priv(dev);
|
|
|
|
struct sh_eth_dev *eth = &priv->shdev;
|
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
|
|
|
|
|
|
|
sh_eth_recv_finish(eth);
|
|
|
|
|
|
|
|
/* Restart the receiver if disabled */
|
|
|
|
if (!(sh_eth_read(port_info, EDRRR) & EDRRR_R))
|
|
|
|
sh_eth_write(port_info, EDRRR_R, EDRRR);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_ether_write_hwaddr(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct sh_ether_priv *priv = dev_get_priv(dev);
|
|
|
|
struct sh_eth_dev *eth = &priv->shdev;
|
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2020-12-03 23:55:20 +00:00
|
|
|
struct eth_pdata *pdata = dev_get_plat(dev);
|
2018-01-19 17:57:17 +00:00
|
|
|
|
|
|
|
sh_eth_write_hwaddr(port_info, pdata->enetaddr);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_eth_phy_config(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct sh_ether_priv *priv = dev_get_priv(dev);
|
2020-12-03 23:55:20 +00:00
|
|
|
struct eth_pdata *pdata = dev_get_plat(dev);
|
2018-01-19 17:57:17 +00:00
|
|
|
struct sh_eth_dev *eth = &priv->shdev;
|
2018-02-16 23:46:26 +00:00
|
|
|
int ret = 0;
|
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2018-01-19 17:57:17 +00:00
|
|
|
struct phy_device *phydev;
|
|
|
|
int mask = 0xffffffff;
|
|
|
|
|
|
|
|
phydev = phy_find_by_mask(priv->bus, mask, pdata->phy_interface);
|
|
|
|
if (!phydev)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
phy_connect_dev(phydev, dev);
|
|
|
|
|
|
|
|
port_info->phydev = phydev;
|
|
|
|
phy_config(phydev);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_ether_start(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct sh_ether_priv *priv = dev_get_priv(dev);
|
2020-12-03 23:55:20 +00:00
|
|
|
struct eth_pdata *pdata = dev_get_plat(dev);
|
2018-01-19 17:57:17 +00:00
|
|
|
struct sh_eth_dev *eth = &priv->shdev;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = sh_eth_init_common(eth, pdata->enetaddr);
|
|
|
|
if (ret)
|
2019-03-30 06:22:09 +00:00
|
|
|
return ret;
|
2018-01-19 17:57:17 +00:00
|
|
|
|
|
|
|
ret = sh_eth_start_common(eth);
|
|
|
|
if (ret)
|
|
|
|
goto err_start;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_start:
|
|
|
|
sh_eth_tx_desc_free(eth);
|
|
|
|
sh_eth_rx_desc_free(eth);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sh_ether_stop(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct sh_ether_priv *priv = dev_get_priv(dev);
|
2019-03-30 06:22:09 +00:00
|
|
|
struct sh_eth_dev *eth = &priv->shdev;
|
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2018-01-19 17:57:17 +00:00
|
|
|
|
2019-03-30 06:22:09 +00:00
|
|
|
phy_shutdown(port_info->phydev);
|
2018-01-19 17:57:17 +00:00
|
|
|
sh_eth_stop(&priv->shdev);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_ether_probe(struct udevice *udev)
|
|
|
|
{
|
2020-12-03 23:55:20 +00:00
|
|
|
struct eth_pdata *pdata = dev_get_plat(udev);
|
2018-01-19 17:57:17 +00:00
|
|
|
struct sh_ether_priv *priv = dev_get_priv(udev);
|
|
|
|
struct sh_eth_dev *eth = &priv->shdev;
|
2018-06-18 02:03:01 +00:00
|
|
|
struct ofnode_phandle_args phandle_args;
|
2018-01-19 17:57:17 +00:00
|
|
|
struct mii_dev *mdiodev;
|
|
|
|
int ret;
|
|
|
|
|
2018-02-16 23:57:49 +00:00
|
|
|
priv->iobase = pdata->iobase;
|
2018-01-19 17:57:17 +00:00
|
|
|
|
2019-05-01 22:03:26 +00:00
|
|
|
#if CONFIG_IS_ENABLED(CLK)
|
2018-01-19 17:57:17 +00:00
|
|
|
ret = clk_get_by_index(udev, 0, &priv->clk);
|
|
|
|
if (ret < 0)
|
2018-02-16 23:57:49 +00:00
|
|
|
return ret;
|
2019-05-01 22:03:26 +00:00
|
|
|
#endif
|
2018-01-19 17:57:17 +00:00
|
|
|
|
2018-06-18 02:03:01 +00:00
|
|
|
ret = dev_read_phandle_with_args(udev, "phy-handle", NULL, 0, 0, &phandle_args);
|
|
|
|
if (!ret) {
|
|
|
|
gpio_request_by_name_nodev(phandle_args.node, "reset-gpios", 0,
|
|
|
|
&priv->reset_gpio, GPIOD_IS_OUT);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dm_gpio_is_valid(&priv->reset_gpio)) {
|
|
|
|
gpio_request_by_name(udev, "reset-gpios", 0, &priv->reset_gpio,
|
|
|
|
GPIOD_IS_OUT);
|
|
|
|
}
|
2018-01-19 17:57:17 +00:00
|
|
|
|
|
|
|
mdiodev = mdio_alloc();
|
|
|
|
if (!mdiodev) {
|
|
|
|
ret = -ENOMEM;
|
2018-02-16 23:57:49 +00:00
|
|
|
return ret;
|
2018-01-19 17:57:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mdiodev->read = bb_miiphy_read;
|
|
|
|
mdiodev->write = bb_miiphy_write;
|
|
|
|
bb_miiphy_buses[0].priv = eth;
|
|
|
|
snprintf(mdiodev->name, sizeof(mdiodev->name), udev->name);
|
|
|
|
|
|
|
|
ret = mdio_register(mdiodev);
|
|
|
|
if (ret < 0)
|
|
|
|
goto err_mdio_register;
|
|
|
|
|
|
|
|
priv->bus = miiphy_get_dev_by_name(udev->name);
|
|
|
|
|
|
|
|
eth->port = CONFIG_SH_ETHER_USE_PORT;
|
|
|
|
eth->port_info[eth->port].phy_addr = CONFIG_SH_ETHER_PHY_ADDR;
|
|
|
|
eth->port_info[eth->port].iobase =
|
2019-07-31 12:48:17 +00:00
|
|
|
(void __iomem *)(uintptr_t)(BASE_IO_ADDR + 0x800 * eth->port);
|
2018-01-19 17:57:17 +00:00
|
|
|
|
2019-05-01 22:03:26 +00:00
|
|
|
#if CONFIG_IS_ENABLED(CLK)
|
2019-03-30 06:22:09 +00:00
|
|
|
ret = clk_enable(&priv->clk);
|
|
|
|
if (ret)
|
|
|
|
goto err_mdio_register;
|
2019-05-01 22:03:26 +00:00
|
|
|
#endif
|
2019-03-30 06:22:09 +00:00
|
|
|
|
2020-04-04 13:01:22 +00:00
|
|
|
ret = sh_eth_init_common(eth, pdata->enetaddr);
|
|
|
|
if (ret)
|
|
|
|
goto err_phy_config;
|
|
|
|
|
2019-03-30 06:22:09 +00:00
|
|
|
ret = sh_eth_phy_config(udev);
|
|
|
|
if (ret) {
|
|
|
|
printf(SHETHER_NAME ": phy config timeout\n");
|
|
|
|
goto err_phy_config;
|
|
|
|
}
|
|
|
|
|
2018-01-19 17:57:17 +00:00
|
|
|
return 0;
|
|
|
|
|
2019-03-30 06:22:09 +00:00
|
|
|
err_phy_config:
|
2019-05-01 22:03:26 +00:00
|
|
|
#if CONFIG_IS_ENABLED(CLK)
|
2019-03-30 06:22:09 +00:00
|
|
|
clk_disable(&priv->clk);
|
2019-05-01 22:03:26 +00:00
|
|
|
#endif
|
2018-01-19 17:57:17 +00:00
|
|
|
err_mdio_register:
|
|
|
|
mdio_free(mdiodev);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_ether_remove(struct udevice *udev)
|
|
|
|
{
|
|
|
|
struct sh_ether_priv *priv = dev_get_priv(udev);
|
|
|
|
struct sh_eth_dev *eth = &priv->shdev;
|
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
|
|
|
|
2019-05-01 22:03:26 +00:00
|
|
|
#if CONFIG_IS_ENABLED(CLK)
|
2019-03-30 06:22:09 +00:00
|
|
|
clk_disable(&priv->clk);
|
2019-05-01 22:03:26 +00:00
|
|
|
#endif
|
2018-01-19 17:57:17 +00:00
|
|
|
free(port_info->phydev);
|
|
|
|
mdio_unregister(priv->bus);
|
|
|
|
mdio_free(priv->bus);
|
|
|
|
|
|
|
|
if (dm_gpio_is_valid(&priv->reset_gpio))
|
|
|
|
dm_gpio_free(udev, &priv->reset_gpio);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct eth_ops sh_ether_ops = {
|
|
|
|
.start = sh_ether_start,
|
|
|
|
.send = sh_ether_send,
|
|
|
|
.recv = sh_ether_recv,
|
|
|
|
.free_pkt = sh_ether_free_pkt,
|
|
|
|
.stop = sh_ether_stop,
|
|
|
|
.write_hwaddr = sh_ether_write_hwaddr,
|
|
|
|
};
|
|
|
|
|
2020-12-03 23:55:21 +00:00
|
|
|
int sh_ether_of_to_plat(struct udevice *dev)
|
2018-01-19 17:57:17 +00:00
|
|
|
{
|
2020-12-03 23:55:20 +00:00
|
|
|
struct eth_pdata *pdata = dev_get_plat(dev);
|
2018-01-19 17:57:17 +00:00
|
|
|
const char *phy_mode;
|
|
|
|
const fdt32_t *cell;
|
|
|
|
int ret = 0;
|
|
|
|
|
2020-07-17 05:36:48 +00:00
|
|
|
pdata->iobase = dev_read_addr(dev);
|
2018-01-19 17:57:17 +00:00
|
|
|
pdata->phy_interface = -1;
|
|
|
|
phy_mode = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), "phy-mode",
|
|
|
|
NULL);
|
|
|
|
if (phy_mode)
|
|
|
|
pdata->phy_interface = phy_get_interface_by_name(phy_mode);
|
|
|
|
if (pdata->phy_interface == -1) {
|
|
|
|
debug("%s: Invalid PHY interface '%s'\n", __func__, phy_mode);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
pdata->max_speed = 1000;
|
|
|
|
cell = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), "max-speed", NULL);
|
|
|
|
if (cell)
|
|
|
|
pdata->max_speed = fdt32_to_cpu(*cell);
|
|
|
|
|
|
|
|
sprintf(bb_miiphy_buses[0].name, dev->name);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct udevice_id sh_ether_ids[] = {
|
2019-05-01 22:03:26 +00:00
|
|
|
{ .compatible = "renesas,ether-r7s72100" },
|
2018-04-12 13:23:46 +00:00
|
|
|
{ .compatible = "renesas,ether-r8a7790" },
|
2018-01-19 17:57:17 +00:00
|
|
|
{ .compatible = "renesas,ether-r8a7791" },
|
2018-04-12 13:23:46 +00:00
|
|
|
{ .compatible = "renesas,ether-r8a7793" },
|
|
|
|
{ .compatible = "renesas,ether-r8a7794" },
|
2019-07-31 10:58:06 +00:00
|
|
|
{ .compatible = "renesas,gether-r8a77980" },
|
2018-01-19 17:57:17 +00:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(eth_sh_ether) = {
|
|
|
|
.name = "sh_ether",
|
|
|
|
.id = UCLASS_ETH,
|
|
|
|
.of_match = sh_ether_ids,
|
2020-12-03 23:55:21 +00:00
|
|
|
.of_to_plat = sh_ether_of_to_plat,
|
2018-01-19 17:57:17 +00:00
|
|
|
.probe = sh_ether_probe,
|
|
|
|
.remove = sh_ether_remove,
|
|
|
|
.ops = &sh_ether_ops,
|
2020-12-03 23:55:17 +00:00
|
|
|
.priv_auto = sizeof(struct sh_ether_priv),
|
2020-12-03 23:55:18 +00:00
|
|
|
.plat_auto = sizeof(struct eth_pdata),
|
2018-01-19 17:57:17 +00:00
|
|
|
.flags = DM_FLAG_ALLOC_PRIV_DMA,
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2011-10-11 09:10:14 +00:00
|
|
|
/******* for bb_miiphy *******/
|
|
|
|
static int sh_eth_bb_init(struct bb_miiphy_bus *bus)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_eth_bb_mdio_active(struct bb_miiphy_bus *bus)
|
|
|
|
{
|
|
|
|
struct sh_eth_dev *eth = bus->priv;
|
2017-11-30 23:10:32 +00:00
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2011-10-11 09:10:14 +00:00
|
|
|
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, sh_eth_read(port_info, PIR) | PIR_MMD, PIR);
|
2011-10-11 09:10:14 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_eth_bb_mdio_tristate(struct bb_miiphy_bus *bus)
|
|
|
|
{
|
|
|
|
struct sh_eth_dev *eth = bus->priv;
|
2017-11-30 23:10:32 +00:00
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2011-10-11 09:10:14 +00:00
|
|
|
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info, sh_eth_read(port_info, PIR) & ~PIR_MMD, PIR);
|
2011-10-11 09:10:14 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_eth_bb_set_mdio(struct bb_miiphy_bus *bus, int v)
|
|
|
|
{
|
|
|
|
struct sh_eth_dev *eth = bus->priv;
|
2017-11-30 23:10:32 +00:00
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2011-10-11 09:10:14 +00:00
|
|
|
|
|
|
|
if (v)
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info,
|
|
|
|
sh_eth_read(port_info, PIR) | PIR_MDO, PIR);
|
2011-10-11 09:10:14 +00:00
|
|
|
else
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info,
|
|
|
|
sh_eth_read(port_info, PIR) & ~PIR_MDO, PIR);
|
2011-10-11 09:10:14 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_eth_bb_get_mdio(struct bb_miiphy_bus *bus, int *v)
|
|
|
|
{
|
|
|
|
struct sh_eth_dev *eth = bus->priv;
|
2017-11-30 23:10:32 +00:00
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2011-10-11 09:10:14 +00:00
|
|
|
|
2017-11-30 23:10:32 +00:00
|
|
|
*v = (sh_eth_read(port_info, PIR) & PIR_MDI) >> 3;
|
2011-10-11 09:10:14 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_eth_bb_set_mdc(struct bb_miiphy_bus *bus, int v)
|
|
|
|
{
|
|
|
|
struct sh_eth_dev *eth = bus->priv;
|
2017-11-30 23:10:32 +00:00
|
|
|
struct sh_eth_info *port_info = ð->port_info[eth->port];
|
2011-10-11 09:10:14 +00:00
|
|
|
|
|
|
|
if (v)
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info,
|
|
|
|
sh_eth_read(port_info, PIR) | PIR_MDC, PIR);
|
2011-10-11 09:10:14 +00:00
|
|
|
else
|
2017-11-30 23:10:32 +00:00
|
|
|
sh_eth_write(port_info,
|
|
|
|
sh_eth_read(port_info, PIR) & ~PIR_MDC, PIR);
|
2011-10-11 09:10:14 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sh_eth_bb_delay(struct bb_miiphy_bus *bus)
|
|
|
|
{
|
|
|
|
udelay(10);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct bb_miiphy_bus bb_miiphy_buses[] = {
|
|
|
|
{
|
|
|
|
.name = "sh_eth",
|
|
|
|
.init = sh_eth_bb_init,
|
|
|
|
.mdio_active = sh_eth_bb_mdio_active,
|
|
|
|
.mdio_tristate = sh_eth_bb_mdio_tristate,
|
|
|
|
.set_mdio = sh_eth_bb_set_mdio,
|
|
|
|
.get_mdio = sh_eth_bb_get_mdio,
|
|
|
|
.set_mdc = sh_eth_bb_set_mdc,
|
|
|
|
.delay = sh_eth_bb_delay,
|
|
|
|
}
|
|
|
|
};
|
2017-11-30 23:08:00 +00:00
|
|
|
|
2011-10-11 09:10:14 +00:00
|
|
|
int bb_miiphy_buses_num = ARRAY_SIZE(bb_miiphy_buses);
|