blob: cd956719f8c8e5a5d7293e7126d8fc545a710bb7 [file] [log] [blame]
Mugunthan V Ndf828592012-03-18 20:17:54 +00001/*
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>
Richard Cochran2e5b38a2012-10-29 08:45:20 +000027#include <linux/net_tstamp.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000028#include <linux/phy.h>
29#include <linux/workqueue.h>
30#include <linux/delay.h>
Mugunthan V Nf150bd72012-07-17 08:09:50 +000031#include <linux/pm_runtime.h>
Mugunthan V N2eb32b02012-07-30 10:17:14 +000032#include <linux/of.h>
33#include <linux/of_net.h>
34#include <linux/of_device.h>
Mugunthan V N3b72c2f2013-02-05 08:26:48 +000035#include <linux/if_vlan.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000036
37#include <linux/platform_data/cpsw.h>
Mugunthan V N739683b2013-06-06 23:45:14 +053038#include <linux/pinctrl/consumer.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000039
40#include "cpsw_ale.h"
Richard Cochran2e5b38a2012-10-29 08:45:20 +000041#include "cpts.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000042#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, ...) \
54do { \
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, ...) \
60do { \
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, ...) \
66do { \
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, ...) \
72do { \
73 if (netif_msg_##type(priv) && net_ratelimit()) \
74 dev_notice(priv->dev, format, ## __VA_ARGS__); \
75} while (0)
76
Mugunthan V N5c50a852012-10-29 08:45:11 +000077#define ALE_ALL_PORTS 0x7
78
Mugunthan V Ndf828592012-03-18 20:17:54 +000079#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
Richard Cochrane90cfac2012-10-29 08:45:14 +000083#define CPSW_VERSION_1 0x19010a
84#define CPSW_VERSION_2 0x19010c
Mugunthan V Nc193f362013-08-05 17:30:05 +053085#define CPSW_VERSION_3 0x19010f
Richard Cochran549985e2012-11-14 09:07:56 +000086
87#define HOST_PORT_NUM 0
88#define SLIVER_SIZE 0x40
89
90#define CPSW1_HOST_PORT_OFFSET 0x028
91#define CPSW1_SLAVE_OFFSET 0x050
92#define CPSW1_SLAVE_SIZE 0x040
93#define CPSW1_CPDMA_OFFSET 0x100
94#define CPSW1_STATERAM_OFFSET 0x200
Mugunthan V Nd9718542013-07-23 15:38:17 +053095#define CPSW1_HW_STATS 0x400
Richard Cochran549985e2012-11-14 09:07:56 +000096#define CPSW1_CPTS_OFFSET 0x500
97#define CPSW1_ALE_OFFSET 0x600
98#define CPSW1_SLIVER_OFFSET 0x700
99
100#define CPSW2_HOST_PORT_OFFSET 0x108
101#define CPSW2_SLAVE_OFFSET 0x200
102#define CPSW2_SLAVE_SIZE 0x100
103#define CPSW2_CPDMA_OFFSET 0x800
Mugunthan V Nd9718542013-07-23 15:38:17 +0530104#define CPSW2_HW_STATS 0x900
Richard Cochran549985e2012-11-14 09:07:56 +0000105#define CPSW2_STATERAM_OFFSET 0xa00
106#define CPSW2_CPTS_OFFSET 0xc00
107#define CPSW2_ALE_OFFSET 0xd00
108#define CPSW2_SLIVER_OFFSET 0xd80
109#define CPSW2_BD_OFFSET 0x2000
110
Mugunthan V Ndf828592012-03-18 20:17:54 +0000111#define CPDMA_RXTHRESH 0x0c0
112#define CPDMA_RXFREE 0x0e0
113#define CPDMA_TXHDP 0x00
114#define CPDMA_RXHDP 0x20
115#define CPDMA_TXCP 0x40
116#define CPDMA_RXCP 0x60
117
Mugunthan V Ndf828592012-03-18 20:17:54 +0000118#define CPSW_POLL_WEIGHT 64
119#define CPSW_MIN_PACKET_SIZE 60
120#define CPSW_MAX_PACKET_SIZE (1500 + 14 + 4 + 4)
121
122#define RX_PRIORITY_MAPPING 0x76543210
123#define TX_PRIORITY_MAPPING 0x33221100
124#define CPDMA_TX_PRIORITY_MAP 0x76543210
125
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000126#define CPSW_VLAN_AWARE BIT(1)
127#define CPSW_ALE_VLAN_AWARE 1
128
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000129#define CPSW_FIFO_NORMAL_MODE (0 << 15)
130#define CPSW_FIFO_DUAL_MAC_MODE (1 << 15)
131#define CPSW_FIFO_RATE_LIMIT_MODE (2 << 15)
132
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000133#define CPSW_INTPACEEN (0x3f << 16)
134#define CPSW_INTPRESCALE_MASK (0x7FF << 0)
135#define CPSW_CMINTMAX_CNT 63
136#define CPSW_CMINTMIN_CNT 2
137#define CPSW_CMINTMAX_INTVL (1000 / CPSW_CMINTMIN_CNT)
138#define CPSW_CMINTMIN_INTVL ((1000 / CPSW_CMINTMAX_CNT) + 1)
139
Mugunthan V Ndf828592012-03-18 20:17:54 +0000140#define cpsw_enable_irq(priv) \
141 do { \
142 u32 i; \
143 for (i = 0; i < priv->num_irqs; i++) \
144 enable_irq(priv->irqs_table[i]); \
145 } while (0);
146#define cpsw_disable_irq(priv) \
147 do { \
148 u32 i; \
149 for (i = 0; i < priv->num_irqs; i++) \
150 disable_irq_nosync(priv->irqs_table[i]); \
151 } while (0);
152
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +0000153#define cpsw_slave_index(priv) \
154 ((priv->data.dual_emac) ? priv->emac_port : \
155 priv->data.active_slave)
156
Mugunthan V Ndf828592012-03-18 20:17:54 +0000157static int debug_level;
158module_param(debug_level, int, 0);
159MODULE_PARM_DESC(debug_level, "cpsw debug level (NETIF_MSG bits)");
160
161static int ale_ageout = 10;
162module_param(ale_ageout, int, 0);
163MODULE_PARM_DESC(ale_ageout, "cpsw ale ageout interval (seconds)");
164
165static int rx_packet_max = CPSW_MAX_PACKET_SIZE;
166module_param(rx_packet_max, int, 0);
167MODULE_PARM_DESC(rx_packet_max, "maximum receive packet size (bytes)");
168
Richard Cochran996a5c22012-10-29 08:45:12 +0000169struct cpsw_wr_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000170 u32 id_ver;
171 u32 soft_reset;
172 u32 control;
173 u32 int_control;
174 u32 rx_thresh_en;
175 u32 rx_en;
176 u32 tx_en;
177 u32 misc_en;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000178 u32 mem_allign1[8];
179 u32 rx_thresh_stat;
180 u32 rx_stat;
181 u32 tx_stat;
182 u32 misc_stat;
183 u32 mem_allign2[8];
184 u32 rx_imax;
185 u32 tx_imax;
186
Mugunthan V Ndf828592012-03-18 20:17:54 +0000187};
188
Richard Cochran996a5c22012-10-29 08:45:12 +0000189struct cpsw_ss_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000190 u32 id_ver;
191 u32 control;
192 u32 soft_reset;
193 u32 stat_port_en;
194 u32 ptype;
Richard Cochranbd357af2012-10-29 08:45:13 +0000195 u32 soft_idle;
196 u32 thru_rate;
197 u32 gap_thresh;
198 u32 tx_start_wds;
199 u32 flow_control;
200 u32 vlan_ltype;
201 u32 ts_ltype;
202 u32 dlr_ltype;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000203};
204
Richard Cochran9750a3a2012-10-29 08:45:15 +0000205/* CPSW_PORT_V1 */
206#define CPSW1_MAX_BLKS 0x00 /* Maximum FIFO Blocks */
207#define CPSW1_BLK_CNT 0x04 /* FIFO Block Usage Count (Read Only) */
208#define CPSW1_TX_IN_CTL 0x08 /* Transmit FIFO Control */
209#define CPSW1_PORT_VLAN 0x0c /* VLAN Register */
210#define CPSW1_TX_PRI_MAP 0x10 /* Tx Header Priority to Switch Pri Mapping */
211#define CPSW1_TS_CTL 0x14 /* Time Sync Control */
212#define CPSW1_TS_SEQ_LTYPE 0x18 /* Time Sync Sequence ID Offset and Msg Type */
213#define CPSW1_TS_VLAN 0x1c /* Time Sync VLAN1 and VLAN2 */
214
215/* CPSW_PORT_V2 */
216#define CPSW2_CONTROL 0x00 /* Control Register */
217#define CPSW2_MAX_BLKS 0x08 /* Maximum FIFO Blocks */
218#define CPSW2_BLK_CNT 0x0c /* FIFO Block Usage Count (Read Only) */
219#define CPSW2_TX_IN_CTL 0x10 /* Transmit FIFO Control */
220#define CPSW2_PORT_VLAN 0x14 /* VLAN Register */
221#define CPSW2_TX_PRI_MAP 0x18 /* Tx Header Priority to Switch Pri Mapping */
222#define CPSW2_TS_SEQ_MTYPE 0x1c /* Time Sync Sequence ID Offset and Msg Type */
223
224/* CPSW_PORT_V1 and V2 */
225#define SA_LO 0x20 /* CPGMAC_SL Source Address Low */
226#define SA_HI 0x24 /* CPGMAC_SL Source Address High */
227#define SEND_PERCENT 0x28 /* Transmit Queue Send Percentages */
228
229/* CPSW_PORT_V2 only */
230#define RX_DSCP_PRI_MAP0 0x30 /* Rx DSCP Priority to Rx Packet Mapping */
231#define RX_DSCP_PRI_MAP1 0x34 /* Rx DSCP Priority to Rx Packet Mapping */
232#define RX_DSCP_PRI_MAP2 0x38 /* Rx DSCP Priority to Rx Packet Mapping */
233#define RX_DSCP_PRI_MAP3 0x3c /* Rx DSCP Priority to Rx Packet Mapping */
234#define RX_DSCP_PRI_MAP4 0x40 /* Rx DSCP Priority to Rx Packet Mapping */
235#define RX_DSCP_PRI_MAP5 0x44 /* Rx DSCP Priority to Rx Packet Mapping */
236#define RX_DSCP_PRI_MAP6 0x48 /* Rx DSCP Priority to Rx Packet Mapping */
237#define RX_DSCP_PRI_MAP7 0x4c /* Rx DSCP Priority to Rx Packet Mapping */
238
239/* Bit definitions for the CPSW2_CONTROL register */
240#define PASS_PRI_TAGGED (1<<24) /* Pass Priority Tagged */
241#define VLAN_LTYPE2_EN (1<<21) /* VLAN LTYPE 2 enable */
242#define VLAN_LTYPE1_EN (1<<20) /* VLAN LTYPE 1 enable */
243#define DSCP_PRI_EN (1<<16) /* DSCP Priority Enable */
244#define TS_320 (1<<14) /* Time Sync Dest Port 320 enable */
245#define TS_319 (1<<13) /* Time Sync Dest Port 319 enable */
246#define TS_132 (1<<12) /* Time Sync Dest IP Addr 132 enable */
247#define TS_131 (1<<11) /* Time Sync Dest IP Addr 131 enable */
248#define TS_130 (1<<10) /* Time Sync Dest IP Addr 130 enable */
249#define TS_129 (1<<9) /* Time Sync Dest IP Addr 129 enable */
250#define TS_BIT8 (1<<8) /* ts_ttl_nonzero? */
251#define TS_ANNEX_D_EN (1<<4) /* Time Sync Annex D enable */
252#define TS_LTYPE2_EN (1<<3) /* Time Sync LTYPE 2 enable */
253#define TS_LTYPE1_EN (1<<2) /* Time Sync LTYPE 1 enable */
254#define TS_TX_EN (1<<1) /* Time Sync Transmit Enable */
255#define TS_RX_EN (1<<0) /* Time Sync Receive Enable */
256
257#define CTRL_TS_BITS \
258 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 | TS_BIT8 | \
259 TS_ANNEX_D_EN | TS_LTYPE1_EN)
260
261#define CTRL_ALL_TS_MASK (CTRL_TS_BITS | TS_TX_EN | TS_RX_EN)
262#define CTRL_TX_TS_BITS (CTRL_TS_BITS | TS_TX_EN)
263#define CTRL_RX_TS_BITS (CTRL_TS_BITS | TS_RX_EN)
264
265/* Bit definitions for the CPSW2_TS_SEQ_MTYPE register */
266#define TS_SEQ_ID_OFFSET_SHIFT (16) /* Time Sync Sequence ID Offset */
267#define TS_SEQ_ID_OFFSET_MASK (0x3f)
268#define TS_MSG_TYPE_EN_SHIFT (0) /* Time Sync Message Type Enable */
269#define TS_MSG_TYPE_EN_MASK (0xffff)
270
271/* The PTP event messages - Sync, Delay_Req, Pdelay_Req, and Pdelay_Resp. */
272#define EVENT_MSG_BITS ((1<<0) | (1<<1) | (1<<2) | (1<<3))
Mugunthan V Ndf828592012-03-18 20:17:54 +0000273
Richard Cochran2e5b38a2012-10-29 08:45:20 +0000274/* Bit definitions for the CPSW1_TS_CTL register */
275#define CPSW_V1_TS_RX_EN BIT(0)
276#define CPSW_V1_TS_TX_EN BIT(4)
277#define CPSW_V1_MSG_TYPE_OFS 16
278
279/* Bit definitions for the CPSW1_TS_SEQ_LTYPE register */
280#define CPSW_V1_SEQ_ID_OFS_SHIFT 16
281
Mugunthan V Ndf828592012-03-18 20:17:54 +0000282struct cpsw_host_regs {
283 u32 max_blks;
284 u32 blk_cnt;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000285 u32 tx_in_ctl;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000286 u32 port_vlan;
287 u32 tx_pri_map;
288 u32 cpdma_tx_pri_map;
289 u32 cpdma_rx_chan_map;
290};
291
292struct cpsw_sliver_regs {
293 u32 id_ver;
294 u32 mac_control;
295 u32 mac_status;
296 u32 soft_reset;
297 u32 rx_maxlen;
298 u32 __reserved_0;
299 u32 rx_pause;
300 u32 tx_pause;
301 u32 __reserved_1;
302 u32 rx_pri_map;
303};
304
Mugunthan V Nd9718542013-07-23 15:38:17 +0530305struct cpsw_hw_stats {
306 u32 rxgoodframes;
307 u32 rxbroadcastframes;
308 u32 rxmulticastframes;
309 u32 rxpauseframes;
310 u32 rxcrcerrors;
311 u32 rxaligncodeerrors;
312 u32 rxoversizedframes;
313 u32 rxjabberframes;
314 u32 rxundersizedframes;
315 u32 rxfragments;
316 u32 __pad_0[2];
317 u32 rxoctets;
318 u32 txgoodframes;
319 u32 txbroadcastframes;
320 u32 txmulticastframes;
321 u32 txpauseframes;
322 u32 txdeferredframes;
323 u32 txcollisionframes;
324 u32 txsinglecollframes;
325 u32 txmultcollframes;
326 u32 txexcessivecollisions;
327 u32 txlatecollisions;
328 u32 txunderrun;
329 u32 txcarriersenseerrors;
330 u32 txoctets;
331 u32 octetframes64;
332 u32 octetframes65t127;
333 u32 octetframes128t255;
334 u32 octetframes256t511;
335 u32 octetframes512t1023;
336 u32 octetframes1024tup;
337 u32 netoctets;
338 u32 rxsofoverruns;
339 u32 rxmofoverruns;
340 u32 rxdmaoverruns;
341};
342
Mugunthan V Ndf828592012-03-18 20:17:54 +0000343struct cpsw_slave {
Richard Cochran9750a3a2012-10-29 08:45:15 +0000344 void __iomem *regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000345 struct cpsw_sliver_regs __iomem *sliver;
346 int slave_num;
347 u32 mac_control;
348 struct cpsw_slave_data *data;
349 struct phy_device *phy;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000350 struct net_device *ndev;
351 u32 port_vlan;
352 u32 open_stat;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000353};
354
Richard Cochran9750a3a2012-10-29 08:45:15 +0000355static inline u32 slave_read(struct cpsw_slave *slave, u32 offset)
356{
357 return __raw_readl(slave->regs + offset);
358}
359
360static inline void slave_write(struct cpsw_slave *slave, u32 val, u32 offset)
361{
362 __raw_writel(val, slave->regs + offset);
363}
364
Mugunthan V Ndf828592012-03-18 20:17:54 +0000365struct cpsw_priv {
366 spinlock_t lock;
367 struct platform_device *pdev;
368 struct net_device *ndev;
369 struct resource *cpsw_res;
Richard Cochrana65dd5b2012-11-02 22:25:29 +0000370 struct resource *cpsw_wr_res;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000371 struct napi_struct napi;
372 struct device *dev;
373 struct cpsw_platform_data data;
Richard Cochran996a5c22012-10-29 08:45:12 +0000374 struct cpsw_ss_regs __iomem *regs;
375 struct cpsw_wr_regs __iomem *wr_regs;
Mugunthan V Nd9718542013-07-23 15:38:17 +0530376 u8 __iomem *hw_stats;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000377 struct cpsw_host_regs __iomem *host_port_regs;
378 u32 msg_enable;
Richard Cochrane90cfac2012-10-29 08:45:14 +0000379 u32 version;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000380 u32 coal_intvl;
381 u32 bus_freq_mhz;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000382 struct net_device_stats stats;
383 int rx_packet_max;
384 int host_port;
385 struct clk *clk;
386 u8 mac_addr[ETH_ALEN];
387 struct cpsw_slave *slaves;
388 struct cpdma_ctlr *dma;
389 struct cpdma_chan *txch, *rxch;
390 struct cpsw_ale *ale;
391 /* snapshot of IRQ numbers */
392 u32 irqs_table[4];
393 u32 num_irqs;
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000394 bool irq_enabled;
Mugunthan V N9232b162013-02-11 09:52:19 +0000395 struct cpts *cpts;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000396 u32 emac_port;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000397};
398
Mugunthan V Nd9718542013-07-23 15:38:17 +0530399struct cpsw_stats {
400 char stat_string[ETH_GSTRING_LEN];
401 int type;
402 int sizeof_stat;
403 int stat_offset;
404};
405
406enum {
407 CPSW_STATS,
408 CPDMA_RX_STATS,
409 CPDMA_TX_STATS,
410};
411
412#define CPSW_STAT(m) CPSW_STATS, \
413 sizeof(((struct cpsw_hw_stats *)0)->m), \
414 offsetof(struct cpsw_hw_stats, m)
415#define CPDMA_RX_STAT(m) CPDMA_RX_STATS, \
416 sizeof(((struct cpdma_chan_stats *)0)->m), \
417 offsetof(struct cpdma_chan_stats, m)
418#define CPDMA_TX_STAT(m) CPDMA_TX_STATS, \
419 sizeof(((struct cpdma_chan_stats *)0)->m), \
420 offsetof(struct cpdma_chan_stats, m)
421
422static const struct cpsw_stats cpsw_gstrings_stats[] = {
423 { "Good Rx Frames", CPSW_STAT(rxgoodframes) },
424 { "Broadcast Rx Frames", CPSW_STAT(rxbroadcastframes) },
425 { "Multicast Rx Frames", CPSW_STAT(rxmulticastframes) },
426 { "Pause Rx Frames", CPSW_STAT(rxpauseframes) },
427 { "Rx CRC Errors", CPSW_STAT(rxcrcerrors) },
428 { "Rx Align/Code Errors", CPSW_STAT(rxaligncodeerrors) },
429 { "Oversize Rx Frames", CPSW_STAT(rxoversizedframes) },
430 { "Rx Jabbers", CPSW_STAT(rxjabberframes) },
431 { "Undersize (Short) Rx Frames", CPSW_STAT(rxundersizedframes) },
432 { "Rx Fragments", CPSW_STAT(rxfragments) },
433 { "Rx Octets", CPSW_STAT(rxoctets) },
434 { "Good Tx Frames", CPSW_STAT(txgoodframes) },
435 { "Broadcast Tx Frames", CPSW_STAT(txbroadcastframes) },
436 { "Multicast Tx Frames", CPSW_STAT(txmulticastframes) },
437 { "Pause Tx Frames", CPSW_STAT(txpauseframes) },
438 { "Deferred Tx Frames", CPSW_STAT(txdeferredframes) },
439 { "Collisions", CPSW_STAT(txcollisionframes) },
440 { "Single Collision Tx Frames", CPSW_STAT(txsinglecollframes) },
441 { "Multiple Collision Tx Frames", CPSW_STAT(txmultcollframes) },
442 { "Excessive Collisions", CPSW_STAT(txexcessivecollisions) },
443 { "Late Collisions", CPSW_STAT(txlatecollisions) },
444 { "Tx Underrun", CPSW_STAT(txunderrun) },
445 { "Carrier Sense Errors", CPSW_STAT(txcarriersenseerrors) },
446 { "Tx Octets", CPSW_STAT(txoctets) },
447 { "Rx + Tx 64 Octet Frames", CPSW_STAT(octetframes64) },
448 { "Rx + Tx 65-127 Octet Frames", CPSW_STAT(octetframes65t127) },
449 { "Rx + Tx 128-255 Octet Frames", CPSW_STAT(octetframes128t255) },
450 { "Rx + Tx 256-511 Octet Frames", CPSW_STAT(octetframes256t511) },
451 { "Rx + Tx 512-1023 Octet Frames", CPSW_STAT(octetframes512t1023) },
452 { "Rx + Tx 1024-Up Octet Frames", CPSW_STAT(octetframes1024tup) },
453 { "Net Octets", CPSW_STAT(netoctets) },
454 { "Rx Start of Frame Overruns", CPSW_STAT(rxsofoverruns) },
455 { "Rx Middle of Frame Overruns", CPSW_STAT(rxmofoverruns) },
456 { "Rx DMA Overruns", CPSW_STAT(rxdmaoverruns) },
457 { "Rx DMA chan: head_enqueue", CPDMA_RX_STAT(head_enqueue) },
458 { "Rx DMA chan: tail_enqueue", CPDMA_RX_STAT(tail_enqueue) },
459 { "Rx DMA chan: pad_enqueue", CPDMA_RX_STAT(pad_enqueue) },
460 { "Rx DMA chan: misqueued", CPDMA_RX_STAT(misqueued) },
461 { "Rx DMA chan: desc_alloc_fail", CPDMA_RX_STAT(desc_alloc_fail) },
462 { "Rx DMA chan: pad_alloc_fail", CPDMA_RX_STAT(pad_alloc_fail) },
463 { "Rx DMA chan: runt_receive_buf", CPDMA_RX_STAT(runt_receive_buff) },
464 { "Rx DMA chan: runt_transmit_buf", CPDMA_RX_STAT(runt_transmit_buff) },
465 { "Rx DMA chan: empty_dequeue", CPDMA_RX_STAT(empty_dequeue) },
466 { "Rx DMA chan: busy_dequeue", CPDMA_RX_STAT(busy_dequeue) },
467 { "Rx DMA chan: good_dequeue", CPDMA_RX_STAT(good_dequeue) },
468 { "Rx DMA chan: requeue", CPDMA_RX_STAT(requeue) },
469 { "Rx DMA chan: teardown_dequeue", CPDMA_RX_STAT(teardown_dequeue) },
470 { "Tx DMA chan: head_enqueue", CPDMA_TX_STAT(head_enqueue) },
471 { "Tx DMA chan: tail_enqueue", CPDMA_TX_STAT(tail_enqueue) },
472 { "Tx DMA chan: pad_enqueue", CPDMA_TX_STAT(pad_enqueue) },
473 { "Tx DMA chan: misqueued", CPDMA_TX_STAT(misqueued) },
474 { "Tx DMA chan: desc_alloc_fail", CPDMA_TX_STAT(desc_alloc_fail) },
475 { "Tx DMA chan: pad_alloc_fail", CPDMA_TX_STAT(pad_alloc_fail) },
476 { "Tx DMA chan: runt_receive_buf", CPDMA_TX_STAT(runt_receive_buff) },
477 { "Tx DMA chan: runt_transmit_buf", CPDMA_TX_STAT(runt_transmit_buff) },
478 { "Tx DMA chan: empty_dequeue", CPDMA_TX_STAT(empty_dequeue) },
479 { "Tx DMA chan: busy_dequeue", CPDMA_TX_STAT(busy_dequeue) },
480 { "Tx DMA chan: good_dequeue", CPDMA_TX_STAT(good_dequeue) },
481 { "Tx DMA chan: requeue", CPDMA_TX_STAT(requeue) },
482 { "Tx DMA chan: teardown_dequeue", CPDMA_TX_STAT(teardown_dequeue) },
483};
484
485#define CPSW_STATS_LEN ARRAY_SIZE(cpsw_gstrings_stats)
486
Mugunthan V Ndf828592012-03-18 20:17:54 +0000487#define napi_to_priv(napi) container_of(napi, struct cpsw_priv, napi)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000488#define for_each_slave(priv, func, arg...) \
489 do { \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000490 struct cpsw_slave *slave; \
491 int n; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000492 if (priv->data.dual_emac) \
493 (func)((priv)->slaves + priv->emac_port, ##arg);\
494 else \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000495 for (n = (priv)->data.slaves, \
496 slave = (priv)->slaves; \
497 n; n--) \
498 (func)(slave++, ##arg); \
Mugunthan V Ndf828592012-03-18 20:17:54 +0000499 } while (0)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000500#define cpsw_get_slave_ndev(priv, __slave_no__) \
501 (priv->slaves[__slave_no__].ndev)
502#define cpsw_get_slave_priv(priv, __slave_no__) \
503 ((priv->slaves[__slave_no__].ndev) ? \
504 netdev_priv(priv->slaves[__slave_no__].ndev) : NULL) \
505
506#define cpsw_dual_emac_src_port_detect(status, priv, ndev, skb) \
507 do { \
508 if (!priv->data.dual_emac) \
509 break; \
510 if (CPDMA_RX_SOURCE_PORT(status) == 1) { \
511 ndev = cpsw_get_slave_ndev(priv, 0); \
512 priv = netdev_priv(ndev); \
513 skb->dev = ndev; \
514 } else if (CPDMA_RX_SOURCE_PORT(status) == 2) { \
515 ndev = cpsw_get_slave_ndev(priv, 1); \
516 priv = netdev_priv(ndev); \
517 skb->dev = ndev; \
518 } \
519 } while (0)
520#define cpsw_add_mcast(priv, addr) \
521 do { \
522 if (priv->data.dual_emac) { \
523 struct cpsw_slave *slave = priv->slaves + \
524 priv->emac_port; \
525 int slave_port = cpsw_get_slave_port(priv, \
526 slave->slave_num); \
527 cpsw_ale_add_mcast(priv->ale, addr, \
528 1 << slave_port | 1 << priv->host_port, \
529 ALE_VLAN, slave->port_vlan, 0); \
530 } else { \
531 cpsw_ale_add_mcast(priv->ale, addr, \
532 ALE_ALL_PORTS << priv->host_port, \
533 0, 0, 0); \
534 } \
535 } while (0)
536
537static inline int cpsw_get_slave_port(struct cpsw_priv *priv, u32 slave_num)
538{
539 if (priv->host_port == 0)
540 return slave_num + 1;
541 else
542 return slave_num;
543}
Mugunthan V Ndf828592012-03-18 20:17:54 +0000544
Mugunthan V N5c50a852012-10-29 08:45:11 +0000545static void cpsw_ndo_set_rx_mode(struct net_device *ndev)
546{
547 struct cpsw_priv *priv = netdev_priv(ndev);
548
549 if (ndev->flags & IFF_PROMISC) {
550 /* Enable promiscuous mode */
551 dev_err(priv->dev, "Ignoring Promiscuous mode\n");
552 return;
553 }
554
555 /* Clear all mcast from ALE */
556 cpsw_ale_flush_multicast(priv->ale, ALE_ALL_PORTS << priv->host_port);
557
558 if (!netdev_mc_empty(ndev)) {
559 struct netdev_hw_addr *ha;
560
561 /* program multicast address list into ALE register */
562 netdev_for_each_mc_addr(ha, ndev) {
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000563 cpsw_add_mcast(priv, (u8 *)ha->addr);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000564 }
565 }
566}
567
Mugunthan V Ndf828592012-03-18 20:17:54 +0000568static void cpsw_intr_enable(struct cpsw_priv *priv)
569{
Richard Cochran996a5c22012-10-29 08:45:12 +0000570 __raw_writel(0xFF, &priv->wr_regs->tx_en);
571 __raw_writel(0xFF, &priv->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000572
573 cpdma_ctlr_int_ctrl(priv->dma, true);
574 return;
575}
576
577static void cpsw_intr_disable(struct cpsw_priv *priv)
578{
Richard Cochran996a5c22012-10-29 08:45:12 +0000579 __raw_writel(0, &priv->wr_regs->tx_en);
580 __raw_writel(0, &priv->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000581
582 cpdma_ctlr_int_ctrl(priv->dma, false);
583 return;
584}
585
586void cpsw_tx_handler(void *token, int len, int status)
587{
588 struct sk_buff *skb = token;
589 struct net_device *ndev = skb->dev;
590 struct cpsw_priv *priv = netdev_priv(ndev);
591
Mugunthan V Nfae50822013-01-17 06:31:34 +0000592 /* Check whether the queue is stopped due to stalled tx dma, if the
593 * queue is stopped then start the queue as we have free desc for tx
594 */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000595 if (unlikely(netif_queue_stopped(ndev)))
Mugunthan V Nb56d6b3f2013-03-27 04:41:59 +0000596 netif_wake_queue(ndev);
Mugunthan V N9232b162013-02-11 09:52:19 +0000597 cpts_tx_timestamp(priv->cpts, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000598 priv->stats.tx_packets++;
599 priv->stats.tx_bytes += len;
600 dev_kfree_skb_any(skb);
601}
602
603void cpsw_rx_handler(void *token, int len, int status)
604{
605 struct sk_buff *skb = token;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000606 struct sk_buff *new_skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000607 struct net_device *ndev = skb->dev;
608 struct cpsw_priv *priv = netdev_priv(ndev);
609 int ret = 0;
610
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000611 cpsw_dual_emac_src_port_detect(status, priv, ndev, skb);
612
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000613 if (unlikely(status < 0)) {
614 /* the interface is going down, skbs are purged */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000615 dev_kfree_skb_any(skb);
616 return;
617 }
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000618
619 new_skb = netdev_alloc_skb_ip_align(ndev, priv->rx_packet_max);
620 if (new_skb) {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000621 skb_put(skb, len);
Mugunthan V N9232b162013-02-11 09:52:19 +0000622 cpts_rx_timestamp(priv->cpts, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000623 skb->protocol = eth_type_trans(skb, ndev);
624 netif_receive_skb(skb);
625 priv->stats.rx_bytes += len;
626 priv->stats.rx_packets++;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000627 } else {
628 priv->stats.rx_dropped++;
629 new_skb = skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000630 }
631
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000632 ret = cpdma_chan_submit(priv->rxch, new_skb, new_skb->data,
633 skb_tailroom(new_skb), 0);
634 if (WARN_ON(ret < 0))
635 dev_kfree_skb_any(new_skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000636}
637
638static irqreturn_t cpsw_interrupt(int irq, void *dev_id)
639{
640 struct cpsw_priv *priv = dev_id;
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000641 u32 rx, tx, rx_thresh;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000642
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000643 rx_thresh = __raw_readl(&priv->wr_regs->rx_thresh_stat);
644 rx = __raw_readl(&priv->wr_regs->rx_stat);
645 tx = __raw_readl(&priv->wr_regs->tx_stat);
646 if (!rx_thresh && !rx && !tx)
647 return IRQ_NONE;
648
649 cpsw_intr_disable(priv);
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000650 if (priv->irq_enabled == true) {
651 cpsw_disable_irq(priv);
652 priv->irq_enabled = false;
653 }
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000654
655 if (netif_running(priv->ndev)) {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000656 napi_schedule(&priv->napi);
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000657 return IRQ_HANDLED;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000658 }
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000659
660 priv = cpsw_get_slave_priv(priv, 1);
661 if (!priv)
662 return IRQ_NONE;
663
664 if (netif_running(priv->ndev)) {
665 napi_schedule(&priv->napi);
666 return IRQ_HANDLED;
667 }
668 return IRQ_NONE;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000669}
670
Mugunthan V Ndf828592012-03-18 20:17:54 +0000671static int cpsw_poll(struct napi_struct *napi, int budget)
672{
673 struct cpsw_priv *priv = napi_to_priv(napi);
674 int num_tx, num_rx;
675
676 num_tx = cpdma_chan_process(priv->txch, 128);
Mugunthan V N510a1e72013-02-17 22:19:20 +0000677 if (num_tx)
678 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_TX);
679
Mugunthan V Ndf828592012-03-18 20:17:54 +0000680 num_rx = cpdma_chan_process(priv->rxch, budget);
Mugunthan V N510a1e72013-02-17 22:19:20 +0000681 if (num_rx < budget) {
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000682 struct cpsw_priv *prim_cpsw;
683
Mugunthan V N510a1e72013-02-17 22:19:20 +0000684 napi_complete(napi);
685 cpsw_intr_enable(priv);
686 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_RX);
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000687 prim_cpsw = cpsw_get_slave_priv(priv, 0);
688 if (prim_cpsw->irq_enabled == false) {
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000689 prim_cpsw->irq_enabled = true;
Mugunthan V Naf5c6df2013-05-02 01:52:11 +0000690 cpsw_enable_irq(priv);
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000691 }
Mugunthan V N510a1e72013-02-17 22:19:20 +0000692 }
Mugunthan V Ndf828592012-03-18 20:17:54 +0000693
694 if (num_rx || num_tx)
695 cpsw_dbg(priv, intr, "poll %d rx, %d tx pkts\n",
696 num_rx, num_tx);
697
Mugunthan V Ndf828592012-03-18 20:17:54 +0000698 return num_rx;
699}
700
701static inline void soft_reset(const char *module, void __iomem *reg)
702{
703 unsigned long timeout = jiffies + HZ;
704
705 __raw_writel(1, reg);
706 do {
707 cpu_relax();
708 } while ((__raw_readl(reg) & 1) && time_after(timeout, jiffies));
709
710 WARN(__raw_readl(reg) & 1, "failed to soft-reset %s\n", module);
711}
712
713#define mac_hi(mac) (((mac)[0] << 0) | ((mac)[1] << 8) | \
714 ((mac)[2] << 16) | ((mac)[3] << 24))
715#define mac_lo(mac) (((mac)[4] << 0) | ((mac)[5] << 8))
716
717static void cpsw_set_slave_mac(struct cpsw_slave *slave,
718 struct cpsw_priv *priv)
719{
Richard Cochran9750a3a2012-10-29 08:45:15 +0000720 slave_write(slave, mac_hi(priv->mac_addr), SA_HI);
721 slave_write(slave, mac_lo(priv->mac_addr), SA_LO);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000722}
723
724static void _cpsw_adjust_link(struct cpsw_slave *slave,
725 struct cpsw_priv *priv, bool *link)
726{
727 struct phy_device *phy = slave->phy;
728 u32 mac_control = 0;
729 u32 slave_port;
730
731 if (!phy)
732 return;
733
734 slave_port = cpsw_get_slave_port(priv, slave->slave_num);
735
736 if (phy->link) {
737 mac_control = priv->data.mac_control;
738
739 /* enable forwarding */
740 cpsw_ale_control_set(priv->ale, slave_port,
741 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
742
743 if (phy->speed == 1000)
744 mac_control |= BIT(7); /* GIGABITEN */
745 if (phy->duplex)
746 mac_control |= BIT(0); /* FULLDUPLEXEN */
Daniel Mack342b7b72012-09-27 09:19:34 +0000747
748 /* set speed_in input in case RMII mode is used in 100Mbps */
749 if (phy->speed == 100)
750 mac_control |= BIT(15);
751
Mugunthan V Ndf828592012-03-18 20:17:54 +0000752 *link = true;
753 } else {
754 mac_control = 0;
755 /* disable forwarding */
756 cpsw_ale_control_set(priv->ale, slave_port,
757 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
758 }
759
760 if (mac_control != slave->mac_control) {
761 phy_print_status(phy);
762 __raw_writel(mac_control, &slave->sliver->mac_control);
763 }
764
765 slave->mac_control = mac_control;
766}
767
768static void cpsw_adjust_link(struct net_device *ndev)
769{
770 struct cpsw_priv *priv = netdev_priv(ndev);
771 bool link = false;
772
773 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
774
775 if (link) {
776 netif_carrier_on(ndev);
777 if (netif_running(ndev))
778 netif_wake_queue(ndev);
779 } else {
780 netif_carrier_off(ndev);
781 netif_stop_queue(ndev);
782 }
783}
784
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000785static int cpsw_get_coalesce(struct net_device *ndev,
786 struct ethtool_coalesce *coal)
787{
788 struct cpsw_priv *priv = netdev_priv(ndev);
789
790 coal->rx_coalesce_usecs = priv->coal_intvl;
791 return 0;
792}
793
794static int cpsw_set_coalesce(struct net_device *ndev,
795 struct ethtool_coalesce *coal)
796{
797 struct cpsw_priv *priv = netdev_priv(ndev);
798 u32 int_ctrl;
799 u32 num_interrupts = 0;
800 u32 prescale = 0;
801 u32 addnl_dvdr = 1;
802 u32 coal_intvl = 0;
803
804 if (!coal->rx_coalesce_usecs)
805 return -EINVAL;
806
807 coal_intvl = coal->rx_coalesce_usecs;
808
809 int_ctrl = readl(&priv->wr_regs->int_control);
810 prescale = priv->bus_freq_mhz * 4;
811
812 if (coal_intvl < CPSW_CMINTMIN_INTVL)
813 coal_intvl = CPSW_CMINTMIN_INTVL;
814
815 if (coal_intvl > CPSW_CMINTMAX_INTVL) {
816 /* Interrupt pacer works with 4us Pulse, we can
817 * throttle further by dilating the 4us pulse.
818 */
819 addnl_dvdr = CPSW_INTPRESCALE_MASK / prescale;
820
821 if (addnl_dvdr > 1) {
822 prescale *= addnl_dvdr;
823 if (coal_intvl > (CPSW_CMINTMAX_INTVL * addnl_dvdr))
824 coal_intvl = (CPSW_CMINTMAX_INTVL
825 * addnl_dvdr);
826 } else {
827 addnl_dvdr = 1;
828 coal_intvl = CPSW_CMINTMAX_INTVL;
829 }
830 }
831
832 num_interrupts = (1000 * addnl_dvdr) / coal_intvl;
833 writel(num_interrupts, &priv->wr_regs->rx_imax);
834 writel(num_interrupts, &priv->wr_regs->tx_imax);
835
836 int_ctrl |= CPSW_INTPACEEN;
837 int_ctrl &= (~CPSW_INTPRESCALE_MASK);
838 int_ctrl |= (prescale & CPSW_INTPRESCALE_MASK);
839 writel(int_ctrl, &priv->wr_regs->int_control);
840
841 cpsw_notice(priv, timer, "Set coalesce to %d usecs.\n", coal_intvl);
842 if (priv->data.dual_emac) {
843 int i;
844
845 for (i = 0; i < priv->data.slaves; i++) {
846 priv = netdev_priv(priv->slaves[i].ndev);
847 priv->coal_intvl = coal_intvl;
848 }
849 } else {
850 priv->coal_intvl = coal_intvl;
851 }
852
853 return 0;
854}
855
Mugunthan V Nd9718542013-07-23 15:38:17 +0530856static int cpsw_get_sset_count(struct net_device *ndev, int sset)
857{
858 switch (sset) {
859 case ETH_SS_STATS:
860 return CPSW_STATS_LEN;
861 default:
862 return -EOPNOTSUPP;
863 }
864}
865
866static void cpsw_get_strings(struct net_device *ndev, u32 stringset, u8 *data)
867{
868 u8 *p = data;
869 int i;
870
871 switch (stringset) {
872 case ETH_SS_STATS:
873 for (i = 0; i < CPSW_STATS_LEN; i++) {
874 memcpy(p, cpsw_gstrings_stats[i].stat_string,
875 ETH_GSTRING_LEN);
876 p += ETH_GSTRING_LEN;
877 }
878 break;
879 }
880}
881
882static void cpsw_get_ethtool_stats(struct net_device *ndev,
883 struct ethtool_stats *stats, u64 *data)
884{
885 struct cpsw_priv *priv = netdev_priv(ndev);
886 struct cpdma_chan_stats rx_stats;
887 struct cpdma_chan_stats tx_stats;
888 u32 val;
889 u8 *p;
890 int i;
891
892 /* Collect Davinci CPDMA stats for Rx and Tx Channel */
893 cpdma_chan_get_stats(priv->rxch, &rx_stats);
894 cpdma_chan_get_stats(priv->txch, &tx_stats);
895
896 for (i = 0; i < CPSW_STATS_LEN; i++) {
897 switch (cpsw_gstrings_stats[i].type) {
898 case CPSW_STATS:
899 val = readl(priv->hw_stats +
900 cpsw_gstrings_stats[i].stat_offset);
901 data[i] = val;
902 break;
903
904 case CPDMA_RX_STATS:
905 p = (u8 *)&rx_stats +
906 cpsw_gstrings_stats[i].stat_offset;
907 data[i] = *(u32 *)p;
908 break;
909
910 case CPDMA_TX_STATS:
911 p = (u8 *)&tx_stats +
912 cpsw_gstrings_stats[i].stat_offset;
913 data[i] = *(u32 *)p;
914 break;
915 }
916 }
917}
918
Mugunthan V Ndf828592012-03-18 20:17:54 +0000919static inline int __show_stat(char *buf, int maxlen, const char *name, u32 val)
920{
921 static char *leader = "........................................";
922
923 if (!val)
924 return 0;
925 else
926 return snprintf(buf, maxlen, "%s %s %10d\n", name,
927 leader + strlen(name), val);
928}
929
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000930static int cpsw_common_res_usage_state(struct cpsw_priv *priv)
931{
932 u32 i;
933 u32 usage_count = 0;
934
935 if (!priv->data.dual_emac)
936 return 0;
937
938 for (i = 0; i < priv->data.slaves; i++)
939 if (priv->slaves[i].open_stat)
940 usage_count++;
941
942 return usage_count;
943}
944
945static inline int cpsw_tx_packet_submit(struct net_device *ndev,
946 struct cpsw_priv *priv, struct sk_buff *skb)
947{
948 if (!priv->data.dual_emac)
949 return cpdma_chan_submit(priv->txch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +0000950 skb->len, 0);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000951
952 if (ndev == cpsw_get_slave_ndev(priv, 0))
953 return cpdma_chan_submit(priv->txch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +0000954 skb->len, 1);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000955 else
956 return cpdma_chan_submit(priv->txch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +0000957 skb->len, 2);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000958}
959
960static inline void cpsw_add_dual_emac_def_ale_entries(
961 struct cpsw_priv *priv, struct cpsw_slave *slave,
962 u32 slave_port)
963{
964 u32 port_mask = 1 << slave_port | 1 << priv->host_port;
965
966 if (priv->version == CPSW_VERSION_1)
967 slave_write(slave, slave->port_vlan, CPSW1_PORT_VLAN);
968 else
969 slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN);
970 cpsw_ale_add_vlan(priv->ale, slave->port_vlan, port_mask,
971 port_mask, port_mask, 0);
972 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
973 port_mask, ALE_VLAN, slave->port_vlan, 0);
974 cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
975 priv->host_port, ALE_VLAN, slave->port_vlan);
976}
977
Mugunthan V Ndf828592012-03-18 20:17:54 +0000978static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
979{
980 char name[32];
981 u32 slave_port;
982
983 sprintf(name, "slave-%d", slave->slave_num);
984
985 soft_reset(name, &slave->sliver->soft_reset);
986
987 /* setup priority mapping */
988 __raw_writel(RX_PRIORITY_MAPPING, &slave->sliver->rx_pri_map);
Richard Cochran9750a3a2012-10-29 08:45:15 +0000989
990 switch (priv->version) {
991 case CPSW_VERSION_1:
992 slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP);
993 break;
994 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +0530995 case CPSW_VERSION_3:
Richard Cochran9750a3a2012-10-29 08:45:15 +0000996 slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP);
997 break;
998 }
Mugunthan V Ndf828592012-03-18 20:17:54 +0000999
1000 /* setup max packet size, and mac address */
1001 __raw_writel(priv->rx_packet_max, &slave->sliver->rx_maxlen);
1002 cpsw_set_slave_mac(slave, priv);
1003
1004 slave->mac_control = 0; /* no link yet */
1005
1006 slave_port = cpsw_get_slave_port(priv, slave->slave_num);
1007
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001008 if (priv->data.dual_emac)
1009 cpsw_add_dual_emac_def_ale_entries(priv, slave, slave_port);
1010 else
1011 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1012 1 << slave_port, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001013
1014 slave->phy = phy_connect(priv->ndev, slave->data->phy_id,
Florian Fainellif9a8f832013-01-14 00:52:52 +00001015 &cpsw_adjust_link, slave->data->phy_if);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001016 if (IS_ERR(slave->phy)) {
1017 dev_err(priv->dev, "phy %s not found on slave %d\n",
1018 slave->data->phy_id, slave->slave_num);
1019 slave->phy = NULL;
1020 } else {
1021 dev_info(priv->dev, "phy found : id is : 0x%x\n",
1022 slave->phy->phy_id);
1023 phy_start(slave->phy);
1024 }
1025}
1026
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001027static inline void cpsw_add_default_vlan(struct cpsw_priv *priv)
1028{
1029 const int vlan = priv->data.default_vlan;
1030 const int port = priv->host_port;
1031 u32 reg;
1032 int i;
1033
1034 reg = (priv->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN :
1035 CPSW2_PORT_VLAN;
1036
1037 writel(vlan, &priv->host_port_regs->port_vlan);
1038
Daniel Mack0237c112013-02-26 04:06:20 +00001039 for (i = 0; i < priv->data.slaves; i++)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001040 slave_write(priv->slaves + i, vlan, reg);
1041
1042 cpsw_ale_add_vlan(priv->ale, vlan, ALE_ALL_PORTS << port,
1043 ALE_ALL_PORTS << port, ALE_ALL_PORTS << port,
1044 (ALE_PORT_1 | ALE_PORT_2) << port);
1045}
1046
Mugunthan V Ndf828592012-03-18 20:17:54 +00001047static void cpsw_init_host_port(struct cpsw_priv *priv)
1048{
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001049 u32 control_reg;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001050 u32 fifo_mode;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001051
Mugunthan V Ndf828592012-03-18 20:17:54 +00001052 /* soft reset the controller and initialize ale */
1053 soft_reset("cpsw", &priv->regs->soft_reset);
1054 cpsw_ale_start(priv->ale);
1055
1056 /* switch to vlan unaware mode */
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001057 cpsw_ale_control_set(priv->ale, priv->host_port, ALE_VLAN_AWARE,
1058 CPSW_ALE_VLAN_AWARE);
1059 control_reg = readl(&priv->regs->control);
1060 control_reg |= CPSW_VLAN_AWARE;
1061 writel(control_reg, &priv->regs->control);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001062 fifo_mode = (priv->data.dual_emac) ? CPSW_FIFO_DUAL_MAC_MODE :
1063 CPSW_FIFO_NORMAL_MODE;
1064 writel(fifo_mode, &priv->host_port_regs->tx_in_ctl);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001065
1066 /* setup host port priority mapping */
1067 __raw_writel(CPDMA_TX_PRIORITY_MAP,
1068 &priv->host_port_regs->cpdma_tx_pri_map);
1069 __raw_writel(0, &priv->host_port_regs->cpdma_rx_chan_map);
1070
1071 cpsw_ale_control_set(priv->ale, priv->host_port,
1072 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
1073
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001074 if (!priv->data.dual_emac) {
1075 cpsw_ale_add_ucast(priv->ale, priv->mac_addr, priv->host_port,
1076 0, 0);
1077 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1078 1 << priv->host_port, 0, 0, ALE_MCAST_FWD_2);
1079 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001080}
1081
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001082static void cpsw_slave_stop(struct cpsw_slave *slave, struct cpsw_priv *priv)
1083{
1084 if (!slave->phy)
1085 return;
1086 phy_stop(slave->phy);
1087 phy_disconnect(slave->phy);
1088 slave->phy = NULL;
1089}
1090
Mugunthan V Ndf828592012-03-18 20:17:54 +00001091static int cpsw_ndo_open(struct net_device *ndev)
1092{
1093 struct cpsw_priv *priv = netdev_priv(ndev);
Sebastian Siewiora11fbba2013-04-24 08:48:25 +00001094 struct cpsw_priv *prim_cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001095 int i, ret;
1096 u32 reg;
1097
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001098 if (!cpsw_common_res_usage_state(priv))
1099 cpsw_intr_disable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001100 netif_carrier_off(ndev);
1101
Mugunthan V Nf150bd72012-07-17 08:09:50 +00001102 pm_runtime_get_sync(&priv->pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001103
Richard Cochran549985e2012-11-14 09:07:56 +00001104 reg = priv->version;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001105
1106 dev_info(priv->dev, "initializing cpsw version %d.%d (%d)\n",
1107 CPSW_MAJOR_VERSION(reg), CPSW_MINOR_VERSION(reg),
1108 CPSW_RTL_VERSION(reg));
1109
1110 /* initialize host and slave ports */
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001111 if (!cpsw_common_res_usage_state(priv))
1112 cpsw_init_host_port(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001113 for_each_slave(priv, cpsw_slave_open, priv);
1114
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001115 /* Add default VLAN */
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001116 if (!priv->data.dual_emac)
1117 cpsw_add_default_vlan(priv);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001118
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001119 if (!cpsw_common_res_usage_state(priv)) {
1120 /* setup tx dma to fixed prio and zero offset */
1121 cpdma_control_set(priv->dma, CPDMA_TX_PRIO_FIXED, 1);
1122 cpdma_control_set(priv->dma, CPDMA_RX_BUFFER_OFFSET, 0);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001123
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001124 /* disable priority elevation */
1125 __raw_writel(0, &priv->regs->ptype);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001126
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001127 /* enable statistics collection only on all ports */
1128 __raw_writel(0x7, &priv->regs->stat_port_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001129
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001130 if (WARN_ON(!priv->data.rx_descs))
1131 priv->data.rx_descs = 128;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001132
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001133 for (i = 0; i < priv->data.rx_descs; i++) {
1134 struct sk_buff *skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001135
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001136 ret = -ENOMEM;
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001137 skb = __netdev_alloc_skb_ip_align(priv->ndev,
1138 priv->rx_packet_max, GFP_KERNEL);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001139 if (!skb)
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001140 goto err_cleanup;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001141 ret = cpdma_chan_submit(priv->rxch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +00001142 skb_tailroom(skb), 0);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001143 if (ret < 0) {
1144 kfree_skb(skb);
1145 goto err_cleanup;
1146 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001147 }
1148 /* continue even if we didn't manage to submit all
1149 * receive descs
1150 */
1151 cpsw_info(priv, ifup, "submitted %d rx descriptors\n", i);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001152 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001153
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001154 /* Enable Interrupt pacing if configured */
1155 if (priv->coal_intvl != 0) {
1156 struct ethtool_coalesce coal;
1157
1158 coal.rx_coalesce_usecs = (priv->coal_intvl << 4);
1159 cpsw_set_coalesce(ndev, &coal);
1160 }
1161
Sebastian Siewiora11fbba2013-04-24 08:48:25 +00001162 prim_cpsw = cpsw_get_slave_priv(priv, 0);
1163 if (prim_cpsw->irq_enabled == false) {
1164 if ((priv == prim_cpsw) || !netif_running(prim_cpsw->ndev)) {
1165 prim_cpsw->irq_enabled = true;
1166 cpsw_enable_irq(prim_cpsw);
1167 }
1168 }
1169
Mugunthan V Ndf828592012-03-18 20:17:54 +00001170 cpdma_ctlr_start(priv->dma);
1171 cpsw_intr_enable(priv);
1172 napi_enable(&priv->napi);
Mugunthan V N510a1e72013-02-17 22:19:20 +00001173 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_RX);
1174 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_TX);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001175
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001176 if (priv->data.dual_emac)
1177 priv->slaves[priv->emac_port].open_stat = true;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001178 return 0;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001179
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001180err_cleanup:
1181 cpdma_ctlr_stop(priv->dma);
1182 for_each_slave(priv, cpsw_slave_stop, priv);
1183 pm_runtime_put_sync(&priv->pdev->dev);
1184 netif_carrier_off(priv->ndev);
1185 return ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001186}
1187
1188static int cpsw_ndo_stop(struct net_device *ndev)
1189{
1190 struct cpsw_priv *priv = netdev_priv(ndev);
1191
1192 cpsw_info(priv, ifdown, "shutting down cpsw device\n");
Mugunthan V Ndf828592012-03-18 20:17:54 +00001193 netif_stop_queue(priv->ndev);
1194 napi_disable(&priv->napi);
1195 netif_carrier_off(priv->ndev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001196
1197 if (cpsw_common_res_usage_state(priv) <= 1) {
1198 cpsw_intr_disable(priv);
1199 cpdma_ctlr_int_ctrl(priv->dma, false);
1200 cpdma_ctlr_stop(priv->dma);
1201 cpsw_ale_stop(priv->ale);
1202 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001203 for_each_slave(priv, cpsw_slave_stop, priv);
Mugunthan V Nf150bd72012-07-17 08:09:50 +00001204 pm_runtime_put_sync(&priv->pdev->dev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001205 if (priv->data.dual_emac)
1206 priv->slaves[priv->emac_port].open_stat = false;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001207 return 0;
1208}
1209
1210static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb,
1211 struct net_device *ndev)
1212{
1213 struct cpsw_priv *priv = netdev_priv(ndev);
1214 int ret;
1215
1216 ndev->trans_start = jiffies;
1217
1218 if (skb_padto(skb, CPSW_MIN_PACKET_SIZE)) {
1219 cpsw_err(priv, tx_err, "packet pad failed\n");
1220 priv->stats.tx_dropped++;
1221 return NETDEV_TX_OK;
1222 }
1223
Mugunthan V N9232b162013-02-11 09:52:19 +00001224 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
1225 priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001226 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1227
1228 skb_tx_timestamp(skb);
1229
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001230 ret = cpsw_tx_packet_submit(ndev, priv, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001231 if (unlikely(ret != 0)) {
1232 cpsw_err(priv, tx_err, "desc submit failed\n");
1233 goto fail;
1234 }
1235
Mugunthan V Nfae50822013-01-17 06:31:34 +00001236 /* If there is no more tx desc left free then we need to
1237 * tell the kernel to stop sending us tx frames.
1238 */
Daniel Mackd35162f2013-03-12 06:31:19 +00001239 if (unlikely(!cpdma_check_free_tx_desc(priv->txch)))
Mugunthan V Nfae50822013-01-17 06:31:34 +00001240 netif_stop_queue(ndev);
1241
Mugunthan V Ndf828592012-03-18 20:17:54 +00001242 return NETDEV_TX_OK;
1243fail:
1244 priv->stats.tx_dropped++;
1245 netif_stop_queue(ndev);
1246 return NETDEV_TX_BUSY;
1247}
1248
1249static void cpsw_ndo_change_rx_flags(struct net_device *ndev, int flags)
1250{
1251 /*
1252 * The switch cannot operate in promiscuous mode without substantial
1253 * headache. For promiscuous mode to work, we would need to put the
1254 * ALE in bypass mode and route all traffic to the host port.
1255 * Subsequently, the host will need to operate as a "bridge", learn,
1256 * and flood as needed. For now, we simply complain here and
1257 * do nothing about it :-)
1258 */
1259 if ((flags & IFF_PROMISC) && (ndev->flags & IFF_PROMISC))
1260 dev_err(&ndev->dev, "promiscuity ignored!\n");
1261
1262 /*
1263 * The switch cannot filter multicast traffic unless it is configured
1264 * in "VLAN Aware" mode. Unfortunately, VLAN awareness requires a
1265 * whole bunch of additional logic that this driver does not implement
1266 * at present.
1267 */
1268 if ((flags & IFF_ALLMULTI) && !(ndev->flags & IFF_ALLMULTI))
1269 dev_err(&ndev->dev, "multicast traffic cannot be filtered!\n");
1270}
1271
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001272#ifdef CONFIG_TI_CPTS
1273
1274static void cpsw_hwtstamp_v1(struct cpsw_priv *priv)
1275{
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001276 struct cpsw_slave *slave = &priv->slaves[priv->data.active_slave];
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001277 u32 ts_en, seq_id;
1278
Mugunthan V N9232b162013-02-11 09:52:19 +00001279 if (!priv->cpts->tx_enable && !priv->cpts->rx_enable) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001280 slave_write(slave, 0, CPSW1_TS_CTL);
1281 return;
1282 }
1283
1284 seq_id = (30 << CPSW_V1_SEQ_ID_OFS_SHIFT) | ETH_P_1588;
1285 ts_en = EVENT_MSG_BITS << CPSW_V1_MSG_TYPE_OFS;
1286
Mugunthan V N9232b162013-02-11 09:52:19 +00001287 if (priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001288 ts_en |= CPSW_V1_TS_TX_EN;
1289
Mugunthan V N9232b162013-02-11 09:52:19 +00001290 if (priv->cpts->rx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001291 ts_en |= CPSW_V1_TS_RX_EN;
1292
1293 slave_write(slave, ts_en, CPSW1_TS_CTL);
1294 slave_write(slave, seq_id, CPSW1_TS_SEQ_LTYPE);
1295}
1296
1297static void cpsw_hwtstamp_v2(struct cpsw_priv *priv)
1298{
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001299 struct cpsw_slave *slave;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001300 u32 ctrl, mtype;
1301
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001302 if (priv->data.dual_emac)
1303 slave = &priv->slaves[priv->emac_port];
1304 else
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001305 slave = &priv->slaves[priv->data.active_slave];
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001306
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001307 ctrl = slave_read(slave, CPSW2_CONTROL);
1308 ctrl &= ~CTRL_ALL_TS_MASK;
1309
Mugunthan V N9232b162013-02-11 09:52:19 +00001310 if (priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001311 ctrl |= CTRL_TX_TS_BITS;
1312
Mugunthan V N9232b162013-02-11 09:52:19 +00001313 if (priv->cpts->rx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001314 ctrl |= CTRL_RX_TS_BITS;
1315
1316 mtype = (30 << TS_SEQ_ID_OFFSET_SHIFT) | EVENT_MSG_BITS;
1317
1318 slave_write(slave, mtype, CPSW2_TS_SEQ_MTYPE);
1319 slave_write(slave, ctrl, CPSW2_CONTROL);
1320 __raw_writel(ETH_P_1588, &priv->regs->ts_ltype);
1321}
1322
Mugunthan V N3177bf62012-11-27 07:53:40 +00001323static int cpsw_hwtstamp_ioctl(struct net_device *dev, struct ifreq *ifr)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001324{
Mugunthan V N3177bf62012-11-27 07:53:40 +00001325 struct cpsw_priv *priv = netdev_priv(dev);
Mugunthan V N9232b162013-02-11 09:52:19 +00001326 struct cpts *cpts = priv->cpts;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001327 struct hwtstamp_config cfg;
1328
1329 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1330 return -EFAULT;
1331
1332 /* reserved for future extensions */
1333 if (cfg.flags)
1334 return -EINVAL;
1335
1336 switch (cfg.tx_type) {
1337 case HWTSTAMP_TX_OFF:
1338 cpts->tx_enable = 0;
1339 break;
1340 case HWTSTAMP_TX_ON:
1341 cpts->tx_enable = 1;
1342 break;
1343 default:
1344 return -ERANGE;
1345 }
1346
1347 switch (cfg.rx_filter) {
1348 case HWTSTAMP_FILTER_NONE:
1349 cpts->rx_enable = 0;
1350 break;
1351 case HWTSTAMP_FILTER_ALL:
1352 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1353 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1354 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
1355 return -ERANGE;
1356 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1357 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1358 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1359 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1360 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1361 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1362 case HWTSTAMP_FILTER_PTP_V2_EVENT:
1363 case HWTSTAMP_FILTER_PTP_V2_SYNC:
1364 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
1365 cpts->rx_enable = 1;
1366 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
1367 break;
1368 default:
1369 return -ERANGE;
1370 }
1371
1372 switch (priv->version) {
1373 case CPSW_VERSION_1:
1374 cpsw_hwtstamp_v1(priv);
1375 break;
1376 case CPSW_VERSION_2:
1377 cpsw_hwtstamp_v2(priv);
1378 break;
1379 default:
1380 return -ENOTSUPP;
1381 }
1382
1383 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1384}
1385
1386#endif /*CONFIG_TI_CPTS*/
1387
1388static int cpsw_ndo_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
1389{
Mugunthan V N11f2c982013-03-11 23:16:38 +00001390 struct cpsw_priv *priv = netdev_priv(dev);
1391 struct mii_ioctl_data *data = if_mii(req);
1392 int slave_no = cpsw_slave_index(priv);
1393
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001394 if (!netif_running(dev))
1395 return -EINVAL;
1396
Mugunthan V N11f2c982013-03-11 23:16:38 +00001397 switch (cmd) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001398#ifdef CONFIG_TI_CPTS
Mugunthan V N11f2c982013-03-11 23:16:38 +00001399 case SIOCSHWTSTAMP:
Mugunthan V N3177bf62012-11-27 07:53:40 +00001400 return cpsw_hwtstamp_ioctl(dev, req);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001401#endif
Mugunthan V N11f2c982013-03-11 23:16:38 +00001402 case SIOCGMIIPHY:
1403 data->phy_id = priv->slaves[slave_no].phy->addr;
1404 break;
1405 default:
1406 return -ENOTSUPP;
1407 }
1408
1409 return 0;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001410}
1411
Mugunthan V Ndf828592012-03-18 20:17:54 +00001412static void cpsw_ndo_tx_timeout(struct net_device *ndev)
1413{
1414 struct cpsw_priv *priv = netdev_priv(ndev);
1415
1416 cpsw_err(priv, tx_err, "transmit timeout, restarting dma\n");
1417 priv->stats.tx_errors++;
1418 cpsw_intr_disable(priv);
1419 cpdma_ctlr_int_ctrl(priv->dma, false);
1420 cpdma_chan_stop(priv->txch);
1421 cpdma_chan_start(priv->txch);
1422 cpdma_ctlr_int_ctrl(priv->dma, true);
1423 cpsw_intr_enable(priv);
Mugunthan V N510a1e72013-02-17 22:19:20 +00001424 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_RX);
1425 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_TX);
1426
Mugunthan V Ndf828592012-03-18 20:17:54 +00001427}
1428
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301429static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p)
1430{
1431 struct cpsw_priv *priv = netdev_priv(ndev);
1432 struct sockaddr *addr = (struct sockaddr *)p;
1433 int flags = 0;
1434 u16 vid = 0;
1435
1436 if (!is_valid_ether_addr(addr->sa_data))
1437 return -EADDRNOTAVAIL;
1438
1439 if (priv->data.dual_emac) {
1440 vid = priv->slaves[priv->emac_port].port_vlan;
1441 flags = ALE_VLAN;
1442 }
1443
1444 cpsw_ale_del_ucast(priv->ale, priv->mac_addr, priv->host_port,
1445 flags, vid);
1446 cpsw_ale_add_ucast(priv->ale, addr->sa_data, priv->host_port,
1447 flags, vid);
1448
1449 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
1450 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
1451 for_each_slave(priv, cpsw_set_slave_mac, priv);
1452
1453 return 0;
1454}
1455
Mugunthan V Ndf828592012-03-18 20:17:54 +00001456static struct net_device_stats *cpsw_ndo_get_stats(struct net_device *ndev)
1457{
1458 struct cpsw_priv *priv = netdev_priv(ndev);
1459 return &priv->stats;
1460}
1461
1462#ifdef CONFIG_NET_POLL_CONTROLLER
1463static void cpsw_ndo_poll_controller(struct net_device *ndev)
1464{
1465 struct cpsw_priv *priv = netdev_priv(ndev);
1466
1467 cpsw_intr_disable(priv);
1468 cpdma_ctlr_int_ctrl(priv->dma, false);
1469 cpsw_interrupt(ndev->irq, priv);
1470 cpdma_ctlr_int_ctrl(priv->dma, true);
1471 cpsw_intr_enable(priv);
Mugunthan V N510a1e72013-02-17 22:19:20 +00001472 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_RX);
1473 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_TX);
1474
Mugunthan V Ndf828592012-03-18 20:17:54 +00001475}
1476#endif
1477
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001478static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv,
1479 unsigned short vid)
1480{
1481 int ret;
1482
1483 ret = cpsw_ale_add_vlan(priv->ale, vid,
1484 ALE_ALL_PORTS << priv->host_port,
1485 0, ALE_ALL_PORTS << priv->host_port,
1486 (ALE_PORT_1 | ALE_PORT_2) << priv->host_port);
1487 if (ret != 0)
1488 return ret;
1489
1490 ret = cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
1491 priv->host_port, ALE_VLAN, vid);
1492 if (ret != 0)
1493 goto clean_vid;
1494
1495 ret = cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1496 ALE_ALL_PORTS << priv->host_port,
1497 ALE_VLAN, vid, 0);
1498 if (ret != 0)
1499 goto clean_vlan_ucast;
1500 return 0;
1501
1502clean_vlan_ucast:
1503 cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
1504 priv->host_port, ALE_VLAN, vid);
1505clean_vid:
1506 cpsw_ale_del_vlan(priv->ale, vid, 0);
1507 return ret;
1508}
1509
1510static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001511 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001512{
1513 struct cpsw_priv *priv = netdev_priv(ndev);
1514
1515 if (vid == priv->data.default_vlan)
1516 return 0;
1517
1518 dev_info(priv->dev, "Adding vlanid %d to vlan filter\n", vid);
1519 return cpsw_add_vlan_ale_entry(priv, vid);
1520}
1521
1522static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001523 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001524{
1525 struct cpsw_priv *priv = netdev_priv(ndev);
1526 int ret;
1527
1528 if (vid == priv->data.default_vlan)
1529 return 0;
1530
1531 dev_info(priv->dev, "removing vlanid %d from vlan filter\n", vid);
1532 ret = cpsw_ale_del_vlan(priv->ale, vid, 0);
1533 if (ret != 0)
1534 return ret;
1535
1536 ret = cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
1537 priv->host_port, ALE_VLAN, vid);
1538 if (ret != 0)
1539 return ret;
1540
1541 return cpsw_ale_del_mcast(priv->ale, priv->ndev->broadcast,
1542 0, ALE_VLAN, vid);
1543}
1544
Mugunthan V Ndf828592012-03-18 20:17:54 +00001545static const struct net_device_ops cpsw_netdev_ops = {
1546 .ndo_open = cpsw_ndo_open,
1547 .ndo_stop = cpsw_ndo_stop,
1548 .ndo_start_xmit = cpsw_ndo_start_xmit,
1549 .ndo_change_rx_flags = cpsw_ndo_change_rx_flags,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301550 .ndo_set_mac_address = cpsw_ndo_set_mac_address,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001551 .ndo_do_ioctl = cpsw_ndo_ioctl,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001552 .ndo_validate_addr = eth_validate_addr,
David S. Miller5c473ed2012-03-20 00:33:59 -04001553 .ndo_change_mtu = eth_change_mtu,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001554 .ndo_tx_timeout = cpsw_ndo_tx_timeout,
1555 .ndo_get_stats = cpsw_ndo_get_stats,
Mugunthan V N5c50a852012-10-29 08:45:11 +00001556 .ndo_set_rx_mode = cpsw_ndo_set_rx_mode,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001557#ifdef CONFIG_NET_POLL_CONTROLLER
1558 .ndo_poll_controller = cpsw_ndo_poll_controller,
1559#endif
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001560 .ndo_vlan_rx_add_vid = cpsw_ndo_vlan_rx_add_vid,
1561 .ndo_vlan_rx_kill_vid = cpsw_ndo_vlan_rx_kill_vid,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001562};
1563
1564static void cpsw_get_drvinfo(struct net_device *ndev,
1565 struct ethtool_drvinfo *info)
1566{
1567 struct cpsw_priv *priv = netdev_priv(ndev);
Jiri Pirko7826d432013-01-06 00:44:26 +00001568
1569 strlcpy(info->driver, "TI CPSW Driver v1.0", sizeof(info->driver));
1570 strlcpy(info->version, "1.0", sizeof(info->version));
1571 strlcpy(info->bus_info, priv->pdev->name, sizeof(info->bus_info));
Mugunthan V Ndf828592012-03-18 20:17:54 +00001572}
1573
1574static u32 cpsw_get_msglevel(struct net_device *ndev)
1575{
1576 struct cpsw_priv *priv = netdev_priv(ndev);
1577 return priv->msg_enable;
1578}
1579
1580static void cpsw_set_msglevel(struct net_device *ndev, u32 value)
1581{
1582 struct cpsw_priv *priv = netdev_priv(ndev);
1583 priv->msg_enable = value;
1584}
1585
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001586static int cpsw_get_ts_info(struct net_device *ndev,
1587 struct ethtool_ts_info *info)
1588{
1589#ifdef CONFIG_TI_CPTS
1590 struct cpsw_priv *priv = netdev_priv(ndev);
1591
1592 info->so_timestamping =
1593 SOF_TIMESTAMPING_TX_HARDWARE |
1594 SOF_TIMESTAMPING_TX_SOFTWARE |
1595 SOF_TIMESTAMPING_RX_HARDWARE |
1596 SOF_TIMESTAMPING_RX_SOFTWARE |
1597 SOF_TIMESTAMPING_SOFTWARE |
1598 SOF_TIMESTAMPING_RAW_HARDWARE;
Mugunthan V N9232b162013-02-11 09:52:19 +00001599 info->phc_index = priv->cpts->phc_index;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001600 info->tx_types =
1601 (1 << HWTSTAMP_TX_OFF) |
1602 (1 << HWTSTAMP_TX_ON);
1603 info->rx_filters =
1604 (1 << HWTSTAMP_FILTER_NONE) |
1605 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT);
1606#else
1607 info->so_timestamping =
1608 SOF_TIMESTAMPING_TX_SOFTWARE |
1609 SOF_TIMESTAMPING_RX_SOFTWARE |
1610 SOF_TIMESTAMPING_SOFTWARE;
1611 info->phc_index = -1;
1612 info->tx_types = 0;
1613 info->rx_filters = 0;
1614#endif
1615 return 0;
1616}
1617
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001618static int cpsw_get_settings(struct net_device *ndev,
1619 struct ethtool_cmd *ecmd)
1620{
1621 struct cpsw_priv *priv = netdev_priv(ndev);
1622 int slave_no = cpsw_slave_index(priv);
1623
1624 if (priv->slaves[slave_no].phy)
1625 return phy_ethtool_gset(priv->slaves[slave_no].phy, ecmd);
1626 else
1627 return -EOPNOTSUPP;
1628}
1629
1630static int cpsw_set_settings(struct net_device *ndev, struct ethtool_cmd *ecmd)
1631{
1632 struct cpsw_priv *priv = netdev_priv(ndev);
1633 int slave_no = cpsw_slave_index(priv);
1634
1635 if (priv->slaves[slave_no].phy)
1636 return phy_ethtool_sset(priv->slaves[slave_no].phy, ecmd);
1637 else
1638 return -EOPNOTSUPP;
1639}
1640
Mugunthan V Ndf828592012-03-18 20:17:54 +00001641static const struct ethtool_ops cpsw_ethtool_ops = {
1642 .get_drvinfo = cpsw_get_drvinfo,
1643 .get_msglevel = cpsw_get_msglevel,
1644 .set_msglevel = cpsw_set_msglevel,
1645 .get_link = ethtool_op_get_link,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001646 .get_ts_info = cpsw_get_ts_info,
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001647 .get_settings = cpsw_get_settings,
1648 .set_settings = cpsw_set_settings,
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001649 .get_coalesce = cpsw_get_coalesce,
1650 .set_coalesce = cpsw_set_coalesce,
Mugunthan V Nd9718542013-07-23 15:38:17 +05301651 .get_sset_count = cpsw_get_sset_count,
1652 .get_strings = cpsw_get_strings,
1653 .get_ethtool_stats = cpsw_get_ethtool_stats,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001654};
1655
Richard Cochran549985e2012-11-14 09:07:56 +00001656static void cpsw_slave_init(struct cpsw_slave *slave, struct cpsw_priv *priv,
1657 u32 slave_reg_ofs, u32 sliver_reg_ofs)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001658{
1659 void __iomem *regs = priv->regs;
1660 int slave_num = slave->slave_num;
1661 struct cpsw_slave_data *data = priv->data.slave_data + slave_num;
1662
1663 slave->data = data;
Richard Cochran549985e2012-11-14 09:07:56 +00001664 slave->regs = regs + slave_reg_ofs;
1665 slave->sliver = regs + sliver_reg_ofs;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001666 slave->port_vlan = data->dual_emac_res_vlan;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001667}
1668
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001669static int cpsw_probe_dt(struct cpsw_platform_data *data,
1670 struct platform_device *pdev)
1671{
1672 struct device_node *node = pdev->dev.of_node;
1673 struct device_node *slave_node;
1674 int i = 0, ret;
1675 u32 prop;
1676
1677 if (!node)
1678 return -EINVAL;
1679
1680 if (of_property_read_u32(node, "slaves", &prop)) {
1681 pr_err("Missing slaves property in the DT.\n");
1682 return -EINVAL;
1683 }
1684 data->slaves = prop;
1685
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001686 if (of_property_read_u32(node, "active_slave", &prop)) {
1687 pr_err("Missing active_slave property in the DT.\n");
Richard Cochran78ca0b22012-10-29 08:45:18 +00001688 ret = -EINVAL;
1689 goto error_ret;
1690 }
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001691 data->active_slave = prop;
Richard Cochran78ca0b22012-10-29 08:45:18 +00001692
Richard Cochran00ab94e2012-10-29 08:45:19 +00001693 if (of_property_read_u32(node, "cpts_clock_mult", &prop)) {
1694 pr_err("Missing cpts_clock_mult property in the DT.\n");
1695 ret = -EINVAL;
1696 goto error_ret;
1697 }
1698 data->cpts_clock_mult = prop;
1699
1700 if (of_property_read_u32(node, "cpts_clock_shift", &prop)) {
1701 pr_err("Missing cpts_clock_shift property in the DT.\n");
1702 ret = -EINVAL;
1703 goto error_ret;
1704 }
1705 data->cpts_clock_shift = prop;
1706
Joe Perchesb2adaca2013-02-03 17:43:58 +00001707 data->slave_data = kcalloc(data->slaves, sizeof(struct cpsw_slave_data),
1708 GFP_KERNEL);
1709 if (!data->slave_data)
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001710 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001711
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001712 if (of_property_read_u32(node, "cpdma_channels", &prop)) {
1713 pr_err("Missing cpdma_channels property in the DT.\n");
1714 ret = -EINVAL;
1715 goto error_ret;
1716 }
1717 data->channels = prop;
1718
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001719 if (of_property_read_u32(node, "ale_entries", &prop)) {
1720 pr_err("Missing ale_entries property in the DT.\n");
1721 ret = -EINVAL;
1722 goto error_ret;
1723 }
1724 data->ale_entries = prop;
1725
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001726 if (of_property_read_u32(node, "bd_ram_size", &prop)) {
1727 pr_err("Missing bd_ram_size property in the DT.\n");
1728 ret = -EINVAL;
1729 goto error_ret;
1730 }
1731 data->bd_ram_size = prop;
1732
1733 if (of_property_read_u32(node, "rx_descs", &prop)) {
1734 pr_err("Missing rx_descs property in the DT.\n");
1735 ret = -EINVAL;
1736 goto error_ret;
1737 }
1738 data->rx_descs = prop;
1739
1740 if (of_property_read_u32(node, "mac_control", &prop)) {
1741 pr_err("Missing mac_control property in the DT.\n");
1742 ret = -EINVAL;
1743 goto error_ret;
1744 }
1745 data->mac_control = prop;
1746
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001747 if (!of_property_read_u32(node, "dual_emac", &prop))
1748 data->dual_emac = prop;
1749
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00001750 /*
1751 * Populate all the child nodes here...
1752 */
1753 ret = of_platform_populate(node, NULL, NULL, &pdev->dev);
1754 /* We do not want to force this, as in some cases may not have child */
1755 if (ret)
1756 pr_warn("Doesn't have any child node\n");
1757
Richard Cochran549985e2012-11-14 09:07:56 +00001758 for_each_node_by_name(slave_node, "slave") {
1759 struct cpsw_slave_data *slave_data = data->slave_data + i;
1760 const void *mac_addr = NULL;
1761 u32 phyid;
1762 int lenp;
1763 const __be32 *parp;
1764 struct device_node *mdio_node;
1765 struct platform_device *mdio;
1766
1767 parp = of_get_property(slave_node, "phy_id", &lenp);
Lothar Waßmannce162942013-03-21 02:20:11 +00001768 if ((parp == NULL) || (lenp != (sizeof(void *) * 2))) {
Richard Cochran549985e2012-11-14 09:07:56 +00001769 pr_err("Missing slave[%d] phy_id property\n", i);
1770 ret = -EINVAL;
1771 goto error_ret;
1772 }
1773 mdio_node = of_find_node_by_phandle(be32_to_cpup(parp));
1774 phyid = be32_to_cpup(parp+1);
1775 mdio = of_find_device_by_node(mdio_node);
1776 snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
1777 PHY_ID_FMT, mdio->name, phyid);
1778
1779 mac_addr = of_get_mac_address(slave_node);
1780 if (mac_addr)
1781 memcpy(slave_data->mac_addr, mac_addr, ETH_ALEN);
1782
Mugunthan V Nc5ceea72013-06-03 20:10:10 +00001783 slave_data->phy_if = of_get_phy_mode(slave_node);
1784
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001785 if (data->dual_emac) {
Mugunthan V N91c41662013-04-15 07:31:28 +00001786 if (of_property_read_u32(slave_node, "dual_emac_res_vlan",
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001787 &prop)) {
1788 pr_err("Missing dual_emac_res_vlan in DT.\n");
1789 slave_data->dual_emac_res_vlan = i+1;
1790 pr_err("Using %d as Reserved VLAN for %d slave\n",
1791 slave_data->dual_emac_res_vlan, i);
1792 } else {
1793 slave_data->dual_emac_res_vlan = prop;
1794 }
1795 }
1796
Richard Cochran549985e2012-11-14 09:07:56 +00001797 i++;
1798 }
1799
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001800 return 0;
1801
1802error_ret:
1803 kfree(data->slave_data);
1804 return ret;
1805}
1806
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001807static int cpsw_probe_dual_emac(struct platform_device *pdev,
1808 struct cpsw_priv *priv)
1809{
1810 struct cpsw_platform_data *data = &priv->data;
1811 struct net_device *ndev;
1812 struct cpsw_priv *priv_sl2;
1813 int ret = 0, i;
1814
1815 ndev = alloc_etherdev(sizeof(struct cpsw_priv));
1816 if (!ndev) {
1817 pr_err("cpsw: error allocating net_device\n");
1818 return -ENOMEM;
1819 }
1820
1821 priv_sl2 = netdev_priv(ndev);
1822 spin_lock_init(&priv_sl2->lock);
1823 priv_sl2->data = *data;
1824 priv_sl2->pdev = pdev;
1825 priv_sl2->ndev = ndev;
1826 priv_sl2->dev = &ndev->dev;
1827 priv_sl2->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
1828 priv_sl2->rx_packet_max = max(rx_packet_max, 128);
1829
1830 if (is_valid_ether_addr(data->slave_data[1].mac_addr)) {
1831 memcpy(priv_sl2->mac_addr, data->slave_data[1].mac_addr,
1832 ETH_ALEN);
1833 pr_info("cpsw: Detected MACID = %pM\n", priv_sl2->mac_addr);
1834 } else {
1835 random_ether_addr(priv_sl2->mac_addr);
1836 pr_info("cpsw: Random MACID = %pM\n", priv_sl2->mac_addr);
1837 }
1838 memcpy(ndev->dev_addr, priv_sl2->mac_addr, ETH_ALEN);
1839
1840 priv_sl2->slaves = priv->slaves;
1841 priv_sl2->clk = priv->clk;
1842
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001843 priv_sl2->coal_intvl = 0;
1844 priv_sl2->bus_freq_mhz = priv->bus_freq_mhz;
1845
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001846 priv_sl2->cpsw_res = priv->cpsw_res;
1847 priv_sl2->regs = priv->regs;
1848 priv_sl2->host_port = priv->host_port;
1849 priv_sl2->host_port_regs = priv->host_port_regs;
1850 priv_sl2->wr_regs = priv->wr_regs;
Mugunthan V Nd9718542013-07-23 15:38:17 +05301851 priv_sl2->hw_stats = priv->hw_stats;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001852 priv_sl2->dma = priv->dma;
1853 priv_sl2->txch = priv->txch;
1854 priv_sl2->rxch = priv->rxch;
1855 priv_sl2->ale = priv->ale;
1856 priv_sl2->emac_port = 1;
1857 priv->slaves[1].ndev = ndev;
1858 priv_sl2->cpts = priv->cpts;
1859 priv_sl2->version = priv->version;
1860
1861 for (i = 0; i < priv->num_irqs; i++) {
1862 priv_sl2->irqs_table[i] = priv->irqs_table[i];
1863 priv_sl2->num_irqs = priv->num_irqs;
1864 }
Patrick McHardyf6469682013-04-19 02:04:27 +00001865 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001866
1867 ndev->netdev_ops = &cpsw_netdev_ops;
1868 SET_ETHTOOL_OPS(ndev, &cpsw_ethtool_ops);
1869 netif_napi_add(ndev, &priv_sl2->napi, cpsw_poll, CPSW_POLL_WEIGHT);
1870
1871 /* register the network device */
1872 SET_NETDEV_DEV(ndev, &pdev->dev);
1873 ret = register_netdev(ndev);
1874 if (ret) {
1875 pr_err("cpsw: error registering net device\n");
1876 free_netdev(ndev);
1877 ret = -ENODEV;
1878 }
1879
1880 return ret;
1881}
1882
Bill Pemberton663e12e2012-12-03 09:23:45 -05001883static int cpsw_probe(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001884{
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00001885 struct cpsw_platform_data *data;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001886 struct net_device *ndev;
1887 struct cpsw_priv *priv;
1888 struct cpdma_params dma_params;
1889 struct cpsw_ale_params ale_params;
Richard Cochran549985e2012-11-14 09:07:56 +00001890 void __iomem *ss_regs, *wr_regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001891 struct resource *res;
Richard Cochran549985e2012-11-14 09:07:56 +00001892 u32 slave_offset, sliver_offset, slave_size;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001893 int ret = 0, i, k = 0;
1894
Mugunthan V Ndf828592012-03-18 20:17:54 +00001895 ndev = alloc_etherdev(sizeof(struct cpsw_priv));
1896 if (!ndev) {
1897 pr_err("error allocating net_device\n");
1898 return -ENOMEM;
1899 }
1900
1901 platform_set_drvdata(pdev, ndev);
1902 priv = netdev_priv(ndev);
1903 spin_lock_init(&priv->lock);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001904 priv->pdev = pdev;
1905 priv->ndev = ndev;
1906 priv->dev = &ndev->dev;
1907 priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
1908 priv->rx_packet_max = max(rx_packet_max, 128);
Mugunthan V N9232b162013-02-11 09:52:19 +00001909 priv->cpts = devm_kzalloc(&pdev->dev, sizeof(struct cpts), GFP_KERNEL);
Mugunthan V N7dcf3132013-04-29 23:27:28 +00001910 priv->irq_enabled = true;
Sebastian Siewiorab8e99d2013-06-17 19:31:52 +02001911 if (!priv->cpts) {
Mugunthan V N9232b162013-02-11 09:52:19 +00001912 pr_err("error allocating cpts\n");
1913 goto clean_ndev_ret;
1914 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001915
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00001916 /*
1917 * This may be required here for child devices.
1918 */
1919 pm_runtime_enable(&pdev->dev);
1920
Mugunthan V N739683b2013-06-06 23:45:14 +05301921 /* Select default pin state */
1922 pinctrl_pm_select_default_state(&pdev->dev);
1923
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001924 if (cpsw_probe_dt(&priv->data, pdev)) {
1925 pr_err("cpsw: platform data missing\n");
1926 ret = -ENODEV;
1927 goto clean_ndev_ret;
1928 }
1929 data = &priv->data;
1930
Mugunthan V Ndf828592012-03-18 20:17:54 +00001931 if (is_valid_ether_addr(data->slave_data[0].mac_addr)) {
1932 memcpy(priv->mac_addr, data->slave_data[0].mac_addr, ETH_ALEN);
Daniel Mackcf6122b2013-06-27 11:40:47 +02001933 pr_info("Detected MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001934 } else {
Joe Perches7efd26d2012-07-12 19:33:06 +00001935 eth_random_addr(priv->mac_addr);
Daniel Mackcf6122b2013-06-27 11:40:47 +02001936 pr_info("Random MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001937 }
1938
1939 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
1940
1941 priv->slaves = kzalloc(sizeof(struct cpsw_slave) * data->slaves,
1942 GFP_KERNEL);
1943 if (!priv->slaves) {
1944 ret = -EBUSY;
1945 goto clean_ndev_ret;
1946 }
1947 for (i = 0; i < data->slaves; i++)
1948 priv->slaves[i].slave_num = i;
1949
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001950 priv->slaves[0].ndev = ndev;
1951 priv->emac_port = 0;
1952
Mugunthan V Nf150bd72012-07-17 08:09:50 +00001953 priv->clk = clk_get(&pdev->dev, "fck");
Mugunthan V Ndf828592012-03-18 20:17:54 +00001954 if (IS_ERR(priv->clk)) {
Mugunthan V Nf150bd72012-07-17 08:09:50 +00001955 dev_err(&pdev->dev, "fck is not found\n");
1956 ret = -ENODEV;
1957 goto clean_slave_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001958 }
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001959 priv->coal_intvl = 0;
1960 priv->bus_freq_mhz = clk_get_rate(priv->clk) / 1000000;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001961
1962 priv->cpsw_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1963 if (!priv->cpsw_res) {
1964 dev_err(priv->dev, "error getting i/o resource\n");
1965 ret = -ENOENT;
1966 goto clean_clk_ret;
1967 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001968 if (!request_mem_region(priv->cpsw_res->start,
1969 resource_size(priv->cpsw_res), ndev->name)) {
1970 dev_err(priv->dev, "failed request i/o region\n");
1971 ret = -ENXIO;
1972 goto clean_clk_ret;
1973 }
Richard Cochran549985e2012-11-14 09:07:56 +00001974 ss_regs = ioremap(priv->cpsw_res->start, resource_size(priv->cpsw_res));
1975 if (!ss_regs) {
Mugunthan V Ndf828592012-03-18 20:17:54 +00001976 dev_err(priv->dev, "unable to map i/o region\n");
1977 goto clean_cpsw_iores_ret;
1978 }
Richard Cochran549985e2012-11-14 09:07:56 +00001979 priv->regs = ss_regs;
1980 priv->version = __raw_readl(&priv->regs->id_ver);
1981 priv->host_port = HOST_PORT_NUM;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001982
Richard Cochrana65dd5b2012-11-02 22:25:29 +00001983 priv->cpsw_wr_res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1984 if (!priv->cpsw_wr_res) {
Mugunthan V Ndf828592012-03-18 20:17:54 +00001985 dev_err(priv->dev, "error getting i/o resource\n");
1986 ret = -ENOENT;
Richard Cochran5250c962012-11-02 22:25:30 +00001987 goto clean_iomap_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001988 }
Richard Cochrana65dd5b2012-11-02 22:25:29 +00001989 if (!request_mem_region(priv->cpsw_wr_res->start,
1990 resource_size(priv->cpsw_wr_res), ndev->name)) {
Mugunthan V Ndf828592012-03-18 20:17:54 +00001991 dev_err(priv->dev, "failed request i/o region\n");
1992 ret = -ENXIO;
Richard Cochran5250c962012-11-02 22:25:30 +00001993 goto clean_iomap_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001994 }
Richard Cochran549985e2012-11-14 09:07:56 +00001995 wr_regs = ioremap(priv->cpsw_wr_res->start,
Richard Cochrana65dd5b2012-11-02 22:25:29 +00001996 resource_size(priv->cpsw_wr_res));
Richard Cochran549985e2012-11-14 09:07:56 +00001997 if (!wr_regs) {
Mugunthan V Ndf828592012-03-18 20:17:54 +00001998 dev_err(priv->dev, "unable to map i/o region\n");
Richard Cochrana65dd5b2012-11-02 22:25:29 +00001999 goto clean_cpsw_wr_iores_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002000 }
Richard Cochran549985e2012-11-14 09:07:56 +00002001 priv->wr_regs = wr_regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002002
2003 memset(&dma_params, 0, sizeof(dma_params));
Richard Cochran549985e2012-11-14 09:07:56 +00002004 memset(&ale_params, 0, sizeof(ale_params));
2005
2006 switch (priv->version) {
2007 case CPSW_VERSION_1:
2008 priv->host_port_regs = ss_regs + CPSW1_HOST_PORT_OFFSET;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302009 priv->cpts->reg = ss_regs + CPSW1_CPTS_OFFSET;
2010 priv->hw_stats = ss_regs + CPSW1_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00002011 dma_params.dmaregs = ss_regs + CPSW1_CPDMA_OFFSET;
2012 dma_params.txhdp = ss_regs + CPSW1_STATERAM_OFFSET;
2013 ale_params.ale_regs = ss_regs + CPSW1_ALE_OFFSET;
2014 slave_offset = CPSW1_SLAVE_OFFSET;
2015 slave_size = CPSW1_SLAVE_SIZE;
2016 sliver_offset = CPSW1_SLIVER_OFFSET;
2017 dma_params.desc_mem_phys = 0;
2018 break;
2019 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05302020 case CPSW_VERSION_3:
Richard Cochran549985e2012-11-14 09:07:56 +00002021 priv->host_port_regs = ss_regs + CPSW2_HOST_PORT_OFFSET;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302022 priv->cpts->reg = ss_regs + CPSW2_CPTS_OFFSET;
2023 priv->hw_stats = ss_regs + CPSW2_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00002024 dma_params.dmaregs = ss_regs + CPSW2_CPDMA_OFFSET;
2025 dma_params.txhdp = ss_regs + CPSW2_STATERAM_OFFSET;
2026 ale_params.ale_regs = ss_regs + CPSW2_ALE_OFFSET;
2027 slave_offset = CPSW2_SLAVE_OFFSET;
2028 slave_size = CPSW2_SLAVE_SIZE;
2029 sliver_offset = CPSW2_SLIVER_OFFSET;
2030 dma_params.desc_mem_phys =
2031 (u32 __force) priv->cpsw_res->start + CPSW2_BD_OFFSET;
2032 break;
2033 default:
2034 dev_err(priv->dev, "unknown version 0x%08x\n", priv->version);
2035 ret = -ENODEV;
2036 goto clean_cpsw_wr_iores_ret;
2037 }
2038 for (i = 0; i < priv->data.slaves; i++) {
2039 struct cpsw_slave *slave = &priv->slaves[i];
2040 cpsw_slave_init(slave, priv, slave_offset, sliver_offset);
2041 slave_offset += slave_size;
2042 sliver_offset += SLIVER_SIZE;
2043 }
2044
Mugunthan V Ndf828592012-03-18 20:17:54 +00002045 dma_params.dev = &pdev->dev;
Richard Cochran549985e2012-11-14 09:07:56 +00002046 dma_params.rxthresh = dma_params.dmaregs + CPDMA_RXTHRESH;
2047 dma_params.rxfree = dma_params.dmaregs + CPDMA_RXFREE;
2048 dma_params.rxhdp = dma_params.txhdp + CPDMA_RXHDP;
2049 dma_params.txcp = dma_params.txhdp + CPDMA_TXCP;
2050 dma_params.rxcp = dma_params.txhdp + CPDMA_RXCP;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002051
2052 dma_params.num_chan = data->channels;
2053 dma_params.has_soft_reset = true;
2054 dma_params.min_packet_size = CPSW_MIN_PACKET_SIZE;
2055 dma_params.desc_mem_size = data->bd_ram_size;
2056 dma_params.desc_align = 16;
2057 dma_params.has_ext_regs = true;
Richard Cochran549985e2012-11-14 09:07:56 +00002058 dma_params.desc_hw_addr = dma_params.desc_mem_phys;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002059
2060 priv->dma = cpdma_ctlr_create(&dma_params);
2061 if (!priv->dma) {
2062 dev_err(priv->dev, "error initializing dma\n");
2063 ret = -ENOMEM;
Richard Cochran5250c962012-11-02 22:25:30 +00002064 goto clean_wr_iomap_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002065 }
2066
2067 priv->txch = cpdma_chan_create(priv->dma, tx_chan_num(0),
2068 cpsw_tx_handler);
2069 priv->rxch = cpdma_chan_create(priv->dma, rx_chan_num(0),
2070 cpsw_rx_handler);
2071
2072 if (WARN_ON(!priv->txch || !priv->rxch)) {
2073 dev_err(priv->dev, "error initializing dma channels\n");
2074 ret = -ENOMEM;
2075 goto clean_dma_ret;
2076 }
2077
Mugunthan V Ndf828592012-03-18 20:17:54 +00002078 ale_params.dev = &ndev->dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002079 ale_params.ale_ageout = ale_ageout;
2080 ale_params.ale_entries = data->ale_entries;
2081 ale_params.ale_ports = data->slaves;
2082
2083 priv->ale = cpsw_ale_create(&ale_params);
2084 if (!priv->ale) {
2085 dev_err(priv->dev, "error initializing ale engine\n");
2086 ret = -ENODEV;
2087 goto clean_dma_ret;
2088 }
2089
2090 ndev->irq = platform_get_irq(pdev, 0);
2091 if (ndev->irq < 0) {
2092 dev_err(priv->dev, "error getting irq resource\n");
2093 ret = -ENOENT;
2094 goto clean_ale_ret;
2095 }
2096
2097 while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k))) {
2098 for (i = res->start; i <= res->end; i++) {
Felipe Balbi7069f982013-08-02 10:44:10 +03002099 if (request_irq(i, cpsw_interrupt, 0,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002100 dev_name(&pdev->dev), priv)) {
2101 dev_err(priv->dev, "error attaching irq\n");
2102 goto clean_ale_ret;
2103 }
2104 priv->irqs_table[k] = i;
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002105 priv->num_irqs = k + 1;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002106 }
2107 k++;
2108 }
2109
Patrick McHardyf6469682013-04-19 02:04:27 +00002110 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002111
2112 ndev->netdev_ops = &cpsw_netdev_ops;
2113 SET_ETHTOOL_OPS(ndev, &cpsw_ethtool_ops);
2114 netif_napi_add(ndev, &priv->napi, cpsw_poll, CPSW_POLL_WEIGHT);
2115
2116 /* register the network device */
2117 SET_NETDEV_DEV(ndev, &pdev->dev);
2118 ret = register_netdev(ndev);
2119 if (ret) {
2120 dev_err(priv->dev, "error registering net device\n");
2121 ret = -ENODEV;
2122 goto clean_irq_ret;
2123 }
2124
Mugunthan V N9232b162013-02-11 09:52:19 +00002125 if (cpts_register(&pdev->dev, priv->cpts,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002126 data->cpts_clock_mult, data->cpts_clock_shift))
2127 dev_err(priv->dev, "error registering cpts device\n");
2128
Mugunthan V Ndf828592012-03-18 20:17:54 +00002129 cpsw_notice(priv, probe, "initialized device (regs %x, irq %d)\n",
2130 priv->cpsw_res->start, ndev->irq);
2131
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002132 if (priv->data.dual_emac) {
2133 ret = cpsw_probe_dual_emac(pdev, priv);
2134 if (ret) {
2135 cpsw_err(priv, probe, "error probe slave 2 emac interface\n");
2136 goto clean_irq_ret;
2137 }
2138 }
2139
Mugunthan V Ndf828592012-03-18 20:17:54 +00002140 return 0;
2141
2142clean_irq_ret:
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002143 for (i = 0; i < priv->num_irqs; i++)
2144 free_irq(priv->irqs_table[i], priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002145clean_ale_ret:
2146 cpsw_ale_destroy(priv->ale);
2147clean_dma_ret:
2148 cpdma_chan_destroy(priv->txch);
2149 cpdma_chan_destroy(priv->rxch);
2150 cpdma_ctlr_destroy(priv->dma);
Richard Cochran5250c962012-11-02 22:25:30 +00002151clean_wr_iomap_ret:
2152 iounmap(priv->wr_regs);
Richard Cochrana65dd5b2012-11-02 22:25:29 +00002153clean_cpsw_wr_iores_ret:
2154 release_mem_region(priv->cpsw_wr_res->start,
2155 resource_size(priv->cpsw_wr_res));
Richard Cochran5250c962012-11-02 22:25:30 +00002156clean_iomap_ret:
2157 iounmap(priv->regs);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002158clean_cpsw_iores_ret:
2159 release_mem_region(priv->cpsw_res->start,
2160 resource_size(priv->cpsw_res));
2161clean_clk_ret:
2162 clk_put(priv->clk);
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002163clean_slave_ret:
2164 pm_runtime_disable(&pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002165 kfree(priv->slaves);
2166clean_ndev_ret:
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002167 kfree(priv->data.slave_data);
2168 free_netdev(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002169 return ret;
2170}
2171
Bill Pemberton663e12e2012-12-03 09:23:45 -05002172static int cpsw_remove(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002173{
2174 struct net_device *ndev = platform_get_drvdata(pdev);
2175 struct cpsw_priv *priv = netdev_priv(ndev);
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002176 int i;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002177
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002178 if (priv->data.dual_emac)
2179 unregister_netdev(cpsw_get_slave_ndev(priv, 1));
2180 unregister_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002181
Mugunthan V N9232b162013-02-11 09:52:19 +00002182 cpts_unregister(priv->cpts);
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002183 for (i = 0; i < priv->num_irqs; i++)
2184 free_irq(priv->irqs_table[i], priv);
2185
Mugunthan V Ndf828592012-03-18 20:17:54 +00002186 cpsw_ale_destroy(priv->ale);
2187 cpdma_chan_destroy(priv->txch);
2188 cpdma_chan_destroy(priv->rxch);
2189 cpdma_ctlr_destroy(priv->dma);
2190 iounmap(priv->regs);
2191 release_mem_region(priv->cpsw_res->start,
2192 resource_size(priv->cpsw_res));
Richard Cochran5250c962012-11-02 22:25:30 +00002193 iounmap(priv->wr_regs);
Richard Cochrana65dd5b2012-11-02 22:25:29 +00002194 release_mem_region(priv->cpsw_wr_res->start,
2195 resource_size(priv->cpsw_wr_res));
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002196 pm_runtime_disable(&pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002197 clk_put(priv->clk);
2198 kfree(priv->slaves);
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002199 kfree(priv->data.slave_data);
2200 if (priv->data.dual_emac)
2201 free_netdev(cpsw_get_slave_ndev(priv, 1));
Mugunthan V Ndf828592012-03-18 20:17:54 +00002202 free_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002203 return 0;
2204}
2205
2206static int cpsw_suspend(struct device *dev)
2207{
2208 struct platform_device *pdev = to_platform_device(dev);
2209 struct net_device *ndev = platform_get_drvdata(pdev);
Mugunthan V Nb90fc272013-06-21 19:15:09 +05302210 struct cpsw_priv *priv = netdev_priv(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002211
2212 if (netif_running(ndev))
2213 cpsw_ndo_stop(ndev);
Mugunthan V N6d3d76f2013-06-18 15:04:35 +05302214 soft_reset("sliver 0", &priv->slaves[0].sliver->soft_reset);
2215 soft_reset("sliver 1", &priv->slaves[1].sliver->soft_reset);
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002216 pm_runtime_put_sync(&pdev->dev);
2217
Mugunthan V N739683b2013-06-06 23:45:14 +05302218 /* Select sleep pin state */
2219 pinctrl_pm_select_sleep_state(&pdev->dev);
2220
Mugunthan V Ndf828592012-03-18 20:17:54 +00002221 return 0;
2222}
2223
2224static int cpsw_resume(struct device *dev)
2225{
2226 struct platform_device *pdev = to_platform_device(dev);
2227 struct net_device *ndev = platform_get_drvdata(pdev);
2228
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002229 pm_runtime_get_sync(&pdev->dev);
Mugunthan V N739683b2013-06-06 23:45:14 +05302230
2231 /* Select default pin state */
2232 pinctrl_pm_select_default_state(&pdev->dev);
2233
Mugunthan V Ndf828592012-03-18 20:17:54 +00002234 if (netif_running(ndev))
2235 cpsw_ndo_open(ndev);
2236 return 0;
2237}
2238
2239static const struct dev_pm_ops cpsw_pm_ops = {
2240 .suspend = cpsw_suspend,
2241 .resume = cpsw_resume,
2242};
2243
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002244static const struct of_device_id cpsw_of_mtable[] = {
2245 { .compatible = "ti,cpsw", },
2246 { /* sentinel */ },
2247};
Sebastian Siewior4bc21d42013-04-24 08:48:22 +00002248MODULE_DEVICE_TABLE(of, cpsw_of_mtable);
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002249
Mugunthan V Ndf828592012-03-18 20:17:54 +00002250static struct platform_driver cpsw_driver = {
2251 .driver = {
2252 .name = "cpsw",
2253 .owner = THIS_MODULE,
2254 .pm = &cpsw_pm_ops,
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002255 .of_match_table = of_match_ptr(cpsw_of_mtable),
Mugunthan V Ndf828592012-03-18 20:17:54 +00002256 },
2257 .probe = cpsw_probe,
Bill Pemberton663e12e2012-12-03 09:23:45 -05002258 .remove = cpsw_remove,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002259};
2260
2261static int __init cpsw_init(void)
2262{
2263 return platform_driver_register(&cpsw_driver);
2264}
2265late_initcall(cpsw_init);
2266
2267static void __exit cpsw_exit(void)
2268{
2269 platform_driver_unregister(&cpsw_driver);
2270}
2271module_exit(cpsw_exit);
2272
2273MODULE_LICENSE("GPL");
2274MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>");
2275MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>");
2276MODULE_DESCRIPTION("TI CPSW Ethernet driver");