net:kirkwood_egiga.c: MAC addresses programming using write_hwaddr
[platform/kernel/u-boot.git] / drivers / net / kirkwood_egiga.c
1 /*
2  * (C) Copyright 2009
3  * Marvell Semiconductor <www.marvell.com>
4  * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
5  *
6  * (C) Copyright 2003
7  * Ingo Assmus <ingo.assmus@keymile.com>
8  *
9  * based on - Driver for MV64360X ethernet ports
10  * Copyright (C) 2002 rabeeh@galileo.co.il
11  *
12  * See file CREDITS for list of people who contributed to this
13  * project.
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License as
17  * published by the Free Software Foundation; either version 2 of
18  * the License, or (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
28  * MA 02110-1301 USA
29  */
30
31 #include <common.h>
32 #include <net.h>
33 #include <malloc.h>
34 #include <miiphy.h>
35 #include <asm/errno.h>
36 #include <asm/types.h>
37 #include <asm/byteorder.h>
38 #include <asm/arch/kirkwood.h>
39 #include "kirkwood_egiga.h"
40
41 #define KIRKWOOD_PHY_ADR_REQUEST 0xee
42 #define KWGBE_SMI_REG (((struct kwgbe_registers *)KW_EGIGA0_BASE)->smi)
43
44 /*
45  * smi_reg_read - miiphy_read callback function.
46  *
47  * Returns 16bit phy register value, or 0xffff on error
48  */
49 static int smi_reg_read(char *devname, u8 phy_adr, u8 reg_ofs, u16 * data)
50 {
51         struct eth_device *dev = eth_get_dev_by_name(devname);
52         struct kwgbe_device *dkwgbe = to_dkwgbe(dev);
53         struct kwgbe_registers *regs = dkwgbe->regs;
54         u32 smi_reg;
55         u32 timeout;
56
57         /* Phyadr read request */
58         if (phy_adr == KIRKWOOD_PHY_ADR_REQUEST &&
59                         reg_ofs == KIRKWOOD_PHY_ADR_REQUEST) {
60                 /* */
61                 *data = (u16) (KWGBEREG_RD(regs->phyadr) & PHYADR_MASK);
62                 return 0;
63         }
64         /* check parameters */
65         if (phy_adr > PHYADR_MASK) {
66                 printf("Err..(%s) Invalid PHY address %d\n",
67                         __FUNCTION__, phy_adr);
68                 return -EFAULT;
69         }
70         if (reg_ofs > PHYREG_MASK) {
71                 printf("Err..(%s) Invalid register offset %d\n",
72                         __FUNCTION__, reg_ofs);
73                 return -EFAULT;
74         }
75
76         timeout = KWGBE_PHY_SMI_TIMEOUT;
77         /* wait till the SMI is not busy */
78         do {
79                 /* read smi register */
80                 smi_reg = KWGBEREG_RD(KWGBE_SMI_REG);
81                 if (timeout-- == 0) {
82                         printf("Err..(%s) SMI busy timeout\n", __FUNCTION__);
83                         return -EFAULT;
84                 }
85         } while (smi_reg & KWGBE_PHY_SMI_BUSY_MASK);
86
87         /* fill the phy address and regiser offset and read opcode */
88         smi_reg = (phy_adr << KWGBE_PHY_SMI_DEV_ADDR_OFFS)
89                 | (reg_ofs << KWGBE_SMI_REG_ADDR_OFFS)
90                 | KWGBE_PHY_SMI_OPCODE_READ;
91
92         /* write the smi register */
93         KWGBEREG_WR(KWGBE_SMI_REG, smi_reg);
94
95         /*wait till read value is ready */
96         timeout = KWGBE_PHY_SMI_TIMEOUT;
97
98         do {
99                 /* read smi register */
100                 smi_reg = KWGBEREG_RD(KWGBE_SMI_REG);
101                 if (timeout-- == 0) {
102                         printf("Err..(%s) SMI read ready timeout\n",
103                                 __FUNCTION__);
104                         return -EFAULT;
105                 }
106         } while (!(smi_reg & KWGBE_PHY_SMI_READ_VALID_MASK));
107
108         /* Wait for the data to update in the SMI register */
109         for (timeout = 0; timeout < KWGBE_PHY_SMI_TIMEOUT; timeout++) ;
110
111         *data = (u16) (KWGBEREG_RD(KWGBE_SMI_REG) & KWGBE_PHY_SMI_DATA_MASK);
112
113         debug("%s:(adr %d, off %d) value= %04x\n", __FUNCTION__, phy_adr,
114                 reg_ofs, *data);
115
116         return 0;
117 }
118
119 /*
120  * smi_reg_write - imiiphy_write callback function.
121  *
122  * Returns 0 if write succeed, -EINVAL on bad parameters
123  * -ETIME on timeout
124  */
125 static int smi_reg_write(char *devname, u8 phy_adr, u8 reg_ofs, u16 data)
126 {
127         struct eth_device *dev = eth_get_dev_by_name(devname);
128         struct kwgbe_device *dkwgbe = to_dkwgbe(dev);
129         struct kwgbe_registers *regs = dkwgbe->regs;
130         u32 smi_reg;
131         u32 timeout;
132
133         /* Phyadr write request*/
134         if (phy_adr == KIRKWOOD_PHY_ADR_REQUEST &&
135                         reg_ofs == KIRKWOOD_PHY_ADR_REQUEST) {
136                 KWGBEREG_WR(regs->phyadr, data);
137                 return 0;
138         }
139
140         /* check parameters */
141         if (phy_adr > PHYADR_MASK) {
142                 printf("Err..(%s) Invalid phy address\n", __FUNCTION__);
143                 return -EINVAL;
144         }
145         if (reg_ofs > PHYREG_MASK) {
146                 printf("Err..(%s) Invalid register offset\n", __FUNCTION__);
147                 return -EINVAL;
148         }
149
150         /* wait till the SMI is not busy */
151         timeout = KWGBE_PHY_SMI_TIMEOUT;
152         do {
153                 /* read smi register */
154                 smi_reg = KWGBEREG_RD(KWGBE_SMI_REG);
155                 if (timeout-- == 0) {
156                         printf("Err..(%s) SMI busy timeout\n", __FUNCTION__);
157                         return -ETIME;
158                 }
159         } while (smi_reg & KWGBE_PHY_SMI_BUSY_MASK);
160
161         /* fill the phy addr and reg offset and write opcode and data */
162         smi_reg = (data << KWGBE_PHY_SMI_DATA_OFFS);
163         smi_reg |= (phy_adr << KWGBE_PHY_SMI_DEV_ADDR_OFFS)
164                 | (reg_ofs << KWGBE_SMI_REG_ADDR_OFFS);
165         smi_reg &= ~KWGBE_PHY_SMI_OPCODE_READ;
166
167         /* write the smi register */
168         KWGBEREG_WR(KWGBE_SMI_REG, smi_reg);
169
170         return 0;
171 }
172
173 /* Stop and checks all queues */
174 static void stop_queue(u32 * qreg)
175 {
176         u32 reg_data;
177
178         reg_data = readl(qreg);
179
180         if (reg_data & 0xFF) {
181                 /* Issue stop command for active channels only */
182                 writel((reg_data << 8), qreg);
183
184                 /* Wait for all queue activity to terminate. */
185                 do {
186                         /*
187                          * Check port cause register that all queues
188                          * are stopped
189                          */
190                         reg_data = readl(qreg);
191                 }
192                 while (reg_data & 0xFF);
193         }
194 }
195
196 /*
197  * set_access_control - Config address decode parameters for Ethernet unit
198  *
199  * This function configures the address decode parameters for the Gigabit
200  * Ethernet Controller according the given parameters struct.
201  *
202  * @regs        Register struct pointer.
203  * @param       Address decode parameter struct.
204  */
205 static void set_access_control(struct kwgbe_registers *regs,
206                                 struct kwgbe_winparam *param)
207 {
208         u32 access_prot_reg;
209
210         /* Set access control register */
211         access_prot_reg = KWGBEREG_RD(regs->epap);
212         /* clear window permission */
213         access_prot_reg &= (~(3 << (param->win * 2)));
214         access_prot_reg |= (param->access_ctrl << (param->win * 2));
215         KWGBEREG_WR(regs->epap, access_prot_reg);
216
217         /* Set window Size reg (SR) */
218         KWGBEREG_WR(regs->barsz[param->win].size,
219                         (((param->size / 0x10000) - 1) << 16));
220
221         /* Set window Base address reg (BA) */
222         KWGBEREG_WR(regs->barsz[param->win].bar,
223                         (param->target | param->attrib | param->base_addr));
224         /* High address remap reg (HARR) */
225         if (param->win < 4)
226                 KWGBEREG_WR(regs->ha_remap[param->win], param->high_addr);
227
228         /* Base address enable reg (BARER) */
229         if (param->enable == 1)
230                 KWGBEREG_BITS_RESET(regs->bare, (1 << param->win));
231         else
232                 KWGBEREG_BITS_SET(regs->bare, (1 << param->win));
233 }
234
235 static void set_dram_access(struct kwgbe_registers *regs)
236 {
237         struct kwgbe_winparam win_param;
238         int i;
239
240         for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
241                 /* Set access parameters for DRAM bank i */
242                 win_param.win = i;      /* Use Ethernet window i */
243                 /* Window target - DDR */
244                 win_param.target = KWGBE_TARGET_DRAM;
245                 /* Enable full access */
246                 win_param.access_ctrl = EWIN_ACCESS_FULL;
247                 win_param.high_addr = 0;
248                 /* Get bank base */
249                 win_param.base_addr = kw_sdram_bar(i);
250                 win_param.size = kw_sdram_bs(i);        /* Get bank size */
251                 if (win_param.size == 0)
252                         win_param.enable = 0;
253                 else
254                         win_param.enable = 1;   /* Enable the access */
255
256                 /* Enable DRAM bank */
257                 switch (i) {
258                 case 0:
259                         win_param.attrib = EBAR_DRAM_CS0;
260                         break;
261                 case 1:
262                         win_param.attrib = EBAR_DRAM_CS1;
263                         break;
264                 case 2:
265                         win_param.attrib = EBAR_DRAM_CS2;
266                         break;
267                 case 3:
268                         win_param.attrib = EBAR_DRAM_CS3;
269                         break;
270                 default:
271                         /* invalide bank, disable access */
272                         win_param.enable = 0;
273                         win_param.attrib = 0;
274                         break;
275                 }
276                 /* Set the access control for address window(EPAPR) RD/WR */
277                 set_access_control(regs, &win_param);
278         }
279 }
280
281 /*
282  * port_init_mac_tables - Clear all entrance in the UC, SMC and OMC tables
283  *
284  * Go through all the DA filter tables (Unicast, Special Multicast & Other
285  * Multicast) and set each entry to 0.
286  */
287 static void port_init_mac_tables(struct kwgbe_registers *regs)
288 {
289         int table_index;
290
291         /* Clear DA filter unicast table (Ex_dFUT) */
292         for (table_index = 0; table_index < 4; ++table_index)
293                 KWGBEREG_WR(regs->dfut[table_index], 0);
294
295         for (table_index = 0; table_index < 64; ++table_index) {
296                 /* Clear DA filter special multicast table (Ex_dFSMT) */
297                 KWGBEREG_WR(regs->dfsmt[table_index], 0);
298                 /* Clear DA filter other multicast table (Ex_dFOMT) */
299                 KWGBEREG_WR(regs->dfomt[table_index], 0);
300         }
301 }
302
303 /*
304  * port_uc_addr - This function Set the port unicast address table
305  *
306  * This function locates the proper entry in the Unicast table for the
307  * specified MAC nibble and sets its properties according to function
308  * parameters.
309  * This function add/removes MAC addresses from the port unicast address
310  * table.
311  *
312  * @uc_nibble   Unicast MAC Address last nibble.
313  * @option      0 = Add, 1 = remove address.
314  *
315  * RETURN: 1 if output succeeded. 0 if option parameter is invalid.
316  */
317 static int port_uc_addr(struct kwgbe_registers *regs, u8 uc_nibble,
318                         int option)
319 {
320         u32 unicast_reg;
321         u32 tbl_offset;
322         u32 reg_offset;
323
324         /* Locate the Unicast table entry */
325         uc_nibble = (0xf & uc_nibble);
326         /* Register offset from unicast table base */
327         tbl_offset = (uc_nibble / 4);
328         /* Entry offset within the above register */
329         reg_offset = uc_nibble % 4;
330
331         switch (option) {
332         case REJECT_MAC_ADDR:
333                 /*
334                  * Clear accepts frame bit at specified unicast
335                  * DA table entry
336                  */
337                 unicast_reg = KWGBEREG_RD(regs->dfut[tbl_offset]);
338                 unicast_reg &= (0xFF << (8 * reg_offset));
339                 KWGBEREG_WR(regs->dfut[tbl_offset], unicast_reg);
340                 break;
341         case ACCEPT_MAC_ADDR:
342                 /* Set accepts frame bit at unicast DA filter table entry */
343                 unicast_reg = KWGBEREG_RD(regs->dfut[tbl_offset]);
344                 unicast_reg &= (0xFF << (8 * reg_offset));
345                 unicast_reg |= ((0x01 | (RXUQ << 1)) << (8 * reg_offset));
346                 KWGBEREG_WR(regs->dfut[tbl_offset], unicast_reg);
347                 break;
348         default:
349                 return 0;
350         }
351         return 1;
352 }
353
354 /*
355  * port_uc_addr_set - This function Set the port Unicast address.
356  */
357 static void port_uc_addr_set(struct kwgbe_registers *regs, u8 * p_addr)
358 {
359         u32 mac_h;
360         u32 mac_l;
361
362         mac_l = (p_addr[4] << 8) | (p_addr[5]);
363         mac_h = (p_addr[0] << 24) | (p_addr[1] << 16) | (p_addr[2] << 8) |
364                 (p_addr[3] << 0);
365
366         KWGBEREG_WR(regs->macal, mac_l);
367         KWGBEREG_WR(regs->macah, mac_h);
368
369         /* Accept frames of this address */
370         port_uc_addr(regs, p_addr[5], ACCEPT_MAC_ADDR);
371 }
372
373 /*
374  * kwgbe_init_rx_desc_ring - Curve a Rx chain desc list and buffer in memory.
375  */
376 static void kwgbe_init_rx_desc_ring(struct kwgbe_device *dkwgbe)
377 {
378         struct kwgbe_rxdesc *p_rx_desc;
379         int i;
380
381         /* initialize the Rx descriptors ring */
382         p_rx_desc = dkwgbe->p_rxdesc;
383         for (i = 0; i < RINGSZ; i++) {
384                 p_rx_desc->cmd_sts =
385                         KWGBE_BUFFER_OWNED_BY_DMA | KWGBE_RX_EN_INTERRUPT;
386                 p_rx_desc->buf_size = PKTSIZE_ALIGN;
387                 p_rx_desc->byte_cnt = 0;
388                 p_rx_desc->buf_ptr = dkwgbe->p_rxbuf + i * PKTSIZE_ALIGN;
389                 if (i == (RINGSZ - 1))
390                         p_rx_desc->nxtdesc_p = dkwgbe->p_rxdesc;
391                 else {
392                         p_rx_desc->nxtdesc_p = (struct kwgbe_rxdesc *)
393                                 ((u32) p_rx_desc + KW_RXQ_DESC_ALIGNED_SIZE);
394                         p_rx_desc = p_rx_desc->nxtdesc_p;
395                 }
396         }
397         dkwgbe->p_rxdesc_curr = dkwgbe->p_rxdesc;
398 }
399
400 static int kwgbe_init(struct eth_device *dev)
401 {
402         struct kwgbe_device *dkwgbe = to_dkwgbe(dev);
403         struct kwgbe_registers *regs = dkwgbe->regs;
404 #if (defined (CONFIG_MII) || defined (CONFIG_CMD_MII)) \
405          && defined (CONFIG_SYS_FAULT_ECHO_LINK_DOWN)
406         int i;
407 #endif
408         /* setup RX rings */
409         kwgbe_init_rx_desc_ring(dkwgbe);
410
411         /* Clear the ethernet port interrupts */
412         KWGBEREG_WR(regs->ic, 0);
413         KWGBEREG_WR(regs->ice, 0);
414         /* Unmask RX buffer and TX end interrupt */
415         KWGBEREG_WR(regs->pim, INT_CAUSE_UNMASK_ALL);
416         /* Unmask phy and link status changes interrupts */
417         KWGBEREG_WR(regs->peim, INT_CAUSE_UNMASK_ALL_EXT);
418
419         set_dram_access(regs);
420         port_init_mac_tables(regs);
421         port_uc_addr_set(regs, dkwgbe->dev.enetaddr);
422
423         /* Assign port configuration and command. */
424         KWGBEREG_WR(regs->pxc, PRT_CFG_VAL);
425         KWGBEREG_WR(regs->pxcx, PORT_CFG_EXTEND_VALUE);
426         KWGBEREG_WR(regs->psc0, PORT_SERIAL_CONTROL_VALUE);
427
428         /* Assign port SDMA configuration */
429         KWGBEREG_WR(regs->sdc, PORT_SDMA_CFG_VALUE);
430         KWGBEREG_WR(regs->tqx[0].qxttbc, QTKNBKT_DEF_VAL);
431         KWGBEREG_WR(regs->tqx[0].tqxtbc, (QMTBS_DEF_VAL << 16) | QTKNRT_DEF_VAL);
432         /* Turn off the port/RXUQ bandwidth limitation */
433         KWGBEREG_WR(regs->pmtu, 0);
434
435         /* Set maximum receive buffer to 9700 bytes */
436         KWGBEREG_WR(regs->psc0, KWGBE_MAX_RX_PACKET_9700BYTE
437                         | (KWGBEREG_RD(regs->psc0) & MRU_MASK));
438
439         /* Enable port initially */
440         KWGBEREG_BITS_SET(regs->psc0, KWGBE_SERIAL_PORT_EN);
441
442         /*
443          * Set ethernet MTU for leaky bucket mechanism to 0 - this will
444          * disable the leaky bucket mechanism .
445          */
446         KWGBEREG_WR(regs->pmtu, 0);
447
448         /* Assignment of Rx CRDB of given RXUQ */
449         KWGBEREG_WR(regs->rxcdp[RXUQ], (u32) dkwgbe->p_rxdesc_curr);
450         /* Enable port Rx. */
451         KWGBEREG_WR(regs->rqc, (1 << RXUQ));
452
453 #if (defined (CONFIG_MII) || defined (CONFIG_CMD_MII)) \
454          && defined (CONFIG_SYS_FAULT_ECHO_LINK_DOWN)
455         /* Wait up to 5s for the link status */
456         for (i = 0; i < 5; i++) {
457                 u16 phyadr;
458
459                 miiphy_read(dev->name, KIRKWOOD_PHY_ADR_REQUEST,
460                                 KIRKWOOD_PHY_ADR_REQUEST, &phyadr);
461                 /* Return if we get link up */
462                 if (miiphy_link(dev->name, phyadr))
463                         return 0;
464                 udelay(1000000);
465         }
466
467         printf("No link on %s\n", dev->name);
468         return -1;
469 #endif
470         return 0;
471 }
472
473 static int kwgbe_halt(struct eth_device *dev)
474 {
475         struct kwgbe_device *dkwgbe = to_dkwgbe(dev);
476         struct kwgbe_registers *regs = dkwgbe->regs;
477
478         /* Disable all gigE address decoder */
479         KWGBEREG_WR(regs->bare, 0x3f);
480
481         stop_queue(&regs->tqc);
482         stop_queue(&regs->rqc);
483
484         /* Disable port */
485         KWGBEREG_BITS_RESET(regs->psc0, KWGBE_SERIAL_PORT_EN);
486         /* Set port is not reset */
487         KWGBEREG_BITS_RESET(regs->psc1, 1 << 4);
488 #ifdef CONFIG_SYS_MII_MODE
489         /* Set MMI interface up */
490         KWGBEREG_BITS_RESET(regs->psc1, 1 << 3);
491 #endif
492         /* Disable & mask ethernet port interrupts */
493         KWGBEREG_WR(regs->ic, 0);
494         KWGBEREG_WR(regs->ice, 0);
495         KWGBEREG_WR(regs->pim, 0);
496         KWGBEREG_WR(regs->peim, 0);
497
498         return 0;
499 }
500
501 static int kwgbe_write_hwaddr(struct eth_device *dev)
502 {
503         struct kwgbe_device *dkwgbe = to_dkwgbe(dev);
504         struct kwgbe_registers *regs = dkwgbe->regs;
505
506         /* Programs net device MAC address after initialization */
507         port_uc_addr_set(regs, dkwgbe->dev.enetaddr);
508         return 0;
509 }
510
511 static int kwgbe_send(struct eth_device *dev, volatile void *dataptr,
512                       int datasize)
513 {
514         struct kwgbe_device *dkwgbe = to_dkwgbe(dev);
515         struct kwgbe_registers *regs = dkwgbe->regs;
516         struct kwgbe_txdesc *p_txdesc = dkwgbe->p_txdesc;
517         void *p = (void *)dataptr;
518         u32 cmd_sts;
519
520         /* Copy buffer if it's misaligned */
521         if ((u32) dataptr & 0x07) {
522                 if (datasize > PKTSIZE_ALIGN) {
523                         printf("Non-aligned data too large (%d)\n",
524                                         datasize);
525                         return -1;
526                 }
527
528                 memcpy(dkwgbe->p_aligned_txbuf, p, datasize);
529                 p = dkwgbe->p_aligned_txbuf;
530         }
531
532         p_txdesc->cmd_sts = KWGBE_ZERO_PADDING | KWGBE_GEN_CRC;
533         p_txdesc->cmd_sts |= KWGBE_TX_FIRST_DESC | KWGBE_TX_LAST_DESC;
534         p_txdesc->cmd_sts |= KWGBE_BUFFER_OWNED_BY_DMA;
535         p_txdesc->cmd_sts |= KWGBE_TX_EN_INTERRUPT;
536         p_txdesc->buf_ptr = (u8 *) p;
537         p_txdesc->byte_cnt = datasize;
538
539         /* Apply send command using zeroth TXUQ */
540         KWGBEREG_WR(regs->tcqdp[TXUQ], (u32) p_txdesc);
541         KWGBEREG_WR(regs->tqc, (1 << TXUQ));
542
543         /*
544          * wait for packet xmit completion
545          */
546         cmd_sts = readl(&p_txdesc->cmd_sts);
547         while (cmd_sts & KWGBE_BUFFER_OWNED_BY_DMA) {
548                 /* return fail if error is detected */
549                 if ((cmd_sts & (KWGBE_ERROR_SUMMARY | KWGBE_TX_LAST_FRAME)) ==
550                                 (KWGBE_ERROR_SUMMARY | KWGBE_TX_LAST_FRAME) &&
551                                 cmd_sts & (KWGBE_UR_ERROR | KWGBE_RL_ERROR)) {
552                         printf("Err..(%s) in xmit packet\n", __FUNCTION__);
553                         return -1;
554                 }
555                 cmd_sts = readl(&p_txdesc->cmd_sts);
556         };
557         return 0;
558 }
559
560 static int kwgbe_recv(struct eth_device *dev)
561 {
562         struct kwgbe_device *dkwgbe = to_dkwgbe(dev);
563         struct kwgbe_rxdesc *p_rxdesc_curr = dkwgbe->p_rxdesc_curr;
564         u32 cmd_sts;
565         u32 timeout = 0;
566
567         /* wait untill rx packet available or timeout */
568         do {
569                 if (timeout < KWGBE_PHY_SMI_TIMEOUT)
570                         timeout++;
571                 else {
572                         debug("%s time out...\n", __FUNCTION__);
573                         return -1;
574                 }
575         } while (readl(&p_rxdesc_curr->cmd_sts) & KWGBE_BUFFER_OWNED_BY_DMA);
576
577         if (p_rxdesc_curr->byte_cnt != 0) {
578                 debug("%s: Received %d byte Packet @ 0x%x (cmd_sts= %08x)\n",
579                         __FUNCTION__, (u32) p_rxdesc_curr->byte_cnt,
580                         (u32) p_rxdesc_curr->buf_ptr,
581                         (u32) p_rxdesc_curr->cmd_sts);
582         }
583
584         /*
585          * In case received a packet without first/last bits on
586          * OR the error summary bit is on,
587          * the packets needs to be dropeed.
588          */
589         cmd_sts = readl(&p_rxdesc_curr->cmd_sts);
590
591         if ((cmd_sts &
592                 (KWGBE_RX_FIRST_DESC | KWGBE_RX_LAST_DESC))
593                 != (KWGBE_RX_FIRST_DESC | KWGBE_RX_LAST_DESC)) {
594
595                 printf("Err..(%s) Dropping packet spread on"
596                         " multiple descriptors\n", __FUNCTION__);
597
598         } else if (cmd_sts & KWGBE_ERROR_SUMMARY) {
599
600                 printf("Err..(%s) Dropping packet with errors\n",
601                         __FUNCTION__);
602
603         } else {
604                 /* !!! call higher layer processing */
605                 debug("%s: Sending Received packet to"
606                         " upper layer (NetReceive)\n", __FUNCTION__);
607
608                 /* let the upper layer handle the packet */
609                 NetReceive((p_rxdesc_curr->buf_ptr + RX_BUF_OFFSET),
610                         (int)(p_rxdesc_curr->byte_cnt - RX_BUF_OFFSET));
611         }
612         /*
613          * free these descriptors and point next in the ring
614          */
615         p_rxdesc_curr->cmd_sts =
616                 KWGBE_BUFFER_OWNED_BY_DMA | KWGBE_RX_EN_INTERRUPT;
617         p_rxdesc_curr->buf_size = PKTSIZE_ALIGN;
618         p_rxdesc_curr->byte_cnt = 0;
619
620         writel((unsigned)p_rxdesc_curr->nxtdesc_p, (u32) &dkwgbe->p_rxdesc_curr);
621
622         return 0;
623 }
624
625 int kirkwood_egiga_initialize(bd_t * bis)
626 {
627         struct kwgbe_device *dkwgbe;
628         struct eth_device *dev;
629         int devnum;
630         char *s;
631         u8 used_ports[MAX_KWGBE_DEVS] = CONFIG_KIRKWOOD_EGIGA_PORTS;
632
633         for (devnum = 0; devnum < MAX_KWGBE_DEVS; devnum++) {
634                 /*skip if port is configured not to use */
635                 if (used_ports[devnum] == 0)
636                         continue;
637
638                 if (!(dkwgbe = malloc(sizeof(struct kwgbe_device))))
639                         goto error1;
640
641                 memset(dkwgbe, 0, sizeof(struct kwgbe_device));
642
643                 if (!(dkwgbe->p_rxdesc =
644                       (struct kwgbe_rxdesc *)memalign(PKTALIGN,
645                                                 KW_RXQ_DESC_ALIGNED_SIZE
646                                                 * RINGSZ + 1)))
647                         goto error2;
648
649                 if (!(dkwgbe->p_rxbuf = (u8 *) memalign(PKTALIGN, RINGSZ
650                                                         * PKTSIZE_ALIGN + 1)))
651                         goto error3;
652
653                 if (!(dkwgbe->p_aligned_txbuf = memalign(8, PKTSIZE_ALIGN)))
654                         goto error4;
655
656                 if (!(dkwgbe->p_txdesc = (struct kwgbe_txdesc *)
657                       memalign(PKTALIGN, sizeof(struct kwgbe_txdesc) + 1))) {
658                         free(dkwgbe->p_aligned_txbuf);
659                       error4:
660                         free(dkwgbe->p_rxbuf);
661                       error3:
662                         free(dkwgbe->p_rxdesc);
663                       error2:
664                         free(dkwgbe);
665                       error1:
666                         printf("Err.. %s Failed to allocate memory\n",
667                                 __FUNCTION__);
668                         return -1;
669                 }
670
671                 dev = &dkwgbe->dev;
672
673                 /* must be less than NAMESIZE (16) */
674                 sprintf(dev->name, "egiga%d", devnum);
675
676                 /* Extract the MAC address from the environment */
677                 switch (devnum) {
678                 case 0:
679                         dkwgbe->regs = (void *)KW_EGIGA0_BASE;
680                         s = "ethaddr";
681                         break;
682                 case 1:
683                         dkwgbe->regs = (void *)KW_EGIGA1_BASE;
684                         s = "eth1addr";
685                         break;
686                 default:        /* this should never happen */
687                         printf("Err..(%s) Invalid device number %d\n",
688                                 __FUNCTION__, devnum);
689                         return -1;
690                 }
691
692                 while (!eth_getenv_enetaddr(s, dev->enetaddr)) {
693                         /* Generate Random Private MAC addr if not set */
694                         dev->enetaddr[0] = 0x02;
695                         dev->enetaddr[1] = 0x50;
696                         dev->enetaddr[2] = 0x43;
697                         dev->enetaddr[3] = get_random_hex();
698                         dev->enetaddr[4] = get_random_hex();
699                         dev->enetaddr[5] = get_random_hex();
700                         eth_setenv_enetaddr(s, dev->enetaddr);
701                 }
702
703                 dev->init = (void *)kwgbe_init;
704                 dev->halt = (void *)kwgbe_halt;
705                 dev->send = (void *)kwgbe_send;
706                 dev->recv = (void *)kwgbe_recv;
707                 dev->write_hwaddr = (void *)kwgbe_write_hwaddr;
708
709                 eth_register(dev);
710
711 #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII)
712                 miiphy_register(dev->name, smi_reg_read, smi_reg_write);
713                 /* Set phy address of the port */
714                 miiphy_write(dev->name, KIRKWOOD_PHY_ADR_REQUEST,
715                                 KIRKWOOD_PHY_ADR_REQUEST, PHY_BASE_ADR + devnum);
716 #endif
717         }
718         return 0;
719 }