Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | |
| 10 | /* |
| 11 | * Ethernet test |
| 12 | * |
| 13 | * The Serial Communication Controllers (SCC) listed in ctlr_list array below |
| 14 | * are tested in the loopback ethernet mode. |
| 15 | * The controllers are configured accordingly and several packets |
| 16 | * are transmitted. The configurable test parameters are: |
| 17 | * MIN_PACKET_LENGTH - minimum size of packet to transmit |
| 18 | * MAX_PACKET_LENGTH - maximum size of packet to transmit |
| 19 | * TEST_NUM - number of tests |
| 20 | */ |
| 21 | |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 22 | #include <post.h> |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 23 | #if CONFIG_POST & CONFIG_SYS_POST_ETHER |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 24 | #if defined(CONFIG_8xx) |
| 25 | #include <commproc.h> |
| 26 | #elif defined(CONFIG_MPC8260) |
| 27 | #include <asm/cpm_8260.h> |
| 28 | #else |
| 29 | #error "Apparently a bad configuration, please fix." |
| 30 | #endif |
| 31 | |
| 32 | #include <command.h> |
| 33 | #include <net.h> |
| 34 | #include <serial.h> |
| 35 | |
| 36 | DECLARE_GLOBAL_DATA_PTR; |
| 37 | |
| 38 | #define MIN_PACKET_LENGTH 64 |
| 39 | #define MAX_PACKET_LENGTH 256 |
| 40 | #define TEST_NUM 1 |
| 41 | |
| 42 | #define CTLR_SCC 0 |
| 43 | |
| 44 | extern void spi_init_f (void); |
| 45 | extern void spi_init_r (void); |
| 46 | |
| 47 | /* The list of controllers to test */ |
| 48 | #if defined(CONFIG_MPC823) |
| 49 | static int ctlr_list[][2] = { {CTLR_SCC, 1} }; |
| 50 | #else |
| 51 | static int ctlr_list[][2] = { }; |
| 52 | #endif |
| 53 | |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 54 | static struct { |
| 55 | void (*init) (int index); |
| 56 | void (*halt) (int index); |
| 57 | int (*send) (int index, volatile void *packet, int length); |
| 58 | int (*recv) (int index, void *packet, int length); |
| 59 | } ctlr_proc[1]; |
| 60 | |
| 61 | static char *ctlr_name[1] = { "SCC" }; |
| 62 | |
| 63 | /* Ethernet Transmit and Receive Buffers */ |
| 64 | #define DBUF_LENGTH 1520 |
| 65 | |
| 66 | #define TX_BUF_CNT 2 |
| 67 | |
| 68 | #define TOUT_LOOP 100 |
| 69 | |
| 70 | static char txbuf[DBUF_LENGTH]; |
| 71 | |
| 72 | static uint rxIdx; /* index of the current RX buffer */ |
| 73 | static uint txIdx; /* index of the current TX buffer */ |
| 74 | |
| 75 | /* |
| 76 | * SCC Ethernet Tx and Rx buffer descriptors allocated at the |
| 77 | * immr->udata_bd address on Dual-Port RAM |
| 78 | * Provide for Double Buffering |
| 79 | */ |
| 80 | |
| 81 | typedef volatile struct CommonBufferDescriptor { |
| 82 | cbd_t rxbd[PKTBUFSRX]; /* Rx BD */ |
| 83 | cbd_t txbd[TX_BUF_CNT]; /* Tx BD */ |
| 84 | } RTXBD; |
| 85 | |
| 86 | static RTXBD *rtx; |
| 87 | |
| 88 | /* |
| 89 | * SCC callbacks |
| 90 | */ |
| 91 | |
| 92 | static void scc_init (int scc_index) |
| 93 | { |
Mike Frysinger | 6bacfa6 | 2009-02-11 19:18:41 -0500 | [diff] [blame] | 94 | uchar ea[6]; |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 95 | |
Wolfgang Denk | 97b05d7 | 2009-03-28 16:17:29 +0100 | [diff] [blame] | 96 | static int proff[] = { |
| 97 | PROFF_SCC1, |
| 98 | PROFF_SCC2, |
| 99 | PROFF_SCC3, |
| 100 | PROFF_SCC4, |
| 101 | }; |
| 102 | static unsigned int cpm_cr[] = { |
| 103 | CPM_CR_CH_SCC1, |
| 104 | CPM_CR_CH_SCC2, |
| 105 | CPM_CR_CH_SCC3, |
| 106 | CPM_CR_CH_SCC4, |
| 107 | }; |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 108 | |
| 109 | int i; |
| 110 | scc_enet_t *pram_ptr; |
| 111 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 112 | volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR; |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 113 | |
| 114 | immr->im_cpm.cp_scc[scc_index].scc_gsmrl &= |
| 115 | ~(SCC_GSMRL_ENR | SCC_GSMRL_ENT); |
| 116 | |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 117 | pram_ptr = (scc_enet_t *) & (immr->im_cpm.cp_dparam[proff[scc_index]]); |
| 118 | |
| 119 | rxIdx = 0; |
| 120 | txIdx = 0; |
| 121 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 122 | #ifdef CONFIG_SYS_ALLOC_DPRAM |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 123 | rtx = (RTXBD *) (immr->im_cpm.cp_dpmem + |
| 124 | dpram_alloc_align (sizeof (RTXBD), 8)); |
| 125 | #else |
| 126 | rtx = (RTXBD *) (immr->im_cpm.cp_dpmem + CPM_SCC_BASE); |
| 127 | #endif |
| 128 | |
| 129 | #if 0 |
| 130 | |
| 131 | #if (defined(PA_ENET_RXD) && defined(PA_ENET_TXD)) |
| 132 | /* Configure port A pins for Txd and Rxd. |
| 133 | */ |
| 134 | immr->im_ioport.iop_papar |= (PA_ENET_RXD | PA_ENET_TXD); |
| 135 | immr->im_ioport.iop_padir &= ~(PA_ENET_RXD | PA_ENET_TXD); |
| 136 | immr->im_ioport.iop_paodr &= ~PA_ENET_TXD; |
| 137 | #elif (defined(PB_ENET_RXD) && defined(PB_ENET_TXD)) |
| 138 | /* Configure port B pins for Txd and Rxd. |
| 139 | */ |
| 140 | immr->im_cpm.cp_pbpar |= (PB_ENET_RXD | PB_ENET_TXD); |
| 141 | immr->im_cpm.cp_pbdir &= ~(PB_ENET_RXD | PB_ENET_TXD); |
| 142 | immr->im_cpm.cp_pbodr &= ~PB_ENET_TXD; |
| 143 | #else |
| 144 | #error Configuration Error: exactly ONE of PA_ENET_[RT]XD, PB_ENET_[RT]XD must be defined |
| 145 | #endif |
| 146 | |
| 147 | #if defined(PC_ENET_LBK) |
| 148 | /* Configure port C pins to disable External Loopback |
| 149 | */ |
| 150 | immr->im_ioport.iop_pcpar &= ~PC_ENET_LBK; |
| 151 | immr->im_ioport.iop_pcdir |= PC_ENET_LBK; |
| 152 | immr->im_ioport.iop_pcso &= ~PC_ENET_LBK; |
| 153 | immr->im_ioport.iop_pcdat &= ~PC_ENET_LBK; /* Disable Loopback */ |
| 154 | #endif /* PC_ENET_LBK */ |
| 155 | |
| 156 | /* Configure port C pins to enable CLSN and RENA. |
| 157 | */ |
| 158 | immr->im_ioport.iop_pcpar &= ~(PC_ENET_CLSN | PC_ENET_RENA); |
| 159 | immr->im_ioport.iop_pcdir &= ~(PC_ENET_CLSN | PC_ENET_RENA); |
| 160 | immr->im_ioport.iop_pcso |= (PC_ENET_CLSN | PC_ENET_RENA); |
| 161 | |
| 162 | /* Configure port A for TCLK and RCLK. |
| 163 | */ |
| 164 | immr->im_ioport.iop_papar |= (PA_ENET_TCLK | PA_ENET_RCLK); |
| 165 | immr->im_ioport.iop_padir &= ~(PA_ENET_TCLK | PA_ENET_RCLK); |
| 166 | |
| 167 | /* |
| 168 | * Configure Serial Interface clock routing -- see section 16.7.5.3 |
| 169 | * First, clear all SCC bits to zero, then set the ones we want. |
| 170 | */ |
| 171 | |
| 172 | immr->im_cpm.cp_sicr &= ~SICR_ENET_MASK; |
| 173 | immr->im_cpm.cp_sicr |= SICR_ENET_CLKRT; |
| 174 | #else |
| 175 | /* |
| 176 | * SCC2 receive clock is BRG2 |
| 177 | * SCC2 transmit clock is BRG3 |
| 178 | */ |
| 179 | immr->im_cpm.cp_brgc2 = 0x0001000C; |
| 180 | immr->im_cpm.cp_brgc3 = 0x0001000C; |
| 181 | |
| 182 | immr->im_cpm.cp_sicr &= ~0x00003F00; |
| 183 | immr->im_cpm.cp_sicr |= 0x00000a00; |
| 184 | #endif /* 0 */ |
| 185 | |
| 186 | |
| 187 | /* |
| 188 | * Initialize SDCR -- see section 16.9.23.7 |
| 189 | * SDMA configuration register |
| 190 | */ |
| 191 | immr->im_siu_conf.sc_sdcr = 0x01; |
| 192 | |
| 193 | |
| 194 | /* |
| 195 | * Setup SCC Ethernet Parameter RAM |
| 196 | */ |
| 197 | |
| 198 | pram_ptr->sen_genscc.scc_rfcr = 0x18; /* Normal Operation and Mot byte ordering */ |
| 199 | pram_ptr->sen_genscc.scc_tfcr = 0x18; /* Mot byte ordering, Normal access */ |
| 200 | |
| 201 | pram_ptr->sen_genscc.scc_mrblr = DBUF_LENGTH; /* max. ET package len 1520 */ |
| 202 | |
| 203 | pram_ptr->sen_genscc.scc_rbase = (unsigned int) (&rtx->rxbd[0]); /* Set RXBD tbl start at Dual Port */ |
| 204 | pram_ptr->sen_genscc.scc_tbase = (unsigned int) (&rtx->txbd[0]); /* Set TXBD tbl start at Dual Port */ |
| 205 | |
| 206 | /* |
| 207 | * Setup Receiver Buffer Descriptors (13.14.24.18) |
| 208 | * Settings: |
| 209 | * Empty, Wrap |
| 210 | */ |
| 211 | |
| 212 | for (i = 0; i < PKTBUFSRX; i++) { |
| 213 | rtx->rxbd[i].cbd_sc = BD_ENET_RX_EMPTY; |
| 214 | rtx->rxbd[i].cbd_datlen = 0; /* Reset */ |
Joe Hershberger | 1fd92db | 2015-04-08 01:41:06 -0500 | [diff] [blame] | 215 | rtx->rxbd[i].cbd_bufaddr = (uint) net_rx_packets[i]; |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | rtx->rxbd[PKTBUFSRX - 1].cbd_sc |= BD_ENET_RX_WRAP; |
| 219 | |
| 220 | /* |
| 221 | * Setup Ethernet Transmitter Buffer Descriptors (13.14.24.19) |
| 222 | * Settings: |
| 223 | * Add PADs to Short FRAMES, Wrap, Last, Tx CRC |
| 224 | */ |
| 225 | |
| 226 | for (i = 0; i < TX_BUF_CNT; i++) { |
| 227 | rtx->txbd[i].cbd_sc = |
| 228 | (BD_ENET_TX_PAD | BD_ENET_TX_LAST | BD_ENET_TX_TC); |
| 229 | rtx->txbd[i].cbd_datlen = 0; /* Reset */ |
| 230 | rtx->txbd[i].cbd_bufaddr = (uint) (&txbuf[0]); |
| 231 | } |
| 232 | |
| 233 | rtx->txbd[TX_BUF_CNT - 1].cbd_sc |= BD_ENET_TX_WRAP; |
| 234 | |
| 235 | /* |
| 236 | * Enter Command: Initialize Rx Params for SCC |
| 237 | */ |
| 238 | |
| 239 | do { /* Spin until ready to issue command */ |
| 240 | __asm__ ("eieio"); |
| 241 | } while (immr->im_cpm.cp_cpcr & CPM_CR_FLG); |
| 242 | /* Issue command */ |
| 243 | immr->im_cpm.cp_cpcr = |
| 244 | ((CPM_CR_INIT_RX << 8) | (cpm_cr[scc_index] << 4) | |
| 245 | CPM_CR_FLG); |
| 246 | do { /* Spin until command processed */ |
| 247 | __asm__ ("eieio"); |
| 248 | } while (immr->im_cpm.cp_cpcr & CPM_CR_FLG); |
| 249 | |
| 250 | /* |
| 251 | * Ethernet Specific Parameter RAM |
| 252 | * see table 13-16, pg. 660, |
| 253 | * pg. 681 (example with suggested settings) |
| 254 | */ |
| 255 | |
| 256 | pram_ptr->sen_cpres = ~(0x0); /* Preset CRC */ |
| 257 | pram_ptr->sen_cmask = 0xdebb20e3; /* Constant Mask for CRC */ |
| 258 | pram_ptr->sen_crcec = 0x0; /* Error Counter CRC (unused) */ |
| 259 | pram_ptr->sen_alec = 0x0; /* Alignment Error Counter (unused) */ |
| 260 | pram_ptr->sen_disfc = 0x0; /* Discard Frame Counter (unused) */ |
| 261 | pram_ptr->sen_pads = 0x8888; /* Short Frame PAD Characters */ |
| 262 | |
| 263 | pram_ptr->sen_retlim = 15; /* Retry Limit Threshold */ |
| 264 | pram_ptr->sen_maxflr = 1518; /* MAX Frame Length Register */ |
| 265 | pram_ptr->sen_minflr = 64; /* MIN Frame Length Register */ |
| 266 | |
| 267 | pram_ptr->sen_maxd1 = DBUF_LENGTH; /* MAX DMA1 Length Register */ |
| 268 | pram_ptr->sen_maxd2 = DBUF_LENGTH; /* MAX DMA2 Length Register */ |
| 269 | |
| 270 | pram_ptr->sen_gaddr1 = 0x0; /* Group Address Filter 1 (unused) */ |
| 271 | pram_ptr->sen_gaddr2 = 0x0; /* Group Address Filter 2 (unused) */ |
| 272 | pram_ptr->sen_gaddr3 = 0x0; /* Group Address Filter 3 (unused) */ |
| 273 | pram_ptr->sen_gaddr4 = 0x0; /* Group Address Filter 4 (unused) */ |
| 274 | |
Mike Frysinger | 6bacfa6 | 2009-02-11 19:18:41 -0500 | [diff] [blame] | 275 | eth_getenv_enetaddr("ethaddr", ea); |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 276 | pram_ptr->sen_paddrh = (ea[5] << 8) + ea[4]; |
| 277 | pram_ptr->sen_paddrm = (ea[3] << 8) + ea[2]; |
| 278 | pram_ptr->sen_paddrl = (ea[1] << 8) + ea[0]; |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 279 | |
| 280 | pram_ptr->sen_pper = 0x0; /* Persistence (unused) */ |
| 281 | pram_ptr->sen_iaddr1 = 0x0; /* Individual Address Filter 1 (unused) */ |
| 282 | pram_ptr->sen_iaddr2 = 0x0; /* Individual Address Filter 2 (unused) */ |
| 283 | pram_ptr->sen_iaddr3 = 0x0; /* Individual Address Filter 3 (unused) */ |
| 284 | pram_ptr->sen_iaddr4 = 0x0; /* Individual Address Filter 4 (unused) */ |
| 285 | pram_ptr->sen_taddrh = 0x0; /* Tmp Address (MSB) (unused) */ |
| 286 | pram_ptr->sen_taddrm = 0x0; /* Tmp Address (unused) */ |
| 287 | pram_ptr->sen_taddrl = 0x0; /* Tmp Address (LSB) (unused) */ |
| 288 | |
| 289 | /* |
| 290 | * Enter Command: Initialize Tx Params for SCC |
| 291 | */ |
| 292 | |
| 293 | do { /* Spin until ready to issue command */ |
| 294 | __asm__ ("eieio"); |
| 295 | } while (immr->im_cpm.cp_cpcr & CPM_CR_FLG); |
| 296 | /* Issue command */ |
| 297 | immr->im_cpm.cp_cpcr = |
| 298 | ((CPM_CR_INIT_TX << 8) | (cpm_cr[scc_index] << 4) | |
| 299 | CPM_CR_FLG); |
| 300 | do { /* Spin until command processed */ |
| 301 | __asm__ ("eieio"); |
| 302 | } while (immr->im_cpm.cp_cpcr & CPM_CR_FLG); |
| 303 | |
| 304 | /* |
| 305 | * Mask all Events in SCCM - we use polling mode |
| 306 | */ |
| 307 | immr->im_cpm.cp_scc[scc_index].scc_sccm = 0; |
| 308 | |
| 309 | /* |
| 310 | * Clear Events in SCCE -- Clear bits by writing 1's |
| 311 | */ |
| 312 | |
| 313 | immr->im_cpm.cp_scc[scc_index].scc_scce = ~(0x0); |
| 314 | |
| 315 | |
| 316 | /* |
| 317 | * Initialize GSMR High 32-Bits |
| 318 | * Settings: Normal Mode |
| 319 | */ |
| 320 | |
| 321 | immr->im_cpm.cp_scc[scc_index].scc_gsmrh = 0; |
| 322 | |
| 323 | /* |
| 324 | * Initialize GSMR Low 32-Bits, but do not Enable Transmit/Receive |
| 325 | * Settings: |
| 326 | * TCI = Invert |
| 327 | * TPL = 48 bits |
| 328 | * TPP = Repeating 10's |
| 329 | * LOOP = Loopback |
| 330 | * MODE = Ethernet |
| 331 | */ |
| 332 | |
| 333 | immr->im_cpm.cp_scc[scc_index].scc_gsmrl = (SCC_GSMRL_TCI | |
| 334 | SCC_GSMRL_TPL_48 | |
| 335 | SCC_GSMRL_TPP_10 | |
| 336 | SCC_GSMRL_DIAG_LOOP | |
| 337 | SCC_GSMRL_MODE_ENET); |
| 338 | |
| 339 | /* |
| 340 | * Initialize the DSR -- see section 13.14.4 (pg. 513) v0.4 |
| 341 | */ |
| 342 | |
| 343 | immr->im_cpm.cp_scc[scc_index].scc_dsr = 0xd555; |
| 344 | |
| 345 | /* |
| 346 | * Initialize the PSMR |
| 347 | * Settings: |
| 348 | * CRC = 32-Bit CCITT |
| 349 | * NIB = Begin searching for SFD 22 bits after RENA |
| 350 | * LPB = Loopback Enable (Needed when FDE is set) |
| 351 | */ |
| 352 | immr->im_cpm.cp_scc[scc_index].scc_psmr = SCC_PSMR_ENCRC | |
| 353 | SCC_PSMR_NIB22 | SCC_PSMR_LPB; |
| 354 | |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 355 | /* |
| 356 | * Set the ENT/ENR bits in the GSMR Low -- Enable Transmit/Receive |
| 357 | */ |
| 358 | |
| 359 | immr->im_cpm.cp_scc[scc_index].scc_gsmrl |= |
| 360 | (SCC_GSMRL_ENR | SCC_GSMRL_ENT); |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | static void scc_halt (int scc_index) |
| 364 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 365 | volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR; |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 366 | |
| 367 | immr->im_cpm.cp_scc[scc_index].scc_gsmrl &= |
| 368 | ~(SCC_GSMRL_ENR | SCC_GSMRL_ENT); |
| 369 | immr->im_ioport.iop_pcso &= ~(PC_ENET_CLSN | PC_ENET_RENA); |
| 370 | } |
| 371 | |
| 372 | static int scc_send (int index, volatile void *packet, int length) |
| 373 | { |
| 374 | int i, j = 0; |
| 375 | |
| 376 | while ((rtx->txbd[txIdx].cbd_sc & BD_ENET_TX_READY) && (j < TOUT_LOOP)) { |
| 377 | udelay (1); /* will also trigger Wd if needed */ |
| 378 | j++; |
| 379 | } |
| 380 | if (j >= TOUT_LOOP) |
| 381 | printf ("TX not ready\n"); |
| 382 | rtx->txbd[txIdx].cbd_bufaddr = (uint) packet; |
| 383 | rtx->txbd[txIdx].cbd_datlen = length; |
| 384 | rtx->txbd[txIdx].cbd_sc |= |
| 385 | (BD_ENET_TX_READY | BD_ENET_TX_LAST | BD_ENET_TX_WRAP); |
| 386 | while ((rtx->txbd[txIdx].cbd_sc & BD_ENET_TX_READY) && (j < TOUT_LOOP)) { |
| 387 | udelay (1); /* will also trigger Wd if needed */ |
| 388 | j++; |
| 389 | } |
| 390 | if (j >= TOUT_LOOP) |
| 391 | printf ("TX timeout\n"); |
| 392 | i = (rtx->txbd[txIdx]. |
| 393 | cbd_sc & BD_ENET_TX_STATS) /* return only status bits */ ; |
| 394 | return i; |
| 395 | } |
| 396 | |
| 397 | static int scc_recv (int index, void *packet, int max_length) |
| 398 | { |
| 399 | int length = -1; |
| 400 | |
| 401 | if (rtx->rxbd[rxIdx].cbd_sc & BD_ENET_RX_EMPTY) { |
| 402 | goto Done; /* nothing received */ |
| 403 | } |
| 404 | |
| 405 | if (!(rtx->rxbd[rxIdx].cbd_sc & 0x003f)) { |
| 406 | length = rtx->rxbd[rxIdx].cbd_datlen - 4; |
| 407 | memcpy (packet, |
Joe Hershberger | 1fd92db | 2015-04-08 01:41:06 -0500 | [diff] [blame] | 408 | (void *)(net_rx_packets[rxIdx]), |
| 409 | length < max_length ? length : max_length); |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | /* Give the buffer back to the SCC. */ |
| 413 | rtx->rxbd[rxIdx].cbd_datlen = 0; |
| 414 | |
| 415 | /* wrap around buffer index when necessary */ |
| 416 | if ((rxIdx + 1) >= PKTBUFSRX) { |
| 417 | rtx->rxbd[PKTBUFSRX - 1].cbd_sc = |
| 418 | (BD_ENET_RX_WRAP | BD_ENET_RX_EMPTY); |
| 419 | rxIdx = 0; |
| 420 | } else { |
| 421 | rtx->rxbd[rxIdx].cbd_sc = BD_ENET_RX_EMPTY; |
| 422 | rxIdx++; |
| 423 | } |
| 424 | |
| 425 | Done: |
| 426 | return length; |
| 427 | } |
| 428 | |
| 429 | /* |
| 430 | * Test routines |
| 431 | */ |
| 432 | |
| 433 | static void packet_fill (char *packet, int length) |
| 434 | { |
| 435 | char c = (char) length; |
| 436 | int i; |
| 437 | |
| 438 | packet[0] = 0xFF; |
| 439 | packet[1] = 0xFF; |
| 440 | packet[2] = 0xFF; |
| 441 | packet[3] = 0xFF; |
| 442 | packet[4] = 0xFF; |
| 443 | packet[5] = 0xFF; |
| 444 | |
| 445 | for (i = 6; i < length; i++) { |
| 446 | packet[i] = c++; |
| 447 | } |
| 448 | } |
| 449 | |
| 450 | static int packet_check (char *packet, int length) |
| 451 | { |
| 452 | char c = (char) length; |
| 453 | int i; |
| 454 | |
| 455 | for (i = 6; i < length; i++) { |
| 456 | if (packet[i] != c++) |
| 457 | return -1; |
| 458 | } |
| 459 | |
| 460 | return 0; |
| 461 | } |
| 462 | |
| 463 | static int test_ctlr (int ctlr, int index) |
| 464 | { |
| 465 | int res = -1; |
| 466 | char packet_send[MAX_PACKET_LENGTH]; |
| 467 | char packet_recv[MAX_PACKET_LENGTH]; |
| 468 | int length; |
| 469 | int i; |
| 470 | int l; |
| 471 | |
| 472 | ctlr_proc[ctlr].init (index); |
| 473 | |
| 474 | for (i = 0; i < TEST_NUM; i++) { |
| 475 | for (l = MIN_PACKET_LENGTH; l <= MAX_PACKET_LENGTH; l++) { |
| 476 | packet_fill (packet_send, l); |
| 477 | |
| 478 | ctlr_proc[ctlr].send (index, packet_send, l); |
| 479 | |
| 480 | length = ctlr_proc[ctlr].recv (index, packet_recv, |
| 481 | MAX_PACKET_LENGTH); |
| 482 | |
| 483 | if (length != l || packet_check (packet_recv, length) < 0) { |
| 484 | goto Done; |
| 485 | } |
| 486 | } |
| 487 | } |
| 488 | |
| 489 | res = 0; |
| 490 | |
| 491 | Done: |
| 492 | |
| 493 | ctlr_proc[ctlr].halt (index); |
| 494 | |
| 495 | /* |
| 496 | * SCC2 Ethernet parameter RAM space overlaps |
| 497 | * the SPI parameter RAM space. So we need to restore |
| 498 | * the SPI configuration after SCC2 ethernet test. |
| 499 | */ |
| 500 | #if defined(CONFIG_SPI) |
| 501 | if (ctlr == CTLR_SCC && index == 1) { |
| 502 | spi_init_f (); |
| 503 | spi_init_r (); |
| 504 | } |
| 505 | #endif |
| 506 | |
| 507 | if (res != 0) { |
| 508 | post_log ("ethernet %s%d test failed\n", ctlr_name[ctlr], |
| 509 | index + 1); |
| 510 | } |
| 511 | |
| 512 | return res; |
| 513 | } |
| 514 | |
| 515 | int ether_post_test (int flags) |
| 516 | { |
| 517 | int res = 0; |
| 518 | int i; |
| 519 | |
| 520 | ctlr_proc[CTLR_SCC].init = scc_init; |
| 521 | ctlr_proc[CTLR_SCC].halt = scc_halt; |
| 522 | ctlr_proc[CTLR_SCC].send = scc_send; |
| 523 | ctlr_proc[CTLR_SCC].recv = scc_recv; |
| 524 | |
Mike Frysinger | d239781 | 2011-05-10 07:28:35 +0000 | [diff] [blame] | 525 | for (i = 0; i < ARRAY_SIZE(ctlr_list); i++) { |
Wolfgang Denk | ad5bb45 | 2007-03-06 18:08:43 +0100 | [diff] [blame] | 526 | if (test_ctlr (ctlr_list[i][0], ctlr_list[i][1]) != 0) { |
| 527 | res = -1; |
| 528 | } |
| 529 | } |
| 530 | |
| 531 | #if !defined(CONFIG_8xx_CONS_NONE) |
| 532 | serial_reinit_all (); |
| 533 | #endif |
| 534 | return res; |
| 535 | } |
| 536 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 537 | #endif /* CONFIG_POST & CONFIG_SYS_POST_ETHER */ |