1df828598SMugunthan V N /* 2df828598SMugunthan V N * Texas Instruments Ethernet Switch Driver 3df828598SMugunthan V N * 4df828598SMugunthan V N * Copyright (C) 2012 Texas Instruments 5df828598SMugunthan V N * 6df828598SMugunthan V N * This program is free software; you can redistribute it and/or 7df828598SMugunthan V N * modify it under the terms of the GNU General Public License as 8df828598SMugunthan V N * published by the Free Software Foundation version 2. 9df828598SMugunthan V N * 10df828598SMugunthan V N * This program is distributed "as is" WITHOUT ANY WARRANTY of any 11df828598SMugunthan V N * kind, whether express or implied; without even the implied warranty 12df828598SMugunthan V N * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13df828598SMugunthan V N * GNU General Public License for more details. 14df828598SMugunthan V N */ 15df828598SMugunthan V N 16df828598SMugunthan V N #include <linux/kernel.h> 17df828598SMugunthan V N #include <linux/io.h> 18df828598SMugunthan V N #include <linux/clk.h> 19df828598SMugunthan V N #include <linux/timer.h> 20df828598SMugunthan V N #include <linux/module.h> 21df828598SMugunthan V N #include <linux/platform_device.h> 22df828598SMugunthan V N #include <linux/irqreturn.h> 23df828598SMugunthan V N #include <linux/interrupt.h> 24df828598SMugunthan V N #include <linux/if_ether.h> 25df828598SMugunthan V N #include <linux/etherdevice.h> 26df828598SMugunthan V N #include <linux/netdevice.h> 272e5b38abSRichard Cochran #include <linux/net_tstamp.h> 28df828598SMugunthan V N #include <linux/phy.h> 29df828598SMugunthan V N #include <linux/workqueue.h> 30df828598SMugunthan V N #include <linux/delay.h> 31f150bd7fSMugunthan V N #include <linux/pm_runtime.h> 322eb32b0aSMugunthan V N #include <linux/of.h> 332eb32b0aSMugunthan V N #include <linux/of_net.h> 342eb32b0aSMugunthan V N #include <linux/of_device.h> 353b72c2feSMugunthan V N #include <linux/if_vlan.h> 360ba517b1SMarkus Pargmann #include <linux/mfd/syscon.h> 370ba517b1SMarkus Pargmann #include <linux/regmap.h> 38df828598SMugunthan V N 39739683b4SMugunthan V N #include <linux/pinctrl/consumer.h> 40df828598SMugunthan V N 41dbe34724SMugunthan V N #include "cpsw.h" 42df828598SMugunthan V N #include "cpsw_ale.h" 432e5b38abSRichard Cochran #include "cpts.h" 44df828598SMugunthan V N #include "davinci_cpdma.h" 45df828598SMugunthan V N 46df828598SMugunthan V N #define CPSW_DEBUG (NETIF_MSG_HW | NETIF_MSG_WOL | \ 47df828598SMugunthan V N NETIF_MSG_DRV | NETIF_MSG_LINK | \ 48df828598SMugunthan V N NETIF_MSG_IFUP | NETIF_MSG_INTR | \ 49df828598SMugunthan V N NETIF_MSG_PROBE | NETIF_MSG_TIMER | \ 50df828598SMugunthan V N NETIF_MSG_IFDOWN | NETIF_MSG_RX_ERR | \ 51df828598SMugunthan V N NETIF_MSG_TX_ERR | NETIF_MSG_TX_DONE | \ 52df828598SMugunthan V N NETIF_MSG_PKTDATA | NETIF_MSG_TX_QUEUED | \ 53df828598SMugunthan V N NETIF_MSG_RX_STATUS) 54df828598SMugunthan V N 55df828598SMugunthan V N #define cpsw_info(priv, type, format, ...) \ 56df828598SMugunthan V N do { \ 57df828598SMugunthan V N if (netif_msg_##type(priv) && net_ratelimit()) \ 58df828598SMugunthan V N dev_info(priv->dev, format, ## __VA_ARGS__); \ 59df828598SMugunthan V N } while (0) 60df828598SMugunthan V N 61df828598SMugunthan V N #define cpsw_err(priv, type, format, ...) \ 62df828598SMugunthan V N do { \ 63df828598SMugunthan V N if (netif_msg_##type(priv) && net_ratelimit()) \ 64df828598SMugunthan V N dev_err(priv->dev, format, ## __VA_ARGS__); \ 65df828598SMugunthan V N } while (0) 66df828598SMugunthan V N 67df828598SMugunthan V N #define cpsw_dbg(priv, type, format, ...) \ 68df828598SMugunthan V N do { \ 69df828598SMugunthan V N if (netif_msg_##type(priv) && net_ratelimit()) \ 70df828598SMugunthan V N dev_dbg(priv->dev, format, ## __VA_ARGS__); \ 71df828598SMugunthan V N } while (0) 72df828598SMugunthan V N 73df828598SMugunthan V N #define cpsw_notice(priv, type, format, ...) \ 74df828598SMugunthan V N do { \ 75df828598SMugunthan V N if (netif_msg_##type(priv) && net_ratelimit()) \ 76df828598SMugunthan V N dev_notice(priv->dev, format, ## __VA_ARGS__); \ 77df828598SMugunthan V N } while (0) 78df828598SMugunthan V N 795c50a856SMugunthan V N #define ALE_ALL_PORTS 0x7 805c50a856SMugunthan V N 81df828598SMugunthan V N #define CPSW_MAJOR_VERSION(reg) (reg >> 8 & 0x7) 82df828598SMugunthan V N #define CPSW_MINOR_VERSION(reg) (reg & 0xff) 83df828598SMugunthan V N #define CPSW_RTL_VERSION(reg) ((reg >> 11) & 0x1f) 84df828598SMugunthan V N 85e90cfac6SRichard Cochran #define CPSW_VERSION_1 0x19010a 86e90cfac6SRichard Cochran #define CPSW_VERSION_2 0x19010c 87c193f365SMugunthan V N #define CPSW_VERSION_3 0x19010f 88926489beSMugunthan V N #define CPSW_VERSION_4 0x190112 89549985eeSRichard Cochran 90549985eeSRichard Cochran #define HOST_PORT_NUM 0 91549985eeSRichard Cochran #define SLIVER_SIZE 0x40 92549985eeSRichard Cochran 93549985eeSRichard Cochran #define CPSW1_HOST_PORT_OFFSET 0x028 94549985eeSRichard Cochran #define CPSW1_SLAVE_OFFSET 0x050 95549985eeSRichard Cochran #define CPSW1_SLAVE_SIZE 0x040 96549985eeSRichard Cochran #define CPSW1_CPDMA_OFFSET 0x100 97549985eeSRichard Cochran #define CPSW1_STATERAM_OFFSET 0x200 98d9718546SMugunthan V N #define CPSW1_HW_STATS 0x400 99549985eeSRichard Cochran #define CPSW1_CPTS_OFFSET 0x500 100549985eeSRichard Cochran #define CPSW1_ALE_OFFSET 0x600 101549985eeSRichard Cochran #define CPSW1_SLIVER_OFFSET 0x700 102549985eeSRichard Cochran 103549985eeSRichard Cochran #define CPSW2_HOST_PORT_OFFSET 0x108 104549985eeSRichard Cochran #define CPSW2_SLAVE_OFFSET 0x200 105549985eeSRichard Cochran #define CPSW2_SLAVE_SIZE 0x100 106549985eeSRichard Cochran #define CPSW2_CPDMA_OFFSET 0x800 107d9718546SMugunthan V N #define CPSW2_HW_STATS 0x900 108549985eeSRichard Cochran #define CPSW2_STATERAM_OFFSET 0xa00 109549985eeSRichard Cochran #define CPSW2_CPTS_OFFSET 0xc00 110549985eeSRichard Cochran #define CPSW2_ALE_OFFSET 0xd00 111549985eeSRichard Cochran #define CPSW2_SLIVER_OFFSET 0xd80 112549985eeSRichard Cochran #define CPSW2_BD_OFFSET 0x2000 113549985eeSRichard Cochran 114df828598SMugunthan V N #define CPDMA_RXTHRESH 0x0c0 115df828598SMugunthan V N #define CPDMA_RXFREE 0x0e0 116df828598SMugunthan V N #define CPDMA_TXHDP 0x00 117df828598SMugunthan V N #define CPDMA_RXHDP 0x20 118df828598SMugunthan V N #define CPDMA_TXCP 0x40 119df828598SMugunthan V N #define CPDMA_RXCP 0x60 120df828598SMugunthan V N 121df828598SMugunthan V N #define CPSW_POLL_WEIGHT 64 122df828598SMugunthan V N #define CPSW_MIN_PACKET_SIZE 60 123df828598SMugunthan V N #define CPSW_MAX_PACKET_SIZE (1500 + 14 + 4 + 4) 124df828598SMugunthan V N 125df828598SMugunthan V N #define RX_PRIORITY_MAPPING 0x76543210 126df828598SMugunthan V N #define TX_PRIORITY_MAPPING 0x33221100 127df828598SMugunthan V N #define CPDMA_TX_PRIORITY_MAP 0x76543210 128df828598SMugunthan V N 1293b72c2feSMugunthan V N #define CPSW_VLAN_AWARE BIT(1) 1303b72c2feSMugunthan V N #define CPSW_ALE_VLAN_AWARE 1 1313b72c2feSMugunthan V N 13235717d8dSJohn Ogness #define CPSW_FIFO_NORMAL_MODE (0 << 16) 13335717d8dSJohn Ogness #define CPSW_FIFO_DUAL_MAC_MODE (1 << 16) 13435717d8dSJohn Ogness #define CPSW_FIFO_RATE_LIMIT_MODE (2 << 16) 135d9ba8f9eSMugunthan V N 136ff5b8ef2SMugunthan V N #define CPSW_INTPACEEN (0x3f << 16) 137ff5b8ef2SMugunthan V N #define CPSW_INTPRESCALE_MASK (0x7FF << 0) 138ff5b8ef2SMugunthan V N #define CPSW_CMINTMAX_CNT 63 139ff5b8ef2SMugunthan V N #define CPSW_CMINTMIN_CNT 2 140ff5b8ef2SMugunthan V N #define CPSW_CMINTMAX_INTVL (1000 / CPSW_CMINTMIN_CNT) 141ff5b8ef2SMugunthan V N #define CPSW_CMINTMIN_INTVL ((1000 / CPSW_CMINTMAX_CNT) + 1) 142ff5b8ef2SMugunthan V N 143df828598SMugunthan V N #define cpsw_enable_irq(priv) \ 144df828598SMugunthan V N do { \ 145df828598SMugunthan V N u32 i; \ 146df828598SMugunthan V N for (i = 0; i < priv->num_irqs; i++) \ 147df828598SMugunthan V N enable_irq(priv->irqs_table[i]); \ 1485f47dfb4SJoe Perches } while (0) 149df828598SMugunthan V N #define cpsw_disable_irq(priv) \ 150df828598SMugunthan V N do { \ 151df828598SMugunthan V N u32 i; \ 152df828598SMugunthan V N for (i = 0; i < priv->num_irqs; i++) \ 153df828598SMugunthan V N disable_irq_nosync(priv->irqs_table[i]); \ 1545f47dfb4SJoe Perches } while (0) 155df828598SMugunthan V N 156d3bb9c58SMugunthan V N #define cpsw_slave_index(priv) \ 157d3bb9c58SMugunthan V N ((priv->data.dual_emac) ? priv->emac_port : \ 158d3bb9c58SMugunthan V N priv->data.active_slave) 159d3bb9c58SMugunthan V N 160df828598SMugunthan V N static int debug_level; 161df828598SMugunthan V N module_param(debug_level, int, 0); 162df828598SMugunthan V N MODULE_PARM_DESC(debug_level, "cpsw debug level (NETIF_MSG bits)"); 163df828598SMugunthan V N 164df828598SMugunthan V N static int ale_ageout = 10; 165df828598SMugunthan V N module_param(ale_ageout, int, 0); 166df828598SMugunthan V N MODULE_PARM_DESC(ale_ageout, "cpsw ale ageout interval (seconds)"); 167df828598SMugunthan V N 168df828598SMugunthan V N static int rx_packet_max = CPSW_MAX_PACKET_SIZE; 169df828598SMugunthan V N module_param(rx_packet_max, int, 0); 170df828598SMugunthan V N MODULE_PARM_DESC(rx_packet_max, "maximum receive packet size (bytes)"); 171df828598SMugunthan V N 172996a5c27SRichard Cochran struct cpsw_wr_regs { 173df828598SMugunthan V N u32 id_ver; 174df828598SMugunthan V N u32 soft_reset; 175df828598SMugunthan V N u32 control; 176df828598SMugunthan V N u32 int_control; 177df828598SMugunthan V N u32 rx_thresh_en; 178df828598SMugunthan V N u32 rx_en; 179df828598SMugunthan V N u32 tx_en; 180df828598SMugunthan V N u32 misc_en; 181ff5b8ef2SMugunthan V N u32 mem_allign1[8]; 182ff5b8ef2SMugunthan V N u32 rx_thresh_stat; 183ff5b8ef2SMugunthan V N u32 rx_stat; 184ff5b8ef2SMugunthan V N u32 tx_stat; 185ff5b8ef2SMugunthan V N u32 misc_stat; 186ff5b8ef2SMugunthan V N u32 mem_allign2[8]; 187ff5b8ef2SMugunthan V N u32 rx_imax; 188ff5b8ef2SMugunthan V N u32 tx_imax; 189ff5b8ef2SMugunthan V N 190df828598SMugunthan V N }; 191df828598SMugunthan V N 192996a5c27SRichard Cochran struct cpsw_ss_regs { 193df828598SMugunthan V N u32 id_ver; 194df828598SMugunthan V N u32 control; 195df828598SMugunthan V N u32 soft_reset; 196df828598SMugunthan V N u32 stat_port_en; 197df828598SMugunthan V N u32 ptype; 198bd357af2SRichard Cochran u32 soft_idle; 199bd357af2SRichard Cochran u32 thru_rate; 200bd357af2SRichard Cochran u32 gap_thresh; 201bd357af2SRichard Cochran u32 tx_start_wds; 202bd357af2SRichard Cochran u32 flow_control; 203bd357af2SRichard Cochran u32 vlan_ltype; 204bd357af2SRichard Cochran u32 ts_ltype; 205bd357af2SRichard Cochran u32 dlr_ltype; 206df828598SMugunthan V N }; 207df828598SMugunthan V N 2089750a3adSRichard Cochran /* CPSW_PORT_V1 */ 2099750a3adSRichard Cochran #define CPSW1_MAX_BLKS 0x00 /* Maximum FIFO Blocks */ 2109750a3adSRichard Cochran #define CPSW1_BLK_CNT 0x04 /* FIFO Block Usage Count (Read Only) */ 2119750a3adSRichard Cochran #define CPSW1_TX_IN_CTL 0x08 /* Transmit FIFO Control */ 2129750a3adSRichard Cochran #define CPSW1_PORT_VLAN 0x0c /* VLAN Register */ 2139750a3adSRichard Cochran #define CPSW1_TX_PRI_MAP 0x10 /* Tx Header Priority to Switch Pri Mapping */ 2149750a3adSRichard Cochran #define CPSW1_TS_CTL 0x14 /* Time Sync Control */ 2159750a3adSRichard Cochran #define CPSW1_TS_SEQ_LTYPE 0x18 /* Time Sync Sequence ID Offset and Msg Type */ 2169750a3adSRichard Cochran #define CPSW1_TS_VLAN 0x1c /* Time Sync VLAN1 and VLAN2 */ 2179750a3adSRichard Cochran 2189750a3adSRichard Cochran /* CPSW_PORT_V2 */ 2199750a3adSRichard Cochran #define CPSW2_CONTROL 0x00 /* Control Register */ 2209750a3adSRichard Cochran #define CPSW2_MAX_BLKS 0x08 /* Maximum FIFO Blocks */ 2219750a3adSRichard Cochran #define CPSW2_BLK_CNT 0x0c /* FIFO Block Usage Count (Read Only) */ 2229750a3adSRichard Cochran #define CPSW2_TX_IN_CTL 0x10 /* Transmit FIFO Control */ 2239750a3adSRichard Cochran #define CPSW2_PORT_VLAN 0x14 /* VLAN Register */ 2249750a3adSRichard Cochran #define CPSW2_TX_PRI_MAP 0x18 /* Tx Header Priority to Switch Pri Mapping */ 2259750a3adSRichard Cochran #define CPSW2_TS_SEQ_MTYPE 0x1c /* Time Sync Sequence ID Offset and Msg Type */ 2269750a3adSRichard Cochran 2279750a3adSRichard Cochran /* CPSW_PORT_V1 and V2 */ 2289750a3adSRichard Cochran #define SA_LO 0x20 /* CPGMAC_SL Source Address Low */ 2299750a3adSRichard Cochran #define SA_HI 0x24 /* CPGMAC_SL Source Address High */ 2309750a3adSRichard Cochran #define SEND_PERCENT 0x28 /* Transmit Queue Send Percentages */ 2319750a3adSRichard Cochran 2329750a3adSRichard Cochran /* CPSW_PORT_V2 only */ 2339750a3adSRichard Cochran #define RX_DSCP_PRI_MAP0 0x30 /* Rx DSCP Priority to Rx Packet Mapping */ 2349750a3adSRichard Cochran #define RX_DSCP_PRI_MAP1 0x34 /* Rx DSCP Priority to Rx Packet Mapping */ 2359750a3adSRichard Cochran #define RX_DSCP_PRI_MAP2 0x38 /* Rx DSCP Priority to Rx Packet Mapping */ 2369750a3adSRichard Cochran #define RX_DSCP_PRI_MAP3 0x3c /* Rx DSCP Priority to Rx Packet Mapping */ 2379750a3adSRichard Cochran #define RX_DSCP_PRI_MAP4 0x40 /* Rx DSCP Priority to Rx Packet Mapping */ 2389750a3adSRichard Cochran #define RX_DSCP_PRI_MAP5 0x44 /* Rx DSCP Priority to Rx Packet Mapping */ 2399750a3adSRichard Cochran #define RX_DSCP_PRI_MAP6 0x48 /* Rx DSCP Priority to Rx Packet Mapping */ 2409750a3adSRichard Cochran #define RX_DSCP_PRI_MAP7 0x4c /* Rx DSCP Priority to Rx Packet Mapping */ 2419750a3adSRichard Cochran 2429750a3adSRichard Cochran /* Bit definitions for the CPSW2_CONTROL register */ 2439750a3adSRichard Cochran #define PASS_PRI_TAGGED (1<<24) /* Pass Priority Tagged */ 2449750a3adSRichard Cochran #define VLAN_LTYPE2_EN (1<<21) /* VLAN LTYPE 2 enable */ 2459750a3adSRichard Cochran #define VLAN_LTYPE1_EN (1<<20) /* VLAN LTYPE 1 enable */ 2469750a3adSRichard Cochran #define DSCP_PRI_EN (1<<16) /* DSCP Priority Enable */ 2479750a3adSRichard Cochran #define TS_320 (1<<14) /* Time Sync Dest Port 320 enable */ 2489750a3adSRichard Cochran #define TS_319 (1<<13) /* Time Sync Dest Port 319 enable */ 2499750a3adSRichard Cochran #define TS_132 (1<<12) /* Time Sync Dest IP Addr 132 enable */ 2509750a3adSRichard Cochran #define TS_131 (1<<11) /* Time Sync Dest IP Addr 131 enable */ 2519750a3adSRichard Cochran #define TS_130 (1<<10) /* Time Sync Dest IP Addr 130 enable */ 2529750a3adSRichard Cochran #define TS_129 (1<<9) /* Time Sync Dest IP Addr 129 enable */ 25309c55372SGeorge Cherian #define TS_TTL_NONZERO (1<<8) /* Time Sync Time To Live Non-zero enable */ 25409c55372SGeorge Cherian #define TS_ANNEX_F_EN (1<<6) /* Time Sync Annex F enable */ 2559750a3adSRichard Cochran #define TS_ANNEX_D_EN (1<<4) /* Time Sync Annex D enable */ 2569750a3adSRichard Cochran #define TS_LTYPE2_EN (1<<3) /* Time Sync LTYPE 2 enable */ 2579750a3adSRichard Cochran #define TS_LTYPE1_EN (1<<2) /* Time Sync LTYPE 1 enable */ 2589750a3adSRichard Cochran #define TS_TX_EN (1<<1) /* Time Sync Transmit Enable */ 2599750a3adSRichard Cochran #define TS_RX_EN (1<<0) /* Time Sync Receive Enable */ 2609750a3adSRichard Cochran 26109c55372SGeorge Cherian #define CTRL_V2_TS_BITS \ 26209c55372SGeorge Cherian (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\ 26309c55372SGeorge Cherian TS_TTL_NONZERO | TS_ANNEX_D_EN | TS_LTYPE1_EN) 2649750a3adSRichard Cochran 26509c55372SGeorge Cherian #define CTRL_V2_ALL_TS_MASK (CTRL_V2_TS_BITS | TS_TX_EN | TS_RX_EN) 26609c55372SGeorge Cherian #define CTRL_V2_TX_TS_BITS (CTRL_V2_TS_BITS | TS_TX_EN) 26709c55372SGeorge Cherian #define CTRL_V2_RX_TS_BITS (CTRL_V2_TS_BITS | TS_RX_EN) 26809c55372SGeorge Cherian 26909c55372SGeorge Cherian 27009c55372SGeorge Cherian #define CTRL_V3_TS_BITS \ 27109c55372SGeorge Cherian (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\ 27209c55372SGeorge Cherian TS_TTL_NONZERO | TS_ANNEX_F_EN | TS_ANNEX_D_EN |\ 27309c55372SGeorge Cherian TS_LTYPE1_EN) 27409c55372SGeorge Cherian 27509c55372SGeorge Cherian #define CTRL_V3_ALL_TS_MASK (CTRL_V3_TS_BITS | TS_TX_EN | TS_RX_EN) 27609c55372SGeorge Cherian #define CTRL_V3_TX_TS_BITS (CTRL_V3_TS_BITS | TS_TX_EN) 27709c55372SGeorge Cherian #define CTRL_V3_RX_TS_BITS (CTRL_V3_TS_BITS | TS_RX_EN) 2789750a3adSRichard Cochran 2799750a3adSRichard Cochran /* Bit definitions for the CPSW2_TS_SEQ_MTYPE register */ 2809750a3adSRichard Cochran #define TS_SEQ_ID_OFFSET_SHIFT (16) /* Time Sync Sequence ID Offset */ 2819750a3adSRichard Cochran #define TS_SEQ_ID_OFFSET_MASK (0x3f) 2829750a3adSRichard Cochran #define TS_MSG_TYPE_EN_SHIFT (0) /* Time Sync Message Type Enable */ 2839750a3adSRichard Cochran #define TS_MSG_TYPE_EN_MASK (0xffff) 2849750a3adSRichard Cochran 2859750a3adSRichard Cochran /* The PTP event messages - Sync, Delay_Req, Pdelay_Req, and Pdelay_Resp. */ 2869750a3adSRichard Cochran #define EVENT_MSG_BITS ((1<<0) | (1<<1) | (1<<2) | (1<<3)) 287df828598SMugunthan V N 2882e5b38abSRichard Cochran /* Bit definitions for the CPSW1_TS_CTL register */ 2892e5b38abSRichard Cochran #define CPSW_V1_TS_RX_EN BIT(0) 2902e5b38abSRichard Cochran #define CPSW_V1_TS_TX_EN BIT(4) 2912e5b38abSRichard Cochran #define CPSW_V1_MSG_TYPE_OFS 16 2922e5b38abSRichard Cochran 2932e5b38abSRichard Cochran /* Bit definitions for the CPSW1_TS_SEQ_LTYPE register */ 2942e5b38abSRichard Cochran #define CPSW_V1_SEQ_ID_OFS_SHIFT 16 2952e5b38abSRichard Cochran 296df828598SMugunthan V N struct cpsw_host_regs { 297df828598SMugunthan V N u32 max_blks; 298df828598SMugunthan V N u32 blk_cnt; 299d9ba8f9eSMugunthan V N u32 tx_in_ctl; 300df828598SMugunthan V N u32 port_vlan; 301df828598SMugunthan V N u32 tx_pri_map; 302df828598SMugunthan V N u32 cpdma_tx_pri_map; 303df828598SMugunthan V N u32 cpdma_rx_chan_map; 304df828598SMugunthan V N }; 305df828598SMugunthan V N 306df828598SMugunthan V N struct cpsw_sliver_regs { 307df828598SMugunthan V N u32 id_ver; 308df828598SMugunthan V N u32 mac_control; 309df828598SMugunthan V N u32 mac_status; 310df828598SMugunthan V N u32 soft_reset; 311df828598SMugunthan V N u32 rx_maxlen; 312df828598SMugunthan V N u32 __reserved_0; 313df828598SMugunthan V N u32 rx_pause; 314df828598SMugunthan V N u32 tx_pause; 315df828598SMugunthan V N u32 __reserved_1; 316df828598SMugunthan V N u32 rx_pri_map; 317df828598SMugunthan V N }; 318df828598SMugunthan V N 319d9718546SMugunthan V N struct cpsw_hw_stats { 320d9718546SMugunthan V N u32 rxgoodframes; 321d9718546SMugunthan V N u32 rxbroadcastframes; 322d9718546SMugunthan V N u32 rxmulticastframes; 323d9718546SMugunthan V N u32 rxpauseframes; 324d9718546SMugunthan V N u32 rxcrcerrors; 325d9718546SMugunthan V N u32 rxaligncodeerrors; 326d9718546SMugunthan V N u32 rxoversizedframes; 327d9718546SMugunthan V N u32 rxjabberframes; 328d9718546SMugunthan V N u32 rxundersizedframes; 329d9718546SMugunthan V N u32 rxfragments; 330d9718546SMugunthan V N u32 __pad_0[2]; 331d9718546SMugunthan V N u32 rxoctets; 332d9718546SMugunthan V N u32 txgoodframes; 333d9718546SMugunthan V N u32 txbroadcastframes; 334d9718546SMugunthan V N u32 txmulticastframes; 335d9718546SMugunthan V N u32 txpauseframes; 336d9718546SMugunthan V N u32 txdeferredframes; 337d9718546SMugunthan V N u32 txcollisionframes; 338d9718546SMugunthan V N u32 txsinglecollframes; 339d9718546SMugunthan V N u32 txmultcollframes; 340d9718546SMugunthan V N u32 txexcessivecollisions; 341d9718546SMugunthan V N u32 txlatecollisions; 342d9718546SMugunthan V N u32 txunderrun; 343d9718546SMugunthan V N u32 txcarriersenseerrors; 344d9718546SMugunthan V N u32 txoctets; 345d9718546SMugunthan V N u32 octetframes64; 346d9718546SMugunthan V N u32 octetframes65t127; 347d9718546SMugunthan V N u32 octetframes128t255; 348d9718546SMugunthan V N u32 octetframes256t511; 349d9718546SMugunthan V N u32 octetframes512t1023; 350d9718546SMugunthan V N u32 octetframes1024tup; 351d9718546SMugunthan V N u32 netoctets; 352d9718546SMugunthan V N u32 rxsofoverruns; 353d9718546SMugunthan V N u32 rxmofoverruns; 354d9718546SMugunthan V N u32 rxdmaoverruns; 355d9718546SMugunthan V N }; 356d9718546SMugunthan V N 357df828598SMugunthan V N struct cpsw_slave { 3589750a3adSRichard Cochran void __iomem *regs; 359df828598SMugunthan V N struct cpsw_sliver_regs __iomem *sliver; 360df828598SMugunthan V N int slave_num; 361df828598SMugunthan V N u32 mac_control; 362df828598SMugunthan V N struct cpsw_slave_data *data; 363df828598SMugunthan V N struct phy_device *phy; 364d9ba8f9eSMugunthan V N struct net_device *ndev; 365d9ba8f9eSMugunthan V N u32 port_vlan; 366d9ba8f9eSMugunthan V N u32 open_stat; 367df828598SMugunthan V N }; 368df828598SMugunthan V N 3699750a3adSRichard Cochran static inline u32 slave_read(struct cpsw_slave *slave, u32 offset) 3709750a3adSRichard Cochran { 3719750a3adSRichard Cochran return __raw_readl(slave->regs + offset); 3729750a3adSRichard Cochran } 3739750a3adSRichard Cochran 3749750a3adSRichard Cochran static inline void slave_write(struct cpsw_slave *slave, u32 val, u32 offset) 3759750a3adSRichard Cochran { 3769750a3adSRichard Cochran __raw_writel(val, slave->regs + offset); 3779750a3adSRichard Cochran } 3789750a3adSRichard Cochran 379df828598SMugunthan V N struct cpsw_priv { 380df828598SMugunthan V N spinlock_t lock; 381df828598SMugunthan V N struct platform_device *pdev; 382df828598SMugunthan V N struct net_device *ndev; 383df828598SMugunthan V N struct napi_struct napi; 384df828598SMugunthan V N struct device *dev; 385df828598SMugunthan V N struct cpsw_platform_data data; 386996a5c27SRichard Cochran struct cpsw_ss_regs __iomem *regs; 387996a5c27SRichard Cochran struct cpsw_wr_regs __iomem *wr_regs; 388d9718546SMugunthan V N u8 __iomem *hw_stats; 389df828598SMugunthan V N struct cpsw_host_regs __iomem *host_port_regs; 390df828598SMugunthan V N u32 msg_enable; 391e90cfac6SRichard Cochran u32 version; 392ff5b8ef2SMugunthan V N u32 coal_intvl; 393ff5b8ef2SMugunthan V N u32 bus_freq_mhz; 394df828598SMugunthan V N int rx_packet_max; 395df828598SMugunthan V N int host_port; 396df828598SMugunthan V N struct clk *clk; 397df828598SMugunthan V N u8 mac_addr[ETH_ALEN]; 398df828598SMugunthan V N struct cpsw_slave *slaves; 399df828598SMugunthan V N struct cpdma_ctlr *dma; 400df828598SMugunthan V N struct cpdma_chan *txch, *rxch; 401df828598SMugunthan V N struct cpsw_ale *ale; 4021923d6e4SMugunthan V N bool rx_pause; 4031923d6e4SMugunthan V N bool tx_pause; 404df828598SMugunthan V N /* snapshot of IRQ numbers */ 405df828598SMugunthan V N u32 irqs_table[4]; 406df828598SMugunthan V N u32 num_irqs; 407a11fbba9SSebastian Siewior bool irq_enabled; 4089232b16dSMugunthan V N struct cpts *cpts; 409d9ba8f9eSMugunthan V N u32 emac_port; 410df828598SMugunthan V N }; 411df828598SMugunthan V N 412d9718546SMugunthan V N struct cpsw_stats { 413d9718546SMugunthan V N char stat_string[ETH_GSTRING_LEN]; 414d9718546SMugunthan V N int type; 415d9718546SMugunthan V N int sizeof_stat; 416d9718546SMugunthan V N int stat_offset; 417d9718546SMugunthan V N }; 418d9718546SMugunthan V N 419d9718546SMugunthan V N enum { 420d9718546SMugunthan V N CPSW_STATS, 421d9718546SMugunthan V N CPDMA_RX_STATS, 422d9718546SMugunthan V N CPDMA_TX_STATS, 423d9718546SMugunthan V N }; 424d9718546SMugunthan V N 425d9718546SMugunthan V N #define CPSW_STAT(m) CPSW_STATS, \ 426d9718546SMugunthan V N sizeof(((struct cpsw_hw_stats *)0)->m), \ 427d9718546SMugunthan V N offsetof(struct cpsw_hw_stats, m) 428d9718546SMugunthan V N #define CPDMA_RX_STAT(m) CPDMA_RX_STATS, \ 429d9718546SMugunthan V N sizeof(((struct cpdma_chan_stats *)0)->m), \ 430d9718546SMugunthan V N offsetof(struct cpdma_chan_stats, m) 431d9718546SMugunthan V N #define CPDMA_TX_STAT(m) CPDMA_TX_STATS, \ 432d9718546SMugunthan V N sizeof(((struct cpdma_chan_stats *)0)->m), \ 433d9718546SMugunthan V N offsetof(struct cpdma_chan_stats, m) 434d9718546SMugunthan V N 435d9718546SMugunthan V N static const struct cpsw_stats cpsw_gstrings_stats[] = { 436d9718546SMugunthan V N { "Good Rx Frames", CPSW_STAT(rxgoodframes) }, 437d9718546SMugunthan V N { "Broadcast Rx Frames", CPSW_STAT(rxbroadcastframes) }, 438d9718546SMugunthan V N { "Multicast Rx Frames", CPSW_STAT(rxmulticastframes) }, 439d9718546SMugunthan V N { "Pause Rx Frames", CPSW_STAT(rxpauseframes) }, 440d9718546SMugunthan V N { "Rx CRC Errors", CPSW_STAT(rxcrcerrors) }, 441d9718546SMugunthan V N { "Rx Align/Code Errors", CPSW_STAT(rxaligncodeerrors) }, 442d9718546SMugunthan V N { "Oversize Rx Frames", CPSW_STAT(rxoversizedframes) }, 443d9718546SMugunthan V N { "Rx Jabbers", CPSW_STAT(rxjabberframes) }, 444d9718546SMugunthan V N { "Undersize (Short) Rx Frames", CPSW_STAT(rxundersizedframes) }, 445d9718546SMugunthan V N { "Rx Fragments", CPSW_STAT(rxfragments) }, 446d9718546SMugunthan V N { "Rx Octets", CPSW_STAT(rxoctets) }, 447d9718546SMugunthan V N { "Good Tx Frames", CPSW_STAT(txgoodframes) }, 448d9718546SMugunthan V N { "Broadcast Tx Frames", CPSW_STAT(txbroadcastframes) }, 449d9718546SMugunthan V N { "Multicast Tx Frames", CPSW_STAT(txmulticastframes) }, 450d9718546SMugunthan V N { "Pause Tx Frames", CPSW_STAT(txpauseframes) }, 451d9718546SMugunthan V N { "Deferred Tx Frames", CPSW_STAT(txdeferredframes) }, 452d9718546SMugunthan V N { "Collisions", CPSW_STAT(txcollisionframes) }, 453d9718546SMugunthan V N { "Single Collision Tx Frames", CPSW_STAT(txsinglecollframes) }, 454d9718546SMugunthan V N { "Multiple Collision Tx Frames", CPSW_STAT(txmultcollframes) }, 455d9718546SMugunthan V N { "Excessive Collisions", CPSW_STAT(txexcessivecollisions) }, 456d9718546SMugunthan V N { "Late Collisions", CPSW_STAT(txlatecollisions) }, 457d9718546SMugunthan V N { "Tx Underrun", CPSW_STAT(txunderrun) }, 458d9718546SMugunthan V N { "Carrier Sense Errors", CPSW_STAT(txcarriersenseerrors) }, 459d9718546SMugunthan V N { "Tx Octets", CPSW_STAT(txoctets) }, 460d9718546SMugunthan V N { "Rx + Tx 64 Octet Frames", CPSW_STAT(octetframes64) }, 461d9718546SMugunthan V N { "Rx + Tx 65-127 Octet Frames", CPSW_STAT(octetframes65t127) }, 462d9718546SMugunthan V N { "Rx + Tx 128-255 Octet Frames", CPSW_STAT(octetframes128t255) }, 463d9718546SMugunthan V N { "Rx + Tx 256-511 Octet Frames", CPSW_STAT(octetframes256t511) }, 464d9718546SMugunthan V N { "Rx + Tx 512-1023 Octet Frames", CPSW_STAT(octetframes512t1023) }, 465d9718546SMugunthan V N { "Rx + Tx 1024-Up Octet Frames", CPSW_STAT(octetframes1024tup) }, 466d9718546SMugunthan V N { "Net Octets", CPSW_STAT(netoctets) }, 467d9718546SMugunthan V N { "Rx Start of Frame Overruns", CPSW_STAT(rxsofoverruns) }, 468d9718546SMugunthan V N { "Rx Middle of Frame Overruns", CPSW_STAT(rxmofoverruns) }, 469d9718546SMugunthan V N { "Rx DMA Overruns", CPSW_STAT(rxdmaoverruns) }, 470d9718546SMugunthan V N { "Rx DMA chan: head_enqueue", CPDMA_RX_STAT(head_enqueue) }, 471d9718546SMugunthan V N { "Rx DMA chan: tail_enqueue", CPDMA_RX_STAT(tail_enqueue) }, 472d9718546SMugunthan V N { "Rx DMA chan: pad_enqueue", CPDMA_RX_STAT(pad_enqueue) }, 473d9718546SMugunthan V N { "Rx DMA chan: misqueued", CPDMA_RX_STAT(misqueued) }, 474d9718546SMugunthan V N { "Rx DMA chan: desc_alloc_fail", CPDMA_RX_STAT(desc_alloc_fail) }, 475d9718546SMugunthan V N { "Rx DMA chan: pad_alloc_fail", CPDMA_RX_STAT(pad_alloc_fail) }, 476d9718546SMugunthan V N { "Rx DMA chan: runt_receive_buf", CPDMA_RX_STAT(runt_receive_buff) }, 477d9718546SMugunthan V N { "Rx DMA chan: runt_transmit_buf", CPDMA_RX_STAT(runt_transmit_buff) }, 478d9718546SMugunthan V N { "Rx DMA chan: empty_dequeue", CPDMA_RX_STAT(empty_dequeue) }, 479d9718546SMugunthan V N { "Rx DMA chan: busy_dequeue", CPDMA_RX_STAT(busy_dequeue) }, 480d9718546SMugunthan V N { "Rx DMA chan: good_dequeue", CPDMA_RX_STAT(good_dequeue) }, 481d9718546SMugunthan V N { "Rx DMA chan: requeue", CPDMA_RX_STAT(requeue) }, 482d9718546SMugunthan V N { "Rx DMA chan: teardown_dequeue", CPDMA_RX_STAT(teardown_dequeue) }, 483d9718546SMugunthan V N { "Tx DMA chan: head_enqueue", CPDMA_TX_STAT(head_enqueue) }, 484d9718546SMugunthan V N { "Tx DMA chan: tail_enqueue", CPDMA_TX_STAT(tail_enqueue) }, 485d9718546SMugunthan V N { "Tx DMA chan: pad_enqueue", CPDMA_TX_STAT(pad_enqueue) }, 486d9718546SMugunthan V N { "Tx DMA chan: misqueued", CPDMA_TX_STAT(misqueued) }, 487d9718546SMugunthan V N { "Tx DMA chan: desc_alloc_fail", CPDMA_TX_STAT(desc_alloc_fail) }, 488d9718546SMugunthan V N { "Tx DMA chan: pad_alloc_fail", CPDMA_TX_STAT(pad_alloc_fail) }, 489d9718546SMugunthan V N { "Tx DMA chan: runt_receive_buf", CPDMA_TX_STAT(runt_receive_buff) }, 490d9718546SMugunthan V N { "Tx DMA chan: runt_transmit_buf", CPDMA_TX_STAT(runt_transmit_buff) }, 491d9718546SMugunthan V N { "Tx DMA chan: empty_dequeue", CPDMA_TX_STAT(empty_dequeue) }, 492d9718546SMugunthan V N { "Tx DMA chan: busy_dequeue", CPDMA_TX_STAT(busy_dequeue) }, 493d9718546SMugunthan V N { "Tx DMA chan: good_dequeue", CPDMA_TX_STAT(good_dequeue) }, 494d9718546SMugunthan V N { "Tx DMA chan: requeue", CPDMA_TX_STAT(requeue) }, 495d9718546SMugunthan V N { "Tx DMA chan: teardown_dequeue", CPDMA_TX_STAT(teardown_dequeue) }, 496d9718546SMugunthan V N }; 497d9718546SMugunthan V N 498d9718546SMugunthan V N #define CPSW_STATS_LEN ARRAY_SIZE(cpsw_gstrings_stats) 499d9718546SMugunthan V N 500df828598SMugunthan V N #define napi_to_priv(napi) container_of(napi, struct cpsw_priv, napi) 501df828598SMugunthan V N #define for_each_slave(priv, func, arg...) \ 502df828598SMugunthan V N do { \ 5036e6ceaedSSebastian Siewior struct cpsw_slave *slave; \ 5046e6ceaedSSebastian Siewior int n; \ 505d9ba8f9eSMugunthan V N if (priv->data.dual_emac) \ 506d9ba8f9eSMugunthan V N (func)((priv)->slaves + priv->emac_port, ##arg);\ 507d9ba8f9eSMugunthan V N else \ 5086e6ceaedSSebastian Siewior for (n = (priv)->data.slaves, \ 5096e6ceaedSSebastian Siewior slave = (priv)->slaves; \ 5106e6ceaedSSebastian Siewior n; n--) \ 5116e6ceaedSSebastian Siewior (func)(slave++, ##arg); \ 512df828598SMugunthan V N } while (0) 513d9ba8f9eSMugunthan V N #define cpsw_get_slave_ndev(priv, __slave_no__) \ 514d9ba8f9eSMugunthan V N (priv->slaves[__slave_no__].ndev) 515d9ba8f9eSMugunthan V N #define cpsw_get_slave_priv(priv, __slave_no__) \ 516d9ba8f9eSMugunthan V N ((priv->slaves[__slave_no__].ndev) ? \ 517d9ba8f9eSMugunthan V N netdev_priv(priv->slaves[__slave_no__].ndev) : NULL) \ 518d9ba8f9eSMugunthan V N 519d9ba8f9eSMugunthan V N #define cpsw_dual_emac_src_port_detect(status, priv, ndev, skb) \ 520d9ba8f9eSMugunthan V N do { \ 521d9ba8f9eSMugunthan V N if (!priv->data.dual_emac) \ 522d9ba8f9eSMugunthan V N break; \ 523d9ba8f9eSMugunthan V N if (CPDMA_RX_SOURCE_PORT(status) == 1) { \ 524d9ba8f9eSMugunthan V N ndev = cpsw_get_slave_ndev(priv, 0); \ 525d9ba8f9eSMugunthan V N priv = netdev_priv(ndev); \ 526d9ba8f9eSMugunthan V N skb->dev = ndev; \ 527d9ba8f9eSMugunthan V N } else if (CPDMA_RX_SOURCE_PORT(status) == 2) { \ 528d9ba8f9eSMugunthan V N ndev = cpsw_get_slave_ndev(priv, 1); \ 529d9ba8f9eSMugunthan V N priv = netdev_priv(ndev); \ 530d9ba8f9eSMugunthan V N skb->dev = ndev; \ 531d9ba8f9eSMugunthan V N } \ 532d9ba8f9eSMugunthan V N } while (0) 533d9ba8f9eSMugunthan V N #define cpsw_add_mcast(priv, addr) \ 534d9ba8f9eSMugunthan V N do { \ 535d9ba8f9eSMugunthan V N if (priv->data.dual_emac) { \ 536d9ba8f9eSMugunthan V N struct cpsw_slave *slave = priv->slaves + \ 537d9ba8f9eSMugunthan V N priv->emac_port; \ 538d9ba8f9eSMugunthan V N int slave_port = cpsw_get_slave_port(priv, \ 539d9ba8f9eSMugunthan V N slave->slave_num); \ 540d9ba8f9eSMugunthan V N cpsw_ale_add_mcast(priv->ale, addr, \ 541d9ba8f9eSMugunthan V N 1 << slave_port | 1 << priv->host_port, \ 542d9ba8f9eSMugunthan V N ALE_VLAN, slave->port_vlan, 0); \ 543d9ba8f9eSMugunthan V N } else { \ 544d9ba8f9eSMugunthan V N cpsw_ale_add_mcast(priv->ale, addr, \ 545d9ba8f9eSMugunthan V N ALE_ALL_PORTS << priv->host_port, \ 546d9ba8f9eSMugunthan V N 0, 0, 0); \ 547d9ba8f9eSMugunthan V N } \ 548d9ba8f9eSMugunthan V N } while (0) 549d9ba8f9eSMugunthan V N 550d9ba8f9eSMugunthan V N static inline int cpsw_get_slave_port(struct cpsw_priv *priv, u32 slave_num) 551d9ba8f9eSMugunthan V N { 552d9ba8f9eSMugunthan V N if (priv->host_port == 0) 553d9ba8f9eSMugunthan V N return slave_num + 1; 554d9ba8f9eSMugunthan V N else 555d9ba8f9eSMugunthan V N return slave_num; 556d9ba8f9eSMugunthan V N } 557df828598SMugunthan V N 5580cd8f9ccSMugunthan V N static void cpsw_set_promiscious(struct net_device *ndev, bool enable) 5590cd8f9ccSMugunthan V N { 5600cd8f9ccSMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 5610cd8f9ccSMugunthan V N struct cpsw_ale *ale = priv->ale; 5620cd8f9ccSMugunthan V N int i; 5630cd8f9ccSMugunthan V N 5640cd8f9ccSMugunthan V N if (priv->data.dual_emac) { 5650cd8f9ccSMugunthan V N bool flag = false; 5660cd8f9ccSMugunthan V N 5670cd8f9ccSMugunthan V N /* Enabling promiscuous mode for one interface will be 5680cd8f9ccSMugunthan V N * common for both the interface as the interface shares 5690cd8f9ccSMugunthan V N * the same hardware resource. 5700cd8f9ccSMugunthan V N */ 5710d961b3bSHeiko Schocher for (i = 0; i < priv->data.slaves; i++) 5720cd8f9ccSMugunthan V N if (priv->slaves[i].ndev->flags & IFF_PROMISC) 5730cd8f9ccSMugunthan V N flag = true; 5740cd8f9ccSMugunthan V N 5750cd8f9ccSMugunthan V N if (!enable && flag) { 5760cd8f9ccSMugunthan V N enable = true; 5770cd8f9ccSMugunthan V N dev_err(&ndev->dev, "promiscuity not disabled as the other interface is still in promiscuity mode\n"); 5780cd8f9ccSMugunthan V N } 5790cd8f9ccSMugunthan V N 5800cd8f9ccSMugunthan V N if (enable) { 5810cd8f9ccSMugunthan V N /* Enable Bypass */ 5820cd8f9ccSMugunthan V N cpsw_ale_control_set(ale, 0, ALE_BYPASS, 1); 5830cd8f9ccSMugunthan V N 5840cd8f9ccSMugunthan V N dev_dbg(&ndev->dev, "promiscuity enabled\n"); 5850cd8f9ccSMugunthan V N } else { 5860cd8f9ccSMugunthan V N /* Disable Bypass */ 5870cd8f9ccSMugunthan V N cpsw_ale_control_set(ale, 0, ALE_BYPASS, 0); 5880cd8f9ccSMugunthan V N dev_dbg(&ndev->dev, "promiscuity disabled\n"); 5890cd8f9ccSMugunthan V N } 5900cd8f9ccSMugunthan V N } else { 5910cd8f9ccSMugunthan V N if (enable) { 5920cd8f9ccSMugunthan V N unsigned long timeout = jiffies + HZ; 5930cd8f9ccSMugunthan V N 5946f979eb3SLennart Sorensen /* Disable Learn for all ports (host is port 0 and slaves are port 1 and up */ 5956f979eb3SLennart Sorensen for (i = 0; i <= priv->data.slaves; i++) { 5960cd8f9ccSMugunthan V N cpsw_ale_control_set(ale, i, 5970cd8f9ccSMugunthan V N ALE_PORT_NOLEARN, 1); 5980cd8f9ccSMugunthan V N cpsw_ale_control_set(ale, i, 5990cd8f9ccSMugunthan V N ALE_PORT_NO_SA_UPDATE, 1); 6000cd8f9ccSMugunthan V N } 6010cd8f9ccSMugunthan V N 6020cd8f9ccSMugunthan V N /* Clear All Untouched entries */ 6030cd8f9ccSMugunthan V N cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1); 6040cd8f9ccSMugunthan V N do { 6050cd8f9ccSMugunthan V N cpu_relax(); 6060cd8f9ccSMugunthan V N if (cpsw_ale_control_get(ale, 0, ALE_AGEOUT)) 6070cd8f9ccSMugunthan V N break; 6080cd8f9ccSMugunthan V N } while (time_after(timeout, jiffies)); 6090cd8f9ccSMugunthan V N cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1); 6100cd8f9ccSMugunthan V N 6110cd8f9ccSMugunthan V N /* Clear all mcast from ALE */ 6120cd8f9ccSMugunthan V N cpsw_ale_flush_multicast(ale, ALE_ALL_PORTS << 61325906052SMugunthan V N priv->host_port, -1); 6140cd8f9ccSMugunthan V N 6150cd8f9ccSMugunthan V N /* Flood All Unicast Packets to Host port */ 6160cd8f9ccSMugunthan V N cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 1); 6170cd8f9ccSMugunthan V N dev_dbg(&ndev->dev, "promiscuity enabled\n"); 6180cd8f9ccSMugunthan V N } else { 6196f979eb3SLennart Sorensen /* Don't Flood All Unicast Packets to Host port */ 6200cd8f9ccSMugunthan V N cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 0); 6210cd8f9ccSMugunthan V N 6226f979eb3SLennart Sorensen /* Enable Learn for all ports (host is port 0 and slaves are port 1 and up */ 6236f979eb3SLennart Sorensen for (i = 0; i <= priv->data.slaves; i++) { 6240cd8f9ccSMugunthan V N cpsw_ale_control_set(ale, i, 6250cd8f9ccSMugunthan V N ALE_PORT_NOLEARN, 0); 6260cd8f9ccSMugunthan V N cpsw_ale_control_set(ale, i, 6270cd8f9ccSMugunthan V N ALE_PORT_NO_SA_UPDATE, 0); 6280cd8f9ccSMugunthan V N } 6290cd8f9ccSMugunthan V N dev_dbg(&ndev->dev, "promiscuity disabled\n"); 6300cd8f9ccSMugunthan V N } 6310cd8f9ccSMugunthan V N } 6320cd8f9ccSMugunthan V N } 6330cd8f9ccSMugunthan V N 6345c50a856SMugunthan V N static void cpsw_ndo_set_rx_mode(struct net_device *ndev) 6355c50a856SMugunthan V N { 6365c50a856SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 63725906052SMugunthan V N int vid; 63825906052SMugunthan V N 63925906052SMugunthan V N if (priv->data.dual_emac) 64025906052SMugunthan V N vid = priv->slaves[priv->emac_port].port_vlan; 64125906052SMugunthan V N else 64225906052SMugunthan V N vid = priv->data.default_vlan; 6435c50a856SMugunthan V N 6445c50a856SMugunthan V N if (ndev->flags & IFF_PROMISC) { 6455c50a856SMugunthan V N /* Enable promiscuous mode */ 6460cd8f9ccSMugunthan V N cpsw_set_promiscious(ndev, true); 6471e5c4bc4SLennart Sorensen cpsw_ale_set_allmulti(priv->ale, IFF_ALLMULTI); 6485c50a856SMugunthan V N return; 6490cd8f9ccSMugunthan V N } else { 6500cd8f9ccSMugunthan V N /* Disable promiscuous mode */ 6510cd8f9ccSMugunthan V N cpsw_set_promiscious(ndev, false); 6525c50a856SMugunthan V N } 6535c50a856SMugunthan V N 6541e5c4bc4SLennart Sorensen /* Restore allmulti on vlans if necessary */ 6551e5c4bc4SLennart Sorensen cpsw_ale_set_allmulti(priv->ale, priv->ndev->flags & IFF_ALLMULTI); 6561e5c4bc4SLennart Sorensen 6575c50a856SMugunthan V N /* Clear all mcast from ALE */ 65825906052SMugunthan V N cpsw_ale_flush_multicast(priv->ale, ALE_ALL_PORTS << priv->host_port, 65925906052SMugunthan V N vid); 6605c50a856SMugunthan V N 6615c50a856SMugunthan V N if (!netdev_mc_empty(ndev)) { 6625c50a856SMugunthan V N struct netdev_hw_addr *ha; 6635c50a856SMugunthan V N 6645c50a856SMugunthan V N /* program multicast address list into ALE register */ 6655c50a856SMugunthan V N netdev_for_each_mc_addr(ha, ndev) { 666d9ba8f9eSMugunthan V N cpsw_add_mcast(priv, (u8 *)ha->addr); 6675c50a856SMugunthan V N } 6685c50a856SMugunthan V N } 6695c50a856SMugunthan V N } 6705c50a856SMugunthan V N 671df828598SMugunthan V N static void cpsw_intr_enable(struct cpsw_priv *priv) 672df828598SMugunthan V N { 673996a5c27SRichard Cochran __raw_writel(0xFF, &priv->wr_regs->tx_en); 674996a5c27SRichard Cochran __raw_writel(0xFF, &priv->wr_regs->rx_en); 675df828598SMugunthan V N 676df828598SMugunthan V N cpdma_ctlr_int_ctrl(priv->dma, true); 677df828598SMugunthan V N return; 678df828598SMugunthan V N } 679df828598SMugunthan V N 680df828598SMugunthan V N static void cpsw_intr_disable(struct cpsw_priv *priv) 681df828598SMugunthan V N { 682996a5c27SRichard Cochran __raw_writel(0, &priv->wr_regs->tx_en); 683996a5c27SRichard Cochran __raw_writel(0, &priv->wr_regs->rx_en); 684df828598SMugunthan V N 685df828598SMugunthan V N cpdma_ctlr_int_ctrl(priv->dma, false); 686df828598SMugunthan V N return; 687df828598SMugunthan V N } 688df828598SMugunthan V N 6891a3b5056SOlof Johansson static void cpsw_tx_handler(void *token, int len, int status) 690df828598SMugunthan V N { 691df828598SMugunthan V N struct sk_buff *skb = token; 692df828598SMugunthan V N struct net_device *ndev = skb->dev; 693df828598SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 694df828598SMugunthan V N 695fae50823SMugunthan V N /* Check whether the queue is stopped due to stalled tx dma, if the 696fae50823SMugunthan V N * queue is stopped then start the queue as we have free desc for tx 697fae50823SMugunthan V N */ 698df828598SMugunthan V N if (unlikely(netif_queue_stopped(ndev))) 699b56d6b3fSMugunthan V N netif_wake_queue(ndev); 7009232b16dSMugunthan V N cpts_tx_timestamp(priv->cpts, skb); 7018dc43ddcSTobias Klauser ndev->stats.tx_packets++; 7028dc43ddcSTobias Klauser ndev->stats.tx_bytes += len; 703df828598SMugunthan V N dev_kfree_skb_any(skb); 704df828598SMugunthan V N } 705df828598SMugunthan V N 7061a3b5056SOlof Johansson static void cpsw_rx_handler(void *token, int len, int status) 707df828598SMugunthan V N { 708df828598SMugunthan V N struct sk_buff *skb = token; 709b4727e69SSebastian Siewior struct sk_buff *new_skb; 710df828598SMugunthan V N struct net_device *ndev = skb->dev; 711df828598SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 712df828598SMugunthan V N int ret = 0; 713df828598SMugunthan V N 714d9ba8f9eSMugunthan V N cpsw_dual_emac_src_port_detect(status, priv, ndev, skb); 715d9ba8f9eSMugunthan V N 71616e5c57dSMugunthan V N if (unlikely(status < 0) || unlikely(!netif_running(ndev))) { 717a0e2c822SMugunthan V N bool ndev_status = false; 718a0e2c822SMugunthan V N struct cpsw_slave *slave = priv->slaves; 719a0e2c822SMugunthan V N int n; 720a0e2c822SMugunthan V N 721a0e2c822SMugunthan V N if (priv->data.dual_emac) { 722a0e2c822SMugunthan V N /* In dual emac mode check for all interfaces */ 723a0e2c822SMugunthan V N for (n = priv->data.slaves; n; n--, slave++) 724a0e2c822SMugunthan V N if (netif_running(slave->ndev)) 725a0e2c822SMugunthan V N ndev_status = true; 726a0e2c822SMugunthan V N } 727a0e2c822SMugunthan V N 728a0e2c822SMugunthan V N if (ndev_status && (status >= 0)) { 729a0e2c822SMugunthan V N /* The packet received is for the interface which 730a0e2c822SMugunthan V N * is already down and the other interface is up 731a0e2c822SMugunthan V N * and running, intead of freeing which results 732a0e2c822SMugunthan V N * in reducing of the number of rx descriptor in 733a0e2c822SMugunthan V N * DMA engine, requeue skb back to cpdma. 734a0e2c822SMugunthan V N */ 735a0e2c822SMugunthan V N new_skb = skb; 736a0e2c822SMugunthan V N goto requeue; 737a0e2c822SMugunthan V N } 738a0e2c822SMugunthan V N 739b4727e69SSebastian Siewior /* the interface is going down, skbs are purged */ 740df828598SMugunthan V N dev_kfree_skb_any(skb); 741df828598SMugunthan V N return; 742df828598SMugunthan V N } 743b4727e69SSebastian Siewior 744b4727e69SSebastian Siewior new_skb = netdev_alloc_skb_ip_align(ndev, priv->rx_packet_max); 745b4727e69SSebastian Siewior if (new_skb) { 746df828598SMugunthan V N skb_put(skb, len); 7479232b16dSMugunthan V N cpts_rx_timestamp(priv->cpts, skb); 748df828598SMugunthan V N skb->protocol = eth_type_trans(skb, ndev); 749df828598SMugunthan V N netif_receive_skb(skb); 7508dc43ddcSTobias Klauser ndev->stats.rx_bytes += len; 7518dc43ddcSTobias Klauser ndev->stats.rx_packets++; 752b4727e69SSebastian Siewior } else { 7538dc43ddcSTobias Klauser ndev->stats.rx_dropped++; 754b4727e69SSebastian Siewior new_skb = skb; 755df828598SMugunthan V N } 756df828598SMugunthan V N 757a0e2c822SMugunthan V N requeue: 758b4727e69SSebastian Siewior ret = cpdma_chan_submit(priv->rxch, new_skb, new_skb->data, 759b4727e69SSebastian Siewior skb_tailroom(new_skb), 0); 760b4727e69SSebastian Siewior if (WARN_ON(ret < 0)) 761b4727e69SSebastian Siewior dev_kfree_skb_any(new_skb); 762df828598SMugunthan V N } 763df828598SMugunthan V N 764df828598SMugunthan V N static irqreturn_t cpsw_interrupt(int irq, void *dev_id) 765df828598SMugunthan V N { 766df828598SMugunthan V N struct cpsw_priv *priv = dev_id; 7677ce67a38SFelipe Balbi int value = irq - priv->irqs_table[0]; 7687ce67a38SFelipe Balbi 7697ce67a38SFelipe Balbi /* NOTICE: Ending IRQ here. The trick with the 'value' variable above 7707ce67a38SFelipe Balbi * is to make sure we will always write the correct value to the EOI 7717ce67a38SFelipe Balbi * register. Namely 0 for RX_THRESH Interrupt, 1 for RX Interrupt, 2 7727ce67a38SFelipe Balbi * for TX Interrupt and 3 for MISC Interrupt. 7737ce67a38SFelipe Balbi */ 7747ce67a38SFelipe Balbi cpdma_ctlr_eoi(priv->dma, value); 775fd51cf19SSebastian Siewior 776df828598SMugunthan V N cpsw_intr_disable(priv); 777a11fbba9SSebastian Siewior if (priv->irq_enabled == true) { 778df828598SMugunthan V N cpsw_disable_irq(priv); 779a11fbba9SSebastian Siewior priv->irq_enabled = false; 780a11fbba9SSebastian Siewior } 781fd51cf19SSebastian Siewior 782fd51cf19SSebastian Siewior if (netif_running(priv->ndev)) { 783df828598SMugunthan V N napi_schedule(&priv->napi); 784df828598SMugunthan V N return IRQ_HANDLED; 785df828598SMugunthan V N } 786df828598SMugunthan V N 787fd51cf19SSebastian Siewior priv = cpsw_get_slave_priv(priv, 1); 788fd51cf19SSebastian Siewior if (!priv) 789fd51cf19SSebastian Siewior return IRQ_NONE; 790fd51cf19SSebastian Siewior 791fd51cf19SSebastian Siewior if (netif_running(priv->ndev)) { 792fd51cf19SSebastian Siewior napi_schedule(&priv->napi); 793fd51cf19SSebastian Siewior return IRQ_HANDLED; 794fd51cf19SSebastian Siewior } 795fd51cf19SSebastian Siewior return IRQ_NONE; 796fd51cf19SSebastian Siewior } 797fd51cf19SSebastian Siewior 798df828598SMugunthan V N static int cpsw_poll(struct napi_struct *napi, int budget) 799df828598SMugunthan V N { 800df828598SMugunthan V N struct cpsw_priv *priv = napi_to_priv(napi); 801df828598SMugunthan V N int num_tx, num_rx; 802df828598SMugunthan V N 803df828598SMugunthan V N num_tx = cpdma_chan_process(priv->txch, 128); 804510a1e72SMugunthan V N 805df828598SMugunthan V N num_rx = cpdma_chan_process(priv->rxch, budget); 806510a1e72SMugunthan V N if (num_rx < budget) { 807a11fbba9SSebastian Siewior struct cpsw_priv *prim_cpsw; 808a11fbba9SSebastian Siewior 809510a1e72SMugunthan V N napi_complete(napi); 810510a1e72SMugunthan V N cpsw_intr_enable(priv); 811a11fbba9SSebastian Siewior prim_cpsw = cpsw_get_slave_priv(priv, 0); 812a11fbba9SSebastian Siewior if (prim_cpsw->irq_enabled == false) { 813a11fbba9SSebastian Siewior prim_cpsw->irq_enabled = true; 814af5c6df7SMugunthan V N cpsw_enable_irq(priv); 815a11fbba9SSebastian Siewior } 816510a1e72SMugunthan V N } 817df828598SMugunthan V N 818df828598SMugunthan V N if (num_rx || num_tx) 819df828598SMugunthan V N cpsw_dbg(priv, intr, "poll %d rx, %d tx pkts\n", 820df828598SMugunthan V N num_rx, num_tx); 821df828598SMugunthan V N 822df828598SMugunthan V N return num_rx; 823df828598SMugunthan V N } 824df828598SMugunthan V N 825df828598SMugunthan V N static inline void soft_reset(const char *module, void __iomem *reg) 826df828598SMugunthan V N { 827df828598SMugunthan V N unsigned long timeout = jiffies + HZ; 828df828598SMugunthan V N 829df828598SMugunthan V N __raw_writel(1, reg); 830df828598SMugunthan V N do { 831df828598SMugunthan V N cpu_relax(); 832df828598SMugunthan V N } while ((__raw_readl(reg) & 1) && time_after(timeout, jiffies)); 833df828598SMugunthan V N 834df828598SMugunthan V N WARN(__raw_readl(reg) & 1, "failed to soft-reset %s\n", module); 835df828598SMugunthan V N } 836df828598SMugunthan V N 837df828598SMugunthan V N #define mac_hi(mac) (((mac)[0] << 0) | ((mac)[1] << 8) | \ 838df828598SMugunthan V N ((mac)[2] << 16) | ((mac)[3] << 24)) 839df828598SMugunthan V N #define mac_lo(mac) (((mac)[4] << 0) | ((mac)[5] << 8)) 840df828598SMugunthan V N 841df828598SMugunthan V N static void cpsw_set_slave_mac(struct cpsw_slave *slave, 842df828598SMugunthan V N struct cpsw_priv *priv) 843df828598SMugunthan V N { 8449750a3adSRichard Cochran slave_write(slave, mac_hi(priv->mac_addr), SA_HI); 8459750a3adSRichard Cochran slave_write(slave, mac_lo(priv->mac_addr), SA_LO); 846df828598SMugunthan V N } 847df828598SMugunthan V N 848df828598SMugunthan V N static void _cpsw_adjust_link(struct cpsw_slave *slave, 849df828598SMugunthan V N struct cpsw_priv *priv, bool *link) 850df828598SMugunthan V N { 851df828598SMugunthan V N struct phy_device *phy = slave->phy; 852df828598SMugunthan V N u32 mac_control = 0; 853df828598SMugunthan V N u32 slave_port; 854df828598SMugunthan V N 855df828598SMugunthan V N if (!phy) 856df828598SMugunthan V N return; 857df828598SMugunthan V N 858df828598SMugunthan V N slave_port = cpsw_get_slave_port(priv, slave->slave_num); 859df828598SMugunthan V N 860df828598SMugunthan V N if (phy->link) { 861df828598SMugunthan V N mac_control = priv->data.mac_control; 862df828598SMugunthan V N 863df828598SMugunthan V N /* enable forwarding */ 864df828598SMugunthan V N cpsw_ale_control_set(priv->ale, slave_port, 865df828598SMugunthan V N ALE_PORT_STATE, ALE_PORT_STATE_FORWARD); 866df828598SMugunthan V N 867df828598SMugunthan V N if (phy->speed == 1000) 868df828598SMugunthan V N mac_control |= BIT(7); /* GIGABITEN */ 869df828598SMugunthan V N if (phy->duplex) 870df828598SMugunthan V N mac_control |= BIT(0); /* FULLDUPLEXEN */ 871342b7b74SDaniel Mack 872342b7b74SDaniel Mack /* set speed_in input in case RMII mode is used in 100Mbps */ 873342b7b74SDaniel Mack if (phy->speed == 100) 874342b7b74SDaniel Mack mac_control |= BIT(15); 875a81d8762SMugunthan V N else if (phy->speed == 10) 876a81d8762SMugunthan V N mac_control |= BIT(18); /* In Band mode */ 877342b7b74SDaniel Mack 8781923d6e4SMugunthan V N if (priv->rx_pause) 8791923d6e4SMugunthan V N mac_control |= BIT(3); 8801923d6e4SMugunthan V N 8811923d6e4SMugunthan V N if (priv->tx_pause) 8821923d6e4SMugunthan V N mac_control |= BIT(4); 8831923d6e4SMugunthan V N 884df828598SMugunthan V N *link = true; 885df828598SMugunthan V N } else { 886df828598SMugunthan V N mac_control = 0; 887df828598SMugunthan V N /* disable forwarding */ 888df828598SMugunthan V N cpsw_ale_control_set(priv->ale, slave_port, 889df828598SMugunthan V N ALE_PORT_STATE, ALE_PORT_STATE_DISABLE); 890df828598SMugunthan V N } 891df828598SMugunthan V N 892df828598SMugunthan V N if (mac_control != slave->mac_control) { 893df828598SMugunthan V N phy_print_status(phy); 894df828598SMugunthan V N __raw_writel(mac_control, &slave->sliver->mac_control); 895df828598SMugunthan V N } 896df828598SMugunthan V N 897df828598SMugunthan V N slave->mac_control = mac_control; 898df828598SMugunthan V N } 899df828598SMugunthan V N 900df828598SMugunthan V N static void cpsw_adjust_link(struct net_device *ndev) 901df828598SMugunthan V N { 902df828598SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 903df828598SMugunthan V N bool link = false; 904df828598SMugunthan V N 905df828598SMugunthan V N for_each_slave(priv, _cpsw_adjust_link, priv, &link); 906df828598SMugunthan V N 907df828598SMugunthan V N if (link) { 908df828598SMugunthan V N netif_carrier_on(ndev); 909df828598SMugunthan V N if (netif_running(ndev)) 910df828598SMugunthan V N netif_wake_queue(ndev); 911df828598SMugunthan V N } else { 912df828598SMugunthan V N netif_carrier_off(ndev); 913df828598SMugunthan V N netif_stop_queue(ndev); 914df828598SMugunthan V N } 915df828598SMugunthan V N } 916df828598SMugunthan V N 917ff5b8ef2SMugunthan V N static int cpsw_get_coalesce(struct net_device *ndev, 918ff5b8ef2SMugunthan V N struct ethtool_coalesce *coal) 919ff5b8ef2SMugunthan V N { 920ff5b8ef2SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 921ff5b8ef2SMugunthan V N 922ff5b8ef2SMugunthan V N coal->rx_coalesce_usecs = priv->coal_intvl; 923ff5b8ef2SMugunthan V N return 0; 924ff5b8ef2SMugunthan V N } 925ff5b8ef2SMugunthan V N 926ff5b8ef2SMugunthan V N static int cpsw_set_coalesce(struct net_device *ndev, 927ff5b8ef2SMugunthan V N struct ethtool_coalesce *coal) 928ff5b8ef2SMugunthan V N { 929ff5b8ef2SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 930ff5b8ef2SMugunthan V N u32 int_ctrl; 931ff5b8ef2SMugunthan V N u32 num_interrupts = 0; 932ff5b8ef2SMugunthan V N u32 prescale = 0; 933ff5b8ef2SMugunthan V N u32 addnl_dvdr = 1; 934ff5b8ef2SMugunthan V N u32 coal_intvl = 0; 935ff5b8ef2SMugunthan V N 936ff5b8ef2SMugunthan V N coal_intvl = coal->rx_coalesce_usecs; 937ff5b8ef2SMugunthan V N 938ff5b8ef2SMugunthan V N int_ctrl = readl(&priv->wr_regs->int_control); 939ff5b8ef2SMugunthan V N prescale = priv->bus_freq_mhz * 4; 940ff5b8ef2SMugunthan V N 941a84bc2a9SMugunthan V N if (!coal->rx_coalesce_usecs) { 942a84bc2a9SMugunthan V N int_ctrl &= ~(CPSW_INTPRESCALE_MASK | CPSW_INTPACEEN); 943a84bc2a9SMugunthan V N goto update_return; 944a84bc2a9SMugunthan V N } 945a84bc2a9SMugunthan V N 946ff5b8ef2SMugunthan V N if (coal_intvl < CPSW_CMINTMIN_INTVL) 947ff5b8ef2SMugunthan V N coal_intvl = CPSW_CMINTMIN_INTVL; 948ff5b8ef2SMugunthan V N 949ff5b8ef2SMugunthan V N if (coal_intvl > CPSW_CMINTMAX_INTVL) { 950ff5b8ef2SMugunthan V N /* Interrupt pacer works with 4us Pulse, we can 951ff5b8ef2SMugunthan V N * throttle further by dilating the 4us pulse. 952ff5b8ef2SMugunthan V N */ 953ff5b8ef2SMugunthan V N addnl_dvdr = CPSW_INTPRESCALE_MASK / prescale; 954ff5b8ef2SMugunthan V N 955ff5b8ef2SMugunthan V N if (addnl_dvdr > 1) { 956ff5b8ef2SMugunthan V N prescale *= addnl_dvdr; 957ff5b8ef2SMugunthan V N if (coal_intvl > (CPSW_CMINTMAX_INTVL * addnl_dvdr)) 958ff5b8ef2SMugunthan V N coal_intvl = (CPSW_CMINTMAX_INTVL 959ff5b8ef2SMugunthan V N * addnl_dvdr); 960ff5b8ef2SMugunthan V N } else { 961ff5b8ef2SMugunthan V N addnl_dvdr = 1; 962ff5b8ef2SMugunthan V N coal_intvl = CPSW_CMINTMAX_INTVL; 963ff5b8ef2SMugunthan V N } 964ff5b8ef2SMugunthan V N } 965ff5b8ef2SMugunthan V N 966ff5b8ef2SMugunthan V N num_interrupts = (1000 * addnl_dvdr) / coal_intvl; 967ff5b8ef2SMugunthan V N writel(num_interrupts, &priv->wr_regs->rx_imax); 968ff5b8ef2SMugunthan V N writel(num_interrupts, &priv->wr_regs->tx_imax); 969ff5b8ef2SMugunthan V N 970ff5b8ef2SMugunthan V N int_ctrl |= CPSW_INTPACEEN; 971ff5b8ef2SMugunthan V N int_ctrl &= (~CPSW_INTPRESCALE_MASK); 972ff5b8ef2SMugunthan V N int_ctrl |= (prescale & CPSW_INTPRESCALE_MASK); 973a84bc2a9SMugunthan V N 974a84bc2a9SMugunthan V N update_return: 975ff5b8ef2SMugunthan V N writel(int_ctrl, &priv->wr_regs->int_control); 976ff5b8ef2SMugunthan V N 977ff5b8ef2SMugunthan V N cpsw_notice(priv, timer, "Set coalesce to %d usecs.\n", coal_intvl); 978ff5b8ef2SMugunthan V N if (priv->data.dual_emac) { 979ff5b8ef2SMugunthan V N int i; 980ff5b8ef2SMugunthan V N 981ff5b8ef2SMugunthan V N for (i = 0; i < priv->data.slaves; i++) { 982ff5b8ef2SMugunthan V N priv = netdev_priv(priv->slaves[i].ndev); 983ff5b8ef2SMugunthan V N priv->coal_intvl = coal_intvl; 984ff5b8ef2SMugunthan V N } 985ff5b8ef2SMugunthan V N } else { 986ff5b8ef2SMugunthan V N priv->coal_intvl = coal_intvl; 987ff5b8ef2SMugunthan V N } 988ff5b8ef2SMugunthan V N 989ff5b8ef2SMugunthan V N return 0; 990ff5b8ef2SMugunthan V N } 991ff5b8ef2SMugunthan V N 992d9718546SMugunthan V N static int cpsw_get_sset_count(struct net_device *ndev, int sset) 993d9718546SMugunthan V N { 994d9718546SMugunthan V N switch (sset) { 995d9718546SMugunthan V N case ETH_SS_STATS: 996d9718546SMugunthan V N return CPSW_STATS_LEN; 997d9718546SMugunthan V N default: 998d9718546SMugunthan V N return -EOPNOTSUPP; 999d9718546SMugunthan V N } 1000d9718546SMugunthan V N } 1001d9718546SMugunthan V N 1002d9718546SMugunthan V N static void cpsw_get_strings(struct net_device *ndev, u32 stringset, u8 *data) 1003d9718546SMugunthan V N { 1004d9718546SMugunthan V N u8 *p = data; 1005d9718546SMugunthan V N int i; 1006d9718546SMugunthan V N 1007d9718546SMugunthan V N switch (stringset) { 1008d9718546SMugunthan V N case ETH_SS_STATS: 1009d9718546SMugunthan V N for (i = 0; i < CPSW_STATS_LEN; i++) { 1010d9718546SMugunthan V N memcpy(p, cpsw_gstrings_stats[i].stat_string, 1011d9718546SMugunthan V N ETH_GSTRING_LEN); 1012d9718546SMugunthan V N p += ETH_GSTRING_LEN; 1013d9718546SMugunthan V N } 1014d9718546SMugunthan V N break; 1015d9718546SMugunthan V N } 1016d9718546SMugunthan V N } 1017d9718546SMugunthan V N 1018d9718546SMugunthan V N static void cpsw_get_ethtool_stats(struct net_device *ndev, 1019d9718546SMugunthan V N struct ethtool_stats *stats, u64 *data) 1020d9718546SMugunthan V N { 1021d9718546SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 1022d9718546SMugunthan V N struct cpdma_chan_stats rx_stats; 1023d9718546SMugunthan V N struct cpdma_chan_stats tx_stats; 1024d9718546SMugunthan V N u32 val; 1025d9718546SMugunthan V N u8 *p; 1026d9718546SMugunthan V N int i; 1027d9718546SMugunthan V N 1028d9718546SMugunthan V N /* Collect Davinci CPDMA stats for Rx and Tx Channel */ 1029d9718546SMugunthan V N cpdma_chan_get_stats(priv->rxch, &rx_stats); 1030d9718546SMugunthan V N cpdma_chan_get_stats(priv->txch, &tx_stats); 1031d9718546SMugunthan V N 1032d9718546SMugunthan V N for (i = 0; i < CPSW_STATS_LEN; i++) { 1033d9718546SMugunthan V N switch (cpsw_gstrings_stats[i].type) { 1034d9718546SMugunthan V N case CPSW_STATS: 1035d9718546SMugunthan V N val = readl(priv->hw_stats + 1036d9718546SMugunthan V N cpsw_gstrings_stats[i].stat_offset); 1037d9718546SMugunthan V N data[i] = val; 1038d9718546SMugunthan V N break; 1039d9718546SMugunthan V N 1040d9718546SMugunthan V N case CPDMA_RX_STATS: 1041d9718546SMugunthan V N p = (u8 *)&rx_stats + 1042d9718546SMugunthan V N cpsw_gstrings_stats[i].stat_offset; 1043d9718546SMugunthan V N data[i] = *(u32 *)p; 1044d9718546SMugunthan V N break; 1045d9718546SMugunthan V N 1046d9718546SMugunthan V N case CPDMA_TX_STATS: 1047d9718546SMugunthan V N p = (u8 *)&tx_stats + 1048d9718546SMugunthan V N cpsw_gstrings_stats[i].stat_offset; 1049d9718546SMugunthan V N data[i] = *(u32 *)p; 1050d9718546SMugunthan V N break; 1051d9718546SMugunthan V N } 1052d9718546SMugunthan V N } 1053d9718546SMugunthan V N } 1054d9718546SMugunthan V N 1055d9ba8f9eSMugunthan V N static int cpsw_common_res_usage_state(struct cpsw_priv *priv) 1056d9ba8f9eSMugunthan V N { 1057d9ba8f9eSMugunthan V N u32 i; 1058d9ba8f9eSMugunthan V N u32 usage_count = 0; 1059d9ba8f9eSMugunthan V N 1060d9ba8f9eSMugunthan V N if (!priv->data.dual_emac) 1061d9ba8f9eSMugunthan V N return 0; 1062d9ba8f9eSMugunthan V N 1063d9ba8f9eSMugunthan V N for (i = 0; i < priv->data.slaves; i++) 1064d9ba8f9eSMugunthan V N if (priv->slaves[i].open_stat) 1065d9ba8f9eSMugunthan V N usage_count++; 1066d9ba8f9eSMugunthan V N 1067d9ba8f9eSMugunthan V N return usage_count; 1068d9ba8f9eSMugunthan V N } 1069d9ba8f9eSMugunthan V N 1070d9ba8f9eSMugunthan V N static inline int cpsw_tx_packet_submit(struct net_device *ndev, 1071d9ba8f9eSMugunthan V N struct cpsw_priv *priv, struct sk_buff *skb) 1072d9ba8f9eSMugunthan V N { 1073d9ba8f9eSMugunthan V N if (!priv->data.dual_emac) 1074d9ba8f9eSMugunthan V N return cpdma_chan_submit(priv->txch, skb, skb->data, 1075aef614e1SSebastian Siewior skb->len, 0); 1076d9ba8f9eSMugunthan V N 1077d9ba8f9eSMugunthan V N if (ndev == cpsw_get_slave_ndev(priv, 0)) 1078d9ba8f9eSMugunthan V N return cpdma_chan_submit(priv->txch, skb, skb->data, 1079aef614e1SSebastian Siewior skb->len, 1); 1080d9ba8f9eSMugunthan V N else 1081d9ba8f9eSMugunthan V N return cpdma_chan_submit(priv->txch, skb, skb->data, 1082aef614e1SSebastian Siewior skb->len, 2); 1083d9ba8f9eSMugunthan V N } 1084d9ba8f9eSMugunthan V N 1085d9ba8f9eSMugunthan V N static inline void cpsw_add_dual_emac_def_ale_entries( 1086d9ba8f9eSMugunthan V N struct cpsw_priv *priv, struct cpsw_slave *slave, 1087d9ba8f9eSMugunthan V N u32 slave_port) 1088d9ba8f9eSMugunthan V N { 1089d9ba8f9eSMugunthan V N u32 port_mask = 1 << slave_port | 1 << priv->host_port; 1090d9ba8f9eSMugunthan V N 1091d9ba8f9eSMugunthan V N if (priv->version == CPSW_VERSION_1) 1092d9ba8f9eSMugunthan V N slave_write(slave, slave->port_vlan, CPSW1_PORT_VLAN); 1093d9ba8f9eSMugunthan V N else 1094d9ba8f9eSMugunthan V N slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN); 1095d9ba8f9eSMugunthan V N cpsw_ale_add_vlan(priv->ale, slave->port_vlan, port_mask, 1096d9ba8f9eSMugunthan V N port_mask, port_mask, 0); 1097d9ba8f9eSMugunthan V N cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast, 1098d9ba8f9eSMugunthan V N port_mask, ALE_VLAN, slave->port_vlan, 0); 1099d9ba8f9eSMugunthan V N cpsw_ale_add_ucast(priv->ale, priv->mac_addr, 1100d9ba8f9eSMugunthan V N priv->host_port, ALE_VLAN, slave->port_vlan); 1101d9ba8f9eSMugunthan V N } 1102d9ba8f9eSMugunthan V N 11031e7a2e21SDaniel Mack static void soft_reset_slave(struct cpsw_slave *slave) 1104df828598SMugunthan V N { 1105df828598SMugunthan V N char name[32]; 11061e7a2e21SDaniel Mack 11071e7a2e21SDaniel Mack snprintf(name, sizeof(name), "slave-%d", slave->slave_num); 11081e7a2e21SDaniel Mack soft_reset(name, &slave->sliver->soft_reset); 11091e7a2e21SDaniel Mack } 11101e7a2e21SDaniel Mack 11111e7a2e21SDaniel Mack static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv) 11121e7a2e21SDaniel Mack { 1113df828598SMugunthan V N u32 slave_port; 1114df828598SMugunthan V N 11151e7a2e21SDaniel Mack soft_reset_slave(slave); 1116df828598SMugunthan V N 1117df828598SMugunthan V N /* setup priority mapping */ 1118df828598SMugunthan V N __raw_writel(RX_PRIORITY_MAPPING, &slave->sliver->rx_pri_map); 11199750a3adSRichard Cochran 11209750a3adSRichard Cochran switch (priv->version) { 11219750a3adSRichard Cochran case CPSW_VERSION_1: 11229750a3adSRichard Cochran slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP); 11239750a3adSRichard Cochran break; 11249750a3adSRichard Cochran case CPSW_VERSION_2: 1125c193f365SMugunthan V N case CPSW_VERSION_3: 1126926489beSMugunthan V N case CPSW_VERSION_4: 11279750a3adSRichard Cochran slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP); 11289750a3adSRichard Cochran break; 11299750a3adSRichard Cochran } 1130df828598SMugunthan V N 1131df828598SMugunthan V N /* setup max packet size, and mac address */ 1132df828598SMugunthan V N __raw_writel(priv->rx_packet_max, &slave->sliver->rx_maxlen); 1133df828598SMugunthan V N cpsw_set_slave_mac(slave, priv); 1134df828598SMugunthan V N 1135df828598SMugunthan V N slave->mac_control = 0; /* no link yet */ 1136df828598SMugunthan V N 1137df828598SMugunthan V N slave_port = cpsw_get_slave_port(priv, slave->slave_num); 1138df828598SMugunthan V N 1139d9ba8f9eSMugunthan V N if (priv->data.dual_emac) 1140d9ba8f9eSMugunthan V N cpsw_add_dual_emac_def_ale_entries(priv, slave, slave_port); 1141d9ba8f9eSMugunthan V N else 1142df828598SMugunthan V N cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast, 1143e11b220fSMugunthan V N 1 << slave_port, 0, 0, ALE_MCAST_FWD_2); 1144df828598SMugunthan V N 1145df828598SMugunthan V N slave->phy = phy_connect(priv->ndev, slave->data->phy_id, 1146f9a8f83bSFlorian Fainelli &cpsw_adjust_link, slave->data->phy_if); 1147df828598SMugunthan V N if (IS_ERR(slave->phy)) { 1148df828598SMugunthan V N dev_err(priv->dev, "phy %s not found on slave %d\n", 1149df828598SMugunthan V N slave->data->phy_id, slave->slave_num); 1150df828598SMugunthan V N slave->phy = NULL; 1151df828598SMugunthan V N } else { 1152df828598SMugunthan V N dev_info(priv->dev, "phy found : id is : 0x%x\n", 1153df828598SMugunthan V N slave->phy->phy_id); 1154df828598SMugunthan V N phy_start(slave->phy); 1155388367a5SMugunthan V N 1156388367a5SMugunthan V N /* Configure GMII_SEL register */ 1157388367a5SMugunthan V N cpsw_phy_sel(&priv->pdev->dev, slave->phy->interface, 1158388367a5SMugunthan V N slave->slave_num); 1159df828598SMugunthan V N } 1160df828598SMugunthan V N } 1161df828598SMugunthan V N 11623b72c2feSMugunthan V N static inline void cpsw_add_default_vlan(struct cpsw_priv *priv) 11633b72c2feSMugunthan V N { 11643b72c2feSMugunthan V N const int vlan = priv->data.default_vlan; 11653b72c2feSMugunthan V N const int port = priv->host_port; 11663b72c2feSMugunthan V N u32 reg; 11673b72c2feSMugunthan V N int i; 11681e5c4bc4SLennart Sorensen int unreg_mcast_mask; 11693b72c2feSMugunthan V N 11703b72c2feSMugunthan V N reg = (priv->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN : 11713b72c2feSMugunthan V N CPSW2_PORT_VLAN; 11723b72c2feSMugunthan V N 11733b72c2feSMugunthan V N writel(vlan, &priv->host_port_regs->port_vlan); 11743b72c2feSMugunthan V N 11750237c110SDaniel Mack for (i = 0; i < priv->data.slaves; i++) 11763b72c2feSMugunthan V N slave_write(priv->slaves + i, vlan, reg); 11773b72c2feSMugunthan V N 11781e5c4bc4SLennart Sorensen if (priv->ndev->flags & IFF_ALLMULTI) 11791e5c4bc4SLennart Sorensen unreg_mcast_mask = ALE_ALL_PORTS; 11801e5c4bc4SLennart Sorensen else 11811e5c4bc4SLennart Sorensen unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2; 11821e5c4bc4SLennart Sorensen 11833b72c2feSMugunthan V N cpsw_ale_add_vlan(priv->ale, vlan, ALE_ALL_PORTS << port, 11843b72c2feSMugunthan V N ALE_ALL_PORTS << port, ALE_ALL_PORTS << port, 11851e5c4bc4SLennart Sorensen unreg_mcast_mask << port); 11863b72c2feSMugunthan V N } 11873b72c2feSMugunthan V N 1188df828598SMugunthan V N static void cpsw_init_host_port(struct cpsw_priv *priv) 1189df828598SMugunthan V N { 11903b72c2feSMugunthan V N u32 control_reg; 1191d9ba8f9eSMugunthan V N u32 fifo_mode; 11923b72c2feSMugunthan V N 1193df828598SMugunthan V N /* soft reset the controller and initialize ale */ 1194df828598SMugunthan V N soft_reset("cpsw", &priv->regs->soft_reset); 1195df828598SMugunthan V N cpsw_ale_start(priv->ale); 1196df828598SMugunthan V N 1197df828598SMugunthan V N /* switch to vlan unaware mode */ 11983b72c2feSMugunthan V N cpsw_ale_control_set(priv->ale, priv->host_port, ALE_VLAN_AWARE, 11993b72c2feSMugunthan V N CPSW_ALE_VLAN_AWARE); 12003b72c2feSMugunthan V N control_reg = readl(&priv->regs->control); 12013b72c2feSMugunthan V N control_reg |= CPSW_VLAN_AWARE; 12023b72c2feSMugunthan V N writel(control_reg, &priv->regs->control); 1203d9ba8f9eSMugunthan V N fifo_mode = (priv->data.dual_emac) ? CPSW_FIFO_DUAL_MAC_MODE : 1204d9ba8f9eSMugunthan V N CPSW_FIFO_NORMAL_MODE; 1205d9ba8f9eSMugunthan V N writel(fifo_mode, &priv->host_port_regs->tx_in_ctl); 1206df828598SMugunthan V N 1207df828598SMugunthan V N /* setup host port priority mapping */ 1208df828598SMugunthan V N __raw_writel(CPDMA_TX_PRIORITY_MAP, 1209df828598SMugunthan V N &priv->host_port_regs->cpdma_tx_pri_map); 1210df828598SMugunthan V N __raw_writel(0, &priv->host_port_regs->cpdma_rx_chan_map); 1211df828598SMugunthan V N 1212df828598SMugunthan V N cpsw_ale_control_set(priv->ale, priv->host_port, 1213df828598SMugunthan V N ALE_PORT_STATE, ALE_PORT_STATE_FORWARD); 1214df828598SMugunthan V N 1215d9ba8f9eSMugunthan V N if (!priv->data.dual_emac) { 1216d9ba8f9eSMugunthan V N cpsw_ale_add_ucast(priv->ale, priv->mac_addr, priv->host_port, 1217d9ba8f9eSMugunthan V N 0, 0); 1218df828598SMugunthan V N cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast, 1219e11b220fSMugunthan V N 1 << priv->host_port, 0, 0, ALE_MCAST_FWD_2); 1220df828598SMugunthan V N } 1221d9ba8f9eSMugunthan V N } 1222df828598SMugunthan V N 1223aacebbf8SSebastian Siewior static void cpsw_slave_stop(struct cpsw_slave *slave, struct cpsw_priv *priv) 1224aacebbf8SSebastian Siewior { 12253995d265SSchuyler Patton u32 slave_port; 12263995d265SSchuyler Patton 12273995d265SSchuyler Patton slave_port = cpsw_get_slave_port(priv, slave->slave_num); 12283995d265SSchuyler Patton 1229aacebbf8SSebastian Siewior if (!slave->phy) 1230aacebbf8SSebastian Siewior return; 1231aacebbf8SSebastian Siewior phy_stop(slave->phy); 1232aacebbf8SSebastian Siewior phy_disconnect(slave->phy); 1233aacebbf8SSebastian Siewior slave->phy = NULL; 12343995d265SSchuyler Patton cpsw_ale_control_set(priv->ale, slave_port, 12353995d265SSchuyler Patton ALE_PORT_STATE, ALE_PORT_STATE_DISABLE); 1236aacebbf8SSebastian Siewior } 1237aacebbf8SSebastian Siewior 1238df828598SMugunthan V N static int cpsw_ndo_open(struct net_device *ndev) 1239df828598SMugunthan V N { 1240df828598SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 1241a11fbba9SSebastian Siewior struct cpsw_priv *prim_cpsw; 1242df828598SMugunthan V N int i, ret; 1243df828598SMugunthan V N u32 reg; 1244df828598SMugunthan V N 1245d9ba8f9eSMugunthan V N if (!cpsw_common_res_usage_state(priv)) 1246df828598SMugunthan V N cpsw_intr_disable(priv); 1247df828598SMugunthan V N netif_carrier_off(ndev); 1248df828598SMugunthan V N 1249f150bd7fSMugunthan V N pm_runtime_get_sync(&priv->pdev->dev); 1250df828598SMugunthan V N 1251549985eeSRichard Cochran reg = priv->version; 1252df828598SMugunthan V N 1253df828598SMugunthan V N dev_info(priv->dev, "initializing cpsw version %d.%d (%d)\n", 1254df828598SMugunthan V N CPSW_MAJOR_VERSION(reg), CPSW_MINOR_VERSION(reg), 1255df828598SMugunthan V N CPSW_RTL_VERSION(reg)); 1256df828598SMugunthan V N 1257df828598SMugunthan V N /* initialize host and slave ports */ 1258d9ba8f9eSMugunthan V N if (!cpsw_common_res_usage_state(priv)) 1259df828598SMugunthan V N cpsw_init_host_port(priv); 1260df828598SMugunthan V N for_each_slave(priv, cpsw_slave_open, priv); 1261df828598SMugunthan V N 12623b72c2feSMugunthan V N /* Add default VLAN */ 1263e6afea0bSMugunthan V N if (!priv->data.dual_emac) 12643b72c2feSMugunthan V N cpsw_add_default_vlan(priv); 1265e6afea0bSMugunthan V N else 1266e6afea0bSMugunthan V N cpsw_ale_add_vlan(priv->ale, priv->data.default_vlan, 1267e6afea0bSMugunthan V N ALE_ALL_PORTS << priv->host_port, 1268e6afea0bSMugunthan V N ALE_ALL_PORTS << priv->host_port, 0, 0); 12693b72c2feSMugunthan V N 1270d9ba8f9eSMugunthan V N if (!cpsw_common_res_usage_state(priv)) { 1271df828598SMugunthan V N /* setup tx dma to fixed prio and zero offset */ 1272df828598SMugunthan V N cpdma_control_set(priv->dma, CPDMA_TX_PRIO_FIXED, 1); 1273df828598SMugunthan V N cpdma_control_set(priv->dma, CPDMA_RX_BUFFER_OFFSET, 0); 1274df828598SMugunthan V N 1275d9ba8f9eSMugunthan V N /* disable priority elevation */ 1276df828598SMugunthan V N __raw_writel(0, &priv->regs->ptype); 1277df828598SMugunthan V N 1278d9ba8f9eSMugunthan V N /* enable statistics collection only on all ports */ 1279df828598SMugunthan V N __raw_writel(0x7, &priv->regs->stat_port_en); 1280df828598SMugunthan V N 12811923d6e4SMugunthan V N /* Enable internal fifo flow control */ 12821923d6e4SMugunthan V N writel(0x7, &priv->regs->flow_control); 12831923d6e4SMugunthan V N 1284df828598SMugunthan V N if (WARN_ON(!priv->data.rx_descs)) 1285df828598SMugunthan V N priv->data.rx_descs = 128; 1286df828598SMugunthan V N 1287df828598SMugunthan V N for (i = 0; i < priv->data.rx_descs; i++) { 1288df828598SMugunthan V N struct sk_buff *skb; 1289df828598SMugunthan V N 1290df828598SMugunthan V N ret = -ENOMEM; 1291aacebbf8SSebastian Siewior skb = __netdev_alloc_skb_ip_align(priv->ndev, 1292aacebbf8SSebastian Siewior priv->rx_packet_max, GFP_KERNEL); 1293df828598SMugunthan V N if (!skb) 1294aacebbf8SSebastian Siewior goto err_cleanup; 1295df828598SMugunthan V N ret = cpdma_chan_submit(priv->rxch, skb, skb->data, 1296aef614e1SSebastian Siewior skb_tailroom(skb), 0); 1297aacebbf8SSebastian Siewior if (ret < 0) { 1298aacebbf8SSebastian Siewior kfree_skb(skb); 1299aacebbf8SSebastian Siewior goto err_cleanup; 1300aacebbf8SSebastian Siewior } 1301df828598SMugunthan V N } 1302d9ba8f9eSMugunthan V N /* continue even if we didn't manage to submit all 1303d9ba8f9eSMugunthan V N * receive descs 1304d9ba8f9eSMugunthan V N */ 1305df828598SMugunthan V N cpsw_info(priv, ifup, "submitted %d rx descriptors\n", i); 1306f280e89aSMugunthan V N 1307f280e89aSMugunthan V N if (cpts_register(&priv->pdev->dev, priv->cpts, 1308f280e89aSMugunthan V N priv->data.cpts_clock_mult, 1309f280e89aSMugunthan V N priv->data.cpts_clock_shift)) 1310f280e89aSMugunthan V N dev_err(priv->dev, "error registering cpts device\n"); 1311f280e89aSMugunthan V N 1312d9ba8f9eSMugunthan V N } 1313df828598SMugunthan V N 1314ff5b8ef2SMugunthan V N /* Enable Interrupt pacing if configured */ 1315ff5b8ef2SMugunthan V N if (priv->coal_intvl != 0) { 1316ff5b8ef2SMugunthan V N struct ethtool_coalesce coal; 1317ff5b8ef2SMugunthan V N 1318ff5b8ef2SMugunthan V N coal.rx_coalesce_usecs = (priv->coal_intvl << 4); 1319ff5b8ef2SMugunthan V N cpsw_set_coalesce(ndev, &coal); 1320ff5b8ef2SMugunthan V N } 1321ff5b8ef2SMugunthan V N 1322f63a975eSMugunthan V N napi_enable(&priv->napi); 1323f63a975eSMugunthan V N cpdma_ctlr_start(priv->dma); 1324f63a975eSMugunthan V N cpsw_intr_enable(priv); 1325f63a975eSMugunthan V N 1326a11fbba9SSebastian Siewior prim_cpsw = cpsw_get_slave_priv(priv, 0); 1327a11fbba9SSebastian Siewior if (prim_cpsw->irq_enabled == false) { 1328a11fbba9SSebastian Siewior if ((priv == prim_cpsw) || !netif_running(prim_cpsw->ndev)) { 1329a11fbba9SSebastian Siewior prim_cpsw->irq_enabled = true; 1330a11fbba9SSebastian Siewior cpsw_enable_irq(prim_cpsw); 1331a11fbba9SSebastian Siewior } 1332a11fbba9SSebastian Siewior } 1333a11fbba9SSebastian Siewior 1334d9ba8f9eSMugunthan V N if (priv->data.dual_emac) 1335d9ba8f9eSMugunthan V N priv->slaves[priv->emac_port].open_stat = true; 1336df828598SMugunthan V N return 0; 1337df828598SMugunthan V N 1338aacebbf8SSebastian Siewior err_cleanup: 1339aacebbf8SSebastian Siewior cpdma_ctlr_stop(priv->dma); 1340aacebbf8SSebastian Siewior for_each_slave(priv, cpsw_slave_stop, priv); 1341aacebbf8SSebastian Siewior pm_runtime_put_sync(&priv->pdev->dev); 1342aacebbf8SSebastian Siewior netif_carrier_off(priv->ndev); 1343aacebbf8SSebastian Siewior return ret; 1344df828598SMugunthan V N } 1345df828598SMugunthan V N 1346df828598SMugunthan V N static int cpsw_ndo_stop(struct net_device *ndev) 1347df828598SMugunthan V N { 1348df828598SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 1349df828598SMugunthan V N 1350df828598SMugunthan V N cpsw_info(priv, ifdown, "shutting down cpsw device\n"); 1351df828598SMugunthan V N netif_stop_queue(priv->ndev); 1352df828598SMugunthan V N napi_disable(&priv->napi); 1353df828598SMugunthan V N netif_carrier_off(priv->ndev); 1354d9ba8f9eSMugunthan V N 1355d9ba8f9eSMugunthan V N if (cpsw_common_res_usage_state(priv) <= 1) { 1356f280e89aSMugunthan V N cpts_unregister(priv->cpts); 135771380f9bSMugunthan V N cpsw_intr_disable(priv); 135871380f9bSMugunthan V N cpdma_ctlr_int_ctrl(priv->dma, false); 135971380f9bSMugunthan V N cpdma_ctlr_stop(priv->dma); 1360df828598SMugunthan V N cpsw_ale_stop(priv->ale); 1361d9ba8f9eSMugunthan V N } 1362df828598SMugunthan V N for_each_slave(priv, cpsw_slave_stop, priv); 1363f150bd7fSMugunthan V N pm_runtime_put_sync(&priv->pdev->dev); 1364d9ba8f9eSMugunthan V N if (priv->data.dual_emac) 1365d9ba8f9eSMugunthan V N priv->slaves[priv->emac_port].open_stat = false; 1366df828598SMugunthan V N return 0; 1367df828598SMugunthan V N } 1368df828598SMugunthan V N 1369df828598SMugunthan V N static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb, 1370df828598SMugunthan V N struct net_device *ndev) 1371df828598SMugunthan V N { 1372df828598SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 1373df828598SMugunthan V N int ret; 1374df828598SMugunthan V N 1375df828598SMugunthan V N ndev->trans_start = jiffies; 1376df828598SMugunthan V N 1377df828598SMugunthan V N if (skb_padto(skb, CPSW_MIN_PACKET_SIZE)) { 1378df828598SMugunthan V N cpsw_err(priv, tx_err, "packet pad failed\n"); 13798dc43ddcSTobias Klauser ndev->stats.tx_dropped++; 1380df828598SMugunthan V N return NETDEV_TX_OK; 1381df828598SMugunthan V N } 1382df828598SMugunthan V N 13839232b16dSMugunthan V N if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP && 13849232b16dSMugunthan V N priv->cpts->tx_enable) 13852e5b38abSRichard Cochran skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; 13862e5b38abSRichard Cochran 13872e5b38abSRichard Cochran skb_tx_timestamp(skb); 13882e5b38abSRichard Cochran 1389d9ba8f9eSMugunthan V N ret = cpsw_tx_packet_submit(ndev, priv, skb); 1390df828598SMugunthan V N if (unlikely(ret != 0)) { 1391df828598SMugunthan V N cpsw_err(priv, tx_err, "desc submit failed\n"); 1392df828598SMugunthan V N goto fail; 1393df828598SMugunthan V N } 1394df828598SMugunthan V N 1395fae50823SMugunthan V N /* If there is no more tx desc left free then we need to 1396fae50823SMugunthan V N * tell the kernel to stop sending us tx frames. 1397fae50823SMugunthan V N */ 1398d35162f8SDaniel Mack if (unlikely(!cpdma_check_free_tx_desc(priv->txch))) 1399fae50823SMugunthan V N netif_stop_queue(ndev); 1400fae50823SMugunthan V N 1401df828598SMugunthan V N return NETDEV_TX_OK; 1402df828598SMugunthan V N fail: 14038dc43ddcSTobias Klauser ndev->stats.tx_dropped++; 1404df828598SMugunthan V N netif_stop_queue(ndev); 1405df828598SMugunthan V N return NETDEV_TX_BUSY; 1406df828598SMugunthan V N } 1407df828598SMugunthan V N 14082e5b38abSRichard Cochran #ifdef CONFIG_TI_CPTS 14092e5b38abSRichard Cochran 14102e5b38abSRichard Cochran static void cpsw_hwtstamp_v1(struct cpsw_priv *priv) 14112e5b38abSRichard Cochran { 1412e86ac13bSMugunthan V N struct cpsw_slave *slave = &priv->slaves[priv->data.active_slave]; 14132e5b38abSRichard Cochran u32 ts_en, seq_id; 14142e5b38abSRichard Cochran 14159232b16dSMugunthan V N if (!priv->cpts->tx_enable && !priv->cpts->rx_enable) { 14162e5b38abSRichard Cochran slave_write(slave, 0, CPSW1_TS_CTL); 14172e5b38abSRichard Cochran return; 14182e5b38abSRichard Cochran } 14192e5b38abSRichard Cochran 14202e5b38abSRichard Cochran seq_id = (30 << CPSW_V1_SEQ_ID_OFS_SHIFT) | ETH_P_1588; 14212e5b38abSRichard Cochran ts_en = EVENT_MSG_BITS << CPSW_V1_MSG_TYPE_OFS; 14222e5b38abSRichard Cochran 14239232b16dSMugunthan V N if (priv->cpts->tx_enable) 14242e5b38abSRichard Cochran ts_en |= CPSW_V1_TS_TX_EN; 14252e5b38abSRichard Cochran 14269232b16dSMugunthan V N if (priv->cpts->rx_enable) 14272e5b38abSRichard Cochran ts_en |= CPSW_V1_TS_RX_EN; 14282e5b38abSRichard Cochran 14292e5b38abSRichard Cochran slave_write(slave, ts_en, CPSW1_TS_CTL); 14302e5b38abSRichard Cochran slave_write(slave, seq_id, CPSW1_TS_SEQ_LTYPE); 14312e5b38abSRichard Cochran } 14322e5b38abSRichard Cochran 14332e5b38abSRichard Cochran static void cpsw_hwtstamp_v2(struct cpsw_priv *priv) 14342e5b38abSRichard Cochran { 1435d9ba8f9eSMugunthan V N struct cpsw_slave *slave; 14362e5b38abSRichard Cochran u32 ctrl, mtype; 14372e5b38abSRichard Cochran 1438d9ba8f9eSMugunthan V N if (priv->data.dual_emac) 1439d9ba8f9eSMugunthan V N slave = &priv->slaves[priv->emac_port]; 1440d9ba8f9eSMugunthan V N else 1441e86ac13bSMugunthan V N slave = &priv->slaves[priv->data.active_slave]; 1442d9ba8f9eSMugunthan V N 14432e5b38abSRichard Cochran ctrl = slave_read(slave, CPSW2_CONTROL); 144409c55372SGeorge Cherian switch (priv->version) { 144509c55372SGeorge Cherian case CPSW_VERSION_2: 144609c55372SGeorge Cherian ctrl &= ~CTRL_V2_ALL_TS_MASK; 14472e5b38abSRichard Cochran 14489232b16dSMugunthan V N if (priv->cpts->tx_enable) 144909c55372SGeorge Cherian ctrl |= CTRL_V2_TX_TS_BITS; 14502e5b38abSRichard Cochran 14519232b16dSMugunthan V N if (priv->cpts->rx_enable) 145209c55372SGeorge Cherian ctrl |= CTRL_V2_RX_TS_BITS; 145309c55372SGeorge Cherian break; 145409c55372SGeorge Cherian case CPSW_VERSION_3: 145509c55372SGeorge Cherian default: 145609c55372SGeorge Cherian ctrl &= ~CTRL_V3_ALL_TS_MASK; 145709c55372SGeorge Cherian 145809c55372SGeorge Cherian if (priv->cpts->tx_enable) 145909c55372SGeorge Cherian ctrl |= CTRL_V3_TX_TS_BITS; 146009c55372SGeorge Cherian 146109c55372SGeorge Cherian if (priv->cpts->rx_enable) 146209c55372SGeorge Cherian ctrl |= CTRL_V3_RX_TS_BITS; 146309c55372SGeorge Cherian break; 146409c55372SGeorge Cherian } 14652e5b38abSRichard Cochran 14662e5b38abSRichard Cochran mtype = (30 << TS_SEQ_ID_OFFSET_SHIFT) | EVENT_MSG_BITS; 14672e5b38abSRichard Cochran 14682e5b38abSRichard Cochran slave_write(slave, mtype, CPSW2_TS_SEQ_MTYPE); 14692e5b38abSRichard Cochran slave_write(slave, ctrl, CPSW2_CONTROL); 14702e5b38abSRichard Cochran __raw_writel(ETH_P_1588, &priv->regs->ts_ltype); 14712e5b38abSRichard Cochran } 14722e5b38abSRichard Cochran 1473a5b4145bSBen Hutchings static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr) 14742e5b38abSRichard Cochran { 14753177bf6fSMugunthan V N struct cpsw_priv *priv = netdev_priv(dev); 14769232b16dSMugunthan V N struct cpts *cpts = priv->cpts; 14772e5b38abSRichard Cochran struct hwtstamp_config cfg; 14782e5b38abSRichard Cochran 14792ee91e54SBen Hutchings if (priv->version != CPSW_VERSION_1 && 1480f7d403cbSGeorge Cherian priv->version != CPSW_VERSION_2 && 1481f7d403cbSGeorge Cherian priv->version != CPSW_VERSION_3) 14822ee91e54SBen Hutchings return -EOPNOTSUPP; 14832ee91e54SBen Hutchings 14842e5b38abSRichard Cochran if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg))) 14852e5b38abSRichard Cochran return -EFAULT; 14862e5b38abSRichard Cochran 14872e5b38abSRichard Cochran /* reserved for future extensions */ 14882e5b38abSRichard Cochran if (cfg.flags) 14892e5b38abSRichard Cochran return -EINVAL; 14902e5b38abSRichard Cochran 14912ee91e54SBen Hutchings if (cfg.tx_type != HWTSTAMP_TX_OFF && cfg.tx_type != HWTSTAMP_TX_ON) 14922e5b38abSRichard Cochran return -ERANGE; 14932e5b38abSRichard Cochran 14942e5b38abSRichard Cochran switch (cfg.rx_filter) { 14952e5b38abSRichard Cochran case HWTSTAMP_FILTER_NONE: 14962e5b38abSRichard Cochran cpts->rx_enable = 0; 14972e5b38abSRichard Cochran break; 14982e5b38abSRichard Cochran case HWTSTAMP_FILTER_ALL: 14992e5b38abSRichard Cochran case HWTSTAMP_FILTER_PTP_V1_L4_EVENT: 15002e5b38abSRichard Cochran case HWTSTAMP_FILTER_PTP_V1_L4_SYNC: 15012e5b38abSRichard Cochran case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ: 15022e5b38abSRichard Cochran return -ERANGE; 15032e5b38abSRichard Cochran case HWTSTAMP_FILTER_PTP_V2_L4_EVENT: 15042e5b38abSRichard Cochran case HWTSTAMP_FILTER_PTP_V2_L4_SYNC: 15052e5b38abSRichard Cochran case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ: 15062e5b38abSRichard Cochran case HWTSTAMP_FILTER_PTP_V2_L2_EVENT: 15072e5b38abSRichard Cochran case HWTSTAMP_FILTER_PTP_V2_L2_SYNC: 15082e5b38abSRichard Cochran case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ: 15092e5b38abSRichard Cochran case HWTSTAMP_FILTER_PTP_V2_EVENT: 15102e5b38abSRichard Cochran case HWTSTAMP_FILTER_PTP_V2_SYNC: 15112e5b38abSRichard Cochran case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ: 15122e5b38abSRichard Cochran cpts->rx_enable = 1; 15132e5b38abSRichard Cochran cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT; 15142e5b38abSRichard Cochran break; 15152e5b38abSRichard Cochran default: 15162e5b38abSRichard Cochran return -ERANGE; 15172e5b38abSRichard Cochran } 15182e5b38abSRichard Cochran 15192ee91e54SBen Hutchings cpts->tx_enable = cfg.tx_type == HWTSTAMP_TX_ON; 15202ee91e54SBen Hutchings 15212e5b38abSRichard Cochran switch (priv->version) { 15222e5b38abSRichard Cochran case CPSW_VERSION_1: 15232e5b38abSRichard Cochran cpsw_hwtstamp_v1(priv); 15242e5b38abSRichard Cochran break; 15252e5b38abSRichard Cochran case CPSW_VERSION_2: 1526f7d403cbSGeorge Cherian case CPSW_VERSION_3: 15272e5b38abSRichard Cochran cpsw_hwtstamp_v2(priv); 15282e5b38abSRichard Cochran break; 15292e5b38abSRichard Cochran default: 15302ee91e54SBen Hutchings WARN_ON(1); 15312e5b38abSRichard Cochran } 15322e5b38abSRichard Cochran 15332e5b38abSRichard Cochran return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0; 15342e5b38abSRichard Cochran } 15352e5b38abSRichard Cochran 1536a5b4145bSBen Hutchings static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr) 1537a5b4145bSBen Hutchings { 1538a5b4145bSBen Hutchings struct cpsw_priv *priv = netdev_priv(dev); 1539a5b4145bSBen Hutchings struct cpts *cpts = priv->cpts; 1540a5b4145bSBen Hutchings struct hwtstamp_config cfg; 1541a5b4145bSBen Hutchings 1542a5b4145bSBen Hutchings if (priv->version != CPSW_VERSION_1 && 1543f7d403cbSGeorge Cherian priv->version != CPSW_VERSION_2 && 1544f7d403cbSGeorge Cherian priv->version != CPSW_VERSION_3) 1545a5b4145bSBen Hutchings return -EOPNOTSUPP; 1546a5b4145bSBen Hutchings 1547a5b4145bSBen Hutchings cfg.flags = 0; 1548a5b4145bSBen Hutchings cfg.tx_type = cpts->tx_enable ? HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF; 1549a5b4145bSBen Hutchings cfg.rx_filter = (cpts->rx_enable ? 1550a5b4145bSBen Hutchings HWTSTAMP_FILTER_PTP_V2_EVENT : HWTSTAMP_FILTER_NONE); 1551a5b4145bSBen Hutchings 1552a5b4145bSBen Hutchings return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0; 1553a5b4145bSBen Hutchings } 1554a5b4145bSBen Hutchings 15552e5b38abSRichard Cochran #endif /*CONFIG_TI_CPTS*/ 15562e5b38abSRichard Cochran 15572e5b38abSRichard Cochran static int cpsw_ndo_ioctl(struct net_device *dev, struct ifreq *req, int cmd) 15582e5b38abSRichard Cochran { 155911f2c988SMugunthan V N struct cpsw_priv *priv = netdev_priv(dev); 156011f2c988SMugunthan V N int slave_no = cpsw_slave_index(priv); 156111f2c988SMugunthan V N 15622e5b38abSRichard Cochran if (!netif_running(dev)) 15632e5b38abSRichard Cochran return -EINVAL; 15642e5b38abSRichard Cochran 156511f2c988SMugunthan V N switch (cmd) { 15662e5b38abSRichard Cochran #ifdef CONFIG_TI_CPTS 156711f2c988SMugunthan V N case SIOCSHWTSTAMP: 1568a5b4145bSBen Hutchings return cpsw_hwtstamp_set(dev, req); 1569a5b4145bSBen Hutchings case SIOCGHWTSTAMP: 1570a5b4145bSBen Hutchings return cpsw_hwtstamp_get(dev, req); 15712e5b38abSRichard Cochran #endif 15722e5b38abSRichard Cochran } 15732e5b38abSRichard Cochran 1574c1b59947SStefan Sørensen if (!priv->slaves[slave_no].phy) 1575c1b59947SStefan Sørensen return -EOPNOTSUPP; 1576c1b59947SStefan Sørensen return phy_mii_ioctl(priv->slaves[slave_no].phy, req, cmd); 157711f2c988SMugunthan V N } 157811f2c988SMugunthan V N 1579df828598SMugunthan V N static void cpsw_ndo_tx_timeout(struct net_device *ndev) 1580df828598SMugunthan V N { 1581df828598SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 1582df828598SMugunthan V N 1583df828598SMugunthan V N cpsw_err(priv, tx_err, "transmit timeout, restarting dma\n"); 15848dc43ddcSTobias Klauser ndev->stats.tx_errors++; 1585df828598SMugunthan V N cpsw_intr_disable(priv); 1586df828598SMugunthan V N cpdma_ctlr_int_ctrl(priv->dma, false); 1587df828598SMugunthan V N cpdma_chan_stop(priv->txch); 1588df828598SMugunthan V N cpdma_chan_start(priv->txch); 1589df828598SMugunthan V N cpdma_ctlr_int_ctrl(priv->dma, true); 1590df828598SMugunthan V N cpsw_intr_enable(priv); 1591df828598SMugunthan V N } 1592df828598SMugunthan V N 1593dcfd8d58SMugunthan V N static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p) 1594dcfd8d58SMugunthan V N { 1595dcfd8d58SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 1596dcfd8d58SMugunthan V N struct sockaddr *addr = (struct sockaddr *)p; 1597dcfd8d58SMugunthan V N int flags = 0; 1598dcfd8d58SMugunthan V N u16 vid = 0; 1599dcfd8d58SMugunthan V N 1600dcfd8d58SMugunthan V N if (!is_valid_ether_addr(addr->sa_data)) 1601dcfd8d58SMugunthan V N return -EADDRNOTAVAIL; 1602dcfd8d58SMugunthan V N 1603dcfd8d58SMugunthan V N if (priv->data.dual_emac) { 1604dcfd8d58SMugunthan V N vid = priv->slaves[priv->emac_port].port_vlan; 1605dcfd8d58SMugunthan V N flags = ALE_VLAN; 1606dcfd8d58SMugunthan V N } 1607dcfd8d58SMugunthan V N 1608dcfd8d58SMugunthan V N cpsw_ale_del_ucast(priv->ale, priv->mac_addr, priv->host_port, 1609dcfd8d58SMugunthan V N flags, vid); 1610dcfd8d58SMugunthan V N cpsw_ale_add_ucast(priv->ale, addr->sa_data, priv->host_port, 1611dcfd8d58SMugunthan V N flags, vid); 1612dcfd8d58SMugunthan V N 1613dcfd8d58SMugunthan V N memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN); 1614dcfd8d58SMugunthan V N memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN); 1615dcfd8d58SMugunthan V N for_each_slave(priv, cpsw_set_slave_mac, priv); 1616dcfd8d58SMugunthan V N 1617dcfd8d58SMugunthan V N return 0; 1618dcfd8d58SMugunthan V N } 1619dcfd8d58SMugunthan V N 1620df828598SMugunthan V N #ifdef CONFIG_NET_POLL_CONTROLLER 1621df828598SMugunthan V N static void cpsw_ndo_poll_controller(struct net_device *ndev) 1622df828598SMugunthan V N { 1623df828598SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 1624df828598SMugunthan V N 1625df828598SMugunthan V N cpsw_intr_disable(priv); 1626df828598SMugunthan V N cpdma_ctlr_int_ctrl(priv->dma, false); 1627df828598SMugunthan V N cpsw_interrupt(ndev->irq, priv); 1628df828598SMugunthan V N cpdma_ctlr_int_ctrl(priv->dma, true); 1629df828598SMugunthan V N cpsw_intr_enable(priv); 1630df828598SMugunthan V N } 1631df828598SMugunthan V N #endif 1632df828598SMugunthan V N 16333b72c2feSMugunthan V N static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv, 16343b72c2feSMugunthan V N unsigned short vid) 16353b72c2feSMugunthan V N { 16363b72c2feSMugunthan V N int ret; 16379f6bd8faSMugunthan V N int unreg_mcast_mask = 0; 16389f6bd8faSMugunthan V N u32 port_mask; 16399f6bd8faSMugunthan V N 16409f6bd8faSMugunthan V N if (priv->data.dual_emac) { 16419f6bd8faSMugunthan V N port_mask = (1 << (priv->emac_port + 1)) | ALE_PORT_HOST; 16429f6bd8faSMugunthan V N 16439f6bd8faSMugunthan V N if (priv->ndev->flags & IFF_ALLMULTI) 16449f6bd8faSMugunthan V N unreg_mcast_mask = port_mask; 16459f6bd8faSMugunthan V N } else { 16469f6bd8faSMugunthan V N port_mask = ALE_ALL_PORTS; 16471e5c4bc4SLennart Sorensen 16481e5c4bc4SLennart Sorensen if (priv->ndev->flags & IFF_ALLMULTI) 16491e5c4bc4SLennart Sorensen unreg_mcast_mask = ALE_ALL_PORTS; 16501e5c4bc4SLennart Sorensen else 16511e5c4bc4SLennart Sorensen unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2; 16529f6bd8faSMugunthan V N } 16533b72c2feSMugunthan V N 16549f6bd8faSMugunthan V N ret = cpsw_ale_add_vlan(priv->ale, vid, port_mask, 0, port_mask, 16551e5c4bc4SLennart Sorensen unreg_mcast_mask << priv->host_port); 16563b72c2feSMugunthan V N if (ret != 0) 16573b72c2feSMugunthan V N return ret; 16583b72c2feSMugunthan V N 16593b72c2feSMugunthan V N ret = cpsw_ale_add_ucast(priv->ale, priv->mac_addr, 16603b72c2feSMugunthan V N priv->host_port, ALE_VLAN, vid); 16613b72c2feSMugunthan V N if (ret != 0) 16623b72c2feSMugunthan V N goto clean_vid; 16633b72c2feSMugunthan V N 16643b72c2feSMugunthan V N ret = cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast, 16659f6bd8faSMugunthan V N port_mask, ALE_VLAN, vid, 0); 16663b72c2feSMugunthan V N if (ret != 0) 16673b72c2feSMugunthan V N goto clean_vlan_ucast; 16683b72c2feSMugunthan V N return 0; 16693b72c2feSMugunthan V N 16703b72c2feSMugunthan V N clean_vlan_ucast: 16713b72c2feSMugunthan V N cpsw_ale_del_ucast(priv->ale, priv->mac_addr, 16723b72c2feSMugunthan V N priv->host_port, ALE_VLAN, vid); 16733b72c2feSMugunthan V N clean_vid: 16743b72c2feSMugunthan V N cpsw_ale_del_vlan(priv->ale, vid, 0); 16753b72c2feSMugunthan V N return ret; 16763b72c2feSMugunthan V N } 16773b72c2feSMugunthan V N 16783b72c2feSMugunthan V N static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev, 167980d5c368SPatrick McHardy __be16 proto, u16 vid) 16803b72c2feSMugunthan V N { 16813b72c2feSMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 16823b72c2feSMugunthan V N 16833b72c2feSMugunthan V N if (vid == priv->data.default_vlan) 16843b72c2feSMugunthan V N return 0; 16853b72c2feSMugunthan V N 1686*02a54164SMugunthan V N if (priv->data.dual_emac) { 1687*02a54164SMugunthan V N /* In dual EMAC, reserved VLAN id should not be used for 1688*02a54164SMugunthan V N * creating VLAN interfaces as this can break the dual 1689*02a54164SMugunthan V N * EMAC port separation 1690*02a54164SMugunthan V N */ 1691*02a54164SMugunthan V N int i; 1692*02a54164SMugunthan V N 1693*02a54164SMugunthan V N for (i = 0; i < priv->data.slaves; i++) { 1694*02a54164SMugunthan V N if (vid == priv->slaves[i].port_vlan) 1695*02a54164SMugunthan V N return -EINVAL; 1696*02a54164SMugunthan V N } 1697*02a54164SMugunthan V N } 1698*02a54164SMugunthan V N 16993b72c2feSMugunthan V N dev_info(priv->dev, "Adding vlanid %d to vlan filter\n", vid); 17003b72c2feSMugunthan V N return cpsw_add_vlan_ale_entry(priv, vid); 17013b72c2feSMugunthan V N } 17023b72c2feSMugunthan V N 17033b72c2feSMugunthan V N static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev, 170480d5c368SPatrick McHardy __be16 proto, u16 vid) 17053b72c2feSMugunthan V N { 17063b72c2feSMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 17073b72c2feSMugunthan V N int ret; 17083b72c2feSMugunthan V N 17093b72c2feSMugunthan V N if (vid == priv->data.default_vlan) 17103b72c2feSMugunthan V N return 0; 17113b72c2feSMugunthan V N 1712*02a54164SMugunthan V N if (priv->data.dual_emac) { 1713*02a54164SMugunthan V N int i; 1714*02a54164SMugunthan V N 1715*02a54164SMugunthan V N for (i = 0; i < priv->data.slaves; i++) { 1716*02a54164SMugunthan V N if (vid == priv->slaves[i].port_vlan) 1717*02a54164SMugunthan V N return -EINVAL; 1718*02a54164SMugunthan V N } 1719*02a54164SMugunthan V N } 1720*02a54164SMugunthan V N 17213b72c2feSMugunthan V N dev_info(priv->dev, "removing vlanid %d from vlan filter\n", vid); 17223b72c2feSMugunthan V N ret = cpsw_ale_del_vlan(priv->ale, vid, 0); 17233b72c2feSMugunthan V N if (ret != 0) 17243b72c2feSMugunthan V N return ret; 17253b72c2feSMugunthan V N 17263b72c2feSMugunthan V N ret = cpsw_ale_del_ucast(priv->ale, priv->mac_addr, 17273b72c2feSMugunthan V N priv->host_port, ALE_VLAN, vid); 17283b72c2feSMugunthan V N if (ret != 0) 17293b72c2feSMugunthan V N return ret; 17303b72c2feSMugunthan V N 17313b72c2feSMugunthan V N return cpsw_ale_del_mcast(priv->ale, priv->ndev->broadcast, 17323b72c2feSMugunthan V N 0, ALE_VLAN, vid); 17333b72c2feSMugunthan V N } 17343b72c2feSMugunthan V N 1735df828598SMugunthan V N static const struct net_device_ops cpsw_netdev_ops = { 1736df828598SMugunthan V N .ndo_open = cpsw_ndo_open, 1737df828598SMugunthan V N .ndo_stop = cpsw_ndo_stop, 1738df828598SMugunthan V N .ndo_start_xmit = cpsw_ndo_start_xmit, 1739dcfd8d58SMugunthan V N .ndo_set_mac_address = cpsw_ndo_set_mac_address, 17402e5b38abSRichard Cochran .ndo_do_ioctl = cpsw_ndo_ioctl, 1741df828598SMugunthan V N .ndo_validate_addr = eth_validate_addr, 17425c473ed2SDavid S. Miller .ndo_change_mtu = eth_change_mtu, 1743df828598SMugunthan V N .ndo_tx_timeout = cpsw_ndo_tx_timeout, 17445c50a856SMugunthan V N .ndo_set_rx_mode = cpsw_ndo_set_rx_mode, 1745df828598SMugunthan V N #ifdef CONFIG_NET_POLL_CONTROLLER 1746df828598SMugunthan V N .ndo_poll_controller = cpsw_ndo_poll_controller, 1747df828598SMugunthan V N #endif 17483b72c2feSMugunthan V N .ndo_vlan_rx_add_vid = cpsw_ndo_vlan_rx_add_vid, 17493b72c2feSMugunthan V N .ndo_vlan_rx_kill_vid = cpsw_ndo_vlan_rx_kill_vid, 1750df828598SMugunthan V N }; 1751df828598SMugunthan V N 175252c4f0ecSMugunthan V N static int cpsw_get_regs_len(struct net_device *ndev) 175352c4f0ecSMugunthan V N { 175452c4f0ecSMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 175552c4f0ecSMugunthan V N 175652c4f0ecSMugunthan V N return priv->data.ale_entries * ALE_ENTRY_WORDS * sizeof(u32); 175752c4f0ecSMugunthan V N } 175852c4f0ecSMugunthan V N 175952c4f0ecSMugunthan V N static void cpsw_get_regs(struct net_device *ndev, 176052c4f0ecSMugunthan V N struct ethtool_regs *regs, void *p) 176152c4f0ecSMugunthan V N { 176252c4f0ecSMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 176352c4f0ecSMugunthan V N u32 *reg = p; 176452c4f0ecSMugunthan V N 176552c4f0ecSMugunthan V N /* update CPSW IP version */ 176652c4f0ecSMugunthan V N regs->version = priv->version; 176752c4f0ecSMugunthan V N 176852c4f0ecSMugunthan V N cpsw_ale_dump(priv->ale, reg); 176952c4f0ecSMugunthan V N } 177052c4f0ecSMugunthan V N 1771df828598SMugunthan V N static void cpsw_get_drvinfo(struct net_device *ndev, 1772df828598SMugunthan V N struct ethtool_drvinfo *info) 1773df828598SMugunthan V N { 1774df828598SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 17757826d43fSJiri Pirko 177652c4f0ecSMugunthan V N strlcpy(info->driver, "cpsw", sizeof(info->driver)); 17777826d43fSJiri Pirko strlcpy(info->version, "1.0", sizeof(info->version)); 17787826d43fSJiri Pirko strlcpy(info->bus_info, priv->pdev->name, sizeof(info->bus_info)); 177952c4f0ecSMugunthan V N info->regdump_len = cpsw_get_regs_len(ndev); 1780df828598SMugunthan V N } 1781df828598SMugunthan V N 1782df828598SMugunthan V N static u32 cpsw_get_msglevel(struct net_device *ndev) 1783df828598SMugunthan V N { 1784df828598SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 1785df828598SMugunthan V N return priv->msg_enable; 1786df828598SMugunthan V N } 1787df828598SMugunthan V N 1788df828598SMugunthan V N static void cpsw_set_msglevel(struct net_device *ndev, u32 value) 1789df828598SMugunthan V N { 1790df828598SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 1791df828598SMugunthan V N priv->msg_enable = value; 1792df828598SMugunthan V N } 1793df828598SMugunthan V N 17942e5b38abSRichard Cochran static int cpsw_get_ts_info(struct net_device *ndev, 17952e5b38abSRichard Cochran struct ethtool_ts_info *info) 17962e5b38abSRichard Cochran { 17972e5b38abSRichard Cochran #ifdef CONFIG_TI_CPTS 17982e5b38abSRichard Cochran struct cpsw_priv *priv = netdev_priv(ndev); 17992e5b38abSRichard Cochran 18002e5b38abSRichard Cochran info->so_timestamping = 18012e5b38abSRichard Cochran SOF_TIMESTAMPING_TX_HARDWARE | 18022e5b38abSRichard Cochran SOF_TIMESTAMPING_TX_SOFTWARE | 18032e5b38abSRichard Cochran SOF_TIMESTAMPING_RX_HARDWARE | 18042e5b38abSRichard Cochran SOF_TIMESTAMPING_RX_SOFTWARE | 18052e5b38abSRichard Cochran SOF_TIMESTAMPING_SOFTWARE | 18062e5b38abSRichard Cochran SOF_TIMESTAMPING_RAW_HARDWARE; 18079232b16dSMugunthan V N info->phc_index = priv->cpts->phc_index; 18082e5b38abSRichard Cochran info->tx_types = 18092e5b38abSRichard Cochran (1 << HWTSTAMP_TX_OFF) | 18102e5b38abSRichard Cochran (1 << HWTSTAMP_TX_ON); 18112e5b38abSRichard Cochran info->rx_filters = 18122e5b38abSRichard Cochran (1 << HWTSTAMP_FILTER_NONE) | 18132e5b38abSRichard Cochran (1 << HWTSTAMP_FILTER_PTP_V2_EVENT); 18142e5b38abSRichard Cochran #else 18152e5b38abSRichard Cochran info->so_timestamping = 18162e5b38abSRichard Cochran SOF_TIMESTAMPING_TX_SOFTWARE | 18172e5b38abSRichard Cochran SOF_TIMESTAMPING_RX_SOFTWARE | 18182e5b38abSRichard Cochran SOF_TIMESTAMPING_SOFTWARE; 18192e5b38abSRichard Cochran info->phc_index = -1; 18202e5b38abSRichard Cochran info->tx_types = 0; 18212e5b38abSRichard Cochran info->rx_filters = 0; 18222e5b38abSRichard Cochran #endif 18232e5b38abSRichard Cochran return 0; 18242e5b38abSRichard Cochran } 18252e5b38abSRichard Cochran 1826d3bb9c58SMugunthan V N static int cpsw_get_settings(struct net_device *ndev, 1827d3bb9c58SMugunthan V N struct ethtool_cmd *ecmd) 1828d3bb9c58SMugunthan V N { 1829d3bb9c58SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 1830d3bb9c58SMugunthan V N int slave_no = cpsw_slave_index(priv); 1831d3bb9c58SMugunthan V N 1832d3bb9c58SMugunthan V N if (priv->slaves[slave_no].phy) 1833d3bb9c58SMugunthan V N return phy_ethtool_gset(priv->slaves[slave_no].phy, ecmd); 1834d3bb9c58SMugunthan V N else 1835d3bb9c58SMugunthan V N return -EOPNOTSUPP; 1836d3bb9c58SMugunthan V N } 1837d3bb9c58SMugunthan V N 1838d3bb9c58SMugunthan V N static int cpsw_set_settings(struct net_device *ndev, struct ethtool_cmd *ecmd) 1839d3bb9c58SMugunthan V N { 1840d3bb9c58SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 1841d3bb9c58SMugunthan V N int slave_no = cpsw_slave_index(priv); 1842d3bb9c58SMugunthan V N 1843d3bb9c58SMugunthan V N if (priv->slaves[slave_no].phy) 1844d3bb9c58SMugunthan V N return phy_ethtool_sset(priv->slaves[slave_no].phy, ecmd); 1845d3bb9c58SMugunthan V N else 1846d3bb9c58SMugunthan V N return -EOPNOTSUPP; 1847d3bb9c58SMugunthan V N } 1848d3bb9c58SMugunthan V N 1849d8a64420SMatus Ujhelyi static void cpsw_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol) 1850d8a64420SMatus Ujhelyi { 1851d8a64420SMatus Ujhelyi struct cpsw_priv *priv = netdev_priv(ndev); 1852d8a64420SMatus Ujhelyi int slave_no = cpsw_slave_index(priv); 1853d8a64420SMatus Ujhelyi 1854d8a64420SMatus Ujhelyi wol->supported = 0; 1855d8a64420SMatus Ujhelyi wol->wolopts = 0; 1856d8a64420SMatus Ujhelyi 1857d8a64420SMatus Ujhelyi if (priv->slaves[slave_no].phy) 1858d8a64420SMatus Ujhelyi phy_ethtool_get_wol(priv->slaves[slave_no].phy, wol); 1859d8a64420SMatus Ujhelyi } 1860d8a64420SMatus Ujhelyi 1861d8a64420SMatus Ujhelyi static int cpsw_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol) 1862d8a64420SMatus Ujhelyi { 1863d8a64420SMatus Ujhelyi struct cpsw_priv *priv = netdev_priv(ndev); 1864d8a64420SMatus Ujhelyi int slave_no = cpsw_slave_index(priv); 1865d8a64420SMatus Ujhelyi 1866d8a64420SMatus Ujhelyi if (priv->slaves[slave_no].phy) 1867d8a64420SMatus Ujhelyi return phy_ethtool_set_wol(priv->slaves[slave_no].phy, wol); 1868d8a64420SMatus Ujhelyi else 1869d8a64420SMatus Ujhelyi return -EOPNOTSUPP; 1870d8a64420SMatus Ujhelyi } 1871d8a64420SMatus Ujhelyi 18721923d6e4SMugunthan V N static void cpsw_get_pauseparam(struct net_device *ndev, 18731923d6e4SMugunthan V N struct ethtool_pauseparam *pause) 18741923d6e4SMugunthan V N { 18751923d6e4SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 18761923d6e4SMugunthan V N 18771923d6e4SMugunthan V N pause->autoneg = AUTONEG_DISABLE; 18781923d6e4SMugunthan V N pause->rx_pause = priv->rx_pause ? true : false; 18791923d6e4SMugunthan V N pause->tx_pause = priv->tx_pause ? true : false; 18801923d6e4SMugunthan V N } 18811923d6e4SMugunthan V N 18821923d6e4SMugunthan V N static int cpsw_set_pauseparam(struct net_device *ndev, 18831923d6e4SMugunthan V N struct ethtool_pauseparam *pause) 18841923d6e4SMugunthan V N { 18851923d6e4SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 18861923d6e4SMugunthan V N bool link; 18871923d6e4SMugunthan V N 18881923d6e4SMugunthan V N priv->rx_pause = pause->rx_pause ? true : false; 18891923d6e4SMugunthan V N priv->tx_pause = pause->tx_pause ? true : false; 18901923d6e4SMugunthan V N 18911923d6e4SMugunthan V N for_each_slave(priv, _cpsw_adjust_link, priv, &link); 18921923d6e4SMugunthan V N 18931923d6e4SMugunthan V N return 0; 18941923d6e4SMugunthan V N } 18951923d6e4SMugunthan V N 1896df828598SMugunthan V N static const struct ethtool_ops cpsw_ethtool_ops = { 1897df828598SMugunthan V N .get_drvinfo = cpsw_get_drvinfo, 1898df828598SMugunthan V N .get_msglevel = cpsw_get_msglevel, 1899df828598SMugunthan V N .set_msglevel = cpsw_set_msglevel, 1900df828598SMugunthan V N .get_link = ethtool_op_get_link, 19012e5b38abSRichard Cochran .get_ts_info = cpsw_get_ts_info, 1902d3bb9c58SMugunthan V N .get_settings = cpsw_get_settings, 1903d3bb9c58SMugunthan V N .set_settings = cpsw_set_settings, 1904ff5b8ef2SMugunthan V N .get_coalesce = cpsw_get_coalesce, 1905ff5b8ef2SMugunthan V N .set_coalesce = cpsw_set_coalesce, 1906d9718546SMugunthan V N .get_sset_count = cpsw_get_sset_count, 1907d9718546SMugunthan V N .get_strings = cpsw_get_strings, 1908d9718546SMugunthan V N .get_ethtool_stats = cpsw_get_ethtool_stats, 19091923d6e4SMugunthan V N .get_pauseparam = cpsw_get_pauseparam, 19101923d6e4SMugunthan V N .set_pauseparam = cpsw_set_pauseparam, 1911d8a64420SMatus Ujhelyi .get_wol = cpsw_get_wol, 1912d8a64420SMatus Ujhelyi .set_wol = cpsw_set_wol, 191352c4f0ecSMugunthan V N .get_regs_len = cpsw_get_regs_len, 191452c4f0ecSMugunthan V N .get_regs = cpsw_get_regs, 1915df828598SMugunthan V N }; 1916df828598SMugunthan V N 1917549985eeSRichard Cochran static void cpsw_slave_init(struct cpsw_slave *slave, struct cpsw_priv *priv, 1918549985eeSRichard Cochran u32 slave_reg_ofs, u32 sliver_reg_ofs) 1919df828598SMugunthan V N { 1920df828598SMugunthan V N void __iomem *regs = priv->regs; 1921df828598SMugunthan V N int slave_num = slave->slave_num; 1922df828598SMugunthan V N struct cpsw_slave_data *data = priv->data.slave_data + slave_num; 1923df828598SMugunthan V N 1924df828598SMugunthan V N slave->data = data; 1925549985eeSRichard Cochran slave->regs = regs + slave_reg_ofs; 1926549985eeSRichard Cochran slave->sliver = regs + sliver_reg_ofs; 1927d9ba8f9eSMugunthan V N slave->port_vlan = data->dual_emac_res_vlan; 1928df828598SMugunthan V N } 1929df828598SMugunthan V N 19300ba517b1SMarkus Pargmann #define AM33XX_CTRL_MAC_LO_REG(id) (0x630 + 0x8 * id) 19310ba517b1SMarkus Pargmann #define AM33XX_CTRL_MAC_HI_REG(id) (0x630 + 0x8 * id + 0x4) 19320ba517b1SMarkus Pargmann 19330ba517b1SMarkus Pargmann static int cpsw_am33xx_cm_get_macid(struct device *dev, int slave, 19340ba517b1SMarkus Pargmann u8 *mac_addr) 19350ba517b1SMarkus Pargmann { 19360ba517b1SMarkus Pargmann u32 macid_lo; 19370ba517b1SMarkus Pargmann u32 macid_hi; 19380ba517b1SMarkus Pargmann struct regmap *syscon; 19390ba517b1SMarkus Pargmann 19400ba517b1SMarkus Pargmann syscon = syscon_regmap_lookup_by_phandle(dev->of_node, "syscon"); 19410ba517b1SMarkus Pargmann if (IS_ERR(syscon)) { 19420ba517b1SMarkus Pargmann if (PTR_ERR(syscon) == -ENODEV) 19430ba517b1SMarkus Pargmann return 0; 19440ba517b1SMarkus Pargmann return PTR_ERR(syscon); 19450ba517b1SMarkus Pargmann } 19460ba517b1SMarkus Pargmann 19470ba517b1SMarkus Pargmann regmap_read(syscon, AM33XX_CTRL_MAC_LO_REG(slave), &macid_lo); 19480ba517b1SMarkus Pargmann regmap_read(syscon, AM33XX_CTRL_MAC_HI_REG(slave), &macid_hi); 19490ba517b1SMarkus Pargmann 19500ba517b1SMarkus Pargmann mac_addr[5] = (macid_lo >> 8) & 0xff; 19510ba517b1SMarkus Pargmann mac_addr[4] = macid_lo & 0xff; 19520ba517b1SMarkus Pargmann mac_addr[3] = (macid_hi >> 24) & 0xff; 19530ba517b1SMarkus Pargmann mac_addr[2] = (macid_hi >> 16) & 0xff; 19540ba517b1SMarkus Pargmann mac_addr[1] = (macid_hi >> 8) & 0xff; 19550ba517b1SMarkus Pargmann mac_addr[0] = macid_hi & 0xff; 19560ba517b1SMarkus Pargmann 19570ba517b1SMarkus Pargmann return 0; 19580ba517b1SMarkus Pargmann } 19590ba517b1SMarkus Pargmann 19602eb32b0aSMugunthan V N static int cpsw_probe_dt(struct cpsw_platform_data *data, 19612eb32b0aSMugunthan V N struct platform_device *pdev) 19622eb32b0aSMugunthan V N { 19632eb32b0aSMugunthan V N struct device_node *node = pdev->dev.of_node; 19642eb32b0aSMugunthan V N struct device_node *slave_node; 19652eb32b0aSMugunthan V N int i = 0, ret; 19662eb32b0aSMugunthan V N u32 prop; 19672eb32b0aSMugunthan V N 19682eb32b0aSMugunthan V N if (!node) 19692eb32b0aSMugunthan V N return -EINVAL; 19702eb32b0aSMugunthan V N 19712eb32b0aSMugunthan V N if (of_property_read_u32(node, "slaves", &prop)) { 197288c99ff6SGeorge Cherian dev_err(&pdev->dev, "Missing slaves property in the DT.\n"); 19732eb32b0aSMugunthan V N return -EINVAL; 19742eb32b0aSMugunthan V N } 19752eb32b0aSMugunthan V N data->slaves = prop; 19762eb32b0aSMugunthan V N 1977e86ac13bSMugunthan V N if (of_property_read_u32(node, "active_slave", &prop)) { 197888c99ff6SGeorge Cherian dev_err(&pdev->dev, "Missing active_slave property in the DT.\n"); 1979aa1a15e2SDaniel Mack return -EINVAL; 198078ca0b28SRichard Cochran } 1981e86ac13bSMugunthan V N data->active_slave = prop; 198278ca0b28SRichard Cochran 198300ab94eeSRichard Cochran if (of_property_read_u32(node, "cpts_clock_mult", &prop)) { 198488c99ff6SGeorge Cherian dev_err(&pdev->dev, "Missing cpts_clock_mult property in the DT.\n"); 1985aa1a15e2SDaniel Mack return -EINVAL; 198600ab94eeSRichard Cochran } 198700ab94eeSRichard Cochran data->cpts_clock_mult = prop; 198800ab94eeSRichard Cochran 198900ab94eeSRichard Cochran if (of_property_read_u32(node, "cpts_clock_shift", &prop)) { 199088c99ff6SGeorge Cherian dev_err(&pdev->dev, "Missing cpts_clock_shift property in the DT.\n"); 1991aa1a15e2SDaniel Mack return -EINVAL; 199200ab94eeSRichard Cochran } 199300ab94eeSRichard Cochran data->cpts_clock_shift = prop; 199400ab94eeSRichard Cochran 1995aa1a15e2SDaniel Mack data->slave_data = devm_kzalloc(&pdev->dev, data->slaves 1996aa1a15e2SDaniel Mack * sizeof(struct cpsw_slave_data), 1997b2adaca9SJoe Perches GFP_KERNEL); 1998b2adaca9SJoe Perches if (!data->slave_data) 1999aa1a15e2SDaniel Mack return -ENOMEM; 20002eb32b0aSMugunthan V N 20012eb32b0aSMugunthan V N if (of_property_read_u32(node, "cpdma_channels", &prop)) { 200288c99ff6SGeorge Cherian dev_err(&pdev->dev, "Missing cpdma_channels property in the DT.\n"); 2003aa1a15e2SDaniel Mack return -EINVAL; 20042eb32b0aSMugunthan V N } 20052eb32b0aSMugunthan V N data->channels = prop; 20062eb32b0aSMugunthan V N 20072eb32b0aSMugunthan V N if (of_property_read_u32(node, "ale_entries", &prop)) { 200888c99ff6SGeorge Cherian dev_err(&pdev->dev, "Missing ale_entries property in the DT.\n"); 2009aa1a15e2SDaniel Mack return -EINVAL; 20102eb32b0aSMugunthan V N } 20112eb32b0aSMugunthan V N data->ale_entries = prop; 20122eb32b0aSMugunthan V N 20132eb32b0aSMugunthan V N if (of_property_read_u32(node, "bd_ram_size", &prop)) { 201488c99ff6SGeorge Cherian dev_err(&pdev->dev, "Missing bd_ram_size property in the DT.\n"); 2015aa1a15e2SDaniel Mack return -EINVAL; 20162eb32b0aSMugunthan V N } 20172eb32b0aSMugunthan V N data->bd_ram_size = prop; 20182eb32b0aSMugunthan V N 20192eb32b0aSMugunthan V N if (of_property_read_u32(node, "rx_descs", &prop)) { 202088c99ff6SGeorge Cherian dev_err(&pdev->dev, "Missing rx_descs property in the DT.\n"); 2021aa1a15e2SDaniel Mack return -EINVAL; 20222eb32b0aSMugunthan V N } 20232eb32b0aSMugunthan V N data->rx_descs = prop; 20242eb32b0aSMugunthan V N 20252eb32b0aSMugunthan V N if (of_property_read_u32(node, "mac_control", &prop)) { 202688c99ff6SGeorge Cherian dev_err(&pdev->dev, "Missing mac_control property in the DT.\n"); 2027aa1a15e2SDaniel Mack return -EINVAL; 20282eb32b0aSMugunthan V N } 20292eb32b0aSMugunthan V N data->mac_control = prop; 20302eb32b0aSMugunthan V N 2031281abd96SMarkus Pargmann if (of_property_read_bool(node, "dual_emac")) 2032281abd96SMarkus Pargmann data->dual_emac = 1; 2033d9ba8f9eSMugunthan V N 20341fb19aa7SVaibhav Hiremath /* 20351fb19aa7SVaibhav Hiremath * Populate all the child nodes here... 20361fb19aa7SVaibhav Hiremath */ 20371fb19aa7SVaibhav Hiremath ret = of_platform_populate(node, NULL, NULL, &pdev->dev); 20381fb19aa7SVaibhav Hiremath /* We do not want to force this, as in some cases may not have child */ 20391fb19aa7SVaibhav Hiremath if (ret) 204088c99ff6SGeorge Cherian dev_warn(&pdev->dev, "Doesn't have any child node\n"); 20411fb19aa7SVaibhav Hiremath 2042f468b10eSMarkus Pargmann for_each_child_of_node(node, slave_node) { 2043549985eeSRichard Cochran struct cpsw_slave_data *slave_data = data->slave_data + i; 2044549985eeSRichard Cochran const void *mac_addr = NULL; 2045549985eeSRichard Cochran u32 phyid; 2046549985eeSRichard Cochran int lenp; 2047549985eeSRichard Cochran const __be32 *parp; 2048549985eeSRichard Cochran struct device_node *mdio_node; 2049549985eeSRichard Cochran struct platform_device *mdio; 2050549985eeSRichard Cochran 2051f468b10eSMarkus Pargmann /* This is no slave child node, continue */ 2052f468b10eSMarkus Pargmann if (strcmp(slave_node->name, "slave")) 2053f468b10eSMarkus Pargmann continue; 2054f468b10eSMarkus Pargmann 2055549985eeSRichard Cochran parp = of_get_property(slave_node, "phy_id", &lenp); 2056ce16294fSLothar Waßmann if ((parp == NULL) || (lenp != (sizeof(void *) * 2))) { 205788c99ff6SGeorge Cherian dev_err(&pdev->dev, "Missing slave[%d] phy_id property\n", i); 205847276fccSMugunthan V N goto no_phy_slave; 2059549985eeSRichard Cochran } 2060549985eeSRichard Cochran mdio_node = of_find_node_by_phandle(be32_to_cpup(parp)); 2061549985eeSRichard Cochran phyid = be32_to_cpup(parp+1); 2062549985eeSRichard Cochran mdio = of_find_device_by_node(mdio_node); 206360e71ab5SJohan Hovold of_node_put(mdio_node); 20646954cc1fSJohan Hovold if (!mdio) { 206556fdb2e0SMarkus Pargmann dev_err(&pdev->dev, "Missing mdio platform device\n"); 20666954cc1fSJohan Hovold return -EINVAL; 20676954cc1fSJohan Hovold } 2068549985eeSRichard Cochran snprintf(slave_data->phy_id, sizeof(slave_data->phy_id), 2069549985eeSRichard Cochran PHY_ID_FMT, mdio->name, phyid); 2070549985eeSRichard Cochran 207147276fccSMugunthan V N slave_data->phy_if = of_get_phy_mode(slave_node); 207247276fccSMugunthan V N if (slave_data->phy_if < 0) { 207347276fccSMugunthan V N dev_err(&pdev->dev, "Missing or malformed slave[%d] phy-mode property\n", 207447276fccSMugunthan V N i); 207547276fccSMugunthan V N return slave_data->phy_if; 207647276fccSMugunthan V N } 207747276fccSMugunthan V N 207847276fccSMugunthan V N no_phy_slave: 2079549985eeSRichard Cochran mac_addr = of_get_mac_address(slave_node); 20800ba517b1SMarkus Pargmann if (mac_addr) { 2081549985eeSRichard Cochran memcpy(slave_data->mac_addr, mac_addr, ETH_ALEN); 20820ba517b1SMarkus Pargmann } else { 20830ba517b1SMarkus Pargmann if (of_machine_is_compatible("ti,am33xx")) { 20840ba517b1SMarkus Pargmann ret = cpsw_am33xx_cm_get_macid(&pdev->dev, i, 20850ba517b1SMarkus Pargmann slave_data->mac_addr); 20860ba517b1SMarkus Pargmann if (ret) 20870ba517b1SMarkus Pargmann return ret; 20880ba517b1SMarkus Pargmann } 20890ba517b1SMarkus Pargmann } 2090d9ba8f9eSMugunthan V N if (data->dual_emac) { 209191c4166cSMugunthan V N if (of_property_read_u32(slave_node, "dual_emac_res_vlan", 2092d9ba8f9eSMugunthan V N &prop)) { 209388c99ff6SGeorge Cherian dev_err(&pdev->dev, "Missing dual_emac_res_vlan in DT.\n"); 2094d9ba8f9eSMugunthan V N slave_data->dual_emac_res_vlan = i+1; 209588c99ff6SGeorge Cherian dev_err(&pdev->dev, "Using %d as Reserved VLAN for %d slave\n", 2096d9ba8f9eSMugunthan V N slave_data->dual_emac_res_vlan, i); 2097d9ba8f9eSMugunthan V N } else { 2098d9ba8f9eSMugunthan V N slave_data->dual_emac_res_vlan = prop; 2099d9ba8f9eSMugunthan V N } 2100d9ba8f9eSMugunthan V N } 2101d9ba8f9eSMugunthan V N 2102549985eeSRichard Cochran i++; 21033a27bfacSMugunthan V N if (i == data->slaves) 21043a27bfacSMugunthan V N break; 2105549985eeSRichard Cochran } 2106549985eeSRichard Cochran 21072eb32b0aSMugunthan V N return 0; 21082eb32b0aSMugunthan V N } 21092eb32b0aSMugunthan V N 2110d9ba8f9eSMugunthan V N static int cpsw_probe_dual_emac(struct platform_device *pdev, 2111d9ba8f9eSMugunthan V N struct cpsw_priv *priv) 2112d9ba8f9eSMugunthan V N { 2113d9ba8f9eSMugunthan V N struct cpsw_platform_data *data = &priv->data; 2114d9ba8f9eSMugunthan V N struct net_device *ndev; 2115d9ba8f9eSMugunthan V N struct cpsw_priv *priv_sl2; 2116d9ba8f9eSMugunthan V N int ret = 0, i; 2117d9ba8f9eSMugunthan V N 2118d9ba8f9eSMugunthan V N ndev = alloc_etherdev(sizeof(struct cpsw_priv)); 2119d9ba8f9eSMugunthan V N if (!ndev) { 212088c99ff6SGeorge Cherian dev_err(&pdev->dev, "cpsw: error allocating net_device\n"); 2121d9ba8f9eSMugunthan V N return -ENOMEM; 2122d9ba8f9eSMugunthan V N } 2123d9ba8f9eSMugunthan V N 2124d9ba8f9eSMugunthan V N priv_sl2 = netdev_priv(ndev); 2125d9ba8f9eSMugunthan V N spin_lock_init(&priv_sl2->lock); 2126d9ba8f9eSMugunthan V N priv_sl2->data = *data; 2127d9ba8f9eSMugunthan V N priv_sl2->pdev = pdev; 2128d9ba8f9eSMugunthan V N priv_sl2->ndev = ndev; 2129d9ba8f9eSMugunthan V N priv_sl2->dev = &ndev->dev; 2130d9ba8f9eSMugunthan V N priv_sl2->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG); 2131d9ba8f9eSMugunthan V N priv_sl2->rx_packet_max = max(rx_packet_max, 128); 2132d9ba8f9eSMugunthan V N 2133d9ba8f9eSMugunthan V N if (is_valid_ether_addr(data->slave_data[1].mac_addr)) { 2134d9ba8f9eSMugunthan V N memcpy(priv_sl2->mac_addr, data->slave_data[1].mac_addr, 2135d9ba8f9eSMugunthan V N ETH_ALEN); 213688c99ff6SGeorge Cherian dev_info(&pdev->dev, "cpsw: Detected MACID = %pM\n", priv_sl2->mac_addr); 2137d9ba8f9eSMugunthan V N } else { 2138d9ba8f9eSMugunthan V N random_ether_addr(priv_sl2->mac_addr); 213988c99ff6SGeorge Cherian dev_info(&pdev->dev, "cpsw: Random MACID = %pM\n", priv_sl2->mac_addr); 2140d9ba8f9eSMugunthan V N } 2141d9ba8f9eSMugunthan V N memcpy(ndev->dev_addr, priv_sl2->mac_addr, ETH_ALEN); 2142d9ba8f9eSMugunthan V N 2143d9ba8f9eSMugunthan V N priv_sl2->slaves = priv->slaves; 2144d9ba8f9eSMugunthan V N priv_sl2->clk = priv->clk; 2145d9ba8f9eSMugunthan V N 2146ff5b8ef2SMugunthan V N priv_sl2->coal_intvl = 0; 2147ff5b8ef2SMugunthan V N priv_sl2->bus_freq_mhz = priv->bus_freq_mhz; 2148ff5b8ef2SMugunthan V N 2149d9ba8f9eSMugunthan V N priv_sl2->regs = priv->regs; 2150d9ba8f9eSMugunthan V N priv_sl2->host_port = priv->host_port; 2151d9ba8f9eSMugunthan V N priv_sl2->host_port_regs = priv->host_port_regs; 2152d9ba8f9eSMugunthan V N priv_sl2->wr_regs = priv->wr_regs; 2153d9718546SMugunthan V N priv_sl2->hw_stats = priv->hw_stats; 2154d9ba8f9eSMugunthan V N priv_sl2->dma = priv->dma; 2155d9ba8f9eSMugunthan V N priv_sl2->txch = priv->txch; 2156d9ba8f9eSMugunthan V N priv_sl2->rxch = priv->rxch; 2157d9ba8f9eSMugunthan V N priv_sl2->ale = priv->ale; 2158d9ba8f9eSMugunthan V N priv_sl2->emac_port = 1; 2159d9ba8f9eSMugunthan V N priv->slaves[1].ndev = ndev; 2160d9ba8f9eSMugunthan V N priv_sl2->cpts = priv->cpts; 2161d9ba8f9eSMugunthan V N priv_sl2->version = priv->version; 2162d9ba8f9eSMugunthan V N 2163d9ba8f9eSMugunthan V N for (i = 0; i < priv->num_irqs; i++) { 2164d9ba8f9eSMugunthan V N priv_sl2->irqs_table[i] = priv->irqs_table[i]; 2165d9ba8f9eSMugunthan V N priv_sl2->num_irqs = priv->num_irqs; 2166d9ba8f9eSMugunthan V N } 2167f646968fSPatrick McHardy ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER; 2168d9ba8f9eSMugunthan V N 2169d9ba8f9eSMugunthan V N ndev->netdev_ops = &cpsw_netdev_ops; 21707ad24ea4SWilfried Klaebe ndev->ethtool_ops = &cpsw_ethtool_ops; 2171d9ba8f9eSMugunthan V N netif_napi_add(ndev, &priv_sl2->napi, cpsw_poll, CPSW_POLL_WEIGHT); 2172d9ba8f9eSMugunthan V N 2173d9ba8f9eSMugunthan V N /* register the network device */ 2174d9ba8f9eSMugunthan V N SET_NETDEV_DEV(ndev, &pdev->dev); 2175d9ba8f9eSMugunthan V N ret = register_netdev(ndev); 2176d9ba8f9eSMugunthan V N if (ret) { 217788c99ff6SGeorge Cherian dev_err(&pdev->dev, "cpsw: error registering net device\n"); 2178d9ba8f9eSMugunthan V N free_netdev(ndev); 2179d9ba8f9eSMugunthan V N ret = -ENODEV; 2180d9ba8f9eSMugunthan V N } 2181d9ba8f9eSMugunthan V N 2182d9ba8f9eSMugunthan V N return ret; 2183d9ba8f9eSMugunthan V N } 2184d9ba8f9eSMugunthan V N 2185663e12e6SBill Pemberton static int cpsw_probe(struct platform_device *pdev) 2186df828598SMugunthan V N { 2187d1bd9acfSSebastian Siewior struct cpsw_platform_data *data; 2188df828598SMugunthan V N struct net_device *ndev; 2189df828598SMugunthan V N struct cpsw_priv *priv; 2190df828598SMugunthan V N struct cpdma_params dma_params; 2191df828598SMugunthan V N struct cpsw_ale_params ale_params; 2192aa1a15e2SDaniel Mack void __iomem *ss_regs; 2193aa1a15e2SDaniel Mack struct resource *res, *ss_res; 2194549985eeSRichard Cochran u32 slave_offset, sliver_offset, slave_size; 2195df828598SMugunthan V N int ret = 0, i, k = 0; 2196df828598SMugunthan V N 2197df828598SMugunthan V N ndev = alloc_etherdev(sizeof(struct cpsw_priv)); 2198df828598SMugunthan V N if (!ndev) { 219988c99ff6SGeorge Cherian dev_err(&pdev->dev, "error allocating net_device\n"); 2200df828598SMugunthan V N return -ENOMEM; 2201df828598SMugunthan V N } 2202df828598SMugunthan V N 2203df828598SMugunthan V N platform_set_drvdata(pdev, ndev); 2204df828598SMugunthan V N priv = netdev_priv(ndev); 2205df828598SMugunthan V N spin_lock_init(&priv->lock); 2206df828598SMugunthan V N priv->pdev = pdev; 2207df828598SMugunthan V N priv->ndev = ndev; 2208df828598SMugunthan V N priv->dev = &ndev->dev; 2209df828598SMugunthan V N priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG); 2210df828598SMugunthan V N priv->rx_packet_max = max(rx_packet_max, 128); 22119232b16dSMugunthan V N priv->cpts = devm_kzalloc(&pdev->dev, sizeof(struct cpts), GFP_KERNEL); 22127dcf313aSMugunthan V N priv->irq_enabled = true; 2213ab8e99d2SSebastian Siewior if (!priv->cpts) { 221488c99ff6SGeorge Cherian dev_err(&pdev->dev, "error allocating cpts\n"); 22154d507dffSMarkus Pargmann ret = -ENOMEM; 22169232b16dSMugunthan V N goto clean_ndev_ret; 22179232b16dSMugunthan V N } 2218df828598SMugunthan V N 22191fb19aa7SVaibhav Hiremath /* 22201fb19aa7SVaibhav Hiremath * This may be required here for child devices. 22211fb19aa7SVaibhav Hiremath */ 22221fb19aa7SVaibhav Hiremath pm_runtime_enable(&pdev->dev); 22231fb19aa7SVaibhav Hiremath 2224739683b4SMugunthan V N /* Select default pin state */ 2225739683b4SMugunthan V N pinctrl_pm_select_default_state(&pdev->dev); 2226739683b4SMugunthan V N 22272eb32b0aSMugunthan V N if (cpsw_probe_dt(&priv->data, pdev)) { 222888c99ff6SGeorge Cherian dev_err(&pdev->dev, "cpsw: platform data missing\n"); 22292eb32b0aSMugunthan V N ret = -ENODEV; 2230aa1a15e2SDaniel Mack goto clean_runtime_disable_ret; 22312eb32b0aSMugunthan V N } 22322eb32b0aSMugunthan V N data = &priv->data; 22332eb32b0aSMugunthan V N 2234df828598SMugunthan V N if (is_valid_ether_addr(data->slave_data[0].mac_addr)) { 2235df828598SMugunthan V N memcpy(priv->mac_addr, data->slave_data[0].mac_addr, ETH_ALEN); 223688c99ff6SGeorge Cherian dev_info(&pdev->dev, "Detected MACID = %pM\n", priv->mac_addr); 2237df828598SMugunthan V N } else { 22387efd26d0SJoe Perches eth_random_addr(priv->mac_addr); 223988c99ff6SGeorge Cherian dev_info(&pdev->dev, "Random MACID = %pM\n", priv->mac_addr); 2240df828598SMugunthan V N } 2241df828598SMugunthan V N 2242df828598SMugunthan V N memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN); 2243df828598SMugunthan V N 2244aa1a15e2SDaniel Mack priv->slaves = devm_kzalloc(&pdev->dev, 2245aa1a15e2SDaniel Mack sizeof(struct cpsw_slave) * data->slaves, 2246df828598SMugunthan V N GFP_KERNEL); 2247df828598SMugunthan V N if (!priv->slaves) { 2248aa1a15e2SDaniel Mack ret = -ENOMEM; 2249aa1a15e2SDaniel Mack goto clean_runtime_disable_ret; 2250df828598SMugunthan V N } 2251df828598SMugunthan V N for (i = 0; i < data->slaves; i++) 2252df828598SMugunthan V N priv->slaves[i].slave_num = i; 2253df828598SMugunthan V N 2254d9ba8f9eSMugunthan V N priv->slaves[0].ndev = ndev; 2255d9ba8f9eSMugunthan V N priv->emac_port = 0; 2256d9ba8f9eSMugunthan V N 2257aa1a15e2SDaniel Mack priv->clk = devm_clk_get(&pdev->dev, "fck"); 2258df828598SMugunthan V N if (IS_ERR(priv->clk)) { 2259aa1a15e2SDaniel Mack dev_err(priv->dev, "fck is not found\n"); 2260f150bd7fSMugunthan V N ret = -ENODEV; 2261aa1a15e2SDaniel Mack goto clean_runtime_disable_ret; 2262df828598SMugunthan V N } 2263ff5b8ef2SMugunthan V N priv->coal_intvl = 0; 2264ff5b8ef2SMugunthan V N priv->bus_freq_mhz = clk_get_rate(priv->clk) / 1000000; 2265df828598SMugunthan V N 2266aa1a15e2SDaniel Mack ss_res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 2267aa1a15e2SDaniel Mack ss_regs = devm_ioremap_resource(&pdev->dev, ss_res); 2268aa1a15e2SDaniel Mack if (IS_ERR(ss_regs)) { 2269aa1a15e2SDaniel Mack ret = PTR_ERR(ss_regs); 2270aa1a15e2SDaniel Mack goto clean_runtime_disable_ret; 2271df828598SMugunthan V N } 2272549985eeSRichard Cochran priv->regs = ss_regs; 2273549985eeSRichard Cochran priv->host_port = HOST_PORT_NUM; 2274df828598SMugunthan V N 2275f280e89aSMugunthan V N /* Need to enable clocks with runtime PM api to access module 2276f280e89aSMugunthan V N * registers 2277f280e89aSMugunthan V N */ 2278f280e89aSMugunthan V N pm_runtime_get_sync(&pdev->dev); 2279f280e89aSMugunthan V N priv->version = readl(&priv->regs->id_ver); 2280f280e89aSMugunthan V N pm_runtime_put_sync(&pdev->dev); 2281f280e89aSMugunthan V N 2282aa1a15e2SDaniel Mack res = platform_get_resource(pdev, IORESOURCE_MEM, 1); 2283aa1a15e2SDaniel Mack priv->wr_regs = devm_ioremap_resource(&pdev->dev, res); 2284aa1a15e2SDaniel Mack if (IS_ERR(priv->wr_regs)) { 2285aa1a15e2SDaniel Mack ret = PTR_ERR(priv->wr_regs); 2286aa1a15e2SDaniel Mack goto clean_runtime_disable_ret; 2287df828598SMugunthan V N } 2288df828598SMugunthan V N 2289df828598SMugunthan V N memset(&dma_params, 0, sizeof(dma_params)); 2290549985eeSRichard Cochran memset(&ale_params, 0, sizeof(ale_params)); 2291549985eeSRichard Cochran 2292549985eeSRichard Cochran switch (priv->version) { 2293549985eeSRichard Cochran case CPSW_VERSION_1: 2294549985eeSRichard Cochran priv->host_port_regs = ss_regs + CPSW1_HOST_PORT_OFFSET; 22959232b16dSMugunthan V N priv->cpts->reg = ss_regs + CPSW1_CPTS_OFFSET; 2296d9718546SMugunthan V N priv->hw_stats = ss_regs + CPSW1_HW_STATS; 2297549985eeSRichard Cochran dma_params.dmaregs = ss_regs + CPSW1_CPDMA_OFFSET; 2298549985eeSRichard Cochran dma_params.txhdp = ss_regs + CPSW1_STATERAM_OFFSET; 2299549985eeSRichard Cochran ale_params.ale_regs = ss_regs + CPSW1_ALE_OFFSET; 2300549985eeSRichard Cochran slave_offset = CPSW1_SLAVE_OFFSET; 2301549985eeSRichard Cochran slave_size = CPSW1_SLAVE_SIZE; 2302549985eeSRichard Cochran sliver_offset = CPSW1_SLIVER_OFFSET; 2303549985eeSRichard Cochran dma_params.desc_mem_phys = 0; 2304549985eeSRichard Cochran break; 2305549985eeSRichard Cochran case CPSW_VERSION_2: 2306c193f365SMugunthan V N case CPSW_VERSION_3: 2307926489beSMugunthan V N case CPSW_VERSION_4: 2308549985eeSRichard Cochran priv->host_port_regs = ss_regs + CPSW2_HOST_PORT_OFFSET; 23099232b16dSMugunthan V N priv->cpts->reg = ss_regs + CPSW2_CPTS_OFFSET; 2310d9718546SMugunthan V N priv->hw_stats = ss_regs + CPSW2_HW_STATS; 2311549985eeSRichard Cochran dma_params.dmaregs = ss_regs + CPSW2_CPDMA_OFFSET; 2312549985eeSRichard Cochran dma_params.txhdp = ss_regs + CPSW2_STATERAM_OFFSET; 2313549985eeSRichard Cochran ale_params.ale_regs = ss_regs + CPSW2_ALE_OFFSET; 2314549985eeSRichard Cochran slave_offset = CPSW2_SLAVE_OFFSET; 2315549985eeSRichard Cochran slave_size = CPSW2_SLAVE_SIZE; 2316549985eeSRichard Cochran sliver_offset = CPSW2_SLIVER_OFFSET; 2317549985eeSRichard Cochran dma_params.desc_mem_phys = 2318aa1a15e2SDaniel Mack (u32 __force) ss_res->start + CPSW2_BD_OFFSET; 2319549985eeSRichard Cochran break; 2320549985eeSRichard Cochran default: 2321549985eeSRichard Cochran dev_err(priv->dev, "unknown version 0x%08x\n", priv->version); 2322549985eeSRichard Cochran ret = -ENODEV; 2323aa1a15e2SDaniel Mack goto clean_runtime_disable_ret; 2324549985eeSRichard Cochran } 2325549985eeSRichard Cochran for (i = 0; i < priv->data.slaves; i++) { 2326549985eeSRichard Cochran struct cpsw_slave *slave = &priv->slaves[i]; 2327549985eeSRichard Cochran cpsw_slave_init(slave, priv, slave_offset, sliver_offset); 2328549985eeSRichard Cochran slave_offset += slave_size; 2329549985eeSRichard Cochran sliver_offset += SLIVER_SIZE; 2330549985eeSRichard Cochran } 2331549985eeSRichard Cochran 2332df828598SMugunthan V N dma_params.dev = &pdev->dev; 2333549985eeSRichard Cochran dma_params.rxthresh = dma_params.dmaregs + CPDMA_RXTHRESH; 2334549985eeSRichard Cochran dma_params.rxfree = dma_params.dmaregs + CPDMA_RXFREE; 2335549985eeSRichard Cochran dma_params.rxhdp = dma_params.txhdp + CPDMA_RXHDP; 2336549985eeSRichard Cochran dma_params.txcp = dma_params.txhdp + CPDMA_TXCP; 2337549985eeSRichard Cochran dma_params.rxcp = dma_params.txhdp + CPDMA_RXCP; 2338df828598SMugunthan V N 2339df828598SMugunthan V N dma_params.num_chan = data->channels; 2340df828598SMugunthan V N dma_params.has_soft_reset = true; 2341df828598SMugunthan V N dma_params.min_packet_size = CPSW_MIN_PACKET_SIZE; 2342df828598SMugunthan V N dma_params.desc_mem_size = data->bd_ram_size; 2343df828598SMugunthan V N dma_params.desc_align = 16; 2344df828598SMugunthan V N dma_params.has_ext_regs = true; 2345549985eeSRichard Cochran dma_params.desc_hw_addr = dma_params.desc_mem_phys; 2346df828598SMugunthan V N 2347df828598SMugunthan V N priv->dma = cpdma_ctlr_create(&dma_params); 2348df828598SMugunthan V N if (!priv->dma) { 2349df828598SMugunthan V N dev_err(priv->dev, "error initializing dma\n"); 2350df828598SMugunthan V N ret = -ENOMEM; 2351aa1a15e2SDaniel Mack goto clean_runtime_disable_ret; 2352df828598SMugunthan V N } 2353df828598SMugunthan V N 2354df828598SMugunthan V N priv->txch = cpdma_chan_create(priv->dma, tx_chan_num(0), 2355df828598SMugunthan V N cpsw_tx_handler); 2356df828598SMugunthan V N priv->rxch = cpdma_chan_create(priv->dma, rx_chan_num(0), 2357df828598SMugunthan V N cpsw_rx_handler); 2358df828598SMugunthan V N 2359df828598SMugunthan V N if (WARN_ON(!priv->txch || !priv->rxch)) { 2360df828598SMugunthan V N dev_err(priv->dev, "error initializing dma channels\n"); 2361df828598SMugunthan V N ret = -ENOMEM; 2362df828598SMugunthan V N goto clean_dma_ret; 2363df828598SMugunthan V N } 2364df828598SMugunthan V N 2365df828598SMugunthan V N ale_params.dev = &ndev->dev; 2366df828598SMugunthan V N ale_params.ale_ageout = ale_ageout; 2367df828598SMugunthan V N ale_params.ale_entries = data->ale_entries; 2368df828598SMugunthan V N ale_params.ale_ports = data->slaves; 2369df828598SMugunthan V N 2370df828598SMugunthan V N priv->ale = cpsw_ale_create(&ale_params); 2371df828598SMugunthan V N if (!priv->ale) { 2372df828598SMugunthan V N dev_err(priv->dev, "error initializing ale engine\n"); 2373df828598SMugunthan V N ret = -ENODEV; 2374df828598SMugunthan V N goto clean_dma_ret; 2375df828598SMugunthan V N } 2376df828598SMugunthan V N 2377df828598SMugunthan V N ndev->irq = platform_get_irq(pdev, 0); 2378df828598SMugunthan V N if (ndev->irq < 0) { 2379df828598SMugunthan V N dev_err(priv->dev, "error getting irq resource\n"); 2380df828598SMugunthan V N ret = -ENOENT; 2381df828598SMugunthan V N goto clean_ale_ret; 2382df828598SMugunthan V N } 2383df828598SMugunthan V N 2384df828598SMugunthan V N while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k))) { 2385c2b32e58SDaniel Mack if (k >= ARRAY_SIZE(priv->irqs_table)) { 2386c2b32e58SDaniel Mack ret = -EINVAL; 2387df828598SMugunthan V N goto clean_ale_ret; 2388df828598SMugunthan V N } 2389c2b32e58SDaniel Mack 2390c2b32e58SDaniel Mack ret = devm_request_irq(&pdev->dev, res->start, cpsw_interrupt, 2391c2b32e58SDaniel Mack 0, dev_name(&pdev->dev), priv); 2392c2b32e58SDaniel Mack if (ret < 0) { 2393c2b32e58SDaniel Mack dev_err(priv->dev, "error attaching irq (%d)\n", ret); 2394c2b32e58SDaniel Mack goto clean_ale_ret; 2395df828598SMugunthan V N } 2396c2b32e58SDaniel Mack 2397c2b32e58SDaniel Mack priv->irqs_table[k] = res->start; 2398df828598SMugunthan V N k++; 2399df828598SMugunthan V N } 2400df828598SMugunthan V N 2401c2b32e58SDaniel Mack priv->num_irqs = k; 2402c2b32e58SDaniel Mack 2403f646968fSPatrick McHardy ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER; 2404df828598SMugunthan V N 2405df828598SMugunthan V N ndev->netdev_ops = &cpsw_netdev_ops; 24067ad24ea4SWilfried Klaebe ndev->ethtool_ops = &cpsw_ethtool_ops; 2407df828598SMugunthan V N netif_napi_add(ndev, &priv->napi, cpsw_poll, CPSW_POLL_WEIGHT); 2408df828598SMugunthan V N 2409df828598SMugunthan V N /* register the network device */ 2410df828598SMugunthan V N SET_NETDEV_DEV(ndev, &pdev->dev); 2411df828598SMugunthan V N ret = register_netdev(ndev); 2412df828598SMugunthan V N if (ret) { 2413df828598SMugunthan V N dev_err(priv->dev, "error registering net device\n"); 2414df828598SMugunthan V N ret = -ENODEV; 2415aa1a15e2SDaniel Mack goto clean_ale_ret; 2416df828598SMugunthan V N } 2417df828598SMugunthan V N 24181a3b5056SOlof Johansson cpsw_notice(priv, probe, "initialized device (regs %pa, irq %d)\n", 24191a3b5056SOlof Johansson &ss_res->start, ndev->irq); 2420df828598SMugunthan V N 2421d9ba8f9eSMugunthan V N if (priv->data.dual_emac) { 2422d9ba8f9eSMugunthan V N ret = cpsw_probe_dual_emac(pdev, priv); 2423d9ba8f9eSMugunthan V N if (ret) { 2424d9ba8f9eSMugunthan V N cpsw_err(priv, probe, "error probe slave 2 emac interface\n"); 2425aa1a15e2SDaniel Mack goto clean_ale_ret; 2426d9ba8f9eSMugunthan V N } 2427d9ba8f9eSMugunthan V N } 2428d9ba8f9eSMugunthan V N 2429df828598SMugunthan V N return 0; 2430df828598SMugunthan V N 2431df828598SMugunthan V N clean_ale_ret: 2432df828598SMugunthan V N cpsw_ale_destroy(priv->ale); 2433df828598SMugunthan V N clean_dma_ret: 2434df828598SMugunthan V N cpdma_chan_destroy(priv->txch); 2435df828598SMugunthan V N cpdma_chan_destroy(priv->rxch); 2436df828598SMugunthan V N cpdma_ctlr_destroy(priv->dma); 2437aa1a15e2SDaniel Mack clean_runtime_disable_ret: 2438f150bd7fSMugunthan V N pm_runtime_disable(&pdev->dev); 2439df828598SMugunthan V N clean_ndev_ret: 2440d1bd9acfSSebastian Siewior free_netdev(priv->ndev); 2441df828598SMugunthan V N return ret; 2442df828598SMugunthan V N } 2443df828598SMugunthan V N 2444030b16a0SMugunthan V N static int cpsw_remove_child_device(struct device *dev, void *c) 2445030b16a0SMugunthan V N { 2446030b16a0SMugunthan V N struct platform_device *pdev = to_platform_device(dev); 2447030b16a0SMugunthan V N 2448030b16a0SMugunthan V N of_device_unregister(pdev); 2449030b16a0SMugunthan V N 2450030b16a0SMugunthan V N return 0; 2451030b16a0SMugunthan V N } 2452030b16a0SMugunthan V N 2453663e12e6SBill Pemberton static int cpsw_remove(struct platform_device *pdev) 2454df828598SMugunthan V N { 2455df828598SMugunthan V N struct net_device *ndev = platform_get_drvdata(pdev); 2456df828598SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 2457df828598SMugunthan V N 2458d1bd9acfSSebastian Siewior if (priv->data.dual_emac) 2459d1bd9acfSSebastian Siewior unregister_netdev(cpsw_get_slave_ndev(priv, 1)); 2460d1bd9acfSSebastian Siewior unregister_netdev(ndev); 2461df828598SMugunthan V N 2462df828598SMugunthan V N cpsw_ale_destroy(priv->ale); 2463df828598SMugunthan V N cpdma_chan_destroy(priv->txch); 2464df828598SMugunthan V N cpdma_chan_destroy(priv->rxch); 2465df828598SMugunthan V N cpdma_ctlr_destroy(priv->dma); 2466f150bd7fSMugunthan V N pm_runtime_disable(&pdev->dev); 2467030b16a0SMugunthan V N device_for_each_child(&pdev->dev, NULL, cpsw_remove_child_device); 2468d1bd9acfSSebastian Siewior if (priv->data.dual_emac) 2469d1bd9acfSSebastian Siewior free_netdev(cpsw_get_slave_ndev(priv, 1)); 2470df828598SMugunthan V N free_netdev(ndev); 2471df828598SMugunthan V N return 0; 2472df828598SMugunthan V N } 2473df828598SMugunthan V N 2474df828598SMugunthan V N static int cpsw_suspend(struct device *dev) 2475df828598SMugunthan V N { 2476df828598SMugunthan V N struct platform_device *pdev = to_platform_device(dev); 2477df828598SMugunthan V N struct net_device *ndev = platform_get_drvdata(pdev); 2478b90fc27aSMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 2479df828598SMugunthan V N 2480618073e3SMugunthan V N if (priv->data.dual_emac) { 2481618073e3SMugunthan V N int i; 2482618073e3SMugunthan V N 2483618073e3SMugunthan V N for (i = 0; i < priv->data.slaves; i++) { 2484618073e3SMugunthan V N if (netif_running(priv->slaves[i].ndev)) 2485618073e3SMugunthan V N cpsw_ndo_stop(priv->slaves[i].ndev); 2486618073e3SMugunthan V N soft_reset_slave(priv->slaves + i); 2487618073e3SMugunthan V N } 2488618073e3SMugunthan V N } else { 2489df828598SMugunthan V N if (netif_running(ndev)) 2490df828598SMugunthan V N cpsw_ndo_stop(ndev); 24911e7a2e21SDaniel Mack for_each_slave(priv, soft_reset_slave); 2492618073e3SMugunthan V N } 24931e7a2e21SDaniel Mack 2494f150bd7fSMugunthan V N pm_runtime_put_sync(&pdev->dev); 2495f150bd7fSMugunthan V N 2496739683b4SMugunthan V N /* Select sleep pin state */ 2497739683b4SMugunthan V N pinctrl_pm_select_sleep_state(&pdev->dev); 2498739683b4SMugunthan V N 2499df828598SMugunthan V N return 0; 2500df828598SMugunthan V N } 2501df828598SMugunthan V N 2502df828598SMugunthan V N static int cpsw_resume(struct device *dev) 2503df828598SMugunthan V N { 2504df828598SMugunthan V N struct platform_device *pdev = to_platform_device(dev); 2505df828598SMugunthan V N struct net_device *ndev = platform_get_drvdata(pdev); 2506618073e3SMugunthan V N struct cpsw_priv *priv = netdev_priv(ndev); 2507df828598SMugunthan V N 2508f150bd7fSMugunthan V N pm_runtime_get_sync(&pdev->dev); 2509739683b4SMugunthan V N 2510739683b4SMugunthan V N /* Select default pin state */ 2511739683b4SMugunthan V N pinctrl_pm_select_default_state(&pdev->dev); 2512739683b4SMugunthan V N 2513618073e3SMugunthan V N if (priv->data.dual_emac) { 2514618073e3SMugunthan V N int i; 2515618073e3SMugunthan V N 2516618073e3SMugunthan V N for (i = 0; i < priv->data.slaves; i++) { 2517618073e3SMugunthan V N if (netif_running(priv->slaves[i].ndev)) 2518618073e3SMugunthan V N cpsw_ndo_open(priv->slaves[i].ndev); 2519618073e3SMugunthan V N } 2520618073e3SMugunthan V N } else { 2521df828598SMugunthan V N if (netif_running(ndev)) 2522df828598SMugunthan V N cpsw_ndo_open(ndev); 2523618073e3SMugunthan V N } 2524df828598SMugunthan V N return 0; 2525df828598SMugunthan V N } 2526df828598SMugunthan V N 2527df828598SMugunthan V N static const struct dev_pm_ops cpsw_pm_ops = { 2528df828598SMugunthan V N .suspend = cpsw_suspend, 2529df828598SMugunthan V N .resume = cpsw_resume, 2530df828598SMugunthan V N }; 2531df828598SMugunthan V N 25322eb32b0aSMugunthan V N static const struct of_device_id cpsw_of_mtable[] = { 25332eb32b0aSMugunthan V N { .compatible = "ti,cpsw", }, 25342eb32b0aSMugunthan V N { /* sentinel */ }, 25352eb32b0aSMugunthan V N }; 25364bc21d41SSebastian Siewior MODULE_DEVICE_TABLE(of, cpsw_of_mtable); 25372eb32b0aSMugunthan V N 2538df828598SMugunthan V N static struct platform_driver cpsw_driver = { 2539df828598SMugunthan V N .driver = { 2540df828598SMugunthan V N .name = "cpsw", 2541df828598SMugunthan V N .pm = &cpsw_pm_ops, 25421e5c76d4SSachin Kamat .of_match_table = cpsw_of_mtable, 2543df828598SMugunthan V N }, 2544df828598SMugunthan V N .probe = cpsw_probe, 2545663e12e6SBill Pemberton .remove = cpsw_remove, 2546df828598SMugunthan V N }; 2547df828598SMugunthan V N 2548df828598SMugunthan V N static int __init cpsw_init(void) 2549df828598SMugunthan V N { 2550df828598SMugunthan V N return platform_driver_register(&cpsw_driver); 2551df828598SMugunthan V N } 2552df828598SMugunthan V N late_initcall(cpsw_init); 2553df828598SMugunthan V N 2554df828598SMugunthan V N static void __exit cpsw_exit(void) 2555df828598SMugunthan V N { 2556df828598SMugunthan V N platform_driver_unregister(&cpsw_driver); 2557df828598SMugunthan V N } 2558df828598SMugunthan V N module_exit(cpsw_exit); 2559df828598SMugunthan V N 2560df828598SMugunthan V N MODULE_LICENSE("GPL"); 2561df828598SMugunthan V N MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>"); 2562df828598SMugunthan V N MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>"); 2563df828598SMugunthan V N MODULE_DESCRIPTION("TI CPSW Ethernet driver"); 2564