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,
29 #if defined(CONFIG_CMD_NET) \
30 && defined(CONFIG_NET_MULTI) && defined(CONFIG_INCA_IP_SWITCH)
34 #include <asm/inca-ip.h>
35 #include <asm/addrspace.h>
38 #define NUM_RX_DESC PKTBUFSRX
40 #define TOUT_LOOP 1000000
43 #define DELAY udelay(10000)
44 /* Sometimes the store word instruction hangs while writing to one
45 * of the Switch registers. Moving the instruction into a separate
46 * function somehow makes the problem go away.
48 static void SWORD(volatile u32
* reg
, u32 value
)
53 #define DMA_WRITE_REG(reg, value) *((volatile u32 *)reg) = (u32)value;
54 #define DMA_READ_REG(reg, value) value = (u32)*((volatile u32*)reg)
55 #define SW_WRITE_REG(reg, value) \
60 #define SW_READ_REG(reg, value) \
61 value = (u32)*((volatile u32*)reg);\
63 value = (u32)*((volatile u32*)reg);
65 #define INCA_DMA_TX_POLLING_TIME 0x07
66 #define INCA_DMA_RX_POLLING_TIME 0x07
68 #define INCA_DMA_TX_HOLD 0x80000000
69 #define INCA_DMA_TX_EOP 0x40000000
70 #define INCA_DMA_TX_SOP 0x20000000
71 #define INCA_DMA_TX_ICPT 0x10000000
72 #define INCA_DMA_TX_IEOP 0x08000000
74 #define INCA_DMA_RX_C 0x80000000
75 #define INCA_DMA_RX_SOP 0x40000000
76 #define INCA_DMA_RX_EOP 0x20000000
78 #define INCA_SWITCH_PHY_SPEED_10H 0x1
79 #define INCA_SWITCH_PHY_SPEED_10F 0x5
80 #define INCA_SWITCH_PHY_SPEED_100H 0x2
81 #define INCA_SWITCH_PHY_SPEED_100F 0x6
83 /************************ Auto MDIX settings ************************/
84 #define INCA_IP_AUTO_MDIX_LAN_PORTS_DIR INCA_IP_Ports_P1_DIR
85 #define INCA_IP_AUTO_MDIX_LAN_PORTS_ALTSEL INCA_IP_Ports_P1_ALTSEL
86 #define INCA_IP_AUTO_MDIX_LAN_PORTS_OUT INCA_IP_Ports_P1_OUT
87 #define INCA_IP_AUTO_MDIX_LAN_GPIO_PIN_RXTX 16
89 #define WAIT_SIGNAL_RETRIES 100
90 #define WAIT_LINK_RETRIES 100
91 #define LINK_RETRY_DELAY 2000 /* ms */
92 /********************************************************************/
100 volatile u32 IEop
:1;
101 volatile u32 offset
:3;
102 volatile u32 reserved0
:4;
103 volatile u32 NFB
:22;
109 volatile u32 nextRxDescPtr
;
111 volatile u32 RxDataPtr
;
118 volatile u32 reserved3
:12;
119 volatile u32 NBT
:17;
125 } inca_rx_descriptor_t
;
132 volatile u32 HOLD
:1;
135 volatile u32 ICpt
:1;
136 volatile u32 IEop
:1;
137 volatile u32 reserved0
:5;
138 volatile u32 NBA
:22;
144 volatile u32 nextTxDescPtr
;
146 volatile u32 TxDataPtr
;
149 volatile u32 reserved3
:31;
151 } inca_tx_descriptor_t
;
154 static inca_rx_descriptor_t rx_ring
[NUM_RX_DESC
] __attribute__ ((aligned(16)));
155 static inca_tx_descriptor_t tx_ring
[NUM_TX_DESC
] __attribute__ ((aligned(16)));
157 static int tx_new
, rx_new
, tx_hold
, rx_hold
;
158 static int tx_old_hold
= -1;
159 static int initialized
= 0;
162 static int inca_switch_init(struct eth_device
*dev
, bd_t
* bis
);
163 static int inca_switch_send(struct eth_device
*dev
, volatile void *packet
, int length
);
164 static int inca_switch_recv(struct eth_device
*dev
);
165 static void inca_switch_halt(struct eth_device
*dev
);
166 static void inca_init_switch_chip(void);
167 static void inca_dma_init(void);
168 static int inca_amdix(void);
171 int inca_switch_initialize(bd_t
* bis
)
173 struct eth_device
*dev
;
176 printf("Entered inca_switch_initialize()\n");
179 if (!(dev
= (struct eth_device
*) malloc (sizeof *dev
))) {
180 printf("Failed to allocate memory\n");
183 memset(dev
, 0, sizeof(*dev
));
187 inca_init_switch_chip();
189 #if defined(CONFIG_INCA_IP_SWITCH_AMDIX)
193 sprintf(dev
->name
, "INCA-IP Switch");
194 dev
->init
= inca_switch_init
;
195 dev
->halt
= inca_switch_halt
;
196 dev
->send
= inca_switch_send
;
197 dev
->recv
= inca_switch_recv
;
202 printf("Leaving inca_switch_initialize()\n");
209 static int inca_switch_init(struct eth_device
*dev
, bd_t
* bis
)
216 printf("Entering inca_switch_init()\n");
221 wTmp
= (u16
)dev
->enetaddr
[0];
222 regValue
= (wTmp
<< 8) | dev
->enetaddr
[1];
224 SW_WRITE_REG(INCA_IP_Switch_PMAC_SA1
, regValue
);
226 wTmp
= (u16
)dev
->enetaddr
[2];
227 regValue
= (wTmp
<< 8) | dev
->enetaddr
[3];
228 regValue
= regValue
<< 16;
229 wTmp
= (u16
)dev
->enetaddr
[4];
230 regValue
|= (wTmp
<<8) | dev
->enetaddr
[5];
232 SW_WRITE_REG(INCA_IP_Switch_PMAC_SA2
, regValue
);
234 /* Initialize the descriptor rings.
236 for (i
= 0; i
< NUM_RX_DESC
; i
++) {
237 inca_rx_descriptor_t
* rx_desc
= KSEG1ADDR(&rx_ring
[i
]);
238 memset(rx_desc
, 0, sizeof(rx_ring
[i
]));
240 /* Set maximum size of receive buffer.
242 rx_desc
->params
.field
.NFB
= PKTSIZE_ALIGN
;
244 /* Set the offset of the receive buffer. Zero means
245 * that the offset mechanism is not used.
247 rx_desc
->params
.field
.offset
= 0;
249 /* Check if it is the last descriptor.
251 if (i
== (NUM_RX_DESC
- 1)) {
252 /* Let the last descriptor point to the first
255 rx_desc
->nextRxDescPtr
= KSEG1ADDR((u32
)rx_ring
);
257 /* Set the address of the next descriptor.
259 rx_desc
->nextRxDescPtr
= (u32
)KSEG1ADDR(&rx_ring
[i
+1]);
262 rx_desc
->RxDataPtr
= (u32
)KSEG1ADDR(NetRxPackets
[i
]);
266 printf("rx_ring = 0x%08X 0x%08X\n", (u32
)rx_ring
, (u32
)&rx_ring
[0]);
267 printf("tx_ring = 0x%08X 0x%08X\n", (u32
)tx_ring
, (u32
)&tx_ring
[0]);
270 for (i
= 0; i
< NUM_TX_DESC
; i
++) {
271 inca_tx_descriptor_t
* tx_desc
= KSEG1ADDR(&tx_ring
[i
]);
273 memset(tx_desc
, 0, sizeof(tx_ring
[i
]));
275 tx_desc
->params
.word
= 0;
276 tx_desc
->params
.field
.HOLD
= 1;
279 /* Check if it is the last descriptor.
281 if (i
== (NUM_TX_DESC
- 1)) {
282 /* Let the last descriptor point to the
285 tx_desc
->nextTxDescPtr
= KSEG1ADDR((u32
)tx_ring
);
287 /* Set the address of the next descriptor.
289 tx_desc
->nextTxDescPtr
= (u32
)KSEG1ADDR(&tx_ring
[i
+1]);
295 DMA_READ_REG(INCA_IP_DMA_DMA_RXISR
, v
);
297 printf("RX status = 0x%08X\n", v
);
300 /* Writing to the FRDA of CHANNEL.
302 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXFRDA0
, (u32
)rx_ring
);
304 /* Writing to the COMMAND REG.
306 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXCCR0
, INCA_IP_DMA_DMA_RXCCR0_INIT
);
310 DMA_READ_REG(INCA_IP_DMA_DMA_TXISR
, v
);
312 printf("TX status = 0x%08X\n", v
);
315 /* Writing to the FRDA of CHANNEL.
317 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXFRDA0
, (u32
)tx_ring
);
321 tx_hold
= NUM_TX_DESC
- 1;
322 rx_hold
= NUM_RX_DESC
- 1;
325 rx_ring
[rx_hold
].params
.field
.HOLD
= 1;
327 /* enable spanning tree forwarding, enable the CPU port */
329 * CPS (CPU port status) 0x3 (forwarding)
330 * LPS (LAN port status) 0x3 (forwarding)
331 * PPS (PC port status) 0x3 (forwarding)
333 SW_WRITE_REG(INCA_IP_Switch_ST_PT
,0x3f);
336 printf("Leaving inca_switch_init()\n");
343 static int inca_switch_send(struct eth_device
*dev
, volatile void *packet
, int length
)
349 inca_tx_descriptor_t
* tx_desc
= KSEG1ADDR(&tx_ring
[tx_new
]);
352 printf("Entered inca_switch_send()\n");
356 printf ("%s: bad packet size: %d\n", dev
->name
, length
);
360 for(i
= 0; tx_desc
->C
== 0; i
++) {
361 if (i
>= TOUT_LOOP
) {
362 printf("%s: tx error buffer not ready\n", dev
->name
);
367 if (tx_old_hold
>= 0) {
368 KSEG1ADDR(&tx_ring
[tx_old_hold
])->params
.field
.HOLD
= 1;
370 tx_old_hold
= tx_hold
;
372 tx_desc
->params
.word
=
373 (INCA_DMA_TX_SOP
| INCA_DMA_TX_EOP
| INCA_DMA_TX_HOLD
);
376 tx_desc
->TxDataPtr
= (u32
)packet
;
377 tx_desc
->params
.field
.NBA
= length
;
379 KSEG1ADDR(&tx_ring
[tx_hold
])->params
.field
.HOLD
= 0;
382 tx_new
= (tx_new
+ 1) % NUM_TX_DESC
;
386 command
= INCA_IP_DMA_DMA_TXCCR0_INIT
;
389 command
= INCA_IP_DMA_DMA_TXCCR0_HR
;
392 DMA_READ_REG(INCA_IP_DMA_DMA_TXCCR0
, regValue
);
395 printf("regValue = 0x%x\n", regValue
);
397 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXCCR0
, regValue
);
400 for(i
= 0; KSEG1ADDR(&tx_ring
[tx_hold
])->C
== 0; i
++) {
401 if (i
>= TOUT_LOOP
) {
402 printf("%s: tx buffer not ready\n", dev
->name
);
410 printf("Leaving inca_switch_send()\n");
416 static int inca_switch_recv(struct eth_device
*dev
)
419 inca_rx_descriptor_t
* rx_desc
;
422 printf("Entered inca_switch_recv()\n");
426 rx_desc
= KSEG1ADDR(&rx_ring
[rx_new
]);
428 if (rx_desc
->status
.field
.C
== 0) {
433 rx_ring
[rx_new
].params
.field
.HOLD
= 1;
436 if (! rx_desc
->status
.field
.Eop
) {
437 printf("Partly received packet!!!\n");
441 length
= rx_desc
->status
.field
.NBT
;
442 rx_desc
->status
.word
&=
443 ~(INCA_DMA_RX_EOP
| INCA_DMA_RX_SOP
| INCA_DMA_RX_C
);
447 for (i
=0;i
<length
- 4;i
++) {
448 if (i
% 16 == 0) printf("\n%04x: ", i
);
449 printf("%02X ", NetRxPackets
[rx_new
][i
]);
457 printf("Received %d bytes\n", length
);
459 NetReceive((void*)KSEG1ADDR(NetRxPackets
[rx_new
]), length
- 4);
462 printf("Zero length!!!\n");
467 KSEG1ADDR(&rx_ring
[rx_hold
])->params
.field
.HOLD
= 0;
471 rx_new
= (rx_new
+ 1) % NUM_RX_DESC
;
475 printf("Leaving inca_switch_recv()\n");
482 static void inca_switch_halt(struct eth_device
*dev
)
485 printf("Entered inca_switch_halt()\n");
492 /* Disable forwarding to the CPU port.
494 SW_WRITE_REG(INCA_IP_Switch_ST_PT
,0xf);
496 /* Close RxDMA channel.
498 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXCCR0
, INCA_IP_DMA_DMA_RXCCR0_OFF
);
500 /* Close TxDMA channel.
502 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXCCR0
, INCA_IP_DMA_DMA_TXCCR0_OFF
);
507 printf("Leaving inca_switch_halt()\n");
512 static void inca_init_switch_chip(void)
516 /* To workaround a problem with collision counter
517 * (see Errata sheet).
519 SW_WRITE_REG(INCA_IP_Switch_PC_TX_CTL
, 0x00000001);
520 SW_WRITE_REG(INCA_IP_Switch_LAN_TX_CTL
, 0x00000001);
523 /* init MDIO configuration:
524 * MDS (Poll speed): 0x01 (4ms)
527 * UEP (Use External PHY): 0x00 (Internal PHY is used)
528 * PS (Port Select): 0x00 (PT/UMM for LAN)
529 * PT (PHY Test): 0x00 (no test mode)
530 * UMM (Use MDIO Mode): 0x00 (state machine is disabled)
532 SW_WRITE_REG(INCA_IP_Switch_MDIO_CFG
, 0x4c50);
535 * SL (Auto Neg. Speed for LAN)
536 * SP (Auto Neg. Speed for PC)
537 * LL (Link Status for LAN)
538 * LP (Link Status for PC)
539 * DL (Duplex Status for LAN)
540 * DP (Duplex Status for PC)
541 * PL (Auto Neg. Pause Status for LAN)
542 * PP (Auto Neg. Pause Status for PC)
544 SW_WRITE_REG (INCA_IP_Switch_EPHY
, 0xff);
547 * RA (Request/Ack) 0x01 (Request)
548 * RW (Read/Write) 0x01 (Write)
550 * REG_ADDR 0x00 (PHY_BCR: basic control register)
552 * Reset - software reset
553 * LB (loop back) - normal
554 * SS (speed select) - 10 Mbit/s
555 * ANE (auto neg. enable) - enable
556 * PD (power down) - normal
557 * ISO (isolate) - normal
558 * RAN (restart auto neg.) - normal
559 * DM (duplex mode) - half duplex
560 * CT (collision test) - enable
562 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC
, 0xc0a09000);
565 * RA (Request/Ack) 0x01 (Request)
566 * RW (Read/Write) 0x01 (Write)
567 * PHY_ADDR 0x06 (LAN)
568 * REG_ADDR 0x00 (PHY_BCR: basic control register)
570 * Reset - software reset
571 * LB (loop back) - normal
572 * SS (speed select) - 10 Mbit/s
573 * ANE (auto neg. enable) - enable
574 * PD (power down) - normal
575 * ISO (isolate) - normal
576 * RAN (restart auto neg.) - normal
577 * DM (duplex mode) - half duplex
578 * CT (collision test) - enable
580 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC
, 0xc0c09000);
584 /* Make sure the CPU port is disabled for now. We
585 * don't want packets to get stacked for us until
586 * we enable DMA and are prepared to receive them.
588 SW_WRITE_REG(INCA_IP_Switch_ST_PT
,0xf);
590 SW_READ_REG(INCA_IP_Switch_ARL_CTL
, regValue
);
592 /* CRC GEN is enabled.
594 regValue
|= 0x00000200;
595 SW_WRITE_REG(INCA_IP_Switch_ARL_CTL
, regValue
);
597 /* ADD TAG is disabled.
599 SW_READ_REG(INCA_IP_Switch_PMAC_HD_CTL
, regValue
);
600 regValue
&= ~0x00000002;
601 SW_WRITE_REG(INCA_IP_Switch_PMAC_HD_CTL
, regValue
);
605 static void inca_dma_init(void)
607 /* Switch off all DMA channels.
609 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXCCR0
, INCA_IP_DMA_DMA_RXCCR0_OFF
);
610 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXCCR1
, INCA_IP_DMA_DMA_RXCCR1_OFF
);
612 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXCCR0
, INCA_IP_DMA_DMA_RXCCR0_OFF
);
613 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXCCR1
, INCA_IP_DMA_DMA_TXCCR1_OFF
);
614 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXCCR2
, INCA_IP_DMA_DMA_TXCCR2_OFF
);
616 /* Setup TX channel polling time.
618 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXPOLL
, INCA_DMA_TX_POLLING_TIME
);
620 /* Setup RX channel polling time.
622 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXPOLL
, INCA_DMA_RX_POLLING_TIME
);
624 /* ERRATA: write reset value into the DMA RX IMR register.
626 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXIMR
, 0xFFFFFFFF);
628 /* Just in case: disable all transmit interrupts also.
630 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXIMR
, 0xFFFFFFFF);
632 DMA_WRITE_REG(INCA_IP_DMA_DMA_TXISR
, 0xFFFFFFFF);
633 DMA_WRITE_REG(INCA_IP_DMA_DMA_RXISR
, 0xFFFFFFFF);
636 #if defined(CONFIG_INCA_IP_SWITCH_AMDIX)
637 static int inca_amdix(void)
650 *INCA_IP_AUTO_MDIX_LAN_PORTS_DIR
|= (1 << INCA_IP_AUTO_MDIX_LAN_GPIO_PIN_RXTX
);
651 *INCA_IP_AUTO_MDIX_LAN_PORTS_ALTSEL
|= (1 << INCA_IP_AUTO_MDIX_LAN_GPIO_PIN_RXTX
);
656 retries
= WAIT_SIGNAL_RETRIES
;
658 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC
,
659 (0x1 << 31) | /* RA */
660 (0x0 << 30) | /* Read */
661 (0x6 << 21) | /* LAN */
662 (17 << 16)); /* PHY_MCSR */
664 SW_READ_REG(INCA_IP_Switch_MDIO_ACC
, phyReg1
);
665 } while (phyReg1
& (1 << 31));
667 if (phyReg1
& (1 << 1)) {
668 /* Signal detected */
679 *INCA_IP_AUTO_MDIX_LAN_PORTS_OUT
&= ~(1 << INCA_IP_AUTO_MDIX_LAN_GPIO_PIN_RXTX
);
684 retries
= WAIT_LINK_RETRIES
;
686 udelay(LINK_RETRY_DELAY
* 1000);
687 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC
,
688 (0x1 << 31) | /* RA */
689 (0x0 << 30) | /* Read */
690 (0x6 << 21) | /* LAN */
691 (1 << 16)); /* PHY_BSR */
693 SW_READ_REG(INCA_IP_Switch_MDIO_ACC
, phyReg1
);
694 } while (phyReg1
& (1 << 31));
696 if (phyReg1
& (1 << 2)) {
699 } else if (mdi_flag
) {
701 *INCA_IP_AUTO_MDIX_LAN_PORTS_OUT
|= (1 << INCA_IP_AUTO_MDIX_LAN_GPIO_PIN_RXTX
);
705 *INCA_IP_AUTO_MDIX_LAN_PORTS_OUT
&= ~(1 << INCA_IP_AUTO_MDIX_LAN_GPIO_PIN_RXTX
);
713 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC
,
714 (0x1 << 31) | /* RA */
715 (0x0 << 30) | /* Read */
716 (0x6 << 21) | /* LAN */
717 (1 << 16)); /* PHY_BSR */
719 SW_READ_REG(INCA_IP_Switch_MDIO_ACC
, phyReg1
);
720 } while (phyReg1
& (1 << 31));
722 /* Auto-negotiation / Parallel detection complete
724 if (phyReg1
& (1 << 5)) {
725 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC
,
726 (0x1 << 31) | /* RA */
727 (0x0 << 30) | /* Read */
728 (0x6 << 21) | /* LAN */
729 (31 << 16)); /* PHY_SCSR */
731 SW_READ_REG(INCA_IP_Switch_MDIO_ACC
, phyReg31
);
732 } while (phyReg31
& (1 << 31));
734 switch ((phyReg31
>> 2) & 0x7) {
735 case INCA_SWITCH_PHY_SPEED_10H
:
736 /* 10Base-T Half-duplex */
739 case INCA_SWITCH_PHY_SPEED_10F
:
740 /* 10Base-T Full-duplex */
741 regEphy
= INCA_IP_Switch_EPHY_DL
;
743 case INCA_SWITCH_PHY_SPEED_100H
:
744 /* 100Base-TX Half-duplex */
745 regEphy
= INCA_IP_Switch_EPHY_SL
;
747 case INCA_SWITCH_PHY_SPEED_100F
:
748 /* 100Base-TX Full-duplex */
749 regEphy
= INCA_IP_Switch_EPHY_SL
| INCA_IP_Switch_EPHY_DL
;
753 /* In case of Auto-negotiation,
754 * update the negotiated PAUSE support status
756 if (phyReg1
& (1 << 3)) {
757 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC
,
758 (0x1 << 31) | /* RA */
759 (0x0 << 30) | /* Read */
760 (0x6 << 21) | /* LAN */
761 (6 << 16)); /* PHY_ANER */
763 SW_READ_REG(INCA_IP_Switch_MDIO_ACC
, phyReg6
);
764 } while (phyReg6
& (1 << 31));
766 /* We are Autoneg-able.
767 * Is Link partner also able to autoneg?
769 if (phyReg6
& (1 << 0)) {
770 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC
,
771 (0x1 << 31) | /* RA */
772 (0x0 << 30) | /* Read */
773 (0x6 << 21) | /* LAN */
774 (4 << 16)); /* PHY_ANAR */
776 SW_READ_REG(INCA_IP_Switch_MDIO_ACC
, phyReg4
);
777 } while (phyReg4
& (1 << 31));
779 /* We advertise PAUSE capab.
780 * Does link partner also advertise it?
782 if (phyReg4
& (1 << 10)) {
783 SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC
,
784 (0x1 << 31) | /* RA */
785 (0x0 << 30) | /* Read */
786 (0x6 << 21) | /* LAN */
787 (5 << 16)); /* PHY_ANLPAR */
789 SW_READ_REG(INCA_IP_Switch_MDIO_ACC
, phyReg5
);
790 } while (phyReg5
& (1 << 31));
792 /* Link partner is PAUSE capab.
794 if (phyReg5
& (1 << 10)) {
795 regEphy
|= INCA_IP_Switch_EPHY_PL
;
803 regEphy
|= INCA_IP_Switch_EPHY_LL
;
805 SW_WRITE_REG(INCA_IP_Switch_EPHY
, regEphy
);
812 printf("No Link on LAN port\n");
815 #endif /* CONFIG_INCA_IP_SWITCH_AMDIX */