2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2018-03-08 10:00:30 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2015-2016 Freescale Semiconductor, Inc.
|
|
|
|
* Copyright 2017 NXP
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
2019-12-28 17:44:48 +00:00
|
|
|
#include <net.h>
|
2018-03-08 10:00:30 +00:00
|
|
|
#include <asm/io.h>
|
|
|
|
#include <netdev.h>
|
|
|
|
#include <fm_eth.h>
|
|
|
|
#include <fsl_mdio.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <asm/types.h>
|
|
|
|
#include <fsl_dtsec.h>
|
|
|
|
#include <asm/arch/soc.h>
|
|
|
|
#include <asm/arch-fsl-layerscape/config.h>
|
|
|
|
#include <asm/arch-fsl-layerscape/immap_lsch2.h>
|
|
|
|
#include <asm/arch/fsl_serdes.h>
|
2020-05-10 17:40:11 +00:00
|
|
|
#include <linux/delay.h>
|
2018-03-08 10:00:30 +00:00
|
|
|
#include <net/pfe_eth/pfe_eth.h>
|
|
|
|
#include <dm/platform_data/pfe_dm_eth.h>
|
|
|
|
#include <i2c.h>
|
|
|
|
|
|
|
|
#define DEFAULT_PFE_MDIO_NAME "PFE_MDIO"
|
|
|
|
|
|
|
|
static inline void ls1012ardb_reset_phy(void)
|
|
|
|
{
|
2018-03-08 10:00:31 +00:00
|
|
|
#ifdef CONFIG_TARGET_LS1012ARDB
|
2018-03-08 10:00:30 +00:00
|
|
|
/* Through reset IO expander reset both RGMII and SGMII PHYs */
|
2019-12-31 07:33:41 +00:00
|
|
|
#ifdef CONFIG_DM_I2C
|
|
|
|
struct udevice *dev;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The I2C IO-expander PCAL9555A is mouted on I2C1 bus(bus number is 0).
|
|
|
|
*/
|
|
|
|
ret = i2c_get_chip_for_busnum(0, I2C_MUX_IO2_ADDR,
|
|
|
|
1, &dev);
|
|
|
|
if (ret) {
|
|
|
|
printf("%s: Cannot find udev for a bus %d\n", __func__,
|
|
|
|
0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Config port 0
|
|
|
|
* - config pin IOXP_RST_ETH1_B and IOXP_RST_ETH2_B
|
|
|
|
* are enabled as an output.
|
|
|
|
*/
|
|
|
|
dm_i2c_reg_write(dev, 6, __PHY_MASK);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set port 0 output a value to reset ETH2 interface
|
|
|
|
* - pin IOXP_RST_ETH2_B output 0b0
|
|
|
|
*/
|
|
|
|
dm_i2c_reg_write(dev, 2, __PHY_ETH2_MASK);
|
|
|
|
mdelay(10);
|
|
|
|
dm_i2c_reg_write(dev, 2, __PHY_ETH1_MASK);
|
|
|
|
/*
|
|
|
|
* Set port 0 output a value to reset ETH1 interface
|
|
|
|
* - pin IOXP_RST_ETH1_B output 0b0
|
|
|
|
*/
|
|
|
|
mdelay(10);
|
|
|
|
dm_i2c_reg_write(dev, 2, 0xFF);
|
|
|
|
#else
|
2018-03-08 10:00:30 +00:00
|
|
|
i2c_reg_write(I2C_MUX_IO2_ADDR, 6, __PHY_MASK);
|
|
|
|
i2c_reg_write(I2C_MUX_IO2_ADDR, 2, __PHY_ETH2_MASK);
|
|
|
|
mdelay(10);
|
|
|
|
i2c_reg_write(I2C_MUX_IO2_ADDR, 2, __PHY_ETH1_MASK);
|
|
|
|
mdelay(10);
|
|
|
|
i2c_reg_write(I2C_MUX_IO2_ADDR, 2, 0xFF);
|
2019-12-31 07:33:41 +00:00
|
|
|
#endif
|
2018-03-08 10:00:30 +00:00
|
|
|
mdelay(50);
|
2018-03-08 10:00:31 +00:00
|
|
|
#endif
|
2018-03-08 10:00:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int pfe_eth_board_init(struct udevice *dev)
|
|
|
|
{
|
|
|
|
static int init_done;
|
|
|
|
struct mii_dev *bus;
|
|
|
|
struct pfe_mdio_info mac_mdio_info;
|
|
|
|
struct pfe_eth_dev *priv = dev_get_priv(dev);
|
2018-03-08 10:00:31 +00:00
|
|
|
struct ccsr_gur __iomem *gur = (void *)CONFIG_SYS_FSL_GUTS_ADDR;
|
|
|
|
|
|
|
|
int srds_s1 = in_be32(&gur->rcwsr[4]) &
|
|
|
|
FSL_CHASSIS2_RCWSR4_SRDS1_PRTCL_MASK;
|
|
|
|
srds_s1 >>= FSL_CHASSIS2_RCWSR4_SRDS1_PRTCL_SHIFT;
|
2018-03-08 10:00:30 +00:00
|
|
|
|
|
|
|
if (!init_done) {
|
|
|
|
ls1012ardb_reset_phy();
|
|
|
|
mac_mdio_info.reg_base = (void *)EMAC1_BASE_ADDR;
|
|
|
|
mac_mdio_info.name = DEFAULT_PFE_MDIO_NAME;
|
|
|
|
|
|
|
|
bus = pfe_mdio_init(&mac_mdio_info);
|
|
|
|
if (!bus) {
|
|
|
|
printf("Failed to register mdio\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
init_done = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
pfe_set_mdio(priv->gemac_port,
|
|
|
|
miiphy_get_dev_by_name(DEFAULT_PFE_MDIO_NAME));
|
|
|
|
|
2018-03-08 10:00:31 +00:00
|
|
|
switch (srds_s1) {
|
|
|
|
case 0x3508:
|
|
|
|
if (!priv->gemac_port) {
|
|
|
|
/* MAC1 */
|
|
|
|
pfe_set_phy_address_mode(priv->gemac_port,
|
|
|
|
CONFIG_PFE_EMAC1_PHY_ADDR,
|
|
|
|
PHY_INTERFACE_MODE_SGMII);
|
|
|
|
} else {
|
|
|
|
/* MAC2 */
|
|
|
|
pfe_set_phy_address_mode(priv->gemac_port,
|
|
|
|
CONFIG_PFE_EMAC2_PHY_ADDR,
|
2020-06-09 10:51:48 +00:00
|
|
|
PHY_INTERFACE_MODE_RGMII_ID);
|
2018-03-08 10:00:31 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x2208:
|
|
|
|
if (!priv->gemac_port) {
|
|
|
|
/* MAC1 */
|
|
|
|
pfe_set_phy_address_mode(priv->gemac_port,
|
|
|
|
CONFIG_PFE_EMAC1_PHY_ADDR,
|
|
|
|
PHY_INTERFACE_MODE_SGMII_2500);
|
|
|
|
} else {
|
|
|
|
/* MAC2 */
|
|
|
|
pfe_set_phy_address_mode(priv->gemac_port,
|
|
|
|
CONFIG_PFE_EMAC2_PHY_ADDR,
|
|
|
|
PHY_INTERFACE_MODE_SGMII_2500);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf("unsupported SerDes PRCTL= %d\n", srds_s1);
|
|
|
|
break;
|
2018-03-08 10:00:30 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct pfe_eth_pdata pfe_pdata0 = {
|
|
|
|
.pfe_eth_pdata_mac = {
|
|
|
|
.iobase = (phys_addr_t)EMAC1_BASE_ADDR,
|
|
|
|
.phy_interface = 0,
|
|
|
|
},
|
|
|
|
|
|
|
|
.pfe_ddr_addr = {
|
|
|
|
.ddr_pfe_baseaddr = (void *)CONFIG_DDR_PFE_BASEADDR,
|
|
|
|
.ddr_pfe_phys_baseaddr = CONFIG_DDR_PFE_PHYS_BASEADDR,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct pfe_eth_pdata pfe_pdata1 = {
|
|
|
|
.pfe_eth_pdata_mac = {
|
|
|
|
.iobase = (phys_addr_t)EMAC2_BASE_ADDR,
|
|
|
|
.phy_interface = 1,
|
|
|
|
},
|
|
|
|
|
|
|
|
.pfe_ddr_addr = {
|
|
|
|
.ddr_pfe_baseaddr = (void *)CONFIG_DDR_PFE_BASEADDR,
|
|
|
|
.ddr_pfe_phys_baseaddr = CONFIG_DDR_PFE_PHYS_BASEADDR,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DEVICE(ls1012a_pfe0) = {
|
|
|
|
.name = "pfe_eth",
|
|
|
|
.platdata = &pfe_pdata0,
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DEVICE(ls1012a_pfe1) = {
|
|
|
|
.name = "pfe_eth",
|
|
|
|
.platdata = &pfe_pdata1,
|
|
|
|
};
|