wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000 |
| 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+ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <malloc.h> |
| 10 | #include <commproc.h> |
| 11 | #include <net.h> |
| 12 | #include <command.h> |
| 13 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 14 | DECLARE_GLOBAL_DATA_PTR; |
| 15 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 16 | #undef ET_DEBUG |
| 17 | |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 18 | #if defined(CONFIG_CMD_NET) && \ |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 19 | (defined(FEC_ENET) || defined(CONFIG_ETHER_ON_FEC1) || defined(CONFIG_ETHER_ON_FEC2)) |
| 20 | |
| 21 | /* compatibility test, if only FEC_ENET defined assume ETHER on FEC1 */ |
| 22 | #if defined(FEC_ENET) && !defined(CONFIG_ETHER_ON_FEC1) && !defined(CONFIG_ETHER_ON_FEC2) |
| 23 | #define CONFIG_ETHER_ON_FEC1 1 |
| 24 | #endif |
| 25 | |
| 26 | /* define WANT_MII when MII support is required */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 27 | #if defined(CONFIG_SYS_DISCOVER_PHY) || defined(CONFIG_FEC1_PHY) || defined(CONFIG_FEC2_PHY) |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 28 | #define WANT_MII |
| 29 | #else |
| 30 | #undef WANT_MII |
| 31 | #endif |
| 32 | |
| 33 | #if defined(WANT_MII) |
| 34 | #include <miiphy.h> |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 35 | |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 36 | #if !(defined(CONFIG_MII) || defined(CONFIG_CMD_MII)) |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 37 | #error "CONFIG_MII has to be defined!" |
| 38 | #endif |
| 39 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 40 | #endif |
| 41 | |
| 42 | #if defined(CONFIG_RMII) && !defined(WANT_MII) |
| 43 | #error RMII support is unusable without a working PHY. |
| 44 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 45 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 46 | #ifdef CONFIG_SYS_DISCOVER_PHY |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 47 | static int mii_discover_phy(struct eth_device *dev); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 48 | #endif |
| 49 | |
Mike Frysinger | 5700bb6 | 2010-07-27 18:35:08 -0400 | [diff] [blame] | 50 | int fec8xx_miiphy_read(const char *devname, unsigned char addr, |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 51 | unsigned char reg, unsigned short *value); |
Mike Frysinger | 5700bb6 | 2010-07-27 18:35:08 -0400 | [diff] [blame] | 52 | int fec8xx_miiphy_write(const char *devname, unsigned char addr, |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 53 | unsigned char reg, unsigned short value); |
| 54 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 55 | static struct ether_fcc_info_s |
| 56 | { |
| 57 | int ether_index; |
| 58 | int fecp_offset; |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 59 | int phy_addr; |
| 60 | int actual_phy_addr; |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 61 | int initialized; |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 62 | } |
| 63 | ether_fcc_info[] = { |
| 64 | #if defined(CONFIG_ETHER_ON_FEC1) |
| 65 | { |
| 66 | 0, |
| 67 | offsetof(immap_t, im_cpm.cp_fec1), |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 68 | #if defined(CONFIG_FEC1_PHY) |
| 69 | CONFIG_FEC1_PHY, |
| 70 | #else |
| 71 | -1, /* discover */ |
| 72 | #endif |
| 73 | -1, |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 74 | 0, |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 75 | |
| 76 | }, |
| 77 | #endif |
| 78 | #if defined(CONFIG_ETHER_ON_FEC2) |
| 79 | { |
| 80 | 1, |
| 81 | offsetof(immap_t, im_cpm.cp_fec2), |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 82 | #if defined(CONFIG_FEC2_PHY) |
| 83 | CONFIG_FEC2_PHY, |
| 84 | #else |
| 85 | -1, |
| 86 | #endif |
| 87 | -1, |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 88 | 0, |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 89 | }, |
| 90 | #endif |
| 91 | }; |
| 92 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 93 | /* Ethernet Transmit and Receive Buffers */ |
| 94 | #define DBUF_LENGTH 1520 |
| 95 | |
| 96 | #define TX_BUF_CNT 2 |
| 97 | |
| 98 | #define TOUT_LOOP 100 |
| 99 | |
| 100 | #define PKT_MAXBUF_SIZE 1518 |
| 101 | #define PKT_MINBUF_SIZE 64 |
| 102 | #define PKT_MAXBLR_SIZE 1520 |
| 103 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 104 | #ifdef __GNUC__ |
| 105 | static char txbuf[DBUF_LENGTH] __attribute__ ((aligned(8))); |
| 106 | #else |
| 107 | #error txbuf must be aligned. |
| 108 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 109 | |
| 110 | static uint rxIdx; /* index of the current RX buffer */ |
| 111 | static uint txIdx; /* index of the current TX buffer */ |
| 112 | |
| 113 | /* |
| 114 | * FEC Ethernet Tx and Rx buffer descriptors allocated at the |
| 115 | * immr->udata_bd address on Dual-Port RAM |
| 116 | * Provide for Double Buffering |
| 117 | */ |
| 118 | |
| 119 | typedef volatile struct CommonBufferDescriptor { |
| 120 | cbd_t rxbd[PKTBUFSRX]; /* Rx BD */ |
| 121 | cbd_t txbd[TX_BUF_CNT]; /* Tx BD */ |
| 122 | } RTXBD; |
| 123 | |
| 124 | static RTXBD *rtx = NULL; |
| 125 | |
Wolfgang Denk | 1b10d07 | 2012-05-20 21:14:54 +0000 | [diff] [blame] | 126 | static int fec_send(struct eth_device *dev, void *packet, int length); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 127 | static int fec_recv(struct eth_device* dev); |
| 128 | static int fec_init(struct eth_device* dev, bd_t * bd); |
| 129 | static void fec_halt(struct eth_device* dev); |
Wolfgang Denk | 08e99e1 | 2008-01-13 02:19:13 +0100 | [diff] [blame] | 130 | #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) |
Guennadi Liakhovetski | d197ffd | 2007-11-29 21:15:56 +0100 | [diff] [blame] | 131 | static void __mii_init(void); |
Wolfgang Denk | 08e99e1 | 2008-01-13 02:19:13 +0100 | [diff] [blame] | 132 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 133 | |
| 134 | int fec_initialize(bd_t *bis) |
| 135 | { |
| 136 | struct eth_device* dev; |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 137 | struct ether_fcc_info_s *efis; |
| 138 | int i; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 139 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 140 | for (i = 0; i < sizeof(ether_fcc_info) / sizeof(ether_fcc_info[0]); i++) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 141 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 142 | dev = malloc(sizeof(*dev)); |
| 143 | if (dev == NULL) |
| 144 | hang(); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 145 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 146 | memset(dev, 0, sizeof(*dev)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 147 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 148 | /* for FEC1 make sure that the name of the interface is the same |
| 149 | as the old one for compatibility reasons */ |
| 150 | if (i == 0) { |
Heiko Schocher | 48690d8 | 2010-07-20 17:45:02 +0200 | [diff] [blame] | 151 | sprintf (dev->name, "FEC"); |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 152 | } else { |
Heiko Schocher | 48690d8 | 2010-07-20 17:45:02 +0200 | [diff] [blame] | 153 | sprintf (dev->name, "FEC%d", |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 154 | ether_fcc_info[i].ether_index + 1); |
| 155 | } |
| 156 | |
| 157 | efis = ðer_fcc_info[i]; |
| 158 | |
| 159 | /* |
| 160 | * reset actual phy addr |
| 161 | */ |
| 162 | efis->actual_phy_addr = -1; |
| 163 | |
| 164 | dev->priv = efis; |
| 165 | dev->init = fec_init; |
| 166 | dev->halt = fec_halt; |
| 167 | dev->send = fec_send; |
| 168 | dev->recv = fec_recv; |
| 169 | |
| 170 | eth_register(dev); |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 171 | |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 172 | #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 173 | miiphy_register(dev->name, |
| 174 | fec8xx_miiphy_read, fec8xx_miiphy_write); |
| 175 | #endif |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 176 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 177 | return 1; |
| 178 | } |
| 179 | |
Wolfgang Denk | 1b10d07 | 2012-05-20 21:14:54 +0000 | [diff] [blame] | 180 | static int fec_send(struct eth_device *dev, void *packet, int length) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 181 | { |
| 182 | int j, rc; |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 183 | struct ether_fcc_info_s *efis = dev->priv; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 184 | volatile fec_t *fecp = (volatile fec_t *)(CONFIG_SYS_IMMR + efis->fecp_offset); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 185 | |
| 186 | /* section 16.9.23.3 |
| 187 | * Wait for ready |
| 188 | */ |
| 189 | j = 0; |
| 190 | while ((rtx->txbd[txIdx].cbd_sc & BD_ENET_TX_READY) && (j<TOUT_LOOP)) { |
| 191 | udelay(1); |
| 192 | j++; |
| 193 | } |
| 194 | if (j>=TOUT_LOOP) { |
| 195 | printf("TX not ready\n"); |
| 196 | } |
| 197 | |
| 198 | rtx->txbd[txIdx].cbd_bufaddr = (uint)packet; |
| 199 | rtx->txbd[txIdx].cbd_datlen = length; |
| 200 | rtx->txbd[txIdx].cbd_sc |= BD_ENET_TX_READY | BD_ENET_TX_LAST; |
| 201 | __asm__ ("eieio"); |
| 202 | |
| 203 | /* Activate transmit Buffer Descriptor polling */ |
| 204 | fecp->fec_x_des_active = 0x01000000; /* Descriptor polling active */ |
| 205 | |
| 206 | j = 0; |
| 207 | while ((rtx->txbd[txIdx].cbd_sc & BD_ENET_TX_READY) && (j<TOUT_LOOP)) { |
| 208 | #if defined(CONFIG_ICU862) |
| 209 | udelay(10); |
| 210 | #else |
| 211 | udelay(1); |
| 212 | #endif |
| 213 | j++; |
| 214 | } |
| 215 | if (j>=TOUT_LOOP) { |
| 216 | printf("TX timeout\n"); |
| 217 | } |
| 218 | #ifdef ET_DEBUG |
| 219 | printf("%s[%d] %s: cycles: %d status: %x retry cnt: %d\n", |
| 220 | __FILE__,__LINE__,__FUNCTION__,j,rtx->txbd[txIdx].cbd_sc, |
| 221 | (rtx->txbd[txIdx].cbd_sc & 0x003C)>>2); |
| 222 | #endif |
| 223 | /* return only status bits */; |
| 224 | rc = (rtx->txbd[txIdx].cbd_sc & BD_ENET_TX_STATS); |
| 225 | |
| 226 | txIdx = (txIdx + 1) % TX_BUF_CNT; |
| 227 | |
| 228 | return rc; |
| 229 | } |
| 230 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 231 | static int fec_recv (struct eth_device *dev) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 232 | { |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 233 | struct ether_fcc_info_s *efis = dev->priv; |
| 234 | volatile fec_t *fecp = |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 235 | (volatile fec_t *) (CONFIG_SYS_IMMR + efis->fecp_offset); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 236 | int length; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 237 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 238 | for (;;) { |
| 239 | /* section 16.9.23.2 */ |
| 240 | if (rtx->rxbd[rxIdx].cbd_sc & BD_ENET_RX_EMPTY) { |
| 241 | length = -1; |
| 242 | break; /* nothing received - leave for() loop */ |
| 243 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 244 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 245 | length = rtx->rxbd[rxIdx].cbd_datlen; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 246 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 247 | if (rtx->rxbd[rxIdx].cbd_sc & 0x003f) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 248 | #ifdef ET_DEBUG |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 249 | printf ("%s[%d] err: %x\n", |
| 250 | __FUNCTION__, __LINE__, |
| 251 | rtx->rxbd[rxIdx].cbd_sc); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 252 | #endif |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 253 | } else { |
Wolfgang Denk | 1b10d07 | 2012-05-20 21:14:54 +0000 | [diff] [blame] | 254 | uchar *rx = NetRxPackets[rxIdx]; |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 255 | |
| 256 | length -= 4; |
| 257 | |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 258 | #if defined(CONFIG_CMD_CDP) |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 259 | if ((rx[0] & 1) != 0 |
| 260 | && memcmp ((uchar *) rx, NetBcastAddr, 6) != 0 |
Joe Hershberger | 1735188 | 2012-05-23 07:58:00 +0000 | [diff] [blame] | 261 | && !is_cdp_packet((uchar *)rx)) |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 262 | rx = NULL; |
| 263 | #endif |
| 264 | /* |
| 265 | * Pass the packet up to the protocol layers. |
| 266 | */ |
| 267 | if (rx != NULL) |
| 268 | NetReceive (rx, length); |
| 269 | } |
| 270 | |
| 271 | /* Give the buffer back to the FEC. */ |
| 272 | rtx->rxbd[rxIdx].cbd_datlen = 0; |
| 273 | |
| 274 | /* wrap around buffer index when necessary */ |
| 275 | if ((rxIdx + 1) >= PKTBUFSRX) { |
| 276 | rtx->rxbd[PKTBUFSRX - 1].cbd_sc = |
| 277 | (BD_ENET_RX_WRAP | BD_ENET_RX_EMPTY); |
| 278 | rxIdx = 0; |
| 279 | } else { |
| 280 | rtx->rxbd[rxIdx].cbd_sc = BD_ENET_RX_EMPTY; |
| 281 | rxIdx++; |
| 282 | } |
| 283 | |
| 284 | __asm__ ("eieio"); |
| 285 | |
| 286 | /* Try to fill Buffer Descriptors */ |
| 287 | fecp->fec_r_des_active = 0x01000000; /* Descriptor polling active */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 288 | } |
| 289 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 290 | return length; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | /************************************************************** |
| 294 | * |
| 295 | * FEC Ethernet Initialization Routine |
| 296 | * |
| 297 | *************************************************************/ |
| 298 | |
| 299 | #define FEC_ECNTRL_PINMUX 0x00000004 |
| 300 | #define FEC_ECNTRL_ETHER_EN 0x00000002 |
| 301 | #define FEC_ECNTRL_RESET 0x00000001 |
| 302 | |
| 303 | #define FEC_RCNTRL_BC_REJ 0x00000010 |
| 304 | #define FEC_RCNTRL_PROM 0x00000008 |
| 305 | #define FEC_RCNTRL_MII_MODE 0x00000004 |
| 306 | #define FEC_RCNTRL_DRT 0x00000002 |
| 307 | #define FEC_RCNTRL_LOOP 0x00000001 |
| 308 | |
| 309 | #define FEC_TCNTRL_FDEN 0x00000004 |
| 310 | #define FEC_TCNTRL_HBC 0x00000002 |
| 311 | #define FEC_TCNTRL_GTS 0x00000001 |
| 312 | |
| 313 | #define FEC_RESET_DELAY 50 |
| 314 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 315 | #if defined(CONFIG_RMII) |
| 316 | |
| 317 | static inline void fec_10Mbps(struct eth_device *dev) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 318 | { |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 319 | struct ether_fcc_info_s *efis = dev->priv; |
| 320 | int fecidx = efis->ether_index; |
| 321 | uint mask = (fecidx == 0) ? 0x0000010 : 0x0000008; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 322 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 323 | if ((unsigned int)fecidx >= 2) |
| 324 | hang(); |
| 325 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 326 | ((volatile immap_t *)CONFIG_SYS_IMMR)->im_cpm.cp_cptr |= mask; |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | static inline void fec_100Mbps(struct eth_device *dev) |
| 330 | { |
| 331 | struct ether_fcc_info_s *efis = dev->priv; |
| 332 | int fecidx = efis->ether_index; |
| 333 | uint mask = (fecidx == 0) ? 0x0000010 : 0x0000008; |
| 334 | |
| 335 | if ((unsigned int)fecidx >= 2) |
| 336 | hang(); |
| 337 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 338 | ((volatile immap_t *)CONFIG_SYS_IMMR)->im_cpm.cp_cptr &= ~mask; |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 339 | } |
| 340 | |
| 341 | #endif |
| 342 | |
| 343 | static inline void fec_full_duplex(struct eth_device *dev) |
| 344 | { |
| 345 | struct ether_fcc_info_s *efis = dev->priv; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 346 | volatile fec_t *fecp = (volatile fec_t *)(CONFIG_SYS_IMMR + efis->fecp_offset); |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 347 | |
| 348 | fecp->fec_r_cntrl &= ~FEC_RCNTRL_DRT; |
| 349 | fecp->fec_x_cntrl |= FEC_TCNTRL_FDEN; /* FD enable */ |
| 350 | } |
| 351 | |
| 352 | static inline void fec_half_duplex(struct eth_device *dev) |
| 353 | { |
| 354 | struct ether_fcc_info_s *efis = dev->priv; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 355 | volatile fec_t *fecp = (volatile fec_t *)(CONFIG_SYS_IMMR + efis->fecp_offset); |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 356 | |
| 357 | fecp->fec_r_cntrl |= FEC_RCNTRL_DRT; |
| 358 | fecp->fec_x_cntrl &= ~FEC_TCNTRL_FDEN; /* FD disable */ |
| 359 | } |
| 360 | |
| 361 | static void fec_pin_init(int fecidx) |
| 362 | { |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 363 | bd_t *bd = gd->bd; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 364 | volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR; |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 365 | |
| 366 | /* |
| 367 | * Set MII speed to 2.5 MHz or slightly below. |
Wolfgang Denk | 90357f1 | 2011-11-04 15:55:21 +0000 | [diff] [blame] | 368 | * |
| 369 | * According to the MPC860T (Rev. D) Fast ethernet controller user |
| 370 | * manual (6.2.14), |
| 371 | * the MII management interface clock must be less than or equal |
| 372 | * to 2.5 MHz. |
| 373 | * This MDC frequency is equal to system clock / (2 * MII_SPEED). |
| 374 | * Then MII_SPEED = system_clock / 2 * 2,5 MHz. |
Markus Klotzbuecher | d6cc73e | 2006-07-12 09:08:36 +0200 | [diff] [blame] | 375 | * |
| 376 | * All MII configuration is done via FEC1 registers: |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 377 | */ |
Markus Klotzbuecher | d6cc73e | 2006-07-12 09:08:36 +0200 | [diff] [blame] | 378 | immr->im_cpm.cp_fec1.fec_mii_speed = ((bd->bi_intfreq + 4999999) / 5000000) << 1; |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 379 | |
wdenk | 1114257 | 2004-06-06 21:35:06 +0000 | [diff] [blame] | 380 | #if defined(CONFIG_MPC885_FAMILY) && defined(WANT_MII) |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 381 | /* use MDC for MII */ |
| 382 | immr->im_ioport.iop_pdpar |= 0x0080; |
| 383 | immr->im_ioport.iop_pddir &= ~0x0080; |
| 384 | #endif |
| 385 | |
| 386 | if (fecidx == 0) { |
| 387 | #if defined(CONFIG_ETHER_ON_FEC1) |
| 388 | |
wdenk | 1114257 | 2004-06-06 21:35:06 +0000 | [diff] [blame] | 389 | #if defined(CONFIG_MPC885_FAMILY) /* MPC87x/88x have got 2 FECs and different pinout */ |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 390 | |
| 391 | #if !defined(CONFIG_RMII) |
| 392 | |
| 393 | immr->im_ioport.iop_papar |= 0xf830; |
| 394 | immr->im_ioport.iop_padir |= 0x0830; |
| 395 | immr->im_ioport.iop_padir &= ~0xf000; |
| 396 | |
| 397 | immr->im_cpm.cp_pbpar |= 0x00001001; |
| 398 | immr->im_cpm.cp_pbdir &= ~0x00001001; |
| 399 | |
| 400 | immr->im_ioport.iop_pcpar |= 0x000c; |
| 401 | immr->im_ioport.iop_pcdir &= ~0x000c; |
| 402 | |
| 403 | immr->im_cpm.cp_pepar |= 0x00000003; |
| 404 | immr->im_cpm.cp_pedir |= 0x00000003; |
| 405 | immr->im_cpm.cp_peso &= ~0x00000003; |
| 406 | |
| 407 | immr->im_cpm.cp_cptr &= ~0x00000100; |
| 408 | |
| 409 | #else |
| 410 | |
| 411 | #if !defined(CONFIG_FEC1_PHY_NORXERR) |
| 412 | immr->im_ioport.iop_papar |= 0x1000; |
| 413 | immr->im_ioport.iop_padir &= ~0x1000; |
| 414 | #endif |
| 415 | immr->im_ioport.iop_papar |= 0xe810; |
| 416 | immr->im_ioport.iop_padir |= 0x0810; |
| 417 | immr->im_ioport.iop_padir &= ~0xe000; |
| 418 | |
| 419 | immr->im_cpm.cp_pbpar |= 0x00000001; |
| 420 | immr->im_cpm.cp_pbdir &= ~0x00000001; |
| 421 | |
| 422 | immr->im_cpm.cp_cptr |= 0x00000100; |
| 423 | immr->im_cpm.cp_cptr &= ~0x00000050; |
| 424 | |
| 425 | #endif /* !CONFIG_RMII */ |
| 426 | |
Wolfgang Denk | 1b0757e | 2012-10-24 02:36:15 +0000 | [diff] [blame] | 427 | #elif !defined(CONFIG_ICU862) |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 428 | /* |
| 429 | * Configure all of port D for MII. |
| 430 | */ |
| 431 | immr->im_ioport.iop_pdpar = 0x1fff; |
| 432 | |
| 433 | /* |
| 434 | * Bits moved from Rev. D onward |
| 435 | */ |
| 436 | if ((get_immr(0) & 0xffff) < 0x0501) |
| 437 | immr->im_ioport.iop_pddir = 0x1c58; /* Pre rev. D */ |
| 438 | else |
| 439 | immr->im_ioport.iop_pddir = 0x1fff; /* Rev. D and later */ |
| 440 | #else |
| 441 | /* |
| 442 | * Configure port A for MII. |
| 443 | */ |
| 444 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 445 | #if defined(CONFIG_ICU862) && defined(CONFIG_SYS_DISCOVER_PHY) |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 446 | |
| 447 | /* |
| 448 | * On the ICU862 board the MII-MDC pin is routed to PD8 pin |
| 449 | * * of CPU, so for this board we need to configure Utopia and |
| 450 | * * enable PD8 to MII-MDC function |
| 451 | */ |
| 452 | immr->im_ioport.iop_pdpar |= 0x4080; |
| 453 | #endif |
| 454 | |
| 455 | /* |
| 456 | * Has Utopia been configured? |
| 457 | */ |
| 458 | if (immr->im_ioport.iop_pdpar & (0x8000 >> 1)) { |
| 459 | /* |
| 460 | * YES - Use MUXED mode for UTOPIA bus. |
| 461 | * This frees Port A for use by MII (see 862UM table 41-6). |
| 462 | */ |
| 463 | immr->im_ioport.utmode &= ~0x80; |
| 464 | } else { |
| 465 | /* |
| 466 | * NO - set SPLIT mode for UTOPIA bus. |
| 467 | * |
| 468 | * This doesn't really effect UTOPIA (which isn't |
| 469 | * enabled anyway) but just tells the 862 |
| 470 | * to use port A for MII (see 862UM table 41-6). |
| 471 | */ |
| 472 | immr->im_ioport.utmode |= 0x80; |
| 473 | } |
| 474 | #endif /* !defined(CONFIG_ICU862) */ |
| 475 | |
| 476 | #endif /* CONFIG_ETHER_ON_FEC1 */ |
| 477 | } else if (fecidx == 1) { |
| 478 | |
| 479 | #if defined(CONFIG_ETHER_ON_FEC2) |
| 480 | |
wdenk | 1114257 | 2004-06-06 21:35:06 +0000 | [diff] [blame] | 481 | #if defined(CONFIG_MPC885_FAMILY) /* MPC87x/88x have got 2 FECs and different pinout */ |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 482 | |
| 483 | #if !defined(CONFIG_RMII) |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 484 | immr->im_cpm.cp_pepar |= 0x0003fffc; |
| 485 | immr->im_cpm.cp_pedir |= 0x0003fffc; |
| 486 | immr->im_cpm.cp_peso &= ~0x000087fc; |
| 487 | immr->im_cpm.cp_peso |= 0x00037800; |
| 488 | |
| 489 | immr->im_cpm.cp_cptr &= ~0x00000080; |
| 490 | #else |
| 491 | |
| 492 | #if !defined(CONFIG_FEC2_PHY_NORXERR) |
| 493 | immr->im_cpm.cp_pepar |= 0x00000010; |
| 494 | immr->im_cpm.cp_pedir |= 0x00000010; |
| 495 | immr->im_cpm.cp_peso &= ~0x00000010; |
| 496 | #endif |
| 497 | immr->im_cpm.cp_pepar |= 0x00039620; |
| 498 | immr->im_cpm.cp_pedir |= 0x00039620; |
| 499 | immr->im_cpm.cp_peso |= 0x00031000; |
| 500 | immr->im_cpm.cp_peso &= ~0x00008620; |
| 501 | |
| 502 | immr->im_cpm.cp_cptr |= 0x00000080; |
| 503 | immr->im_cpm.cp_cptr &= ~0x00000028; |
| 504 | #endif /* CONFIG_RMII */ |
| 505 | |
wdenk | 1114257 | 2004-06-06 21:35:06 +0000 | [diff] [blame] | 506 | #endif /* CONFIG_MPC885_FAMILY */ |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 507 | |
| 508 | #endif /* CONFIG_ETHER_ON_FEC2 */ |
| 509 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 510 | } |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 511 | } |
| 512 | |
Guennadi Liakhovetski | d197ffd | 2007-11-29 21:15:56 +0100 | [diff] [blame] | 513 | static int fec_reset(volatile fec_t *fecp) |
| 514 | { |
| 515 | int i; |
| 516 | |
| 517 | /* Whack a reset. |
| 518 | * A delay is required between a reset of the FEC block and |
| 519 | * initialization of other FEC registers because the reset takes |
| 520 | * some time to complete. If you don't delay, subsequent writes |
| 521 | * to FEC registers might get killed by the reset routine which is |
| 522 | * still in progress. |
| 523 | */ |
| 524 | |
| 525 | fecp->fec_ecntrl = FEC_ECNTRL_PINMUX | FEC_ECNTRL_RESET; |
| 526 | for (i = 0; |
| 527 | (fecp->fec_ecntrl & FEC_ECNTRL_RESET) && (i < FEC_RESET_DELAY); |
| 528 | ++i) { |
| 529 | udelay (1); |
| 530 | } |
| 531 | if (i == FEC_RESET_DELAY) |
| 532 | return -1; |
| 533 | |
| 534 | return 0; |
| 535 | } |
| 536 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 537 | static int fec_init (struct eth_device *dev, bd_t * bd) |
| 538 | { |
| 539 | struct ether_fcc_info_s *efis = dev->priv; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 540 | volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR; |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 541 | volatile fec_t *fecp = |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 542 | (volatile fec_t *) (CONFIG_SYS_IMMR + efis->fecp_offset); |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 543 | int i; |
| 544 | |
Guennadi Liakhovetski | d197ffd | 2007-11-29 21:15:56 +0100 | [diff] [blame] | 545 | #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) |
| 546 | /* the MII interface is connected to FEC1 |
| 547 | * so for the miiphy_xxx function to work we must |
| 548 | * call mii_init since fec_halt messes the thing up |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 549 | */ |
Guennadi Liakhovetski | d197ffd | 2007-11-29 21:15:56 +0100 | [diff] [blame] | 550 | if (efis->ether_index != 0) |
| 551 | __mii_init(); |
| 552 | #endif |
| 553 | |
| 554 | if (fec_reset(fecp) < 0) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 555 | printf ("FEC_RESET_DELAY timeout\n"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 556 | |
| 557 | /* We use strictly polling mode only |
| 558 | */ |
| 559 | fecp->fec_imask = 0; |
| 560 | |
| 561 | /* Clear any pending interrupt |
| 562 | */ |
| 563 | fecp->fec_ievent = 0xffc0; |
| 564 | |
| 565 | /* No need to set the IVEC register */ |
| 566 | |
| 567 | /* Set station address |
| 568 | */ |
Guennadi Liakhovetski | d197ffd | 2007-11-29 21:15:56 +0100 | [diff] [blame] | 569 | #define ea dev->enetaddr |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 570 | fecp->fec_addr_low = (ea[0] << 24) | (ea[1] << 16) | (ea[2] << 8) | (ea[3]); |
| 571 | fecp->fec_addr_high = (ea[4] << 8) | (ea[5]); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 572 | #undef ea |
| 573 | |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 574 | #if defined(CONFIG_CMD_CDP) |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 575 | /* |
| 576 | * Turn on multicast address hash table |
| 577 | */ |
| 578 | fecp->fec_hash_table_high = 0xffffffff; |
| 579 | fecp->fec_hash_table_low = 0xffffffff; |
| 580 | #else |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 581 | /* Clear multicast address hash table |
| 582 | */ |
| 583 | fecp->fec_hash_table_high = 0; |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 584 | fecp->fec_hash_table_low = 0; |
| 585 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 586 | |
| 587 | /* Set maximum receive buffer size. |
| 588 | */ |
| 589 | fecp->fec_r_buff_size = PKT_MAXBLR_SIZE; |
| 590 | |
| 591 | /* Set maximum frame length |
| 592 | */ |
| 593 | fecp->fec_r_hash = PKT_MAXBUF_SIZE; |
| 594 | |
| 595 | /* |
| 596 | * Setup Buffers and Buffer Desriptors |
| 597 | */ |
| 598 | rxIdx = 0; |
| 599 | txIdx = 0; |
| 600 | |
| 601 | if (!rtx) { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 602 | #ifdef CONFIG_SYS_ALLOC_DPRAM |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 603 | rtx = (RTXBD *) (immr->im_cpm.cp_dpmem + |
| 604 | dpram_alloc_align (sizeof (RTXBD), 8)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 605 | #else |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 606 | rtx = (RTXBD *) (immr->im_cpm.cp_dpmem + CPM_FEC_BASE); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 607 | #endif |
| 608 | } |
| 609 | /* |
| 610 | * Setup Receiver Buffer Descriptors (13.14.24.18) |
| 611 | * Settings: |
| 612 | * Empty, Wrap |
| 613 | */ |
| 614 | for (i = 0; i < PKTBUFSRX; i++) { |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 615 | rtx->rxbd[i].cbd_sc = BD_ENET_RX_EMPTY; |
| 616 | rtx->rxbd[i].cbd_datlen = 0; /* Reset */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 617 | rtx->rxbd[i].cbd_bufaddr = (uint) NetRxPackets[i]; |
| 618 | } |
| 619 | rtx->rxbd[PKTBUFSRX - 1].cbd_sc |= BD_ENET_RX_WRAP; |
| 620 | |
| 621 | /* |
| 622 | * Setup Ethernet Transmitter Buffer Descriptors (13.14.24.19) |
| 623 | * Settings: |
| 624 | * Last, Tx CRC |
| 625 | */ |
| 626 | for (i = 0; i < TX_BUF_CNT; i++) { |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 627 | rtx->txbd[i].cbd_sc = BD_ENET_TX_LAST | BD_ENET_TX_TC; |
| 628 | rtx->txbd[i].cbd_datlen = 0; /* Reset */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 629 | rtx->txbd[i].cbd_bufaddr = (uint) (&txbuf[0]); |
| 630 | } |
| 631 | rtx->txbd[TX_BUF_CNT - 1].cbd_sc |= BD_ENET_TX_WRAP; |
| 632 | |
| 633 | /* Set receive and transmit descriptor base |
| 634 | */ |
| 635 | fecp->fec_r_des_start = (unsigned int) (&rtx->rxbd[0]); |
| 636 | fecp->fec_x_des_start = (unsigned int) (&rtx->txbd[0]); |
| 637 | |
| 638 | /* Enable MII mode |
| 639 | */ |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 640 | #if 0 /* Full duplex mode */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 641 | fecp->fec_r_cntrl = FEC_RCNTRL_MII_MODE; |
| 642 | fecp->fec_x_cntrl = FEC_TCNTRL_FDEN; |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 643 | #else /* Half duplex mode */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 644 | fecp->fec_r_cntrl = FEC_RCNTRL_MII_MODE | FEC_RCNTRL_DRT; |
| 645 | fecp->fec_x_cntrl = 0; |
| 646 | #endif |
| 647 | |
| 648 | /* Enable big endian and don't care about SDMA FC. |
| 649 | */ |
| 650 | fecp->fec_fun_code = 0x78000000; |
| 651 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 652 | /* |
| 653 | * Setup the pin configuration of the FEC |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 654 | */ |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 655 | fec_pin_init (efis->ether_index); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 656 | |
| 657 | rxIdx = 0; |
| 658 | txIdx = 0; |
| 659 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 660 | /* |
| 661 | * Now enable the transmit and receive processing |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 662 | */ |
| 663 | fecp->fec_ecntrl = FEC_ECNTRL_PINMUX | FEC_ECNTRL_ETHER_EN; |
| 664 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 665 | if (efis->phy_addr == -1) { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 666 | #ifdef CONFIG_SYS_DISCOVER_PHY |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 667 | /* |
| 668 | * wait for the PHY to wake up after reset |
| 669 | */ |
| 670 | efis->actual_phy_addr = mii_discover_phy (dev); |
wdenk | 62b4ac9 | 2004-05-05 08:31:53 +0000 | [diff] [blame] | 671 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 672 | if (efis->actual_phy_addr == -1) { |
| 673 | printf ("Unable to discover phy!\n"); |
Ben Warren | 422b1a0 | 2008-01-09 18:15:53 -0500 | [diff] [blame] | 674 | return -1; |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 675 | } |
wdenk | 62b4ac9 | 2004-05-05 08:31:53 +0000 | [diff] [blame] | 676 | #else |
| 677 | efis->actual_phy_addr = -1; |
| 678 | #endif |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 679 | } else { |
| 680 | efis->actual_phy_addr = efis->phy_addr; |
| 681 | } |
Guennadi Liakhovetski | d197ffd | 2007-11-29 21:15:56 +0100 | [diff] [blame] | 682 | |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 683 | #if defined(CONFIG_MII) && defined(CONFIG_RMII) |
| 684 | /* |
| 685 | * adapt the RMII speed to the speed of the phy |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 686 | */ |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 687 | if (miiphy_speed (dev->name, efis->actual_phy_addr) == _100BASET) { |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 688 | fec_100Mbps (dev); |
| 689 | } else { |
| 690 | fec_10Mbps (dev); |
| 691 | } |
| 692 | #endif |
| 693 | |
| 694 | #if defined(CONFIG_MII) |
| 695 | /* |
| 696 | * adapt to the half/full speed settings |
| 697 | */ |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 698 | if (miiphy_duplex (dev->name, efis->actual_phy_addr) == FULL) { |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 699 | fec_full_duplex (dev); |
| 700 | } else { |
| 701 | fec_half_duplex (dev); |
| 702 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 703 | #endif |
| 704 | |
| 705 | /* And last, try to fill Rx Buffer Descriptors */ |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 706 | fecp->fec_r_des_active = 0x01000000; /* Descriptor polling active */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 707 | |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 708 | efis->initialized = 1; |
| 709 | |
Ben Warren | 422b1a0 | 2008-01-09 18:15:53 -0500 | [diff] [blame] | 710 | return 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 711 | } |
| 712 | |
| 713 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 714 | static void fec_halt(struct eth_device* dev) |
| 715 | { |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 716 | struct ether_fcc_info_s *efis = dev->priv; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 717 | volatile fec_t *fecp = (volatile fec_t *)(CONFIG_SYS_IMMR + efis->fecp_offset); |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 718 | int i; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 719 | |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 720 | /* avoid halt if initialized; mii gets stuck otherwise */ |
| 721 | if (!efis->initialized) |
| 722 | return; |
| 723 | |
| 724 | /* Whack a reset. |
| 725 | * A delay is required between a reset of the FEC block and |
| 726 | * initialization of other FEC registers because the reset takes |
| 727 | * some time to complete. If you don't delay, subsequent writes |
| 728 | * to FEC registers might get killed by the reset routine which is |
| 729 | * still in progress. |
| 730 | */ |
| 731 | |
| 732 | fecp->fec_ecntrl = FEC_ECNTRL_PINMUX | FEC_ECNTRL_RESET; |
| 733 | for (i = 0; |
| 734 | (fecp->fec_ecntrl & FEC_ECNTRL_RESET) && (i < FEC_RESET_DELAY); |
| 735 | ++i) { |
| 736 | udelay (1); |
| 737 | } |
| 738 | if (i == FEC_RESET_DELAY) { |
| 739 | printf ("FEC_RESET_DELAY timeout\n"); |
| 740 | return; |
| 741 | } |
| 742 | |
| 743 | efis->initialized = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 744 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 745 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 746 | #if defined(CONFIG_SYS_DISCOVER_PHY) || defined(CONFIG_MII) || defined(CONFIG_CMD_MII) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 747 | |
| 748 | /* Make MII read/write commands for the FEC. |
| 749 | */ |
| 750 | |
| 751 | #define mk_mii_read(ADDR, REG) (0x60020000 | ((ADDR << 23) | \ |
| 752 | (REG & 0x1f) << 18)) |
| 753 | |
| 754 | #define mk_mii_write(ADDR, REG, VAL) (0x50020000 | ((ADDR << 23) | \ |
| 755 | (REG & 0x1f) << 18) | \ |
| 756 | (VAL & 0xffff)) |
| 757 | |
| 758 | /* Interrupt events/masks. |
| 759 | */ |
| 760 | #define FEC_ENET_HBERR ((uint)0x80000000) /* Heartbeat error */ |
| 761 | #define FEC_ENET_BABR ((uint)0x40000000) /* Babbling receiver */ |
| 762 | #define FEC_ENET_BABT ((uint)0x20000000) /* Babbling transmitter */ |
| 763 | #define FEC_ENET_GRA ((uint)0x10000000) /* Graceful stop complete */ |
| 764 | #define FEC_ENET_TXF ((uint)0x08000000) /* Full frame transmitted */ |
| 765 | #define FEC_ENET_TXB ((uint)0x04000000) /* A buffer was transmitted */ |
| 766 | #define FEC_ENET_RXF ((uint)0x02000000) /* Full frame received */ |
| 767 | #define FEC_ENET_RXB ((uint)0x01000000) /* A buffer was received */ |
| 768 | #define FEC_ENET_MII ((uint)0x00800000) /* MII interrupt */ |
| 769 | #define FEC_ENET_EBERR ((uint)0x00400000) /* SDMA bus error */ |
| 770 | |
| 771 | /* PHY identification |
| 772 | */ |
| 773 | #define PHY_ID_LXT970 0x78100000 /* LXT970 */ |
| 774 | #define PHY_ID_LXT971 0x001378e0 /* LXT971 and 972 */ |
| 775 | #define PHY_ID_82555 0x02a80150 /* Intel 82555 */ |
| 776 | #define PHY_ID_QS6612 0x01814400 /* QS6612 */ |
| 777 | #define PHY_ID_AMD79C784 0x00225610 /* AMD 79C784 */ |
| 778 | #define PHY_ID_LSI80225 0x0016f870 /* LSI 80225 */ |
| 779 | #define PHY_ID_LSI80225B 0x0016f880 /* LSI 80225/B */ |
wdenk | 180d3f7 | 2004-01-04 16:28:35 +0000 | [diff] [blame] | 780 | #define PHY_ID_DM9161 0x0181B880 /* Davicom DM9161 */ |
Markus Klotzbuecher | b02d017 | 2006-07-12 08:48:24 +0200 | [diff] [blame] | 781 | #define PHY_ID_KSM8995M 0x00221450 /* MICREL KS8995MA */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 782 | |
| 783 | /* send command to phy using mii, wait for result */ |
| 784 | static uint |
| 785 | mii_send(uint mii_cmd) |
| 786 | { |
| 787 | uint mii_reply; |
| 788 | volatile fec_t *ep; |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 789 | int cnt; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 790 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 791 | ep = &(((immap_t *)CONFIG_SYS_IMMR)->im_cpm.cp_fec); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 792 | |
| 793 | ep->fec_mii_data = mii_cmd; /* command to phy */ |
| 794 | |
| 795 | /* wait for mii complete */ |
wdenk | c26e454 | 2004-04-18 10:13:26 +0000 | [diff] [blame] | 796 | cnt = 0; |
| 797 | while (!(ep->fec_ievent & FEC_ENET_MII)) { |
| 798 | if (++cnt > 1000) { |
| 799 | printf("mii_send STUCK!\n"); |
| 800 | break; |
| 801 | } |
| 802 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 803 | mii_reply = ep->fec_mii_data; /* result from phy */ |
| 804 | ep->fec_ievent = FEC_ENET_MII; /* clear MII complete */ |
| 805 | #if 0 |
| 806 | printf("%s[%d] %s: sent=0x%8.8x, reply=0x%8.8x\n", |
| 807 | __FILE__,__LINE__,__FUNCTION__,mii_cmd,mii_reply); |
| 808 | #endif |
| 809 | return (mii_reply & 0xffff); /* data read from phy */ |
| 810 | } |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 811 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 812 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 813 | #if defined(CONFIG_SYS_DISCOVER_PHY) |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 814 | static int mii_discover_phy(struct eth_device *dev) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 815 | { |
| 816 | #define MAX_PHY_PASSES 11 |
| 817 | uint phyno; |
| 818 | int pass; |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 819 | uint phytype; |
| 820 | int phyaddr; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 821 | |
| 822 | phyaddr = -1; /* didn't find a PHY yet */ |
| 823 | for (pass = 1; pass <= MAX_PHY_PASSES && phyaddr < 0; ++pass) { |
| 824 | if (pass > 1) { |
| 825 | /* PHY may need more time to recover from reset. |
| 826 | * The LXT970 needs 50ms typical, no maximum is |
| 827 | * specified, so wait 10ms before try again. |
| 828 | * With 11 passes this gives it 100ms to wake up. |
| 829 | */ |
| 830 | udelay(10000); /* wait 10ms */ |
| 831 | } |
| 832 | for (phyno = 0; phyno < 32 && phyaddr < 0; ++phyno) { |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 833 | phytype = mii_send(mk_mii_read(phyno, MII_PHYSID2)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 834 | #ifdef ET_DEBUG |
| 835 | printf("PHY type 0x%x pass %d type ", phytype, pass); |
| 836 | #endif |
| 837 | if (phytype != 0xffff) { |
| 838 | phyaddr = phyno; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 839 | phytype |= mii_send(mk_mii_read(phyno, |
Mike Frysinger | 8ef583a | 2010-12-23 15:40:12 -0500 | [diff] [blame] | 840 | MII_PHYSID1)) << 16; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 841 | |
| 842 | #ifdef ET_DEBUG |
| 843 | printf("PHY @ 0x%x pass %d type ",phyno,pass); |
| 844 | switch (phytype & 0xfffffff0) { |
| 845 | case PHY_ID_LXT970: |
| 846 | printf("LXT970\n"); |
| 847 | break; |
| 848 | case PHY_ID_LXT971: |
| 849 | printf("LXT971\n"); |
| 850 | break; |
| 851 | case PHY_ID_82555: |
| 852 | printf("82555\n"); |
| 853 | break; |
| 854 | case PHY_ID_QS6612: |
| 855 | printf("QS6612\n"); |
| 856 | break; |
| 857 | case PHY_ID_AMD79C784: |
| 858 | printf("AMD79C784\n"); |
| 859 | break; |
| 860 | case PHY_ID_LSI80225B: |
| 861 | printf("LSI L80225/B\n"); |
| 862 | break; |
wdenk | 180d3f7 | 2004-01-04 16:28:35 +0000 | [diff] [blame] | 863 | case PHY_ID_DM9161: |
| 864 | printf("Davicom DM9161\n"); |
| 865 | break; |
Markus Klotzbuecher | b02d017 | 2006-07-12 08:48:24 +0200 | [diff] [blame] | 866 | case PHY_ID_KSM8995M: |
| 867 | printf("MICREL KS8995M\n"); |
| 868 | break; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 869 | default: |
| 870 | printf("0x%08x\n", phytype); |
| 871 | break; |
| 872 | } |
| 873 | #endif |
| 874 | } |
| 875 | } |
| 876 | } |
| 877 | if (phyaddr < 0) { |
| 878 | printf("No PHY device found.\n"); |
| 879 | } |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 880 | return phyaddr; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 881 | } |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 882 | #endif /* CONFIG_SYS_DISCOVER_PHY */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 883 | |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 884 | #if (defined(CONFIG_MII) || defined(CONFIG_CMD_MII)) && !defined(CONFIG_BITBANGMII) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 885 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 886 | /**************************************************************************** |
Guennadi Liakhovetski | d197ffd | 2007-11-29 21:15:56 +0100 | [diff] [blame] | 887 | * mii_init -- Initialize the MII via FEC 1 for MII command without ethernet |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 888 | * This function is a subset of eth_init |
| 889 | **************************************************************************** |
| 890 | */ |
Guennadi Liakhovetski | d197ffd | 2007-11-29 21:15:56 +0100 | [diff] [blame] | 891 | static void __mii_init(void) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 892 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 893 | volatile immap_t *immr = (immap_t *) CONFIG_SYS_IMMR; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 894 | volatile fec_t *fecp = &(immr->im_cpm.cp_fec); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 895 | |
Guennadi Liakhovetski | d197ffd | 2007-11-29 21:15:56 +0100 | [diff] [blame] | 896 | if (fec_reset(fecp) < 0) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 897 | printf ("FEC_RESET_DELAY timeout\n"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 898 | |
| 899 | /* We use strictly polling mode only |
| 900 | */ |
| 901 | fecp->fec_imask = 0; |
| 902 | |
| 903 | /* Clear any pending interrupt |
| 904 | */ |
| 905 | fecp->fec_ievent = 0xffc0; |
| 906 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 907 | /* Now enable the transmit and receive processing |
| 908 | */ |
| 909 | fecp->fec_ecntrl = FEC_ECNTRL_PINMUX | FEC_ECNTRL_ETHER_EN; |
Guennadi Liakhovetski | d197ffd | 2007-11-29 21:15:56 +0100 | [diff] [blame] | 910 | } |
| 911 | |
| 912 | void mii_init (void) |
| 913 | { |
| 914 | int i; |
| 915 | |
| 916 | __mii_init(); |
| 917 | |
| 918 | /* Setup the pin configuration of the FEC(s) |
| 919 | */ |
| 920 | for (i = 0; i < sizeof(ether_fcc_info) / sizeof(ether_fcc_info[0]); i++) |
| 921 | fec_pin_init(ether_fcc_info[i].ether_index); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 922 | } |
wdenk | a6ab4bf | 2004-04-15 21:31:56 +0000 | [diff] [blame] | 923 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 924 | /***************************************************************************** |
| 925 | * Read and write a MII PHY register, routines used by MII Utilities |
| 926 | * |
| 927 | * FIXME: These routines are expected to return 0 on success, but mii_send |
| 928 | * does _not_ return an error code. Maybe 0xFFFF means error, i.e. |
| 929 | * no PHY connected... |
| 930 | * For now always return 0. |
| 931 | * FIXME: These routines only work after calling eth_init() at least once! |
| 932 | * Otherwise they hang in mii_send() !!! Sorry! |
| 933 | *****************************************************************************/ |
| 934 | |
Mike Frysinger | 5700bb6 | 2010-07-27 18:35:08 -0400 | [diff] [blame] | 935 | int fec8xx_miiphy_read(const char *devname, unsigned char addr, |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 936 | unsigned char reg, unsigned short *value) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 937 | { |
| 938 | short rdreg; /* register working value */ |
| 939 | |
| 940 | #ifdef MII_DEBUG |
| 941 | printf ("miiphy_read(0x%x) @ 0x%x = ", reg, addr); |
| 942 | #endif |
| 943 | rdreg = mii_send(mk_mii_read(addr, reg)); |
| 944 | |
| 945 | *value = rdreg; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 946 | #ifdef MII_DEBUG |
| 947 | printf ("0x%04x\n", *value); |
| 948 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 949 | return 0; |
| 950 | } |
| 951 | |
Mike Frysinger | 5700bb6 | 2010-07-27 18:35:08 -0400 | [diff] [blame] | 952 | int fec8xx_miiphy_write(const char *devname, unsigned char addr, |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 953 | unsigned char reg, unsigned short value) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 954 | { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 955 | #ifdef MII_DEBUG |
| 956 | printf ("miiphy_write(0x%x) @ 0x%x = ", reg, addr); |
| 957 | #endif |
Wolfgang Denk | 90357f1 | 2011-11-04 15:55:21 +0000 | [diff] [blame] | 958 | (void)mii_send(mk_mii_write(addr, reg, value)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 959 | |
| 960 | #ifdef MII_DEBUG |
| 961 | printf ("0x%04x\n", value); |
| 962 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 963 | return 0; |
| 964 | } |
Jon Loeliger | 4431283 | 2007-07-09 19:06:00 -0500 | [diff] [blame] | 965 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 966 | |
Jon Loeliger | 068b60a | 2007-07-10 10:27:39 -0500 | [diff] [blame] | 967 | #endif |