]>
Commit | Line | Data |
---|---|---|
ac6dbb85 WD |
1 | /* |
2 | * INCA-IP internal switch ethernet driver. | |
3 | * | |
f8d813e3 | 4 | * (C) Copyright 2003-2004 |
ac6dbb85 WD |
5 | * Wolfgang Denk, DENX Software Engineering, [email protected]. |
6 | * | |
7 | * See file CREDITS for list of people who contributed to this | |
8 | * project. | |
9 | * | |
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. | |
14 | * | |
15 | * This program is distributed in the hope that it will be useful, | |
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
79d696fc | 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
ac6dbb85 WD |
18 | * GNU General Public License for more details. |
19 | * | |
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, | |
23 | * MA 02111-1307 USA | |
24 | */ | |
25 | ||
26 | ||
27 | #include <common.h> | |
28 | ||
29 | #if (CONFIG_COMMANDS & CFG_CMD_NET) && defined(CONFIG_NET_MULTI) \ | |
30 | && defined(CONFIG_INCA_IP_SWITCH) | |
31 | ||
32 | #include <malloc.h> | |
33 | #include <net.h> | |
34 | #include <asm/inca-ip.h> | |
35 | #include <asm/addrspace.h> | |
36 | ||
37 | ||
38 | #define NUM_RX_DESC PKTBUFSRX | |
39 | #define NUM_TX_DESC 3 | |
40 | #define TOUT_LOOP 1000000 | |
41 | ||
42 | ||
43 | #define DELAY udelay(10000) | |
356a0d9f WD |
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. | |
47 | */ | |
48 | static void SWORD(volatile u32 * reg, u32 value) | |
49 | { | |
50 | *reg = value; | |
51 | } | |
ac6dbb85 WD |
52 | |
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) \ | |
356a0d9f | 56 | SWORD(reg, value);\ |
79d696fc | 57 | DELAY;\ |
356a0d9f | 58 | SWORD(reg, value); |
ac6dbb85 | 59 | |
79d696fc WD |
60 | #define SW_READ_REG(reg, value) \ |
61 | value = (u32)*((volatile u32*)reg);\ | |
62 | DELAY;\ | |
63 | value = (u32)*((volatile u32*)reg); | |
ac6dbb85 | 64 | |
79d696fc WD |
65 | #define INCA_DMA_TX_POLLING_TIME 0x07 |
66 | #define INCA_DMA_RX_POLLING_TIME 0x07 | |
ac6dbb85 | 67 | |
79d696fc WD |
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 | |
ac6dbb85 | 73 | |
79d696fc WD |
74 | #define INCA_DMA_RX_C 0x80000000 |
75 | #define INCA_DMA_RX_SOP 0x40000000 | |
76 | #define INCA_DMA_RX_EOP 0x20000000 | |
ac6dbb85 | 77 | |
f8d813e3 WD |
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 | |
82 | ||
cf56e110 | 83 | /************************ Auto MDIX settings ************************/ |
79d696fc WD |
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 | |
88 | ||
89 | #define WAIT_SIGNAL_RETRIES 100 | |
90 | #define WAIT_LINK_RETRIES 100 | |
91 | #define LINK_RETRY_DELAY 2000 /* ms */ | |
cf56e110 | 92 | /********************************************************************/ |
ac6dbb85 WD |
93 | |
94 | typedef struct | |
95 | { | |
e0ac62d7 WD |
96 | union { |
97 | struct { | |
79d696fc WD |
98 | volatile u32 HOLD :1; |
99 | volatile u32 ICpt :1; | |
100 | volatile u32 IEop :1; | |
101 | volatile u32 offset :3; | |
102 | volatile u32 reserved0 :4; | |
103 | volatile u32 NFB :22; | |
ac6dbb85 WD |
104 | }field; |
105 | ||
106 | volatile u32 word; | |
107 | }params; | |
108 | ||
109 | volatile u32 nextRxDescPtr; | |
110 | ||
111 | volatile u32 RxDataPtr; | |
112 | ||
e0ac62d7 WD |
113 | union { |
114 | struct { | |
79d696fc WD |
115 | volatile u32 C :1; |
116 | volatile u32 Sop :1; | |
117 | volatile u32 Eop :1; | |
118 | volatile u32 reserved3 :12; | |
119 | volatile u32 NBT :17; | |
ac6dbb85 WD |
120 | }field; |
121 | ||
122 | volatile u32 word; | |
123 | }status; | |
124 | ||
125 | } inca_rx_descriptor_t; | |
126 | ||
127 | ||
128 | typedef struct | |
129 | { | |
e0ac62d7 WD |
130 | union { |
131 | struct { | |
79d696fc WD |
132 | volatile u32 HOLD :1; |
133 | volatile u32 Eop :1; | |
134 | volatile u32 Sop :1; | |
135 | volatile u32 ICpt :1; | |
136 | volatile u32 IEop :1; | |
137 | volatile u32 reserved0 :5; | |
138 | volatile u32 NBA :22; | |
ac6dbb85 WD |
139 | }field; |
140 | ||
141 | volatile u32 word; | |
142 | }params; | |
143 | ||
144 | volatile u32 nextTxDescPtr; | |
145 | ||
146 | volatile u32 TxDataPtr; | |
147 | ||
79d696fc WD |
148 | volatile u32 C :1; |
149 | volatile u32 reserved3 :31; | |
ac6dbb85 WD |
150 | |
151 | } inca_tx_descriptor_t; | |
152 | ||
153 | ||
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))); | |
156 | ||
157 | static int tx_new, rx_new, tx_hold, rx_hold; | |
158 | static int tx_old_hold = -1; | |
79d696fc | 159 | static int initialized = 0; |
ac6dbb85 WD |
160 | |
161 | ||
162 | static int inca_switch_init(struct eth_device *dev, bd_t * bis); | |
79d696fc | 163 | static int inca_switch_send(struct eth_device *dev, volatile void *packet, int length); |
ac6dbb85 WD |
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); | |
cf56e110 | 168 | static int inca_amdix(void); |
ac6dbb85 WD |
169 | |
170 | ||
ac6dbb85 WD |
171 | int inca_switch_initialize(bd_t * bis) |
172 | { | |
173 | struct eth_device *dev; | |
174 | ||
175 | #if 0 | |
176 | printf("Entered inca_switch_initialize()\n"); | |
177 | #endif | |
178 | ||
e0ac62d7 | 179 | if (!(dev = (struct eth_device *) malloc (sizeof *dev))) { |
ac6dbb85 WD |
180 | printf("Failed to allocate memory\n"); |
181 | return 0; | |
182 | } | |
183 | memset(dev, 0, sizeof(*dev)); | |
184 | ||
185 | inca_dma_init(); | |
186 | ||
187 | inca_init_switch_chip(); | |
3c74e32a | 188 | |
0c852a28 | 189 | #if defined(CONFIG_INCA_IP_SWITCH_AMDIX) |
cf56e110 | 190 | inca_amdix(); |
0c852a28 | 191 | #endif |
ac6dbb85 WD |
192 | |
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; | |
198 | ||
199 | eth_register(dev); | |
200 | ||
201 | #if 0 | |
202 | printf("Leaving inca_switch_initialize()\n"); | |
203 | #endif | |
204 | ||
205 | return 1; | |
206 | } | |
207 | ||
208 | ||
209 | static int inca_switch_init(struct eth_device *dev, bd_t * bis) | |
210 | { | |
211 | int i; | |
212 | u32 v, regValue; | |
213 | u16 wTmp; | |
214 | ||
215 | #if 0 | |
216 | printf("Entering inca_switch_init()\n"); | |
217 | #endif | |
218 | ||
e0ac62d7 WD |
219 | /* Set MAC address. |
220 | */ | |
ac6dbb85 WD |
221 | wTmp = (u16)dev->enetaddr[0]; |
222 | regValue = (wTmp << 8) | dev->enetaddr[1]; | |
223 | ||
224 | SW_WRITE_REG(INCA_IP_Switch_PMAC_SA1, regValue); | |
225 | ||
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]; | |
231 | ||
232 | SW_WRITE_REG(INCA_IP_Switch_PMAC_SA2, regValue); | |
233 | ||
e0ac62d7 WD |
234 | /* Initialize the descriptor rings. |
235 | */ | |
f8d813e3 | 236 | for (i = 0; i < NUM_RX_DESC; i++) { |
ac6dbb85 WD |
237 | inca_rx_descriptor_t * rx_desc = KSEG1ADDR(&rx_ring[i]); |
238 | memset(rx_desc, 0, sizeof(rx_ring[i])); | |
239 | ||
e0ac62d7 WD |
240 | /* Set maximum size of receive buffer. |
241 | */ | |
ac6dbb85 WD |
242 | rx_desc->params.field.NFB = PKTSIZE_ALIGN; |
243 | ||
e0ac62d7 WD |
244 | /* Set the offset of the receive buffer. Zero means |
245 | * that the offset mechanism is not used. | |
246 | */ | |
ac6dbb85 WD |
247 | rx_desc->params.field.offset = 0; |
248 | ||
249 | /* Check if it is the last descriptor. | |
250 | */ | |
e0ac62d7 WD |
251 | if (i == (NUM_RX_DESC - 1)) { |
252 | /* Let the last descriptor point to the first | |
253 | * one. | |
254 | */ | |
ac6dbb85 | 255 | rx_desc->nextRxDescPtr = KSEG1ADDR((u32)rx_ring); |
e0ac62d7 WD |
256 | } else { |
257 | /* Set the address of the next descriptor. | |
258 | */ | |
ac6dbb85 WD |
259 | rx_desc->nextRxDescPtr = (u32)KSEG1ADDR(&rx_ring[i+1]); |
260 | } | |
261 | ||
262 | rx_desc->RxDataPtr = (u32)KSEG1ADDR(NetRxPackets[i]); | |
263 | } | |
264 | ||
265 | #if 0 | |
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]); | |
268 | #endif | |
269 | ||
e0ac62d7 | 270 | for (i = 0; i < NUM_TX_DESC; i++) { |
ac6dbb85 WD |
271 | inca_tx_descriptor_t * tx_desc = KSEG1ADDR(&tx_ring[i]); |
272 | ||
273 | memset(tx_desc, 0, sizeof(tx_ring[i])); | |
274 | ||
79d696fc | 275 | tx_desc->params.word = 0; |
ac6dbb85 | 276 | tx_desc->params.field.HOLD = 1; |
79d696fc | 277 | tx_desc->C = 1; |
ac6dbb85 WD |
278 | |
279 | /* Check if it is the last descriptor. | |
280 | */ | |
e0ac62d7 | 281 | if (i == (NUM_TX_DESC - 1)) { |
ac6dbb85 WD |
282 | /* Let the last descriptor point to the |
283 | * first one. | |
284 | */ | |
285 | tx_desc->nextTxDescPtr = KSEG1ADDR((u32)tx_ring); | |
e0ac62d7 | 286 | } else { |
ac6dbb85 WD |
287 | /* Set the address of the next descriptor. |
288 | */ | |
289 | tx_desc->nextTxDescPtr = (u32)KSEG1ADDR(&tx_ring[i+1]); | |
290 | } | |
291 | } | |
292 | ||
e0ac62d7 WD |
293 | /* Initialize RxDMA. |
294 | */ | |
ac6dbb85 WD |
295 | DMA_READ_REG(INCA_IP_DMA_DMA_RXISR, v); |
296 | #if 0 | |
297 | printf("RX status = 0x%08X\n", v); | |
298 | #endif | |
299 | ||
e0ac62d7 WD |
300 | /* Writing to the FRDA of CHANNEL. |
301 | */ | |
ac6dbb85 WD |
302 | DMA_WRITE_REG(INCA_IP_DMA_DMA_RXFRDA0, (u32)rx_ring); |
303 | ||
e0ac62d7 WD |
304 | /* Writing to the COMMAND REG. |
305 | */ | |
79d696fc | 306 | DMA_WRITE_REG(INCA_IP_DMA_DMA_RXCCR0, INCA_IP_DMA_DMA_RXCCR0_INIT); |
ac6dbb85 | 307 | |
e0ac62d7 WD |
308 | /* Initialize TxDMA. |
309 | */ | |
ac6dbb85 WD |
310 | DMA_READ_REG(INCA_IP_DMA_DMA_TXISR, v); |
311 | #if 0 | |
312 | printf("TX status = 0x%08X\n", v); | |
313 | #endif | |
314 | ||
e0ac62d7 WD |
315 | /* Writing to the FRDA of CHANNEL. |
316 | */ | |
ac6dbb85 WD |
317 | DMA_WRITE_REG(INCA_IP_DMA_DMA_TXFRDA0, (u32)tx_ring); |
318 | ||
319 | tx_new = rx_new = 0; | |
320 | ||
321 | tx_hold = NUM_TX_DESC - 1; | |
322 | rx_hold = NUM_RX_DESC - 1; | |
323 | ||
324 | #if 0 | |
325 | rx_ring[rx_hold].params.field.HOLD = 1; | |
326 | #endif | |
e0ac62d7 WD |
327 | /* enable spanning tree forwarding, enable the CPU port */ |
328 | /* ST_PT: | |
79d696fc WD |
329 | * CPS (CPU port status) 0x3 (forwarding) |
330 | * LPS (LAN port status) 0x3 (forwarding) | |
331 | * PPS (PC port status) 0x3 (forwarding) | |
e0ac62d7 | 332 | */ |
ac6dbb85 WD |
333 | SW_WRITE_REG(INCA_IP_Switch_ST_PT,0x3f); |
334 | ||
335 | #if 0 | |
336 | printf("Leaving inca_switch_init()\n"); | |
337 | #endif | |
338 | ||
339 | return 0; | |
340 | } | |
341 | ||
342 | ||
f8d813e3 | 343 | static int inca_switch_send(struct eth_device *dev, volatile void *packet, int length) |
ac6dbb85 | 344 | { |
79d696fc WD |
345 | int i; |
346 | int res = -1; | |
347 | u32 command; | |
348 | u32 regValue; | |
349 | inca_tx_descriptor_t * tx_desc = KSEG1ADDR(&tx_ring[tx_new]); | |
ac6dbb85 WD |
350 | |
351 | #if 0 | |
352 | printf("Entered inca_switch_send()\n"); | |
353 | #endif | |
354 | ||
e0ac62d7 | 355 | if (length <= 0) { |
ac6dbb85 WD |
356 | printf ("%s: bad packet size: %d\n", dev->name, length); |
357 | goto Done; | |
358 | } | |
8bde7f77 | 359 | |
e0ac62d7 WD |
360 | for(i = 0; tx_desc->C == 0; i++) { |
361 | if (i >= TOUT_LOOP) { | |
ac6dbb85 WD |
362 | printf("%s: tx error buffer not ready\n", dev->name); |
363 | goto Done; | |
364 | } | |
365 | } | |
366 | ||
e0ac62d7 | 367 | if (tx_old_hold >= 0) { |
ac6dbb85 WD |
368 | KSEG1ADDR(&tx_ring[tx_old_hold])->params.field.HOLD = 1; |
369 | } | |
370 | tx_old_hold = tx_hold; | |
371 | ||
372 | tx_desc->params.word = | |
8bde7f77 | 373 | (INCA_DMA_TX_SOP | INCA_DMA_TX_EOP | INCA_DMA_TX_HOLD); |
ac6dbb85 WD |
374 | |
375 | tx_desc->C = 0; | |
376 | tx_desc->TxDataPtr = (u32)packet; | |
377 | tx_desc->params.field.NBA = length; | |
378 | ||
379 | KSEG1ADDR(&tx_ring[tx_hold])->params.field.HOLD = 0; | |
380 | ||
381 | tx_hold = tx_new; | |
79d696fc | 382 | tx_new = (tx_new + 1) % NUM_TX_DESC; |
ac6dbb85 WD |
383 | |
384 | ||
e0ac62d7 | 385 | if (! initialized) { |
ac6dbb85 WD |
386 | command = INCA_IP_DMA_DMA_TXCCR0_INIT; |
387 | initialized = 1; | |
e0ac62d7 | 388 | } else { |
ac6dbb85 WD |
389 | command = INCA_IP_DMA_DMA_TXCCR0_HR; |
390 | } | |
8bde7f77 | 391 | |
ac6dbb85 WD |
392 | DMA_READ_REG(INCA_IP_DMA_DMA_TXCCR0, regValue); |
393 | regValue |= command; | |
394 | #if 0 | |
395 | printf("regValue = 0x%x\n", regValue); | |
396 | #endif | |
397 | DMA_WRITE_REG(INCA_IP_DMA_DMA_TXCCR0, regValue); | |
398 | ||
399 | #if 1 | |
e0ac62d7 WD |
400 | for(i = 0; KSEG1ADDR(&tx_ring[tx_hold])->C == 0; i++) { |
401 | if (i >= TOUT_LOOP) { | |
ac6dbb85 WD |
402 | printf("%s: tx buffer not ready\n", dev->name); |
403 | goto Done; | |
404 | } | |
405 | } | |
406 | #endif | |
407 | res = length; | |
408 | Done: | |
409 | #if 0 | |
410 | printf("Leaving inca_switch_send()\n"); | |
411 | #endif | |
412 | return res; | |
413 | } | |
414 | ||
415 | ||
416 | static int inca_switch_recv(struct eth_device *dev) | |
417 | { | |
79d696fc | 418 | int length = 0; |
ac6dbb85 WD |
419 | inca_rx_descriptor_t * rx_desc; |
420 | ||
421 | #if 0 | |
422 | printf("Entered inca_switch_recv()\n"); | |
423 | #endif | |
424 | ||
e0ac62d7 | 425 | for (;;) { |
ac6dbb85 WD |
426 | rx_desc = KSEG1ADDR(&rx_ring[rx_new]); |
427 | ||
e0ac62d7 | 428 | if (rx_desc->status.field.C == 0) { |
ac6dbb85 WD |
429 | break; |
430 | } | |
431 | ||
432 | #if 0 | |
433 | rx_ring[rx_new].params.field.HOLD = 1; | |
434 | #endif | |
435 | ||
e0ac62d7 | 436 | if (! rx_desc->status.field.Eop) { |
ac6dbb85 WD |
437 | printf("Partly received packet!!!\n"); |
438 | break; | |
439 | } | |
440 | ||
441 | length = rx_desc->status.field.NBT; | |
442 | rx_desc->status.word &= | |
8bde7f77 | 443 | ~(INCA_DMA_RX_EOP | INCA_DMA_RX_SOP | INCA_DMA_RX_C); |
ac6dbb85 WD |
444 | #if 0 |
445 | { | |
446 | int i; | |
447 | for (i=0;i<length - 4;i++) { | |
448 | if (i % 16 == 0) printf("\n%04x: ", i); | |
449 | printf("%02X ", NetRxPackets[rx_new][i]); | |
450 | } | |
451 | printf("\n"); | |
452 | } | |
453 | #endif | |
454 | ||
e0ac62d7 | 455 | if (length) { |
ac6dbb85 WD |
456 | #if 0 |
457 | printf("Received %d bytes\n", length); | |
458 | #endif | |
79d696fc | 459 | NetReceive((void*)KSEG1ADDR(NetRxPackets[rx_new]), length - 4); |
e0ac62d7 | 460 | } else { |
ac6dbb85 WD |
461 | #if 1 |
462 | printf("Zero length!!!\n"); | |
463 | #endif | |
464 | } | |
465 | ||
466 | ||
467 | KSEG1ADDR(&rx_ring[rx_hold])->params.field.HOLD = 0; | |
468 | ||
469 | rx_hold = rx_new; | |
470 | ||
471 | rx_new = (rx_new + 1) % NUM_RX_DESC; | |
472 | } | |
473 | ||
474 | #if 0 | |
475 | printf("Leaving inca_switch_recv()\n"); | |
476 | #endif | |
477 | ||
478 | return length; | |
479 | } | |
480 | ||
481 | ||
482 | static void inca_switch_halt(struct eth_device *dev) | |
483 | { | |
484 | #if 0 | |
485 | printf("Entered inca_switch_halt()\n"); | |
486 | #endif | |
487 | ||
488 | #if 1 | |
489 | initialized = 0; | |
490 | #endif | |
491 | #if 1 | |
e0ac62d7 WD |
492 | /* Disable forwarding to the CPU port. |
493 | */ | |
ac6dbb85 WD |
494 | SW_WRITE_REG(INCA_IP_Switch_ST_PT,0xf); |
495 | ||
e0ac62d7 WD |
496 | /* Close RxDMA channel. |
497 | */ | |
ac6dbb85 WD |
498 | DMA_WRITE_REG(INCA_IP_DMA_DMA_RXCCR0, INCA_IP_DMA_DMA_RXCCR0_OFF); |
499 | ||
e0ac62d7 WD |
500 | /* Close TxDMA channel. |
501 | */ | |
ac6dbb85 WD |
502 | DMA_WRITE_REG(INCA_IP_DMA_DMA_TXCCR0, INCA_IP_DMA_DMA_TXCCR0_OFF); |
503 | ||
504 | ||
505 | #endif | |
506 | #if 0 | |
507 | printf("Leaving inca_switch_halt()\n"); | |
508 | #endif | |
509 | } | |
510 | ||
511 | ||
512 | static void inca_init_switch_chip(void) | |
513 | { | |
514 | u32 regValue; | |
515 | ||
e0ac62d7 WD |
516 | /* To workaround a problem with collision counter |
517 | * (see Errata sheet). | |
518 | */ | |
ac6dbb85 WD |
519 | SW_WRITE_REG(INCA_IP_Switch_PC_TX_CTL, 0x00000001); |
520 | SW_WRITE_REG(INCA_IP_Switch_LAN_TX_CTL, 0x00000001); | |
521 | ||
522 | #if 1 | |
e0ac62d7 | 523 | /* init MDIO configuration: |
79d696fc WD |
524 | * MDS (Poll speed): 0x01 (4ms) |
525 | * PHY_LAN_ADDR: 0x06 | |
526 | * PHY_PC_ADDR: 0x05 | |
e0ac62d7 | 527 | * UEP (Use External PHY): 0x00 (Internal PHY is used) |
79d696fc WD |
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) | |
e0ac62d7 | 531 | */ |
ac6dbb85 WD |
532 | SW_WRITE_REG(INCA_IP_Switch_MDIO_CFG, 0x4c50); |
533 | ||
e0ac62d7 WD |
534 | /* init PHY: |
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) | |
543 | */ | |
ac6dbb85 WD |
544 | SW_WRITE_REG (INCA_IP_Switch_EPHY, 0xff); |
545 | ||
e0ac62d7 WD |
546 | /* MDIO_ACC: |
547 | * RA (Request/Ack) 0x01 (Request) | |
79d696fc WD |
548 | * RW (Read/Write) 0x01 (Write) |
549 | * PHY_ADDR 0x05 (PC) | |
550 | * REG_ADDR 0x00 (PHY_BCR: basic control register) | |
551 | * PHY_DATA 0x8000 | |
552 | * Reset - software reset | |
553 | * LB (loop back) - normal | |
554 | * SS (speed select) - 10 Mbit/s | |
e0ac62d7 | 555 | * ANE (auto neg. enable) - enable |
79d696fc WD |
556 | * PD (power down) - normal |
557 | * ISO (isolate) - normal | |
e0ac62d7 | 558 | * RAN (restart auto neg.) - normal |
79d696fc | 559 | * DM (duplex mode) - half duplex |
e0ac62d7 WD |
560 | * CT (collision test) - enable |
561 | */ | |
562 | SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC, 0xc0a09000); | |
563 | ||
564 | /* MDIO_ACC: | |
565 | * RA (Request/Ack) 0x01 (Request) | |
79d696fc WD |
566 | * RW (Read/Write) 0x01 (Write) |
567 | * PHY_ADDR 0x06 (LAN) | |
568 | * REG_ADDR 0x00 (PHY_BCR: basic control register) | |
569 | * PHY_DATA 0x8000 | |
570 | * Reset - software reset | |
571 | * LB (loop back) - normal | |
572 | * SS (speed select) - 10 Mbit/s | |
e0ac62d7 | 573 | * ANE (auto neg. enable) - enable |
79d696fc WD |
574 | * PD (power down) - normal |
575 | * ISO (isolate) - normal | |
e0ac62d7 | 576 | * RAN (restart auto neg.) - normal |
79d696fc | 577 | * DM (duplex mode) - half duplex |
e0ac62d7 WD |
578 | * CT (collision test) - enable |
579 | */ | |
79d696fc | 580 | SW_WRITE_REG(INCA_IP_Switch_MDIO_ACC, 0xc0c09000); |
e0ac62d7 | 581 | |
ac6dbb85 WD |
582 | #endif |
583 | ||
e0ac62d7 WD |
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. | |
587 | */ | |
ac6dbb85 WD |
588 | SW_WRITE_REG(INCA_IP_Switch_ST_PT,0xf); |
589 | ||
590 | SW_READ_REG(INCA_IP_Switch_ARL_CTL, regValue); | |
591 | ||
e0ac62d7 WD |
592 | /* CRC GEN is enabled. |
593 | */ | |
ac6dbb85 WD |
594 | regValue |= 0x00000200; |
595 | SW_WRITE_REG(INCA_IP_Switch_ARL_CTL, regValue); | |
596 | ||
e0ac62d7 WD |
597 | /* ADD TAG is disabled. |
598 | */ | |
ac6dbb85 WD |
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); | |
602 | } | |
603 | ||
604 | ||
605 | static void inca_dma_init(void) | |
606 | { | |
e0ac62d7 WD |
607 | /* Switch off all DMA channels. |
608 | */ | |
ac6dbb85 WD |
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); | |
611 | ||
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); | |
615 | ||
e0ac62d7 WD |
616 | /* Setup TX channel polling time. |
617 | */ | |
ac6dbb85 WD |
618 | DMA_WRITE_REG(INCA_IP_DMA_DMA_TXPOLL, INCA_DMA_TX_POLLING_TIME); |
619 | ||
e0ac62d7 WD |
620 | /* Setup RX channel polling time. |
621 | */ | |
ac6dbb85 WD |
622 | DMA_WRITE_REG(INCA_IP_DMA_DMA_RXPOLL, INCA_DMA_RX_POLLING_TIME); |
623 | ||
e0ac62d7 WD |
624 | /* ERRATA: write reset value into the DMA RX IMR register. |
625 | */ | |
ac6dbb85 WD |
626 | DMA_WRITE_REG(INCA_IP_DMA_DMA_RXIMR, 0xFFFFFFFF); |
627 | ||
e0ac62d7 WD |
628 | /* Just in case: disable all transmit interrupts also. |
629 | */ | |
ac6dbb85 WD |
630 | DMA_WRITE_REG(INCA_IP_DMA_DMA_TXIMR, 0xFFFFFFFF); |
631 | ||
632 | DMA_WRITE_REG(INCA_IP_DMA_DMA_TXISR, 0xFFFFFFFF); | |
633 | DMA_WRITE_REG(INCA_IP_DMA_DMA_RXISR, 0xFFFFFFFF); | |
634 | } | |
635 | ||
0c852a28 | 636 | #if defined(CONFIG_INCA_IP_SWITCH_AMDIX) |
cf56e110 WD |
637 | static int inca_amdix(void) |
638 | { | |
f8d813e3 WD |
639 | u32 phyReg1 = 0; |
640 | u32 phyReg4 = 0; | |
641 | u32 phyReg5 = 0; | |
642 | u32 phyReg6 = 0; | |
643 | u32 phyReg31 = 0; | |
644 | u32 regEphy = 0; | |
cf56e110 WD |
645 | int mdi_flag; |
646 | int retries; | |
647 | ||
648 | /* Setup GPIO pins. | |
649 | */ | |
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); | |
652 | ||
f8d813e3 | 653 | #if 0 |
cf56e110 WD |
654 | /* Wait for signal. |
655 | */ | |
656 | retries = WAIT_SIGNAL_RETRIES; | |
f8d813e3 | 657 | while (--retries) { |
cf56e110 WD |
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 */ | |
f8d813e3 WD |
663 | do { |
664 | SW_READ_REG(INCA_IP_Switch_MDIO_ACC, phyReg1); | |
665 | } while (phyReg1 & (1 << 31)); | |
cf56e110 | 666 | |
f8d813e3 | 667 | if (phyReg1 & (1 << 1)) { |
cf56e110 WD |
668 | /* Signal detected */ |
669 | break; | |
670 | } | |
671 | } | |
672 | ||
673 | if (!retries) | |
f8d813e3 WD |
674 | goto Fail; |
675 | #endif | |
cf56e110 WD |
676 | |
677 | /* Set MDI mode. | |
678 | */ | |
679 | *INCA_IP_AUTO_MDIX_LAN_PORTS_OUT &= ~(1 << INCA_IP_AUTO_MDIX_LAN_GPIO_PIN_RXTX); | |
680 | mdi_flag = 1; | |
681 | ||
682 | /* Wait for link. | |
683 | */ | |
684 | retries = WAIT_LINK_RETRIES; | |
f8d813e3 | 685 | while (--retries) { |
cf56e110 WD |
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 */ | |
f8d813e3 WD |
692 | do { |
693 | SW_READ_REG(INCA_IP_Switch_MDIO_ACC, phyReg1); | |
694 | } while (phyReg1 & (1 << 31)); | |
cf56e110 | 695 | |
f8d813e3 | 696 | if (phyReg1 & (1 << 2)) { |
cf56e110 WD |
697 | /* Link is up */ |
698 | break; | |
f8d813e3 | 699 | } else if (mdi_flag) { |
cf56e110 WD |
700 | /* Set MDIX mode */ |
701 | *INCA_IP_AUTO_MDIX_LAN_PORTS_OUT |= (1 << INCA_IP_AUTO_MDIX_LAN_GPIO_PIN_RXTX); | |
702 | mdi_flag = 0; | |
f8d813e3 | 703 | } else { |
cf56e110 WD |
704 | /* Set MDI mode */ |
705 | *INCA_IP_AUTO_MDIX_LAN_PORTS_OUT &= ~(1 << INCA_IP_AUTO_MDIX_LAN_GPIO_PIN_RXTX); | |
706 | mdi_flag = 1; | |
707 | } | |
708 | } | |
709 | ||
f8d813e3 WD |
710 | if (!retries) { |
711 | goto Fail; | |
712 | } else { | |
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 */ | |
718 | do { | |
719 | SW_READ_REG(INCA_IP_Switch_MDIO_ACC, phyReg1); | |
720 | } while (phyReg1 & (1 << 31)); | |
721 | ||
722 | /* Auto-negotiation / Parallel detection complete | |
723 | */ | |
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 */ | |
730 | do { | |
79d696fc | 731 | SW_READ_REG(INCA_IP_Switch_MDIO_ACC, phyReg31); |
f8d813e3 WD |
732 | } while (phyReg31 & (1 << 31)); |
733 | ||
734 | switch ((phyReg31 >> 2) & 0x7) { | |
735 | case INCA_SWITCH_PHY_SPEED_10H: | |
736 | /* 10Base-T Half-duplex */ | |
737 | regEphy = 0; | |
738 | break; | |
739 | case INCA_SWITCH_PHY_SPEED_10F: | |
740 | /* 10Base-T Full-duplex */ | |
741 | regEphy = INCA_IP_Switch_EPHY_DL; | |
742 | break; | |
743 | case INCA_SWITCH_PHY_SPEED_100H: | |
744 | /* 100Base-TX Half-duplex */ | |
745 | regEphy = INCA_IP_Switch_EPHY_SL; | |
746 | break; | |
747 | case INCA_SWITCH_PHY_SPEED_100F: | |
748 | /* 100Base-TX Full-duplex */ | |
749 | regEphy = INCA_IP_Switch_EPHY_SL | INCA_IP_Switch_EPHY_DL; | |
750 | break; | |
751 | } | |
752 | ||
753 | /* In case of Auto-negotiation, | |
754 | * update the negotiated PAUSE support status | |
755 | */ | |
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 */ | |
762 | do { | |
79d696fc | 763 | SW_READ_REG(INCA_IP_Switch_MDIO_ACC, phyReg6); |
f8d813e3 WD |
764 | } while (phyReg6 & (1 << 31)); |
765 | ||
766 | /* We are Autoneg-able. | |
767 | * Is Link partner also able to autoneg? | |
768 | */ | |
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 */ | |
775 | do { | |
79d696fc | 776 | SW_READ_REG(INCA_IP_Switch_MDIO_ACC, phyReg4); |
f8d813e3 WD |
777 | } while (phyReg4 & (1 << 31)); |
778 | ||
779 | /* We advertise PAUSE capab. | |
780 | * Does link partner also advertise it? | |
781 | */ | |
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 */ | |
788 | do { | |
79d696fc | 789 | SW_READ_REG(INCA_IP_Switch_MDIO_ACC, phyReg5); |
f8d813e3 WD |
790 | } while (phyReg5 & (1 << 31)); |
791 | ||
792 | /* Link partner is PAUSE capab. | |
793 | */ | |
794 | if (phyReg5 & (1 << 10)) { | |
795 | regEphy |= INCA_IP_Switch_EPHY_PL; | |
796 | } | |
797 | } | |
798 | } | |
799 | ||
800 | } | |
801 | ||
802 | /* Link is up */ | |
803 | regEphy |= INCA_IP_Switch_EPHY_LL; | |
804 | ||
805 | SW_WRITE_REG(INCA_IP_Switch_EPHY, regEphy); | |
806 | } | |
807 | } | |
cf56e110 WD |
808 | |
809 | return 0; | |
f8d813e3 WD |
810 | |
811 | Fail: | |
812 | printf("No Link on LAN port\n"); | |
813 | return -1; | |
cf56e110 | 814 | } |
0c852a28 | 815 | #endif /* CONFIG_INCA_IP_SWITCH_AMDIX */ |
cf56e110 | 816 | |
ac6dbb85 | 817 | #endif |