| /* Applied Micro X-Gene SoC Ethernet Driver |
| * |
| * Copyright (c) 2014, Applied Micro Circuits Corporation |
| * Authors: Iyappan Subramanian <isubramanian@apm.com> |
| * Keyur Chudgar <kchudgar@apm.com> |
| * |
| * This program is free software; you can redistribute it and/or modify it |
| * under the terms of the GNU General Public License as published by the |
| * Free Software Foundation; either version 2 of the License, or (at your |
| * option) any later version. |
| * |
| * This program is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| * GNU General Public License for more details. |
| * |
| * You should have received a copy of the GNU General Public License |
| * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| */ |
| |
| #include "xgene_enet_main.h" |
| #include "xgene_enet_hw.h" |
| #include "xgene_enet_sgmac.h" |
| #include "xgene_enet_xgmac.h" |
| |
| static void xgene_enet_wr_csr(struct xgene_enet_pdata *p, u32 offset, u32 val) |
| { |
| iowrite32(val, p->eth_csr_addr + offset); |
| } |
| |
| static void xgene_enet_wr_ring_if(struct xgene_enet_pdata *p, |
| u32 offset, u32 val) |
| { |
| iowrite32(val, p->eth_ring_if_addr + offset); |
| } |
| |
| static void xgene_enet_wr_diag_csr(struct xgene_enet_pdata *p, |
| u32 offset, u32 val) |
| { |
| iowrite32(val, p->eth_diag_csr_addr + offset); |
| } |
| |
| static void xgene_enet_wr_mcx_csr(struct xgene_enet_pdata *pdata, |
| u32 offset, u32 val) |
| { |
| void __iomem *addr = pdata->mcx_mac_csr_addr + offset; |
| |
| iowrite32(val, addr); |
| } |
| |
| static bool xgene_enet_wr_indirect(struct xgene_indirect_ctl *ctl, |
| u32 wr_addr, u32 wr_data) |
| { |
| int i; |
| |
| iowrite32(wr_addr, ctl->addr); |
| iowrite32(wr_data, ctl->ctl); |
| iowrite32(XGENE_ENET_WR_CMD, ctl->cmd); |
| |
| /* wait for write command to complete */ |
| for (i = 0; i < 10; i++) { |
| if (ioread32(ctl->cmd_done)) { |
| iowrite32(0, ctl->cmd); |
| return true; |
| } |
| udelay(1); |
| } |
| |
| return false; |
| } |
| |
| static void xgene_enet_wr_mac(struct xgene_enet_pdata *p, |
| u32 wr_addr, u32 wr_data) |
| { |
| struct xgene_indirect_ctl ctl = { |
| .addr = p->mcx_mac_addr + MAC_ADDR_REG_OFFSET, |
| .ctl = p->mcx_mac_addr + MAC_WRITE_REG_OFFSET, |
| .cmd = p->mcx_mac_addr + MAC_COMMAND_REG_OFFSET, |
| .cmd_done = p->mcx_mac_addr + MAC_COMMAND_DONE_REG_OFFSET |
| }; |
| |
| if (!xgene_enet_wr_indirect(&ctl, wr_addr, wr_data)) |
| netdev_err(p->ndev, "mac write failed, addr: %04x\n", wr_addr); |
| } |
| |
| static u32 xgene_enet_rd_csr(struct xgene_enet_pdata *p, u32 offset) |
| { |
| return ioread32(p->eth_csr_addr + offset); |
| } |
| |
| static u32 xgene_enet_rd_diag_csr(struct xgene_enet_pdata *p, u32 offset) |
| { |
| return ioread32(p->eth_diag_csr_addr + offset); |
| } |
| |
| static u32 xgene_enet_rd_indirect(struct xgene_indirect_ctl *ctl, u32 rd_addr) |
| { |
| u32 rd_data; |
| int i; |
| |
| iowrite32(rd_addr, ctl->addr); |
| iowrite32(XGENE_ENET_RD_CMD, ctl->cmd); |
| |
| /* wait for read command to complete */ |
| for (i = 0; i < 10; i++) { |
| if (ioread32(ctl->cmd_done)) { |
| rd_data = ioread32(ctl->ctl); |
| iowrite32(0, ctl->cmd); |
| |
| return rd_data; |
| } |
| udelay(1); |
| } |
| |
| pr_err("%s: mac read failed, addr: %04x\n", __func__, rd_addr); |
| |
| return 0; |
| } |
| |
| static u32 xgene_enet_rd_mac(struct xgene_enet_pdata *p, u32 rd_addr) |
| { |
| struct xgene_indirect_ctl ctl = { |
| .addr = p->mcx_mac_addr + MAC_ADDR_REG_OFFSET, |
| .ctl = p->mcx_mac_addr + MAC_READ_REG_OFFSET, |
| .cmd = p->mcx_mac_addr + MAC_COMMAND_REG_OFFSET, |
| .cmd_done = p->mcx_mac_addr + MAC_COMMAND_DONE_REG_OFFSET |
| }; |
| |
| return xgene_enet_rd_indirect(&ctl, rd_addr); |
| } |
| |
| static int xgene_enet_ecc_init(struct xgene_enet_pdata *p) |
| { |
| struct net_device *ndev = p->ndev; |
| u32 data; |
| int i = 0; |
| |
| xgene_enet_wr_diag_csr(p, ENET_CFG_MEM_RAM_SHUTDOWN_ADDR, 0); |
| do { |
| usleep_range(100, 110); |
| data = xgene_enet_rd_diag_csr(p, ENET_BLOCK_MEM_RDY_ADDR); |
| if (data == ~0U) |
| return 0; |
| } while (++i < 10); |
| |
| netdev_err(ndev, "Failed to release memory from shutdown\n"); |
| return -ENODEV; |
| } |
| |
| static void xgene_enet_config_ring_if_assoc(struct xgene_enet_pdata *p) |
| { |
| u32 val; |
| |
| val = (p->enet_id == XGENE_ENET1) ? 0xffffffff : 0; |
| xgene_enet_wr_ring_if(p, ENET_CFGSSQMIWQASSOC_ADDR, val); |
| xgene_enet_wr_ring_if(p, ENET_CFGSSQMIFPQASSOC_ADDR, val); |
| } |
| |
| static void xgene_mii_phy_write(struct xgene_enet_pdata *p, u8 phy_id, |
| u32 reg, u16 data) |
| { |
| u32 addr, wr_data, done; |
| int i; |
| |
| addr = PHY_ADDR(phy_id) | REG_ADDR(reg); |
| xgene_enet_wr_mac(p, MII_MGMT_ADDRESS_ADDR, addr); |
| |
| wr_data = PHY_CONTROL(data); |
| xgene_enet_wr_mac(p, MII_MGMT_CONTROL_ADDR, wr_data); |
| |
| for (i = 0; i < 10; i++) { |
| done = xgene_enet_rd_mac(p, MII_MGMT_INDICATORS_ADDR); |
| if (!(done & BUSY_MASK)) |
| return; |
| usleep_range(10, 20); |
| } |
| |
| netdev_err(p->ndev, "MII_MGMT write failed\n"); |
| } |
| |
| static u32 xgene_mii_phy_read(struct xgene_enet_pdata *p, u8 phy_id, u32 reg) |
| { |
| u32 addr, data, done; |
| int i; |
| |
| addr = PHY_ADDR(phy_id) | REG_ADDR(reg); |
| xgene_enet_wr_mac(p, MII_MGMT_ADDRESS_ADDR, addr); |
| xgene_enet_wr_mac(p, MII_MGMT_COMMAND_ADDR, READ_CYCLE_MASK); |
| |
| for (i = 0; i < 10; i++) { |
| done = xgene_enet_rd_mac(p, MII_MGMT_INDICATORS_ADDR); |
| if (!(done & BUSY_MASK)) { |
| data = xgene_enet_rd_mac(p, MII_MGMT_STATUS_ADDR); |
| xgene_enet_wr_mac(p, MII_MGMT_COMMAND_ADDR, 0); |
| |
| return data; |
| } |
| usleep_range(10, 20); |
| } |
| |
| netdev_err(p->ndev, "MII_MGMT read failed\n"); |
| |
| return 0; |
| } |
| |
| static void xgene_sgmac_reset(struct xgene_enet_pdata *p) |
| { |
| xgene_enet_wr_mac(p, MAC_CONFIG_1_ADDR, SOFT_RESET1); |
| xgene_enet_wr_mac(p, MAC_CONFIG_1_ADDR, 0); |
| } |
| |
| static void xgene_sgmac_set_mac_addr(struct xgene_enet_pdata *p) |
| { |
| u32 addr0, addr1; |
| u8 *dev_addr = p->ndev->dev_addr; |
| |
| addr0 = (dev_addr[3] << 24) | (dev_addr[2] << 16) | |
| (dev_addr[1] << 8) | dev_addr[0]; |
| xgene_enet_wr_mac(p, STATION_ADDR0_ADDR, addr0); |
| |
| addr1 = xgene_enet_rd_mac(p, STATION_ADDR1_ADDR); |
| addr1 |= (dev_addr[5] << 24) | (dev_addr[4] << 16); |
| xgene_enet_wr_mac(p, STATION_ADDR1_ADDR, addr1); |
| } |
| |
| static u32 xgene_enet_link_status(struct xgene_enet_pdata *p) |
| { |
| u32 data; |
| |
| data = xgene_mii_phy_read(p, INT_PHY_ADDR, |
| SGMII_BASE_PAGE_ABILITY_ADDR >> 2); |
| |
| return data & LINK_UP; |
| } |
| |
| static void xgene_sgmac_init(struct xgene_enet_pdata *p) |
| { |
| u32 data, loop = 10; |
| u32 offset = p->port_id * 4; |
| u32 enet_spare_cfg_reg, rsif_config_reg; |
| u32 cfg_bypass_reg, rx_dv_gate_reg; |
| |
| xgene_sgmac_reset(p); |
| |
| /* Enable auto-negotiation */ |
| xgene_mii_phy_write(p, INT_PHY_ADDR, SGMII_CONTROL_ADDR >> 2, 0x1000); |
| xgene_mii_phy_write(p, INT_PHY_ADDR, SGMII_TBI_CONTROL_ADDR >> 2, 0); |
| |
| while (loop--) { |
| data = xgene_mii_phy_read(p, INT_PHY_ADDR, |
| SGMII_STATUS_ADDR >> 2); |
| if ((data & AUTO_NEG_COMPLETE) && (data & LINK_STATUS)) |
| break; |
| usleep_range(1000, 2000); |
| } |
| if (!(data & AUTO_NEG_COMPLETE) || !(data & LINK_STATUS)) |
| netdev_err(p->ndev, "Auto-negotiation failed\n"); |
| |
| data = xgene_enet_rd_mac(p, MAC_CONFIG_2_ADDR); |
| ENET_INTERFACE_MODE2_SET(&data, 2); |
| xgene_enet_wr_mac(p, MAC_CONFIG_2_ADDR, data | FULL_DUPLEX2); |
| xgene_enet_wr_mac(p, INTERFACE_CONTROL_ADDR, ENET_GHD_MODE); |
| |
| if (p->enet_id == XGENE_ENET1) { |
| enet_spare_cfg_reg = ENET_SPARE_CFG_REG_ADDR; |
| rsif_config_reg = RSIF_CONFIG_REG_ADDR; |
| cfg_bypass_reg = CFG_BYPASS_ADDR; |
| rx_dv_gate_reg = SG_RX_DV_GATE_REG_0_ADDR; |
| } else { |
| enet_spare_cfg_reg = XG_ENET_SPARE_CFG_REG_ADDR; |
| rsif_config_reg = XG_RSIF_CONFIG_REG_ADDR; |
| cfg_bypass_reg = XG_CFG_BYPASS_ADDR; |
| rx_dv_gate_reg = XG_MCX_RX_DV_GATE_REG_0_ADDR; |
| } |
| |
| data = xgene_enet_rd_csr(p, enet_spare_cfg_reg); |
| data |= MPA_IDLE_WITH_QMI_EMPTY; |
| xgene_enet_wr_csr(p, enet_spare_cfg_reg, data); |
| |
| xgene_sgmac_set_mac_addr(p); |
| |
| /* Adjust MDC clock frequency */ |
| data = xgene_enet_rd_mac(p, MII_MGMT_CONFIG_ADDR); |
| MGMT_CLOCK_SEL_SET(&data, 7); |
| xgene_enet_wr_mac(p, MII_MGMT_CONFIG_ADDR, data); |
| |
| /* Enable drop if bufpool not available */ |
| data = xgene_enet_rd_csr(p, rsif_config_reg); |
| data |= CFG_RSIF_FPBUFF_TIMEOUT_EN; |
| xgene_enet_wr_csr(p, rsif_config_reg, data); |
| |
| /* Bypass traffic gating */ |
| xgene_enet_wr_csr(p, XG_ENET_SPARE_CFG_REG_1_ADDR, 0x84); |
| xgene_enet_wr_csr(p, cfg_bypass_reg, RESUME_TX); |
| xgene_enet_wr_mcx_csr(p, rx_dv_gate_reg + offset, RESUME_RX0); |
| } |
| |
| static void xgene_sgmac_rxtx(struct xgene_enet_pdata *p, u32 bits, bool set) |
| { |
| u32 data; |
| |
| data = xgene_enet_rd_mac(p, MAC_CONFIG_1_ADDR); |
| |
| if (set) |
| data |= bits; |
| else |
| data &= ~bits; |
| |
| xgene_enet_wr_mac(p, MAC_CONFIG_1_ADDR, data); |
| } |
| |
| static void xgene_sgmac_rx_enable(struct xgene_enet_pdata *p) |
| { |
| xgene_sgmac_rxtx(p, RX_EN, true); |
| } |
| |
| static void xgene_sgmac_tx_enable(struct xgene_enet_pdata *p) |
| { |
| xgene_sgmac_rxtx(p, TX_EN, true); |
| } |
| |
| static void xgene_sgmac_rx_disable(struct xgene_enet_pdata *p) |
| { |
| xgene_sgmac_rxtx(p, RX_EN, false); |
| } |
| |
| static void xgene_sgmac_tx_disable(struct xgene_enet_pdata *p) |
| { |
| xgene_sgmac_rxtx(p, TX_EN, false); |
| } |
| |
| static int xgene_enet_reset(struct xgene_enet_pdata *p) |
| { |
| if (!xgene_ring_mgr_init(p)) |
| return -ENODEV; |
| |
| if (!IS_ERR(p->clk)) { |
| clk_prepare_enable(p->clk); |
| clk_disable_unprepare(p->clk); |
| clk_prepare_enable(p->clk); |
| } |
| |
| xgene_enet_ecc_init(p); |
| xgene_enet_config_ring_if_assoc(p); |
| |
| return 0; |
| } |
| |
| static void xgene_enet_cle_bypass(struct xgene_enet_pdata *p, |
| u32 dst_ring_num, u16 bufpool_id) |
| { |
| u32 data, fpsel; |
| u32 cle_bypass_reg0, cle_bypass_reg1; |
| u32 offset = p->port_id * MAC_OFFSET; |
| |
| if (p->enet_id == XGENE_ENET1) { |
| cle_bypass_reg0 = CLE_BYPASS_REG0_0_ADDR; |
| cle_bypass_reg1 = CLE_BYPASS_REG1_0_ADDR; |
| } else { |
| cle_bypass_reg0 = XCLE_BYPASS_REG0_ADDR; |
| cle_bypass_reg1 = XCLE_BYPASS_REG1_ADDR; |
| } |
| |
| data = CFG_CLE_BYPASS_EN0; |
| xgene_enet_wr_csr(p, cle_bypass_reg0 + offset, data); |
| |
| fpsel = xgene_enet_ring_bufnum(bufpool_id) - 0x20; |
| data = CFG_CLE_DSTQID0(dst_ring_num) | CFG_CLE_FPSEL0(fpsel); |
| xgene_enet_wr_csr(p, cle_bypass_reg1 + offset, data); |
| } |
| |
| static void xgene_enet_shutdown(struct xgene_enet_pdata *p) |
| { |
| if (!IS_ERR(p->clk)) |
| clk_disable_unprepare(p->clk); |
| } |
| |
| static void xgene_enet_link_state(struct work_struct *work) |
| { |
| struct xgene_enet_pdata *p = container_of(to_delayed_work(work), |
| struct xgene_enet_pdata, link_work); |
| struct net_device *ndev = p->ndev; |
| u32 link, poll_interval; |
| |
| link = xgene_enet_link_status(p); |
| if (link) { |
| if (!netif_carrier_ok(ndev)) { |
| netif_carrier_on(ndev); |
| xgene_sgmac_init(p); |
| xgene_sgmac_rx_enable(p); |
| xgene_sgmac_tx_enable(p); |
| netdev_info(ndev, "Link is Up - 1Gbps\n"); |
| } |
| poll_interval = PHY_POLL_LINK_ON; |
| } else { |
| if (netif_carrier_ok(ndev)) { |
| xgene_sgmac_rx_disable(p); |
| xgene_sgmac_tx_disable(p); |
| netif_carrier_off(ndev); |
| netdev_info(ndev, "Link is Down\n"); |
| } |
| poll_interval = PHY_POLL_LINK_OFF; |
| } |
| |
| schedule_delayed_work(&p->link_work, poll_interval); |
| } |
| |
| const struct xgene_mac_ops xgene_sgmac_ops = { |
| .init = xgene_sgmac_init, |
| .reset = xgene_sgmac_reset, |
| .rx_enable = xgene_sgmac_rx_enable, |
| .tx_enable = xgene_sgmac_tx_enable, |
| .rx_disable = xgene_sgmac_rx_disable, |
| .tx_disable = xgene_sgmac_tx_disable, |
| .set_mac_addr = xgene_sgmac_set_mac_addr, |
| .link_state = xgene_enet_link_state |
| }; |
| |
| const struct xgene_port_ops xgene_sgport_ops = { |
| .reset = xgene_enet_reset, |
| .cle_bypass = xgene_enet_cle_bypass, |
| .shutdown = xgene_enet_shutdown |
| }; |