]> git.ipfire.org Git - people/ms/u-boot.git/blob - post/cpu/ppc4xx/ether.c
Merge with git://www.denx.de/git/u-boot.git
[people/ms/u-boot.git] / post / cpu / ppc4xx / ether.c
1 /*
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
53 DECLARE_GLOBAL_DATA_PTR;
54
55 #if defined(CONFIG_440SPE) || defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
56 #define SDR0_MFR_ETH_CLK_SEL_V(n) ((0x01<<27) / (n+1))
57 #endif
58
59 #define MIN_PACKET_LENGTH 64
60 #define MAX_PACKET_LENGTH 256
61 #define TEST_NUM 1
62
63 static volatile mal_desc_t tx __cacheline_aligned;
64 static volatile mal_desc_t rx __cacheline_aligned;
65 static char *tx_buf;
66 static char *rx_buf;
67
68 static void ether_post_init (int devnum, int hw_addr)
69 {
70 int i;
71 #if defined(CONFIG_440GX) || \
72 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
73 defined(CONFIG_440SP) || defined(CONFIG_440SPE)
74 unsigned mode_reg;
75 sys_info_t sysinfo;
76 #endif
77 #if defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || defined(CONFIG_440SPE)
78 unsigned long mfr;
79 #endif
80
81 #if defined(CONFIG_440GX) || \
82 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
83 defined(CONFIG_440SP) || defined(CONFIG_440SPE)
84 /* Need to get the OPB frequency so we can access the PHY */
85 get_sys_info (&sysinfo);
86 #endif
87
88 #if defined(CONFIG_440SPE) || defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
89 /* provide clocks for EMAC internal loopback */
90 mfsdr (sdr_mfr, mfr);
91 mfr |= SDR0_MFR_ETH_CLK_SEL_V(devnum);
92 mtsdr (sdr_mfr, mfr);
93 sync ();
94 #endif
95 /* reset emac */
96 out32 (EMAC_M0 + hw_addr, EMAC_M0_SRST);
97 sync ();
98
99 for (i = 0;; i++) {
100 if (!(in32 (EMAC_M0 + hw_addr) & EMAC_M0_SRST))
101 break;
102 if (i >= 1000) {
103 printf ("Timeout resetting EMAC\n");
104 break;
105 }
106 udelay (1000);
107 }
108 #if defined(CONFIG_440GX) || \
109 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
110 defined(CONFIG_440SP) || defined(CONFIG_440SPE)
111 /* Whack the M1 register */
112 mode_reg = 0x0;
113 if (sysinfo.freqOPB <= 50000000);
114 else if (sysinfo.freqOPB <= 66666667)
115 mode_reg |= EMAC_M1_OBCI_66;
116 else if (sysinfo.freqOPB <= 83333333)
117 mode_reg |= EMAC_M1_OBCI_83;
118 else if (sysinfo.freqOPB <= 100000000)
119 mode_reg |= EMAC_M1_OBCI_100;
120 else
121 mode_reg |= EMAC_M1_OBCI_GT100;
122
123 out32 (EMAC_M1 + hw_addr, mode_reg);
124
125 #endif /* defined(CONFIG_440GX) || defined(CONFIG_440SP) */
126
127 /* set the Mal configuration reg */
128 #if defined(CONFIG_440GX) || \
129 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
130 defined(CONFIG_440SP) || defined(CONFIG_440SPE)
131 mtdcr (malmcr, MAL_CR_PLBB | MAL_CR_OPBBL | MAL_CR_LEA |
132 MAL_CR_PLBLT_DEFAULT | 0x00330000);
133 #else
134 mtdcr (malmcr, MAL_CR_PLBB | MAL_CR_OPBBL | MAL_CR_LEA | MAL_CR_PLBLT_DEFAULT);
135 /* Errata 1.12: MAL_1 -- Disable MAL bursting */
136 if (get_pvr() == PVR_440GP_RB) {
137 mtdcr (malmcr, mfdcr(malmcr) & ~MAL_CR_PLBB);
138 }
139 #endif
140 /* setup buffer descriptors */
141 tx.ctrl = MAL_TX_CTRL_WRAP;
142 tx.data_len = 0;
143 tx.data_ptr = (char*)L1_CACHE_ALIGN((u32)tx_buf);
144
145 rx.ctrl = MAL_TX_CTRL_WRAP | MAL_RX_CTRL_EMPTY;
146 rx.data_len = 0;
147 rx.data_ptr = (char*)L1_CACHE_ALIGN((u32)rx_buf);
148
149 switch (devnum) {
150 case 1:
151 /* setup MAL tx & rx channel pointers */
152 #if defined (CONFIG_405EP) || defined (CONFIG_440EP) || defined (CONFIG_440GR)
153 mtdcr (maltxctp2r, &tx);
154 #else
155 mtdcr (maltxctp1r, &tx);
156 #endif
157 #if defined(CONFIG_440)
158 mtdcr (maltxbattr, 0x0);
159 mtdcr (malrxbattr, 0x0);
160 #endif
161 mtdcr (malrxctp1r, &rx);
162 /* set RX buffer size */
163 mtdcr (malrcbs1, PKTSIZE_ALIGN / 16);
164 break;
165 case 0:
166 default:
167 /* setup MAL tx & rx channel pointers */
168 #if defined(CONFIG_440)
169 mtdcr (maltxbattr, 0x0);
170 mtdcr (malrxbattr, 0x0);
171 #endif
172 mtdcr (maltxctp0r, &tx);
173 mtdcr (malrxctp0r, &rx);
174 /* set RX buffer size */
175 mtdcr (malrcbs0, PKTSIZE_ALIGN / 16);
176 break;
177 }
178
179 /* Enable MAL transmit and receive channels */
180 #if defined(CONFIG_405EP) || defined(CONFIG_440EP) || defined(CONFIG_440GR)
181 mtdcr (maltxcasr, (MAL_TXRX_CASR >> (devnum*2)));
182 #else
183 mtdcr (maltxcasr, (MAL_TXRX_CASR >> devnum));
184 #endif
185 mtdcr (malrxcasr, (MAL_TXRX_CASR >> devnum));
186
187 /* set internal loopback mode */
188 #ifdef CFG_POST_ETHER_EXT_LOOPBACK
189 out32 (EMAC_M1 + hw_addr, EMAC_M1_FDE | 0 |
190 EMAC_M1_RFS_4K | EMAC_M1_TX_FIFO_2K |
191 EMAC_M1_MF_100MBPS | EMAC_M1_IST |
192 in32 (EMAC_M1));
193 #else
194 out32 (EMAC_M1 + hw_addr, EMAC_M1_FDE | EMAC_M1_ILE |
195 EMAC_M1_RFS_4K | EMAC_M1_TX_FIFO_2K |
196 EMAC_M1_MF_100MBPS | EMAC_M1_IST |
197 in32 (EMAC_M1));
198 #endif
199
200 /* set transmit enable & receive enable */
201 out32 (EMAC_M0 + hw_addr, EMAC_M0_TXE | EMAC_M0_RXE);
202
203 /* enable broadcast address */
204 out32 (EMAC_RXM + hw_addr, EMAC_RMR_BAE);
205
206 /* set transmit request threshold register */
207 out32 (EMAC_TRTR + hw_addr, 0x18000000); /* 256 byte threshold */
208
209 /* set receive low/high water mark register */
210 #if defined(CONFIG_440)
211 /* 440s has a 64 byte burst length */
212 out32 (EMAC_RX_HI_LO_WMARK + hw_addr, 0x80009000);
213 #else
214 /* 405s have a 16 byte burst length */
215 out32 (EMAC_RX_HI_LO_WMARK + hw_addr, 0x0f002000);
216 #endif /* defined(CONFIG_440) */
217 out32 (EMAC_TXM1 + hw_addr, 0xf8640000);
218
219 /* Set fifo limit entry in tx mode 0 */
220 out32 (EMAC_TXM0 + hw_addr, 0x00000003);
221 /* Frame gap set */
222 out32 (EMAC_I_FRAME_GAP_REG + hw_addr, 0x00000008);
223 sync ();
224 }
225
226 static void ether_post_halt (int devnum, int hw_addr)
227 {
228 int i = 0;
229 #if defined(CONFIG_440SPE) || defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
230 unsigned long mfr;
231 #endif
232
233 /* 1st reset MAL channel */
234 /* Note: writing a 0 to a channel has no effect */
235 #if defined(CONFIG_405EP) || defined(CONFIG_440EP) || defined(CONFIG_440GR)
236 mtdcr (maltxcarr, MAL_TXRX_CASR >> (devnum * 2));
237 #else
238 mtdcr (maltxcarr, MAL_TXRX_CASR >> devnum);
239 #endif
240 mtdcr (malrxcarr, MAL_TXRX_CASR >> devnum);
241
242 /* wait for reset */
243 while (mfdcr (malrxcasr) & (MAL_TXRX_CASR >> devnum)) {
244 if (i++ >= 1000)
245 break;
246 udelay (1000);
247 }
248 /* emac reset */
249 out32 (EMAC_M0 + hw_addr, EMAC_M0_SRST);
250
251 #if defined(CONFIG_440SPE) || defined(CONFIG_440EPX) || defined(CONFIG_440GRX)
252 /* remove clocks for EMAC internal loopback */
253 mfsdr (sdr_mfr, mfr);
254 mfr &= ~SDR0_MFR_ETH_CLK_SEL_V(devnum);
255 mtsdr (sdr_mfr, mfr);
256 #endif
257 }
258
259 static void ether_post_send (int devnum, int hw_addr, void *packet, int length)
260 {
261 int i = 0;
262
263 while (tx.ctrl & MAL_TX_CTRL_READY) {
264 if (i++ > 100) {
265 printf ("TX timeout\n");
266 return;
267 }
268 udelay (1000);
269 }
270 tx.ctrl = MAL_TX_CTRL_READY | MAL_TX_CTRL_WRAP | MAL_TX_CTRL_LAST |
271 EMAC_TX_CTRL_GFCS | EMAC_TX_CTRL_GP;
272 tx.data_len = length;
273 memcpy (tx.data_ptr, packet, length);
274 sync ();
275
276 out32 (EMAC_TXM0 + hw_addr, in32 (EMAC_TXM0 + hw_addr) | EMAC_TXM0_GNP0);
277 sync ();
278 }
279
280 static int ether_post_recv (int devnum, int hw_addr, void *packet, int max_length)
281 {
282 int length;
283 int i = 0;
284
285 while (rx.ctrl & MAL_RX_CTRL_EMPTY) {
286 if (i++ > 100) {
287 printf ("RX timeout\n");
288 return 0;
289 }
290 udelay (1000);
291 }
292 length = rx.data_len - 4;
293 if (length <= max_length)
294 memcpy(packet, rx.data_ptr, length);
295 sync ();
296
297 rx.ctrl |= MAL_RX_CTRL_EMPTY;
298 sync ();
299
300 return length;
301 }
302
303 /*
304 * Test routines
305 */
306
307 static void packet_fill (char *packet, int length)
308 {
309 char c = (char) length;
310 int i;
311
312 /* set up ethernet header */
313 memset (packet, 0xff, 14);
314
315 for (i = 14; i < length; i++) {
316 packet[i] = c++;
317 }
318 }
319
320 static int packet_check (char *packet, int length)
321 {
322 char c = (char) length;
323 int i;
324
325 for (i = 14; i < length; i++) {
326 if (packet[i] != c++)
327 return -1;
328 }
329
330 return 0;
331 }
332
333 static int test_ctlr (int devnum, int hw_addr)
334 {
335 int res = -1;
336 char packet_send[MAX_PACKET_LENGTH];
337 char packet_recv[MAX_PACKET_LENGTH];
338 int length;
339 int i;
340 int l;
341
342 ether_post_init (devnum, hw_addr);
343
344 for (i = 0; i < TEST_NUM; i++) {
345 for (l = MIN_PACKET_LENGTH; l <= MAX_PACKET_LENGTH; l++) {
346 packet_fill (packet_send, l);
347
348 ether_post_send (devnum, hw_addr, packet_send, l);
349
350 length = ether_post_recv (devnum, hw_addr, packet_recv,
351 sizeof (packet_recv));
352
353 if (length != l || packet_check (packet_recv, length) < 0) {
354 goto Done;
355 }
356 }
357 }
358
359 res = 0;
360
361 Done:
362
363 ether_post_halt (devnum, hw_addr);
364
365 if (res != 0) {
366 post_log ("EMAC%d test failed\n", devnum);
367 }
368
369 return res;
370 }
371
372 int ether_post_test (int flags)
373 {
374 int res = 0;
375
376 /* Allocate tx & rx packet buffers */
377 tx_buf = malloc (PKTSIZE_ALIGN + CFG_CACHELINE_SIZE);
378 rx_buf = malloc (PKTSIZE_ALIGN + CFG_CACHELINE_SIZE);
379
380 if (!tx_buf || !rx_buf) {
381 printf ("Failed to allocate packet buffers\n");
382 res = -1;
383 goto out_free;
384 }
385
386 /* EMAC0 */
387 if (test_ctlr (0, 0))
388 res = -1;
389
390 /* EMAC1 */
391 if (test_ctlr (1, 0x100))
392 res = -1;
393
394 out_free:
395 free (tx_buf);
396 free (rx_buf);
397
398 return res;
399 }
400
401 #endif /* CONFIG_POST & CFG_POST_ETHER */
402 #endif /* CONFIG_POST */