2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2014-04-01 19:01:13 +00:00
|
|
|
/*
|
|
|
|
* Ethernet driver for TI K2HK EVM.
|
|
|
|
*
|
|
|
|
* (C) Copyright 2012-2014
|
|
|
|
* Texas Instruments Incorporated, <www.ti.com>
|
|
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
2015-11-09 06:47:45 +00:00
|
|
|
#include <console.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2020-05-10 17:40:11 +00:00
|
|
|
#include <linux/delay.h>
|
2014-04-01 19:01:13 +00:00
|
|
|
|
2016-02-02 10:21:33 +00:00
|
|
|
#include <dm.h>
|
2016-08-02 06:31:12 +00:00
|
|
|
#include <dm/lists.h>
|
2016-02-02 10:21:33 +00:00
|
|
|
|
2014-04-01 19:01:13 +00:00
|
|
|
#include <net.h>
|
2014-10-17 17:44:35 +00:00
|
|
|
#include <phy.h>
|
2014-10-17 18:01:15 +00:00
|
|
|
#include <errno.h>
|
2014-04-01 19:01:13 +00:00
|
|
|
#include <miiphy.h>
|
|
|
|
#include <malloc.h>
|
2014-09-05 16:02:47 +00:00
|
|
|
#include <asm/ti-common/keystone_nav.h>
|
2014-09-29 19:17:22 +00:00
|
|
|
#include <asm/ti-common/keystone_net.h>
|
2014-10-22 14:18:21 +00:00
|
|
|
#include <asm/ti-common/keystone_serdes.h>
|
2016-02-02 10:21:33 +00:00
|
|
|
#include <asm/arch/psc_defs.h>
|
2020-05-10 17:40:01 +00:00
|
|
|
#include <linux/libfdt.h>
|
2016-02-02 10:21:33 +00:00
|
|
|
|
2018-10-31 21:21:45 +00:00
|
|
|
#include "cpsw_mdio.h"
|
|
|
|
|
2016-02-02 10:21:33 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2014-04-01 19:01:13 +00:00
|
|
|
|
|
|
|
#ifdef KEYSTONE2_EMAC_GIG_ENABLE
|
|
|
|
#define emac_gigabit_enable(x) keystone2_eth_gigabit_enable(x)
|
|
|
|
#else
|
|
|
|
#define emac_gigabit_enable(x) /* no gigabit to enable */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define RX_BUFF_NUMS 24
|
|
|
|
#define RX_BUFF_LEN 1520
|
|
|
|
#define MAX_SIZE_STREAM_BUFFER RX_BUFF_LEN
|
2014-10-17 18:01:15 +00:00
|
|
|
#define SGMII_ANEG_TIMEOUT 4000
|
2014-04-01 19:01:13 +00:00
|
|
|
|
|
|
|
static u8 rx_buffs[RX_BUFF_NUMS * RX_BUFF_LEN] __aligned(16);
|
|
|
|
|
2016-02-02 10:21:33 +00:00
|
|
|
enum link_type {
|
2016-08-11 14:34:03 +00:00
|
|
|
LINK_TYPE_SGMII_MAC_TO_MAC_AUTO = 0,
|
|
|
|
LINK_TYPE_SGMII_MAC_TO_PHY_MODE = 1,
|
|
|
|
LINK_TYPE_SGMII_MAC_TO_MAC_FORCED_MODE = 2,
|
|
|
|
LINK_TYPE_SGMII_MAC_TO_FIBRE_MODE = 3,
|
|
|
|
LINK_TYPE_SGMII_MAC_TO_PHY_NO_MDIO_MODE = 4,
|
|
|
|
LINK_TYPE_RGMII_LINK_MAC_PHY = 5,
|
|
|
|
LINK_TYPE_RGMII_LINK_MAC_MAC_FORCED = 6,
|
|
|
|
LINK_TYPE_RGMII_LINK_MAC_PHY_NO_MDIO = 7,
|
|
|
|
LINK_TYPE_10G_MAC_TO_PHY_MODE = 10,
|
|
|
|
LINK_TYPE_10G_MAC_TO_MAC_FORCED_MODE = 11,
|
2016-02-02 10:21:33 +00:00
|
|
|
};
|
2014-04-01 19:01:13 +00:00
|
|
|
|
2016-02-02 10:21:33 +00:00
|
|
|
#define mac_hi(mac) (((mac)[0] << 0) | ((mac)[1] << 8) | \
|
|
|
|
((mac)[2] << 16) | ((mac)[3] << 24))
|
|
|
|
#define mac_lo(mac) (((mac)[4] << 0) | ((mac)[5] << 8))
|
2014-04-01 19:01:13 +00:00
|
|
|
|
2016-02-02 10:21:33 +00:00
|
|
|
#ifdef CONFIG_KSNET_NETCP_V1_0
|
2014-04-01 19:01:13 +00:00
|
|
|
|
2016-02-02 10:21:33 +00:00
|
|
|
#define EMAC_EMACSW_BASE_OFS 0x90800
|
|
|
|
#define EMAC_EMACSW_PORT_BASE_OFS (EMAC_EMACSW_BASE_OFS + 0x60)
|
|
|
|
|
|
|
|
/* CPSW Switch slave registers */
|
|
|
|
#define CPGMACSL_REG_SA_LO 0x10
|
|
|
|
#define CPGMACSL_REG_SA_HI 0x14
|
|
|
|
|
|
|
|
#define DEVICE_EMACSW_BASE(base, x) ((base) + EMAC_EMACSW_PORT_BASE_OFS + \
|
|
|
|
(x) * 0x30)
|
|
|
|
|
2018-10-31 21:21:41 +00:00
|
|
|
#elif defined(CONFIG_KSNET_NETCP_V1_5)
|
2016-02-02 10:21:33 +00:00
|
|
|
|
|
|
|
#define EMAC_EMACSW_PORT_BASE_OFS 0x222000
|
|
|
|
|
|
|
|
/* CPSW Switch slave registers */
|
|
|
|
#define CPGMACSL_REG_SA_LO 0x308
|
|
|
|
#define CPGMACSL_REG_SA_HI 0x30c
|
|
|
|
|
|
|
|
#define DEVICE_EMACSW_BASE(base, x) ((base) + EMAC_EMACSW_PORT_BASE_OFS + \
|
|
|
|
(x) * 0x1000)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
struct ks2_eth_priv {
|
|
|
|
struct udevice *dev;
|
|
|
|
struct phy_device *phydev;
|
|
|
|
struct mii_dev *mdio_bus;
|
|
|
|
int phy_addr;
|
|
|
|
phy_interface_t phy_if;
|
2019-02-21 17:02:03 +00:00
|
|
|
int phy_of_handle;
|
2016-02-02 10:21:33 +00:00
|
|
|
int sgmii_link_type;
|
|
|
|
void *mdio_base;
|
|
|
|
struct rx_buff_desc net_rx_buffs;
|
|
|
|
struct pktdma_cfg *netcp_pktdma;
|
|
|
|
void *hd;
|
|
|
|
int slave_port;
|
|
|
|
enum link_type link_type;
|
|
|
|
bool emac_open;
|
|
|
|
bool has_mdio;
|
|
|
|
};
|
2014-04-01 19:01:13 +00:00
|
|
|
|
2016-02-02 10:21:33 +00:00
|
|
|
static void __attribute__((unused))
|
|
|
|
keystone2_eth_gigabit_enable(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct ks2_eth_priv *priv = dev_get_priv(dev);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if link detected is giga-bit
|
|
|
|
* If Gigabit mode detected, enable gigbit in MAC
|
|
|
|
*/
|
2018-10-31 21:21:45 +00:00
|
|
|
if (priv->has_mdio) {
|
|
|
|
if (priv->phydev->speed != 1000)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-02-02 10:21:33 +00:00
|
|
|
writel(readl(DEVICE_EMACSL_BASE(priv->slave_port - 1) +
|
|
|
|
CPGMACSL_REG_CTL) |
|
|
|
|
EMAC_MACCONTROL_GIGFORCE | EMAC_MACCONTROL_GIGABIT_ENABLE,
|
|
|
|
DEVICE_EMACSL_BASE(priv->slave_port - 1) + CPGMACSL_REG_CTL);
|
|
|
|
}
|
2014-04-01 19:01:13 +00:00
|
|
|
|
2015-09-19 10:56:50 +00:00
|
|
|
#ifdef CONFIG_SOC_K2G
|
|
|
|
int keystone_rgmii_config(struct phy_device *phy_dev)
|
|
|
|
{
|
|
|
|
unsigned int i, status;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
do {
|
|
|
|
if (i > SGMII_ANEG_TIMEOUT) {
|
|
|
|
puts(" TIMEOUT !\n");
|
|
|
|
phy_dev->link = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctrlc()) {
|
|
|
|
puts("user interrupt!\n");
|
|
|
|
phy_dev->link = 0;
|
|
|
|
return -EINTR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((i++ % 500) == 0)
|
|
|
|
printf(".");
|
|
|
|
|
|
|
|
udelay(1000); /* 1 ms */
|
|
|
|
status = readl(RGMII_STATUS_REG);
|
|
|
|
} while (!(status & RGMII_REG_STATUS_LINK));
|
|
|
|
|
|
|
|
puts(" done\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2014-10-17 18:01:15 +00:00
|
|
|
int keystone_sgmii_config(struct phy_device *phy_dev, int port, int interface)
|
2014-04-01 19:01:13 +00:00
|
|
|
{
|
|
|
|
unsigned int i, status, mask;
|
|
|
|
unsigned int mr_adv_ability, control;
|
|
|
|
|
|
|
|
switch (interface) {
|
|
|
|
case SGMII_LINK_MAC_MAC_AUTONEG:
|
|
|
|
mr_adv_ability = (SGMII_REG_MR_ADV_ENABLE |
|
|
|
|
SGMII_REG_MR_ADV_LINK |
|
|
|
|
SGMII_REG_MR_ADV_FULL_DUPLEX |
|
|
|
|
SGMII_REG_MR_ADV_GIG_MODE);
|
|
|
|
control = (SGMII_REG_CONTROL_MASTER |
|
|
|
|
SGMII_REG_CONTROL_AUTONEG);
|
|
|
|
|
|
|
|
break;
|
|
|
|
case SGMII_LINK_MAC_PHY:
|
|
|
|
case SGMII_LINK_MAC_PHY_FORCED:
|
|
|
|
mr_adv_ability = SGMII_REG_MR_ADV_ENABLE;
|
|
|
|
control = SGMII_REG_CONTROL_AUTONEG;
|
|
|
|
|
|
|
|
break;
|
|
|
|
case SGMII_LINK_MAC_MAC_FORCED:
|
|
|
|
mr_adv_ability = (SGMII_REG_MR_ADV_ENABLE |
|
|
|
|
SGMII_REG_MR_ADV_LINK |
|
|
|
|
SGMII_REG_MR_ADV_FULL_DUPLEX |
|
|
|
|
SGMII_REG_MR_ADV_GIG_MODE);
|
|
|
|
control = SGMII_REG_CONTROL_MASTER;
|
|
|
|
|
|
|
|
break;
|
|
|
|
case SGMII_LINK_MAC_FIBER:
|
|
|
|
mr_adv_ability = 0x20;
|
|
|
|
control = SGMII_REG_CONTROL_AUTONEG;
|
|
|
|
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
mr_adv_ability = SGMII_REG_MR_ADV_ENABLE;
|
|
|
|
control = SGMII_REG_CONTROL_AUTONEG;
|
|
|
|
}
|
|
|
|
|
|
|
|
__raw_writel(0, SGMII_CTL_REG(port));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Wait for the SerDes pll to lock,
|
|
|
|
* but don't trap if lock is never read
|
|
|
|
*/
|
|
|
|
for (i = 0; i < 1000; i++) {
|
|
|
|
udelay(2000);
|
|
|
|
status = __raw_readl(SGMII_STATUS_REG(port));
|
|
|
|
if ((status & SGMII_REG_STATUS_LOCK) != 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
__raw_writel(mr_adv_ability, SGMII_MRADV_REG(port));
|
|
|
|
__raw_writel(control, SGMII_CTL_REG(port));
|
|
|
|
|
|
|
|
|
|
|
|
mask = SGMII_REG_STATUS_LINK;
|
|
|
|
|
|
|
|
if (control & SGMII_REG_CONTROL_AUTONEG)
|
|
|
|
mask |= SGMII_REG_STATUS_AUTONEG;
|
|
|
|
|
2014-10-17 18:01:15 +00:00
|
|
|
status = __raw_readl(SGMII_STATUS_REG(port));
|
|
|
|
if ((status & mask) == mask)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
printf("\n%s Waiting for SGMII auto negotiation to complete",
|
|
|
|
phy_dev->dev->name);
|
|
|
|
while ((status & mask) != mask) {
|
|
|
|
/*
|
|
|
|
* Timeout reached ?
|
|
|
|
*/
|
|
|
|
if (i > SGMII_ANEG_TIMEOUT) {
|
|
|
|
puts(" TIMEOUT !\n");
|
|
|
|
phy_dev->link = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ctrlc()) {
|
|
|
|
puts("user interrupt!\n");
|
|
|
|
phy_dev->link = 0;
|
|
|
|
return -EINTR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((i++ % 500) == 0)
|
|
|
|
printf(".");
|
|
|
|
|
|
|
|
udelay(1000); /* 1 ms */
|
2014-04-01 19:01:13 +00:00
|
|
|
status = __raw_readl(SGMII_STATUS_REG(port));
|
|
|
|
}
|
2014-10-17 18:01:15 +00:00
|
|
|
puts(" done\n");
|
2014-04-01 19:01:13 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2015-09-19 10:56:50 +00:00
|
|
|
#endif
|
2014-04-01 19:01:13 +00:00
|
|
|
|
|
|
|
int mac_sl_reset(u32 port)
|
|
|
|
{
|
|
|
|
u32 i, v;
|
|
|
|
|
|
|
|
if (port >= DEVICE_N_GMACSL_PORTS)
|
|
|
|
return GMACSL_RET_INVALID_PORT;
|
|
|
|
|
|
|
|
/* Set the soft reset bit */
|
2014-08-28 13:07:45 +00:00
|
|
|
writel(CPGMAC_REG_RESET_VAL_RESET,
|
|
|
|
DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_RESET);
|
2014-04-01 19:01:13 +00:00
|
|
|
|
|
|
|
/* Wait for the bit to clear */
|
|
|
|
for (i = 0; i < DEVICE_EMACSL_RESET_POLL_COUNT; i++) {
|
2014-08-28 13:07:45 +00:00
|
|
|
v = readl(DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_RESET);
|
2014-04-01 19:01:13 +00:00
|
|
|
if ((v & CPGMAC_REG_RESET_VAL_RESET_MASK) !=
|
|
|
|
CPGMAC_REG_RESET_VAL_RESET)
|
|
|
|
return GMACSL_RET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Timeout on the reset */
|
|
|
|
return GMACSL_RET_WARN_RESET_INCOMPLETE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int mac_sl_config(u_int16_t port, struct mac_sl_cfg *cfg)
|
|
|
|
{
|
|
|
|
u32 v, i;
|
|
|
|
int ret = GMACSL_RET_OK;
|
|
|
|
|
|
|
|
if (port >= DEVICE_N_GMACSL_PORTS)
|
|
|
|
return GMACSL_RET_INVALID_PORT;
|
|
|
|
|
|
|
|
if (cfg->max_rx_len > CPGMAC_REG_MAXLEN_LEN) {
|
|
|
|
cfg->max_rx_len = CPGMAC_REG_MAXLEN_LEN;
|
|
|
|
ret = GMACSL_RET_WARN_MAXLEN_TOO_BIG;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Must wait if the device is undergoing reset */
|
|
|
|
for (i = 0; i < DEVICE_EMACSL_RESET_POLL_COUNT; i++) {
|
2014-08-28 13:07:45 +00:00
|
|
|
v = readl(DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_RESET);
|
2014-04-01 19:01:13 +00:00
|
|
|
if ((v & CPGMAC_REG_RESET_VAL_RESET_MASK) !=
|
|
|
|
CPGMAC_REG_RESET_VAL_RESET)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == DEVICE_EMACSL_RESET_POLL_COUNT)
|
|
|
|
return GMACSL_RET_CONFIG_FAIL_RESET_ACTIVE;
|
|
|
|
|
2014-08-28 13:07:45 +00:00
|
|
|
writel(cfg->max_rx_len, DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_MAXLEN);
|
|
|
|
writel(cfg->ctl, DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_CTL);
|
2014-04-01 19:01:13 +00:00
|
|
|
|
2015-09-19 10:56:50 +00:00
|
|
|
#ifndef CONFIG_SOC_K2HK
|
2014-10-17 18:01:14 +00:00
|
|
|
/* Map RX packet flow priority to 0 */
|
|
|
|
writel(0, DEVICE_EMACSL_BASE(port) + CPGMACSL_REG_RX_PRI_MAP);
|
|
|
|
#endif
|
|
|
|
|
2014-04-01 19:01:13 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ethss_config(u32 ctl, u32 max_pkt_size)
|
|
|
|
{
|
|
|
|
u32 i;
|
|
|
|
|
|
|
|
/* Max length register */
|
2014-08-28 13:07:45 +00:00
|
|
|
writel(max_pkt_size, DEVICE_CPSW_BASE + CPSW_REG_MAXLEN);
|
2014-04-01 19:01:13 +00:00
|
|
|
|
|
|
|
/* Control register */
|
2014-08-28 13:07:45 +00:00
|
|
|
writel(ctl, DEVICE_CPSW_BASE + CPSW_REG_CTL);
|
2014-04-01 19:01:13 +00:00
|
|
|
|
|
|
|
/* All statistics enabled by default */
|
2014-08-28 13:07:45 +00:00
|
|
|
writel(CPSW_REG_VAL_STAT_ENABLE_ALL,
|
|
|
|
DEVICE_CPSW_BASE + CPSW_REG_STAT_PORT_EN);
|
2014-04-01 19:01:13 +00:00
|
|
|
|
|
|
|
/* Reset and enable the ALE */
|
2014-08-28 13:07:45 +00:00
|
|
|
writel(CPSW_REG_VAL_ALE_CTL_RESET_AND_ENABLE |
|
|
|
|
CPSW_REG_VAL_ALE_CTL_BYPASS,
|
|
|
|
DEVICE_CPSW_BASE + CPSW_REG_ALE_CONTROL);
|
2014-04-01 19:01:13 +00:00
|
|
|
|
|
|
|
/* All ports put into forward mode */
|
|
|
|
for (i = 0; i < DEVICE_CPSW_NUM_PORTS; i++)
|
2014-08-28 13:07:45 +00:00
|
|
|
writel(CPSW_REG_VAL_PORTCTL_FORWARD_MODE,
|
|
|
|
DEVICE_CPSW_BASE + CPSW_REG_ALE_PORTCTL(i));
|
2014-04-01 19:01:13 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ethss_start(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
struct mac_sl_cfg cfg;
|
|
|
|
|
|
|
|
cfg.max_rx_len = MAX_SIZE_STREAM_BUFFER;
|
|
|
|
cfg.ctl = GMACSL_ENABLE | GMACSL_RX_ENABLE_EXT_CTL;
|
|
|
|
|
|
|
|
for (i = 0; i < DEVICE_N_GMACSL_PORTS; i++) {
|
|
|
|
mac_sl_reset(i);
|
|
|
|
mac_sl_config(i, &cfg);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ethss_stop(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < DEVICE_N_GMACSL_PORTS; i++)
|
|
|
|
mac_sl_reset(i);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-02-02 10:21:33 +00:00
|
|
|
struct ks2_serdes ks2_serdes_sgmii_156p25mhz = {
|
|
|
|
.clk = SERDES_CLOCK_156P25M,
|
|
|
|
.rate = SERDES_RATE_5G,
|
|
|
|
.rate_mode = SERDES_QUARTER_RATE,
|
|
|
|
.intf = SERDES_PHY_SGMII,
|
|
|
|
.loopback = 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifndef CONFIG_SOC_K2G
|
|
|
|
static void keystone2_net_serdes_setup(void)
|
|
|
|
{
|
|
|
|
ks2_serdes_init(CONFIG_KSNET_SERDES_SGMII_BASE,
|
|
|
|
&ks2_serdes_sgmii_156p25mhz,
|
|
|
|
CONFIG_KSNET_SERDES_LANES_PER_SGMII);
|
|
|
|
|
|
|
|
#if defined(CONFIG_SOC_K2E) || defined(CONFIG_SOC_K2L)
|
|
|
|
ks2_serdes_init(CONFIG_KSNET_SERDES_SGMII2_BASE,
|
|
|
|
&ks2_serdes_sgmii_156p25mhz,
|
|
|
|
CONFIG_KSNET_SERDES_LANES_PER_SGMII);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* wait till setup */
|
|
|
|
udelay(5000);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static int ks2_eth_start(struct udevice *dev)
|
2014-04-01 19:01:13 +00:00
|
|
|
{
|
2016-02-02 10:21:33 +00:00
|
|
|
struct ks2_eth_priv *priv = dev_get_priv(dev);
|
2014-10-22 14:18:23 +00:00
|
|
|
|
2016-02-02 10:21:33 +00:00
|
|
|
#ifdef CONFIG_SOC_K2G
|
|
|
|
keystone_rgmii_config(priv->phydev);
|
|
|
|
#else
|
|
|
|
keystone_sgmii_config(priv->phydev, priv->slave_port - 1,
|
|
|
|
priv->sgmii_link_type);
|
2014-10-17 18:01:13 +00:00
|
|
|
#endif
|
|
|
|
|
2016-02-02 10:21:33 +00:00
|
|
|
udelay(10000);
|
|
|
|
|
|
|
|
/* On chip switch configuration */
|
|
|
|
ethss_config(target_get_switch_ctl(), SWITCH_MAX_PKT_SIZE);
|
|
|
|
|
|
|
|
qm_init();
|
|
|
|
|
|
|
|
if (ksnav_init(priv->netcp_pktdma, &priv->net_rx_buffs)) {
|
2017-09-16 05:10:41 +00:00
|
|
|
pr_err("ksnav_init failed\n");
|
2016-02-02 10:21:33 +00:00
|
|
|
goto err_knav_init;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Streaming switch configuration. If not present this
|
|
|
|
* statement is defined to void in target.h.
|
|
|
|
* If present this is usually defined to a series of register writes
|
|
|
|
*/
|
|
|
|
hw_config_streaming_switch();
|
|
|
|
|
|
|
|
if (priv->has_mdio) {
|
|
|
|
phy_startup(priv->phydev);
|
|
|
|
if (priv->phydev->link == 0) {
|
2017-09-16 05:10:41 +00:00
|
|
|
pr_err("phy startup failed\n");
|
2016-02-02 10:21:33 +00:00
|
|
|
goto err_phy_start;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
emac_gigabit_enable(dev);
|
|
|
|
|
|
|
|
ethss_start();
|
|
|
|
|
|
|
|
priv->emac_open = true;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_phy_start:
|
|
|
|
ksnav_close(priv->netcp_pktdma);
|
|
|
|
err_knav_init:
|
|
|
|
qm_close();
|
|
|
|
|
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ks2_eth_send(struct udevice *dev, void *packet, int length)
|
|
|
|
{
|
|
|
|
struct ks2_eth_priv *priv = dev_get_priv(dev);
|
|
|
|
|
|
|
|
genphy_update_link(priv->phydev);
|
|
|
|
if (priv->phydev->link == 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (length < EMAC_MIN_ETHERNET_PKT_SIZE)
|
|
|
|
length = EMAC_MIN_ETHERNET_PKT_SIZE;
|
|
|
|
|
|
|
|
return ksnav_send(priv->netcp_pktdma, (u32 *)packet,
|
|
|
|
length, (priv->slave_port) << 16);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ks2_eth_recv(struct udevice *dev, int flags, uchar **packetp)
|
|
|
|
{
|
|
|
|
struct ks2_eth_priv *priv = dev_get_priv(dev);
|
|
|
|
int pkt_size;
|
|
|
|
u32 *pkt = NULL;
|
|
|
|
|
|
|
|
priv->hd = ksnav_recv(priv->netcp_pktdma, &pkt, &pkt_size);
|
|
|
|
if (priv->hd == NULL)
|
|
|
|
return -EAGAIN;
|
|
|
|
|
|
|
|
*packetp = (uchar *)pkt;
|
|
|
|
|
|
|
|
return pkt_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ks2_eth_free_pkt(struct udevice *dev, uchar *packet,
|
|
|
|
int length)
|
|
|
|
{
|
|
|
|
struct ks2_eth_priv *priv = dev_get_priv(dev);
|
|
|
|
|
|
|
|
ksnav_release_rxhd(priv->netcp_pktdma, priv->hd);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ks2_eth_stop(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct ks2_eth_priv *priv = dev_get_priv(dev);
|
|
|
|
|
|
|
|
if (!priv->emac_open)
|
|
|
|
return;
|
|
|
|
ethss_stop();
|
|
|
|
|
|
|
|
ksnav_close(priv->netcp_pktdma);
|
|
|
|
qm_close();
|
|
|
|
phy_shutdown(priv->phydev);
|
|
|
|
priv->emac_open = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ks2_eth_read_rom_hwaddr(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct ks2_eth_priv *priv = dev_get_priv(dev);
|
2020-12-03 23:55:20 +00:00
|
|
|
struct eth_pdata *pdata = dev_get_plat(dev);
|
2016-02-02 10:21:33 +00:00
|
|
|
u32 maca = 0;
|
|
|
|
u32 macb = 0;
|
|
|
|
|
|
|
|
/* Read the e-fuse mac address */
|
|
|
|
if (priv->slave_port == 1) {
|
|
|
|
maca = __raw_readl(MAC_ID_BASE_ADDR);
|
|
|
|
macb = __raw_readl(MAC_ID_BASE_ADDR + 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
pdata->enetaddr[0] = (macb >> 8) & 0xff;
|
|
|
|
pdata->enetaddr[1] = (macb >> 0) & 0xff;
|
|
|
|
pdata->enetaddr[2] = (maca >> 24) & 0xff;
|
|
|
|
pdata->enetaddr[3] = (maca >> 16) & 0xff;
|
|
|
|
pdata->enetaddr[4] = (maca >> 8) & 0xff;
|
|
|
|
pdata->enetaddr[5] = (maca >> 0) & 0xff;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ks2_eth_write_hwaddr(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct ks2_eth_priv *priv = dev_get_priv(dev);
|
2020-12-03 23:55:20 +00:00
|
|
|
struct eth_pdata *pdata = dev_get_plat(dev);
|
2016-02-02 10:21:33 +00:00
|
|
|
|
|
|
|
writel(mac_hi(pdata->enetaddr),
|
|
|
|
DEVICE_EMACSW_BASE(pdata->iobase, priv->slave_port - 1) +
|
|
|
|
CPGMACSL_REG_SA_HI);
|
|
|
|
writel(mac_lo(pdata->enetaddr),
|
|
|
|
DEVICE_EMACSW_BASE(pdata->iobase, priv->slave_port - 1) +
|
|
|
|
CPGMACSL_REG_SA_LO);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ks2_eth_probe(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct ks2_eth_priv *priv = dev_get_priv(dev);
|
|
|
|
struct mii_dev *mdio_bus;
|
|
|
|
|
|
|
|
priv->dev = dev;
|
2018-10-31 21:21:45 +00:00
|
|
|
priv->emac_open = false;
|
2016-02-02 10:21:33 +00:00
|
|
|
|
|
|
|
/* These clock enables has to be moved to common location */
|
|
|
|
if (cpu_is_k2g())
|
|
|
|
writel(KS2_ETHERNET_RGMII, KS2_ETHERNET_CFG);
|
|
|
|
|
|
|
|
/* By default, select PA PLL clock as PA clock source */
|
|
|
|
#ifndef CONFIG_SOC_K2G
|
|
|
|
if (psc_enable_module(KS2_LPSC_PA))
|
|
|
|
return -EACCES;
|
|
|
|
#endif
|
|
|
|
if (psc_enable_module(KS2_LPSC_CPGMAC))
|
|
|
|
return -EACCES;
|
|
|
|
if (psc_enable_module(KS2_LPSC_CRYPTO))
|
|
|
|
return -EACCES;
|
|
|
|
|
|
|
|
if (cpu_is_k2e() || cpu_is_k2l())
|
|
|
|
pll_pa_clk_sel();
|
|
|
|
|
2016-08-02 06:31:11 +00:00
|
|
|
priv->net_rx_buffs.buff_ptr = rx_buffs;
|
|
|
|
priv->net_rx_buffs.num_buffs = RX_BUFF_NUMS;
|
|
|
|
priv->net_rx_buffs.buff_len = RX_BUFF_LEN;
|
2016-02-02 10:21:33 +00:00
|
|
|
|
2016-08-02 06:31:12 +00:00
|
|
|
if (priv->slave_port == 1) {
|
2018-10-31 21:21:45 +00:00
|
|
|
#ifndef CONFIG_SOC_K2G
|
|
|
|
keystone2_net_serdes_setup();
|
|
|
|
#endif
|
2016-08-02 06:31:12 +00:00
|
|
|
/*
|
|
|
|
* Register MDIO bus for slave 0 only, other slave have
|
|
|
|
* to re-use the same
|
|
|
|
*/
|
2018-10-31 21:21:45 +00:00
|
|
|
mdio_bus = cpsw_mdio_init("ethernet-mdio",
|
|
|
|
(u32)priv->mdio_base,
|
|
|
|
EMAC_MDIO_CLOCK_FREQ,
|
|
|
|
EMAC_MDIO_BUS_FREQ);
|
2016-08-02 06:31:12 +00:00
|
|
|
if (!mdio_bus) {
|
2017-09-16 05:10:41 +00:00
|
|
|
pr_err("MDIO alloc failed\n");
|
2016-08-02 06:31:12 +00:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
priv->mdio_bus = mdio_bus;
|
|
|
|
} else {
|
|
|
|
/* Get the MDIO bus from slave 0 device */
|
|
|
|
struct ks2_eth_priv *parent_priv;
|
|
|
|
|
|
|
|
parent_priv = dev_get_priv(dev->parent);
|
|
|
|
priv->mdio_bus = parent_priv->mdio_bus;
|
2018-10-31 21:21:45 +00:00
|
|
|
priv->mdio_base = parent_priv->mdio_base;
|
2016-02-02 10:21:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
priv->netcp_pktdma = &netcp_pktdma;
|
|
|
|
|
2016-08-02 06:31:12 +00:00
|
|
|
if (priv->has_mdio) {
|
|
|
|
priv->phydev = phy_connect(priv->mdio_bus, priv->phy_addr,
|
|
|
|
dev, priv->phy_if);
|
2019-02-21 17:02:03 +00:00
|
|
|
#ifdef CONFIG_DM_ETH
|
|
|
|
if (priv->phy_of_handle)
|
|
|
|
priv->phydev->node = offset_to_ofnode(priv->phy_of_handle);
|
|
|
|
#endif
|
2016-08-02 06:31:12 +00:00
|
|
|
phy_config(priv->phydev);
|
|
|
|
}
|
2016-02-02 10:21:33 +00:00
|
|
|
|
|
|
|
return 0;
|
2014-04-01 19:01:13 +00:00
|
|
|
}
|
2016-02-02 10:21:33 +00:00
|
|
|
|
|
|
|
int ks2_eth_remove(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct ks2_eth_priv *priv = dev_get_priv(dev);
|
|
|
|
|
2018-10-31 21:21:45 +00:00
|
|
|
cpsw_mdio_free(priv->mdio_bus);
|
2016-02-02 10:21:33 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct eth_ops ks2_eth_ops = {
|
|
|
|
.start = ks2_eth_start,
|
|
|
|
.send = ks2_eth_send,
|
|
|
|
.recv = ks2_eth_recv,
|
|
|
|
.free_pkt = ks2_eth_free_pkt,
|
|
|
|
.stop = ks2_eth_stop,
|
|
|
|
.read_rom_hwaddr = ks2_eth_read_rom_hwaddr,
|
|
|
|
.write_hwaddr = ks2_eth_write_hwaddr,
|
|
|
|
};
|
|
|
|
|
2016-08-02 06:31:12 +00:00
|
|
|
static int ks2_eth_bind_slaves(struct udevice *dev, int gbe, int *gbe_0)
|
2016-02-02 10:21:33 +00:00
|
|
|
{
|
|
|
|
const void *fdt = gd->fdt_blob;
|
2016-08-02 06:31:12 +00:00
|
|
|
struct udevice *sl_dev;
|
2016-02-02 10:21:33 +00:00
|
|
|
int interfaces;
|
2016-08-02 06:31:12 +00:00
|
|
|
int sec_slave;
|
|
|
|
int slave;
|
|
|
|
int ret;
|
|
|
|
char *slave_name;
|
|
|
|
|
|
|
|
interfaces = fdt_subnode_offset(fdt, gbe, "interfaces");
|
2016-10-02 23:59:29 +00:00
|
|
|
fdt_for_each_subnode(slave, fdt, interfaces) {
|
2016-08-02 06:31:12 +00:00
|
|
|
int slave_no;
|
|
|
|
|
|
|
|
slave_no = fdtdec_get_int(fdt, slave, "slave-port", -ENOENT);
|
|
|
|
if (slave_no == -ENOENT)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (slave_no == 0) {
|
|
|
|
/* This is the current eth device */
|
|
|
|
*gbe_0 = slave;
|
|
|
|
} else {
|
|
|
|
/* Slave devices to be registered */
|
|
|
|
slave_name = malloc(20);
|
|
|
|
snprintf(slave_name, 20, "netcp@slave-%d", slave_no);
|
|
|
|
ret = device_bind_driver_to_node(dev, "eth_ks2_sl",
|
2017-05-19 02:09:07 +00:00
|
|
|
slave_name, offset_to_ofnode(slave),
|
|
|
|
&sl_dev);
|
2016-08-02 06:31:12 +00:00
|
|
|
if (ret) {
|
2017-09-16 05:10:41 +00:00
|
|
|
pr_err("ks2_net - not able to bind slave interfaces\n");
|
2016-08-02 06:31:12 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sec_slave = fdt_subnode_offset(fdt, gbe, "secondary-slave-ports");
|
2016-10-02 23:59:29 +00:00
|
|
|
fdt_for_each_subnode(slave, fdt, sec_slave) {
|
2016-08-02 06:31:12 +00:00
|
|
|
int slave_no;
|
|
|
|
|
|
|
|
slave_no = fdtdec_get_int(fdt, slave, "slave-port", -ENOENT);
|
|
|
|
if (slave_no == -ENOENT)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Slave devices to be registered */
|
|
|
|
slave_name = malloc(20);
|
|
|
|
snprintf(slave_name, 20, "netcp@slave-%d", slave_no);
|
|
|
|
ret = device_bind_driver_to_node(dev, "eth_ks2_sl", slave_name,
|
2017-05-19 02:09:07 +00:00
|
|
|
offset_to_ofnode(slave), &sl_dev);
|
2016-08-02 06:31:12 +00:00
|
|
|
if (ret) {
|
2017-09-16 05:10:41 +00:00
|
|
|
pr_err("ks2_net - not able to bind slave interfaces\n");
|
2016-08-02 06:31:12 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ks2_eth_parse_slave_interface(int netcp, int slave,
|
|
|
|
struct ks2_eth_priv *priv,
|
|
|
|
struct eth_pdata *pdata)
|
|
|
|
{
|
|
|
|
const void *fdt = gd->fdt_blob;
|
2016-02-02 10:21:33 +00:00
|
|
|
int mdio;
|
2016-08-02 06:31:12 +00:00
|
|
|
int phy;
|
|
|
|
int dma_count;
|
|
|
|
u32 dma_channel[8];
|
2019-02-21 17:02:03 +00:00
|
|
|
const char *phy_mode;
|
2016-02-02 10:21:33 +00:00
|
|
|
|
2016-08-02 06:31:12 +00:00
|
|
|
priv->slave_port = fdtdec_get_int(fdt, slave, "slave-port", -1);
|
|
|
|
priv->net_rx_buffs.rx_flow = priv->slave_port * 8;
|
2016-02-02 10:21:33 +00:00
|
|
|
|
|
|
|
/* U-Boot slave port number starts with 1 instead of 0 */
|
|
|
|
priv->slave_port += 1;
|
|
|
|
|
2016-08-02 06:31:12 +00:00
|
|
|
dma_count = fdtdec_get_int_array_count(fdt, netcp,
|
|
|
|
"ti,navigator-dmas",
|
|
|
|
dma_channel, 8);
|
2016-02-02 10:21:33 +00:00
|
|
|
|
2016-08-02 06:31:12 +00:00
|
|
|
if (dma_count > (2 * priv->slave_port)) {
|
|
|
|
int dma_idx;
|
|
|
|
|
|
|
|
dma_idx = priv->slave_port * 2 - 1;
|
|
|
|
priv->net_rx_buffs.rx_flow = dma_channel[dma_idx];
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->link_type = fdtdec_get_int(fdt, slave, "link-interface", -1);
|
|
|
|
|
|
|
|
phy = fdtdec_lookup_phandle(fdt, slave, "phy-handle");
|
2019-02-21 17:02:03 +00:00
|
|
|
|
2016-08-02 06:31:12 +00:00
|
|
|
if (phy >= 0) {
|
2019-02-21 17:02:03 +00:00
|
|
|
priv->phy_of_handle = phy;
|
2016-08-02 06:31:12 +00:00
|
|
|
priv->phy_addr = fdtdec_get_int(fdt, phy, "reg", -1);
|
|
|
|
|
|
|
|
mdio = fdt_parent_offset(fdt, phy);
|
|
|
|
if (mdio < 0) {
|
2017-09-16 05:10:41 +00:00
|
|
|
pr_err("mdio dt not found\n");
|
2016-08-02 06:31:12 +00:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
priv->mdio_base = (void *)fdtdec_get_addr(fdt, mdio, "reg");
|
2016-02-02 10:21:33 +00:00
|
|
|
}
|
|
|
|
|
2016-08-11 14:34:03 +00:00
|
|
|
if (priv->link_type == LINK_TYPE_SGMII_MAC_TO_PHY_MODE) {
|
2016-02-02 10:21:33 +00:00
|
|
|
priv->phy_if = PHY_INTERFACE_MODE_SGMII;
|
|
|
|
pdata->phy_interface = priv->phy_if;
|
|
|
|
priv->sgmii_link_type = SGMII_LINK_MAC_PHY;
|
|
|
|
priv->has_mdio = true;
|
2016-08-11 14:34:03 +00:00
|
|
|
} else if (priv->link_type == LINK_TYPE_RGMII_LINK_MAC_PHY) {
|
2019-02-21 17:02:03 +00:00
|
|
|
phy_mode = fdt_getprop(fdt, slave, "phy-mode", NULL);
|
|
|
|
if (phy_mode) {
|
|
|
|
priv->phy_if = phy_get_interface_by_name(phy_mode);
|
|
|
|
if (priv->phy_if != PHY_INTERFACE_MODE_RGMII &&
|
|
|
|
priv->phy_if != PHY_INTERFACE_MODE_RGMII_ID &&
|
|
|
|
priv->phy_if != PHY_INTERFACE_MODE_RGMII_RXID &&
|
|
|
|
priv->phy_if != PHY_INTERFACE_MODE_RGMII_TXID) {
|
|
|
|
pr_err("invalid phy-mode\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
priv->phy_if = PHY_INTERFACE_MODE_RGMII;
|
|
|
|
}
|
2016-08-11 14:34:03 +00:00
|
|
|
pdata->phy_interface = priv->phy_if;
|
|
|
|
priv->has_mdio = true;
|
2016-02-02 10:21:33 +00:00
|
|
|
}
|
|
|
|
|
2016-08-02 06:31:12 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-12-03 23:55:21 +00:00
|
|
|
static int ks2_sl_eth_of_to_plat(struct udevice *dev)
|
2016-08-02 06:31:12 +00:00
|
|
|
{
|
|
|
|
struct ks2_eth_priv *priv = dev_get_priv(dev);
|
2020-12-03 23:55:20 +00:00
|
|
|
struct eth_pdata *pdata = dev_get_plat(dev);
|
2016-08-02 06:31:12 +00:00
|
|
|
const void *fdt = gd->fdt_blob;
|
2017-01-17 23:52:55 +00:00
|
|
|
int slave = dev_of_offset(dev);
|
2016-08-02 06:31:12 +00:00
|
|
|
int interfaces;
|
|
|
|
int gbe;
|
|
|
|
int netcp_devices;
|
|
|
|
int netcp;
|
|
|
|
|
|
|
|
interfaces = fdt_parent_offset(fdt, slave);
|
|
|
|
gbe = fdt_parent_offset(fdt, interfaces);
|
|
|
|
netcp_devices = fdt_parent_offset(fdt, gbe);
|
|
|
|
netcp = fdt_parent_offset(fdt, netcp_devices);
|
|
|
|
|
|
|
|
ks2_eth_parse_slave_interface(netcp, slave, priv, pdata);
|
|
|
|
|
|
|
|
pdata->iobase = fdtdec_get_addr(fdt, netcp, "reg");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-12-03 23:55:21 +00:00
|
|
|
static int ks2_eth_of_to_plat(struct udevice *dev)
|
2016-08-02 06:31:12 +00:00
|
|
|
{
|
|
|
|
struct ks2_eth_priv *priv = dev_get_priv(dev);
|
2020-12-03 23:55:20 +00:00
|
|
|
struct eth_pdata *pdata = dev_get_plat(dev);
|
2016-08-02 06:31:12 +00:00
|
|
|
const void *fdt = gd->fdt_blob;
|
|
|
|
int gbe_0 = -ENODEV;
|
|
|
|
int netcp_devices;
|
|
|
|
int gbe;
|
|
|
|
|
2017-01-17 23:52:55 +00:00
|
|
|
netcp_devices = fdt_subnode_offset(fdt, dev_of_offset(dev),
|
2016-08-02 06:31:12 +00:00
|
|
|
"netcp-devices");
|
|
|
|
gbe = fdt_subnode_offset(fdt, netcp_devices, "gbe");
|
|
|
|
|
|
|
|
ks2_eth_bind_slaves(dev, gbe, &gbe_0);
|
|
|
|
|
2017-01-17 23:52:55 +00:00
|
|
|
ks2_eth_parse_slave_interface(dev_of_offset(dev), gbe_0, priv, pdata);
|
2016-08-02 06:31:12 +00:00
|
|
|
|
2020-07-17 05:36:48 +00:00
|
|
|
pdata->iobase = dev_read_addr(dev);
|
2016-02-02 10:21:33 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct udevice_id ks2_eth_ids[] = {
|
|
|
|
{ .compatible = "ti,netcp-1.0" },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2016-08-02 06:31:12 +00:00
|
|
|
U_BOOT_DRIVER(eth_ks2_slave) = {
|
|
|
|
.name = "eth_ks2_sl",
|
|
|
|
.id = UCLASS_ETH,
|
2020-12-03 23:55:21 +00:00
|
|
|
.of_to_plat = ks2_sl_eth_of_to_plat,
|
2016-08-02 06:31:12 +00:00
|
|
|
.probe = ks2_eth_probe,
|
|
|
|
.remove = ks2_eth_remove,
|
|
|
|
.ops = &ks2_eth_ops,
|
2020-12-03 23:55:17 +00:00
|
|
|
.priv_auto = sizeof(struct ks2_eth_priv),
|
2020-12-03 23:55:18 +00:00
|
|
|
.plat_auto = sizeof(struct eth_pdata),
|
2016-08-02 06:31:12 +00:00
|
|
|
.flags = DM_FLAG_ALLOC_PRIV_DMA,
|
|
|
|
};
|
2016-02-02 10:21:33 +00:00
|
|
|
|
|
|
|
U_BOOT_DRIVER(eth_ks2) = {
|
|
|
|
.name = "eth_ks2",
|
|
|
|
.id = UCLASS_ETH,
|
|
|
|
.of_match = ks2_eth_ids,
|
2020-12-03 23:55:21 +00:00
|
|
|
.of_to_plat = ks2_eth_of_to_plat,
|
2016-02-02 10:21:33 +00:00
|
|
|
.probe = ks2_eth_probe,
|
|
|
|
.remove = ks2_eth_remove,
|
|
|
|
.ops = &ks2_eth_ops,
|
2020-12-03 23:55:17 +00:00
|
|
|
.priv_auto = sizeof(struct ks2_eth_priv),
|
2020-12-03 23:55:18 +00:00
|
|
|
.plat_auto = sizeof(struct eth_pdata),
|
2016-02-02 10:21:33 +00:00
|
|
|
.flags = DM_FLAG_ALLOC_PRIV_DMA,
|
|
|
|
};
|