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