wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 1 | /* |
Detlev Zundel | 6f5f89f | 2010-04-01 14:16:41 +0200 | [diff] [blame] | 2 | * (C) Copyright 2003-2010 |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * This file is based on mpc4200fec.c, |
| 6 | * (C) Copyright Motorola, Inc., 2000 |
| 7 | */ |
| 8 | |
| 9 | #include <common.h> |
| 10 | #include <mpc5xxx.h> |
Ben Warren | 80b00af | 2008-08-28 23:58:29 -0700 | [diff] [blame] | 11 | #include <mpc5xxx_sdma.h> |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 12 | #include <malloc.h> |
| 13 | #include <net.h> |
Ben Warren | e1d7480 | 2008-08-31 10:39:12 -0700 | [diff] [blame] | 14 | #include <netdev.h> |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 15 | #include <miiphy.h> |
Ben Warren | 80b00af | 2008-08-28 23:58:29 -0700 | [diff] [blame] | 16 | #include "mpc5xxx_fec.h" |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 17 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 18 | DECLARE_GLOBAL_DATA_PTR; |
| 19 | |
wdenk | 7784674 | 2003-07-26 08:08:08 +0000 | [diff] [blame] | 20 | /* #define DEBUG 0x28 */ |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 21 | |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 22 | #if !(defined(CONFIG_MII) || defined(CONFIG_CMD_MII)) |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 23 | #error "CONFIG_MII has to be defined!" |
| 24 | #endif |
| 25 | |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 26 | #if (DEBUG & 0x60) |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 27 | static void tfifo_print(char *devname, mpc5xxx_fec_priv *fec); |
| 28 | static void rfifo_print(char *devname, mpc5xxx_fec_priv *fec); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 29 | #endif /* DEBUG */ |
| 30 | |
wdenk | 7784674 | 2003-07-26 08:08:08 +0000 | [diff] [blame] | 31 | typedef struct { |
| 32 | uint8 data[1500]; /* actual data */ |
| 33 | int length; /* actual length */ |
| 34 | int used; /* buffer in use or not */ |
| 35 | uint8 head[16]; /* MAC header(6 + 6 + 2) + 2(aligned) */ |
| 36 | } NBUF; |
| 37 | |
Mike Frysinger | 5700bb6 | 2010-07-27 18:35:08 -0400 | [diff] [blame] | 38 | int fec5xxx_miiphy_read(const char *devname, uint8 phyAddr, uint8 regAddr, uint16 *retVal); |
| 39 | int fec5xxx_miiphy_write(const char *devname, uint8 phyAddr, uint8 regAddr, uint16 data); |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 40 | |
Sascha Hauer | f5cf2ef | 2009-03-21 09:38:46 -0400 | [diff] [blame] | 41 | static int mpc5xxx_fec_init_phy(struct eth_device *dev, bd_t * bis); |
| 42 | |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 43 | /********************************************************************/ |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 44 | #if (DEBUG & 0x2) |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 45 | static void mpc5xxx_fec_phydump (char *devname) |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 46 | { |
| 47 | uint16 phyStatus, i; |
| 48 | uint8 phyAddr = CONFIG_PHY_ADDR; |
| 49 | uint8 reg_mask[] = { |
| 50 | #if CONFIG_PHY_TYPE == 0x79c874 /* AMD Am79C874 */ |
| 51 | /* regs to print: 0...7, 16...19, 21, 23, 24 */ |
| 52 | 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, |
| 53 | 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, |
| 54 | #else |
| 55 | /* regs to print: 0...8, 16...20 */ |
| 56 | 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, |
| 57 | 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 58 | #endif |
| 59 | }; |
| 60 | |
| 61 | for (i = 0; i < 32; i++) { |
| 62 | if (reg_mask[i]) { |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 63 | miiphy_read(devname, phyAddr, i, &phyStatus); |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 64 | printf("Mii reg %d: 0x%04x\n", i, phyStatus); |
| 65 | } |
| 66 | } |
| 67 | } |
| 68 | #endif |
| 69 | |
| 70 | /********************************************************************/ |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 71 | static int mpc5xxx_fec_rbd_init(mpc5xxx_fec_priv *fec) |
| 72 | { |
| 73 | int ix; |
| 74 | char *data; |
wdenk | 7784674 | 2003-07-26 08:08:08 +0000 | [diff] [blame] | 75 | static int once = 0; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 76 | |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 77 | for (ix = 0; ix < FEC_RBD_NUM; ix++) { |
wdenk | 7784674 | 2003-07-26 08:08:08 +0000 | [diff] [blame] | 78 | if (!once) { |
| 79 | data = (char *)malloc(FEC_MAX_PKT_SIZE); |
| 80 | if (data == NULL) { |
| 81 | printf ("RBD INIT FAILED\n"); |
| 82 | return -1; |
| 83 | } |
| 84 | fec->rbdBase[ix].dataPointer = (uint32)data; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 85 | } |
| 86 | fec->rbdBase[ix].status = FEC_RBD_EMPTY; |
| 87 | fec->rbdBase[ix].dataLength = 0; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 88 | } |
wdenk | 7784674 | 2003-07-26 08:08:08 +0000 | [diff] [blame] | 89 | once ++; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 90 | |
| 91 | /* |
| 92 | * have the last RBD to close the ring |
| 93 | */ |
| 94 | fec->rbdBase[ix - 1].status |= FEC_RBD_WRAP; |
| 95 | fec->rbdIndex = 0; |
| 96 | |
| 97 | return 0; |
| 98 | } |
| 99 | |
| 100 | /********************************************************************/ |
| 101 | static void mpc5xxx_fec_tbd_init(mpc5xxx_fec_priv *fec) |
| 102 | { |
| 103 | int ix; |
| 104 | |
| 105 | for (ix = 0; ix < FEC_TBD_NUM; ix++) { |
| 106 | fec->tbdBase[ix].status = 0; |
| 107 | } |
| 108 | |
| 109 | /* |
| 110 | * Have the last TBD to close the ring |
| 111 | */ |
| 112 | fec->tbdBase[ix - 1].status |= FEC_TBD_WRAP; |
| 113 | |
| 114 | /* |
| 115 | * Initialize some indices |
| 116 | */ |
| 117 | fec->tbdIndex = 0; |
| 118 | fec->usedTbdIndex = 0; |
| 119 | fec->cleanTbdNum = FEC_TBD_NUM; |
| 120 | } |
| 121 | |
| 122 | /********************************************************************/ |
wdenk | 151ab83 | 2005-02-24 22:44:16 +0000 | [diff] [blame] | 123 | static void mpc5xxx_fec_rbd_clean(mpc5xxx_fec_priv *fec, volatile FEC_RBD * pRbd) |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 124 | { |
| 125 | /* |
| 126 | * Reset buffer descriptor as empty |
| 127 | */ |
| 128 | if ((fec->rbdIndex) == (FEC_RBD_NUM - 1)) |
| 129 | pRbd->status = (FEC_RBD_WRAP | FEC_RBD_EMPTY); |
| 130 | else |
| 131 | pRbd->status = FEC_RBD_EMPTY; |
| 132 | |
| 133 | pRbd->dataLength = 0; |
| 134 | |
| 135 | /* |
| 136 | * Now, we have an empty RxBD, restart the SmartDMA receive task |
| 137 | */ |
| 138 | SDMA_TASK_ENABLE(FEC_RECV_TASK_NO); |
| 139 | |
| 140 | /* |
| 141 | * Increment BD count |
| 142 | */ |
| 143 | fec->rbdIndex = (fec->rbdIndex + 1) % FEC_RBD_NUM; |
| 144 | } |
| 145 | |
| 146 | /********************************************************************/ |
| 147 | static void mpc5xxx_fec_tbd_scrub(mpc5xxx_fec_priv *fec) |
| 148 | { |
wdenk | 151ab83 | 2005-02-24 22:44:16 +0000 | [diff] [blame] | 149 | volatile FEC_TBD *pUsedTbd; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 150 | |
| 151 | #if (DEBUG & 0x1) |
| 152 | printf ("tbd_scrub: fec->cleanTbdNum = %d, fec->usedTbdIndex = %d\n", |
| 153 | fec->cleanTbdNum, fec->usedTbdIndex); |
| 154 | #endif |
| 155 | |
| 156 | /* |
| 157 | * process all the consumed TBDs |
| 158 | */ |
| 159 | while (fec->cleanTbdNum < FEC_TBD_NUM) { |
| 160 | pUsedTbd = &fec->tbdBase[fec->usedTbdIndex]; |
| 161 | if (pUsedTbd->status & FEC_TBD_READY) { |
| 162 | #if (DEBUG & 0x20) |
| 163 | printf("Cannot clean TBD %d, in use\n", fec->cleanTbdNum); |
| 164 | #endif |
| 165 | return; |
| 166 | } |
| 167 | |
| 168 | /* |
| 169 | * clean this buffer descriptor |
| 170 | */ |
| 171 | if (fec->usedTbdIndex == (FEC_TBD_NUM - 1)) |
| 172 | pUsedTbd->status = FEC_TBD_WRAP; |
| 173 | else |
| 174 | pUsedTbd->status = 0; |
| 175 | |
| 176 | /* |
| 177 | * update some indeces for a correct handling of the TBD ring |
| 178 | */ |
| 179 | fec->cleanTbdNum++; |
| 180 | fec->usedTbdIndex = (fec->usedTbdIndex + 1) % FEC_TBD_NUM; |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | /********************************************************************/ |
| 185 | static void mpc5xxx_fec_set_hwaddr(mpc5xxx_fec_priv *fec, char *mac) |
| 186 | { |
| 187 | uint8 currByte; /* byte for which to compute the CRC */ |
| 188 | int byte; /* loop - counter */ |
| 189 | int bit; /* loop - counter */ |
| 190 | uint32 crc = 0xffffffff; /* initial value */ |
| 191 | |
| 192 | /* |
| 193 | * The algorithm used is the following: |
| 194 | * we loop on each of the six bytes of the provided address, |
| 195 | * and we compute the CRC by left-shifting the previous |
| 196 | * value by one position, so that each bit in the current |
| 197 | * byte of the address may contribute the calculation. If |
| 198 | * the latter and the MSB in the CRC are different, then |
| 199 | * the CRC value so computed is also ex-ored with the |
| 200 | * "polynomium generator". The current byte of the address |
| 201 | * is also shifted right by one bit at each iteration. |
| 202 | * This is because the CRC generatore in hardware is implemented |
| 203 | * as a shift-register with as many ex-ores as the radixes |
| 204 | * in the polynomium. This suggests that we represent the |
| 205 | * polynomiumm itself as a 32-bit constant. |
| 206 | */ |
| 207 | for (byte = 0; byte < 6; byte++) { |
| 208 | currByte = mac[byte]; |
| 209 | for (bit = 0; bit < 8; bit++) { |
| 210 | if ((currByte & 0x01) ^ (crc & 0x01)) { |
| 211 | crc >>= 1; |
| 212 | crc = crc ^ 0xedb88320; |
| 213 | } else { |
| 214 | crc >>= 1; |
| 215 | } |
| 216 | currByte >>= 1; |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | crc = crc >> 26; |
| 221 | |
| 222 | /* |
| 223 | * Set individual hash table register |
| 224 | */ |
| 225 | if (crc >= 32) { |
| 226 | fec->eth->iaddr1 = (1 << (crc - 32)); |
| 227 | fec->eth->iaddr2 = 0; |
| 228 | } else { |
| 229 | fec->eth->iaddr1 = 0; |
| 230 | fec->eth->iaddr2 = (1 << crc); |
| 231 | } |
| 232 | |
| 233 | /* |
| 234 | * Set physical address |
| 235 | */ |
| 236 | fec->eth->paddr1 = (mac[0] << 24) + (mac[1] << 16) + (mac[2] << 8) + mac[3]; |
| 237 | fec->eth->paddr2 = (mac[4] << 24) + (mac[5] << 16) + 0x8808; |
| 238 | } |
| 239 | |
| 240 | /********************************************************************/ |
| 241 | static int mpc5xxx_fec_init(struct eth_device *dev, bd_t * bis) |
| 242 | { |
| 243 | mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv; |
| 244 | struct mpc5xxx_sdma *sdma = (struct mpc5xxx_sdma *)MPC5XXX_SDMA; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 245 | |
| 246 | #if (DEBUG & 0x1) |
| 247 | printf ("mpc5xxx_fec_init... Begin\n"); |
| 248 | #endif |
| 249 | |
Sascha Hauer | f5cf2ef | 2009-03-21 09:38:46 -0400 | [diff] [blame] | 250 | mpc5xxx_fec_init_phy(dev, bis); |
| 251 | |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 252 | /* |
Ilya Yanok | f87a6f2 | 2010-08-19 11:09:06 +0200 | [diff] [blame] | 253 | * Call board-specific PHY fixups (if any) |
| 254 | */ |
| 255 | #ifdef CONFIG_RESET_PHY_R |
| 256 | reset_phy(); |
| 257 | #endif |
| 258 | |
| 259 | /* |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 260 | * Initialize RxBD/TxBD rings |
| 261 | */ |
| 262 | mpc5xxx_fec_rbd_init(fec); |
| 263 | mpc5xxx_fec_tbd_init(fec); |
| 264 | |
| 265 | /* |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 266 | * Clear FEC-Lite interrupt event register(IEVENT) |
| 267 | */ |
| 268 | fec->eth->ievent = 0xffffffff; |
| 269 | |
| 270 | /* |
| 271 | * Set interrupt mask register |
| 272 | */ |
| 273 | fec->eth->imask = 0x00000000; |
| 274 | |
| 275 | /* |
| 276 | * Set FEC-Lite receive control register(R_CNTRL): |
| 277 | */ |
| 278 | if (fec->xcv_type == SEVENWIRE) { |
| 279 | /* |
| 280 | * Frame length=1518; 7-wire mode |
| 281 | */ |
| 282 | fec->eth->r_cntrl = 0x05ee0020; /*0x05ee0000;FIXME */ |
| 283 | } else { |
| 284 | /* |
| 285 | * Frame length=1518; MII mode; |
| 286 | */ |
| 287 | fec->eth->r_cntrl = 0x05ee0024; /*0x05ee0004;FIXME */ |
| 288 | } |
| 289 | |
wdenk | 7e78036 | 2004-04-08 22:31:29 +0000 | [diff] [blame] | 290 | fec->eth->x_cntrl = 0x00000000; /* half-duplex, heartbeat disabled */ |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 291 | |
| 292 | /* |
| 293 | * Set Opcode/Pause Duration Register |
| 294 | */ |
Heiko Schocher | 6341d9d | 2008-01-11 15:15:14 +0100 | [diff] [blame] | 295 | fec->eth->op_pause = 0x00010020; /*FIXME 0xffff0020; */ |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 296 | |
| 297 | /* |
| 298 | * Set Rx FIFO alarm and granularity value |
| 299 | */ |
Wolfgang Denk | c44ffb9 | 2005-09-04 23:19:41 +0200 | [diff] [blame] | 300 | fec->eth->rfifo_cntrl = 0x0c000000 |
| 301 | | (fec->eth->rfifo_cntrl & ~0x0f000000); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 302 | fec->eth->rfifo_alarm = 0x0000030c; |
| 303 | #if (DEBUG & 0x22) |
| 304 | if (fec->eth->rfifo_status & 0x00700000 ) { |
| 305 | printf("mpc5xxx_fec_init() RFIFO error\n"); |
| 306 | } |
| 307 | #endif |
| 308 | |
| 309 | /* |
| 310 | * Set Tx FIFO granularity value |
| 311 | */ |
Wolfgang Denk | c44ffb9 | 2005-09-04 23:19:41 +0200 | [diff] [blame] | 312 | fec->eth->tfifo_cntrl = 0x0c000000 |
| 313 | | (fec->eth->tfifo_cntrl & ~0x0f000000); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 314 | #if (DEBUG & 0x2) |
| 315 | printf("tfifo_status: 0x%08x\n", fec->eth->tfifo_status); |
| 316 | printf("tfifo_alarm: 0x%08x\n", fec->eth->tfifo_alarm); |
| 317 | #endif |
| 318 | |
| 319 | /* |
| 320 | * Set transmit fifo watermark register(X_WMRK), default = 64 |
| 321 | */ |
| 322 | fec->eth->tfifo_alarm = 0x00000080; |
| 323 | fec->eth->x_wmrk = 0x2; |
| 324 | |
| 325 | /* |
| 326 | * Set individual address filter for unicast address |
| 327 | * and set physical address registers. |
| 328 | */ |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 329 | mpc5xxx_fec_set_hwaddr(fec, (char *)dev->enetaddr); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 330 | |
| 331 | /* |
| 332 | * Set multicast address filter |
| 333 | */ |
| 334 | fec->eth->gaddr1 = 0x00000000; |
| 335 | fec->eth->gaddr2 = 0x00000000; |
| 336 | |
| 337 | /* |
| 338 | * Turn ON cheater FSM: ???? |
| 339 | */ |
| 340 | fec->eth->xmit_fsm = 0x03000000; |
| 341 | |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 342 | /* |
Detlev Zundel | fd428c0 | 2010-03-12 10:01:12 +0100 | [diff] [blame] | 343 | * Turn off COMM bus prefetch in the MPC5200 BestComm. It doesn't |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 344 | * work w/ the current receive task. |
| 345 | */ |
| 346 | sdma->PtdCntrl |= 0x00000001; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 347 | |
| 348 | /* |
| 349 | * Set priority of different initiators |
| 350 | */ |
| 351 | sdma->IPR0 = 7; /* always */ |
| 352 | sdma->IPR3 = 6; /* Eth RX */ |
| 353 | sdma->IPR4 = 5; /* Eth Tx */ |
| 354 | |
| 355 | /* |
| 356 | * Clear SmartDMA task interrupt pending bits |
| 357 | */ |
| 358 | SDMA_CLEAR_IEVENT(FEC_RECV_TASK_NO); |
| 359 | |
| 360 | /* |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 361 | * Initialize SmartDMA parameters stored in SRAM |
| 362 | */ |
wdenk | 151ab83 | 2005-02-24 22:44:16 +0000 | [diff] [blame] | 363 | *(volatile int *)FEC_TBD_BASE = (int)fec->tbdBase; |
| 364 | *(volatile int *)FEC_RBD_BASE = (int)fec->rbdBase; |
| 365 | *(volatile int *)FEC_TBD_NEXT = (int)fec->tbdBase; |
| 366 | *(volatile int *)FEC_RBD_NEXT = (int)fec->rbdBase; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 367 | |
wdenk | 6c1362c | 2004-05-12 22:18:31 +0000 | [diff] [blame] | 368 | /* |
| 369 | * Enable FEC-Lite controller |
| 370 | */ |
| 371 | fec->eth->ecntrl |= 0x00000006; |
| 372 | |
| 373 | #if (DEBUG & 0x2) |
| 374 | if (fec->xcv_type != SEVENWIRE) |
Heiko Schocher | 6dedf3d | 2006-12-21 16:14:48 +0100 | [diff] [blame] | 375 | mpc5xxx_fec_phydump (dev->name); |
wdenk | 6c1362c | 2004-05-12 22:18:31 +0000 | [diff] [blame] | 376 | #endif |
| 377 | |
| 378 | /* |
| 379 | * Enable SmartDMA receive task |
| 380 | */ |
| 381 | SDMA_TASK_ENABLE(FEC_RECV_TASK_NO); |
| 382 | |
| 383 | #if (DEBUG & 0x1) |
| 384 | printf("mpc5xxx_fec_init... Done \n"); |
| 385 | #endif |
| 386 | |
| 387 | return 1; |
| 388 | } |
| 389 | |
| 390 | /********************************************************************/ |
| 391 | static int mpc5xxx_fec_init_phy(struct eth_device *dev, bd_t * bis) |
| 392 | { |
wdenk | 6c1362c | 2004-05-12 22:18:31 +0000 | [diff] [blame] | 393 | mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv; |
| 394 | const uint8 phyAddr = CONFIG_PHY_ADDR; /* Only one PHY */ |
Sascha Hauer | f5cf2ef | 2009-03-21 09:38:46 -0400 | [diff] [blame] | 395 | static int initialized = 0; |
| 396 | |
| 397 | if(initialized) |
| 398 | return 0; |
| 399 | initialized = 1; |
wdenk | 6c1362c | 2004-05-12 22:18:31 +0000 | [diff] [blame] | 400 | |
| 401 | #if (DEBUG & 0x1) |
| 402 | printf ("mpc5xxx_fec_init_phy... Begin\n"); |
| 403 | #endif |
| 404 | |
| 405 | /* |
| 406 | * Initialize GPIO pins |
| 407 | */ |
| 408 | if (fec->xcv_type == SEVENWIRE) { |
| 409 | /* 10MBit with 7-wire operation */ |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 410 | #if defined(CONFIG_TOTAL5200) |
| 411 | /* 7-wire and USB2 on Ethernet */ |
| 412 | *(vu_long *)MPC5XXX_GPS_PORT_CONFIG |= 0x00030000; |
| 413 | #else /* !CONFIG_TOTAL5200 */ |
| 414 | /* 7-wire only */ |
wdenk | 6c1362c | 2004-05-12 22:18:31 +0000 | [diff] [blame] | 415 | *(vu_long *)MPC5XXX_GPS_PORT_CONFIG |= 0x00020000; |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 416 | #endif /* CONFIG_TOTAL5200 */ |
wdenk | 6c1362c | 2004-05-12 22:18:31 +0000 | [diff] [blame] | 417 | } else { |
| 418 | /* 100MBit with MD operation */ |
| 419 | *(vu_long *)MPC5XXX_GPS_PORT_CONFIG |= 0x00050000; |
| 420 | } |
| 421 | |
| 422 | /* |
| 423 | * Clear FEC-Lite interrupt event register(IEVENT) |
| 424 | */ |
| 425 | fec->eth->ievent = 0xffffffff; |
| 426 | |
| 427 | /* |
| 428 | * Set interrupt mask register |
| 429 | */ |
| 430 | fec->eth->imask = 0x00000000; |
| 431 | |
Bartlomiej Sieka | 008861a | 2007-05-07 22:36:15 +0200 | [diff] [blame] | 432 | /* |
| 433 | * In original Promess-provided code PHY initialization is disabled with the |
| 434 | * following comment: "Phy initialization is DISABLED for now. There was a |
| 435 | * problem with running 100 Mbps on PRO board". Thus we temporarily disable |
| 436 | * PHY initialization for the Motion-PRO board, until a proper fix is found. |
| 437 | */ |
| 438 | |
wdenk | 6c1362c | 2004-05-12 22:18:31 +0000 | [diff] [blame] | 439 | if (fec->xcv_type != SEVENWIRE) { |
| 440 | /* |
| 441 | * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock |
| 442 | * and do not drop the Preamble. |
Simon Glass | b287749 | 2012-12-13 20:48:53 +0000 | [diff] [blame] | 443 | * No MII for 7-wire mode |
wdenk | 6c1362c | 2004-05-12 22:18:31 +0000 | [diff] [blame] | 444 | */ |
Simon Glass | b287749 | 2012-12-13 20:48:53 +0000 | [diff] [blame] | 445 | fec->eth->mii_speed = (((gd->arch.ipb_clk >> 20) / 5) << 1); |
wdenk | 6c1362c | 2004-05-12 22:18:31 +0000 | [diff] [blame] | 446 | } |
| 447 | |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 448 | if (fec->xcv_type != SEVENWIRE) { |
| 449 | /* |
| 450 | * Initialize PHY(LXT971A): |
| 451 | * |
| 452 | * Generally, on power up, the LXT971A reads its configuration |
| 453 | * pins to check for forced operation, If not cofigured for |
| 454 | * forced operation, it uses auto-negotiation/parallel detection |
| 455 | * to automatically determine line operating conditions. |
| 456 | * If the PHY device on the other side of the link supports |
| 457 | * auto-negotiation, the LXT971A auto-negotiates with it |
| 458 | * using Fast Link Pulse(FLP) Bursts. If the PHY partner does not |
| 459 | * support auto-negotiation, the LXT971A automatically detects |
| 460 | * the presence of either link pulses(10Mbps PHY) or Idle |
| 461 | * symbols(100Mbps) and sets its operating conditions accordingly. |
| 462 | * |
| 463 | * When auto-negotiation is controlled by software, the following |
| 464 | * steps are recommended. |
| 465 | * |
| 466 | * Note: |
| 467 | * The physical address is dependent on hardware configuration. |
| 468 | * |
| 469 | */ |
| 470 | int timeout = 1; |
| 471 | uint16 phyStatus; |
| 472 | |
| 473 | /* |
| 474 | * Reset PHY, then delay 300ns |
| 475 | */ |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 476 | miiphy_write(dev->name, phyAddr, 0x0, 0x8000); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 477 | udelay(1000); |
| 478 | |
Heiko Schocher | 258c37b | 2008-08-21 20:44:49 +0200 | [diff] [blame] | 479 | #if defined(CONFIG_UC101) || defined(CONFIG_MUCMC52) |
| 480 | /* Set the LED configuration Register for the UC101 |
| 481 | and MUCMC52 Board */ |
Heiko Schocher | 3740300 | 2007-04-14 05:26:48 +0200 | [diff] [blame] | 482 | miiphy_write(dev->name, phyAddr, 0x14, 0x4122); |
| 483 | #endif |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 484 | if (fec->xcv_type == MII10) { |
| 485 | /* |
| 486 | * Force 10Base-T, FDX operation |
| 487 | */ |
wdenk | a57106f | 2003-09-16 17:29:31 +0000 | [diff] [blame] | 488 | #if (DEBUG & 0x2) |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 489 | printf("Forcing 10 Mbps ethernet link... "); |
wdenk | a57106f | 2003-09-16 17:29:31 +0000 | [diff] [blame] | 490 | #endif |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 491 | miiphy_read(dev->name, phyAddr, 0x1, &phyStatus); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 492 | /* |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 493 | miiphy_write(dev->name, fec, phyAddr, 0x0, 0x0100); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 494 | */ |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 495 | miiphy_write(dev->name, phyAddr, 0x0, 0x0180); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 496 | |
| 497 | timeout = 20; |
| 498 | do { /* wait for link status to go down */ |
| 499 | udelay(10000); |
| 500 | if ((timeout--) == 0) { |
| 501 | #if (DEBUG & 0x2) |
| 502 | printf("hmmm, should not have waited..."); |
| 503 | #endif |
| 504 | break; |
| 505 | } |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 506 | miiphy_read(dev->name, phyAddr, 0x1, &phyStatus); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 507 | #if (DEBUG & 0x2) |
| 508 | printf("="); |
| 509 | #endif |
| 510 | } while ((phyStatus & 0x0004)); /* !link up */ |
| 511 | |
| 512 | timeout = 1000; |
| 513 | do { /* wait for link status to come back up */ |
| 514 | udelay(10000); |
| 515 | if ((timeout--) == 0) { |
| 516 | printf("failed. Link is down.\n"); |
| 517 | break; |
| 518 | } |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 519 | miiphy_read(dev->name, phyAddr, 0x1, &phyStatus); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 520 | #if (DEBUG & 0x2) |
| 521 | printf("+"); |
| 522 | #endif |
| 523 | } while (!(phyStatus & 0x0004)); /* !link up */ |
| 524 | |
dzu | ab209d5 | 2003-09-30 14:08:43 +0000 | [diff] [blame] | 525 | #if (DEBUG & 0x2) |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 526 | printf ("done.\n"); |
dzu | ab209d5 | 2003-09-30 14:08:43 +0000 | [diff] [blame] | 527 | #endif |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 528 | } else { /* MII100 */ |
| 529 | /* |
| 530 | * Set the auto-negotiation advertisement register bits |
| 531 | */ |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 532 | miiphy_write(dev->name, phyAddr, 0x4, 0x01e1); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 533 | |
| 534 | /* |
| 535 | * Set MDIO bit 0.12 = 1(&& bit 0.9=1?) to enable auto-negotiation |
| 536 | */ |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 537 | miiphy_write(dev->name, phyAddr, 0x0, 0x1200); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 538 | |
| 539 | /* |
| 540 | * Wait for AN completion |
| 541 | */ |
| 542 | timeout = 5000; |
| 543 | do { |
| 544 | udelay(1000); |
| 545 | |
| 546 | if ((timeout--) == 0) { |
| 547 | #if (DEBUG & 0x2) |
| 548 | printf("PHY auto neg 0 failed...\n"); |
| 549 | #endif |
| 550 | return -1; |
| 551 | } |
| 552 | |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 553 | if (miiphy_read(dev->name, phyAddr, 0x1, &phyStatus) != 0) { |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 554 | #if (DEBUG & 0x2) |
| 555 | printf("PHY auto neg 1 failed 0x%04x...\n", phyStatus); |
| 556 | #endif |
| 557 | return -1; |
| 558 | } |
wdenk | 7e78036 | 2004-04-08 22:31:29 +0000 | [diff] [blame] | 559 | } while (!(phyStatus & 0x0004)); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 560 | |
| 561 | #if (DEBUG & 0x2) |
| 562 | printf("PHY auto neg complete! \n"); |
| 563 | #endif |
| 564 | } |
| 565 | |
| 566 | } |
| 567 | |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 568 | #if (DEBUG & 0x2) |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 569 | if (fec->xcv_type != SEVENWIRE) |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 570 | mpc5xxx_fec_phydump (dev->name); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 571 | #endif |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 572 | |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 573 | |
| 574 | #if (DEBUG & 0x1) |
wdenk | 6c1362c | 2004-05-12 22:18:31 +0000 | [diff] [blame] | 575 | printf("mpc5xxx_fec_init_phy... Done \n"); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 576 | #endif |
| 577 | |
wdenk | 013dc8d | 2003-08-07 14:52:18 +0000 | [diff] [blame] | 578 | return 1; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 579 | } |
| 580 | |
| 581 | /********************************************************************/ |
| 582 | static void mpc5xxx_fec_halt(struct eth_device *dev) |
| 583 | { |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 584 | struct mpc5xxx_sdma *sdma = (struct mpc5xxx_sdma *)MPC5XXX_SDMA; |
wdenk | 7784674 | 2003-07-26 08:08:08 +0000 | [diff] [blame] | 585 | mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 586 | int counter = 0xffff; |
| 587 | |
| 588 | #if (DEBUG & 0x2) |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 589 | if (fec->xcv_type != SEVENWIRE) |
Heiko Schocher | 6dedf3d | 2006-12-21 16:14:48 +0100 | [diff] [blame] | 590 | mpc5xxx_fec_phydump (dev->name); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 591 | #endif |
| 592 | |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 593 | /* |
| 594 | * mask FEC chip interrupts |
| 595 | */ |
| 596 | fec->eth->imask = 0; |
| 597 | |
| 598 | /* |
| 599 | * issue graceful stop command to the FEC transmitter if necessary |
| 600 | */ |
| 601 | fec->eth->x_cntrl |= 0x00000001; |
| 602 | |
| 603 | /* |
| 604 | * wait for graceful stop to register |
| 605 | */ |
| 606 | while ((counter--) && (!(fec->eth->ievent & 0x10000000))) ; |
| 607 | |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 608 | /* |
| 609 | * Disable SmartDMA tasks |
| 610 | */ |
| 611 | SDMA_TASK_DISABLE (FEC_XMIT_TASK_NO); |
| 612 | SDMA_TASK_DISABLE (FEC_RECV_TASK_NO); |
| 613 | |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 614 | /* |
Detlev Zundel | fd428c0 | 2010-03-12 10:01:12 +0100 | [diff] [blame] | 615 | * Turn on COMM bus prefetch in the MPC5200 BestComm after we're |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 616 | * done. It doesn't work w/ the current receive task. |
| 617 | */ |
| 618 | sdma->PtdCntrl &= ~0x00000001; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 619 | |
| 620 | /* |
| 621 | * Disable the Ethernet Controller |
| 622 | */ |
| 623 | fec->eth->ecntrl &= 0xfffffffd; |
| 624 | |
| 625 | /* |
| 626 | * Clear FIFO status registers |
| 627 | */ |
| 628 | fec->eth->rfifo_status &= 0x00700000; |
| 629 | fec->eth->tfifo_status &= 0x00700000; |
| 630 | |
| 631 | fec->eth->reset_cntrl = 0x01000000; |
| 632 | |
| 633 | /* |
| 634 | * Issue a reset command to the FEC chip |
| 635 | */ |
| 636 | fec->eth->ecntrl |= 0x1; |
| 637 | |
| 638 | /* |
| 639 | * wait at least 16 clock cycles |
| 640 | */ |
| 641 | udelay(10); |
| 642 | |
Jon Smirl | f949bd8 | 2009-03-11 15:08:56 -0400 | [diff] [blame] | 643 | /* don't leave the MII speed set to zero */ |
| 644 | if (fec->xcv_type != SEVENWIRE) { |
| 645 | /* |
| 646 | * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock |
| 647 | * and do not drop the Preamble. |
Simon Glass | b287749 | 2012-12-13 20:48:53 +0000 | [diff] [blame] | 648 | * No MII for 7-wire mode |
Jon Smirl | f949bd8 | 2009-03-11 15:08:56 -0400 | [diff] [blame] | 649 | */ |
Simon Glass | b287749 | 2012-12-13 20:48:53 +0000 | [diff] [blame] | 650 | fec->eth->mii_speed = (((gd->arch.ipb_clk >> 20) / 5) << 1); |
Jon Smirl | f949bd8 | 2009-03-11 15:08:56 -0400 | [diff] [blame] | 651 | } |
| 652 | |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 653 | #if (DEBUG & 0x3) |
| 654 | printf("Ethernet task stopped\n"); |
| 655 | #endif |
| 656 | } |
| 657 | |
| 658 | #if (DEBUG & 0x60) |
| 659 | /********************************************************************/ |
| 660 | |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 661 | static void tfifo_print(char *devname, mpc5xxx_fec_priv *fec) |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 662 | { |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 663 | uint16 phyAddr = CONFIG_PHY_ADDR; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 664 | uint16 phyStatus; |
| 665 | |
| 666 | if ((fec->eth->tfifo_lrf_ptr != fec->eth->tfifo_lwf_ptr) |
| 667 | || (fec->eth->tfifo_rdptr != fec->eth->tfifo_wrptr)) { |
| 668 | |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 669 | miiphy_read(devname, phyAddr, 0x1, &phyStatus); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 670 | printf("\nphyStatus: 0x%04x\n", phyStatus); |
| 671 | printf("ecntrl: 0x%08x\n", fec->eth->ecntrl); |
| 672 | printf("ievent: 0x%08x\n", fec->eth->ievent); |
| 673 | printf("x_status: 0x%08x\n", fec->eth->x_status); |
| 674 | printf("tfifo: status 0x%08x\n", fec->eth->tfifo_status); |
| 675 | |
| 676 | printf(" control 0x%08x\n", fec->eth->tfifo_cntrl); |
| 677 | printf(" lrfp 0x%08x\n", fec->eth->tfifo_lrf_ptr); |
| 678 | printf(" lwfp 0x%08x\n", fec->eth->tfifo_lwf_ptr); |
| 679 | printf(" alarm 0x%08x\n", fec->eth->tfifo_alarm); |
| 680 | printf(" readptr 0x%08x\n", fec->eth->tfifo_rdptr); |
| 681 | printf(" writptr 0x%08x\n", fec->eth->tfifo_wrptr); |
| 682 | } |
| 683 | } |
| 684 | |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 685 | static void rfifo_print(char *devname, mpc5xxx_fec_priv *fec) |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 686 | { |
wdenk | d4ca31c | 2004-01-02 14:00:00 +0000 | [diff] [blame] | 687 | uint16 phyAddr = CONFIG_PHY_ADDR; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 688 | uint16 phyStatus; |
| 689 | |
| 690 | if ((fec->eth->rfifo_lrf_ptr != fec->eth->rfifo_lwf_ptr) |
| 691 | || (fec->eth->rfifo_rdptr != fec->eth->rfifo_wrptr)) { |
| 692 | |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 693 | miiphy_read(devname, phyAddr, 0x1, &phyStatus); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 694 | printf("\nphyStatus: 0x%04x\n", phyStatus); |
| 695 | printf("ecntrl: 0x%08x\n", fec->eth->ecntrl); |
| 696 | printf("ievent: 0x%08x\n", fec->eth->ievent); |
| 697 | printf("x_status: 0x%08x\n", fec->eth->x_status); |
| 698 | printf("rfifo: status 0x%08x\n", fec->eth->rfifo_status); |
| 699 | |
| 700 | printf(" control 0x%08x\n", fec->eth->rfifo_cntrl); |
| 701 | printf(" lrfp 0x%08x\n", fec->eth->rfifo_lrf_ptr); |
| 702 | printf(" lwfp 0x%08x\n", fec->eth->rfifo_lwf_ptr); |
| 703 | printf(" alarm 0x%08x\n", fec->eth->rfifo_alarm); |
| 704 | printf(" readptr 0x%08x\n", fec->eth->rfifo_rdptr); |
| 705 | printf(" writptr 0x%08x\n", fec->eth->rfifo_wrptr); |
| 706 | } |
| 707 | } |
| 708 | #endif /* DEBUG */ |
| 709 | |
| 710 | /********************************************************************/ |
| 711 | |
Anatolij Gustschin | 2f2c29a | 2012-05-20 12:22:57 +0000 | [diff] [blame] | 712 | static int mpc5xxx_fec_send(struct eth_device *dev, void *eth_data, |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 713 | int data_length) |
| 714 | { |
| 715 | /* |
| 716 | * This routine transmits one frame. This routine only accepts |
| 717 | * 6-byte Ethernet addresses. |
| 718 | */ |
| 719 | mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv; |
wdenk | 151ab83 | 2005-02-24 22:44:16 +0000 | [diff] [blame] | 720 | volatile FEC_TBD *pTbd; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 721 | |
| 722 | #if (DEBUG & 0x20) |
| 723 | printf("tbd status: 0x%04x\n", fec->tbdBase[0].status); |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 724 | tfifo_print(dev->name, fec); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 725 | #endif |
| 726 | |
| 727 | /* |
| 728 | * Clear Tx BD ring at first |
| 729 | */ |
| 730 | mpc5xxx_fec_tbd_scrub(fec); |
| 731 | |
| 732 | /* |
| 733 | * Check for valid length of data. |
| 734 | */ |
| 735 | if ((data_length > 1500) || (data_length <= 0)) { |
| 736 | return -1; |
| 737 | } |
| 738 | |
| 739 | /* |
| 740 | * Check the number of vacant TxBDs. |
| 741 | */ |
| 742 | if (fec->cleanTbdNum < 1) { |
| 743 | #if (DEBUG & 0x20) |
| 744 | printf("No available TxBDs ...\n"); |
| 745 | #endif |
| 746 | return -1; |
| 747 | } |
| 748 | |
| 749 | /* |
| 750 | * Get the first TxBD to send the mac header |
| 751 | */ |
| 752 | pTbd = &fec->tbdBase[fec->tbdIndex]; |
| 753 | pTbd->dataLength = data_length; |
| 754 | pTbd->dataPointer = (uint32)eth_data; |
wdenk | 7784674 | 2003-07-26 08:08:08 +0000 | [diff] [blame] | 755 | pTbd->status |= FEC_TBD_LAST | FEC_TBD_TC | FEC_TBD_READY; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 756 | fec->tbdIndex = (fec->tbdIndex + 1) % FEC_TBD_NUM; |
| 757 | |
| 758 | #if (DEBUG & 0x100) |
| 759 | printf("SDMA_TASK_ENABLE, fec->tbdIndex = %d \n", fec->tbdIndex); |
| 760 | #endif |
| 761 | |
| 762 | /* |
| 763 | * Kick the MII i/f |
| 764 | */ |
| 765 | if (fec->xcv_type != SEVENWIRE) { |
| 766 | uint16 phyStatus; |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 767 | miiphy_read(dev->name, 0, 0x1, &phyStatus); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 768 | } |
| 769 | |
| 770 | /* |
| 771 | * Enable SmartDMA transmit task |
| 772 | */ |
| 773 | |
| 774 | #if (DEBUG & 0x20) |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 775 | tfifo_print(dev->name, fec); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 776 | #endif |
| 777 | SDMA_TASK_ENABLE (FEC_XMIT_TASK_NO); |
| 778 | #if (DEBUG & 0x20) |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 779 | tfifo_print(dev->name, fec); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 780 | #endif |
| 781 | #if (DEBUG & 0x8) |
| 782 | printf( "+" ); |
| 783 | #endif |
| 784 | |
| 785 | fec->cleanTbdNum -= 1; |
| 786 | |
| 787 | #if (DEBUG & 0x129) && (DEBUG & 0x80000000) |
| 788 | printf ("smartDMA ethernet Tx task enabled\n"); |
| 789 | #endif |
| 790 | /* |
| 791 | * wait until frame is sent . |
| 792 | */ |
| 793 | while (pTbd->status & FEC_TBD_READY) { |
| 794 | udelay(10); |
| 795 | #if (DEBUG & 0x8) |
| 796 | printf ("TDB status = %04x\n", pTbd->status); |
| 797 | #endif |
| 798 | } |
| 799 | |
| 800 | return 0; |
| 801 | } |
| 802 | |
| 803 | |
| 804 | /********************************************************************/ |
| 805 | static int mpc5xxx_fec_recv(struct eth_device *dev) |
| 806 | { |
| 807 | /* |
| 808 | * This command pulls one frame from the card |
| 809 | */ |
| 810 | mpc5xxx_fec_priv *fec = (mpc5xxx_fec_priv *)dev->priv; |
wdenk | 151ab83 | 2005-02-24 22:44:16 +0000 | [diff] [blame] | 811 | volatile FEC_RBD *pRbd = &fec->rbdBase[fec->rbdIndex]; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 812 | unsigned long ievent; |
wdenk | 7784674 | 2003-07-26 08:08:08 +0000 | [diff] [blame] | 813 | int frame_length, len = 0; |
| 814 | NBUF *frame; |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 815 | uchar buff[FEC_MAX_PKT_SIZE]; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 816 | |
| 817 | #if (DEBUG & 0x1) |
| 818 | printf ("mpc5xxx_fec_recv %d Start...\n", fec->rbdIndex); |
| 819 | #endif |
| 820 | #if (DEBUG & 0x8) |
| 821 | printf( "-" ); |
| 822 | #endif |
| 823 | |
| 824 | /* |
| 825 | * Check if any critical events have happened |
| 826 | */ |
| 827 | ievent = fec->eth->ievent; |
| 828 | fec->eth->ievent = ievent; |
| 829 | if (ievent & 0x20060000) { |
| 830 | /* BABT, Rx/Tx FIFO errors */ |
| 831 | mpc5xxx_fec_halt(dev); |
| 832 | mpc5xxx_fec_init(dev, NULL); |
| 833 | return 0; |
| 834 | } |
| 835 | if (ievent & 0x80000000) { |
| 836 | /* Heartbeat error */ |
| 837 | fec->eth->x_cntrl |= 0x00000001; |
| 838 | } |
| 839 | if (ievent & 0x10000000) { |
| 840 | /* Graceful stop complete */ |
| 841 | if (fec->eth->x_cntrl & 0x00000001) { |
| 842 | mpc5xxx_fec_halt(dev); |
| 843 | fec->eth->x_cntrl &= ~0x00000001; |
| 844 | mpc5xxx_fec_init(dev, NULL); |
| 845 | } |
| 846 | } |
| 847 | |
wdenk | 7784674 | 2003-07-26 08:08:08 +0000 | [diff] [blame] | 848 | if (!(pRbd->status & FEC_RBD_EMPTY)) { |
| 849 | if ((pRbd->status & FEC_RBD_LAST) && !(pRbd->status & FEC_RBD_ERR) && |
| 850 | ((pRbd->dataLength - 4) > 14)) { |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 851 | |
wdenk | 7784674 | 2003-07-26 08:08:08 +0000 | [diff] [blame] | 852 | /* |
| 853 | * Get buffer address and size |
| 854 | */ |
| 855 | frame = (NBUF *)pRbd->dataPointer; |
| 856 | frame_length = pRbd->dataLength - 4; |
| 857 | |
| 858 | #if (DEBUG & 0x20) |
| 859 | { |
| 860 | int i; |
| 861 | printf("recv data hdr:"); |
| 862 | for (i = 0; i < 14; i++) |
| 863 | printf("%x ", *(frame->head + i)); |
| 864 | printf("\n"); |
| 865 | } |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 866 | #endif |
wdenk | 7784674 | 2003-07-26 08:08:08 +0000 | [diff] [blame] | 867 | /* |
| 868 | * Fill the buffer and pass it to upper layers |
| 869 | */ |
| 870 | memcpy(buff, frame->head, 14); |
| 871 | memcpy(buff + 14, frame->data, frame_length); |
| 872 | NetReceive(buff, frame_length); |
| 873 | len = frame_length; |
| 874 | } |
| 875 | /* |
| 876 | * Reset buffer descriptor as empty |
| 877 | */ |
| 878 | mpc5xxx_fec_rbd_clean(fec, pRbd); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 879 | } |
wdenk | 7784674 | 2003-07-26 08:08:08 +0000 | [diff] [blame] | 880 | SDMA_CLEAR_IEVENT (FEC_RECV_TASK_NO); |
| 881 | return len; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 882 | } |
| 883 | |
| 884 | |
| 885 | /********************************************************************/ |
| 886 | int mpc5xxx_fec_initialize(bd_t * bis) |
| 887 | { |
| 888 | mpc5xxx_fec_priv *fec; |
| 889 | struct eth_device *dev; |
wdenk | 12f3424 | 2003-09-02 22:48:03 +0000 | [diff] [blame] | 890 | char *tmp, *end; |
| 891 | char env_enetaddr[6]; |
| 892 | int i; |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 893 | |
| 894 | fec = (mpc5xxx_fec_priv *)malloc(sizeof(*fec)); |
| 895 | dev = (struct eth_device *)malloc(sizeof(*dev)); |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 896 | memset(dev, 0, sizeof *dev); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 897 | |
| 898 | fec->eth = (ethernet_regs *)MPC5XXX_FEC; |
| 899 | fec->tbdBase = (FEC_TBD *)FEC_BD_BASE; |
| 900 | fec->rbdBase = (FEC_RBD *)(FEC_BD_BASE + FEC_TBD_NUM * sizeof(FEC_TBD)); |
Ben Warren | 86321fc | 2009-02-05 23:58:25 -0800 | [diff] [blame] | 901 | #if defined(CONFIG_MPC5xxx_FEC_MII100) |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 902 | fec->xcv_type = MII100; |
Ben Warren | 86321fc | 2009-02-05 23:58:25 -0800 | [diff] [blame] | 903 | #elif defined(CONFIG_MPC5xxx_FEC_MII10) |
wdenk | a57106f | 2003-09-16 17:29:31 +0000 | [diff] [blame] | 904 | fec->xcv_type = MII10; |
Ben Warren | 86321fc | 2009-02-05 23:58:25 -0800 | [diff] [blame] | 905 | #elif defined(CONFIG_MPC5xxx_FEC_SEVENWIRE) |
wdenk | 6c7a140 | 2004-07-11 19:17:20 +0000 | [diff] [blame] | 906 | fec->xcv_type = SEVENWIRE; |
wdenk | a57106f | 2003-09-16 17:29:31 +0000 | [diff] [blame] | 907 | #else |
| 908 | #error fec->xcv_type not initialized. |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 909 | #endif |
Jon Smirl | f949bd8 | 2009-03-11 15:08:56 -0400 | [diff] [blame] | 910 | if (fec->xcv_type != SEVENWIRE) { |
| 911 | /* |
| 912 | * Set MII_SPEED = (1/(mii_speed * 2)) * System Clock |
| 913 | * and do not drop the Preamble. |
Simon Glass | b287749 | 2012-12-13 20:48:53 +0000 | [diff] [blame] | 914 | * No MII for 7-wire mode |
Jon Smirl | f949bd8 | 2009-03-11 15:08:56 -0400 | [diff] [blame] | 915 | */ |
Simon Glass | b287749 | 2012-12-13 20:48:53 +0000 | [diff] [blame] | 916 | fec->eth->mii_speed = (((gd->arch.ipb_clk >> 20) / 5) << 1); |
Jon Smirl | f949bd8 | 2009-03-11 15:08:56 -0400 | [diff] [blame] | 917 | } |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 918 | |
| 919 | dev->priv = (void *)fec; |
| 920 | dev->iobase = MPC5XXX_FEC; |
| 921 | dev->init = mpc5xxx_fec_init; |
| 922 | dev->halt = mpc5xxx_fec_halt; |
| 923 | dev->send = mpc5xxx_fec_send; |
| 924 | dev->recv = mpc5xxx_fec_recv; |
| 925 | |
Wolfgang Denk | 82369c0 | 2010-08-05 21:31:54 +0200 | [diff] [blame] | 926 | sprintf(dev->name, "FEC"); |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 927 | eth_register(dev); |
| 928 | |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 929 | #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 930 | miiphy_register (dev->name, |
| 931 | fec5xxx_miiphy_read, fec5xxx_miiphy_write); |
| 932 | #endif |
| 933 | |
wdenk | 12f3424 | 2003-09-02 22:48:03 +0000 | [diff] [blame] | 934 | /* |
| 935 | * Try to set the mac address now. The fec mac address is |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 936 | * a garbage after reset. When not using fec for booting |
wdenk | 12f3424 | 2003-09-02 22:48:03 +0000 | [diff] [blame] | 937 | * the Linux fec driver will try to work with this garbage. |
| 938 | */ |
| 939 | tmp = getenv("ethaddr"); |
| 940 | if (tmp) { |
| 941 | for (i=0; i<6; i++) { |
| 942 | env_enetaddr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0; |
| 943 | if (tmp) |
| 944 | tmp = (*end) ? end+1 : end; |
| 945 | } |
| 946 | mpc5xxx_fec_set_hwaddr(fec, env_enetaddr); |
| 947 | } |
| 948 | |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 949 | return 1; |
| 950 | } |
| 951 | |
| 952 | /* MII-interface related functions */ |
| 953 | /********************************************************************/ |
Mike Frysinger | 5700bb6 | 2010-07-27 18:35:08 -0400 | [diff] [blame] | 954 | int fec5xxx_miiphy_read(const char *devname, uint8 phyAddr, uint8 regAddr, uint16 * retVal) |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 955 | { |
| 956 | ethernet_regs *eth = (ethernet_regs *)MPC5XXX_FEC; |
| 957 | uint32 reg; /* convenient holder for the PHY register */ |
| 958 | uint32 phy; /* convenient holder for the PHY */ |
| 959 | int timeout = 0xffff; |
| 960 | |
| 961 | /* |
| 962 | * reading from any PHY's register is done by properly |
| 963 | * programming the FEC's MII data register. |
| 964 | */ |
| 965 | reg = regAddr << FEC_MII_DATA_RA_SHIFT; |
| 966 | phy = phyAddr << FEC_MII_DATA_PA_SHIFT; |
| 967 | |
| 968 | eth->mii_data = (FEC_MII_DATA_ST | FEC_MII_DATA_OP_RD | FEC_MII_DATA_TA | phy | reg); |
| 969 | |
| 970 | /* |
| 971 | * wait for the related interrupt |
| 972 | */ |
| 973 | while ((timeout--) && (!(eth->ievent & 0x00800000))) ; |
| 974 | |
| 975 | if (timeout == 0) { |
| 976 | #if (DEBUG & 0x2) |
| 977 | printf ("Read MDIO failed...\n"); |
| 978 | #endif |
| 979 | return -1; |
| 980 | } |
| 981 | |
| 982 | /* |
| 983 | * clear mii interrupt bit |
| 984 | */ |
| 985 | eth->ievent = 0x00800000; |
| 986 | |
| 987 | /* |
| 988 | * it's now safe to read the PHY's register |
| 989 | */ |
| 990 | *retVal = (uint16) eth->mii_data; |
| 991 | |
| 992 | return 0; |
| 993 | } |
| 994 | |
| 995 | /********************************************************************/ |
Mike Frysinger | 5700bb6 | 2010-07-27 18:35:08 -0400 | [diff] [blame] | 996 | int fec5xxx_miiphy_write(const char *devname, uint8 phyAddr, uint8 regAddr, uint16 data) |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 997 | { |
| 998 | ethernet_regs *eth = (ethernet_regs *)MPC5XXX_FEC; |
| 999 | uint32 reg; /* convenient holder for the PHY register */ |
| 1000 | uint32 phy; /* convenient holder for the PHY */ |
| 1001 | int timeout = 0xffff; |
| 1002 | |
| 1003 | reg = regAddr << FEC_MII_DATA_RA_SHIFT; |
| 1004 | phy = phyAddr << FEC_MII_DATA_PA_SHIFT; |
| 1005 | |
| 1006 | eth->mii_data = (FEC_MII_DATA_ST | FEC_MII_DATA_OP_WR | |
| 1007 | FEC_MII_DATA_TA | phy | reg | data); |
| 1008 | |
| 1009 | /* |
| 1010 | * wait for the MII interrupt |
| 1011 | */ |
| 1012 | while ((timeout--) && (!(eth->ievent & 0x00800000))) ; |
| 1013 | |
| 1014 | if (timeout == 0) { |
| 1015 | #if (DEBUG & 0x2) |
| 1016 | printf ("Write MDIO failed...\n"); |
| 1017 | #endif |
| 1018 | return -1; |
| 1019 | } |
| 1020 | |
| 1021 | /* |
| 1022 | * clear MII interrupt bit |
| 1023 | */ |
| 1024 | eth->ievent = 0x00800000; |
| 1025 | |
| 1026 | return 0; |
| 1027 | } |