]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - drivers/net/cpsw.c
merged tx6dl-devel into denx master branch
[karo-tx-uboot.git] / drivers / net / cpsw.c
1 /*
2  * CPSW Ethernet Switch Driver
3  *
4  * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
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 <common.h>
17 #include <command.h>
18 #include <net.h>
19 #include <miiphy.h>
20 #include <malloc.h>
21 #include <net.h>
22 #include <netdev.h>
23 #include <asm/errno.h>
24 #include <asm/io.h>
25 #include <phy.h>
26 #include <asm/arch/cpu.h>
27
28 #define BITMASK(bits)           (BIT(bits) - 1)
29
30 #define PHY_REG_MASK            0x1f
31 #define PHY_ID_MASK             0x1f
32 #define NUM_DESCS               (PKTBUFSRX * 2)
33 #define PKT_MIN                 60
34 #define PKT_MAX                 (1500 + 14 + 4 + 4)
35 #define CLEAR_BIT               1
36
37 /* MAC_CONTROL register bits */
38 #define GIGABITEN               BIT(7)
39 #define FULLDUPLEXEN            BIT(0)
40 #define MAC_CTRL_CMD_IDLE       BIT(11)
41 #define MIIEN                   BIT(15)
42
43 /* MAC_STATUS register bits */
44 #define MAC_STAT_IDLE           BIT(31)
45
46 /* DMA Registers */
47 #define CPDMA_TXCONTROL         0x004
48 #define CPDMA_RXCONTROL         0x014
49 #define CPDMA_SOFTRESET         0x01c
50 #define CPDMA_DMACONTROL        0x020
51 #define CPDMA_DMASTATUS         0x024
52 #define CPDMA_RXFREE            0x0e0
53 #define CPDMA_TXHDP_VER1        0x100
54 #define CPDMA_TXHDP_VER2        0x200
55 #define CPDMA_RXHDP_VER1        0x120
56 #define CPDMA_RXHDP_VER2        0x220
57 #define CPDMA_TXCP_VER1         0x140
58 #define CPDMA_TXCP_VER2         0x240
59 #define CPDMA_RXCP_VER1         0x160
60 #define CPDMA_RXCP_VER2         0x260
61
62 #define DMACONTROL_CMD_IDLE     BIT(3)
63
64 #define DMASTATUS_IDLE          BIT(31)
65
66 #define CPDMA_RAM_ADDR          0x4a102000
67
68 /* Descriptor mode bits */
69 #define CPDMA_DESC_SOP          BIT(31)
70 #define CPDMA_DESC_EOP          BIT(30)
71 #define CPDMA_DESC_OWNER        BIT(29)
72 #define CPDMA_DESC_EOQ          BIT(28)
73
74 /*
75  * This timeout definition is a worst-case ultra defensive measure against
76  * unexpected controller lock ups.  Ideally, we should never ever hit this
77  * scenario in practice.
78  */
79 #define MDIO_TIMEOUT            100 /* msecs */
80 #define CPDMA_TIMEOUT           100 /* msecs */
81
82 struct cpsw_mdio_regs {
83         u32     version;
84         u32     control;
85 #define CONTROL_IDLE            BIT(31)
86 #define CONTROL_ENABLE          BIT(30)
87
88         u32     alive;
89         u32     link;
90         u32     linkintraw;
91         u32     linkintmasked;
92         u32     __reserved_0[2];
93         u32     userintraw;
94         u32     userintmasked;
95         u32     userintmaskset;
96         u32     userintmaskclr;
97         u32     __reserved_1[20];
98
99         struct {
100                 u32             access;
101                 u32             physel;
102 #define USERACCESS_GO           BIT(31)
103 #define USERACCESS_WRITE        BIT(30)
104 #define USERACCESS_ACK          BIT(29)
105 #define USERACCESS_READ         0
106 #define USERACCESS_DATA         0xffff
107         } user[0];
108 };
109
110 struct cpsw_regs {
111         u32     id_ver;
112         u32     control;
113         u32     soft_reset;
114         u32     stat_port_en;
115         u32     ptype;
116 };
117
118 struct cpsw_slave_regs {
119         u32     max_blks;
120         u32     blk_cnt;
121         u32     flow_thresh;
122         u32     port_vlan;
123         u32     tx_pri_map;
124 #ifdef CONFIG_AM33XX
125         u32     gap_thresh;
126 #elif defined(CONFIG_TI814X)
127         u32     ts_ctl;
128         u32     ts_seq_ltype;
129         u32     ts_vlan;
130 #endif
131         u32     sa_lo;
132         u32     sa_hi;
133 };
134
135 struct cpsw_host_regs {
136         u32     max_blks;
137         u32     blk_cnt;
138         u32     flow_thresh;
139         u32     port_vlan;
140         u32     tx_pri_map;
141         u32     cpdma_tx_pri_map;
142         u32     cpdma_rx_chan_map;
143 };
144
145 struct cpsw_sliver_regs {
146         u32     id_ver;
147         u32     mac_control;
148         u32     mac_status;
149         u32     soft_reset;
150         u32     rx_maxlen;
151         u32     __reserved_0;
152         u32     rx_pause;
153         u32     tx_pause;
154         u32     __reserved_1;
155         u32     rx_pri_map;
156 };
157
158 #define ALE_ENTRY_BITS          68
159 #define ALE_ENTRY_WORDS         DIV_ROUND_UP(ALE_ENTRY_BITS, 32)
160
161 /* ALE Registers */
162 #define ALE_CONTROL             0x08
163 #define ALE_UNKNOWNVLAN         0x18
164 #define ALE_TABLE_CONTROL       0x20
165 #define ALE_TABLE               0x34
166 #define ALE_PORTCTL             0x40
167
168 #define ALE_TABLE_WRITE         BIT(31)
169
170 #define ALE_TYPE_FREE                   0
171 #define ALE_TYPE_ADDR                   1
172 #define ALE_TYPE_VLAN                   2
173 #define ALE_TYPE_VLAN_ADDR              3
174
175 #define ALE_UCAST_PERSISTANT            0
176 #define ALE_UCAST_UNTOUCHED             1
177 #define ALE_UCAST_OUI                   2
178 #define ALE_UCAST_TOUCHED               3
179
180 #define ALE_MCAST_FWD                   0
181 #define ALE_MCAST_BLOCK_LEARN_FWD       1
182 #define ALE_MCAST_FWD_LEARN             2
183 #define ALE_MCAST_FWD_2                 3
184
185 enum cpsw_ale_port_state {
186         ALE_PORT_STATE_DISABLE  = 0x00,
187         ALE_PORT_STATE_BLOCK    = 0x01,
188         ALE_PORT_STATE_LEARN    = 0x02,
189         ALE_PORT_STATE_FORWARD  = 0x03,
190 };
191
192 /* ALE unicast entry flags - passed into cpsw_ale_add_ucast() */
193 #define ALE_SECURE      1
194 #define ALE_BLOCKED     2
195
196 struct cpsw_slave {
197         struct cpsw_slave_regs          *regs;
198         struct cpsw_sliver_regs         *sliver;
199         int                             slave_num;
200         u32                             mac_control;
201         struct cpsw_slave_data          *data;
202 };
203
204 struct cpdma_desc {
205         /* hardware fields */
206         u32                     hw_next;
207         u32                     hw_buffer;
208         u32                     hw_len;
209         u32                     hw_mode;
210 } __attribute__((aligned(CONFIG_SYS_CACHELINE_SIZE)));
211
212 struct cpsw_desc {
213         void *sw_buffer;
214         struct cpsw_desc *next;
215         struct cpdma_desc *dma_desc;
216 };
217
218 struct cpdma_chan {
219         struct cpsw_desc        *head, *tail;
220         void                    *hdp, *cp, *rxfree;
221 };
222
223 #define desc_write(desc, fld, val)      __raw_writel((u32)(val), &(desc)->dma_desc->fld)
224 #define desc_read(desc, fld)            __raw_readl(&(desc)->dma_desc->fld)
225 #define desc_read_ptr(desc, fld)        ((void *)__raw_readl(&(desc)->dma_desc->fld))
226
227 #define chan_write(chan, fld, val)      __raw_writel((u32)(val), (chan)->fld)
228 #define chan_read(chan, fld)            __raw_readl((chan)->fld)
229 #define chan_read_ptr(chan, fld)        ((void *)__raw_readl((chan)->fld))
230
231 #define for_each_slave(slave, priv) \
232         for (slave = (priv)->slaves; slave != (priv)->slaves + \
233                                 (priv)->data->slaves; slave++)
234
235 struct cpsw_priv {
236         struct eth_device               *dev;
237         struct cpsw_platform_data       *data;
238         int                             host_port;
239
240         struct cpsw_regs                *regs;
241         void                            *dma_regs;
242         struct cpsw_host_regs           *host_port_regs;
243         void                            *ale_regs;
244
245         struct cpsw_desc                descs[NUM_DESCS];
246         struct cpsw_desc                *desc_free;
247         struct cpdma_chan               rx_chan, tx_chan;
248
249         struct cpsw_slave               *slaves;
250         struct phy_device               *phydev;
251         struct mii_dev                  *bus;
252
253         u32                             mdio_link;
254         u32                             phy_mask;
255 };
256
257 static inline int cpsw_ale_get_field(u32 *ale_entry, u32 start, u32 bits)
258 {
259         int idx;
260
261         idx    = start / 32;
262         start -= idx * 32;
263         idx    = 2 - idx; /* flip */
264         return (ale_entry[idx] >> start) & BITMASK(bits);
265 }
266
267 static inline void cpsw_ale_set_field(u32 *ale_entry, u32 start, u32 bits,
268                                       u32 value)
269 {
270         int idx;
271
272         value &= BITMASK(bits);
273         idx    = start / 32;
274         start -= idx * 32;
275         idx    = 2 - idx; /* flip */
276         ale_entry[idx] &= ~(BITMASK(bits) << start);
277         ale_entry[idx] |=  (value << start);
278 }
279
280 #define DEFINE_ALE_FIELD(name, start, bits)                             \
281 static inline int cpsw_ale_get_##name(u32 *ale_entry)                   \
282 {                                                                       \
283         return cpsw_ale_get_field(ale_entry, start, bits);              \
284 }                                                                       \
285 static inline void cpsw_ale_set_##name(u32 *ale_entry, u32 value)       \
286 {                                                                       \
287         cpsw_ale_set_field(ale_entry, start, bits, value);              \
288 }
289
290 DEFINE_ALE_FIELD(entry_type,            60,     2)
291 DEFINE_ALE_FIELD(mcast_state,           62,     2)
292 DEFINE_ALE_FIELD(port_mask,             66,     3)
293 DEFINE_ALE_FIELD(ucast_type,            62,     2)
294 DEFINE_ALE_FIELD(port_num,              66,     2)
295 DEFINE_ALE_FIELD(blocked,               65,     1)
296 DEFINE_ALE_FIELD(secure,                64,     1)
297 DEFINE_ALE_FIELD(mcast,                 40,     1)
298
299 /* The MAC address field in the ALE entry cannot be macroized as above */
300 static inline void cpsw_ale_get_addr(u32 *ale_entry, u8 *addr)
301 {
302         int i;
303
304         for (i = 0; i < 6; i++)
305                 addr[i] = cpsw_ale_get_field(ale_entry, 40 - 8*i, 8);
306 }
307
308 static inline void cpsw_ale_set_addr(u32 *ale_entry, u8 *addr)
309 {
310         int i;
311
312         for (i = 0; i < 6; i++)
313                 cpsw_ale_set_field(ale_entry, 40 - 8*i, 8, addr[i]);
314 }
315
316 static int cpsw_ale_read(struct cpsw_priv *priv, int idx, u32 *ale_entry)
317 {
318         int i;
319
320         __raw_writel(idx, priv->ale_regs + ALE_TABLE_CONTROL);
321
322         for (i = 0; i < ALE_ENTRY_WORDS; i++)
323                 ale_entry[i] = __raw_readl(priv->ale_regs + ALE_TABLE + 4 * i);
324
325         return idx;
326 }
327
328 static int cpsw_ale_write(struct cpsw_priv *priv, int idx, u32 *ale_entry)
329 {
330         int i;
331
332         for (i = 0; i < ALE_ENTRY_WORDS; i++)
333                 __raw_writel(ale_entry[i], priv->ale_regs + ALE_TABLE + 4 * i);
334
335         __raw_writel(idx | ALE_TABLE_WRITE, priv->ale_regs + ALE_TABLE_CONTROL);
336
337         return idx;
338 }
339
340 static int cpsw_ale_match_addr(struct cpsw_priv *priv, u8* addr)
341 {
342         u32 ale_entry[ALE_ENTRY_WORDS];
343         int type, idx;
344
345         for (idx = 0; idx < priv->data->ale_entries; idx++) {
346                 u8 entry_addr[6];
347
348                 cpsw_ale_read(priv, idx, ale_entry);
349                 type = cpsw_ale_get_entry_type(ale_entry);
350                 if (type != ALE_TYPE_ADDR && type != ALE_TYPE_VLAN_ADDR)
351                         continue;
352                 cpsw_ale_get_addr(ale_entry, entry_addr);
353                 if (memcmp(entry_addr, addr, 6) == 0)
354                         return idx;
355         }
356         return -ENOENT;
357 }
358
359 static int cpsw_ale_match_free(struct cpsw_priv *priv)
360 {
361         u32 ale_entry[ALE_ENTRY_WORDS];
362         int type, idx;
363
364         for (idx = 0; idx < priv->data->ale_entries; idx++) {
365                 cpsw_ale_read(priv, idx, ale_entry);
366                 type = cpsw_ale_get_entry_type(ale_entry);
367                 if (type == ALE_TYPE_FREE)
368                         return idx;
369         }
370         return -ENOENT;
371 }
372
373 static int cpsw_ale_find_ageable(struct cpsw_priv *priv)
374 {
375         u32 ale_entry[ALE_ENTRY_WORDS];
376         int type, idx;
377
378         for (idx = 0; idx < priv->data->ale_entries; idx++) {
379                 cpsw_ale_read(priv, idx, ale_entry);
380                 type = cpsw_ale_get_entry_type(ale_entry);
381                 if (type != ALE_TYPE_ADDR && type != ALE_TYPE_VLAN_ADDR)
382                         continue;
383                 if (cpsw_ale_get_mcast(ale_entry))
384                         continue;
385                 type = cpsw_ale_get_ucast_type(ale_entry);
386                 if (type != ALE_UCAST_PERSISTANT &&
387                     type != ALE_UCAST_OUI)
388                         return idx;
389         }
390         return -ENOENT;
391 }
392
393 static int cpsw_ale_add_ucast(struct cpsw_priv *priv, u8 *addr,
394                               int port, int flags)
395 {
396         u32 ale_entry[ALE_ENTRY_WORDS] = {0, 0, 0};
397         int idx;
398
399         cpsw_ale_set_entry_type(ale_entry, ALE_TYPE_ADDR);
400         cpsw_ale_set_addr(ale_entry, addr);
401         cpsw_ale_set_ucast_type(ale_entry, ALE_UCAST_PERSISTANT);
402         cpsw_ale_set_secure(ale_entry, (flags & ALE_SECURE) ? 1 : 0);
403         cpsw_ale_set_blocked(ale_entry, (flags & ALE_BLOCKED) ? 1 : 0);
404         cpsw_ale_set_port_num(ale_entry, port);
405
406         idx = cpsw_ale_match_addr(priv, addr);
407         if (idx < 0)
408                 idx = cpsw_ale_match_free(priv);
409         if (idx < 0)
410                 idx = cpsw_ale_find_ageable(priv);
411         if (idx < 0)
412                 return -ENOMEM;
413
414         cpsw_ale_write(priv, idx, ale_entry);
415         return 0;
416 }
417
418 static int cpsw_ale_add_mcast(struct cpsw_priv *priv, u8 *addr, int port_mask)
419 {
420         u32 ale_entry[ALE_ENTRY_WORDS] = {0, 0, 0};
421         int idx, mask;
422
423         idx = cpsw_ale_match_addr(priv, addr);
424         if (idx >= 0)
425                 cpsw_ale_read(priv, idx, ale_entry);
426
427         cpsw_ale_set_entry_type(ale_entry, ALE_TYPE_ADDR);
428         cpsw_ale_set_addr(ale_entry, addr);
429         cpsw_ale_set_mcast_state(ale_entry, ALE_MCAST_FWD_2);
430
431         mask = cpsw_ale_get_port_mask(ale_entry);
432         port_mask |= mask;
433         cpsw_ale_set_port_mask(ale_entry, port_mask);
434
435         if (idx < 0)
436                 idx = cpsw_ale_match_free(priv);
437         if (idx < 0)
438                 idx = cpsw_ale_find_ageable(priv);
439         if (idx < 0)
440                 return -ENOMEM;
441
442         cpsw_ale_write(priv, idx, ale_entry);
443         return 0;
444 }
445
446 static inline void cpsw_ale_control(struct cpsw_priv *priv, int bit, int val)
447 {
448         u32 tmp, mask = BIT(bit);
449
450         tmp  = __raw_readl(priv->ale_regs + ALE_CONTROL);
451         tmp &= ~mask;
452         tmp |= val ? mask : 0;
453         __raw_writel(tmp, priv->ale_regs + ALE_CONTROL);
454 }
455
456 #define cpsw_ale_enable(priv, val)      cpsw_ale_control(priv, 31, val)
457 #define cpsw_ale_clear(priv, val)       cpsw_ale_control(priv, 30, val)
458 #define cpsw_ale_vlan_aware(priv, val)  cpsw_ale_control(priv,  2, val)
459
460 static inline void cpsw_ale_port_state(struct cpsw_priv *priv, int port,
461                                        int val)
462 {
463         int offset = ALE_PORTCTL + 4 * port;
464         u32 tmp, mask = 0x3;
465
466         tmp  = __raw_readl(priv->ale_regs + offset);
467         tmp &= ~mask;
468         tmp |= val & mask;
469         __raw_writel(tmp, priv->ale_regs + offset);
470 }
471
472 static struct cpsw_mdio_regs *mdio_regs;
473
474 /* wait until hardware is ready for another user access */
475 static inline u32 wait_for_user_access(void)
476 {
477         int timeout = MDIO_TIMEOUT;
478         u32 reg;
479
480         while ((reg = __raw_readl(&mdio_regs->user[0].access)) & USERACCESS_GO) {
481                 udelay(1000);
482                 if (--timeout <= 0) {
483                         printf("TIMEOUT waiting for USERACCESS_GO\n");
484                         break;
485                 }
486         }
487
488         return reg;
489 }
490
491 /* wait until hardware state machine is idle */
492 static inline void wait_for_idle(void)
493 {
494         int timeout = MDIO_TIMEOUT;
495
496         while ((__raw_readl(&mdio_regs->control) & CONTROL_IDLE) == 0) {
497                 if (--timeout <= 0) {
498                         printf("TIMEOUT waiting for state machine idle\n");
499                         break;
500                 }
501                 udelay(1000);
502         }
503 }
504
505 static int cpsw_mdio_read(struct mii_dev *bus, int phy_id,
506                                 int dev_addr, int phy_reg)
507 {
508         unsigned short data;
509         u32 reg;
510
511         if (phy_reg & ~PHY_REG_MASK || phy_id & ~PHY_ID_MASK)
512                 return -EINVAL;
513
514         if (wait_for_user_access() & USERACCESS_GO)
515                 /* promote error from previous access */
516                 return -ETIME;
517
518         reg = (USERACCESS_GO | USERACCESS_READ | (phy_reg << 21) |
519                (phy_id << 16));
520         __raw_writel(reg, &mdio_regs->user[0].access);
521         reg = wait_for_user_access();
522         if (reg & USERACCESS_GO)
523                 return -ETIME;
524
525         data = (reg & USERACCESS_ACK) ? (reg & USERACCESS_DATA) : -1;
526         return data;
527 }
528
529 static int cpsw_mdio_write(struct mii_dev *bus, int phy_id, int dev_addr,
530                                 int phy_reg, u16 data)
531 {
532         u32 reg;
533
534         if (phy_reg & ~PHY_REG_MASK || phy_id & ~PHY_ID_MASK)
535                 return -EINVAL;
536
537         if (wait_for_user_access() & USERACCESS_GO)
538                 /* promote error from previous access */
539                 return -ETIME;
540
541         reg = (USERACCESS_GO | USERACCESS_WRITE | (phy_reg << 21) |
542                    (phy_id << 16) | (data & USERACCESS_DATA));
543         __raw_writel(reg, &mdio_regs->user[0].access);
544         if (wait_for_user_access() & USERACCESS_GO)
545                 return -ETIME;
546
547         return 0;
548 }
549
550 static void cpsw_mdio_init(char *name, u32 mdio_base, u32 div)
551 {
552         struct mii_dev *bus = mdio_alloc();
553
554         mdio_regs = (struct cpsw_mdio_regs *)mdio_base;
555
556         /* set enable and clock divider */
557         __raw_writel(div | CONTROL_ENABLE, &mdio_regs->control);
558
559         /*
560          * wait for scan logic to settle:
561          * the scan time consists of (a) a large fixed component, and (b) a
562          * small component that varies with the mii bus frequency.  These
563          * were estimated using measurements at 1.1 and 2.2 MHz on tnetv107x
564          * silicon.  Since the effect of (b) was found to be largely
565          * negligible, we keep things simple here.
566          */
567         udelay(1000);
568
569         bus->read = cpsw_mdio_read;
570         bus->write = cpsw_mdio_write;
571         sprintf(bus->name, name);
572
573         mdio_register(bus);
574 }
575
576 /* Set a self-clearing bit in a register, and wait for it to clear */
577 static inline void setbit_and_wait_for_clear32(void *addr)
578 {
579         int loops = 0;
580
581         __raw_writel(CLEAR_BIT, addr);
582         while (__raw_readl(addr) & CLEAR_BIT)
583                 loops++;
584         debug("%s: reset finished after %u loops\n", __func__, loops);
585 }
586
587 #define mac_hi(mac)     (((mac)[0] << 0) | ((mac)[1] << 8) |    \
588                          ((mac)[2] << 16) | ((mac)[3] << 24))
589 #define mac_lo(mac)     (((mac)[4] << 0) | ((mac)[5] << 8))
590
591 static void cpsw_set_slave_mac(struct cpsw_slave *slave,
592                                struct cpsw_priv *priv)
593 {
594         __raw_writel(mac_hi(priv->dev->enetaddr), &slave->regs->sa_hi);
595         __raw_writel(mac_lo(priv->dev->enetaddr), &slave->regs->sa_lo);
596 }
597
598 #define NUM_TRIES 50
599 static void cpsw_slave_update_link(struct cpsw_slave *slave,
600                                    struct cpsw_priv *priv, int *link)
601 {
602         struct phy_device *phy = priv->phydev;
603         u32 mac_control = 0;
604         int retries = NUM_TRIES;
605
606         do {
607                 phy_startup(phy);
608                 *link = phy->link;
609
610                 if (*link) { /* link up */
611                         mac_control = priv->data->mac_control;
612                         if (phy->speed == 1000)
613                                 mac_control |= GIGABITEN;
614                         if (phy->duplex == DUPLEX_FULL)
615                                 mac_control |= FULLDUPLEXEN;
616                         if (phy->speed == 100)
617                                 mac_control |= MIIEN;
618                 } else {
619                         udelay(10000);
620                 }
621         } while (!*link && retries-- > 0);
622         debug("%s: mac_control: %08x -> %08x after %u loops\n", __func__,
623                 slave->mac_control, mac_control, NUM_TRIES - retries);
624
625         if (mac_control == slave->mac_control)
626                 return;
627
628         if (mac_control) {
629                 printf("link up on port %d, speed %d, %s duplex\n",
630                                 slave->slave_num, phy->speed,
631                                 (phy->duplex == DUPLEX_FULL) ? "full" : "half");
632         } else {
633                 printf("link down on port %d\n", slave->slave_num);
634         }
635
636         __raw_writel(mac_control, &slave->sliver->mac_control);
637         slave->mac_control = mac_control;
638 }
639
640 static int cpsw_update_link(struct cpsw_priv *priv)
641 {
642         int link = 0;
643         struct cpsw_slave *slave;
644
645         for_each_slave(slave, priv)
646                 cpsw_slave_update_link(slave, priv, &link);
647         priv->mdio_link = readl(&mdio_regs->link);
648         return link;
649 }
650
651 static int cpsw_check_link(struct cpsw_priv *priv)
652 {
653         u32 link;
654
655         link = __raw_readl(&mdio_regs->link) & priv->phy_mask;
656         if (link && (link == priv->mdio_link))
657                 return 1;
658
659         return cpsw_update_link(priv);
660 }
661
662 static inline u32  cpsw_get_slave_port(struct cpsw_priv *priv, u32 slave_num)
663 {
664         if (priv->host_port == 0)
665                 return slave_num + 1;
666         else
667                 return slave_num;
668 }
669
670 static void cpsw_slave_init(struct cpsw_slave *slave, struct cpsw_priv *priv)
671 {
672         u32     slave_port;
673
674         debug("%s\n", __func__);
675         setbit_and_wait_for_clear32(&slave->sliver->soft_reset);
676
677         /* setup priority mapping */
678         __raw_writel(0x76543210, &slave->sliver->rx_pri_map);
679         __raw_writel(0x33221100, &slave->regs->tx_pri_map);
680
681         /* setup max packet size, and mac address */
682         __raw_writel(PKT_MAX, &slave->sliver->rx_maxlen);
683         cpsw_set_slave_mac(slave, priv);
684
685         slave->mac_control = 0; /* no link yet */
686
687         /* enable forwarding */
688         slave_port = cpsw_get_slave_port(priv, slave->slave_num);
689         cpsw_ale_port_state(priv, slave_port, ALE_PORT_STATE_FORWARD);
690
691         cpsw_ale_add_mcast(priv, NetBcastAddr, 1 << slave_port);
692
693         priv->phy_mask |= 1 << slave->data->phy_id;
694 }
695
696 static void cpdma_desc_get(struct cpsw_desc *desc)
697 {
698         invalidate_dcache_range((u32)desc->dma_desc, (u32)(&desc->dma_desc[1]));
699 }
700
701 static void cpdma_desc_put(struct cpsw_desc *desc)
702 {
703         flush_dcache_range((u32)desc->dma_desc, (u32)(&desc->dma_desc[1]));
704 }
705
706 static struct cpsw_desc *cpdma_desc_alloc(struct cpsw_priv *priv)
707 {
708         struct cpsw_desc *desc = priv->desc_free;
709
710         if (desc) {
711                 cpdma_desc_get(desc);
712                 priv->desc_free = desc->next;
713         }
714         return desc;
715 }
716
717 static void cpdma_desc_free(struct cpsw_priv *priv, struct cpsw_desc *desc)
718 {
719         if (desc) {
720                 desc_write(desc, hw_next, priv->desc_free->dma_desc);
721                 cpdma_desc_put(desc);
722                 desc->next = priv->desc_free;
723                 priv->desc_free = desc;
724         }
725 }
726
727 static int cpdma_submit(struct cpsw_priv *priv, struct cpdma_chan *chan,
728                         void *buffer, int len)
729 {
730         struct cpsw_desc *desc, *prev;
731         u32 mode;
732
733         if (!buffer) {
734                 printf("ERROR: %s() NULL buffer\n", __func__);
735                 return -EINVAL;
736         }
737
738         flush_dcache_range((u32)buffer, (u32)buffer + len);
739
740         desc = cpdma_desc_alloc(priv);
741         if (!desc)
742                 return -ENOMEM;
743
744         debug("%s@%d: %cX desc %p DMA %p\n", __func__, __LINE__,
745                 chan == &priv->rx_chan ? 'R' : 'T', desc, desc->dma_desc);
746         if (len < PKT_MIN)
747                 len = PKT_MIN;
748
749         mode = CPDMA_DESC_OWNER | CPDMA_DESC_SOP | CPDMA_DESC_EOP;
750
751         desc->next = NULL;
752         desc_write(desc, hw_next,   0);
753         desc_write(desc, hw_buffer, buffer);
754         desc_write(desc, hw_len,    len);
755         desc_write(desc, hw_mode,   mode | len);
756
757         desc->sw_buffer = buffer;
758
759         cpdma_desc_put(desc);
760         if (!chan->head) {
761                 /* simple case - first packet enqueued */
762                 chan->head = desc;
763                 chan->tail = desc;
764                 chan_write(chan, hdp, desc->dma_desc);
765                 goto done;
766         }
767
768         /* not the first packet - enqueue at the tail */
769         prev = chan->tail;
770
771         prev->next = desc;
772         cpdma_desc_get(prev);
773         desc_write(prev, hw_next, desc->dma_desc);
774         cpdma_desc_put(prev);
775
776         chan->tail = desc;
777
778         /* next check if EOQ has been triggered already */
779         if (desc_read(prev, hw_mode) & CPDMA_DESC_EOQ)
780                 chan_write(chan, hdp, desc->dma_desc);
781
782 done:
783         if (chan->rxfree)
784                 chan_write(chan, rxfree, 1);
785         debug("%s@%d\n", __func__, __LINE__);
786         return 0;
787 }
788
789 static int cpdma_process(struct cpsw_priv *priv, struct cpdma_chan *chan,
790                          void **buffer, int *len)
791 {
792         struct cpsw_desc *desc = chan->head;
793         u32 status;
794
795         if (!desc)
796                 return -ENOENT;
797
798         cpdma_desc_get(desc);
799
800         status = desc_read(desc, hw_mode);
801         if (status & CPDMA_DESC_OWNER)
802                 return -EBUSY;
803
804         if (len)
805                 *len = status & 0x7ff;
806
807         if (buffer)
808                 *buffer = desc->sw_buffer;
809         debug("%s@%d: buffer=%p\n", __func__, __LINE__, desc->sw_buffer);
810
811         chan->head = desc->next;
812         chan_write(chan, cp, desc->dma_desc);
813
814         cpdma_desc_free(priv, desc);
815         return 0;
816 }
817
818 static int cpsw_init(struct eth_device *dev, bd_t *bis)
819 {
820         struct cpsw_priv        *priv = dev->priv;
821         struct cpsw_slave       *slave;
822         int i, ret;
823
824         debug("%s\n", __func__);
825         /* soft reset the controller and initialize priv */
826         setbit_and_wait_for_clear32(&priv->regs->soft_reset);
827
828         /* initialize and reset the address lookup engine */
829         cpsw_ale_enable(priv, 1);
830         cpsw_ale_clear(priv, 1);
831         cpsw_ale_vlan_aware(priv, 0); /* vlan unaware mode */
832
833         /* setup host port priority mapping */
834         __raw_writel(0x76543210, &priv->host_port_regs->cpdma_tx_pri_map);
835         __raw_writel(0, &priv->host_port_regs->cpdma_rx_chan_map);
836
837         /* disable priority elevation and enable statistics on all ports */
838         __raw_writel(0, &priv->regs->ptype);
839
840         /* enable statistics collection only on the host port */
841         __raw_writel(BIT(priv->host_port), &priv->regs->stat_port_en);
842
843         cpsw_ale_port_state(priv, priv->host_port, ALE_PORT_STATE_FORWARD);
844
845         cpsw_ale_add_ucast(priv, priv->dev->enetaddr, priv->host_port,
846                            ALE_SECURE);
847         cpsw_ale_add_mcast(priv, NetBcastAddr, 1 << priv->host_port);
848
849         for_each_slave(slave, priv)
850                 cpsw_slave_init(slave, priv);
851
852         cpsw_update_link(priv);
853
854         /* init descriptor pool */
855         for (i = 0; i < NUM_DESCS; i++) {
856                 struct cpsw_desc *next_desc = (i < (NUM_DESCS - 1)) ?
857                         &priv->descs[i + 1] : NULL;
858
859                 priv->descs[i].next = next_desc;
860                 desc_write(&priv->descs[i], hw_next,
861                         next_desc ? next_desc->dma_desc : 0);
862                 cpdma_desc_put(&priv->descs[i]);
863         }
864         priv->desc_free = &priv->descs[0];
865
866         /* initialize channels */
867         if (priv->data->version == CPSW_CTRL_VERSION_2) {
868                 memset(&priv->rx_chan, 0, sizeof(struct cpdma_chan));
869                 priv->rx_chan.hdp       = priv->dma_regs + CPDMA_RXHDP_VER2;
870                 priv->rx_chan.cp        = priv->dma_regs + CPDMA_RXCP_VER2;
871                 priv->rx_chan.rxfree    = priv->dma_regs + CPDMA_RXFREE;
872
873                 memset(&priv->tx_chan, 0, sizeof(struct cpdma_chan));
874                 priv->tx_chan.hdp       = priv->dma_regs + CPDMA_TXHDP_VER2;
875                 priv->tx_chan.cp        = priv->dma_regs + CPDMA_TXCP_VER2;
876         } else {
877                 memset(&priv->rx_chan, 0, sizeof(struct cpdma_chan));
878                 priv->rx_chan.hdp       = priv->dma_regs + CPDMA_RXHDP_VER1;
879                 priv->rx_chan.cp        = priv->dma_regs + CPDMA_RXCP_VER1;
880                 priv->rx_chan.rxfree    = priv->dma_regs + CPDMA_RXFREE;
881
882                 memset(&priv->tx_chan, 0, sizeof(struct cpdma_chan));
883                 priv->tx_chan.hdp       = priv->dma_regs + CPDMA_TXHDP_VER1;
884                 priv->tx_chan.cp        = priv->dma_regs + CPDMA_TXCP_VER1;
885         }
886
887         /* clear dma state */
888         setbit_and_wait_for_clear32(priv->dma_regs + CPDMA_SOFTRESET);
889
890         if (priv->data->version == CPSW_CTRL_VERSION_2) {
891                 for (i = 0; i < priv->data->channels; i++) {
892                         __raw_writel(0, priv->dma_regs + CPDMA_RXHDP_VER2 + 4 * i);
893                         __raw_writel(0, priv->dma_regs + CPDMA_RXFREE + 4 * i);
894                         __raw_writel(0, priv->dma_regs + CPDMA_RXCP_VER2 + 4 * i);
895                         __raw_writel(0, priv->dma_regs + CPDMA_TXHDP_VER2 + 4 * i);
896                         __raw_writel(0, priv->dma_regs + CPDMA_TXCP_VER2 + 4 * i);
897                 }
898         } else {
899                 for (i = 0; i < priv->data->channels; i++) {
900                         __raw_writel(0, priv->dma_regs + CPDMA_RXHDP_VER1 + 4 * i);
901                         __raw_writel(0, priv->dma_regs + CPDMA_RXFREE + 4 * i);
902                         __raw_writel(0, priv->dma_regs + CPDMA_RXCP_VER1 + 4 * i);
903                         __raw_writel(0, priv->dma_regs + CPDMA_TXHDP_VER1 + 4 * i);
904                         __raw_writel(0, priv->dma_regs + CPDMA_TXCP_VER1 + 4 * i);
905
906                 }
907         }
908
909         __raw_writel(1, priv->dma_regs + CPDMA_TXCONTROL);
910         __raw_writel(1, priv->dma_regs + CPDMA_RXCONTROL);
911
912         /* submit rx descs */
913         for (i = 0; i < PKTBUFSRX; i++) {
914                 ret = cpdma_submit(priv, &priv->rx_chan, NetRxPackets[i],
915                                    PKTSIZE);
916                 if (ret < 0) {
917                         printf("error %d submitting rx desc\n", ret);
918                         break;
919                 }
920         }
921
922         return ret;
923 }
924
925 static void cpsw_halt(struct eth_device *dev)
926 {
927         struct cpsw_priv        *priv = dev->priv;
928         struct cpsw_slave       *slave;
929         int idle = 0;
930         int timeout = 1000000;
931
932         __raw_writel(DMACONTROL_CMD_IDLE, priv->dma_regs + CPDMA_DMACONTROL);
933         while (!(__raw_readl(priv->dma_regs + CPDMA_DMASTATUS) &
934                         DMASTATUS_IDLE) && (--timeout >= 0))
935                 udelay(1);
936
937         timeout = 1000000;
938         while (!idle) {
939                 idle = 1;
940                 for_each_slave(slave, priv) {
941                         if (!(__raw_readl(&slave->sliver->mac_status) &
942                                         MAC_STAT_IDLE)) {
943                                 idle = 0;
944                                 break;
945                         }
946                 }
947                 if (idle || --timeout < 0)
948                         break;
949                 udelay(1);
950         }
951         if (!idle)
952                 printf("CPSW: Aborting DMA transfers; packets may be lost\n");
953
954         writel(0, priv->dma_regs + CPDMA_TXCONTROL);
955         writel(0, priv->dma_regs + CPDMA_RXCONTROL);
956
957         /* soft reset the controller and initialize priv */
958         setbit_and_wait_for_clear32(&priv->regs->soft_reset);
959
960         /* clear dma state */
961         setbit_and_wait_for_clear32(priv->dma_regs + CPDMA_SOFTRESET);
962
963         debug("%s\n", __func__);
964         priv->data->control(0);
965 }
966
967 static int cpsw_send(struct eth_device *dev, void *packet, int length)
968 {
969         struct cpsw_priv *priv = dev->priv;
970         void *buffer;
971         int len;
972
973         if (!priv->data->mac_control && !cpsw_check_link(priv)) {
974                 printf("%s: Cannot send packet; link is down\n", __func__);
975                 return -EIO;
976         }
977
978         /* first reap completed packets */
979         while (cpdma_process(priv, &priv->tx_chan, &buffer, &len) == 0)
980                 /* NOP */;
981
982         return cpdma_submit(priv, &priv->tx_chan, packet, length);
983 }
984
985 static int cpsw_recv(struct eth_device *dev)
986 {
987         struct cpsw_priv        *priv = dev->priv;
988         void *buffer;
989         int len;
990
991         while (cpdma_process(priv, &priv->rx_chan, &buffer, &len) == 0) {
992                 if (buffer) {
993                         NetReceive(buffer, len);
994                         cpdma_submit(priv, &priv->rx_chan, buffer, PKTSIZE);
995                 } else {
996                         printf("NULL buffer returned from cpdma_process\n");
997                         return -EIO;
998                 }
999         }
1000
1001         return 0;
1002 }
1003
1004 static void cpsw_slave_setup(struct cpsw_slave *slave, int slave_num,
1005                             struct cpsw_priv *priv)
1006 {
1007         void                    *regs = priv->regs;
1008         struct cpsw_slave_data  *data = priv->data->slave_data + slave_num;
1009
1010         debug("%s@%d: slave[%d] %p\n", __func__, __LINE__,
1011                 slave_num, slave);
1012         slave->slave_num = slave_num;
1013         slave->data     = data;
1014         slave->regs     = regs + data->slave_reg_ofs;
1015         slave->sliver   = regs + data->sliver_reg_ofs;
1016 }
1017
1018 static int cpsw_phy_init(struct eth_device *dev, struct cpsw_slave *slave)
1019 {
1020         struct cpsw_priv *priv = (struct cpsw_priv *)dev->priv;
1021         struct phy_device *phydev;
1022         u32 supported = (SUPPORTED_10baseT_Half |
1023                         SUPPORTED_10baseT_Full |
1024                         SUPPORTED_100baseT_Half |
1025                         SUPPORTED_100baseT_Full |
1026                         SUPPORTED_1000baseT_Full);
1027
1028         if (slave->data->phy_id < 0) {
1029                 u32 phy_addr;
1030
1031                 for (phy_addr = 0; phy_addr < 32; phy_addr++) {
1032                         debug("Trying to connect to PHY @ addr %02x\n",
1033                                 phy_addr);
1034                         phydev = phy_connect(priv->bus, phy_addr,
1035                                         dev, slave->data->phy_if);
1036                         if (phydev)
1037                                 break;
1038                 }
1039         } else {
1040                 phydev = phy_connect(priv->bus,
1041                                 slave->data->phy_id,
1042                                 dev,
1043                                 slave->data->phy_if);
1044         }
1045         if (!phydev) {
1046                 printf("Failed to connect to PHY\n");
1047                 return -EINVAL;
1048         }
1049
1050         phydev->supported &= supported;
1051         phydev->advertising = phydev->supported;
1052
1053         priv->phydev = phydev;
1054         phy_config(phydev);
1055
1056         return 0;
1057 }
1058
1059 int cpsw_register(struct cpsw_platform_data *data)
1060 {
1061         int ret = 1;
1062         struct cpsw_priv        *priv;
1063         struct cpsw_slave       *slave;
1064         void                    *regs = (void *)data->cpsw_base;
1065         struct eth_device       *dev;
1066         int i;
1067         int idx = 0;
1068
1069         debug("%s@%d\n", __func__, __LINE__);
1070
1071         dev = calloc(sizeof(*dev), 1);
1072         if (!dev)
1073                 return -ENOMEM;
1074
1075         priv = calloc(sizeof(*priv), 1);
1076         if (!priv) {
1077                 free(dev);
1078                 return -ENOMEM;
1079         }
1080
1081         priv->data = data;
1082         priv->dev = dev;
1083
1084         priv->slaves = calloc(sizeof(struct cpsw_slave), data->slaves);
1085         if (!priv->slaves) {
1086                 free(dev);
1087                 free(priv);
1088                 return -ENOMEM;
1089         }
1090
1091         for (i = 0; i < NUM_DESCS; i++) {
1092                 priv->descs[i].dma_desc = memalign(CONFIG_SYS_CACHELINE_SIZE,
1093                                 sizeof(struct cpsw_desc) * NUM_DESCS);
1094                 if (!priv->descs[i].dma_desc) {
1095                         while (--i >= 0) {
1096                                 free(priv->descs[i].dma_desc);
1097                         }
1098                         free(priv->slaves);
1099                         free(priv);
1100                         free(dev);
1101                         return -ENOMEM;
1102                 }
1103                 debug("DMA desc[%d] allocated @ %p desc_size %u\n",
1104                         i, priv->descs[i].dma_desc,
1105                         sizeof(*priv->descs[i].dma_desc));
1106         }
1107
1108         priv->host_port         = data->host_port_num;
1109         priv->regs              = regs;
1110         priv->host_port_regs    = regs + data->host_port_reg_ofs;
1111         priv->dma_regs          = regs + data->cpdma_reg_ofs;
1112         priv->ale_regs          = regs + data->ale_reg_ofs;
1113
1114         for_each_slave(slave, priv) {
1115                 cpsw_slave_setup(slave, idx, priv);
1116                 idx = idx + 1;
1117         }
1118
1119         strcpy(dev->name, "cpsw");
1120         dev->iobase     = 0;
1121         dev->init       = cpsw_init;
1122         dev->halt       = cpsw_halt;
1123         dev->send       = cpsw_send;
1124         dev->recv       = cpsw_recv;
1125         dev->priv       = priv;
1126
1127         eth_register(dev);
1128
1129         cpsw_mdio_init(dev->name, data->mdio_base, data->mdio_div);
1130         priv->bus = miiphy_get_dev_by_name(dev->name);
1131         for_each_slave(slave, priv) {
1132                 ret = cpsw_phy_init(dev, slave);
1133                 if (ret < 0)
1134                         break;
1135         }
1136         return ret;
1137 }