2 * INCA-IP internal switch ethernet driver.
4 * (C) Copyright 2003-2004
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 * See file CREDITS for list of people who contributed to this
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32 #include <asm/inca-ip.h>
33 #include <asm/addrspace.h>
36 #define NUM_RX_DESC PKTBUFSRX
38 #define TOUT_LOOP 1000000
41 #define DELAY udelay(10000)
42 /* Sometimes the store word instruction hangs while writing to one
43 * of the Switch registers. Moving the instruction into a separate
44 * function somehow makes the problem go away.
46 static void SWORD(volatile u32 * reg, u32 value)
51 #define DMA_WRITE_REG(reg, value) *((volatile u32 *)reg) = (u32)value;
52 #define DMA_READ_REG(reg, value) value = (u32)*((volatile u32*)reg)
53 #define SW_WRITE_REG(reg, value) \
58 #define SW_READ_REG(reg, value) \
59 value = (u32)*((volatile u32*)reg);\
61 value = (u32)*((volatile u32*)reg);
63 #define INCA_DMA_TX_POLLING_TIME 0x07
64 #define INCA_DMA_RX_POLLING_TIME 0x07
66 #define INCA_DMA_TX_HOLD 0x80000000
67 #define INCA_DMA_TX_EOP 0x40000000
68 #define INCA_DMA_TX_SOP 0x20000000
69 #define INCA_DMA_TX_ICPT 0x10000000
70 #define INCA_DMA_TX_IEOP 0x08000000
72 #define INCA_DMA_RX_C 0x80000000
73 #define INCA_DMA_RX_SOP 0x40000000
74 #define INCA_DMA_RX_EOP 0x20000000
76 #define INCA_SWITCH_PHY_SPEED_10H 0x1
77 #define INCA_SWITCH_PHY_SPEED_10F 0x5
78 #define INCA_SWITCH_PHY_SPEED_100H 0x2
79 #define INCA_SWITCH_PHY_SPEED_100F 0x6
81 /************************ Auto MDIX settings ************************/
82 #define INCA_IP_AUTO_MDIX_LAN_PORTS_DIR INCA_IP_Ports_P1_DIR
83 #define INCA_IP_AUTO_MDIX_LAN_PORTS_ALTSEL INCA_IP_Ports_P1_ALTSEL
84 #define INCA_IP_AUTO_MDIX_LAN_PORTS_OUT INCA_IP_Ports_P1_OUT
85 #define INCA_IP_AUTO_MDIX_LAN_GPIO_PIN_RXTX 16
87 #define WAIT_SIGNAL_RETRIES 100
88 #define WAIT_LINK_RETRIES 100
89 #define LINK_RETRY_DELAY 2000 /* ms */
90 /********************************************************************/
99 volatile u32 offset :3;
100 volatile u32 reserved0 :4;
101 volatile u32 NFB :22;
107 volatile u32 nextRxDescPtr;
109 volatile u32 RxDataPtr;
116 volatile u32 reserved3 :12;
117 volatile u32 NBT :17;
123 } inca_rx_descriptor_t;
130 volatile u32 HOLD :1;
133 volatile u32 ICpt :1;
134 volatile u32 IEop :1;
135 volatile u32 reserved0 :5;
136 volatile u32 NBA :22;
142 volatile u32 nextTxDescPtr;
144 volatile u32 TxDataPtr;
147 volatile u32 reserved3 :31;
149 } inca_tx_descriptor_t;
152 static inca_rx_descriptor_t rx_ring[NUM_RX_DESC] __attribute__ ((aligned(16)));
153 static inca_tx_descriptor_t tx_ring[NUM_TX_DESC] __attribute__ ((aligned(16)));
155 static int tx_new, rx_new, tx_hold, rx_hold;
156 static int tx_old_hold = -1;
157 static int initialized = 0;
160 static int inca_switch_init(struct eth_device *dev, bd_t * bis);
161 static int inca_switch_send(struct eth_device *dev, void *packet, int length);
162 static int inca_switch_recv(struct eth_device *dev);
163 static void inca_switch_halt(struct eth_device *dev);
164 static void inca_init_switch_chip(void);
165 static void inca_dma_init(void);
166 static int inca_amdix(void);
169 int inca_switch_initialize(bd_t * bis)
171 struct eth_device *dev;
174 printf("Entered inca_switch_initialize()\n");
177 if (!(dev = (struct eth_device *) malloc (sizeof *dev))) {
178 printf("Failed to allocate memory\n");
181 memset(dev, 0, sizeof(*dev));
185 inca_init_switch_chip();
187 #if defined(CONFIG_INCA_IP_SWITCH_AMDIX)
191 sprintf(dev->name, "INCA-IP Switch");
192 dev->init = inca_switch_init;
193 dev->halt = inca_switch_halt;
194 dev->send = inca_switch_send;
195 dev->recv = inca_switch_recv;
200 printf("Leaving inca_switch_initialize()\n");
207 static int inca_switch_init(struct eth_device *dev, bd_t * bis)
214 printf("Entering inca_switch_init()\n");
219 wTmp = (u16)dev->enetaddr[0];
220 regValue = (wTmp << 8) | dev->enetaddr[1];
222 SW_WRITE_REG(INCA_IP_Switch_PMAC_SA1, regValue);
224 wTmp = (u16)dev->enetaddr[2];
225 regValue = (wTmp << 8) | dev->enetaddr[3];
226 regValue = regValue << 16;
227 wTmp = (u16)dev->enetaddr[4];
228 regValue |= (wTmp<<8) | dev->enetaddr[5];
230 SW_WRITE_REG(INCA_IP_Switch_PMAC_SA2, regValue);
232 /* Initialize the descriptor rings.
234 for (i = 0; i < NUM_RX_DESC; i++) {
235 inca_rx_descriptor_t * rx_desc = (inca_rx_descriptor_t *)CKSEG1ADDR(&rx_ring[i]);
236 memset(rx_desc, 0, sizeof(rx_ring[i]));
238 /* Set maximum size of receive buffer.
240 rx_desc->params.field.NFB = PKTSIZE_ALIGN;
242 /* Set the offset of the receive buffer. Zero means
243 * that the offset mechanism is not used.
245 rx_desc->params.field.offset = 0;
247 /* Check if it is the last descriptor.
249 if (i == (NUM_RX_DESC - 1)) {
250 /* Let the last descriptor point to the first
253 rx_desc->nextRxDescPtr = (u32)CKSEG1ADDR(rx_ring);
255 /* Set the address of the next descriptor.
257 rx_desc->nextRxDescPtr = (u32)CKSEG1ADDR(&rx_ring[i+1]);
260 rx_desc->RxDataPtr = (u32)CKSEG1ADDR(NetRxPackets[i]);
264 printf("rx_ring = 0x%08X 0x%08X\n", (u32)rx_ring, (u32)&rx_ring[0]);
265 printf("tx_ring = 0x%08X 0x%08X\n", (u32)tx_ring, (u32)&tx_ring[0]);
268 for (i = 0; i < NUM_TX_DESC; i++) {
269 inca_tx_descriptor_t * tx_desc = (inca_tx_descriptor_t *)CKSEG1ADDR(&tx_ring[i]);
271 memset(tx_desc, 0, sizeof(tx_ring[i]));
273 tx_desc->params.word = 0;
274 tx_desc->params.field.HOLD = 1;
277 /* Check if it is the last descriptor.
279 if (i == (NUM_TX_DESC - 1)) {
280 /* Let the last descriptor point to the
283 tx_desc->nextTxDescPtr = (u32)CKSEG1ADDR(tx_ring);
285 /* Set the address of the next descriptor.
287 tx_desc->nextTxDescPtr = (u32)CKSEG1ADDR(&tx_ring[i+1]);
293 DMA_READ_REG(INCA_IP_DMA_DMA_RXISR, v);
294 debug("RX status = 0x%08X\n", v);
296 /* Writing to the FRDA of CHANNEL.
298 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXFRDA0, (u32)rx_ring);
300 /* Writing to the COMMAND REG.
302 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXCCR0, INCA_IP_DMA_DMA_RXCCR0_INIT);
306 DMA_READ_REG(INCA_IP_DMA_DMA_TXISR, v);
307 debug("TX status = 0x%08X\n", v);
309 /* Writing to the FRDA of CHANNEL.
311 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXFRDA0, (u32)tx_ring);
315 tx_hold = NUM_TX_DESC - 1;
316 rx_hold = NUM_RX_DESC - 1;
319 rx_ring[rx_hold].params.field.HOLD = 1;
321 /* enable spanning tree forwarding, enable the CPU port */
323 * CPS (CPU port status) 0x3 (forwarding)
324 * LPS (LAN port status) 0x3 (forwarding)
325 * PPS (PC port status) 0x3 (forwarding)
327 SW_WRITE_REG(INCA_IP_Switch_ST_PT,0x3f);
330 printf("Leaving inca_switch_init()\n");
337 static int inca_switch_send(struct eth_device *dev, void *packet, int length)
343 inca_tx_descriptor_t * tx_desc = (inca_tx_descriptor_t *)CKSEG1ADDR(&tx_ring[tx_new]);
346 printf("Entered inca_switch_send()\n");
350 printf ("%s: bad packet size: %d\n", dev->name, length);
354 for(i = 0; tx_desc->C == 0; i++) {
355 if (i >= TOUT_LOOP) {
356 printf("%s: tx error buffer not ready\n", dev->name);
361 if (tx_old_hold >= 0) {
362 ((inca_tx_descriptor_t *)CKSEG1ADDR(&tx_ring[tx_old_hold]))->params.field.HOLD = 1;
364 tx_old_hold = tx_hold;
366 tx_desc->params.word =
367 (INCA_DMA_TX_SOP | INCA_DMA_TX_EOP | INCA_DMA_TX_HOLD);
370 tx_desc->TxDataPtr = (u32)packet;
371 tx_desc->params.field.NBA = length;
373 ((inca_tx_descriptor_t *)CKSEG1ADDR(&tx_ring[tx_hold]))->params.field.HOLD = 0;
376 tx_new = (tx_new + 1) % NUM_TX_DESC;
380 command = INCA_IP_DMA_DMA_TXCCR0_INIT;
383 command = INCA_IP_DMA_DMA_TXCCR0_HR;
386 DMA_READ_REG(INCA_IP_DMA_DMA_TXCCR0, regValue);
389 printf("regValue = 0x%x\n", regValue);
391 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXCCR0, regValue);
394 for(i = 0; ((inca_tx_descriptor_t *)CKSEG1ADDR(&tx_ring[tx_hold]))->C == 0; i++) {
395 if (i >= TOUT_LOOP) {
396 printf("%s: tx buffer not ready\n", dev->name);
404 printf("Leaving inca_switch_send()\n");
410 static int inca_switch_recv(struct eth_device *dev)
413 inca_rx_descriptor_t * rx_desc;
416 printf("Entered inca_switch_recv()\n");
420 rx_desc = (inca_rx_descriptor_t *)CKSEG1ADDR(&rx_ring[rx_new]);
422 if (rx_desc->status.field.C == 0) {
427 rx_ring[rx_new].params.field.HOLD = 1;
430 if (! rx_desc->status.field.Eop) {
431 printf("Partly received packet!!!\n");
435 length = rx_desc->status.field.NBT;
436 rx_desc->status.word &=
437 ~(INCA_DMA_RX_EOP | INCA_DMA_RX_SOP | INCA_DMA_RX_C);
441 for (i=0;i<length - 4;i++) {
442 if (i % 16 == 0) printf("\n%04x: ", i);
443 printf("%02X ", NetRxPackets[rx_new][i]);
451 printf("Received %d bytes\n", length);
453 NetReceive((void*)CKSEG1ADDR(NetRxPackets[rx_new]), length - 4);
456 printf("Zero length!!!\n");
461 ((inca_rx_descriptor_t *)CKSEG1ADDR(&rx_ring[rx_hold]))->params.field.HOLD = 0;
465 rx_new = (rx_new + 1) % NUM_RX_DESC;
469 printf("Leaving inca_switch_recv()\n");
476 static void inca_switch_halt(struct eth_device *dev)
479 printf("Entered inca_switch_halt()\n");
486 /* Disable forwarding to the CPU port.
488 SW_WRITE_REG(INCA_IP_Switch_ST_PT,0xf);
490 /* Close RxDMA channel.
492 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXCCR0, INCA_IP_DMA_DMA_RXCCR0_OFF);
494 /* Close TxDMA channel.
496 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXCCR0, INCA_IP_DMA_DMA_TXCCR0_OFF);
501 printf("Leaving inca_switch_halt()\n");
506 static void inca_init_switch_chip(void)
510 /* To workaround a problem with collision counter
511 * (see Errata sheet).
513 SW_WRITE_REG(INCA_IP_Switch_PC_TX_CTL, 0x00000001);
514 SW_WRITE_REG(INCA_IP_Switch_LAN_TX_CTL, 0x00000001);
517 /* init MDIO configuration:
518 * MDS (Poll speed): 0x01 (4ms)
521 * UEP (Use External PHY): 0x00 (Internal PHY is used)
522 * PS (Port Select): 0x00 (PT/UMM for LAN)
523 * PT (PHY Test): 0x00 (no test mode)
524 * UMM (Use MDIO Mode): 0x00 (state machine is disabled)
526 SW_WRITE_REG(INCA_IP_Switch_MDIO_CFG, 0x4c50);
529 * SL (Auto Neg. Speed for LAN)
530 * SP (Auto Neg. Speed for PC)
531 * LL (Link Status for LAN)
532 * LP (Link Status for PC)
533 * DL (Duplex Status for LAN)
534 * DP (Duplex Status for PC)
535 * PL (Auto Neg. Pause Status for LAN)
536 * PP (Auto Neg. Pause Status for PC)
538 SW_WRITE_REG (INCA_IP_Switch_EPHY, 0xff);
541 * RA (Request/Ack) 0x01 (Request)
542 * RW (Read/Write) 0x01 (Write)
544 * REG_ADDR 0x00 (PHY_BCR: basic control register)
546 * Reset - software reset
547 * LB (loop back) - normal
548 * SS (speed select) - 10 Mbit/s
549 * ANE (auto neg. enable) - enable
550 * PD (power down) - normal
551 * ISO (isolate) - normal
552 * RAN (restart auto neg.) - normal
553 * DM (duplex mode) - half duplex
554 * CT (collision test) - enable
556 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC, 0xc0a09000);
559 * RA (Request/Ack) 0x01 (Request)
560 * RW (Read/Write) 0x01 (Write)
561 * PHY_ADDR 0x06 (LAN)
562 * REG_ADDR 0x00 (PHY_BCR: basic control register)
564 * Reset - software reset
565 * LB (loop back) - normal
566 * SS (speed select) - 10 Mbit/s
567 * ANE (auto neg. enable) - enable
568 * PD (power down) - normal
569 * ISO (isolate) - normal
570 * RAN (restart auto neg.) - normal
571 * DM (duplex mode) - half duplex
572 * CT (collision test) - enable
574 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC, 0xc0c09000);
578 /* Make sure the CPU port is disabled for now. We
579 * don't want packets to get stacked for us until
580 * we enable DMA and are prepared to receive them.
582 SW_WRITE_REG(INCA_IP_Switch_ST_PT,0xf);
584 SW_READ_REG(INCA_IP_Switch_ARL_CTL, regValue);
586 /* CRC GEN is enabled.
588 regValue |= 0x00000200;
589 SW_WRITE_REG(INCA_IP_Switch_ARL_CTL, regValue);
591 /* ADD TAG is disabled.
593 SW_READ_REG(INCA_IP_Switch_PMAC_HD_CTL, regValue);
594 regValue &= ~0x00000002;
595 SW_WRITE_REG(INCA_IP_Switch_PMAC_HD_CTL, regValue);
599 static void inca_dma_init(void)
601 /* Switch off all DMA channels.
603 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXCCR0, INCA_IP_DMA_DMA_RXCCR0_OFF);
604 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXCCR1, INCA_IP_DMA_DMA_RXCCR1_OFF);
606 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXCCR0, INCA_IP_DMA_DMA_RXCCR0_OFF);
607 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXCCR1, INCA_IP_DMA_DMA_TXCCR1_OFF);
608 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXCCR2, INCA_IP_DMA_DMA_TXCCR2_OFF);
610 /* Setup TX channel polling time.
612 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXPOLL, INCA_DMA_TX_POLLING_TIME);
614 /* Setup RX channel polling time.
616 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXPOLL, INCA_DMA_RX_POLLING_TIME);
618 /* ERRATA: write reset value into the DMA RX IMR register.
620 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXIMR, 0xFFFFFFFF);
622 /* Just in case: disable all transmit interrupts also.
624 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXIMR, 0xFFFFFFFF);
626 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXISR, 0xFFFFFFFF);
627 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXISR, 0xFFFFFFFF);
630 #if defined(CONFIG_INCA_IP_SWITCH_AMDIX)
631 static int inca_amdix(void)
644 *INCA_IP_AUTO_MDIX_LAN_PORTS_DIR |= (1 << INCA_IP_AUTO_MDIX_LAN_GPIO_PIN_RXTX);
645 *INCA_IP_AUTO_MDIX_LAN_PORTS_ALTSEL |= (1 << INCA_IP_AUTO_MDIX_LAN_GPIO_PIN_RXTX);
650 retries = WAIT_SIGNAL_RETRIES;
652 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC,
653 (0x1 << 31) | /* RA */
654 (0x0 << 30) | /* Read */
655 (0x6 << 21) | /* LAN */
656 (17 << 16)); /* PHY_MCSR */
658 SW_READ_REG(INCA_IP_Switch_MDIO_ACC, phyReg1);
659 } while (phyReg1 & (1 << 31));
661 if (phyReg1 & (1 << 1)) {
662 /* Signal detected */
673 *INCA_IP_AUTO_MDIX_LAN_PORTS_OUT &= ~(1 << INCA_IP_AUTO_MDIX_LAN_GPIO_PIN_RXTX);
678 retries = WAIT_LINK_RETRIES;
680 udelay(LINK_RETRY_DELAY * 1000);
681 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC,
682 (0x1 << 31) | /* RA */
683 (0x0 << 30) | /* Read */
684 (0x6 << 21) | /* LAN */
685 (1 << 16)); /* PHY_BSR */
687 SW_READ_REG(INCA_IP_Switch_MDIO_ACC, phyReg1);
688 } while (phyReg1 & (1 << 31));
690 if (phyReg1 & (1 << 2)) {
693 } else if (mdi_flag) {
695 *INCA_IP_AUTO_MDIX_LAN_PORTS_OUT |= (1 << INCA_IP_AUTO_MDIX_LAN_GPIO_PIN_RXTX);
699 *INCA_IP_AUTO_MDIX_LAN_PORTS_OUT &= ~(1 << INCA_IP_AUTO_MDIX_LAN_GPIO_PIN_RXTX);
707 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC,
708 (0x1 << 31) | /* RA */
709 (0x0 << 30) | /* Read */
710 (0x6 << 21) | /* LAN */
711 (1 << 16)); /* PHY_BSR */
713 SW_READ_REG(INCA_IP_Switch_MDIO_ACC, phyReg1);
714 } while (phyReg1 & (1 << 31));
716 /* Auto-negotiation / Parallel detection complete
718 if (phyReg1 & (1 << 5)) {
719 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC,
720 (0x1 << 31) | /* RA */
721 (0x0 << 30) | /* Read */
722 (0x6 << 21) | /* LAN */
723 (31 << 16)); /* PHY_SCSR */
725 SW_READ_REG(INCA_IP_Switch_MDIO_ACC, phyReg31);
726 } while (phyReg31 & (1 << 31));
728 switch ((phyReg31 >> 2) & 0x7) {
729 case INCA_SWITCH_PHY_SPEED_10H:
730 /* 10Base-T Half-duplex */
733 case INCA_SWITCH_PHY_SPEED_10F:
734 /* 10Base-T Full-duplex */
735 regEphy = INCA_IP_Switch_EPHY_DL;
737 case INCA_SWITCH_PHY_SPEED_100H:
738 /* 100Base-TX Half-duplex */
739 regEphy = INCA_IP_Switch_EPHY_SL;
741 case INCA_SWITCH_PHY_SPEED_100F:
742 /* 100Base-TX Full-duplex */
743 regEphy = INCA_IP_Switch_EPHY_SL | INCA_IP_Switch_EPHY_DL;
747 /* In case of Auto-negotiation,
748 * update the negotiated PAUSE support status
750 if (phyReg1 & (1 << 3)) {
751 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC,
752 (0x1 << 31) | /* RA */
753 (0x0 << 30) | /* Read */
754 (0x6 << 21) | /* LAN */
755 (6 << 16)); /* MII_EXPANSION */
757 SW_READ_REG(INCA_IP_Switch_MDIO_ACC, phyReg6);
758 } while (phyReg6 & (1 << 31));
760 /* We are Autoneg-able.
761 * Is Link partner also able to autoneg?
763 if (phyReg6 & (1 << 0)) {
764 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC,
765 (0x1 << 31) | /* RA */
766 (0x0 << 30) | /* Read */
767 (0x6 << 21) | /* LAN */
768 (4 << 16)); /* MII_ADVERTISE */
770 SW_READ_REG(INCA_IP_Switch_MDIO_ACC, phyReg4);
771 } while (phyReg4 & (1 << 31));
773 /* We advertise PAUSE capab.
774 * Does link partner also advertise it?
776 if (phyReg4 & (1 << 10)) {
777 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC,
778 (0x1 << 31) | /* RA */
779 (0x0 << 30) | /* Read */
780 (0x6 << 21) | /* LAN */
781 (5 << 16)); /* MII_LPA */
783 SW_READ_REG(INCA_IP_Switch_MDIO_ACC, phyReg5);
784 } while (phyReg5 & (1 << 31));
786 /* Link partner is PAUSE capab.
788 if (phyReg5 & (1 << 10)) {
789 regEphy |= INCA_IP_Switch_EPHY_PL;
797 regEphy |= INCA_IP_Switch_EPHY_LL;
799 SW_WRITE_REG(INCA_IP_Switch_EPHY, regEphy);
806 printf("No Link on LAN port\n");
809 #endif /* CONFIG_INCA_IP_SWITCH_AMDIX */