2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2009-09-07 07:08:02 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2007-2009 Michal Simek
|
|
|
|
* (C) Copyright 2003 Xilinx Inc.
|
2008-03-28 11:41:56 +00:00
|
|
|
*
|
|
|
|
* Michal SIMEK <monstr@monstr.eu>
|
2009-09-07 07:08:02 +00:00
|
|
|
*/
|
2008-03-28 11:41:56 +00:00
|
|
|
|
|
|
|
#include <common.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2008-03-28 11:41:56 +00:00
|
|
|
#include <net.h>
|
|
|
|
#include <config.h>
|
2015-12-10 16:15:52 +00:00
|
|
|
#include <dm.h>
|
2015-12-10 12:33:20 +00:00
|
|
|
#include <console.h>
|
2010-10-11 01:41:47 +00:00
|
|
|
#include <malloc.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2008-03-28 11:41:56 +00:00
|
|
|
#include <asm/io.h>
|
2015-12-10 12:33:20 +00:00
|
|
|
#include <phy.h>
|
|
|
|
#include <miiphy.h>
|
2012-06-28 21:37:57 +00:00
|
|
|
#include <fdtdec.h>
|
2020-05-10 17:40:11 +00:00
|
|
|
#include <linux/delay.h>
|
2016-09-21 02:28:57 +00:00
|
|
|
#include <linux/errno.h>
|
2015-12-10 15:31:38 +00:00
|
|
|
#include <linux/kernel.h>
|
2016-07-27 11:25:07 +00:00
|
|
|
#include <asm/io.h>
|
2012-06-28 21:37:57 +00:00
|
|
|
|
2015-12-10 16:15:52 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2008-03-28 11:41:56 +00:00
|
|
|
|
|
|
|
#define ENET_ADDR_LENGTH 6
|
2015-12-10 15:31:38 +00:00
|
|
|
#define ETH_FCS_LEN 4 /* Octets in the FCS */
|
2008-03-28 11:41:56 +00:00
|
|
|
|
|
|
|
/* Xmit complete */
|
|
|
|
#define XEL_TSR_XMIT_BUSY_MASK 0x00000001UL
|
|
|
|
/* Xmit interrupt enable bit */
|
|
|
|
#define XEL_TSR_XMIT_IE_MASK 0x00000008UL
|
|
|
|
/* Program the MAC address */
|
|
|
|
#define XEL_TSR_PROGRAM_MASK 0x00000002UL
|
|
|
|
/* define for programming the MAC address into the EMAC Lite */
|
|
|
|
#define XEL_TSR_PROG_MAC_ADDR (XEL_TSR_XMIT_BUSY_MASK | XEL_TSR_PROGRAM_MASK)
|
|
|
|
|
|
|
|
/* Transmit packet length upper byte */
|
|
|
|
#define XEL_TPLR_LENGTH_MASK_HI 0x0000FF00UL
|
|
|
|
/* Transmit packet length lower byte */
|
|
|
|
#define XEL_TPLR_LENGTH_MASK_LO 0x000000FFUL
|
|
|
|
|
|
|
|
/* Recv complete */
|
|
|
|
#define XEL_RSR_RECV_DONE_MASK 0x00000001UL
|
|
|
|
/* Recv interrupt enable bit */
|
|
|
|
#define XEL_RSR_RECV_IE_MASK 0x00000008UL
|
|
|
|
|
2015-12-10 12:33:20 +00:00
|
|
|
/* MDIO Address Register Bit Masks */
|
|
|
|
#define XEL_MDIOADDR_REGADR_MASK 0x0000001F /* Register Address */
|
|
|
|
#define XEL_MDIOADDR_PHYADR_MASK 0x000003E0 /* PHY Address */
|
|
|
|
#define XEL_MDIOADDR_PHYADR_SHIFT 5
|
|
|
|
#define XEL_MDIOADDR_OP_MASK 0x00000400 /* RD/WR Operation */
|
|
|
|
|
|
|
|
/* MDIO Write Data Register Bit Masks */
|
|
|
|
#define XEL_MDIOWR_WRDATA_MASK 0x0000FFFF /* Data to be Written */
|
|
|
|
|
|
|
|
/* MDIO Read Data Register Bit Masks */
|
|
|
|
#define XEL_MDIORD_RDDATA_MASK 0x0000FFFF /* Data to be Read */
|
|
|
|
|
|
|
|
/* MDIO Control Register Bit Masks */
|
|
|
|
#define XEL_MDIOCTRL_MDIOSTS_MASK 0x00000001 /* MDIO Status Mask */
|
|
|
|
#define XEL_MDIOCTRL_MDIOEN_MASK 0x00000008 /* MDIO Enable */
|
|
|
|
|
2015-12-10 13:18:15 +00:00
|
|
|
struct emaclite_regs {
|
|
|
|
u32 tx_ping; /* 0x0 - TX Ping buffer */
|
|
|
|
u32 reserved1[504];
|
|
|
|
u32 mdioaddr; /* 0x7e4 - MDIO Address Register */
|
|
|
|
u32 mdiowr; /* 0x7e8 - MDIO Write Data Register */
|
|
|
|
u32 mdiord;/* 0x7ec - MDIO Read Data Register */
|
|
|
|
u32 mdioctrl; /* 0x7f0 - MDIO Control Register */
|
|
|
|
u32 tx_ping_tplr; /* 0x7f4 - Tx packet length */
|
|
|
|
u32 global_interrupt; /* 0x7f8 - Global interrupt enable */
|
|
|
|
u32 tx_ping_tsr; /* 0x7fc - Tx status */
|
|
|
|
u32 tx_pong; /* 0x800 - TX Pong buffer */
|
|
|
|
u32 reserved2[508];
|
|
|
|
u32 tx_pong_tplr; /* 0xff4 - Tx packet length */
|
|
|
|
u32 reserved3; /* 0xff8 */
|
|
|
|
u32 tx_pong_tsr; /* 0xffc - Tx status */
|
|
|
|
u32 rx_ping; /* 0x1000 - Receive Buffer */
|
|
|
|
u32 reserved4[510];
|
|
|
|
u32 rx_ping_rsr; /* 0x17fc - Rx status */
|
|
|
|
u32 rx_pong; /* 0x1800 - Receive Buffer */
|
|
|
|
u32 reserved5[510];
|
|
|
|
u32 rx_pong_rsr; /* 0x1ffc - Rx status */
|
|
|
|
};
|
|
|
|
|
2011-08-25 10:47:56 +00:00
|
|
|
struct xemaclite {
|
2015-12-10 15:31:38 +00:00
|
|
|
bool use_rx_pong_buffer_next; /* Next RX buffer to read from */
|
2011-09-12 21:10:01 +00:00
|
|
|
u32 txpp; /* TX ping pong buffer */
|
|
|
|
u32 rxpp; /* RX ping pong buffer */
|
2015-12-10 12:33:20 +00:00
|
|
|
int phyaddr;
|
2015-12-10 13:18:15 +00:00
|
|
|
struct emaclite_regs *regs;
|
2015-12-10 12:33:20 +00:00
|
|
|
struct phy_device *phydev;
|
|
|
|
struct mii_dev *bus;
|
2011-08-25 10:47:56 +00:00
|
|
|
};
|
2008-03-28 11:41:56 +00:00
|
|
|
|
2015-12-16 09:52:39 +00:00
|
|
|
static uchar etherrxbuff[PKTSIZE_ALIGN]; /* Receive buffer */
|
2008-03-28 11:41:56 +00:00
|
|
|
|
2011-09-12 21:10:05 +00:00
|
|
|
static void xemaclite_alignedread(u32 *srcptr, void *destptr, u32 bytecount)
|
2008-03-28 11:41:56 +00:00
|
|
|
{
|
2010-10-11 01:41:47 +00:00
|
|
|
u32 i;
|
2008-03-28 11:41:56 +00:00
|
|
|
u32 alignbuffer;
|
|
|
|
u32 *to32ptr;
|
|
|
|
u32 *from32ptr;
|
|
|
|
u8 *to8ptr;
|
|
|
|
u8 *from8ptr;
|
|
|
|
|
|
|
|
from32ptr = (u32 *) srcptr;
|
|
|
|
|
|
|
|
/* Word aligned buffer, no correction needed. */
|
|
|
|
to32ptr = (u32 *) destptr;
|
|
|
|
while (bytecount > 3) {
|
|
|
|
*to32ptr++ = *from32ptr++;
|
|
|
|
bytecount -= 4;
|
|
|
|
}
|
|
|
|
to8ptr = (u8 *) to32ptr;
|
|
|
|
|
|
|
|
alignbuffer = *from32ptr++;
|
2011-09-12 21:10:05 +00:00
|
|
|
from8ptr = (u8 *) &alignbuffer;
|
2008-03-28 11:41:56 +00:00
|
|
|
|
2011-09-12 21:10:05 +00:00
|
|
|
for (i = 0; i < bytecount; i++)
|
2008-03-28 11:41:56 +00:00
|
|
|
*to8ptr++ = *from8ptr++;
|
|
|
|
}
|
|
|
|
|
2015-12-10 15:01:50 +00:00
|
|
|
static void xemaclite_alignedwrite(void *srcptr, u32 *destptr, u32 bytecount)
|
2008-03-28 11:41:56 +00:00
|
|
|
{
|
2010-10-11 01:41:47 +00:00
|
|
|
u32 i;
|
2008-03-28 11:41:56 +00:00
|
|
|
u32 alignbuffer;
|
|
|
|
u32 *to32ptr = (u32 *) destptr;
|
|
|
|
u32 *from32ptr;
|
|
|
|
u8 *to8ptr;
|
|
|
|
u8 *from8ptr;
|
|
|
|
|
|
|
|
from32ptr = (u32 *) srcptr;
|
|
|
|
while (bytecount > 3) {
|
|
|
|
|
|
|
|
*to32ptr++ = *from32ptr++;
|
|
|
|
bytecount -= 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
alignbuffer = 0;
|
2011-09-12 21:10:05 +00:00
|
|
|
to8ptr = (u8 *) &alignbuffer;
|
2008-03-28 11:41:56 +00:00
|
|
|
from8ptr = (u8 *) from32ptr;
|
|
|
|
|
2011-09-12 21:10:05 +00:00
|
|
|
for (i = 0; i < bytecount; i++)
|
2008-03-28 11:41:56 +00:00
|
|
|
*to8ptr++ = *from8ptr++;
|
|
|
|
|
|
|
|
*to32ptr++ = alignbuffer;
|
|
|
|
}
|
|
|
|
|
2015-12-10 12:33:20 +00:00
|
|
|
static int wait_for_bit(const char *func, u32 *reg, const u32 mask,
|
|
|
|
bool set, unsigned int timeout)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
unsigned long start = get_timer(0);
|
|
|
|
|
|
|
|
while (1) {
|
2016-07-27 11:25:08 +00:00
|
|
|
val = __raw_readl(reg);
|
2015-12-10 12:33:20 +00:00
|
|
|
|
|
|
|
if (!set)
|
|
|
|
val = ~val;
|
|
|
|
|
|
|
|
if ((val & mask) == mask)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (get_timer(start) > timeout)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (ctrlc()) {
|
|
|
|
puts("Abort\n");
|
|
|
|
return -EINTR;
|
|
|
|
}
|
|
|
|
|
|
|
|
udelay(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
debug("%s: Timeout (reg=%p mask=%08x wait_set=%i)\n",
|
|
|
|
func, reg, mask, set);
|
|
|
|
|
|
|
|
return -ETIMEDOUT;
|
|
|
|
}
|
|
|
|
|
2015-12-10 13:18:15 +00:00
|
|
|
static int mdio_wait(struct emaclite_regs *regs)
|
2015-12-10 12:33:20 +00:00
|
|
|
{
|
2015-12-10 13:18:15 +00:00
|
|
|
return wait_for_bit(__func__, ®s->mdioctrl,
|
2015-12-10 12:33:20 +00:00
|
|
|
XEL_MDIOCTRL_MDIOSTS_MASK, false, 2000);
|
|
|
|
}
|
|
|
|
|
2015-12-10 13:18:15 +00:00
|
|
|
static u32 phyread(struct xemaclite *emaclite, u32 phyaddress, u32 registernum,
|
2015-12-10 12:33:20 +00:00
|
|
|
u16 *data)
|
|
|
|
{
|
2015-12-10 13:18:15 +00:00
|
|
|
struct emaclite_regs *regs = emaclite->regs;
|
|
|
|
|
|
|
|
if (mdio_wait(regs))
|
2015-12-10 12:33:20 +00:00
|
|
|
return 1;
|
|
|
|
|
2016-07-27 11:25:08 +00:00
|
|
|
u32 ctrl_reg = __raw_readl(®s->mdioctrl);
|
|
|
|
__raw_writel(XEL_MDIOADDR_OP_MASK
|
|
|
|
| ((phyaddress << XEL_MDIOADDR_PHYADR_SHIFT)
|
|
|
|
| registernum), ®s->mdioaddr);
|
|
|
|
__raw_writel(ctrl_reg | XEL_MDIOCTRL_MDIOSTS_MASK, ®s->mdioctrl);
|
2015-12-10 12:33:20 +00:00
|
|
|
|
2015-12-10 13:18:15 +00:00
|
|
|
if (mdio_wait(regs))
|
2015-12-10 12:33:20 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
/* Read data */
|
2016-07-27 11:25:08 +00:00
|
|
|
*data = __raw_readl(®s->mdiord);
|
2015-12-10 12:33:20 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-12-10 13:18:15 +00:00
|
|
|
static u32 phywrite(struct xemaclite *emaclite, u32 phyaddress, u32 registernum,
|
2015-12-10 12:33:20 +00:00
|
|
|
u16 data)
|
|
|
|
{
|
2015-12-10 13:18:15 +00:00
|
|
|
struct emaclite_regs *regs = emaclite->regs;
|
|
|
|
|
|
|
|
if (mdio_wait(regs))
|
2015-12-10 12:33:20 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write the PHY address, register number and clear the OP bit in the
|
|
|
|
* MDIO Address register and then write the value into the MDIO Write
|
|
|
|
* Data register. Finally, set the Status bit in the MDIO Control
|
|
|
|
* register to start a MDIO write transaction.
|
|
|
|
*/
|
2016-07-27 11:25:08 +00:00
|
|
|
u32 ctrl_reg = __raw_readl(®s->mdioctrl);
|
|
|
|
__raw_writel(~XEL_MDIOADDR_OP_MASK
|
|
|
|
& ((phyaddress << XEL_MDIOADDR_PHYADR_SHIFT)
|
|
|
|
| registernum), ®s->mdioaddr);
|
|
|
|
__raw_writel(data, ®s->mdiowr);
|
|
|
|
__raw_writel(ctrl_reg | XEL_MDIOCTRL_MDIOSTS_MASK, ®s->mdioctrl);
|
2015-12-10 12:33:20 +00:00
|
|
|
|
2015-12-10 13:18:15 +00:00
|
|
|
if (mdio_wait(regs))
|
2015-12-10 12:33:20 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-12-16 09:40:05 +00:00
|
|
|
static void emaclite_stop(struct udevice *dev)
|
2008-03-28 11:41:56 +00:00
|
|
|
{
|
2015-12-16 09:40:05 +00:00
|
|
|
debug("eth_stop\n");
|
2008-03-28 11:41:56 +00:00
|
|
|
}
|
|
|
|
|
2015-12-10 12:33:20 +00:00
|
|
|
/* Use MII register 1 (MII status register) to detect PHY */
|
|
|
|
#define PHY_DETECT_REG 1
|
|
|
|
|
|
|
|
/* Mask used to verify certain PHY features (or register contents)
|
|
|
|
* in the register above:
|
|
|
|
* 0x1000: 10Mbps full duplex support
|
|
|
|
* 0x0800: 10Mbps half duplex support
|
|
|
|
* 0x0008: Auto-negotiation support
|
|
|
|
*/
|
|
|
|
#define PHY_DETECT_MASK 0x1808
|
|
|
|
|
2015-12-10 16:15:52 +00:00
|
|
|
static int setup_phy(struct udevice *dev)
|
2015-12-10 12:33:20 +00:00
|
|
|
{
|
2016-05-18 10:37:22 +00:00
|
|
|
int i, ret;
|
2015-12-10 12:33:20 +00:00
|
|
|
u16 phyreg;
|
2015-12-10 16:15:52 +00:00
|
|
|
struct xemaclite *emaclite = dev_get_priv(dev);
|
2015-12-10 12:33:20 +00:00
|
|
|
struct phy_device *phydev;
|
|
|
|
|
|
|
|
u32 supported = SUPPORTED_10baseT_Half |
|
|
|
|
SUPPORTED_10baseT_Full |
|
|
|
|
SUPPORTED_100baseT_Half |
|
|
|
|
SUPPORTED_100baseT_Full;
|
|
|
|
|
|
|
|
if (emaclite->phyaddr != -1) {
|
2015-12-10 13:18:15 +00:00
|
|
|
phyread(emaclite, emaclite->phyaddr, PHY_DETECT_REG, &phyreg);
|
2015-12-10 12:33:20 +00:00
|
|
|
if ((phyreg != 0xFFFF) &&
|
|
|
|
((phyreg & PHY_DETECT_MASK) == PHY_DETECT_MASK)) {
|
|
|
|
/* Found a valid PHY address */
|
|
|
|
debug("Default phy address %d is valid\n",
|
|
|
|
emaclite->phyaddr);
|
|
|
|
} else {
|
|
|
|
debug("PHY address is not setup correctly %d\n",
|
|
|
|
emaclite->phyaddr);
|
|
|
|
emaclite->phyaddr = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (emaclite->phyaddr == -1) {
|
|
|
|
/* detect the PHY address */
|
|
|
|
for (i = 31; i >= 0; i--) {
|
2015-12-10 13:18:15 +00:00
|
|
|
phyread(emaclite, i, PHY_DETECT_REG, &phyreg);
|
2015-12-10 12:33:20 +00:00
|
|
|
if ((phyreg != 0xFFFF) &&
|
|
|
|
((phyreg & PHY_DETECT_MASK) == PHY_DETECT_MASK)) {
|
|
|
|
/* Found a valid PHY address */
|
|
|
|
emaclite->phyaddr = i;
|
|
|
|
debug("emaclite: Found valid phy address, %d\n",
|
|
|
|
i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* interface - look at tsec */
|
|
|
|
phydev = phy_connect(emaclite->bus, emaclite->phyaddr, dev,
|
|
|
|
PHY_INTERFACE_MODE_MII);
|
|
|
|
/*
|
|
|
|
* Phy can support 1000baseT but device NOT that's why phydev->supported
|
|
|
|
* must be setup for 1000baseT. phydev->advertising setups what speeds
|
|
|
|
* will be used for autonegotiation where 1000baseT must be disabled.
|
|
|
|
*/
|
|
|
|
phydev->supported = supported | SUPPORTED_1000baseT_Half |
|
|
|
|
SUPPORTED_1000baseT_Full;
|
|
|
|
phydev->advertising = supported;
|
|
|
|
emaclite->phydev = phydev;
|
|
|
|
phy_config(phydev);
|
2016-05-18 10:37:22 +00:00
|
|
|
ret = phy_startup(phydev);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2015-12-10 12:33:20 +00:00
|
|
|
|
|
|
|
if (!phydev->link) {
|
|
|
|
printf("%s: No link.\n", phydev->dev->name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Do not setup anything */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-12-16 09:40:05 +00:00
|
|
|
static int emaclite_start(struct udevice *dev)
|
2008-03-28 11:41:56 +00:00
|
|
|
{
|
2015-12-10 16:15:52 +00:00
|
|
|
struct xemaclite *emaclite = dev_get_priv(dev);
|
2020-12-03 23:55:20 +00:00
|
|
|
struct eth_pdata *pdata = dev_get_plat(dev);
|
2015-12-10 13:18:15 +00:00
|
|
|
struct emaclite_regs *regs = emaclite->regs;
|
|
|
|
|
2011-09-12 21:10:05 +00:00
|
|
|
debug("EmacLite Initialization Started\n");
|
2008-03-28 11:41:56 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* TX - TX_PING & TX_PONG initialization
|
|
|
|
*/
|
|
|
|
/* Restart PING TX */
|
2016-07-27 11:25:08 +00:00
|
|
|
__raw_writel(0, ®s->tx_ping_tsr);
|
2008-03-28 11:41:56 +00:00
|
|
|
/* Copy MAC address */
|
2015-12-10 16:15:52 +00:00
|
|
|
xemaclite_alignedwrite(pdata->enetaddr, ®s->tx_ping,
|
2015-12-10 14:22:21 +00:00
|
|
|
ENET_ADDR_LENGTH);
|
2008-03-28 11:41:56 +00:00
|
|
|
/* Set the length */
|
2016-07-27 11:25:08 +00:00
|
|
|
__raw_writel(ENET_ADDR_LENGTH, ®s->tx_ping_tplr);
|
2008-03-28 11:41:56 +00:00
|
|
|
/* Update the MAC address in the EMAC Lite */
|
2016-07-27 11:25:08 +00:00
|
|
|
__raw_writel(XEL_TSR_PROG_MAC_ADDR, ®s->tx_ping_tsr);
|
2008-03-28 11:41:56 +00:00
|
|
|
/* Wait for EMAC Lite to finish with the MAC address update */
|
2016-07-27 11:25:08 +00:00
|
|
|
while ((__raw_readl(®s->tx_ping_tsr) &
|
2011-08-25 10:36:39 +00:00
|
|
|
XEL_TSR_PROG_MAC_ADDR) != 0)
|
|
|
|
;
|
2008-03-28 11:41:56 +00:00
|
|
|
|
2011-09-12 21:10:01 +00:00
|
|
|
if (emaclite->txpp) {
|
|
|
|
/* The same operation with PONG TX */
|
2016-07-27 11:25:08 +00:00
|
|
|
__raw_writel(0, ®s->tx_pong_tsr);
|
2015-12-10 16:15:52 +00:00
|
|
|
xemaclite_alignedwrite(pdata->enetaddr, ®s->tx_pong,
|
2015-12-10 14:22:21 +00:00
|
|
|
ENET_ADDR_LENGTH);
|
2016-07-27 11:25:08 +00:00
|
|
|
__raw_writel(ENET_ADDR_LENGTH, ®s->tx_pong_tplr);
|
|
|
|
__raw_writel(XEL_TSR_PROG_MAC_ADDR, ®s->tx_pong_tsr);
|
|
|
|
while ((__raw_readl(®s->tx_pong_tsr) &
|
2015-12-10 14:22:21 +00:00
|
|
|
XEL_TSR_PROG_MAC_ADDR) != 0)
|
2011-09-12 21:10:01 +00:00
|
|
|
;
|
|
|
|
}
|
2008-03-28 11:41:56 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* RX - RX_PING & RX_PONG initialization
|
|
|
|
*/
|
|
|
|
/* Write out the value to flush the RX buffer */
|
2016-07-27 11:25:08 +00:00
|
|
|
__raw_writel(XEL_RSR_RECV_IE_MASK, ®s->rx_ping_rsr);
|
2011-09-12 21:10:01 +00:00
|
|
|
|
|
|
|
if (emaclite->rxpp)
|
2016-07-27 11:25:08 +00:00
|
|
|
__raw_writel(XEL_RSR_RECV_IE_MASK, ®s->rx_pong_rsr);
|
2008-03-28 11:41:56 +00:00
|
|
|
|
2016-07-27 11:25:08 +00:00
|
|
|
__raw_writel(XEL_MDIOCTRL_MDIOEN_MASK, ®s->mdioctrl);
|
|
|
|
if (__raw_readl(®s->mdioctrl) & XEL_MDIOCTRL_MDIOEN_MASK)
|
2015-12-10 12:33:20 +00:00
|
|
|
if (!setup_phy(dev))
|
|
|
|
return -1;
|
2015-12-10 16:15:52 +00:00
|
|
|
|
2011-09-12 21:10:05 +00:00
|
|
|
debug("EmacLite Initialization complete\n");
|
2008-03-28 11:41:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-12-10 14:42:01 +00:00
|
|
|
static int xemaclite_txbufferavailable(struct xemaclite *emaclite)
|
2008-03-28 11:41:56 +00:00
|
|
|
{
|
2015-12-10 14:42:01 +00:00
|
|
|
u32 tmp;
|
|
|
|
struct emaclite_regs *regs = emaclite->regs;
|
2011-08-25 10:47:56 +00:00
|
|
|
|
2008-03-28 11:41:56 +00:00
|
|
|
/*
|
|
|
|
* Read the other buffer register
|
|
|
|
* and determine if the other buffer is available
|
|
|
|
*/
|
2016-07-27 11:25:08 +00:00
|
|
|
tmp = ~__raw_readl(®s->tx_ping_tsr);
|
2015-12-10 14:42:01 +00:00
|
|
|
if (emaclite->txpp)
|
2016-07-27 11:25:08 +00:00
|
|
|
tmp |= ~__raw_readl(®s->tx_pong_tsr);
|
2008-03-28 11:41:56 +00:00
|
|
|
|
2015-12-10 14:42:01 +00:00
|
|
|
return !(tmp & XEL_TSR_XMIT_BUSY_MASK);
|
2008-03-28 11:41:56 +00:00
|
|
|
}
|
|
|
|
|
2015-12-10 16:15:52 +00:00
|
|
|
static int emaclite_send(struct udevice *dev, void *ptr, int len)
|
2010-10-11 01:41:47 +00:00
|
|
|
{
|
|
|
|
u32 reg;
|
2015-12-10 16:15:52 +00:00
|
|
|
struct xemaclite *emaclite = dev_get_priv(dev);
|
2015-12-10 14:32:11 +00:00
|
|
|
struct emaclite_regs *regs = emaclite->regs;
|
2008-03-28 11:41:56 +00:00
|
|
|
|
2010-10-11 01:41:47 +00:00
|
|
|
u32 maxtry = 1000;
|
2008-03-28 11:41:56 +00:00
|
|
|
|
2011-09-12 21:10:04 +00:00
|
|
|
if (len > PKTSIZE)
|
|
|
|
len = PKTSIZE;
|
2008-03-28 11:41:56 +00:00
|
|
|
|
2015-12-10 14:42:01 +00:00
|
|
|
while (xemaclite_txbufferavailable(emaclite) && maxtry) {
|
2011-09-12 21:10:05 +00:00
|
|
|
udelay(10);
|
2008-03-28 11:41:56 +00:00
|
|
|
maxtry--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!maxtry) {
|
2011-09-12 21:10:05 +00:00
|
|
|
printf("Error: Timeout waiting for ethernet TX buffer\n");
|
2008-03-28 11:41:56 +00:00
|
|
|
/* Restart PING TX */
|
2016-07-27 11:25:08 +00:00
|
|
|
__raw_writel(0, ®s->tx_ping_tsr);
|
2011-09-12 21:10:01 +00:00
|
|
|
if (emaclite->txpp) {
|
2016-07-27 11:25:08 +00:00
|
|
|
__raw_writel(0, ®s->tx_pong_tsr);
|
2011-09-12 21:10:01 +00:00
|
|
|
}
|
2011-03-08 04:25:53 +00:00
|
|
|
return -1;
|
2008-03-28 11:41:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Determine if the expected buffer address is empty */
|
2016-07-27 11:25:08 +00:00
|
|
|
reg = __raw_readl(®s->tx_ping_tsr);
|
2015-12-10 15:06:07 +00:00
|
|
|
if ((reg & XEL_TSR_XMIT_BUSY_MASK) == 0) {
|
2015-12-10 15:01:50 +00:00
|
|
|
debug("Send packet from tx_ping buffer\n");
|
2008-03-28 11:41:56 +00:00
|
|
|
/* Write the frame to the buffer */
|
2015-12-10 15:01:50 +00:00
|
|
|
xemaclite_alignedwrite(ptr, ®s->tx_ping, len);
|
2016-07-27 11:25:08 +00:00
|
|
|
__raw_writel(len
|
|
|
|
& (XEL_TPLR_LENGTH_MASK_HI | XEL_TPLR_LENGTH_MASK_LO),
|
|
|
|
®s->tx_ping_tplr);
|
|
|
|
reg = __raw_readl(®s->tx_ping_tsr);
|
2008-03-28 11:41:56 +00:00
|
|
|
reg |= XEL_TSR_XMIT_BUSY_MASK;
|
2016-07-27 11:25:08 +00:00
|
|
|
__raw_writel(reg, ®s->tx_ping_tsr);
|
2011-03-08 04:25:53 +00:00
|
|
|
return 0;
|
2008-03-28 11:41:56 +00:00
|
|
|
}
|
2011-09-12 21:10:01 +00:00
|
|
|
|
|
|
|
if (emaclite->txpp) {
|
|
|
|
/* Determine if the expected buffer address is empty */
|
2016-07-27 11:25:08 +00:00
|
|
|
reg = __raw_readl(®s->tx_pong_tsr);
|
2015-12-10 15:06:07 +00:00
|
|
|
if ((reg & XEL_TSR_XMIT_BUSY_MASK) == 0) {
|
2015-12-10 15:01:50 +00:00
|
|
|
debug("Send packet from tx_pong buffer\n");
|
2011-09-12 21:10:01 +00:00
|
|
|
/* Write the frame to the buffer */
|
2015-12-10 15:01:50 +00:00
|
|
|
xemaclite_alignedwrite(ptr, ®s->tx_pong, len);
|
2016-07-27 11:25:08 +00:00
|
|
|
__raw_writel(len &
|
2015-12-10 15:01:50 +00:00
|
|
|
(XEL_TPLR_LENGTH_MASK_HI |
|
2016-07-27 11:25:08 +00:00
|
|
|
XEL_TPLR_LENGTH_MASK_LO),
|
|
|
|
®s->tx_pong_tplr);
|
|
|
|
reg = __raw_readl(®s->tx_pong_tsr);
|
2011-09-12 21:10:01 +00:00
|
|
|
reg |= XEL_TSR_XMIT_BUSY_MASK;
|
2016-07-27 11:25:08 +00:00
|
|
|
__raw_writel(reg, ®s->tx_pong_tsr);
|
2011-09-12 21:10:01 +00:00
|
|
|
return 0;
|
2008-03-28 11:41:56 +00:00
|
|
|
}
|
|
|
|
}
|
2011-09-12 21:10:01 +00:00
|
|
|
|
2011-09-12 21:10:05 +00:00
|
|
|
puts("Error while sending frame\n");
|
2011-03-08 04:25:53 +00:00
|
|
|
return -1;
|
2008-03-28 11:41:56 +00:00
|
|
|
}
|
|
|
|
|
2015-12-10 16:15:52 +00:00
|
|
|
static int emaclite_recv(struct udevice *dev, int flags, uchar **packetp)
|
2008-03-28 11:41:56 +00:00
|
|
|
{
|
2015-12-10 15:31:38 +00:00
|
|
|
u32 length, first_read, reg, attempt = 0;
|
|
|
|
void *addr, *ack;
|
2020-12-23 02:30:28 +00:00
|
|
|
struct xemaclite *emaclite = dev_get_priv(dev);
|
2015-12-10 15:31:38 +00:00
|
|
|
struct emaclite_regs *regs = emaclite->regs;
|
|
|
|
struct ethernet_hdr *eth;
|
|
|
|
struct ip_udp_hdr *ip;
|
|
|
|
|
|
|
|
try_again:
|
|
|
|
if (!emaclite->use_rx_pong_buffer_next) {
|
2016-07-27 11:25:08 +00:00
|
|
|
reg = __raw_readl(®s->rx_ping_rsr);
|
2015-12-10 15:31:38 +00:00
|
|
|
debug("Testing data at rx_ping\n");
|
|
|
|
if ((reg & XEL_RSR_RECV_DONE_MASK) == XEL_RSR_RECV_DONE_MASK) {
|
|
|
|
debug("Data found in rx_ping buffer\n");
|
|
|
|
addr = ®s->rx_ping;
|
|
|
|
ack = ®s->rx_ping_rsr;
|
|
|
|
} else {
|
|
|
|
debug("Data not found in rx_ping buffer\n");
|
|
|
|
/* Pong buffer is not available - return immediately */
|
|
|
|
if (!emaclite->rxpp)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* Try pong buffer if this is first attempt */
|
|
|
|
if (attempt++)
|
|
|
|
return -1;
|
|
|
|
emaclite->use_rx_pong_buffer_next =
|
|
|
|
!emaclite->use_rx_pong_buffer_next;
|
|
|
|
goto try_again;
|
|
|
|
}
|
2008-03-28 11:41:56 +00:00
|
|
|
} else {
|
2016-07-27 11:25:08 +00:00
|
|
|
reg = __raw_readl(®s->rx_pong_rsr);
|
2015-12-10 15:31:38 +00:00
|
|
|
debug("Testing data at rx_pong\n");
|
|
|
|
if ((reg & XEL_RSR_RECV_DONE_MASK) == XEL_RSR_RECV_DONE_MASK) {
|
|
|
|
debug("Data found in rx_pong buffer\n");
|
|
|
|
addr = ®s->rx_pong;
|
|
|
|
ack = ®s->rx_pong_rsr;
|
2011-09-12 21:10:01 +00:00
|
|
|
} else {
|
2015-12-10 15:31:38 +00:00
|
|
|
debug("Data not found in rx_pong buffer\n");
|
|
|
|
/* Try ping buffer if this is first attempt */
|
|
|
|
if (attempt++)
|
|
|
|
return -1;
|
|
|
|
emaclite->use_rx_pong_buffer_next =
|
|
|
|
!emaclite->use_rx_pong_buffer_next;
|
|
|
|
goto try_again;
|
2008-03-28 11:41:56 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-10 15:31:38 +00:00
|
|
|
|
|
|
|
/* Read all bytes for ARP packet with 32bit alignment - 48bytes */
|
|
|
|
first_read = ALIGN(ETHER_HDR_SIZE + ARP_HDR_SIZE + ETH_FCS_LEN, 4);
|
|
|
|
xemaclite_alignedread(addr, etherrxbuff, first_read);
|
|
|
|
|
|
|
|
/* Detect real packet size */
|
|
|
|
eth = (struct ethernet_hdr *)etherrxbuff;
|
|
|
|
switch (ntohs(eth->et_protlen)) {
|
|
|
|
case PROT_ARP:
|
|
|
|
length = first_read;
|
|
|
|
debug("ARP Packet %x\n", length);
|
|
|
|
break;
|
|
|
|
case PROT_IP:
|
|
|
|
ip = (struct ip_udp_hdr *)(etherrxbuff + ETHER_HDR_SIZE);
|
|
|
|
length = ntohs(ip->ip_len);
|
|
|
|
length += ETHER_HDR_SIZE + ETH_FCS_LEN;
|
|
|
|
debug("IP Packet %x\n", length);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
debug("Other Packet\n");
|
|
|
|
length = PKTSIZE;
|
|
|
|
break;
|
2008-03-28 11:41:56 +00:00
|
|
|
}
|
|
|
|
|
2015-12-10 15:31:38 +00:00
|
|
|
/* Read the rest of the packet which is longer then first read */
|
|
|
|
if (length != first_read)
|
|
|
|
xemaclite_alignedread(addr + first_read,
|
|
|
|
etherrxbuff + first_read,
|
|
|
|
length - first_read);
|
2008-03-28 11:41:56 +00:00
|
|
|
|
|
|
|
/* Acknowledge the frame */
|
2016-07-27 11:25:08 +00:00
|
|
|
reg = __raw_readl(ack);
|
2008-03-28 11:41:56 +00:00
|
|
|
reg &= ~XEL_RSR_RECV_DONE_MASK;
|
2016-07-27 11:25:08 +00:00
|
|
|
__raw_writel(reg, ack);
|
2008-03-28 11:41:56 +00:00
|
|
|
|
2015-12-10 15:31:38 +00:00
|
|
|
debug("Packet receive from 0x%p, length %dB\n", addr, length);
|
2015-12-16 09:52:39 +00:00
|
|
|
*packetp = etherrxbuff;
|
|
|
|
return length;
|
2008-03-28 11:41:56 +00:00
|
|
|
}
|
2010-10-11 01:41:47 +00:00
|
|
|
|
2015-12-10 16:15:52 +00:00
|
|
|
static int emaclite_miiphy_read(struct mii_dev *bus, int addr,
|
|
|
|
int devad, int reg)
|
2015-12-10 12:33:20 +00:00
|
|
|
{
|
|
|
|
u32 ret;
|
2015-12-10 16:15:52 +00:00
|
|
|
u16 val = 0;
|
2015-12-10 12:33:20 +00:00
|
|
|
|
2015-12-10 16:15:52 +00:00
|
|
|
ret = phyread(bus->priv, addr, reg, &val);
|
|
|
|
debug("emaclite: Read MII 0x%x, 0x%x, 0x%x, %d\n", addr, reg, val, ret);
|
|
|
|
return val;
|
2015-12-10 12:33:20 +00:00
|
|
|
}
|
|
|
|
|
2015-12-10 16:15:52 +00:00
|
|
|
static int emaclite_miiphy_write(struct mii_dev *bus, int addr, int devad,
|
|
|
|
int reg, u16 value)
|
2015-12-10 12:33:20 +00:00
|
|
|
{
|
2015-12-10 16:15:52 +00:00
|
|
|
debug("emaclite: Write MII 0x%x, 0x%x, 0x%x\n", addr, reg, value);
|
|
|
|
return phywrite(bus->priv, addr, reg, value);
|
2015-12-10 12:33:20 +00:00
|
|
|
}
|
|
|
|
|
2015-12-10 16:15:52 +00:00
|
|
|
static int emaclite_probe(struct udevice *dev)
|
2010-10-11 01:41:47 +00:00
|
|
|
{
|
2015-12-10 16:15:52 +00:00
|
|
|
struct xemaclite *emaclite = dev_get_priv(dev);
|
|
|
|
int ret;
|
2010-10-11 01:41:47 +00:00
|
|
|
|
2015-12-10 16:15:52 +00:00
|
|
|
emaclite->bus = mdio_alloc();
|
|
|
|
emaclite->bus->read = emaclite_miiphy_read;
|
|
|
|
emaclite->bus->write = emaclite_miiphy_write;
|
|
|
|
emaclite->bus->priv = emaclite;
|
2010-10-11 01:41:47 +00:00
|
|
|
|
2020-12-17 04:20:07 +00:00
|
|
|
ret = mdio_register_seq(emaclite->bus, dev_seq(dev));
|
2015-12-10 16:15:52 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2011-08-25 10:47:56 +00:00
|
|
|
|
2015-12-10 16:15:52 +00:00
|
|
|
static int emaclite_remove(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct xemaclite *emaclite = dev_get_priv(dev);
|
|
|
|
|
|
|
|
free(emaclite->phydev);
|
|
|
|
mdio_unregister(emaclite->bus);
|
|
|
|
mdio_free(emaclite->bus);
|
2011-08-25 10:47:56 +00:00
|
|
|
|
2015-12-10 16:15:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2011-09-12 21:10:01 +00:00
|
|
|
|
2015-12-10 16:15:52 +00:00
|
|
|
static const struct eth_ops emaclite_ops = {
|
2015-12-16 09:40:05 +00:00
|
|
|
.start = emaclite_start,
|
2015-12-10 16:15:52 +00:00
|
|
|
.send = emaclite_send,
|
|
|
|
.recv = emaclite_recv,
|
2015-12-16 09:40:05 +00:00
|
|
|
.stop = emaclite_stop,
|
2015-12-10 16:15:52 +00:00
|
|
|
};
|
|
|
|
|
2020-12-03 23:55:21 +00:00
|
|
|
static int emaclite_of_to_plat(struct udevice *dev)
|
2015-12-10 16:15:52 +00:00
|
|
|
{
|
2020-12-03 23:55:20 +00:00
|
|
|
struct eth_pdata *pdata = dev_get_plat(dev);
|
2015-12-10 16:15:52 +00:00
|
|
|
struct xemaclite *emaclite = dev_get_priv(dev);
|
|
|
|
int offset = 0;
|
2010-10-11 01:41:47 +00:00
|
|
|
|
2020-07-17 05:36:48 +00:00
|
|
|
pdata->iobase = dev_read_addr(dev);
|
2016-07-27 11:25:07 +00:00
|
|
|
emaclite->regs = (struct emaclite_regs *)ioremap_nocache(pdata->iobase,
|
|
|
|
0x10000);
|
2010-10-11 01:41:47 +00:00
|
|
|
|
2015-12-10 12:33:20 +00:00
|
|
|
emaclite->phyaddr = -1;
|
|
|
|
|
2017-01-17 23:52:55 +00:00
|
|
|
offset = fdtdec_lookup_phandle(gd->fdt_blob, dev_of_offset(dev),
|
2015-12-10 16:15:52 +00:00
|
|
|
"phy-handle");
|
|
|
|
if (offset > 0)
|
|
|
|
emaclite->phyaddr = fdtdec_get_int(gd->fdt_blob, offset,
|
|
|
|
"reg", -1);
|
2010-10-11 01:41:47 +00:00
|
|
|
|
2017-01-17 23:52:55 +00:00
|
|
|
emaclite->txpp = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
|
2015-12-10 16:15:52 +00:00
|
|
|
"xlnx,tx-ping-pong", 0);
|
2017-01-17 23:52:55 +00:00
|
|
|
emaclite->rxpp = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
|
2015-12-10 16:15:52 +00:00
|
|
|
"xlnx,rx-ping-pong", 0);
|
2015-12-10 12:33:20 +00:00
|
|
|
|
2015-12-10 16:15:52 +00:00
|
|
|
printf("EMACLITE: %lx, phyaddr %d, %d/%d\n", (ulong)emaclite->regs,
|
|
|
|
emaclite->phyaddr, emaclite->txpp, emaclite->rxpp);
|
2015-12-10 12:33:20 +00:00
|
|
|
|
2015-12-10 16:15:52 +00:00
|
|
|
return 0;
|
2010-10-11 01:41:47 +00:00
|
|
|
}
|
2015-12-10 16:15:52 +00:00
|
|
|
|
|
|
|
static const struct udevice_id emaclite_ids[] = {
|
|
|
|
{ .compatible = "xlnx,xps-ethernetlite-1.00.a" },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(emaclite) = {
|
|
|
|
.name = "emaclite",
|
|
|
|
.id = UCLASS_ETH,
|
|
|
|
.of_match = emaclite_ids,
|
2020-12-03 23:55:21 +00:00
|
|
|
.of_to_plat = emaclite_of_to_plat,
|
2015-12-10 16:15:52 +00:00
|
|
|
.probe = emaclite_probe,
|
|
|
|
.remove = emaclite_remove,
|
|
|
|
.ops = &emaclite_ops,
|
2020-12-03 23:55:17 +00:00
|
|
|
.priv_auto = sizeof(struct xemaclite),
|
2020-12-03 23:55:18 +00:00
|
|
|
.plat_auto = sizeof(struct eth_pdata),
|
2015-12-10 16:15:52 +00:00
|
|
|
};
|