e778703880d330eeed3ff30ad8cbc46adfa97927
[linux-2.6-block.git] / drivers / net / ethernet / ti / cpsw.c
1 /*
2  * Texas Instruments Ethernet Switch Driver
3  *
4  * Copyright (C) 2012 Texas Instruments
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation version 2.
9  *
10  * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11  * kind, whether express or implied; without even the implied warranty
12  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  */
15
16 #include <linux/kernel.h>
17 #include <linux/io.h>
18 #include <linux/clk.h>
19 #include <linux/timer.h>
20 #include <linux/module.h>
21 #include <linux/platform_device.h>
22 #include <linux/irqreturn.h>
23 #include <linux/interrupt.h>
24 #include <linux/if_ether.h>
25 #include <linux/etherdevice.h>
26 #include <linux/netdevice.h>
27 #include <linux/net_tstamp.h>
28 #include <linux/phy.h>
29 #include <linux/workqueue.h>
30 #include <linux/delay.h>
31 #include <linux/pm_runtime.h>
32 #include <linux/of.h>
33 #include <linux/of_net.h>
34 #include <linux/of_device.h>
35 #include <linux/if_vlan.h>
36
37 #include <linux/pinctrl/consumer.h>
38
39 #include "cpsw.h"
40 #include "cpsw_ale.h"
41 #include "cpts.h"
42 #include "davinci_cpdma.h"
43
44 #define CPSW_DEBUG      (NETIF_MSG_HW           | NETIF_MSG_WOL         | \
45                          NETIF_MSG_DRV          | NETIF_MSG_LINK        | \
46                          NETIF_MSG_IFUP         | NETIF_MSG_INTR        | \
47                          NETIF_MSG_PROBE        | NETIF_MSG_TIMER       | \
48                          NETIF_MSG_IFDOWN       | NETIF_MSG_RX_ERR      | \
49                          NETIF_MSG_TX_ERR       | NETIF_MSG_TX_DONE     | \
50                          NETIF_MSG_PKTDATA      | NETIF_MSG_TX_QUEUED   | \
51                          NETIF_MSG_RX_STATUS)
52
53 #define cpsw_info(priv, type, format, ...)              \
54 do {                                                            \
55         if (netif_msg_##type(priv) && net_ratelimit())          \
56                 dev_info(priv->dev, format, ## __VA_ARGS__);    \
57 } while (0)
58
59 #define cpsw_err(priv, type, format, ...)               \
60 do {                                                            \
61         if (netif_msg_##type(priv) && net_ratelimit())          \
62                 dev_err(priv->dev, format, ## __VA_ARGS__);     \
63 } while (0)
64
65 #define cpsw_dbg(priv, type, format, ...)               \
66 do {                                                            \
67         if (netif_msg_##type(priv) && net_ratelimit())          \
68                 dev_dbg(priv->dev, format, ## __VA_ARGS__);     \
69 } while (0)
70
71 #define cpsw_notice(priv, type, format, ...)            \
72 do {                                                            \
73         if (netif_msg_##type(priv) && net_ratelimit())          \
74                 dev_notice(priv->dev, format, ## __VA_ARGS__);  \
75 } while (0)
76
77 #define ALE_ALL_PORTS           0x7
78
79 #define CPSW_MAJOR_VERSION(reg)         (reg >> 8 & 0x7)
80 #define CPSW_MINOR_VERSION(reg)         (reg & 0xff)
81 #define CPSW_RTL_VERSION(reg)           ((reg >> 11) & 0x1f)
82
83 #define CPSW_VERSION_1          0x19010a
84 #define CPSW_VERSION_2          0x19010c
85 #define CPSW_VERSION_3          0x19010f
86 #define CPSW_VERSION_4          0x190112
87
88 #define HOST_PORT_NUM           0
89 #define SLIVER_SIZE             0x40
90
91 #define CPSW1_HOST_PORT_OFFSET  0x028
92 #define CPSW1_SLAVE_OFFSET      0x050
93 #define CPSW1_SLAVE_SIZE        0x040
94 #define CPSW1_CPDMA_OFFSET      0x100
95 #define CPSW1_STATERAM_OFFSET   0x200
96 #define CPSW1_HW_STATS          0x400
97 #define CPSW1_CPTS_OFFSET       0x500
98 #define CPSW1_ALE_OFFSET        0x600
99 #define CPSW1_SLIVER_OFFSET     0x700
100
101 #define CPSW2_HOST_PORT_OFFSET  0x108
102 #define CPSW2_SLAVE_OFFSET      0x200
103 #define CPSW2_SLAVE_SIZE        0x100
104 #define CPSW2_CPDMA_OFFSET      0x800
105 #define CPSW2_HW_STATS          0x900
106 #define CPSW2_STATERAM_OFFSET   0xa00
107 #define CPSW2_CPTS_OFFSET       0xc00
108 #define CPSW2_ALE_OFFSET        0xd00
109 #define CPSW2_SLIVER_OFFSET     0xd80
110 #define CPSW2_BD_OFFSET         0x2000
111
112 #define CPDMA_RXTHRESH          0x0c0
113 #define CPDMA_RXFREE            0x0e0
114 #define CPDMA_TXHDP             0x00
115 #define CPDMA_RXHDP             0x20
116 #define CPDMA_TXCP              0x40
117 #define CPDMA_RXCP              0x60
118
119 #define CPSW_POLL_WEIGHT        64
120 #define CPSW_MIN_PACKET_SIZE    60
121 #define CPSW_MAX_PACKET_SIZE    (1500 + 14 + 4 + 4)
122
123 #define RX_PRIORITY_MAPPING     0x76543210
124 #define TX_PRIORITY_MAPPING     0x33221100
125 #define CPDMA_TX_PRIORITY_MAP   0x76543210
126
127 #define CPSW_VLAN_AWARE         BIT(1)
128 #define CPSW_ALE_VLAN_AWARE     1
129
130 #define CPSW_FIFO_NORMAL_MODE           (0 << 16)
131 #define CPSW_FIFO_DUAL_MAC_MODE         (1 << 16)
132 #define CPSW_FIFO_RATE_LIMIT_MODE       (2 << 16)
133
134 #define CPSW_INTPACEEN          (0x3f << 16)
135 #define CPSW_INTPRESCALE_MASK   (0x7FF << 0)
136 #define CPSW_CMINTMAX_CNT       63
137 #define CPSW_CMINTMIN_CNT       2
138 #define CPSW_CMINTMAX_INTVL     (1000 / CPSW_CMINTMIN_CNT)
139 #define CPSW_CMINTMIN_INTVL     ((1000 / CPSW_CMINTMAX_CNT) + 1)
140
141 #define cpsw_enable_irq(priv)   \
142         do {                    \
143                 u32 i;          \
144                 for (i = 0; i < priv->num_irqs; i++) \
145                         enable_irq(priv->irqs_table[i]); \
146         } while (0)
147 #define cpsw_disable_irq(priv)  \
148         do {                    \
149                 u32 i;          \
150                 for (i = 0; i < priv->num_irqs; i++) \
151                         disable_irq_nosync(priv->irqs_table[i]); \
152         } while (0)
153
154 #define cpsw_slave_index(priv)                          \
155                 ((priv->data.dual_emac) ? priv->emac_port :     \
156                 priv->data.active_slave)
157
158 static int debug_level;
159 module_param(debug_level, int, 0);
160 MODULE_PARM_DESC(debug_level, "cpsw debug level (NETIF_MSG bits)");
161
162 static int ale_ageout = 10;
163 module_param(ale_ageout, int, 0);
164 MODULE_PARM_DESC(ale_ageout, "cpsw ale ageout interval (seconds)");
165
166 static int rx_packet_max = CPSW_MAX_PACKET_SIZE;
167 module_param(rx_packet_max, int, 0);
168 MODULE_PARM_DESC(rx_packet_max, "maximum receive packet size (bytes)");
169
170 struct cpsw_wr_regs {
171         u32     id_ver;
172         u32     soft_reset;
173         u32     control;
174         u32     int_control;
175         u32     rx_thresh_en;
176         u32     rx_en;
177         u32     tx_en;
178         u32     misc_en;
179         u32     mem_allign1[8];
180         u32     rx_thresh_stat;
181         u32     rx_stat;
182         u32     tx_stat;
183         u32     misc_stat;
184         u32     mem_allign2[8];
185         u32     rx_imax;
186         u32     tx_imax;
187
188 };
189
190 struct cpsw_ss_regs {
191         u32     id_ver;
192         u32     control;
193         u32     soft_reset;
194         u32     stat_port_en;
195         u32     ptype;
196         u32     soft_idle;
197         u32     thru_rate;
198         u32     gap_thresh;
199         u32     tx_start_wds;
200         u32     flow_control;
201         u32     vlan_ltype;
202         u32     ts_ltype;
203         u32     dlr_ltype;
204 };
205
206 /* CPSW_PORT_V1 */
207 #define CPSW1_MAX_BLKS      0x00 /* Maximum FIFO Blocks */
208 #define CPSW1_BLK_CNT       0x04 /* FIFO Block Usage Count (Read Only) */
209 #define CPSW1_TX_IN_CTL     0x08 /* Transmit FIFO Control */
210 #define CPSW1_PORT_VLAN     0x0c /* VLAN Register */
211 #define CPSW1_TX_PRI_MAP    0x10 /* Tx Header Priority to Switch Pri Mapping */
212 #define CPSW1_TS_CTL        0x14 /* Time Sync Control */
213 #define CPSW1_TS_SEQ_LTYPE  0x18 /* Time Sync Sequence ID Offset and Msg Type */
214 #define CPSW1_TS_VLAN       0x1c /* Time Sync VLAN1 and VLAN2 */
215
216 /* CPSW_PORT_V2 */
217 #define CPSW2_CONTROL       0x00 /* Control Register */
218 #define CPSW2_MAX_BLKS      0x08 /* Maximum FIFO Blocks */
219 #define CPSW2_BLK_CNT       0x0c /* FIFO Block Usage Count (Read Only) */
220 #define CPSW2_TX_IN_CTL     0x10 /* Transmit FIFO Control */
221 #define CPSW2_PORT_VLAN     0x14 /* VLAN Register */
222 #define CPSW2_TX_PRI_MAP    0x18 /* Tx Header Priority to Switch Pri Mapping */
223 #define CPSW2_TS_SEQ_MTYPE  0x1c /* Time Sync Sequence ID Offset and Msg Type */
224
225 /* CPSW_PORT_V1 and V2 */
226 #define SA_LO               0x20 /* CPGMAC_SL Source Address Low */
227 #define SA_HI               0x24 /* CPGMAC_SL Source Address High */
228 #define SEND_PERCENT        0x28 /* Transmit Queue Send Percentages */
229
230 /* CPSW_PORT_V2 only */
231 #define RX_DSCP_PRI_MAP0    0x30 /* Rx DSCP Priority to Rx Packet Mapping */
232 #define RX_DSCP_PRI_MAP1    0x34 /* Rx DSCP Priority to Rx Packet Mapping */
233 #define RX_DSCP_PRI_MAP2    0x38 /* Rx DSCP Priority to Rx Packet Mapping */
234 #define RX_DSCP_PRI_MAP3    0x3c /* Rx DSCP Priority to Rx Packet Mapping */
235 #define RX_DSCP_PRI_MAP4    0x40 /* Rx DSCP Priority to Rx Packet Mapping */
236 #define RX_DSCP_PRI_MAP5    0x44 /* Rx DSCP Priority to Rx Packet Mapping */
237 #define RX_DSCP_PRI_MAP6    0x48 /* Rx DSCP Priority to Rx Packet Mapping */
238 #define RX_DSCP_PRI_MAP7    0x4c /* Rx DSCP Priority to Rx Packet Mapping */
239
240 /* Bit definitions for the CPSW2_CONTROL register */
241 #define PASS_PRI_TAGGED     (1<<24) /* Pass Priority Tagged */
242 #define VLAN_LTYPE2_EN      (1<<21) /* VLAN LTYPE 2 enable */
243 #define VLAN_LTYPE1_EN      (1<<20) /* VLAN LTYPE 1 enable */
244 #define DSCP_PRI_EN         (1<<16) /* DSCP Priority Enable */
245 #define TS_320              (1<<14) /* Time Sync Dest Port 320 enable */
246 #define TS_319              (1<<13) /* Time Sync Dest Port 319 enable */
247 #define TS_132              (1<<12) /* Time Sync Dest IP Addr 132 enable */
248 #define TS_131              (1<<11) /* Time Sync Dest IP Addr 131 enable */
249 #define TS_130              (1<<10) /* Time Sync Dest IP Addr 130 enable */
250 #define TS_129              (1<<9)  /* Time Sync Dest IP Addr 129 enable */
251 #define TS_TTL_NONZERO      (1<<8)  /* Time Sync Time To Live Non-zero enable */
252 #define TS_ANNEX_F_EN       (1<<6)  /* Time Sync Annex F enable */
253 #define TS_ANNEX_D_EN       (1<<4)  /* Time Sync Annex D enable */
254 #define TS_LTYPE2_EN        (1<<3)  /* Time Sync LTYPE 2 enable */
255 #define TS_LTYPE1_EN        (1<<2)  /* Time Sync LTYPE 1 enable */
256 #define TS_TX_EN            (1<<1)  /* Time Sync Transmit Enable */
257 #define TS_RX_EN            (1<<0)  /* Time Sync Receive Enable */
258
259 #define CTRL_V2_TS_BITS \
260         (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
261          TS_TTL_NONZERO  | TS_ANNEX_D_EN | TS_LTYPE1_EN)
262
263 #define CTRL_V2_ALL_TS_MASK (CTRL_V2_TS_BITS | TS_TX_EN | TS_RX_EN)
264 #define CTRL_V2_TX_TS_BITS  (CTRL_V2_TS_BITS | TS_TX_EN)
265 #define CTRL_V2_RX_TS_BITS  (CTRL_V2_TS_BITS | TS_RX_EN)
266
267
268 #define CTRL_V3_TS_BITS \
269         (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
270          TS_TTL_NONZERO | TS_ANNEX_F_EN | TS_ANNEX_D_EN |\
271          TS_LTYPE1_EN)
272
273 #define CTRL_V3_ALL_TS_MASK (CTRL_V3_TS_BITS | TS_TX_EN | TS_RX_EN)
274 #define CTRL_V3_TX_TS_BITS  (CTRL_V3_TS_BITS | TS_TX_EN)
275 #define CTRL_V3_RX_TS_BITS  (CTRL_V3_TS_BITS | TS_RX_EN)
276
277 /* Bit definitions for the CPSW2_TS_SEQ_MTYPE register */
278 #define TS_SEQ_ID_OFFSET_SHIFT   (16)    /* Time Sync Sequence ID Offset */
279 #define TS_SEQ_ID_OFFSET_MASK    (0x3f)
280 #define TS_MSG_TYPE_EN_SHIFT     (0)     /* Time Sync Message Type Enable */
281 #define TS_MSG_TYPE_EN_MASK      (0xffff)
282
283 /* The PTP event messages - Sync, Delay_Req, Pdelay_Req, and Pdelay_Resp. */
284 #define EVENT_MSG_BITS ((1<<0) | (1<<1) | (1<<2) | (1<<3))
285
286 /* Bit definitions for the CPSW1_TS_CTL register */
287 #define CPSW_V1_TS_RX_EN                BIT(0)
288 #define CPSW_V1_TS_TX_EN                BIT(4)
289 #define CPSW_V1_MSG_TYPE_OFS            16
290
291 /* Bit definitions for the CPSW1_TS_SEQ_LTYPE register */
292 #define CPSW_V1_SEQ_ID_OFS_SHIFT        16
293
294 struct cpsw_host_regs {
295         u32     max_blks;
296         u32     blk_cnt;
297         u32     tx_in_ctl;
298         u32     port_vlan;
299         u32     tx_pri_map;
300         u32     cpdma_tx_pri_map;
301         u32     cpdma_rx_chan_map;
302 };
303
304 struct cpsw_sliver_regs {
305         u32     id_ver;
306         u32     mac_control;
307         u32     mac_status;
308         u32     soft_reset;
309         u32     rx_maxlen;
310         u32     __reserved_0;
311         u32     rx_pause;
312         u32     tx_pause;
313         u32     __reserved_1;
314         u32     rx_pri_map;
315 };
316
317 struct cpsw_hw_stats {
318         u32     rxgoodframes;
319         u32     rxbroadcastframes;
320         u32     rxmulticastframes;
321         u32     rxpauseframes;
322         u32     rxcrcerrors;
323         u32     rxaligncodeerrors;
324         u32     rxoversizedframes;
325         u32     rxjabberframes;
326         u32     rxundersizedframes;
327         u32     rxfragments;
328         u32     __pad_0[2];
329         u32     rxoctets;
330         u32     txgoodframes;
331         u32     txbroadcastframes;
332         u32     txmulticastframes;
333         u32     txpauseframes;
334         u32     txdeferredframes;
335         u32     txcollisionframes;
336         u32     txsinglecollframes;
337         u32     txmultcollframes;
338         u32     txexcessivecollisions;
339         u32     txlatecollisions;
340         u32     txunderrun;
341         u32     txcarriersenseerrors;
342         u32     txoctets;
343         u32     octetframes64;
344         u32     octetframes65t127;
345         u32     octetframes128t255;
346         u32     octetframes256t511;
347         u32     octetframes512t1023;
348         u32     octetframes1024tup;
349         u32     netoctets;
350         u32     rxsofoverruns;
351         u32     rxmofoverruns;
352         u32     rxdmaoverruns;
353 };
354
355 struct cpsw_slave {
356         void __iomem                    *regs;
357         struct cpsw_sliver_regs __iomem *sliver;
358         int                             slave_num;
359         u32                             mac_control;
360         struct cpsw_slave_data          *data;
361         struct phy_device               *phy;
362         struct net_device               *ndev;
363         u32                             port_vlan;
364         u32                             open_stat;
365 };
366
367 static inline u32 slave_read(struct cpsw_slave *slave, u32 offset)
368 {
369         return __raw_readl(slave->regs + offset);
370 }
371
372 static inline void slave_write(struct cpsw_slave *slave, u32 val, u32 offset)
373 {
374         __raw_writel(val, slave->regs + offset);
375 }
376
377 struct cpsw_priv {
378         spinlock_t                      lock;
379         struct platform_device          *pdev;
380         struct net_device               *ndev;
381         struct napi_struct              napi;
382         struct device                   *dev;
383         struct cpsw_platform_data       data;
384         struct cpsw_ss_regs __iomem     *regs;
385         struct cpsw_wr_regs __iomem     *wr_regs;
386         u8 __iomem                      *hw_stats;
387         struct cpsw_host_regs __iomem   *host_port_regs;
388         u32                             msg_enable;
389         u32                             version;
390         u32                             coal_intvl;
391         u32                             bus_freq_mhz;
392         int                             rx_packet_max;
393         int                             host_port;
394         struct clk                      *clk;
395         u8                              mac_addr[ETH_ALEN];
396         struct cpsw_slave               *slaves;
397         struct cpdma_ctlr               *dma;
398         struct cpdma_chan               *txch, *rxch;
399         struct cpsw_ale                 *ale;
400         bool                            rx_pause;
401         bool                            tx_pause;
402         /* snapshot of IRQ numbers */
403         u32 irqs_table[4];
404         u32 num_irqs;
405         bool irq_enabled;
406         struct cpts *cpts;
407         u32 emac_port;
408 };
409
410 struct cpsw_stats {
411         char stat_string[ETH_GSTRING_LEN];
412         int type;
413         int sizeof_stat;
414         int stat_offset;
415 };
416
417 enum {
418         CPSW_STATS,
419         CPDMA_RX_STATS,
420         CPDMA_TX_STATS,
421 };
422
423 #define CPSW_STAT(m)            CPSW_STATS,                             \
424                                 sizeof(((struct cpsw_hw_stats *)0)->m), \
425                                 offsetof(struct cpsw_hw_stats, m)
426 #define CPDMA_RX_STAT(m)        CPDMA_RX_STATS,                            \
427                                 sizeof(((struct cpdma_chan_stats *)0)->m), \
428                                 offsetof(struct cpdma_chan_stats, m)
429 #define CPDMA_TX_STAT(m)        CPDMA_TX_STATS,                            \
430                                 sizeof(((struct cpdma_chan_stats *)0)->m), \
431                                 offsetof(struct cpdma_chan_stats, m)
432
433 static const struct cpsw_stats cpsw_gstrings_stats[] = {
434         { "Good Rx Frames", CPSW_STAT(rxgoodframes) },
435         { "Broadcast Rx Frames", CPSW_STAT(rxbroadcastframes) },
436         { "Multicast Rx Frames", CPSW_STAT(rxmulticastframes) },
437         { "Pause Rx Frames", CPSW_STAT(rxpauseframes) },
438         { "Rx CRC Errors", CPSW_STAT(rxcrcerrors) },
439         { "Rx Align/Code Errors", CPSW_STAT(rxaligncodeerrors) },
440         { "Oversize Rx Frames", CPSW_STAT(rxoversizedframes) },
441         { "Rx Jabbers", CPSW_STAT(rxjabberframes) },
442         { "Undersize (Short) Rx Frames", CPSW_STAT(rxundersizedframes) },
443         { "Rx Fragments", CPSW_STAT(rxfragments) },
444         { "Rx Octets", CPSW_STAT(rxoctets) },
445         { "Good Tx Frames", CPSW_STAT(txgoodframes) },
446         { "Broadcast Tx Frames", CPSW_STAT(txbroadcastframes) },
447         { "Multicast Tx Frames", CPSW_STAT(txmulticastframes) },
448         { "Pause Tx Frames", CPSW_STAT(txpauseframes) },
449         { "Deferred Tx Frames", CPSW_STAT(txdeferredframes) },
450         { "Collisions", CPSW_STAT(txcollisionframes) },
451         { "Single Collision Tx Frames", CPSW_STAT(txsinglecollframes) },
452         { "Multiple Collision Tx Frames", CPSW_STAT(txmultcollframes) },
453         { "Excessive Collisions", CPSW_STAT(txexcessivecollisions) },
454         { "Late Collisions", CPSW_STAT(txlatecollisions) },
455         { "Tx Underrun", CPSW_STAT(txunderrun) },
456         { "Carrier Sense Errors", CPSW_STAT(txcarriersenseerrors) },
457         { "Tx Octets", CPSW_STAT(txoctets) },
458         { "Rx + Tx 64 Octet Frames", CPSW_STAT(octetframes64) },
459         { "Rx + Tx 65-127 Octet Frames", CPSW_STAT(octetframes65t127) },
460         { "Rx + Tx 128-255 Octet Frames", CPSW_STAT(octetframes128t255) },
461         { "Rx + Tx 256-511 Octet Frames", CPSW_STAT(octetframes256t511) },
462         { "Rx + Tx 512-1023 Octet Frames", CPSW_STAT(octetframes512t1023) },
463         { "Rx + Tx 1024-Up Octet Frames", CPSW_STAT(octetframes1024tup) },
464         { "Net Octets", CPSW_STAT(netoctets) },
465         { "Rx Start of Frame Overruns", CPSW_STAT(rxsofoverruns) },
466         { "Rx Middle of Frame Overruns", CPSW_STAT(rxmofoverruns) },
467         { "Rx DMA Overruns", CPSW_STAT(rxdmaoverruns) },
468         { "Rx DMA chan: head_enqueue", CPDMA_RX_STAT(head_enqueue) },
469         { "Rx DMA chan: tail_enqueue", CPDMA_RX_STAT(tail_enqueue) },
470         { "Rx DMA chan: pad_enqueue", CPDMA_RX_STAT(pad_enqueue) },
471         { "Rx DMA chan: misqueued", CPDMA_RX_STAT(misqueued) },
472         { "Rx DMA chan: desc_alloc_fail", CPDMA_RX_STAT(desc_alloc_fail) },
473         { "Rx DMA chan: pad_alloc_fail", CPDMA_RX_STAT(pad_alloc_fail) },
474         { "Rx DMA chan: runt_receive_buf", CPDMA_RX_STAT(runt_receive_buff) },
475         { "Rx DMA chan: runt_transmit_buf", CPDMA_RX_STAT(runt_transmit_buff) },
476         { "Rx DMA chan: empty_dequeue", CPDMA_RX_STAT(empty_dequeue) },
477         { "Rx DMA chan: busy_dequeue", CPDMA_RX_STAT(busy_dequeue) },
478         { "Rx DMA chan: good_dequeue", CPDMA_RX_STAT(good_dequeue) },
479         { "Rx DMA chan: requeue", CPDMA_RX_STAT(requeue) },
480         { "Rx DMA chan: teardown_dequeue", CPDMA_RX_STAT(teardown_dequeue) },
481         { "Tx DMA chan: head_enqueue", CPDMA_TX_STAT(head_enqueue) },
482         { "Tx DMA chan: tail_enqueue", CPDMA_TX_STAT(tail_enqueue) },
483         { "Tx DMA chan: pad_enqueue", CPDMA_TX_STAT(pad_enqueue) },
484         { "Tx DMA chan: misqueued", CPDMA_TX_STAT(misqueued) },
485         { "Tx DMA chan: desc_alloc_fail", CPDMA_TX_STAT(desc_alloc_fail) },
486         { "Tx DMA chan: pad_alloc_fail", CPDMA_TX_STAT(pad_alloc_fail) },
487         { "Tx DMA chan: runt_receive_buf", CPDMA_TX_STAT(runt_receive_buff) },
488         { "Tx DMA chan: runt_transmit_buf", CPDMA_TX_STAT(runt_transmit_buff) },
489         { "Tx DMA chan: empty_dequeue", CPDMA_TX_STAT(empty_dequeue) },
490         { "Tx DMA chan: busy_dequeue", CPDMA_TX_STAT(busy_dequeue) },
491         { "Tx DMA chan: good_dequeue", CPDMA_TX_STAT(good_dequeue) },
492         { "Tx DMA chan: requeue", CPDMA_TX_STAT(requeue) },
493         { "Tx DMA chan: teardown_dequeue", CPDMA_TX_STAT(teardown_dequeue) },
494 };
495
496 #define CPSW_STATS_LEN  ARRAY_SIZE(cpsw_gstrings_stats)
497
498 #define napi_to_priv(napi)      container_of(napi, struct cpsw_priv, napi)
499 #define for_each_slave(priv, func, arg...)                              \
500         do {                                                            \
501                 struct cpsw_slave *slave;                               \
502                 int n;                                                  \
503                 if (priv->data.dual_emac)                               \
504                         (func)((priv)->slaves + priv->emac_port, ##arg);\
505                 else                                                    \
506                         for (n = (priv)->data.slaves,                   \
507                                         slave = (priv)->slaves;         \
508                                         n; n--)                         \
509                                 (func)(slave++, ##arg);                 \
510         } while (0)
511 #define cpsw_get_slave_ndev(priv, __slave_no__)                         \
512         ((__slave_no__ < priv->data.slaves) ?                           \
513                 priv->slaves[__slave_no__].ndev : NULL)
514 #define cpsw_get_slave_priv(priv, __slave_no__)                         \
515         (((__slave_no__ < priv->data.slaves) &&                         \
516                 (priv->slaves[__slave_no__].ndev)) ?                    \
517                 netdev_priv(priv->slaves[__slave_no__].ndev) : NULL)    \
518
519 #define cpsw_dual_emac_src_port_detect(status, priv, ndev, skb)         \
520         do {                                                            \
521                 if (!priv->data.dual_emac)                              \
522                         break;                                          \
523                 if (CPDMA_RX_SOURCE_PORT(status) == 1) {                \
524                         ndev = cpsw_get_slave_ndev(priv, 0);            \
525                         priv = netdev_priv(ndev);                       \
526                         skb->dev = ndev;                                \
527                 } else if (CPDMA_RX_SOURCE_PORT(status) == 2) {         \
528                         ndev = cpsw_get_slave_ndev(priv, 1);            \
529                         priv = netdev_priv(ndev);                       \
530                         skb->dev = ndev;                                \
531                 }                                                       \
532         } while (0)
533 #define cpsw_add_mcast(priv, addr)                                      \
534         do {                                                            \
535                 if (priv->data.dual_emac) {                             \
536                         struct cpsw_slave *slave = priv->slaves +       \
537                                                 priv->emac_port;        \
538                         int slave_port = cpsw_get_slave_port(priv,      \
539                                                 slave->slave_num);      \
540                         cpsw_ale_add_mcast(priv->ale, addr,             \
541                                 1 << slave_port | 1 << priv->host_port, \
542                                 ALE_VLAN, slave->port_vlan, 0);         \
543                 } else {                                                \
544                         cpsw_ale_add_mcast(priv->ale, addr,             \
545                                 ALE_ALL_PORTS << priv->host_port,       \
546                                 0, 0, 0);                               \
547                 }                                                       \
548         } while (0)
549
550 static inline int cpsw_get_slave_port(struct cpsw_priv *priv, u32 slave_num)
551 {
552         if (priv->host_port == 0)
553                 return slave_num + 1;
554         else
555                 return slave_num;
556 }
557
558 static void cpsw_set_promiscious(struct net_device *ndev, bool enable)
559 {
560         struct cpsw_priv *priv = netdev_priv(ndev);
561         struct cpsw_ale *ale = priv->ale;
562         int i;
563
564         if (priv->data.dual_emac) {
565                 bool flag = false;
566
567                 /* Enabling promiscuous mode for one interface will be
568                  * common for both the interface as the interface shares
569                  * the same hardware resource.
570                  */
571                 for (i = 0; i < priv->data.slaves; i++)
572                         if (priv->slaves[i].ndev->flags & IFF_PROMISC)
573                                 flag = true;
574
575                 if (!enable && flag) {
576                         enable = true;
577                         dev_err(&ndev->dev, "promiscuity not disabled as the other interface is still in promiscuity mode\n");
578                 }
579
580                 if (enable) {
581                         /* Enable Bypass */
582                         cpsw_ale_control_set(ale, 0, ALE_BYPASS, 1);
583
584                         dev_dbg(&ndev->dev, "promiscuity enabled\n");
585                 } else {
586                         /* Disable Bypass */
587                         cpsw_ale_control_set(ale, 0, ALE_BYPASS, 0);
588                         dev_dbg(&ndev->dev, "promiscuity disabled\n");
589                 }
590         } else {
591                 if (enable) {
592                         unsigned long timeout = jiffies + HZ;
593
594                         /* Disable Learn for all ports (host is port 0 and slaves are port 1 and up */
595                         for (i = 0; i <= priv->data.slaves; i++) {
596                                 cpsw_ale_control_set(ale, i,
597                                                      ALE_PORT_NOLEARN, 1);
598                                 cpsw_ale_control_set(ale, i,
599                                                      ALE_PORT_NO_SA_UPDATE, 1);
600                         }
601
602                         /* Clear All Untouched entries */
603                         cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
604                         do {
605                                 cpu_relax();
606                                 if (cpsw_ale_control_get(ale, 0, ALE_AGEOUT))
607                                         break;
608                         } while (time_after(timeout, jiffies));
609                         cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
610
611                         /* Clear all mcast from ALE */
612                         cpsw_ale_flush_multicast(ale, ALE_ALL_PORTS <<
613                                                  priv->host_port, -1);
614
615                         /* Flood All Unicast Packets to Host port */
616                         cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 1);
617                         dev_dbg(&ndev->dev, "promiscuity enabled\n");
618                 } else {
619                         /* Don't Flood All Unicast Packets to Host port */
620                         cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 0);
621
622                         /* Enable Learn for all ports (host is port 0 and slaves are port 1 and up */
623                         for (i = 0; i <= priv->data.slaves; i++) {
624                                 cpsw_ale_control_set(ale, i,
625                                                      ALE_PORT_NOLEARN, 0);
626                                 cpsw_ale_control_set(ale, i,
627                                                      ALE_PORT_NO_SA_UPDATE, 0);
628                         }
629                         dev_dbg(&ndev->dev, "promiscuity disabled\n");
630                 }
631         }
632 }
633
634 static void cpsw_ndo_set_rx_mode(struct net_device *ndev)
635 {
636         struct cpsw_priv *priv = netdev_priv(ndev);
637         int vid;
638
639         if (priv->data.dual_emac)
640                 vid = priv->slaves[priv->emac_port].port_vlan;
641         else
642                 vid = priv->data.default_vlan;
643
644         if (ndev->flags & IFF_PROMISC) {
645                 /* Enable promiscuous mode */
646                 cpsw_set_promiscious(ndev, true);
647                 cpsw_ale_set_allmulti(priv->ale, IFF_ALLMULTI);
648                 return;
649         } else {
650                 /* Disable promiscuous mode */
651                 cpsw_set_promiscious(ndev, false);
652         }
653
654         /* Restore allmulti on vlans if necessary */
655         cpsw_ale_set_allmulti(priv->ale, priv->ndev->flags & IFF_ALLMULTI);
656
657         /* Clear all mcast from ALE */
658         cpsw_ale_flush_multicast(priv->ale, ALE_ALL_PORTS << priv->host_port,
659                                  vid);
660
661         if (!netdev_mc_empty(ndev)) {
662                 struct netdev_hw_addr *ha;
663
664                 /* program multicast address list into ALE register */
665                 netdev_for_each_mc_addr(ha, ndev) {
666                         cpsw_add_mcast(priv, (u8 *)ha->addr);
667                 }
668         }
669 }
670
671 static void cpsw_intr_enable(struct cpsw_priv *priv)
672 {
673         __raw_writel(0xFF, &priv->wr_regs->tx_en);
674         __raw_writel(0xFF, &priv->wr_regs->rx_en);
675
676         cpdma_ctlr_int_ctrl(priv->dma, true);
677         return;
678 }
679
680 static void cpsw_intr_disable(struct cpsw_priv *priv)
681 {
682         __raw_writel(0, &priv->wr_regs->tx_en);
683         __raw_writel(0, &priv->wr_regs->rx_en);
684
685         cpdma_ctlr_int_ctrl(priv->dma, false);
686         return;
687 }
688
689 static void cpsw_tx_handler(void *token, int len, int status)
690 {
691         struct sk_buff          *skb = token;
692         struct net_device       *ndev = skb->dev;
693         struct cpsw_priv        *priv = netdev_priv(ndev);
694
695         /* Check whether the queue is stopped due to stalled tx dma, if the
696          * queue is stopped then start the queue as we have free desc for tx
697          */
698         if (unlikely(netif_queue_stopped(ndev)))
699                 netif_wake_queue(ndev);
700         cpts_tx_timestamp(priv->cpts, skb);
701         ndev->stats.tx_packets++;
702         ndev->stats.tx_bytes += len;
703         dev_kfree_skb_any(skb);
704 }
705
706 static void cpsw_rx_handler(void *token, int len, int status)
707 {
708         struct sk_buff          *skb = token;
709         struct sk_buff          *new_skb;
710         struct net_device       *ndev = skb->dev;
711         struct cpsw_priv        *priv = netdev_priv(ndev);
712         int                     ret = 0;
713
714         cpsw_dual_emac_src_port_detect(status, priv, ndev, skb);
715
716         if (unlikely(status < 0) || unlikely(!netif_running(ndev))) {
717                 bool ndev_status = false;
718                 struct cpsw_slave *slave = priv->slaves;
719                 int n;
720
721                 if (priv->data.dual_emac) {
722                         /* In dual emac mode check for all interfaces */
723                         for (n = priv->data.slaves; n; n--, slave++)
724                                 if (netif_running(slave->ndev))
725                                         ndev_status = true;
726                 }
727
728                 if (ndev_status && (status >= 0)) {
729                         /* The packet received is for the interface which
730                          * is already down and the other interface is up
731                          * and running, instead of freeing which results
732                          * in reducing of the number of rx descriptor in
733                          * DMA engine, requeue skb back to cpdma.
734                          */
735                         new_skb = skb;
736                         goto requeue;
737                 }
738
739                 /* the interface is going down, skbs are purged */
740                 dev_kfree_skb_any(skb);
741                 return;
742         }
743
744         new_skb = netdev_alloc_skb_ip_align(ndev, priv->rx_packet_max);
745         if (new_skb) {
746                 skb_put(skb, len);
747                 cpts_rx_timestamp(priv->cpts, skb);
748                 skb->protocol = eth_type_trans(skb, ndev);
749                 netif_receive_skb(skb);
750                 ndev->stats.rx_bytes += len;
751                 ndev->stats.rx_packets++;
752         } else {
753                 ndev->stats.rx_dropped++;
754                 new_skb = skb;
755         }
756
757 requeue:
758         ret = cpdma_chan_submit(priv->rxch, new_skb, new_skb->data,
759                         skb_tailroom(new_skb), 0);
760         if (WARN_ON(ret < 0))
761                 dev_kfree_skb_any(new_skb);
762 }
763
764 static irqreturn_t cpsw_tx_interrupt(int irq, void *dev_id)
765 {
766         struct cpsw_priv *priv = dev_id;
767
768         cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_TX);
769         cpdma_chan_process(priv->txch, 128);
770
771         priv = cpsw_get_slave_priv(priv, 1);
772         if (priv)
773                 cpdma_chan_process(priv->txch, 128);
774
775         return IRQ_HANDLED;
776 }
777
778 static irqreturn_t cpsw_rx_interrupt(int irq, void *dev_id)
779 {
780         struct cpsw_priv *priv = dev_id;
781
782         cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_RX);
783
784         cpsw_intr_disable(priv);
785         if (priv->irq_enabled == true) {
786                 cpsw_disable_irq(priv);
787                 priv->irq_enabled = false;
788         }
789
790         if (netif_running(priv->ndev)) {
791                 napi_schedule(&priv->napi);
792                 return IRQ_HANDLED;
793         }
794
795         priv = cpsw_get_slave_priv(priv, 1);
796         if (!priv)
797                 return IRQ_NONE;
798
799         if (netif_running(priv->ndev)) {
800                 napi_schedule(&priv->napi);
801                 return IRQ_HANDLED;
802         }
803         return IRQ_NONE;
804 }
805
806 static int cpsw_poll(struct napi_struct *napi, int budget)
807 {
808         struct cpsw_priv        *priv = napi_to_priv(napi);
809         int                     num_tx, num_rx;
810
811         num_tx = cpdma_chan_process(priv->txch, 128);
812
813         num_rx = cpdma_chan_process(priv->rxch, budget);
814         if (num_rx < budget) {
815                 struct cpsw_priv *prim_cpsw;
816
817                 napi_complete(napi);
818                 cpsw_intr_enable(priv);
819                 prim_cpsw = cpsw_get_slave_priv(priv, 0);
820                 if (prim_cpsw->irq_enabled == false) {
821                         prim_cpsw->irq_enabled = true;
822                         cpsw_enable_irq(priv);
823                 }
824         }
825
826         if (num_rx || num_tx)
827                 cpsw_dbg(priv, intr, "poll %d rx, %d tx pkts\n",
828                          num_rx, num_tx);
829
830         return num_rx;
831 }
832
833 static inline void soft_reset(const char *module, void __iomem *reg)
834 {
835         unsigned long timeout = jiffies + HZ;
836
837         __raw_writel(1, reg);
838         do {
839                 cpu_relax();
840         } while ((__raw_readl(reg) & 1) && time_after(timeout, jiffies));
841
842         WARN(__raw_readl(reg) & 1, "failed to soft-reset %s\n", module);
843 }
844
845 #define mac_hi(mac)     (((mac)[0] << 0) | ((mac)[1] << 8) |    \
846                          ((mac)[2] << 16) | ((mac)[3] << 24))
847 #define mac_lo(mac)     (((mac)[4] << 0) | ((mac)[5] << 8))
848
849 static void cpsw_set_slave_mac(struct cpsw_slave *slave,
850                                struct cpsw_priv *priv)
851 {
852         slave_write(slave, mac_hi(priv->mac_addr), SA_HI);
853         slave_write(slave, mac_lo(priv->mac_addr), SA_LO);
854 }
855
856 static void _cpsw_adjust_link(struct cpsw_slave *slave,
857                               struct cpsw_priv *priv, bool *link)
858 {
859         struct phy_device       *phy = slave->phy;
860         u32                     mac_control = 0;
861         u32                     slave_port;
862
863         if (!phy)
864                 return;
865
866         slave_port = cpsw_get_slave_port(priv, slave->slave_num);
867
868         if (phy->link) {
869                 mac_control = priv->data.mac_control;
870
871                 /* enable forwarding */
872                 cpsw_ale_control_set(priv->ale, slave_port,
873                                      ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
874
875                 if (phy->speed == 1000)
876                         mac_control |= BIT(7);  /* GIGABITEN    */
877                 if (phy->duplex)
878                         mac_control |= BIT(0);  /* FULLDUPLEXEN */
879
880                 /* set speed_in input in case RMII mode is used in 100Mbps */
881                 if (phy->speed == 100)
882                         mac_control |= BIT(15);
883                 else if (phy->speed == 10)
884                         mac_control |= BIT(18); /* In Band mode */
885
886                 if (priv->rx_pause)
887                         mac_control |= BIT(3);
888
889                 if (priv->tx_pause)
890                         mac_control |= BIT(4);
891
892                 *link = true;
893         } else {
894                 mac_control = 0;
895                 /* disable forwarding */
896                 cpsw_ale_control_set(priv->ale, slave_port,
897                                      ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
898         }
899
900         if (mac_control != slave->mac_control) {
901                 phy_print_status(phy);
902                 __raw_writel(mac_control, &slave->sliver->mac_control);
903         }
904
905         slave->mac_control = mac_control;
906 }
907
908 static void cpsw_adjust_link(struct net_device *ndev)
909 {
910         struct cpsw_priv        *priv = netdev_priv(ndev);
911         bool                    link = false;
912
913         for_each_slave(priv, _cpsw_adjust_link, priv, &link);
914
915         if (link) {
916                 netif_carrier_on(ndev);
917                 if (netif_running(ndev))
918                         netif_wake_queue(ndev);
919         } else {
920                 netif_carrier_off(ndev);
921                 netif_stop_queue(ndev);
922         }
923 }
924
925 static int cpsw_get_coalesce(struct net_device *ndev,
926                                 struct ethtool_coalesce *coal)
927 {
928         struct cpsw_priv *priv = netdev_priv(ndev);
929
930         coal->rx_coalesce_usecs = priv->coal_intvl;
931         return 0;
932 }
933
934 static int cpsw_set_coalesce(struct net_device *ndev,
935                                 struct ethtool_coalesce *coal)
936 {
937         struct cpsw_priv *priv = netdev_priv(ndev);
938         u32 int_ctrl;
939         u32 num_interrupts = 0;
940         u32 prescale = 0;
941         u32 addnl_dvdr = 1;
942         u32 coal_intvl = 0;
943
944         coal_intvl = coal->rx_coalesce_usecs;
945
946         int_ctrl =  readl(&priv->wr_regs->int_control);
947         prescale = priv->bus_freq_mhz * 4;
948
949         if (!coal->rx_coalesce_usecs) {
950                 int_ctrl &= ~(CPSW_INTPRESCALE_MASK | CPSW_INTPACEEN);
951                 goto update_return;
952         }
953
954         if (coal_intvl < CPSW_CMINTMIN_INTVL)
955                 coal_intvl = CPSW_CMINTMIN_INTVL;
956
957         if (coal_intvl > CPSW_CMINTMAX_INTVL) {
958                 /* Interrupt pacer works with 4us Pulse, we can
959                  * throttle further by dilating the 4us pulse.
960                  */
961                 addnl_dvdr = CPSW_INTPRESCALE_MASK / prescale;
962
963                 if (addnl_dvdr > 1) {
964                         prescale *= addnl_dvdr;
965                         if (coal_intvl > (CPSW_CMINTMAX_INTVL * addnl_dvdr))
966                                 coal_intvl = (CPSW_CMINTMAX_INTVL
967                                                 * addnl_dvdr);
968                 } else {
969                         addnl_dvdr = 1;
970                         coal_intvl = CPSW_CMINTMAX_INTVL;
971                 }
972         }
973
974         num_interrupts = (1000 * addnl_dvdr) / coal_intvl;
975         writel(num_interrupts, &priv->wr_regs->rx_imax);
976         writel(num_interrupts, &priv->wr_regs->tx_imax);
977
978         int_ctrl |= CPSW_INTPACEEN;
979         int_ctrl &= (~CPSW_INTPRESCALE_MASK);
980         int_ctrl |= (prescale & CPSW_INTPRESCALE_MASK);
981
982 update_return:
983         writel(int_ctrl, &priv->wr_regs->int_control);
984
985         cpsw_notice(priv, timer, "Set coalesce to %d usecs.\n", coal_intvl);
986         if (priv->data.dual_emac) {
987                 int i;
988
989                 for (i = 0; i < priv->data.slaves; i++) {
990                         priv = netdev_priv(priv->slaves[i].ndev);
991                         priv->coal_intvl = coal_intvl;
992                 }
993         } else {
994                 priv->coal_intvl = coal_intvl;
995         }
996
997         return 0;
998 }
999
1000 static int cpsw_get_sset_count(struct net_device *ndev, int sset)
1001 {
1002         switch (sset) {
1003         case ETH_SS_STATS:
1004                 return CPSW_STATS_LEN;
1005         default:
1006                 return -EOPNOTSUPP;
1007         }
1008 }
1009
1010 static void cpsw_get_strings(struct net_device *ndev, u32 stringset, u8 *data)
1011 {
1012         u8 *p = data;
1013         int i;
1014
1015         switch (stringset) {
1016         case ETH_SS_STATS:
1017                 for (i = 0; i < CPSW_STATS_LEN; i++) {
1018                         memcpy(p, cpsw_gstrings_stats[i].stat_string,
1019                                ETH_GSTRING_LEN);
1020                         p += ETH_GSTRING_LEN;
1021                 }
1022                 break;
1023         }
1024 }
1025
1026 static void cpsw_get_ethtool_stats(struct net_device *ndev,
1027                                     struct ethtool_stats *stats, u64 *data)
1028 {
1029         struct cpsw_priv *priv = netdev_priv(ndev);
1030         struct cpdma_chan_stats rx_stats;
1031         struct cpdma_chan_stats tx_stats;
1032         u32 val;
1033         u8 *p;
1034         int i;
1035
1036         /* Collect Davinci CPDMA stats for Rx and Tx Channel */
1037         cpdma_chan_get_stats(priv->rxch, &rx_stats);
1038         cpdma_chan_get_stats(priv->txch, &tx_stats);
1039
1040         for (i = 0; i < CPSW_STATS_LEN; i++) {
1041                 switch (cpsw_gstrings_stats[i].type) {
1042                 case CPSW_STATS:
1043                         val = readl(priv->hw_stats +
1044                                     cpsw_gstrings_stats[i].stat_offset);
1045                         data[i] = val;
1046                         break;
1047
1048                 case CPDMA_RX_STATS:
1049                         p = (u8 *)&rx_stats +
1050                                 cpsw_gstrings_stats[i].stat_offset;
1051                         data[i] = *(u32 *)p;
1052                         break;
1053
1054                 case CPDMA_TX_STATS:
1055                         p = (u8 *)&tx_stats +
1056                                 cpsw_gstrings_stats[i].stat_offset;
1057                         data[i] = *(u32 *)p;
1058                         break;
1059                 }
1060         }
1061 }
1062
1063 static int cpsw_common_res_usage_state(struct cpsw_priv *priv)
1064 {
1065         u32 i;
1066         u32 usage_count = 0;
1067
1068         if (!priv->data.dual_emac)
1069                 return 0;
1070
1071         for (i = 0; i < priv->data.slaves; i++)
1072                 if (priv->slaves[i].open_stat)
1073                         usage_count++;
1074
1075         return usage_count;
1076 }
1077
1078 static inline int cpsw_tx_packet_submit(struct net_device *ndev,
1079                         struct cpsw_priv *priv, struct sk_buff *skb)
1080 {
1081         if (!priv->data.dual_emac)
1082                 return cpdma_chan_submit(priv->txch, skb, skb->data,
1083                                   skb->len, 0);
1084
1085         if (ndev == cpsw_get_slave_ndev(priv, 0))
1086                 return cpdma_chan_submit(priv->txch, skb, skb->data,
1087                                   skb->len, 1);
1088         else
1089                 return cpdma_chan_submit(priv->txch, skb, skb->data,
1090                                   skb->len, 2);
1091 }
1092
1093 static inline void cpsw_add_dual_emac_def_ale_entries(
1094                 struct cpsw_priv *priv, struct cpsw_slave *slave,
1095                 u32 slave_port)
1096 {
1097         u32 port_mask = 1 << slave_port | 1 << priv->host_port;
1098
1099         if (priv->version == CPSW_VERSION_1)
1100                 slave_write(slave, slave->port_vlan, CPSW1_PORT_VLAN);
1101         else
1102                 slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN);
1103         cpsw_ale_add_vlan(priv->ale, slave->port_vlan, port_mask,
1104                           port_mask, port_mask, 0);
1105         cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1106                            port_mask, ALE_VLAN, slave->port_vlan, 0);
1107         cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
1108                 priv->host_port, ALE_VLAN | ALE_SECURE, slave->port_vlan);
1109 }
1110
1111 static void soft_reset_slave(struct cpsw_slave *slave)
1112 {
1113         char name[32];
1114
1115         snprintf(name, sizeof(name), "slave-%d", slave->slave_num);
1116         soft_reset(name, &slave->sliver->soft_reset);
1117 }
1118
1119 static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
1120 {
1121         u32 slave_port;
1122
1123         soft_reset_slave(slave);
1124
1125         /* setup priority mapping */
1126         __raw_writel(RX_PRIORITY_MAPPING, &slave->sliver->rx_pri_map);
1127
1128         switch (priv->version) {
1129         case CPSW_VERSION_1:
1130                 slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP);
1131                 break;
1132         case CPSW_VERSION_2:
1133         case CPSW_VERSION_3:
1134         case CPSW_VERSION_4:
1135                 slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP);
1136                 break;
1137         }
1138
1139         /* setup max packet size, and mac address */
1140         __raw_writel(priv->rx_packet_max, &slave->sliver->rx_maxlen);
1141         cpsw_set_slave_mac(slave, priv);
1142
1143         slave->mac_control = 0; /* no link yet */
1144
1145         slave_port = cpsw_get_slave_port(priv, slave->slave_num);
1146
1147         if (priv->data.dual_emac)
1148                 cpsw_add_dual_emac_def_ale_entries(priv, slave, slave_port);
1149         else
1150                 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1151                                    1 << slave_port, 0, 0, ALE_MCAST_FWD_2);
1152
1153         slave->phy = phy_connect(priv->ndev, slave->data->phy_id,
1154                                  &cpsw_adjust_link, slave->data->phy_if);
1155         if (IS_ERR(slave->phy)) {
1156                 dev_err(priv->dev, "phy %s not found on slave %d\n",
1157                         slave->data->phy_id, slave->slave_num);
1158                 slave->phy = NULL;
1159         } else {
1160                 dev_info(priv->dev, "phy found : id is : 0x%x\n",
1161                          slave->phy->phy_id);
1162                 phy_start(slave->phy);
1163
1164                 /* Configure GMII_SEL register */
1165                 cpsw_phy_sel(&priv->pdev->dev, slave->phy->interface,
1166                              slave->slave_num);
1167         }
1168 }
1169
1170 static inline void cpsw_add_default_vlan(struct cpsw_priv *priv)
1171 {
1172         const int vlan = priv->data.default_vlan;
1173         const int port = priv->host_port;
1174         u32 reg;
1175         int i;
1176         int unreg_mcast_mask;
1177
1178         reg = (priv->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN :
1179                CPSW2_PORT_VLAN;
1180
1181         writel(vlan, &priv->host_port_regs->port_vlan);
1182
1183         for (i = 0; i < priv->data.slaves; i++)
1184                 slave_write(priv->slaves + i, vlan, reg);
1185
1186         if (priv->ndev->flags & IFF_ALLMULTI)
1187                 unreg_mcast_mask = ALE_ALL_PORTS;
1188         else
1189                 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
1190
1191         cpsw_ale_add_vlan(priv->ale, vlan, ALE_ALL_PORTS << port,
1192                           ALE_ALL_PORTS << port, ALE_ALL_PORTS << port,
1193                           unreg_mcast_mask << port);
1194 }
1195
1196 static void cpsw_init_host_port(struct cpsw_priv *priv)
1197 {
1198         u32 control_reg;
1199         u32 fifo_mode;
1200
1201         /* soft reset the controller and initialize ale */
1202         soft_reset("cpsw", &priv->regs->soft_reset);
1203         cpsw_ale_start(priv->ale);
1204
1205         /* switch to vlan unaware mode */
1206         cpsw_ale_control_set(priv->ale, priv->host_port, ALE_VLAN_AWARE,
1207                              CPSW_ALE_VLAN_AWARE);
1208         control_reg = readl(&priv->regs->control);
1209         control_reg |= CPSW_VLAN_AWARE;
1210         writel(control_reg, &priv->regs->control);
1211         fifo_mode = (priv->data.dual_emac) ? CPSW_FIFO_DUAL_MAC_MODE :
1212                      CPSW_FIFO_NORMAL_MODE;
1213         writel(fifo_mode, &priv->host_port_regs->tx_in_ctl);
1214
1215         /* setup host port priority mapping */
1216         __raw_writel(CPDMA_TX_PRIORITY_MAP,
1217                      &priv->host_port_regs->cpdma_tx_pri_map);
1218         __raw_writel(0, &priv->host_port_regs->cpdma_rx_chan_map);
1219
1220         cpsw_ale_control_set(priv->ale, priv->host_port,
1221                              ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
1222
1223         if (!priv->data.dual_emac) {
1224                 cpsw_ale_add_ucast(priv->ale, priv->mac_addr, priv->host_port,
1225                                    0, 0);
1226                 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1227                                    1 << priv->host_port, 0, 0, ALE_MCAST_FWD_2);
1228         }
1229 }
1230
1231 static void cpsw_slave_stop(struct cpsw_slave *slave, struct cpsw_priv *priv)
1232 {
1233         u32 slave_port;
1234
1235         slave_port = cpsw_get_slave_port(priv, slave->slave_num);
1236
1237         if (!slave->phy)
1238                 return;
1239         phy_stop(slave->phy);
1240         phy_disconnect(slave->phy);
1241         slave->phy = NULL;
1242         cpsw_ale_control_set(priv->ale, slave_port,
1243                              ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
1244 }
1245
1246 static int cpsw_ndo_open(struct net_device *ndev)
1247 {
1248         struct cpsw_priv *priv = netdev_priv(ndev);
1249         struct cpsw_priv *prim_cpsw;
1250         int i, ret;
1251         u32 reg;
1252
1253         if (!cpsw_common_res_usage_state(priv))
1254                 cpsw_intr_disable(priv);
1255         netif_carrier_off(ndev);
1256
1257         pm_runtime_get_sync(&priv->pdev->dev);
1258
1259         reg = priv->version;
1260
1261         dev_info(priv->dev, "initializing cpsw version %d.%d (%d)\n",
1262                  CPSW_MAJOR_VERSION(reg), CPSW_MINOR_VERSION(reg),
1263                  CPSW_RTL_VERSION(reg));
1264
1265         /* initialize host and slave ports */
1266         if (!cpsw_common_res_usage_state(priv))
1267                 cpsw_init_host_port(priv);
1268         for_each_slave(priv, cpsw_slave_open, priv);
1269
1270         /* Add default VLAN */
1271         if (!priv->data.dual_emac)
1272                 cpsw_add_default_vlan(priv);
1273         else
1274                 cpsw_ale_add_vlan(priv->ale, priv->data.default_vlan,
1275                                   ALE_ALL_PORTS << priv->host_port,
1276                                   ALE_ALL_PORTS << priv->host_port, 0, 0);
1277
1278         if (!cpsw_common_res_usage_state(priv)) {
1279                 /* setup tx dma to fixed prio and zero offset */
1280                 cpdma_control_set(priv->dma, CPDMA_TX_PRIO_FIXED, 1);
1281                 cpdma_control_set(priv->dma, CPDMA_RX_BUFFER_OFFSET, 0);
1282
1283                 /* disable priority elevation */
1284                 __raw_writel(0, &priv->regs->ptype);
1285
1286                 /* enable statistics collection only on all ports */
1287                 __raw_writel(0x7, &priv->regs->stat_port_en);
1288
1289                 /* Enable internal fifo flow control */
1290                 writel(0x7, &priv->regs->flow_control);
1291
1292                 if (WARN_ON(!priv->data.rx_descs))
1293                         priv->data.rx_descs = 128;
1294
1295                 for (i = 0; i < priv->data.rx_descs; i++) {
1296                         struct sk_buff *skb;
1297
1298                         ret = -ENOMEM;
1299                         skb = __netdev_alloc_skb_ip_align(priv->ndev,
1300                                         priv->rx_packet_max, GFP_KERNEL);
1301                         if (!skb)
1302                                 goto err_cleanup;
1303                         ret = cpdma_chan_submit(priv->rxch, skb, skb->data,
1304                                         skb_tailroom(skb), 0);
1305                         if (ret < 0) {
1306                                 kfree_skb(skb);
1307                                 goto err_cleanup;
1308                         }
1309                 }
1310                 /* continue even if we didn't manage to submit all
1311                  * receive descs
1312                  */
1313                 cpsw_info(priv, ifup, "submitted %d rx descriptors\n", i);
1314
1315                 if (cpts_register(&priv->pdev->dev, priv->cpts,
1316                                   priv->data.cpts_clock_mult,
1317                                   priv->data.cpts_clock_shift))
1318                         dev_err(priv->dev, "error registering cpts device\n");
1319
1320         }
1321
1322         /* Enable Interrupt pacing if configured */
1323         if (priv->coal_intvl != 0) {
1324                 struct ethtool_coalesce coal;
1325
1326                 coal.rx_coalesce_usecs = (priv->coal_intvl << 4);
1327                 cpsw_set_coalesce(ndev, &coal);
1328         }
1329
1330         napi_enable(&priv->napi);
1331         cpdma_ctlr_start(priv->dma);
1332         cpsw_intr_enable(priv);
1333
1334         prim_cpsw = cpsw_get_slave_priv(priv, 0);
1335         if (prim_cpsw->irq_enabled == false) {
1336                 if ((priv == prim_cpsw) || !netif_running(prim_cpsw->ndev)) {
1337                         prim_cpsw->irq_enabled = true;
1338                         cpsw_enable_irq(prim_cpsw);
1339                 }
1340         }
1341
1342         if (priv->data.dual_emac)
1343                 priv->slaves[priv->emac_port].open_stat = true;
1344         return 0;
1345
1346 err_cleanup:
1347         cpdma_ctlr_stop(priv->dma);
1348         for_each_slave(priv, cpsw_slave_stop, priv);
1349         pm_runtime_put_sync(&priv->pdev->dev);
1350         netif_carrier_off(priv->ndev);
1351         return ret;
1352 }
1353
1354 static int cpsw_ndo_stop(struct net_device *ndev)
1355 {
1356         struct cpsw_priv *priv = netdev_priv(ndev);
1357
1358         cpsw_info(priv, ifdown, "shutting down cpsw device\n");
1359         netif_stop_queue(priv->ndev);
1360         napi_disable(&priv->napi);
1361         netif_carrier_off(priv->ndev);
1362
1363         if (cpsw_common_res_usage_state(priv) <= 1) {
1364                 cpts_unregister(priv->cpts);
1365                 cpsw_intr_disable(priv);
1366                 cpdma_ctlr_stop(priv->dma);
1367                 cpsw_ale_stop(priv->ale);
1368         }
1369         for_each_slave(priv, cpsw_slave_stop, priv);
1370         pm_runtime_put_sync(&priv->pdev->dev);
1371         if (priv->data.dual_emac)
1372                 priv->slaves[priv->emac_port].open_stat = false;
1373         return 0;
1374 }
1375
1376 static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb,
1377                                        struct net_device *ndev)
1378 {
1379         struct cpsw_priv *priv = netdev_priv(ndev);
1380         int ret;
1381
1382         ndev->trans_start = jiffies;
1383
1384         if (skb_padto(skb, CPSW_MIN_PACKET_SIZE)) {
1385                 cpsw_err(priv, tx_err, "packet pad failed\n");
1386                 ndev->stats.tx_dropped++;
1387                 return NETDEV_TX_OK;
1388         }
1389
1390         if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
1391                                 priv->cpts->tx_enable)
1392                 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1393
1394         skb_tx_timestamp(skb);
1395
1396         ret = cpsw_tx_packet_submit(ndev, priv, skb);
1397         if (unlikely(ret != 0)) {
1398                 cpsw_err(priv, tx_err, "desc submit failed\n");
1399                 goto fail;
1400         }
1401
1402         /* If there is no more tx desc left free then we need to
1403          * tell the kernel to stop sending us tx frames.
1404          */
1405         if (unlikely(!cpdma_check_free_tx_desc(priv->txch)))
1406                 netif_stop_queue(ndev);
1407
1408         return NETDEV_TX_OK;
1409 fail:
1410         ndev->stats.tx_dropped++;
1411         netif_stop_queue(ndev);
1412         return NETDEV_TX_BUSY;
1413 }
1414
1415 #ifdef CONFIG_TI_CPTS
1416
1417 static void cpsw_hwtstamp_v1(struct cpsw_priv *priv)
1418 {
1419         struct cpsw_slave *slave = &priv->slaves[priv->data.active_slave];
1420         u32 ts_en, seq_id;
1421
1422         if (!priv->cpts->tx_enable && !priv->cpts->rx_enable) {
1423                 slave_write(slave, 0, CPSW1_TS_CTL);
1424                 return;
1425         }
1426
1427         seq_id = (30 << CPSW_V1_SEQ_ID_OFS_SHIFT) | ETH_P_1588;
1428         ts_en = EVENT_MSG_BITS << CPSW_V1_MSG_TYPE_OFS;
1429
1430         if (priv->cpts->tx_enable)
1431                 ts_en |= CPSW_V1_TS_TX_EN;
1432
1433         if (priv->cpts->rx_enable)
1434                 ts_en |= CPSW_V1_TS_RX_EN;
1435
1436         slave_write(slave, ts_en, CPSW1_TS_CTL);
1437         slave_write(slave, seq_id, CPSW1_TS_SEQ_LTYPE);
1438 }
1439
1440 static void cpsw_hwtstamp_v2(struct cpsw_priv *priv)
1441 {
1442         struct cpsw_slave *slave;
1443         u32 ctrl, mtype;
1444
1445         if (priv->data.dual_emac)
1446                 slave = &priv->slaves[priv->emac_port];
1447         else
1448                 slave = &priv->slaves[priv->data.active_slave];
1449
1450         ctrl = slave_read(slave, CPSW2_CONTROL);
1451         switch (priv->version) {
1452         case CPSW_VERSION_2:
1453                 ctrl &= ~CTRL_V2_ALL_TS_MASK;
1454
1455                 if (priv->cpts->tx_enable)
1456                         ctrl |= CTRL_V2_TX_TS_BITS;
1457
1458                 if (priv->cpts->rx_enable)
1459                         ctrl |= CTRL_V2_RX_TS_BITS;
1460                 break;
1461         case CPSW_VERSION_3:
1462         default:
1463                 ctrl &= ~CTRL_V3_ALL_TS_MASK;
1464
1465                 if (priv->cpts->tx_enable)
1466                         ctrl |= CTRL_V3_TX_TS_BITS;
1467
1468                 if (priv->cpts->rx_enable)
1469                         ctrl |= CTRL_V3_RX_TS_BITS;
1470                 break;
1471         }
1472
1473         mtype = (30 << TS_SEQ_ID_OFFSET_SHIFT) | EVENT_MSG_BITS;
1474
1475         slave_write(slave, mtype, CPSW2_TS_SEQ_MTYPE);
1476         slave_write(slave, ctrl, CPSW2_CONTROL);
1477         __raw_writel(ETH_P_1588, &priv->regs->ts_ltype);
1478 }
1479
1480 static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr)
1481 {
1482         struct cpsw_priv *priv = netdev_priv(dev);
1483         struct cpts *cpts = priv->cpts;
1484         struct hwtstamp_config cfg;
1485
1486         if (priv->version != CPSW_VERSION_1 &&
1487             priv->version != CPSW_VERSION_2 &&
1488             priv->version != CPSW_VERSION_3)
1489                 return -EOPNOTSUPP;
1490
1491         if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1492                 return -EFAULT;
1493
1494         /* reserved for future extensions */
1495         if (cfg.flags)
1496                 return -EINVAL;
1497
1498         if (cfg.tx_type != HWTSTAMP_TX_OFF && cfg.tx_type != HWTSTAMP_TX_ON)
1499                 return -ERANGE;
1500
1501         switch (cfg.rx_filter) {
1502         case HWTSTAMP_FILTER_NONE:
1503                 cpts->rx_enable = 0;
1504                 break;
1505         case HWTSTAMP_FILTER_ALL:
1506         case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1507         case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1508         case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
1509                 return -ERANGE;
1510         case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1511         case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1512         case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1513         case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1514         case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1515         case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1516         case HWTSTAMP_FILTER_PTP_V2_EVENT:
1517         case HWTSTAMP_FILTER_PTP_V2_SYNC:
1518         case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
1519                 cpts->rx_enable = 1;
1520                 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
1521                 break;
1522         default:
1523                 return -ERANGE;
1524         }
1525
1526         cpts->tx_enable = cfg.tx_type == HWTSTAMP_TX_ON;
1527
1528         switch (priv->version) {
1529         case CPSW_VERSION_1:
1530                 cpsw_hwtstamp_v1(priv);
1531                 break;
1532         case CPSW_VERSION_2:
1533         case CPSW_VERSION_3:
1534                 cpsw_hwtstamp_v2(priv);
1535                 break;
1536         default:
1537                 WARN_ON(1);
1538         }
1539
1540         return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1541 }
1542
1543 static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr)
1544 {
1545         struct cpsw_priv *priv = netdev_priv(dev);
1546         struct cpts *cpts = priv->cpts;
1547         struct hwtstamp_config cfg;
1548
1549         if (priv->version != CPSW_VERSION_1 &&
1550             priv->version != CPSW_VERSION_2 &&
1551             priv->version != CPSW_VERSION_3)
1552                 return -EOPNOTSUPP;
1553
1554         cfg.flags = 0;
1555         cfg.tx_type = cpts->tx_enable ? HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
1556         cfg.rx_filter = (cpts->rx_enable ?
1557                          HWTSTAMP_FILTER_PTP_V2_EVENT : HWTSTAMP_FILTER_NONE);
1558
1559         return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1560 }
1561
1562 #endif /*CONFIG_TI_CPTS*/
1563
1564 static int cpsw_ndo_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
1565 {
1566         struct cpsw_priv *priv = netdev_priv(dev);
1567         int slave_no = cpsw_slave_index(priv);
1568
1569         if (!netif_running(dev))
1570                 return -EINVAL;
1571
1572         switch (cmd) {
1573 #ifdef CONFIG_TI_CPTS
1574         case SIOCSHWTSTAMP:
1575                 return cpsw_hwtstamp_set(dev, req);
1576         case SIOCGHWTSTAMP:
1577                 return cpsw_hwtstamp_get(dev, req);
1578 #endif
1579         }
1580
1581         if (!priv->slaves[slave_no].phy)
1582                 return -EOPNOTSUPP;
1583         return phy_mii_ioctl(priv->slaves[slave_no].phy, req, cmd);
1584 }
1585
1586 static void cpsw_ndo_tx_timeout(struct net_device *ndev)
1587 {
1588         struct cpsw_priv *priv = netdev_priv(ndev);
1589
1590         cpsw_err(priv, tx_err, "transmit timeout, restarting dma\n");
1591         ndev->stats.tx_errors++;
1592         cpsw_intr_disable(priv);
1593         cpdma_chan_stop(priv->txch);
1594         cpdma_chan_start(priv->txch);
1595         cpsw_intr_enable(priv);
1596 }
1597
1598 static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p)
1599 {
1600         struct cpsw_priv *priv = netdev_priv(ndev);
1601         struct sockaddr *addr = (struct sockaddr *)p;
1602         int flags = 0;
1603         u16 vid = 0;
1604
1605         if (!is_valid_ether_addr(addr->sa_data))
1606                 return -EADDRNOTAVAIL;
1607
1608         if (priv->data.dual_emac) {
1609                 vid = priv->slaves[priv->emac_port].port_vlan;
1610                 flags = ALE_VLAN;
1611         }
1612
1613         cpsw_ale_del_ucast(priv->ale, priv->mac_addr, priv->host_port,
1614                            flags, vid);
1615         cpsw_ale_add_ucast(priv->ale, addr->sa_data, priv->host_port,
1616                            flags, vid);
1617
1618         memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
1619         memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
1620         for_each_slave(priv, cpsw_set_slave_mac, priv);
1621
1622         return 0;
1623 }
1624
1625 #ifdef CONFIG_NET_POLL_CONTROLLER
1626 static void cpsw_ndo_poll_controller(struct net_device *ndev)
1627 {
1628         struct cpsw_priv *priv = netdev_priv(ndev);
1629
1630         cpsw_intr_disable(priv);
1631         cpsw_rx_interrupt(priv->irqs_table[0], priv);
1632         cpsw_tx_interrupt(priv->irqs_table[1], priv);
1633         cpsw_intr_enable(priv);
1634 }
1635 #endif
1636
1637 static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv,
1638                                 unsigned short vid)
1639 {
1640         int ret;
1641         int unreg_mcast_mask = 0;
1642         u32 port_mask;
1643
1644         if (priv->data.dual_emac) {
1645                 port_mask = (1 << (priv->emac_port + 1)) | ALE_PORT_HOST;
1646
1647                 if (priv->ndev->flags & IFF_ALLMULTI)
1648                         unreg_mcast_mask = port_mask;
1649         } else {
1650                 port_mask = ALE_ALL_PORTS;
1651
1652                 if (priv->ndev->flags & IFF_ALLMULTI)
1653                         unreg_mcast_mask = ALE_ALL_PORTS;
1654                 else
1655                         unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
1656         }
1657
1658         ret = cpsw_ale_add_vlan(priv->ale, vid, port_mask, 0, port_mask,
1659                                 unreg_mcast_mask << priv->host_port);
1660         if (ret != 0)
1661                 return ret;
1662
1663         ret = cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
1664                                  priv->host_port, ALE_VLAN, vid);
1665         if (ret != 0)
1666                 goto clean_vid;
1667
1668         ret = cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1669                                  port_mask, ALE_VLAN, vid, 0);
1670         if (ret != 0)
1671                 goto clean_vlan_ucast;
1672         return 0;
1673
1674 clean_vlan_ucast:
1675         cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
1676                             priv->host_port, ALE_VLAN, vid);
1677 clean_vid:
1678         cpsw_ale_del_vlan(priv->ale, vid, 0);
1679         return ret;
1680 }
1681
1682 static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev,
1683                                     __be16 proto, u16 vid)
1684 {
1685         struct cpsw_priv *priv = netdev_priv(ndev);
1686
1687         if (vid == priv->data.default_vlan)
1688                 return 0;
1689
1690         if (priv->data.dual_emac) {
1691                 /* In dual EMAC, reserved VLAN id should not be used for
1692                  * creating VLAN interfaces as this can break the dual
1693                  * EMAC port separation
1694                  */
1695                 int i;
1696
1697                 for (i = 0; i < priv->data.slaves; i++) {
1698                         if (vid == priv->slaves[i].port_vlan)
1699                                 return -EINVAL;
1700                 }
1701         }
1702
1703         dev_info(priv->dev, "Adding vlanid %d to vlan filter\n", vid);
1704         return cpsw_add_vlan_ale_entry(priv, vid);
1705 }
1706
1707 static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev,
1708                                      __be16 proto, u16 vid)
1709 {
1710         struct cpsw_priv *priv = netdev_priv(ndev);
1711         int ret;
1712
1713         if (vid == priv->data.default_vlan)
1714                 return 0;
1715
1716         if (priv->data.dual_emac) {
1717                 int i;
1718
1719                 for (i = 0; i < priv->data.slaves; i++) {
1720                         if (vid == priv->slaves[i].port_vlan)
1721                                 return -EINVAL;
1722                 }
1723         }
1724
1725         dev_info(priv->dev, "removing vlanid %d from vlan filter\n", vid);
1726         ret = cpsw_ale_del_vlan(priv->ale, vid, 0);
1727         if (ret != 0)
1728                 return ret;
1729
1730         ret = cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
1731                                  priv->host_port, ALE_VLAN, vid);
1732         if (ret != 0)
1733                 return ret;
1734
1735         return cpsw_ale_del_mcast(priv->ale, priv->ndev->broadcast,
1736                                   0, ALE_VLAN, vid);
1737 }
1738
1739 static const struct net_device_ops cpsw_netdev_ops = {
1740         .ndo_open               = cpsw_ndo_open,
1741         .ndo_stop               = cpsw_ndo_stop,
1742         .ndo_start_xmit         = cpsw_ndo_start_xmit,
1743         .ndo_set_mac_address    = cpsw_ndo_set_mac_address,
1744         .ndo_do_ioctl           = cpsw_ndo_ioctl,
1745         .ndo_validate_addr      = eth_validate_addr,
1746         .ndo_change_mtu         = eth_change_mtu,
1747         .ndo_tx_timeout         = cpsw_ndo_tx_timeout,
1748         .ndo_set_rx_mode        = cpsw_ndo_set_rx_mode,
1749 #ifdef CONFIG_NET_POLL_CONTROLLER
1750         .ndo_poll_controller    = cpsw_ndo_poll_controller,
1751 #endif
1752         .ndo_vlan_rx_add_vid    = cpsw_ndo_vlan_rx_add_vid,
1753         .ndo_vlan_rx_kill_vid   = cpsw_ndo_vlan_rx_kill_vid,
1754 };
1755
1756 static int cpsw_get_regs_len(struct net_device *ndev)
1757 {
1758         struct cpsw_priv *priv = netdev_priv(ndev);
1759
1760         return priv->data.ale_entries * ALE_ENTRY_WORDS * sizeof(u32);
1761 }
1762
1763 static void cpsw_get_regs(struct net_device *ndev,
1764                           struct ethtool_regs *regs, void *p)
1765 {
1766         struct cpsw_priv *priv = netdev_priv(ndev);
1767         u32 *reg = p;
1768
1769         /* update CPSW IP version */
1770         regs->version = priv->version;
1771
1772         cpsw_ale_dump(priv->ale, reg);
1773 }
1774
1775 static void cpsw_get_drvinfo(struct net_device *ndev,
1776                              struct ethtool_drvinfo *info)
1777 {
1778         struct cpsw_priv *priv = netdev_priv(ndev);
1779
1780         strlcpy(info->driver, "cpsw", sizeof(info->driver));
1781         strlcpy(info->version, "1.0", sizeof(info->version));
1782         strlcpy(info->bus_info, priv->pdev->name, sizeof(info->bus_info));
1783         info->regdump_len = cpsw_get_regs_len(ndev);
1784 }
1785
1786 static u32 cpsw_get_msglevel(struct net_device *ndev)
1787 {
1788         struct cpsw_priv *priv = netdev_priv(ndev);
1789         return priv->msg_enable;
1790 }
1791
1792 static void cpsw_set_msglevel(struct net_device *ndev, u32 value)
1793 {
1794         struct cpsw_priv *priv = netdev_priv(ndev);
1795         priv->msg_enable = value;
1796 }
1797
1798 static int cpsw_get_ts_info(struct net_device *ndev,
1799                             struct ethtool_ts_info *info)
1800 {
1801 #ifdef CONFIG_TI_CPTS
1802         struct cpsw_priv *priv = netdev_priv(ndev);
1803
1804         info->so_timestamping =
1805                 SOF_TIMESTAMPING_TX_HARDWARE |
1806                 SOF_TIMESTAMPING_TX_SOFTWARE |
1807                 SOF_TIMESTAMPING_RX_HARDWARE |
1808                 SOF_TIMESTAMPING_RX_SOFTWARE |
1809                 SOF_TIMESTAMPING_SOFTWARE |
1810                 SOF_TIMESTAMPING_RAW_HARDWARE;
1811         info->phc_index = priv->cpts->phc_index;
1812         info->tx_types =
1813                 (1 << HWTSTAMP_TX_OFF) |
1814                 (1 << HWTSTAMP_TX_ON);
1815         info->rx_filters =
1816                 (1 << HWTSTAMP_FILTER_NONE) |
1817                 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT);
1818 #else
1819         info->so_timestamping =
1820                 SOF_TIMESTAMPING_TX_SOFTWARE |
1821                 SOF_TIMESTAMPING_RX_SOFTWARE |
1822                 SOF_TIMESTAMPING_SOFTWARE;
1823         info->phc_index = -1;
1824         info->tx_types = 0;
1825         info->rx_filters = 0;
1826 #endif
1827         return 0;
1828 }
1829
1830 static int cpsw_get_settings(struct net_device *ndev,
1831                              struct ethtool_cmd *ecmd)
1832 {
1833         struct cpsw_priv *priv = netdev_priv(ndev);
1834         int slave_no = cpsw_slave_index(priv);
1835
1836         if (priv->slaves[slave_no].phy)
1837                 return phy_ethtool_gset(priv->slaves[slave_no].phy, ecmd);
1838         else
1839                 return -EOPNOTSUPP;
1840 }
1841
1842 static int cpsw_set_settings(struct net_device *ndev, struct ethtool_cmd *ecmd)
1843 {
1844         struct cpsw_priv *priv = netdev_priv(ndev);
1845         int slave_no = cpsw_slave_index(priv);
1846
1847         if (priv->slaves[slave_no].phy)
1848                 return phy_ethtool_sset(priv->slaves[slave_no].phy, ecmd);
1849         else
1850                 return -EOPNOTSUPP;
1851 }
1852
1853 static void cpsw_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
1854 {
1855         struct cpsw_priv *priv = netdev_priv(ndev);
1856         int slave_no = cpsw_slave_index(priv);
1857
1858         wol->supported = 0;
1859         wol->wolopts = 0;
1860
1861         if (priv->slaves[slave_no].phy)
1862                 phy_ethtool_get_wol(priv->slaves[slave_no].phy, wol);
1863 }
1864
1865 static int cpsw_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
1866 {
1867         struct cpsw_priv *priv = netdev_priv(ndev);
1868         int slave_no = cpsw_slave_index(priv);
1869
1870         if (priv->slaves[slave_no].phy)
1871                 return phy_ethtool_set_wol(priv->slaves[slave_no].phy, wol);
1872         else
1873                 return -EOPNOTSUPP;
1874 }
1875
1876 static void cpsw_get_pauseparam(struct net_device *ndev,
1877                                 struct ethtool_pauseparam *pause)
1878 {
1879         struct cpsw_priv *priv = netdev_priv(ndev);
1880
1881         pause->autoneg = AUTONEG_DISABLE;
1882         pause->rx_pause = priv->rx_pause ? true : false;
1883         pause->tx_pause = priv->tx_pause ? true : false;
1884 }
1885
1886 static int cpsw_set_pauseparam(struct net_device *ndev,
1887                                struct ethtool_pauseparam *pause)
1888 {
1889         struct cpsw_priv *priv = netdev_priv(ndev);
1890         bool link;
1891
1892         priv->rx_pause = pause->rx_pause ? true : false;
1893         priv->tx_pause = pause->tx_pause ? true : false;
1894
1895         for_each_slave(priv, _cpsw_adjust_link, priv, &link);
1896
1897         return 0;
1898 }
1899
1900 static const struct ethtool_ops cpsw_ethtool_ops = {
1901         .get_drvinfo    = cpsw_get_drvinfo,
1902         .get_msglevel   = cpsw_get_msglevel,
1903         .set_msglevel   = cpsw_set_msglevel,
1904         .get_link       = ethtool_op_get_link,
1905         .get_ts_info    = cpsw_get_ts_info,
1906         .get_settings   = cpsw_get_settings,
1907         .set_settings   = cpsw_set_settings,
1908         .get_coalesce   = cpsw_get_coalesce,
1909         .set_coalesce   = cpsw_set_coalesce,
1910         .get_sset_count         = cpsw_get_sset_count,
1911         .get_strings            = cpsw_get_strings,
1912         .get_ethtool_stats      = cpsw_get_ethtool_stats,
1913         .get_pauseparam         = cpsw_get_pauseparam,
1914         .set_pauseparam         = cpsw_set_pauseparam,
1915         .get_wol        = cpsw_get_wol,
1916         .set_wol        = cpsw_set_wol,
1917         .get_regs_len   = cpsw_get_regs_len,
1918         .get_regs       = cpsw_get_regs,
1919 };
1920
1921 static void cpsw_slave_init(struct cpsw_slave *slave, struct cpsw_priv *priv,
1922                             u32 slave_reg_ofs, u32 sliver_reg_ofs)
1923 {
1924         void __iomem            *regs = priv->regs;
1925         int                     slave_num = slave->slave_num;
1926         struct cpsw_slave_data  *data = priv->data.slave_data + slave_num;
1927
1928         slave->data     = data;
1929         slave->regs     = regs + slave_reg_ofs;
1930         slave->sliver   = regs + sliver_reg_ofs;
1931         slave->port_vlan = data->dual_emac_res_vlan;
1932 }
1933
1934 static int cpsw_probe_dt(struct cpsw_platform_data *data,
1935                          struct platform_device *pdev)
1936 {
1937         struct device_node *node = pdev->dev.of_node;
1938         struct device_node *slave_node;
1939         int i = 0, ret;
1940         u32 prop;
1941
1942         if (!node)
1943                 return -EINVAL;
1944
1945         if (of_property_read_u32(node, "slaves", &prop)) {
1946                 dev_err(&pdev->dev, "Missing slaves property in the DT.\n");
1947                 return -EINVAL;
1948         }
1949         data->slaves = prop;
1950
1951         if (of_property_read_u32(node, "active_slave", &prop)) {
1952                 dev_err(&pdev->dev, "Missing active_slave property in the DT.\n");
1953                 return -EINVAL;
1954         }
1955         data->active_slave = prop;
1956
1957         if (of_property_read_u32(node, "cpts_clock_mult", &prop)) {
1958                 dev_err(&pdev->dev, "Missing cpts_clock_mult property in the DT.\n");
1959                 return -EINVAL;
1960         }
1961         data->cpts_clock_mult = prop;
1962
1963         if (of_property_read_u32(node, "cpts_clock_shift", &prop)) {
1964                 dev_err(&pdev->dev, "Missing cpts_clock_shift property in the DT.\n");
1965                 return -EINVAL;
1966         }
1967         data->cpts_clock_shift = prop;
1968
1969         data->slave_data = devm_kzalloc(&pdev->dev, data->slaves
1970                                         * sizeof(struct cpsw_slave_data),
1971                                         GFP_KERNEL);
1972         if (!data->slave_data)
1973                 return -ENOMEM;
1974
1975         if (of_property_read_u32(node, "cpdma_channels", &prop)) {
1976                 dev_err(&pdev->dev, "Missing cpdma_channels property in the DT.\n");
1977                 return -EINVAL;
1978         }
1979         data->channels = prop;
1980
1981         if (of_property_read_u32(node, "ale_entries", &prop)) {
1982                 dev_err(&pdev->dev, "Missing ale_entries property in the DT.\n");
1983                 return -EINVAL;
1984         }
1985         data->ale_entries = prop;
1986
1987         if (of_property_read_u32(node, "bd_ram_size", &prop)) {
1988                 dev_err(&pdev->dev, "Missing bd_ram_size property in the DT.\n");
1989                 return -EINVAL;
1990         }
1991         data->bd_ram_size = prop;
1992
1993         if (of_property_read_u32(node, "rx_descs", &prop)) {
1994                 dev_err(&pdev->dev, "Missing rx_descs property in the DT.\n");
1995                 return -EINVAL;
1996         }
1997         data->rx_descs = prop;
1998
1999         if (of_property_read_u32(node, "mac_control", &prop)) {
2000                 dev_err(&pdev->dev, "Missing mac_control property in the DT.\n");
2001                 return -EINVAL;
2002         }
2003         data->mac_control = prop;
2004
2005         if (of_property_read_bool(node, "dual_emac"))
2006                 data->dual_emac = 1;
2007
2008         /*
2009          * Populate all the child nodes here...
2010          */
2011         ret = of_platform_populate(node, NULL, NULL, &pdev->dev);
2012         /* We do not want to force this, as in some cases may not have child */
2013         if (ret)
2014                 dev_warn(&pdev->dev, "Doesn't have any child node\n");
2015
2016         for_each_child_of_node(node, slave_node) {
2017                 struct cpsw_slave_data *slave_data = data->slave_data + i;
2018                 const void *mac_addr = NULL;
2019                 u32 phyid;
2020                 int lenp;
2021                 const __be32 *parp;
2022                 struct device_node *mdio_node;
2023                 struct platform_device *mdio;
2024
2025                 /* This is no slave child node, continue */
2026                 if (strcmp(slave_node->name, "slave"))
2027                         continue;
2028
2029                 parp = of_get_property(slave_node, "phy_id", &lenp);
2030                 if ((parp == NULL) || (lenp != (sizeof(void *) * 2))) {
2031                         dev_err(&pdev->dev, "Missing slave[%d] phy_id property\n", i);
2032                         goto no_phy_slave;
2033                 }
2034                 mdio_node = of_find_node_by_phandle(be32_to_cpup(parp));
2035                 phyid = be32_to_cpup(parp+1);
2036                 mdio = of_find_device_by_node(mdio_node);
2037                 of_node_put(mdio_node);
2038                 if (!mdio) {
2039                         dev_err(&pdev->dev, "Missing mdio platform device\n");
2040                         return -EINVAL;
2041                 }
2042                 snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
2043                          PHY_ID_FMT, mdio->name, phyid);
2044
2045                 slave_data->phy_if = of_get_phy_mode(slave_node);
2046                 if (slave_data->phy_if < 0) {
2047                         dev_err(&pdev->dev, "Missing or malformed slave[%d] phy-mode property\n",
2048                                 i);
2049                         return slave_data->phy_if;
2050                 }
2051
2052 no_phy_slave:
2053                 mac_addr = of_get_mac_address(slave_node);
2054                 if (mac_addr) {
2055                         memcpy(slave_data->mac_addr, mac_addr, ETH_ALEN);
2056                 } else {
2057                         if (of_machine_is_compatible("ti,am33xx")) {
2058                                 ret = cpsw_am33xx_cm_get_macid(&pdev->dev,
2059                                                         0x630, i,
2060                                                         slave_data->mac_addr);
2061                                 if (ret)
2062                                         return ret;
2063                         }
2064                 }
2065                 if (data->dual_emac) {
2066                         if (of_property_read_u32(slave_node, "dual_emac_res_vlan",
2067                                                  &prop)) {
2068                                 dev_err(&pdev->dev, "Missing dual_emac_res_vlan in DT.\n");
2069                                 slave_data->dual_emac_res_vlan = i+1;
2070                                 dev_err(&pdev->dev, "Using %d as Reserved VLAN for %d slave\n",
2071                                         slave_data->dual_emac_res_vlan, i);
2072                         } else {
2073                                 slave_data->dual_emac_res_vlan = prop;
2074                         }
2075                 }
2076
2077                 i++;
2078                 if (i == data->slaves)
2079                         break;
2080         }
2081
2082         return 0;
2083 }
2084
2085 static int cpsw_probe_dual_emac(struct platform_device *pdev,
2086                                 struct cpsw_priv *priv)
2087 {
2088         struct cpsw_platform_data       *data = &priv->data;
2089         struct net_device               *ndev;
2090         struct cpsw_priv                *priv_sl2;
2091         int ret = 0, i;
2092
2093         ndev = alloc_etherdev(sizeof(struct cpsw_priv));
2094         if (!ndev) {
2095                 dev_err(&pdev->dev, "cpsw: error allocating net_device\n");
2096                 return -ENOMEM;
2097         }
2098
2099         priv_sl2 = netdev_priv(ndev);
2100         spin_lock_init(&priv_sl2->lock);
2101         priv_sl2->data = *data;
2102         priv_sl2->pdev = pdev;
2103         priv_sl2->ndev = ndev;
2104         priv_sl2->dev  = &ndev->dev;
2105         priv_sl2->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
2106         priv_sl2->rx_packet_max = max(rx_packet_max, 128);
2107
2108         if (is_valid_ether_addr(data->slave_data[1].mac_addr)) {
2109                 memcpy(priv_sl2->mac_addr, data->slave_data[1].mac_addr,
2110                         ETH_ALEN);
2111                 dev_info(&pdev->dev, "cpsw: Detected MACID = %pM\n", priv_sl2->mac_addr);
2112         } else {
2113                 random_ether_addr(priv_sl2->mac_addr);
2114                 dev_info(&pdev->dev, "cpsw: Random MACID = %pM\n", priv_sl2->mac_addr);
2115         }
2116         memcpy(ndev->dev_addr, priv_sl2->mac_addr, ETH_ALEN);
2117
2118         priv_sl2->slaves = priv->slaves;
2119         priv_sl2->clk = priv->clk;
2120
2121         priv_sl2->coal_intvl = 0;
2122         priv_sl2->bus_freq_mhz = priv->bus_freq_mhz;
2123
2124         priv_sl2->regs = priv->regs;
2125         priv_sl2->host_port = priv->host_port;
2126         priv_sl2->host_port_regs = priv->host_port_regs;
2127         priv_sl2->wr_regs = priv->wr_regs;
2128         priv_sl2->hw_stats = priv->hw_stats;
2129         priv_sl2->dma = priv->dma;
2130         priv_sl2->txch = priv->txch;
2131         priv_sl2->rxch = priv->rxch;
2132         priv_sl2->ale = priv->ale;
2133         priv_sl2->emac_port = 1;
2134         priv->slaves[1].ndev = ndev;
2135         priv_sl2->cpts = priv->cpts;
2136         priv_sl2->version = priv->version;
2137
2138         for (i = 0; i < priv->num_irqs; i++) {
2139                 priv_sl2->irqs_table[i] = priv->irqs_table[i];
2140                 priv_sl2->num_irqs = priv->num_irqs;
2141         }
2142         ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
2143
2144         ndev->netdev_ops = &cpsw_netdev_ops;
2145         ndev->ethtool_ops = &cpsw_ethtool_ops;
2146         netif_napi_add(ndev, &priv_sl2->napi, cpsw_poll, CPSW_POLL_WEIGHT);
2147
2148         /* register the network device */
2149         SET_NETDEV_DEV(ndev, &pdev->dev);
2150         ret = register_netdev(ndev);
2151         if (ret) {
2152                 dev_err(&pdev->dev, "cpsw: error registering net device\n");
2153                 free_netdev(ndev);
2154                 ret = -ENODEV;
2155         }
2156
2157         return ret;
2158 }
2159
2160 static int cpsw_probe(struct platform_device *pdev)
2161 {
2162         struct cpsw_platform_data       *data;
2163         struct net_device               *ndev;
2164         struct cpsw_priv                *priv;
2165         struct cpdma_params             dma_params;
2166         struct cpsw_ale_params          ale_params;
2167         void __iomem                    *ss_regs;
2168         struct resource                 *res, *ss_res;
2169         u32 slave_offset, sliver_offset, slave_size;
2170         int ret = 0, i;
2171         int irq;
2172
2173         ndev = alloc_etherdev(sizeof(struct cpsw_priv));
2174         if (!ndev) {
2175                 dev_err(&pdev->dev, "error allocating net_device\n");
2176                 return -ENOMEM;
2177         }
2178
2179         platform_set_drvdata(pdev, ndev);
2180         priv = netdev_priv(ndev);
2181         spin_lock_init(&priv->lock);
2182         priv->pdev = pdev;
2183         priv->ndev = ndev;
2184         priv->dev  = &ndev->dev;
2185         priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
2186         priv->rx_packet_max = max(rx_packet_max, 128);
2187         priv->cpts = devm_kzalloc(&pdev->dev, sizeof(struct cpts), GFP_KERNEL);
2188         priv->irq_enabled = true;
2189         if (!priv->cpts) {
2190                 dev_err(&pdev->dev, "error allocating cpts\n");
2191                 ret = -ENOMEM;
2192                 goto clean_ndev_ret;
2193         }
2194
2195         /*
2196          * This may be required here for child devices.
2197          */
2198         pm_runtime_enable(&pdev->dev);
2199
2200         /* Select default pin state */
2201         pinctrl_pm_select_default_state(&pdev->dev);
2202
2203         if (cpsw_probe_dt(&priv->data, pdev)) {
2204                 dev_err(&pdev->dev, "cpsw: platform data missing\n");
2205                 ret = -ENODEV;
2206                 goto clean_runtime_disable_ret;
2207         }
2208         data = &priv->data;
2209
2210         if (is_valid_ether_addr(data->slave_data[0].mac_addr)) {
2211                 memcpy(priv->mac_addr, data->slave_data[0].mac_addr, ETH_ALEN);
2212                 dev_info(&pdev->dev, "Detected MACID = %pM\n", priv->mac_addr);
2213         } else {
2214                 eth_random_addr(priv->mac_addr);
2215                 dev_info(&pdev->dev, "Random MACID = %pM\n", priv->mac_addr);
2216         }
2217
2218         memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
2219
2220         priv->slaves = devm_kzalloc(&pdev->dev,
2221                                     sizeof(struct cpsw_slave) * data->slaves,
2222                                     GFP_KERNEL);
2223         if (!priv->slaves) {
2224                 ret = -ENOMEM;
2225                 goto clean_runtime_disable_ret;
2226         }
2227         for (i = 0; i < data->slaves; i++)
2228                 priv->slaves[i].slave_num = i;
2229
2230         priv->slaves[0].ndev = ndev;
2231         priv->emac_port = 0;
2232
2233         priv->clk = devm_clk_get(&pdev->dev, "fck");
2234         if (IS_ERR(priv->clk)) {
2235                 dev_err(priv->dev, "fck is not found\n");
2236                 ret = -ENODEV;
2237                 goto clean_runtime_disable_ret;
2238         }
2239         priv->coal_intvl = 0;
2240         priv->bus_freq_mhz = clk_get_rate(priv->clk) / 1000000;
2241
2242         ss_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2243         ss_regs = devm_ioremap_resource(&pdev->dev, ss_res);
2244         if (IS_ERR(ss_regs)) {
2245                 ret = PTR_ERR(ss_regs);
2246                 goto clean_runtime_disable_ret;
2247         }
2248         priv->regs = ss_regs;
2249         priv->host_port = HOST_PORT_NUM;
2250
2251         /* Need to enable clocks with runtime PM api to access module
2252          * registers
2253          */
2254         pm_runtime_get_sync(&pdev->dev);
2255         priv->version = readl(&priv->regs->id_ver);
2256         pm_runtime_put_sync(&pdev->dev);
2257
2258         res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
2259         priv->wr_regs = devm_ioremap_resource(&pdev->dev, res);
2260         if (IS_ERR(priv->wr_regs)) {
2261                 ret = PTR_ERR(priv->wr_regs);
2262                 goto clean_runtime_disable_ret;
2263         }
2264
2265         memset(&dma_params, 0, sizeof(dma_params));
2266         memset(&ale_params, 0, sizeof(ale_params));
2267
2268         switch (priv->version) {
2269         case CPSW_VERSION_1:
2270                 priv->host_port_regs = ss_regs + CPSW1_HOST_PORT_OFFSET;
2271                 priv->cpts->reg      = ss_regs + CPSW1_CPTS_OFFSET;
2272                 priv->hw_stats       = ss_regs + CPSW1_HW_STATS;
2273                 dma_params.dmaregs   = ss_regs + CPSW1_CPDMA_OFFSET;
2274                 dma_params.txhdp     = ss_regs + CPSW1_STATERAM_OFFSET;
2275                 ale_params.ale_regs  = ss_regs + CPSW1_ALE_OFFSET;
2276                 slave_offset         = CPSW1_SLAVE_OFFSET;
2277                 slave_size           = CPSW1_SLAVE_SIZE;
2278                 sliver_offset        = CPSW1_SLIVER_OFFSET;
2279                 dma_params.desc_mem_phys = 0;
2280                 break;
2281         case CPSW_VERSION_2:
2282         case CPSW_VERSION_3:
2283         case CPSW_VERSION_4:
2284                 priv->host_port_regs = ss_regs + CPSW2_HOST_PORT_OFFSET;
2285                 priv->cpts->reg      = ss_regs + CPSW2_CPTS_OFFSET;
2286                 priv->hw_stats       = ss_regs + CPSW2_HW_STATS;
2287                 dma_params.dmaregs   = ss_regs + CPSW2_CPDMA_OFFSET;
2288                 dma_params.txhdp     = ss_regs + CPSW2_STATERAM_OFFSET;
2289                 ale_params.ale_regs  = ss_regs + CPSW2_ALE_OFFSET;
2290                 slave_offset         = CPSW2_SLAVE_OFFSET;
2291                 slave_size           = CPSW2_SLAVE_SIZE;
2292                 sliver_offset        = CPSW2_SLIVER_OFFSET;
2293                 dma_params.desc_mem_phys =
2294                         (u32 __force) ss_res->start + CPSW2_BD_OFFSET;
2295                 break;
2296         default:
2297                 dev_err(priv->dev, "unknown version 0x%08x\n", priv->version);
2298                 ret = -ENODEV;
2299                 goto clean_runtime_disable_ret;
2300         }
2301         for (i = 0; i < priv->data.slaves; i++) {
2302                 struct cpsw_slave *slave = &priv->slaves[i];
2303                 cpsw_slave_init(slave, priv, slave_offset, sliver_offset);
2304                 slave_offset  += slave_size;
2305                 sliver_offset += SLIVER_SIZE;
2306         }
2307
2308         dma_params.dev          = &pdev->dev;
2309         dma_params.rxthresh     = dma_params.dmaregs + CPDMA_RXTHRESH;
2310         dma_params.rxfree       = dma_params.dmaregs + CPDMA_RXFREE;
2311         dma_params.rxhdp        = dma_params.txhdp + CPDMA_RXHDP;
2312         dma_params.txcp         = dma_params.txhdp + CPDMA_TXCP;
2313         dma_params.rxcp         = dma_params.txhdp + CPDMA_RXCP;
2314
2315         dma_params.num_chan             = data->channels;
2316         dma_params.has_soft_reset       = true;
2317         dma_params.min_packet_size      = CPSW_MIN_PACKET_SIZE;
2318         dma_params.desc_mem_size        = data->bd_ram_size;
2319         dma_params.desc_align           = 16;
2320         dma_params.has_ext_regs         = true;
2321         dma_params.desc_hw_addr         = dma_params.desc_mem_phys;
2322
2323         priv->dma = cpdma_ctlr_create(&dma_params);
2324         if (!priv->dma) {
2325                 dev_err(priv->dev, "error initializing dma\n");
2326                 ret = -ENOMEM;
2327                 goto clean_runtime_disable_ret;
2328         }
2329
2330         priv->txch = cpdma_chan_create(priv->dma, tx_chan_num(0),
2331                                        cpsw_tx_handler);
2332         priv->rxch = cpdma_chan_create(priv->dma, rx_chan_num(0),
2333                                        cpsw_rx_handler);
2334
2335         if (WARN_ON(!priv->txch || !priv->rxch)) {
2336                 dev_err(priv->dev, "error initializing dma channels\n");
2337                 ret = -ENOMEM;
2338                 goto clean_dma_ret;
2339         }
2340
2341         ale_params.dev                  = &ndev->dev;
2342         ale_params.ale_ageout           = ale_ageout;
2343         ale_params.ale_entries          = data->ale_entries;
2344         ale_params.ale_ports            = data->slaves;
2345
2346         priv->ale = cpsw_ale_create(&ale_params);
2347         if (!priv->ale) {
2348                 dev_err(priv->dev, "error initializing ale engine\n");
2349                 ret = -ENODEV;
2350                 goto clean_dma_ret;
2351         }
2352
2353         ndev->irq = platform_get_irq(pdev, 1);
2354         if (ndev->irq < 0) {
2355                 dev_err(priv->dev, "error getting irq resource\n");
2356                 ret = -ENOENT;
2357                 goto clean_ale_ret;
2358         }
2359
2360         /* Grab RX and TX IRQs. Note that we also have RX_THRESHOLD and
2361          * MISC IRQs which are always kept disabled with this driver so
2362          * we will not request them.
2363          *
2364          * If anyone wants to implement support for those, make sure to
2365          * first request and append them to irqs_table array.
2366          */
2367
2368         /* RX IRQ */
2369         irq = platform_get_irq(pdev, 1);
2370         if (irq < 0)
2371                 goto clean_ale_ret;
2372
2373         priv->irqs_table[0] = irq;
2374         ret = devm_request_irq(&pdev->dev, irq, cpsw_rx_interrupt,
2375                                0, dev_name(&pdev->dev), priv);
2376         if (ret < 0) {
2377                 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
2378                 goto clean_ale_ret;
2379         }
2380
2381         /* TX IRQ */
2382         irq = platform_get_irq(pdev, 2);
2383         if (irq < 0)
2384                 goto clean_ale_ret;
2385
2386         priv->irqs_table[1] = irq;
2387         ret = devm_request_irq(&pdev->dev, irq, cpsw_tx_interrupt,
2388                                0, dev_name(&pdev->dev), priv);
2389         if (ret < 0) {
2390                 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
2391                 goto clean_ale_ret;
2392         }
2393         priv->num_irqs = 2;
2394
2395         ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
2396
2397         ndev->netdev_ops = &cpsw_netdev_ops;
2398         ndev->ethtool_ops = &cpsw_ethtool_ops;
2399         netif_napi_add(ndev, &priv->napi, cpsw_poll, CPSW_POLL_WEIGHT);
2400
2401         /* register the network device */
2402         SET_NETDEV_DEV(ndev, &pdev->dev);
2403         ret = register_netdev(ndev);
2404         if (ret) {
2405                 dev_err(priv->dev, "error registering net device\n");
2406                 ret = -ENODEV;
2407                 goto clean_ale_ret;
2408         }
2409
2410         cpsw_notice(priv, probe, "initialized device (regs %pa, irq %d)\n",
2411                     &ss_res->start, ndev->irq);
2412
2413         if (priv->data.dual_emac) {
2414                 ret = cpsw_probe_dual_emac(pdev, priv);
2415                 if (ret) {
2416                         cpsw_err(priv, probe, "error probe slave 2 emac interface\n");
2417                         goto clean_ale_ret;
2418                 }
2419         }
2420
2421         return 0;
2422
2423 clean_ale_ret:
2424         cpsw_ale_destroy(priv->ale);
2425 clean_dma_ret:
2426         cpdma_chan_destroy(priv->txch);
2427         cpdma_chan_destroy(priv->rxch);
2428         cpdma_ctlr_destroy(priv->dma);
2429 clean_runtime_disable_ret:
2430         pm_runtime_disable(&pdev->dev);
2431 clean_ndev_ret:
2432         free_netdev(priv->ndev);
2433         return ret;
2434 }
2435
2436 static int cpsw_remove_child_device(struct device *dev, void *c)
2437 {
2438         struct platform_device *pdev = to_platform_device(dev);
2439
2440         of_device_unregister(pdev);
2441
2442         return 0;
2443 }
2444
2445 static int cpsw_remove(struct platform_device *pdev)
2446 {
2447         struct net_device *ndev = platform_get_drvdata(pdev);
2448         struct cpsw_priv *priv = netdev_priv(ndev);
2449
2450         if (priv->data.dual_emac)
2451                 unregister_netdev(cpsw_get_slave_ndev(priv, 1));
2452         unregister_netdev(ndev);
2453
2454         cpsw_ale_destroy(priv->ale);
2455         cpdma_chan_destroy(priv->txch);
2456         cpdma_chan_destroy(priv->rxch);
2457         cpdma_ctlr_destroy(priv->dma);
2458         pm_runtime_disable(&pdev->dev);
2459         device_for_each_child(&pdev->dev, NULL, cpsw_remove_child_device);
2460         if (priv->data.dual_emac)
2461                 free_netdev(cpsw_get_slave_ndev(priv, 1));
2462         free_netdev(ndev);
2463         return 0;
2464 }
2465
2466 #ifdef CONFIG_PM_SLEEP
2467 static int cpsw_suspend(struct device *dev)
2468 {
2469         struct platform_device  *pdev = to_platform_device(dev);
2470         struct net_device       *ndev = platform_get_drvdata(pdev);
2471         struct cpsw_priv        *priv = netdev_priv(ndev);
2472
2473         if (priv->data.dual_emac) {
2474                 int i;
2475
2476                 for (i = 0; i < priv->data.slaves; i++) {
2477                         if (netif_running(priv->slaves[i].ndev))
2478                                 cpsw_ndo_stop(priv->slaves[i].ndev);
2479                         soft_reset_slave(priv->slaves + i);
2480                 }
2481         } else {
2482                 if (netif_running(ndev))
2483                         cpsw_ndo_stop(ndev);
2484                 for_each_slave(priv, soft_reset_slave);
2485         }
2486
2487         pm_runtime_put_sync(&pdev->dev);
2488
2489         /* Select sleep pin state */
2490         pinctrl_pm_select_sleep_state(&pdev->dev);
2491
2492         return 0;
2493 }
2494
2495 static int cpsw_resume(struct device *dev)
2496 {
2497         struct platform_device  *pdev = to_platform_device(dev);
2498         struct net_device       *ndev = platform_get_drvdata(pdev);
2499         struct cpsw_priv        *priv = netdev_priv(ndev);
2500
2501         pm_runtime_get_sync(&pdev->dev);
2502
2503         /* Select default pin state */
2504         pinctrl_pm_select_default_state(&pdev->dev);
2505
2506         if (priv->data.dual_emac) {
2507                 int i;
2508
2509                 for (i = 0; i < priv->data.slaves; i++) {
2510                         if (netif_running(priv->slaves[i].ndev))
2511                                 cpsw_ndo_open(priv->slaves[i].ndev);
2512                 }
2513         } else {
2514                 if (netif_running(ndev))
2515                         cpsw_ndo_open(ndev);
2516         }
2517         return 0;
2518 }
2519 #endif
2520
2521 static SIMPLE_DEV_PM_OPS(cpsw_pm_ops, cpsw_suspend, cpsw_resume);
2522
2523 static const struct of_device_id cpsw_of_mtable[] = {
2524         { .compatible = "ti,cpsw", },
2525         { /* sentinel */ },
2526 };
2527 MODULE_DEVICE_TABLE(of, cpsw_of_mtable);
2528
2529 static struct platform_driver cpsw_driver = {
2530         .driver = {
2531                 .name    = "cpsw",
2532                 .pm      = &cpsw_pm_ops,
2533                 .of_match_table = cpsw_of_mtable,
2534         },
2535         .probe = cpsw_probe,
2536         .remove = cpsw_remove,
2537 };
2538
2539 static int __init cpsw_init(void)
2540 {
2541         return platform_driver_register(&cpsw_driver);
2542 }
2543 late_initcall(cpsw_init);
2544
2545 static void __exit cpsw_exit(void)
2546 {
2547         platform_driver_unregister(&cpsw_driver);
2548 }
2549 module_exit(cpsw_exit);
2550
2551 MODULE_LICENSE("GPL");
2552 MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>");
2553 MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>");
2554 MODULE_DESCRIPTION("TI CPSW Ethernet driver");