blob: 4ac7491343f6332577c947b9fd19793c512b5d5e [file] [log] [blame]
Sergei Poselenovb4489622007-07-05 08:17:37 +02001/*
2 * (C) Copyright 2007
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * Author: Igor Lisitsin <igor@emcraft.com>
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
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
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#include <common.h>
27
28/*
29 * Ethernet test
30 *
31 * The Ethernet Media Access Controllers (EMAC) are tested in the
32 * internal loopback mode.
33 * The controllers are configured accordingly and several packets
34 * are transmitted. The configurable test parameters are:
35 * MIN_PACKET_LENGTH - minimum size of packet to transmit
36 * MAX_PACKET_LENGTH - maximum size of packet to transmit
37 * TEST_NUM - number of tests
38 */
39
40#ifdef CONFIG_POST
41
42#include <post.h>
43
44#if CONFIG_POST & CFG_POST_ETHER
45
46#include <asm/cache.h>
47#include <asm/io.h>
48#include <asm/processor.h>
49#include <405_mal.h>
50#include <ppc4xx_enet.h>
51#include <malloc.h>
52
53DECLARE_GLOBAL_DATA_PTR;
54
Stefan Roese7d47cee2007-10-25 12:24:59 +020055/*
56 * Get count of EMAC devices (doesn't have to be the max. possible number
57 * supported by the cpu)
58 *
59 * CONFIG_BOARD_EMAC_COUNT added so now a "dynamic" way to configure the
60 * EMAC count is possible. As it is needed for the Kilauea/Haleakala
61 * 405EX/405EXr eval board, using the same binary.
62 */
63#if defined(CONFIG_BOARD_EMAC_COUNT)
64#define LAST_EMAC_NUM board_emac_count()
65#else /* CONFIG_BOARD_EMAC_COUNT */
66#if defined(CONFIG_HAS_ETH3)
67#define LAST_EMAC_NUM 4
68#elif defined(CONFIG_HAS_ETH2)
69#define LAST_EMAC_NUM 3
70#elif defined(CONFIG_HAS_ETH1)
71#define LAST_EMAC_NUM 2
72#else
73#define LAST_EMAC_NUM 1
74#endif
75#endif /* CONFIG_BOARD_EMAC_COUNT */
76
Sergei Poselenovb4489622007-07-05 08:17:37 +020077#if defined(CONFIG_440SPE) || defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
78#define SDR0_MFR_ETH_CLK_SEL_V(n) ((0x01<<27) / (n+1))
79#endif
80
81#define MIN_PACKET_LENGTH 64
82#define MAX_PACKET_LENGTH 256
83#define TEST_NUM 1
84
85static volatile mal_desc_t tx __cacheline_aligned;
86static volatile mal_desc_t rx __cacheline_aligned;
87static char *tx_buf;
88static char *rx_buf;
89
Stefan Roese7d47cee2007-10-25 12:24:59 +020090int board_emac_count(void);
91
Sergei Poselenovb4489622007-07-05 08:17:37 +020092static void ether_post_init (int devnum, int hw_addr)
93{
94 int i;
Sergei Poselenovb4489622007-07-05 08:17:37 +020095#if defined(CONFIG_440GX) || \
96 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
97 defined(CONFIG_440SP) || defined(CONFIG_440SPE)
Stefan Roesec5a172a2007-08-14 14:41:55 +020098 unsigned mode_reg;
Sergei Poselenovb4489622007-07-05 08:17:37 +020099 sys_info_t sysinfo;
100#endif
101#if defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || defined(CONFIG_440SPE)
102 unsigned long mfr;
103#endif
104
105#if defined(CONFIG_440GX) || \
106 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
107 defined(CONFIG_440SP) || defined(CONFIG_440SPE)
108 /* Need to get the OPB frequency so we can access the PHY */
109 get_sys_info (&sysinfo);
110#endif
111
112#if defined(CONFIG_440SPE) || defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
113 /* provide clocks for EMAC internal loopback */
114 mfsdr (sdr_mfr, mfr);
115 mfr |= SDR0_MFR_ETH_CLK_SEL_V(devnum);
116 mtsdr (sdr_mfr, mfr);
117 sync ();
118#endif
119 /* reset emac */
Matthias Fuchsc29d2d32007-12-14 11:20:33 +0100120 out_be32 ((void*)(EMAC_M0 + hw_addr), EMAC_M0_SRST);
Sergei Poselenovb4489622007-07-05 08:17:37 +0200121 sync ();
122
123 for (i = 0;; i++) {
Matthias Fuchsc29d2d32007-12-14 11:20:33 +0100124 if (!(in_be32 ((void*)(EMAC_M0 + hw_addr)) & EMAC_M0_SRST))
Sergei Poselenovb4489622007-07-05 08:17:37 +0200125 break;
126 if (i >= 1000) {
127 printf ("Timeout resetting EMAC\n");
128 break;
129 }
130 udelay (1000);
131 }
132#if defined(CONFIG_440GX) || \
133 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
134 defined(CONFIG_440SP) || defined(CONFIG_440SPE)
135 /* Whack the M1 register */
136 mode_reg = 0x0;
137 if (sysinfo.freqOPB <= 50000000);
138 else if (sysinfo.freqOPB <= 66666667)
139 mode_reg |= EMAC_M1_OBCI_66;
140 else if (sysinfo.freqOPB <= 83333333)
141 mode_reg |= EMAC_M1_OBCI_83;
142 else if (sysinfo.freqOPB <= 100000000)
143 mode_reg |= EMAC_M1_OBCI_100;
144 else
145 mode_reg |= EMAC_M1_OBCI_GT100;
146
Matthias Fuchsc29d2d32007-12-14 11:20:33 +0100147 out_be32 ((void*)(EMAC_M1 + hw_addr), mode_reg);
Sergei Poselenovb4489622007-07-05 08:17:37 +0200148
149#endif /* defined(CONFIG_440GX) || defined(CONFIG_440SP) */
150
151 /* set the Mal configuration reg */
152#if defined(CONFIG_440GX) || \
153 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
154 defined(CONFIG_440SP) || defined(CONFIG_440SPE)
155 mtdcr (malmcr, MAL_CR_PLBB | MAL_CR_OPBBL | MAL_CR_LEA |
156 MAL_CR_PLBLT_DEFAULT | 0x00330000);
157#else
158 mtdcr (malmcr, MAL_CR_PLBB | MAL_CR_OPBBL | MAL_CR_LEA | MAL_CR_PLBLT_DEFAULT);
159 /* Errata 1.12: MAL_1 -- Disable MAL bursting */
160 if (get_pvr() == PVR_440GP_RB) {
161 mtdcr (malmcr, mfdcr(malmcr) & ~MAL_CR_PLBB);
162 }
163#endif
164 /* setup buffer descriptors */
165 tx.ctrl = MAL_TX_CTRL_WRAP;
166 tx.data_len = 0;
167 tx.data_ptr = (char*)L1_CACHE_ALIGN((u32)tx_buf);
168
169 rx.ctrl = MAL_TX_CTRL_WRAP | MAL_RX_CTRL_EMPTY;
170 rx.data_len = 0;
171 rx.data_ptr = (char*)L1_CACHE_ALIGN((u32)rx_buf);
Stefan Roesef71b2882007-10-31 20:47:26 +0100172 flush_dcache_range((u32)&rx, (u32)&rx + sizeof(mal_desc_t));
173 flush_dcache_range((u32)&tx, (u32)&tx + sizeof(mal_desc_t));
Sergei Poselenovb4489622007-07-05 08:17:37 +0200174
175 switch (devnum) {
176 case 1:
177 /* setup MAL tx & rx channel pointers */
178#if defined (CONFIG_405EP) || defined (CONFIG_440EP) || defined (CONFIG_440GR)
179 mtdcr (maltxctp2r, &tx);
180#else
181 mtdcr (maltxctp1r, &tx);
182#endif
183#if defined(CONFIG_440)
184 mtdcr (maltxbattr, 0x0);
185 mtdcr (malrxbattr, 0x0);
186#endif
187 mtdcr (malrxctp1r, &rx);
188 /* set RX buffer size */
189 mtdcr (malrcbs1, PKTSIZE_ALIGN / 16);
190 break;
191 case 0:
192 default:
193 /* setup MAL tx & rx channel pointers */
194#if defined(CONFIG_440)
195 mtdcr (maltxbattr, 0x0);
196 mtdcr (malrxbattr, 0x0);
197#endif
198 mtdcr (maltxctp0r, &tx);
199 mtdcr (malrxctp0r, &rx);
200 /* set RX buffer size */
201 mtdcr (malrcbs0, PKTSIZE_ALIGN / 16);
202 break;
203 }
204
205 /* Enable MAL transmit and receive channels */
206#if defined(CONFIG_405EP) || defined(CONFIG_440EP) || defined(CONFIG_440GR)
207 mtdcr (maltxcasr, (MAL_TXRX_CASR >> (devnum*2)));
208#else
209 mtdcr (maltxcasr, (MAL_TXRX_CASR >> devnum));
210#endif
211 mtdcr (malrxcasr, (MAL_TXRX_CASR >> devnum));
212
213 /* set internal loopback mode */
Stefan Roesec5a172a2007-08-14 14:41:55 +0200214#ifdef CFG_POST_ETHER_EXT_LOOPBACK
Matthias Fuchsc29d2d32007-12-14 11:20:33 +0100215 out_be32 ((void*)(EMAC_M1 + hw_addr), EMAC_M1_FDE | 0 |
216 EMAC_M1_RFS_4K | EMAC_M1_TX_FIFO_2K |
217 EMAC_M1_MF_100MBPS | EMAC_M1_IST |
218 in_be32 ((void*)(EMAC_M1 + hw_addr)));
Stefan Roesec5a172a2007-08-14 14:41:55 +0200219#else
Matthias Fuchsc29d2d32007-12-14 11:20:33 +0100220 out_be32 ((void*)(EMAC_M1 + hw_addr), EMAC_M1_FDE | EMAC_M1_ILE |
221 EMAC_M1_RFS_4K | EMAC_M1_TX_FIFO_2K |
222 EMAC_M1_MF_100MBPS | EMAC_M1_IST |
223 in_be32 ((void*)(EMAC_M1 + hw_addr)));
Stefan Roesec5a172a2007-08-14 14:41:55 +0200224#endif
Sergei Poselenovb4489622007-07-05 08:17:37 +0200225
226 /* set transmit enable & receive enable */
Matthias Fuchsc29d2d32007-12-14 11:20:33 +0100227 out_be32 ((void*)(EMAC_M0 + hw_addr), EMAC_M0_TXE | EMAC_M0_RXE);
Sergei Poselenovb4489622007-07-05 08:17:37 +0200228
229 /* enable broadcast address */
Matthias Fuchsc29d2d32007-12-14 11:20:33 +0100230 out_be32 ((void*)(EMAC_RXM + hw_addr), EMAC_RMR_BAE);
Sergei Poselenovb4489622007-07-05 08:17:37 +0200231
232 /* set transmit request threshold register */
Matthias Fuchsc29d2d32007-12-14 11:20:33 +0100233 out_be32 ((void*)(EMAC_TRTR + hw_addr), 0x18000000); /* 256 byte threshold */
Sergei Poselenovb4489622007-07-05 08:17:37 +0200234
235 /* set receive low/high water mark register */
236#if defined(CONFIG_440)
237 /* 440s has a 64 byte burst length */
Matthias Fuchsc29d2d32007-12-14 11:20:33 +0100238 out_be32 ((void*)(EMAC_RX_HI_LO_WMARK + hw_addr), 0x80009000);
Sergei Poselenovb4489622007-07-05 08:17:37 +0200239#else
240 /* 405s have a 16 byte burst length */
Matthias Fuchsc29d2d32007-12-14 11:20:33 +0100241 out_be32 ((void*)(EMAC_RX_HI_LO_WMARK + hw_addr), 0x0f002000);
Sergei Poselenovb4489622007-07-05 08:17:37 +0200242#endif /* defined(CONFIG_440) */
Matthias Fuchsc29d2d32007-12-14 11:20:33 +0100243 out_be32 ((void*)(EMAC_TXM1 + hw_addr), 0xf8640000);
Sergei Poselenovb4489622007-07-05 08:17:37 +0200244
245 /* Set fifo limit entry in tx mode 0 */
Matthias Fuchsc29d2d32007-12-14 11:20:33 +0100246 out_be32 ((void*)(EMAC_TXM0 + hw_addr), 0x00000003);
Sergei Poselenovb4489622007-07-05 08:17:37 +0200247 /* Frame gap set */
Matthias Fuchsc29d2d32007-12-14 11:20:33 +0100248 out_be32 ((void*)(EMAC_I_FRAME_GAP_REG + hw_addr), 0x00000008);
Sergei Poselenovb4489622007-07-05 08:17:37 +0200249 sync ();
250}
251
252static void ether_post_halt (int devnum, int hw_addr)
253{
254 int i = 0;
255#if defined(CONFIG_440SPE) || defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
256 unsigned long mfr;
257#endif
258
259 /* 1st reset MAL channel */
260 /* Note: writing a 0 to a channel has no effect */
261#if defined(CONFIG_405EP) || defined(CONFIG_440EP) || defined(CONFIG_440GR)
262 mtdcr (maltxcarr, MAL_TXRX_CASR >> (devnum * 2));
263#else
264 mtdcr (maltxcarr, MAL_TXRX_CASR >> devnum);
265#endif
266 mtdcr (malrxcarr, MAL_TXRX_CASR >> devnum);
267
268 /* wait for reset */
269 while (mfdcr (malrxcasr) & (MAL_TXRX_CASR >> devnum)) {
270 if (i++ >= 1000)
271 break;
272 udelay (1000);
273 }
274 /* emac reset */
Matthias Fuchsc29d2d32007-12-14 11:20:33 +0100275 out_be32 ((void*)(EMAC_M0 + hw_addr), EMAC_M0_SRST);
Sergei Poselenovb4489622007-07-05 08:17:37 +0200276
277#if defined(CONFIG_440SPE) || defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
278 /* remove clocks for EMAC internal loopback */
279 mfsdr (sdr_mfr, mfr);
280 mfr &= ~SDR0_MFR_ETH_CLK_SEL_V(devnum);
281 mtsdr (sdr_mfr, mfr);
282#endif
283}
284
285static void ether_post_send (int devnum, int hw_addr, void *packet, int length)
286{
287 int i = 0;
288
289 while (tx.ctrl & MAL_TX_CTRL_READY) {
290 if (i++ > 100) {
291 printf ("TX timeout\n");
292 return;
293 }
294 udelay (1000);
Stefan Roesef71b2882007-10-31 20:47:26 +0100295 invalidate_dcache_range((u32)&tx, (u32)&tx + sizeof(mal_desc_t));
Sergei Poselenovb4489622007-07-05 08:17:37 +0200296 }
297 tx.ctrl = MAL_TX_CTRL_READY | MAL_TX_CTRL_WRAP | MAL_TX_CTRL_LAST |
298 EMAC_TX_CTRL_GFCS | EMAC_TX_CTRL_GP;
299 tx.data_len = length;
300 memcpy (tx.data_ptr, packet, length);
Stefan Roesef71b2882007-10-31 20:47:26 +0100301 flush_dcache_range((u32)&tx, (u32)&tx + sizeof(mal_desc_t));
302 flush_dcache_range((u32)tx.data_ptr, (u32)tx.data_ptr + length);
Sergei Poselenovb4489622007-07-05 08:17:37 +0200303 sync ();
304
Matthias Fuchsc29d2d32007-12-14 11:20:33 +0100305 out_be32 ((void*)(EMAC_TXM0 + hw_addr), in_be32 ((void*)(EMAC_TXM0 + hw_addr)) | EMAC_TXM0_GNP0);
Sergei Poselenovb4489622007-07-05 08:17:37 +0200306 sync ();
307}
308
309static int ether_post_recv (int devnum, int hw_addr, void *packet, int max_length)
310{
311 int length;
312 int i = 0;
313
314 while (rx.ctrl & MAL_RX_CTRL_EMPTY) {
315 if (i++ > 100) {
316 printf ("RX timeout\n");
317 return 0;
318 }
319 udelay (1000);
Stefan Roesef71b2882007-10-31 20:47:26 +0100320 invalidate_dcache_range((u32)&rx, (u32)&rx + sizeof(mal_desc_t));
Sergei Poselenovb4489622007-07-05 08:17:37 +0200321 }
322 length = rx.data_len - 4;
Stefan Roesef71b2882007-10-31 20:47:26 +0100323 if (length <= max_length) {
324 invalidate_dcache_range((u32)rx.data_ptr, (u32)rx.data_ptr + length);
Sergei Poselenovb4489622007-07-05 08:17:37 +0200325 memcpy(packet, rx.data_ptr, length);
Stefan Roesef71b2882007-10-31 20:47:26 +0100326 }
Sergei Poselenovb4489622007-07-05 08:17:37 +0200327 sync ();
328
329 rx.ctrl |= MAL_RX_CTRL_EMPTY;
Stefan Roesef71b2882007-10-31 20:47:26 +0100330 flush_dcache_range((u32)&rx, (u32)&rx + sizeof(mal_desc_t));
Sergei Poselenovb4489622007-07-05 08:17:37 +0200331 sync ();
332
333 return length;
334}
335
336 /*
337 * Test routines
338 */
339
340static void packet_fill (char *packet, int length)
341{
342 char c = (char) length;
343 int i;
344
345 /* set up ethernet header */
346 memset (packet, 0xff, 14);
347
348 for (i = 14; i < length; i++) {
349 packet[i] = c++;
350 }
351}
352
353static int packet_check (char *packet, int length)
354{
355 char c = (char) length;
356 int i;
357
358 for (i = 14; i < length; i++) {
359 if (packet[i] != c++)
360 return -1;
361 }
362
363 return 0;
364}
365
366static int test_ctlr (int devnum, int hw_addr)
367{
368 int res = -1;
369 char packet_send[MAX_PACKET_LENGTH];
370 char packet_recv[MAX_PACKET_LENGTH];
371 int length;
372 int i;
373 int l;
374
375 ether_post_init (devnum, hw_addr);
376
377 for (i = 0; i < TEST_NUM; i++) {
378 for (l = MIN_PACKET_LENGTH; l <= MAX_PACKET_LENGTH; l++) {
379 packet_fill (packet_send, l);
380
381 ether_post_send (devnum, hw_addr, packet_send, l);
382
383 length = ether_post_recv (devnum, hw_addr, packet_recv,
384 sizeof (packet_recv));
385
386 if (length != l || packet_check (packet_recv, length) < 0) {
387 goto Done;
388 }
389 }
390 }
391
392 res = 0;
393
394Done:
395
396 ether_post_halt (devnum, hw_addr);
397
398 if (res != 0) {
399 post_log ("EMAC%d test failed\n", devnum);
400 }
401
402 return res;
403}
404
405int ether_post_test (int flags)
406{
407 int res = 0;
Stefan Roese7d47cee2007-10-25 12:24:59 +0200408 int i;
Sergei Poselenovb4489622007-07-05 08:17:37 +0200409
410 /* Allocate tx & rx packet buffers */
411 tx_buf = malloc (PKTSIZE_ALIGN + CFG_CACHELINE_SIZE);
412 rx_buf = malloc (PKTSIZE_ALIGN + CFG_CACHELINE_SIZE);
413
414 if (!tx_buf || !rx_buf) {
415 printf ("Failed to allocate packet buffers\n");
416 res = -1;
417 goto out_free;
418 }
419
Stefan Roese7d47cee2007-10-25 12:24:59 +0200420 for (i = 0; i < LAST_EMAC_NUM; i++) {
421 if (test_ctlr (i, i*0x100))
422 res = -1;
423 }
Sergei Poselenovb4489622007-07-05 08:17:37 +0200424
425out_free:
426 free (tx_buf);
427 free (rx_buf);
428
429 return res;
430}
431
432#endif /* CONFIG_POST & CFG_POST_ETHER */
433#endif /* CONFIG_POST */