wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1 | /* |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 2 | * Freescale Three Speed Ethernet Controller driver |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 3 | * |
| 4 | * This software may be used and distributed according to the |
| 5 | * terms of the GNU Public License, Version 2, incorporated |
| 6 | * herein by reference. |
| 7 | * |
Andy Fleming | 81f481c | 2007-04-23 02:24:28 -0500 | [diff] [blame] | 8 | * Copyright 2004, 2007 Freescale Semiconductor, Inc. |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 9 | * (C) Copyright 2003, Motorola, Inc. |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 10 | * author Andy Fleming |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | #include <config.h> |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 15 | #include <common.h> |
| 16 | #include <malloc.h> |
| 17 | #include <net.h> |
| 18 | #include <command.h> |
Andy Fleming | dd3d1f5 | 2008-08-31 16:33:25 -0500 | [diff] [blame] | 19 | #include <tsec.h> |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 20 | |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 21 | #include "miiphy.h" |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 22 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 23 | DECLARE_GLOBAL_DATA_PTR; |
| 24 | |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 25 | #define TX_BUF_CNT 2 |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 26 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 27 | static uint rxIdx; /* index of the current RX buffer */ |
| 28 | static uint txIdx; /* index of the current TX buffer */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 29 | |
| 30 | typedef volatile struct rtxbd { |
| 31 | txbd8_t txbd[TX_BUF_CNT]; |
| 32 | rxbd8_t rxbd[PKTBUFSRX]; |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 33 | } RTXBD; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 34 | |
Andy Fleming | 75b9d4a | 2008-08-31 16:33:26 -0500 | [diff] [blame] | 35 | #define MAXCONTROLLERS (8) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 36 | |
| 37 | static int relocated = 0; |
| 38 | |
| 39 | static struct tsec_private *privlist[MAXCONTROLLERS]; |
Andy Fleming | 75b9d4a | 2008-08-31 16:33:26 -0500 | [diff] [blame] | 40 | static int num_tsecs = 0; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 41 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 42 | #ifdef __GNUC__ |
| 43 | static RTXBD rtx __attribute__ ((aligned(8))); |
| 44 | #else |
| 45 | #error "rtx must be 64-bit aligned" |
| 46 | #endif |
| 47 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 48 | static int tsec_send(struct eth_device *dev, |
| 49 | volatile void *packet, int length); |
| 50 | static int tsec_recv(struct eth_device *dev); |
| 51 | static int tsec_init(struct eth_device *dev, bd_t * bd); |
| 52 | static void tsec_halt(struct eth_device *dev); |
| 53 | static void init_registers(volatile tsec_t * regs); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 54 | static void startup_tsec(struct eth_device *dev); |
| 55 | static int init_phy(struct eth_device *dev); |
| 56 | void write_phy_reg(struct tsec_private *priv, uint regnum, uint value); |
| 57 | uint read_phy_reg(struct tsec_private *priv, uint regnum); |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 58 | struct phy_info *get_phy_info(struct eth_device *dev); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 59 | void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd); |
| 60 | static void adjust_link(struct eth_device *dev); |
| 61 | static void relocate_cmds(void); |
Wolfgang Denk | 409ecdc | 2007-11-18 16:36:27 +0100 | [diff] [blame] | 62 | #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \ |
| 63 | && !defined(BITBANGMII) |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 64 | static int tsec_miiphy_write(char *devname, unsigned char addr, |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 65 | unsigned char reg, unsigned short value); |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 66 | static int tsec_miiphy_read(char *devname, unsigned char addr, |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 67 | unsigned char reg, unsigned short *value); |
Wolfgang Denk | 409ecdc | 2007-11-18 16:36:27 +0100 | [diff] [blame] | 68 | #endif |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 69 | #ifdef CONFIG_MCAST_TFTP |
| 70 | static int tsec_mcast_addr (struct eth_device *dev, u8 mcast_mac, u8 set); |
| 71 | #endif |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 72 | |
Andy Fleming | 75b9d4a | 2008-08-31 16:33:26 -0500 | [diff] [blame] | 73 | /* Default initializations for TSEC controllers. */ |
| 74 | |
| 75 | static struct tsec_info_struct tsec_info[] = { |
| 76 | #ifdef CONFIG_TSEC1 |
| 77 | STD_TSEC_INFO(1), /* TSEC1 */ |
| 78 | #endif |
| 79 | #ifdef CONFIG_TSEC2 |
| 80 | STD_TSEC_INFO(2), /* TSEC2 */ |
| 81 | #endif |
| 82 | #ifdef CONFIG_MPC85XX_FEC |
| 83 | { |
| 84 | .regs = (tsec_t *)(TSEC_BASE_ADDR + 0x2000), |
| 85 | .miiregs = (tsec_t *)(TSEC_BASE_ADDR), |
| 86 | .devname = CONFIG_MPC85XX_FEC_NAME, |
| 87 | .phyaddr = FEC_PHY_ADDR, |
| 88 | .flags = FEC_FLAGS |
| 89 | }, /* FEC */ |
| 90 | #endif |
| 91 | #ifdef CONFIG_TSEC3 |
| 92 | STD_TSEC_INFO(3), /* TSEC3 */ |
| 93 | #endif |
| 94 | #ifdef CONFIG_TSEC4 |
| 95 | STD_TSEC_INFO(4), /* TSEC4 */ |
| 96 | #endif |
| 97 | }; |
| 98 | |
| 99 | int tsec_eth_init(bd_t *bis, struct tsec_info_struct *tsecs, int num) |
| 100 | { |
| 101 | int i; |
| 102 | |
| 103 | for (i = 0; i < num; i++) |
| 104 | tsec_initialize(bis, &tsecs[i]); |
| 105 | |
| 106 | return 0; |
| 107 | } |
| 108 | |
| 109 | int tsec_standard_init(bd_t *bis) |
| 110 | { |
| 111 | return tsec_eth_init(bis, tsec_info, ARRAY_SIZE(tsec_info)); |
| 112 | } |
| 113 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 114 | /* Initialize device structure. Returns success if PHY |
| 115 | * initialization succeeded (i.e. if it recognizes the PHY) |
| 116 | */ |
Andy Fleming | 75b9d4a | 2008-08-31 16:33:26 -0500 | [diff] [blame] | 117 | int tsec_initialize(bd_t * bis, struct tsec_info_struct *tsec_info) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 118 | { |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 119 | struct eth_device *dev; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 120 | int i; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 121 | struct tsec_private *priv; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 122 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 123 | dev = (struct eth_device *)malloc(sizeof *dev); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 124 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 125 | if (NULL == dev) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 126 | return 0; |
| 127 | |
| 128 | memset(dev, 0, sizeof *dev); |
| 129 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 130 | priv = (struct tsec_private *)malloc(sizeof(*priv)); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 131 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 132 | if (NULL == priv) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 133 | return 0; |
| 134 | |
Andy Fleming | 75b9d4a | 2008-08-31 16:33:26 -0500 | [diff] [blame] | 135 | privlist[num_tsecs++] = priv; |
| 136 | priv->regs = tsec_info->regs; |
| 137 | priv->phyregs = tsec_info->miiregs; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 138 | |
Andy Fleming | 75b9d4a | 2008-08-31 16:33:26 -0500 | [diff] [blame] | 139 | priv->phyaddr = tsec_info->phyaddr; |
| 140 | priv->flags = tsec_info->flags; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 141 | |
Andy Fleming | 75b9d4a | 2008-08-31 16:33:26 -0500 | [diff] [blame] | 142 | sprintf(dev->name, tsec_info->devname); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 143 | dev->iobase = 0; |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 144 | dev->priv = priv; |
| 145 | dev->init = tsec_init; |
| 146 | dev->halt = tsec_halt; |
| 147 | dev->send = tsec_send; |
| 148 | dev->recv = tsec_recv; |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 149 | #ifdef CONFIG_MCAST_TFTP |
| 150 | dev->mcast = tsec_mcast_addr; |
| 151 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 152 | |
| 153 | /* Tell u-boot to get the addr from the env */ |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 154 | for (i = 0; i < 6; i++) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 155 | dev->enetaddr[i] = 0; |
| 156 | |
| 157 | eth_register(dev); |
| 158 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 159 | /* Reset the MAC */ |
| 160 | priv->regs->maccfg1 |= MACCFG1_SOFT_RESET; |
Andy Fleming | 9e5be82 | 2009-02-03 18:26:41 -0600 | [diff] [blame] | 161 | udelay(2); /* Soft Reset must be asserted for 3 TX clocks */ |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 162 | priv->regs->maccfg1 &= ~(MACCFG1_SOFT_RESET); |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 163 | |
Jon Loeliger | cb51c0b | 2007-07-09 17:39:42 -0500 | [diff] [blame] | 164 | #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \ |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 165 | && !defined(BITBANGMII) |
| 166 | miiphy_register(dev->name, tsec_miiphy_read, tsec_miiphy_write); |
| 167 | #endif |
| 168 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 169 | /* Try to initialize PHY here, and return */ |
| 170 | return init_phy(dev); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 171 | } |
| 172 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 173 | /* Initializes data structures and registers for the controller, |
wdenk | 9d46ea4 | 2005-03-14 23:56:42 +0000 | [diff] [blame] | 174 | * and brings the interface up. Returns the link status, meaning |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 175 | * that it returns success if the link is up, failure otherwise. |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 176 | * This allows u-boot to find the first active controller. |
| 177 | */ |
| 178 | int tsec_init(struct eth_device *dev, bd_t * bd) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 179 | { |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 180 | uint tempval; |
| 181 | char tmpbuf[MAC_ADDR_LEN]; |
| 182 | int i; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 183 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 184 | volatile tsec_t *regs = priv->regs; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 185 | |
| 186 | /* Make sure the controller is stopped */ |
| 187 | tsec_halt(dev); |
| 188 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 189 | /* Init MACCFG2. Defaults to GMII */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 190 | regs->maccfg2 = MACCFG2_INIT_SETTINGS; |
| 191 | |
| 192 | /* Init ECNTRL */ |
| 193 | regs->ecntrl = ECNTRL_INIT_SETTINGS; |
| 194 | |
| 195 | /* Copy the station address into the address registers. |
| 196 | * Backwards, because little endian MACS are dumb */ |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 197 | for (i = 0; i < MAC_ADDR_LEN; i++) { |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 198 | tmpbuf[MAC_ADDR_LEN - 1 - i] = dev->enetaddr[i]; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 199 | } |
Kim Phillips | 88ad3fd | 2009-07-17 12:17:00 -0500 | [diff] [blame^] | 200 | tempval = (tmpbuf[0] << 24) | (tmpbuf[1] << 16) | (tmpbuf[2] << 8) | |
| 201 | tmpbuf[3]; |
| 202 | |
| 203 | regs->macstnaddr1 = tempval; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 204 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 205 | tempval = *((uint *) (tmpbuf + 4)); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 206 | |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 207 | regs->macstnaddr2 = tempval; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 208 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 209 | /* reset the indices to zero */ |
| 210 | rxIdx = 0; |
| 211 | txIdx = 0; |
| 212 | |
| 213 | /* Clear out (for the most part) the other registers */ |
| 214 | init_registers(regs); |
| 215 | |
| 216 | /* Ready the device for tx/rx */ |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 217 | startup_tsec(dev); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 218 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 219 | /* If there's no link, fail */ |
Ben Warren | 422b1a0 | 2008-01-09 18:15:53 -0500 | [diff] [blame] | 220 | return (priv->link ? 0 : -1); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 221 | } |
| 222 | |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 223 | /* Writes the given phy's reg with value, using the specified MDIO regs */ |
| 224 | static void tsec_local_mdio_write(volatile tsec_t *phyregs, uint addr, |
| 225 | uint reg, uint value) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 226 | { |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 227 | int timeout = 1000000; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 228 | |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 229 | phyregs->miimadd = (addr << 8) | reg; |
| 230 | phyregs->miimcon = value; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 231 | asm("sync"); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 232 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 233 | timeout = 1000000; |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 234 | while ((phyregs->miimind & MIIMIND_BUSY) && timeout--) ; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 235 | } |
| 236 | |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 237 | |
| 238 | /* Provide the default behavior of writing the PHY of this ethernet device */ |
| 239 | #define write_phy_reg(priv, regnum, value) tsec_local_mdio_write(priv->phyregs,priv->phyaddr,regnum,value) |
michael.firth@bt.com | 55fe7c5 | 2008-01-16 11:40:51 +0000 | [diff] [blame] | 240 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 241 | /* Reads register regnum on the device's PHY through the |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 242 | * specified registers. It lowers and raises the read |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 243 | * command, and waits for the data to become valid (miimind |
| 244 | * notvalid bit cleared), and the bus to cease activity (miimind |
| 245 | * busy bit cleared), and then returns the value |
| 246 | */ |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 247 | uint tsec_local_mdio_read(volatile tsec_t *phyregs, uint phyid, uint regnum) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 248 | { |
| 249 | uint value; |
| 250 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 251 | /* Put the address of the phy, and the register |
| 252 | * number into MIIMADD */ |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 253 | phyregs->miimadd = (phyid << 8) | regnum; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 254 | |
| 255 | /* Clear the command register, and wait */ |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 256 | phyregs->miimcom = 0; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 257 | asm("sync"); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 258 | |
| 259 | /* Initiate a read command, and wait */ |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 260 | phyregs->miimcom = MIIM_READ_COMMAND; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 261 | asm("sync"); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 262 | |
| 263 | /* Wait for the the indication that the read is done */ |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 264 | while ((phyregs->miimind & (MIIMIND_NOTVALID | MIIMIND_BUSY))) ; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 265 | |
| 266 | /* Grab the value read from the PHY */ |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 267 | value = phyregs->miimstat; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 268 | |
| 269 | return value; |
| 270 | } |
| 271 | |
michael.firth@bt.com | 55fe7c5 | 2008-01-16 11:40:51 +0000 | [diff] [blame] | 272 | /* #define to provide old read_phy_reg functionality without duplicating code */ |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 273 | #define read_phy_reg(priv,regnum) tsec_local_mdio_read(priv->phyregs,priv->phyaddr,regnum) |
| 274 | |
| 275 | #define TBIANA_SETTINGS ( \ |
| 276 | TBIANA_ASYMMETRIC_PAUSE \ |
| 277 | | TBIANA_SYMMETRIC_PAUSE \ |
| 278 | | TBIANA_FULL_DUPLEX \ |
| 279 | ) |
| 280 | |
| 281 | #define TBICR_SETTINGS ( \ |
| 282 | TBICR_PHY_RESET \ |
| 283 | | TBICR_ANEG_ENABLE \ |
| 284 | | TBICR_FULL_DUPLEX \ |
| 285 | | TBICR_SPEED1_SET \ |
| 286 | ) |
| 287 | /* Configure the TBI for SGMII operation */ |
| 288 | static void tsec_configure_serdes(struct tsec_private *priv) |
| 289 | { |
Peter Tyser | ce47eb4 | 2008-09-16 10:04:47 -0500 | [diff] [blame] | 290 | /* Access TBI PHY registers at given TSEC register offset as opposed to the |
| 291 | * register offset used for external PHY accesses */ |
| 292 | tsec_local_mdio_write(priv->regs, priv->regs->tbipa, TBI_ANA, |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 293 | TBIANA_SETTINGS); |
Peter Tyser | ce47eb4 | 2008-09-16 10:04:47 -0500 | [diff] [blame] | 294 | tsec_local_mdio_write(priv->regs, priv->regs->tbipa, TBI_TBICON, |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 295 | TBICON_CLK_SELECT); |
Peter Tyser | ce47eb4 | 2008-09-16 10:04:47 -0500 | [diff] [blame] | 296 | tsec_local_mdio_write(priv->regs, priv->regs->tbipa, TBI_CR, |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 297 | TBICR_SETTINGS); |
| 298 | } |
michael.firth@bt.com | 55fe7c5 | 2008-01-16 11:40:51 +0000 | [diff] [blame] | 299 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 300 | /* Discover which PHY is attached to the device, and configure it |
| 301 | * properly. If the PHY is not recognized, then return 0 |
| 302 | * (failure). Otherwise, return 1 |
| 303 | */ |
| 304 | static int init_phy(struct eth_device *dev) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 305 | { |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 306 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 307 | struct phy_info *curphy; |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 308 | volatile tsec_t *phyregs = priv->phyregs; |
| 309 | volatile tsec_t *regs = priv->regs; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 310 | |
| 311 | /* Assign a Physical address to the TBI */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 312 | regs->tbipa = CONFIG_SYS_TBIPA_VALUE; |
| 313 | phyregs->tbipa = CONFIG_SYS_TBIPA_VALUE; |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 314 | asm("sync"); |
wdenk | 3dd7f0f | 2005-04-04 23:43:44 +0000 | [diff] [blame] | 315 | |
| 316 | /* Reset MII (due to new addresses) */ |
| 317 | priv->phyregs->miimcfg = MIIMCFG_RESET; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 318 | asm("sync"); |
wdenk | 3dd7f0f | 2005-04-04 23:43:44 +0000 | [diff] [blame] | 319 | priv->phyregs->miimcfg = MIIMCFG_INIT_VALUE; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 320 | asm("sync"); |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 321 | while (priv->phyregs->miimind & MIIMIND_BUSY) ; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 322 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 323 | if (0 == relocated) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 324 | relocate_cmds(); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 325 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 326 | /* Get the cmd structure corresponding to the attached |
| 327 | * PHY */ |
| 328 | curphy = get_phy_info(dev); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 329 | |
Ben Warren | 4653f91 | 2006-10-26 14:38:25 -0400 | [diff] [blame] | 330 | if (curphy == NULL) { |
| 331 | priv->phyinfo = NULL; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 332 | printf("%s: No PHY found\n", dev->name); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 333 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 334 | return 0; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 335 | } |
| 336 | |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 337 | if (regs->ecntrl & ECNTRL_SGMII_MODE) |
| 338 | tsec_configure_serdes(priv); |
| 339 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 340 | priv->phyinfo = curphy; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 341 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 342 | phy_run_commands(priv, priv->phyinfo->config); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 343 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 344 | return 1; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 345 | } |
| 346 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 347 | /* |
| 348 | * Returns which value to write to the control register. |
| 349 | * For 10/100, the value is slightly different |
| 350 | */ |
| 351 | uint mii_cr_init(uint mii_reg, struct tsec_private * priv) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 352 | { |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 353 | if (priv->flags & TSEC_GIGABIT) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 354 | return MIIM_CONTROL_INIT; |
| 355 | else |
| 356 | return MIIM_CR_INIT; |
| 357 | } |
| 358 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 359 | /* Parse the status register for link, and then do |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 360 | * auto-negotiation |
| 361 | */ |
| 362 | uint mii_parse_sr(uint mii_reg, struct tsec_private * priv) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 363 | { |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 364 | /* |
Andy Fleming | 7613afd | 2007-08-15 20:03:44 -0500 | [diff] [blame] | 365 | * Wait if the link is up, and autonegotiation is in progress |
| 366 | * (ie - we're capable and it's not done) |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 367 | */ |
| 368 | mii_reg = read_phy_reg(priv, MIIM_STATUS); |
Andy Fleming | 7613afd | 2007-08-15 20:03:44 -0500 | [diff] [blame] | 369 | if ((mii_reg & MIIM_STATUS_LINK) && (mii_reg & PHY_BMSR_AUTN_ABLE) |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 370 | && !(mii_reg & PHY_BMSR_AUTN_COMP)) { |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 371 | int i = 0; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 372 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 373 | puts("Waiting for PHY auto negotiation to complete"); |
Andy Fleming | 7613afd | 2007-08-15 20:03:44 -0500 | [diff] [blame] | 374 | while (!(mii_reg & PHY_BMSR_AUTN_COMP)) { |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 375 | /* |
| 376 | * Timeout reached ? |
| 377 | */ |
| 378 | if (i > PHY_AUTONEGOTIATE_TIMEOUT) { |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 379 | puts(" TIMEOUT !\n"); |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 380 | priv->link = 0; |
Jin Zhengxiong-R64188 | fcfb9a5 | 2006-06-27 18:12:23 +0800 | [diff] [blame] | 381 | return 0; |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 382 | } |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 383 | |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 384 | if ((i++ % 1000) == 0) { |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 385 | putc('.'); |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 386 | } |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 387 | udelay(1000); /* 1 ms */ |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 388 | mii_reg = read_phy_reg(priv, MIIM_STATUS); |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 389 | } |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 390 | puts(" done\n"); |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 391 | priv->link = 1; |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 392 | udelay(500000); /* another 500 ms (results in faster booting) */ |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 393 | } else { |
Andy Fleming | 7613afd | 2007-08-15 20:03:44 -0500 | [diff] [blame] | 394 | if (mii_reg & MIIM_STATUS_LINK) |
| 395 | priv->link = 1; |
| 396 | else |
| 397 | priv->link = 0; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 398 | } |
| 399 | |
| 400 | return 0; |
| 401 | } |
| 402 | |
David Updegraff | af1c2b8 | 2007-04-20 14:34:48 -0500 | [diff] [blame] | 403 | /* Generic function which updates the speed and duplex. If |
| 404 | * autonegotiation is enabled, it uses the AND of the link |
| 405 | * partner's advertised capabilities and our advertised |
| 406 | * capabilities. If autonegotiation is disabled, we use the |
| 407 | * appropriate bits in the control register. |
| 408 | * |
| 409 | * Stolen from Linux's mii.c and phy_device.c |
| 410 | */ |
| 411 | uint mii_parse_link(uint mii_reg, struct tsec_private *priv) |
| 412 | { |
| 413 | /* We're using autonegotiation */ |
| 414 | if (mii_reg & PHY_BMSR_AUTN_ABLE) { |
| 415 | uint lpa = 0; |
| 416 | uint gblpa = 0; |
| 417 | |
| 418 | /* Check for gigabit capability */ |
| 419 | if (mii_reg & PHY_BMSR_EXT) { |
| 420 | /* We want a list of states supported by |
| 421 | * both PHYs in the link |
| 422 | */ |
| 423 | gblpa = read_phy_reg(priv, PHY_1000BTSR); |
| 424 | gblpa &= read_phy_reg(priv, PHY_1000BTCR) << 2; |
| 425 | } |
| 426 | |
| 427 | /* Set the baseline so we only have to set them |
| 428 | * if they're different |
| 429 | */ |
| 430 | priv->speed = 10; |
| 431 | priv->duplexity = 0; |
| 432 | |
| 433 | /* Check the gigabit fields */ |
| 434 | if (gblpa & (PHY_1000BTSR_1000FD | PHY_1000BTSR_1000HD)) { |
| 435 | priv->speed = 1000; |
| 436 | |
| 437 | if (gblpa & PHY_1000BTSR_1000FD) |
| 438 | priv->duplexity = 1; |
| 439 | |
| 440 | /* We're done! */ |
| 441 | return 0; |
| 442 | } |
| 443 | |
| 444 | lpa = read_phy_reg(priv, PHY_ANAR); |
| 445 | lpa &= read_phy_reg(priv, PHY_ANLPAR); |
| 446 | |
| 447 | if (lpa & (PHY_ANLPAR_TXFD | PHY_ANLPAR_TX)) { |
| 448 | priv->speed = 100; |
| 449 | |
| 450 | if (lpa & PHY_ANLPAR_TXFD) |
| 451 | priv->duplexity = 1; |
| 452 | |
| 453 | } else if (lpa & PHY_ANLPAR_10FD) |
| 454 | priv->duplexity = 1; |
| 455 | } else { |
| 456 | uint bmcr = read_phy_reg(priv, PHY_BMCR); |
| 457 | |
| 458 | priv->speed = 10; |
| 459 | priv->duplexity = 0; |
| 460 | |
| 461 | if (bmcr & PHY_BMCR_DPLX) |
| 462 | priv->duplexity = 1; |
| 463 | |
| 464 | if (bmcr & PHY_BMCR_1000_MBPS) |
| 465 | priv->speed = 1000; |
| 466 | else if (bmcr & PHY_BMCR_100_MBPS) |
| 467 | priv->speed = 100; |
| 468 | } |
| 469 | |
| 470 | return 0; |
| 471 | } |
| 472 | |
Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 473 | /* |
Zach LeRoy | 091dc9f | 2009-05-22 10:26:33 -0500 | [diff] [blame] | 474 | * "Ethernet@Wirespeed" needs to be enabled to achieve link in certain |
| 475 | * circumstances. eg a gigabit TSEC connected to a gigabit switch with |
| 476 | * a 4-wire ethernet cable. Both ends advertise gigabit, but can't |
| 477 | * link. "Ethernet@Wirespeed" reduces advertised speed until link |
| 478 | * can be achieved. |
| 479 | */ |
| 480 | uint mii_BCM54xx_wirespeed(uint mii_reg, struct tsec_private *priv) |
| 481 | { |
| 482 | return (read_phy_reg(priv, mii_reg) & 0x8FFF) | 0x8010; |
| 483 | } |
| 484 | |
| 485 | /* |
Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 486 | * Parse the BCM54xx status register for speed and duplex information. |
| 487 | * The linux sungem_phy has this information, but in a table format. |
| 488 | */ |
| 489 | uint mii_parse_BCM54xx_sr(uint mii_reg, struct tsec_private *priv) |
| 490 | { |
| 491 | |
| 492 | switch((mii_reg & MIIM_BCM54xx_AUXSTATUS_LINKMODE_MASK) >> MIIM_BCM54xx_AUXSTATUS_LINKMODE_SHIFT){ |
| 493 | |
| 494 | case 1: |
| 495 | printf("Enet starting in 10BT/HD\n"); |
| 496 | priv->duplexity = 0; |
| 497 | priv->speed = 10; |
| 498 | break; |
| 499 | |
| 500 | case 2: |
| 501 | printf("Enet starting in 10BT/FD\n"); |
| 502 | priv->duplexity = 1; |
| 503 | priv->speed = 10; |
| 504 | break; |
| 505 | |
| 506 | case 3: |
| 507 | printf("Enet starting in 100BT/HD\n"); |
| 508 | priv->duplexity = 0; |
| 509 | priv->speed = 100; |
| 510 | break; |
| 511 | |
| 512 | case 5: |
| 513 | printf("Enet starting in 100BT/FD\n"); |
| 514 | priv->duplexity = 1; |
| 515 | priv->speed = 100; |
| 516 | break; |
| 517 | |
| 518 | case 6: |
| 519 | printf("Enet starting in 1000BT/HD\n"); |
| 520 | priv->duplexity = 0; |
| 521 | priv->speed = 1000; |
| 522 | break; |
| 523 | |
| 524 | case 7: |
| 525 | printf("Enet starting in 1000BT/FD\n"); |
| 526 | priv->duplexity = 1; |
| 527 | priv->speed = 1000; |
| 528 | break; |
| 529 | |
| 530 | default: |
| 531 | printf("Auto-neg error, defaulting to 10BT/HD\n"); |
| 532 | priv->duplexity = 0; |
| 533 | priv->speed = 10; |
| 534 | break; |
| 535 | } |
| 536 | |
| 537 | return 0; |
| 538 | |
| 539 | } |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 540 | /* Parse the 88E1011's status register for speed and duplex |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 541 | * information |
| 542 | */ |
| 543 | uint mii_parse_88E1011_psr(uint mii_reg, struct tsec_private * priv) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 544 | { |
| 545 | uint speed; |
| 546 | |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 547 | mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS); |
| 548 | |
Andy Fleming | 7613afd | 2007-08-15 20:03:44 -0500 | [diff] [blame] | 549 | if ((mii_reg & MIIM_88E1011_PHYSTAT_LINK) && |
| 550 | !(mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE)) { |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 551 | int i = 0; |
| 552 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 553 | puts("Waiting for PHY realtime link"); |
Andy Fleming | 7613afd | 2007-08-15 20:03:44 -0500 | [diff] [blame] | 554 | while (!(mii_reg & MIIM_88E1011_PHYSTAT_SPDDONE)) { |
| 555 | /* Timeout reached ? */ |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 556 | if (i > PHY_AUTONEGOTIATE_TIMEOUT) { |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 557 | puts(" TIMEOUT !\n"); |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 558 | priv->link = 0; |
| 559 | break; |
| 560 | } |
| 561 | |
| 562 | if ((i++ % 1000) == 0) { |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 563 | putc('.'); |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 564 | } |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 565 | udelay(1000); /* 1 ms */ |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 566 | mii_reg = read_phy_reg(priv, MIIM_88E1011_PHY_STATUS); |
| 567 | } |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 568 | puts(" done\n"); |
| 569 | udelay(500000); /* another 500 ms (results in faster booting) */ |
Andy Fleming | 7613afd | 2007-08-15 20:03:44 -0500 | [diff] [blame] | 570 | } else { |
| 571 | if (mii_reg & MIIM_88E1011_PHYSTAT_LINK) |
| 572 | priv->link = 1; |
| 573 | else |
| 574 | priv->link = 0; |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 575 | } |
| 576 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 577 | if (mii_reg & MIIM_88E1011_PHYSTAT_DUPLEX) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 578 | priv->duplexity = 1; |
| 579 | else |
| 580 | priv->duplexity = 0; |
| 581 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 582 | speed = (mii_reg & MIIM_88E1011_PHYSTAT_SPEED); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 583 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 584 | switch (speed) { |
| 585 | case MIIM_88E1011_PHYSTAT_GBIT: |
| 586 | priv->speed = 1000; |
| 587 | break; |
| 588 | case MIIM_88E1011_PHYSTAT_100: |
| 589 | priv->speed = 100; |
| 590 | break; |
| 591 | default: |
| 592 | priv->speed = 10; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 593 | } |
| 594 | |
| 595 | return 0; |
| 596 | } |
| 597 | |
Dave Liu | 18ee320 | 2008-01-11 18:45:28 +0800 | [diff] [blame] | 598 | /* Parse the RTL8211B's status register for speed and duplex |
| 599 | * information |
| 600 | */ |
| 601 | uint mii_parse_RTL8211B_sr(uint mii_reg, struct tsec_private * priv) |
| 602 | { |
| 603 | uint speed; |
| 604 | |
| 605 | mii_reg = read_phy_reg(priv, MIIM_RTL8211B_PHY_STATUS); |
Anton Vorontsov | c760478 | 2008-03-14 23:20:30 +0300 | [diff] [blame] | 606 | if (!(mii_reg & MIIM_RTL8211B_PHYSTAT_SPDDONE)) { |
Dave Liu | 18ee320 | 2008-01-11 18:45:28 +0800 | [diff] [blame] | 607 | int i = 0; |
| 608 | |
Anton Vorontsov | c760478 | 2008-03-14 23:20:30 +0300 | [diff] [blame] | 609 | /* in case of timeout ->link is cleared */ |
| 610 | priv->link = 1; |
Dave Liu | 18ee320 | 2008-01-11 18:45:28 +0800 | [diff] [blame] | 611 | puts("Waiting for PHY realtime link"); |
| 612 | while (!(mii_reg & MIIM_RTL8211B_PHYSTAT_SPDDONE)) { |
| 613 | /* Timeout reached ? */ |
| 614 | if (i > PHY_AUTONEGOTIATE_TIMEOUT) { |
| 615 | puts(" TIMEOUT !\n"); |
| 616 | priv->link = 0; |
| 617 | break; |
| 618 | } |
| 619 | |
| 620 | if ((i++ % 1000) == 0) { |
| 621 | putc('.'); |
| 622 | } |
| 623 | udelay(1000); /* 1 ms */ |
| 624 | mii_reg = read_phy_reg(priv, MIIM_RTL8211B_PHY_STATUS); |
| 625 | } |
| 626 | puts(" done\n"); |
| 627 | udelay(500000); /* another 500 ms (results in faster booting) */ |
| 628 | } else { |
| 629 | if (mii_reg & MIIM_RTL8211B_PHYSTAT_LINK) |
| 630 | priv->link = 1; |
| 631 | else |
| 632 | priv->link = 0; |
| 633 | } |
| 634 | |
| 635 | if (mii_reg & MIIM_RTL8211B_PHYSTAT_DUPLEX) |
| 636 | priv->duplexity = 1; |
| 637 | else |
| 638 | priv->duplexity = 0; |
| 639 | |
| 640 | speed = (mii_reg & MIIM_RTL8211B_PHYSTAT_SPEED); |
| 641 | |
| 642 | switch (speed) { |
| 643 | case MIIM_RTL8211B_PHYSTAT_GBIT: |
| 644 | priv->speed = 1000; |
| 645 | break; |
| 646 | case MIIM_RTL8211B_PHYSTAT_100: |
| 647 | priv->speed = 100; |
| 648 | break; |
| 649 | default: |
| 650 | priv->speed = 10; |
| 651 | } |
| 652 | |
| 653 | return 0; |
| 654 | } |
| 655 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 656 | /* Parse the cis8201's status register for speed and duplex |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 657 | * information |
| 658 | */ |
| 659 | uint mii_parse_cis8201(uint mii_reg, struct tsec_private * priv) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 660 | { |
| 661 | uint speed; |
| 662 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 663 | if (mii_reg & MIIM_CIS8201_AUXCONSTAT_DUPLEX) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 664 | priv->duplexity = 1; |
| 665 | else |
| 666 | priv->duplexity = 0; |
| 667 | |
| 668 | speed = mii_reg & MIIM_CIS8201_AUXCONSTAT_SPEED; |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 669 | switch (speed) { |
| 670 | case MIIM_CIS8201_AUXCONSTAT_GBIT: |
| 671 | priv->speed = 1000; |
| 672 | break; |
| 673 | case MIIM_CIS8201_AUXCONSTAT_100: |
| 674 | priv->speed = 100; |
| 675 | break; |
| 676 | default: |
| 677 | priv->speed = 10; |
| 678 | break; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 679 | } |
| 680 | |
| 681 | return 0; |
| 682 | } |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 683 | |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 684 | /* Parse the vsc8244's status register for speed and duplex |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 685 | * information |
| 686 | */ |
| 687 | uint mii_parse_vsc8244(uint mii_reg, struct tsec_private * priv) |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 688 | { |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 689 | uint speed; |
| 690 | |
| 691 | if (mii_reg & MIIM_VSC8244_AUXCONSTAT_DUPLEX) |
| 692 | priv->duplexity = 1; |
| 693 | else |
| 694 | priv->duplexity = 0; |
| 695 | |
| 696 | speed = mii_reg & MIIM_VSC8244_AUXCONSTAT_SPEED; |
| 697 | switch (speed) { |
| 698 | case MIIM_VSC8244_AUXCONSTAT_GBIT: |
| 699 | priv->speed = 1000; |
| 700 | break; |
| 701 | case MIIM_VSC8244_AUXCONSTAT_100: |
| 702 | priv->speed = 100; |
| 703 | break; |
| 704 | default: |
| 705 | priv->speed = 10; |
| 706 | break; |
| 707 | } |
| 708 | |
| 709 | return 0; |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 710 | } |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 711 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 712 | /* Parse the DM9161's status register for speed and duplex |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 713 | * information |
| 714 | */ |
| 715 | uint mii_parse_dm9161_scsr(uint mii_reg, struct tsec_private * priv) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 716 | { |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 717 | if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_100H)) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 718 | priv->speed = 100; |
| 719 | else |
| 720 | priv->speed = 10; |
| 721 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 722 | if (mii_reg & (MIIM_DM9161_SCSR_100F | MIIM_DM9161_SCSR_10F)) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 723 | priv->duplexity = 1; |
| 724 | else |
| 725 | priv->duplexity = 0; |
| 726 | |
| 727 | return 0; |
| 728 | } |
| 729 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 730 | /* |
| 731 | * Hack to write all 4 PHYs with the LED values |
| 732 | */ |
| 733 | uint mii_cis8204_fixled(uint mii_reg, struct tsec_private * priv) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 734 | { |
| 735 | uint phyid; |
| 736 | volatile tsec_t *regbase = priv->phyregs; |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 737 | int timeout = 1000000; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 738 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 739 | for (phyid = 0; phyid < 4; phyid++) { |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 740 | regbase->miimadd = (phyid << 8) | mii_reg; |
| 741 | regbase->miimcon = MIIM_CIS8204_SLEDCON_INIT; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 742 | asm("sync"); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 743 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 744 | timeout = 1000000; |
| 745 | while ((regbase->miimind & MIIMIND_BUSY) && timeout--) ; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 746 | } |
| 747 | |
| 748 | return MIIM_CIS8204_SLEDCON_INIT; |
| 749 | } |
| 750 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 751 | uint mii_cis8204_setmode(uint mii_reg, struct tsec_private * priv) |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 752 | { |
| 753 | if (priv->flags & TSEC_REDUCED) |
| 754 | return MIIM_CIS8204_EPHYCON_INIT | MIIM_CIS8204_EPHYCON_RGMII; |
| 755 | else |
| 756 | return MIIM_CIS8204_EPHYCON_INIT; |
| 757 | } |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 758 | |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 759 | uint mii_m88e1111s_setmode(uint mii_reg, struct tsec_private *priv) |
| 760 | { |
| 761 | uint mii_data = read_phy_reg(priv, mii_reg); |
| 762 | |
| 763 | if (priv->flags & TSEC_REDUCED) |
| 764 | mii_data = (mii_data & 0xfff0) | 0x000b; |
| 765 | return mii_data; |
| 766 | } |
| 767 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 768 | /* Initialized required registers to appropriate values, zeroing |
| 769 | * those we don't care about (unless zero is bad, in which case, |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 770 | * choose a more appropriate value) |
| 771 | */ |
| 772 | static void init_registers(volatile tsec_t * regs) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 773 | { |
| 774 | /* Clear IEVENT */ |
| 775 | regs->ievent = IEVENT_INIT_CLEAR; |
| 776 | |
| 777 | regs->imask = IMASK_INIT_CLEAR; |
| 778 | |
| 779 | regs->hash.iaddr0 = 0; |
| 780 | regs->hash.iaddr1 = 0; |
| 781 | regs->hash.iaddr2 = 0; |
| 782 | regs->hash.iaddr3 = 0; |
| 783 | regs->hash.iaddr4 = 0; |
| 784 | regs->hash.iaddr5 = 0; |
| 785 | regs->hash.iaddr6 = 0; |
| 786 | regs->hash.iaddr7 = 0; |
| 787 | |
| 788 | regs->hash.gaddr0 = 0; |
| 789 | regs->hash.gaddr1 = 0; |
| 790 | regs->hash.gaddr2 = 0; |
| 791 | regs->hash.gaddr3 = 0; |
| 792 | regs->hash.gaddr4 = 0; |
| 793 | regs->hash.gaddr5 = 0; |
| 794 | regs->hash.gaddr6 = 0; |
| 795 | regs->hash.gaddr7 = 0; |
| 796 | |
| 797 | regs->rctrl = 0x00000000; |
| 798 | |
| 799 | /* Init RMON mib registers */ |
| 800 | memset((void *)&(regs->rmon), 0, sizeof(rmon_mib_t)); |
| 801 | |
| 802 | regs->rmon.cam1 = 0xffffffff; |
| 803 | regs->rmon.cam2 = 0xffffffff; |
| 804 | |
| 805 | regs->mrblr = MRBLR_INIT_SETTINGS; |
| 806 | |
| 807 | regs->minflr = MINFLR_INIT_SETTINGS; |
| 808 | |
| 809 | regs->attr = ATTR_INIT_SETTINGS; |
| 810 | regs->attreli = ATTRELI_INIT_SETTINGS; |
| 811 | |
| 812 | } |
| 813 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 814 | /* Configure maccfg2 based on negotiated speed and duplex |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 815 | * reported by PHY handling code |
| 816 | */ |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 817 | static void adjust_link(struct eth_device *dev) |
| 818 | { |
| 819 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 820 | volatile tsec_t *regs = priv->regs; |
| 821 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 822 | if (priv->link) { |
| 823 | if (priv->duplexity != 0) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 824 | regs->maccfg2 |= MACCFG2_FULL_DUPLEX; |
| 825 | else |
| 826 | regs->maccfg2 &= ~(MACCFG2_FULL_DUPLEX); |
| 827 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 828 | switch (priv->speed) { |
| 829 | case 1000: |
| 830 | regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF)) |
| 831 | | MACCFG2_GMII); |
| 832 | break; |
| 833 | case 100: |
| 834 | case 10: |
| 835 | regs->maccfg2 = ((regs->maccfg2 & ~(MACCFG2_IF)) |
| 836 | | MACCFG2_MII); |
Jon Loeliger | d9b94f2 | 2005-07-25 14:05:07 -0500 | [diff] [blame] | 837 | |
Nick Spence | f484dc7 | 2006-09-07 07:39:46 -0700 | [diff] [blame] | 838 | /* Set R100 bit in all modes although |
| 839 | * it is only used in RGMII mode |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 840 | */ |
Nick Spence | f484dc7 | 2006-09-07 07:39:46 -0700 | [diff] [blame] | 841 | if (priv->speed == 100) |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 842 | regs->ecntrl |= ECNTRL_R100; |
| 843 | else |
| 844 | regs->ecntrl &= ~(ECNTRL_R100); |
| 845 | break; |
| 846 | default: |
| 847 | printf("%s: Speed was bad\n", dev->name); |
| 848 | break; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 849 | } |
| 850 | |
| 851 | printf("Speed: %d, %s duplex\n", priv->speed, |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 852 | (priv->duplexity) ? "full" : "half"); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 853 | |
| 854 | } else { |
| 855 | printf("%s: No link.\n", dev->name); |
| 856 | } |
| 857 | } |
| 858 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 859 | /* Set up the buffers and their descriptors, and bring up the |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 860 | * interface |
| 861 | */ |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 862 | static void startup_tsec(struct eth_device *dev) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 863 | { |
| 864 | int i; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 865 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 866 | volatile tsec_t *regs = priv->regs; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 867 | |
| 868 | /* Point to the buffer descriptors */ |
| 869 | regs->tbase = (unsigned int)(&rtx.txbd[txIdx]); |
| 870 | regs->rbase = (unsigned int)(&rtx.rxbd[rxIdx]); |
| 871 | |
| 872 | /* Initialize the Rx Buffer descriptors */ |
| 873 | for (i = 0; i < PKTBUFSRX; i++) { |
| 874 | rtx.rxbd[i].status = RXBD_EMPTY; |
| 875 | rtx.rxbd[i].length = 0; |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 876 | rtx.rxbd[i].bufPtr = (uint) NetRxPackets[i]; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 877 | } |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 878 | rtx.rxbd[PKTBUFSRX - 1].status |= RXBD_WRAP; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 879 | |
| 880 | /* Initialize the TX Buffer Descriptors */ |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 881 | for (i = 0; i < TX_BUF_CNT; i++) { |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 882 | rtx.txbd[i].status = 0; |
| 883 | rtx.txbd[i].length = 0; |
| 884 | rtx.txbd[i].bufPtr = 0; |
| 885 | } |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 886 | rtx.txbd[TX_BUF_CNT - 1].status |= TXBD_WRAP; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 887 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 888 | /* Start up the PHY */ |
Ben Warren | 4653f91 | 2006-10-26 14:38:25 -0400 | [diff] [blame] | 889 | if(priv->phyinfo) |
| 890 | phy_run_commands(priv, priv->phyinfo->startup); |
David Updegraff | af1c2b8 | 2007-04-20 14:34:48 -0500 | [diff] [blame] | 891 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 892 | adjust_link(dev); |
| 893 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 894 | /* Enable Transmit and Receive */ |
| 895 | regs->maccfg1 |= (MACCFG1_RX_EN | MACCFG1_TX_EN); |
| 896 | |
| 897 | /* Tell the DMA it is clear to go */ |
| 898 | regs->dmactrl |= DMACTRL_INIT_SETTINGS; |
| 899 | regs->tstat = TSTAT_CLEAR_THALT; |
Dan Wilson | 5c7ea64 | 2007-10-19 11:33:48 -0500 | [diff] [blame] | 900 | regs->rstat = RSTAT_CLEAR_RHALT; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 901 | regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS); |
| 902 | } |
| 903 | |
wdenk | 9d46ea4 | 2005-03-14 23:56:42 +0000 | [diff] [blame] | 904 | /* This returns the status bits of the device. The return value |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 905 | * is never checked, and this is what the 8260 driver did, so we |
wdenk | 9d46ea4 | 2005-03-14 23:56:42 +0000 | [diff] [blame] | 906 | * do the same. Presumably, this would be zero if there were no |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 907 | * errors |
| 908 | */ |
| 909 | static int tsec_send(struct eth_device *dev, volatile void *packet, int length) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 910 | { |
| 911 | int i; |
| 912 | int result = 0; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 913 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 914 | volatile tsec_t *regs = priv->regs; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 915 | |
| 916 | /* Find an empty buffer descriptor */ |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 917 | for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) { |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 918 | if (i >= TOUT_LOOP) { |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 919 | debug("%s: tsec: tx buffers full\n", dev->name); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 920 | return result; |
| 921 | } |
| 922 | } |
| 923 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 924 | rtx.txbd[txIdx].bufPtr = (uint) packet; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 925 | rtx.txbd[txIdx].length = length; |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 926 | rtx.txbd[txIdx].status |= |
| 927 | (TXBD_READY | TXBD_LAST | TXBD_CRC | TXBD_INTERRUPT); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 928 | |
| 929 | /* Tell the DMA to go */ |
| 930 | regs->tstat = TSTAT_CLEAR_THALT; |
| 931 | |
| 932 | /* Wait for buffer to be transmitted */ |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 933 | for (i = 0; rtx.txbd[txIdx].status & TXBD_READY; i++) { |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 934 | if (i >= TOUT_LOOP) { |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 935 | debug("%s: tsec: tx error\n", dev->name); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 936 | return result; |
| 937 | } |
| 938 | } |
| 939 | |
| 940 | txIdx = (txIdx + 1) % TX_BUF_CNT; |
| 941 | result = rtx.txbd[txIdx].status & TXBD_STATS; |
| 942 | |
| 943 | return result; |
| 944 | } |
| 945 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 946 | static int tsec_recv(struct eth_device *dev) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 947 | { |
| 948 | int length; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 949 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 950 | volatile tsec_t *regs = priv->regs; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 951 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 952 | while (!(rtx.rxbd[rxIdx].status & RXBD_EMPTY)) { |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 953 | |
| 954 | length = rtx.rxbd[rxIdx].length; |
| 955 | |
| 956 | /* Send the packet up if there were no errors */ |
| 957 | if (!(rtx.rxbd[rxIdx].status & RXBD_STATS)) { |
| 958 | NetReceive(NetRxPackets[rxIdx], length - 4); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 959 | } else { |
| 960 | printf("Got error %x\n", |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 961 | (rtx.rxbd[rxIdx].status & RXBD_STATS)); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 962 | } |
| 963 | |
| 964 | rtx.rxbd[rxIdx].length = 0; |
| 965 | |
| 966 | /* Set the wrap bit if this is the last element in the list */ |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 967 | rtx.rxbd[rxIdx].status = |
| 968 | RXBD_EMPTY | (((rxIdx + 1) == PKTBUFSRX) ? RXBD_WRAP : 0); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 969 | |
| 970 | rxIdx = (rxIdx + 1) % PKTBUFSRX; |
| 971 | } |
| 972 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 973 | if (regs->ievent & IEVENT_BSY) { |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 974 | regs->ievent = IEVENT_BSY; |
| 975 | regs->rstat = RSTAT_CLEAR_RHALT; |
| 976 | } |
| 977 | |
| 978 | return -1; |
| 979 | |
| 980 | } |
| 981 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 982 | /* Stop the interface */ |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 983 | static void tsec_halt(struct eth_device *dev) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 984 | { |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 985 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 986 | volatile tsec_t *regs = priv->regs; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 987 | |
| 988 | regs->dmactrl &= ~(DMACTRL_GRS | DMACTRL_GTS); |
| 989 | regs->dmactrl |= (DMACTRL_GRS | DMACTRL_GTS); |
| 990 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 991 | while (!(regs->ievent & (IEVENT_GRSC | IEVENT_GTSC))) ; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 992 | |
| 993 | regs->maccfg1 &= ~(MACCFG1_TX_EN | MACCFG1_RX_EN); |
| 994 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 995 | /* Shut down the PHY, as needed */ |
Ben Warren | 4653f91 | 2006-10-26 14:38:25 -0400 | [diff] [blame] | 996 | if(priv->phyinfo) |
| 997 | phy_run_commands(priv, priv->phyinfo->shutdown); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 998 | } |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 999 | |
Andy Fleming | c7e717e | 2007-08-03 04:05:25 -0500 | [diff] [blame] | 1000 | struct phy_info phy_info_M88E1149S = { |
Wolfgang Denk | 5728be3 | 2007-08-06 01:01:49 +0200 | [diff] [blame] | 1001 | 0x1410ca, |
| 1002 | "Marvell 88E1149S", |
| 1003 | 4, |
| 1004 | (struct phy_cmd[]){ /* config */ |
| 1005 | /* Reset and configure the PHY */ |
| 1006 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1007 | {0x1d, 0x1f, NULL}, |
| 1008 | {0x1e, 0x200c, NULL}, |
| 1009 | {0x1d, 0x5, NULL}, |
| 1010 | {0x1e, 0x0, NULL}, |
| 1011 | {0x1e, 0x100, NULL}, |
| 1012 | {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL}, |
| 1013 | {MIIM_ANAR, MIIM_ANAR_INIT, NULL}, |
| 1014 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1015 | {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init}, |
| 1016 | {miim_end,} |
| 1017 | }, |
| 1018 | (struct phy_cmd[]){ /* startup */ |
| 1019 | /* Status is read once to clear old link state */ |
| 1020 | {MIIM_STATUS, miim_read, NULL}, |
| 1021 | /* Auto-negotiate */ |
| 1022 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1023 | /* Read the status */ |
| 1024 | {MIIM_88E1011_PHY_STATUS, miim_read, |
| 1025 | &mii_parse_88E1011_psr}, |
| 1026 | {miim_end,} |
| 1027 | }, |
| 1028 | (struct phy_cmd[]){ /* shutdown */ |
| 1029 | {miim_end,} |
| 1030 | }, |
Andy Fleming | c7e717e | 2007-08-03 04:05:25 -0500 | [diff] [blame] | 1031 | }; |
| 1032 | |
Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 1033 | /* The 5411 id is 0x206070, the 5421 is 0x2060e0 */ |
| 1034 | struct phy_info phy_info_BCM5461S = { |
| 1035 | 0x02060c1, /* 5461 ID */ |
| 1036 | "Broadcom BCM5461S", |
| 1037 | 0, /* not clear to me what minor revisions we can shift away */ |
| 1038 | (struct phy_cmd[]) { /* config */ |
| 1039 | /* Reset and configure the PHY */ |
| 1040 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1041 | {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL}, |
| 1042 | {MIIM_ANAR, MIIM_ANAR_INIT, NULL}, |
| 1043 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1044 | {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init}, |
| 1045 | {miim_end,} |
| 1046 | }, |
| 1047 | (struct phy_cmd[]) { /* startup */ |
| 1048 | /* Status is read once to clear old link state */ |
| 1049 | {MIIM_STATUS, miim_read, NULL}, |
| 1050 | /* Auto-negotiate */ |
| 1051 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1052 | /* Read the status */ |
| 1053 | {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr}, |
| 1054 | {miim_end,} |
| 1055 | }, |
| 1056 | (struct phy_cmd[]) { /* shutdown */ |
| 1057 | {miim_end,} |
| 1058 | }, |
| 1059 | }; |
| 1060 | |
Joe Hamman | c3243cf | 2007-04-30 16:47:28 -0500 | [diff] [blame] | 1061 | struct phy_info phy_info_BCM5464S = { |
| 1062 | 0x02060b1, /* 5464 ID */ |
| 1063 | "Broadcom BCM5464S", |
| 1064 | 0, /* not clear to me what minor revisions we can shift away */ |
| 1065 | (struct phy_cmd[]) { /* config */ |
| 1066 | /* Reset and configure the PHY */ |
| 1067 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1068 | {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL}, |
| 1069 | {MIIM_ANAR, MIIM_ANAR_INIT, NULL}, |
| 1070 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1071 | {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init}, |
| 1072 | {miim_end,} |
| 1073 | }, |
| 1074 | (struct phy_cmd[]) { /* startup */ |
| 1075 | /* Status is read once to clear old link state */ |
| 1076 | {MIIM_STATUS, miim_read, NULL}, |
| 1077 | /* Auto-negotiate */ |
| 1078 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1079 | /* Read the status */ |
| 1080 | {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr}, |
| 1081 | {miim_end,} |
| 1082 | }, |
| 1083 | (struct phy_cmd[]) { /* shutdown */ |
| 1084 | {miim_end,} |
| 1085 | }, |
| 1086 | }; |
| 1087 | |
Zach LeRoy | 091dc9f | 2009-05-22 10:26:33 -0500 | [diff] [blame] | 1088 | struct phy_info phy_info_BCM5482S = { |
| 1089 | 0x0143bcb, |
| 1090 | "Broadcom BCM5482S", |
| 1091 | 4, |
| 1092 | (struct phy_cmd[]) { /* config */ |
| 1093 | /* Reset and configure the PHY */ |
| 1094 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1095 | /* Setup read from auxilary control shadow register 7 */ |
| 1096 | {MIIM_BCM54xx_AUXCNTL, MIIM_BCM54xx_AUXCNTL_ENCODE(7), NULL}, |
| 1097 | /* Read Misc Control register and or in Ethernet@Wirespeed */ |
| 1098 | {MIIM_BCM54xx_AUXCNTL, 0, &mii_BCM54xx_wirespeed}, |
| 1099 | {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init}, |
| 1100 | {miim_end,} |
| 1101 | }, |
| 1102 | (struct phy_cmd[]) { /* startup */ |
| 1103 | /* Status is read once to clear old link state */ |
| 1104 | {MIIM_STATUS, miim_read, NULL}, |
| 1105 | /* Auto-negotiate */ |
| 1106 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1107 | /* Read the status */ |
| 1108 | {MIIM_BCM54xx_AUXSTATUS, miim_read, &mii_parse_BCM54xx_sr}, |
| 1109 | {miim_end,} |
| 1110 | }, |
| 1111 | (struct phy_cmd[]) { /* shutdown */ |
| 1112 | {miim_end,} |
| 1113 | }, |
| 1114 | }; |
| 1115 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1116 | struct phy_info phy_info_M88E1011S = { |
| 1117 | 0x01410c6, |
| 1118 | "Marvell 88E1011S", |
| 1119 | 4, |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1120 | (struct phy_cmd[]){ /* config */ |
| 1121 | /* Reset and configure the PHY */ |
| 1122 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1123 | {0x1d, 0x1f, NULL}, |
| 1124 | {0x1e, 0x200c, NULL}, |
| 1125 | {0x1d, 0x5, NULL}, |
| 1126 | {0x1e, 0x0, NULL}, |
| 1127 | {0x1e, 0x100, NULL}, |
| 1128 | {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL}, |
| 1129 | {MIIM_ANAR, MIIM_ANAR_INIT, NULL}, |
| 1130 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1131 | {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init}, |
| 1132 | {miim_end,} |
| 1133 | }, |
| 1134 | (struct phy_cmd[]){ /* startup */ |
| 1135 | /* Status is read once to clear old link state */ |
| 1136 | {MIIM_STATUS, miim_read, NULL}, |
| 1137 | /* Auto-negotiate */ |
| 1138 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1139 | /* Read the status */ |
| 1140 | {MIIM_88E1011_PHY_STATUS, miim_read, |
| 1141 | &mii_parse_88E1011_psr}, |
| 1142 | {miim_end,} |
| 1143 | }, |
| 1144 | (struct phy_cmd[]){ /* shutdown */ |
| 1145 | {miim_end,} |
| 1146 | }, |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1147 | }; |
| 1148 | |
wdenk | 9d46ea4 | 2005-03-14 23:56:42 +0000 | [diff] [blame] | 1149 | struct phy_info phy_info_M88E1111S = { |
| 1150 | 0x01410cc, |
| 1151 | "Marvell 88E1111S", |
| 1152 | 4, |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1153 | (struct phy_cmd[]){ /* config */ |
| 1154 | /* Reset and configure the PHY */ |
| 1155 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 1156 | {0x1b, 0x848f, &mii_m88e1111s_setmode}, |
Nick Spence | f484dc7 | 2006-09-07 07:39:46 -0700 | [diff] [blame] | 1157 | {0x14, 0x0cd2, NULL}, /* Delay RGMII TX and RX */ |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1158 | {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL}, |
| 1159 | {MIIM_ANAR, MIIM_ANAR_INIT, NULL}, |
| 1160 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1161 | {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init}, |
| 1162 | {miim_end,} |
| 1163 | }, |
| 1164 | (struct phy_cmd[]){ /* startup */ |
| 1165 | /* Status is read once to clear old link state */ |
| 1166 | {MIIM_STATUS, miim_read, NULL}, |
| 1167 | /* Auto-negotiate */ |
| 1168 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1169 | /* Read the status */ |
| 1170 | {MIIM_88E1011_PHY_STATUS, miim_read, |
| 1171 | &mii_parse_88E1011_psr}, |
| 1172 | {miim_end,} |
| 1173 | }, |
| 1174 | (struct phy_cmd[]){ /* shutdown */ |
| 1175 | {miim_end,} |
| 1176 | }, |
wdenk | 9d46ea4 | 2005-03-14 23:56:42 +0000 | [diff] [blame] | 1177 | }; |
| 1178 | |
Ron Madrid | 290ef64 | 2008-05-23 15:37:05 -0700 | [diff] [blame] | 1179 | struct phy_info phy_info_M88E1118 = { |
| 1180 | 0x01410e1, |
| 1181 | "Marvell 88E1118", |
| 1182 | 4, |
| 1183 | (struct phy_cmd[]){ /* config */ |
| 1184 | /* Reset and configure the PHY */ |
| 1185 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1186 | {0x16, 0x0002, NULL}, /* Change Page Number */ |
| 1187 | {0x15, 0x1070, NULL}, /* Delay RGMII TX and RX */ |
Ron Madrid | 12a8b9d | 2009-01-28 16:17:21 -0800 | [diff] [blame] | 1188 | {0x16, 0x0003, NULL}, /* Change Page Number */ |
| 1189 | {0x10, 0x021e, NULL}, /* Adjust LED control */ |
| 1190 | {0x16, 0x0000, NULL}, /* Change Page Number */ |
Ron Madrid | 290ef64 | 2008-05-23 15:37:05 -0700 | [diff] [blame] | 1191 | {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL}, |
| 1192 | {MIIM_ANAR, MIIM_ANAR_INIT, NULL}, |
| 1193 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1194 | {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init}, |
| 1195 | {miim_end,} |
| 1196 | }, |
| 1197 | (struct phy_cmd[]){ /* startup */ |
| 1198 | {0x16, 0x0000, NULL}, /* Change Page Number */ |
| 1199 | /* Status is read once to clear old link state */ |
| 1200 | {MIIM_STATUS, miim_read, NULL}, |
| 1201 | /* Auto-negotiate */ |
Ron Madrid | 12a8b9d | 2009-01-28 16:17:21 -0800 | [diff] [blame] | 1202 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
Ron Madrid | 290ef64 | 2008-05-23 15:37:05 -0700 | [diff] [blame] | 1203 | /* Read the status */ |
| 1204 | {MIIM_88E1011_PHY_STATUS, miim_read, |
| 1205 | &mii_parse_88E1011_psr}, |
| 1206 | {miim_end,} |
| 1207 | }, |
| 1208 | (struct phy_cmd[]){ /* shutdown */ |
| 1209 | {miim_end,} |
| 1210 | }, |
| 1211 | }; |
| 1212 | |
Sergei Poselenov | d23dc39 | 2008-06-06 15:52:44 +0200 | [diff] [blame] | 1213 | /* |
| 1214 | * Since to access LED register we need do switch the page, we |
| 1215 | * do LED configuring in the miim_read-like function as follows |
| 1216 | */ |
| 1217 | uint mii_88E1121_set_led (uint mii_reg, struct tsec_private *priv) |
| 1218 | { |
| 1219 | uint pg; |
| 1220 | |
| 1221 | /* Switch the page to access the led register */ |
| 1222 | pg = read_phy_reg(priv, MIIM_88E1121_PHY_PAGE); |
| 1223 | write_phy_reg(priv, MIIM_88E1121_PHY_PAGE, MIIM_88E1121_PHY_LED_PAGE); |
| 1224 | |
| 1225 | /* Configure leds */ |
| 1226 | write_phy_reg(priv, MIIM_88E1121_PHY_LED_CTRL, |
| 1227 | MIIM_88E1121_PHY_LED_DEF); |
| 1228 | |
| 1229 | /* Restore the page pointer */ |
| 1230 | write_phy_reg(priv, MIIM_88E1121_PHY_PAGE, pg); |
| 1231 | return 0; |
| 1232 | } |
| 1233 | |
| 1234 | struct phy_info phy_info_M88E1121R = { |
| 1235 | 0x01410cb, |
| 1236 | "Marvell 88E1121R", |
| 1237 | 4, |
| 1238 | (struct phy_cmd[]){ /* config */ |
| 1239 | /* Reset and configure the PHY */ |
| 1240 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1241 | {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL}, |
| 1242 | {MIIM_ANAR, MIIM_ANAR_INIT, NULL}, |
| 1243 | /* Configure leds */ |
| 1244 | {MIIM_88E1121_PHY_LED_CTRL, miim_read, |
| 1245 | &mii_88E1121_set_led}, |
| 1246 | {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init}, |
Anatolij Gustschin | 23afaba | 2008-12-02 10:31:04 +0100 | [diff] [blame] | 1247 | /* Disable IRQs and de-assert interrupt */ |
| 1248 | {MIIM_88E1121_PHY_IRQ_EN, 0, NULL}, |
| 1249 | {MIIM_88E1121_PHY_IRQ_STATUS, miim_read, NULL}, |
Sergei Poselenov | d23dc39 | 2008-06-06 15:52:44 +0200 | [diff] [blame] | 1250 | {miim_end,} |
| 1251 | }, |
| 1252 | (struct phy_cmd[]){ /* startup */ |
| 1253 | /* Status is read once to clear old link state */ |
| 1254 | {MIIM_STATUS, miim_read, NULL}, |
| 1255 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1256 | {MIIM_STATUS, miim_read, &mii_parse_link}, |
| 1257 | {miim_end,} |
| 1258 | }, |
| 1259 | (struct phy_cmd[]){ /* shutdown */ |
| 1260 | {miim_end,} |
| 1261 | }, |
| 1262 | }; |
| 1263 | |
Andy Fleming | 09f3e09 | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 1264 | static unsigned int m88e1145_setmode(uint mii_reg, struct tsec_private *priv) |
| 1265 | { |
Andy Fleming | 09f3e09 | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 1266 | uint mii_data = read_phy_reg(priv, mii_reg); |
| 1267 | |
Andy Fleming | 09f3e09 | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 1268 | /* Setting MIIM_88E1145_PHY_EXT_CR */ |
| 1269 | if (priv->flags & TSEC_REDUCED) |
| 1270 | return mii_data | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1271 | MIIM_M88E1145_RGMII_RX_DELAY | MIIM_M88E1145_RGMII_TX_DELAY; |
Andy Fleming | 09f3e09 | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 1272 | else |
| 1273 | return mii_data; |
| 1274 | } |
| 1275 | |
| 1276 | static struct phy_info phy_info_M88E1145 = { |
| 1277 | 0x01410cd, |
| 1278 | "Marvell 88E1145", |
| 1279 | 4, |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1280 | (struct phy_cmd[]){ /* config */ |
Andy Fleming | 7507d56 | 2007-05-08 17:23:02 -0500 | [diff] [blame] | 1281 | /* Reset the PHY */ |
| 1282 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1283 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1284 | /* Errata E0, E1 */ |
| 1285 | {29, 0x001b, NULL}, |
| 1286 | {30, 0x418f, NULL}, |
| 1287 | {29, 0x0016, NULL}, |
| 1288 | {30, 0xa2da, NULL}, |
Andy Fleming | 09f3e09 | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 1289 | |
Andy Fleming | 7507d56 | 2007-05-08 17:23:02 -0500 | [diff] [blame] | 1290 | /* Configure the PHY */ |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1291 | {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL}, |
| 1292 | {MIIM_ANAR, MIIM_ANAR_INIT, NULL}, |
| 1293 | {MIIM_88E1011_PHY_SCR, MIIM_88E1011_PHY_MDI_X_AUTO, |
| 1294 | NULL}, |
| 1295 | {MIIM_88E1145_PHY_EXT_CR, 0, &m88e1145_setmode}, |
| 1296 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1297 | {MIIM_CONTROL, MIIM_CONTROL_INIT, NULL}, |
| 1298 | {miim_end,} |
| 1299 | }, |
| 1300 | (struct phy_cmd[]){ /* startup */ |
| 1301 | /* Status is read once to clear old link state */ |
| 1302 | {MIIM_STATUS, miim_read, NULL}, |
| 1303 | /* Auto-negotiate */ |
| 1304 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1305 | {MIIM_88E1111_PHY_LED_CONTROL, |
| 1306 | MIIM_88E1111_PHY_LED_DIRECT, NULL}, |
| 1307 | /* Read the Status */ |
| 1308 | {MIIM_88E1011_PHY_STATUS, miim_read, |
| 1309 | &mii_parse_88E1011_psr}, |
| 1310 | {miim_end,} |
| 1311 | }, |
| 1312 | (struct phy_cmd[]){ /* shutdown */ |
| 1313 | {miim_end,} |
| 1314 | }, |
Andy Fleming | 09f3e09 | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 1315 | }; |
| 1316 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1317 | struct phy_info phy_info_cis8204 = { |
| 1318 | 0x3f11, |
| 1319 | "Cicada Cis8204", |
| 1320 | 6, |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1321 | (struct phy_cmd[]){ /* config */ |
| 1322 | /* Override PHY config settings */ |
| 1323 | {MIIM_CIS8201_AUX_CONSTAT, |
| 1324 | MIIM_CIS8201_AUXCONSTAT_INIT, NULL}, |
| 1325 | /* Configure some basic stuff */ |
| 1326 | {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init}, |
| 1327 | {MIIM_CIS8204_SLED_CON, MIIM_CIS8204_SLEDCON_INIT, |
| 1328 | &mii_cis8204_fixled}, |
| 1329 | {MIIM_CIS8204_EPHY_CON, MIIM_CIS8204_EPHYCON_INIT, |
| 1330 | &mii_cis8204_setmode}, |
| 1331 | {miim_end,} |
| 1332 | }, |
| 1333 | (struct phy_cmd[]){ /* startup */ |
| 1334 | /* Read the Status (2x to make sure link is right) */ |
| 1335 | {MIIM_STATUS, miim_read, NULL}, |
| 1336 | /* Auto-negotiate */ |
| 1337 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1338 | /* Read the status */ |
| 1339 | {MIIM_CIS8201_AUX_CONSTAT, miim_read, |
| 1340 | &mii_parse_cis8201}, |
| 1341 | {miim_end,} |
| 1342 | }, |
| 1343 | (struct phy_cmd[]){ /* shutdown */ |
| 1344 | {miim_end,} |
| 1345 | }, |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1346 | }; |
| 1347 | |
| 1348 | /* Cicada 8201 */ |
| 1349 | struct phy_info phy_info_cis8201 = { |
| 1350 | 0xfc41, |
| 1351 | "CIS8201", |
| 1352 | 4, |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1353 | (struct phy_cmd[]){ /* config */ |
| 1354 | /* Override PHY config settings */ |
| 1355 | {MIIM_CIS8201_AUX_CONSTAT, |
| 1356 | MIIM_CIS8201_AUXCONSTAT_INIT, NULL}, |
| 1357 | /* Set up the interface mode */ |
| 1358 | {MIIM_CIS8201_EXT_CON1, MIIM_CIS8201_EXTCON1_INIT, |
| 1359 | NULL}, |
| 1360 | /* Configure some basic stuff */ |
| 1361 | {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init}, |
| 1362 | {miim_end,} |
| 1363 | }, |
| 1364 | (struct phy_cmd[]){ /* startup */ |
| 1365 | /* Read the Status (2x to make sure link is right) */ |
| 1366 | {MIIM_STATUS, miim_read, NULL}, |
| 1367 | /* Auto-negotiate */ |
| 1368 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1369 | /* Read the status */ |
| 1370 | {MIIM_CIS8201_AUX_CONSTAT, miim_read, |
| 1371 | &mii_parse_cis8201}, |
| 1372 | {miim_end,} |
| 1373 | }, |
| 1374 | (struct phy_cmd[]){ /* shutdown */ |
| 1375 | {miim_end,} |
| 1376 | }, |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1377 | }; |
Pieter Henning | 736323a | 2009-02-22 23:17:15 -0800 | [diff] [blame] | 1378 | struct phy_info phy_info_VSC8211 = { |
| 1379 | 0xfc4b, |
| 1380 | "Vitesse VSC8211", |
| 1381 | 4, |
| 1382 | (struct phy_cmd[]) { /* config */ |
| 1383 | /* Override PHY config settings */ |
| 1384 | {MIIM_CIS8201_AUX_CONSTAT, |
| 1385 | MIIM_CIS8201_AUXCONSTAT_INIT, NULL}, |
| 1386 | /* Set up the interface mode */ |
| 1387 | {MIIM_CIS8201_EXT_CON1, |
| 1388 | MIIM_CIS8201_EXTCON1_INIT, NULL}, |
| 1389 | /* Configure some basic stuff */ |
| 1390 | {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init}, |
| 1391 | {miim_end,} |
| 1392 | }, |
| 1393 | (struct phy_cmd[]) { /* startup */ |
| 1394 | /* Read the Status (2x to make sure link is right) */ |
| 1395 | {MIIM_STATUS, miim_read, NULL}, |
| 1396 | /* Auto-negotiate */ |
| 1397 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1398 | /* Read the status */ |
| 1399 | {MIIM_CIS8201_AUX_CONSTAT, miim_read, |
| 1400 | &mii_parse_cis8201}, |
| 1401 | {miim_end,} |
| 1402 | }, |
| 1403 | (struct phy_cmd[]) { /* shutdown */ |
| 1404 | {miim_end,} |
| 1405 | }, |
| 1406 | }; |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 1407 | struct phy_info phy_info_VSC8244 = { |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1408 | 0x3f1b, |
| 1409 | "Vitesse VSC8244", |
| 1410 | 6, |
| 1411 | (struct phy_cmd[]){ /* config */ |
| 1412 | /* Override PHY config settings */ |
| 1413 | /* Configure some basic stuff */ |
| 1414 | {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init}, |
| 1415 | {miim_end,} |
| 1416 | }, |
| 1417 | (struct phy_cmd[]){ /* startup */ |
| 1418 | /* Read the Status (2x to make sure link is right) */ |
| 1419 | {MIIM_STATUS, miim_read, NULL}, |
| 1420 | /* Auto-negotiate */ |
| 1421 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1422 | /* Read the status */ |
| 1423 | {MIIM_VSC8244_AUX_CONSTAT, miim_read, |
| 1424 | &mii_parse_vsc8244}, |
| 1425 | {miim_end,} |
| 1426 | }, |
| 1427 | (struct phy_cmd[]){ /* shutdown */ |
| 1428 | {miim_end,} |
| 1429 | }, |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 1430 | }; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1431 | |
Tor Krill | 2d934ea | 2008-03-28 15:29:45 +0100 | [diff] [blame] | 1432 | struct phy_info phy_info_VSC8601 = { |
| 1433 | 0x00007042, |
| 1434 | "Vitesse VSC8601", |
| 1435 | 4, |
| 1436 | (struct phy_cmd[]){ /* config */ |
| 1437 | /* Override PHY config settings */ |
| 1438 | /* Configure some basic stuff */ |
| 1439 | {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init}, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1440 | #ifdef CONFIG_SYS_VSC8601_SKEWFIX |
Tor Krill | 2d934ea | 2008-03-28 15:29:45 +0100 | [diff] [blame] | 1441 | {MIIM_VSC8601_EPHY_CON,MIIM_VSC8601_EPHY_CON_INIT_SKEW,NULL}, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1442 | #if defined(CONFIG_SYS_VSC8601_SKEW_TX) && defined(CONFIG_SYS_VSC8601_SKEW_RX) |
Andre Schwarz | 9acde12 | 2008-04-29 19:18:32 +0200 | [diff] [blame] | 1443 | {MIIM_EXT_PAGE_ACCESS,1,NULL}, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1444 | #define VSC8101_SKEW (CONFIG_SYS_VSC8601_SKEW_TX<<14)|(CONFIG_SYS_VSC8601_SKEW_RX<<12) |
Andre Schwarz | 9acde12 | 2008-04-29 19:18:32 +0200 | [diff] [blame] | 1445 | {MIIM_VSC8601_SKEW_CTRL,VSC8101_SKEW,NULL}, |
| 1446 | {MIIM_EXT_PAGE_ACCESS,0,NULL}, |
| 1447 | #endif |
Tor Krill | 2d934ea | 2008-03-28 15:29:45 +0100 | [diff] [blame] | 1448 | #endif |
Andre Schwarz | c9d6b69 | 2008-08-19 16:07:03 +0200 | [diff] [blame] | 1449 | {MIIM_ANAR, MIIM_ANAR_INIT, NULL}, |
| 1450 | {MIIM_CONTROL, MIIM_CONTROL_RESTART, &mii_cr_init}, |
Tor Krill | 2d934ea | 2008-03-28 15:29:45 +0100 | [diff] [blame] | 1451 | {miim_end,} |
| 1452 | }, |
| 1453 | (struct phy_cmd[]){ /* startup */ |
| 1454 | /* Read the Status (2x to make sure link is right) */ |
| 1455 | {MIIM_STATUS, miim_read, NULL}, |
| 1456 | /* Auto-negotiate */ |
| 1457 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1458 | /* Read the status */ |
| 1459 | {MIIM_VSC8244_AUX_CONSTAT, miim_read, |
| 1460 | &mii_parse_vsc8244}, |
| 1461 | {miim_end,} |
| 1462 | }, |
| 1463 | (struct phy_cmd[]){ /* shutdown */ |
| 1464 | {miim_end,} |
| 1465 | }, |
| 1466 | }; |
| 1467 | |
| 1468 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1469 | struct phy_info phy_info_dm9161 = { |
| 1470 | 0x0181b88, |
| 1471 | "Davicom DM9161E", |
| 1472 | 4, |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1473 | (struct phy_cmd[]){ /* config */ |
| 1474 | {MIIM_CONTROL, MIIM_DM9161_CR_STOP, NULL}, |
| 1475 | /* Do not bypass the scrambler/descrambler */ |
| 1476 | {MIIM_DM9161_SCR, MIIM_DM9161_SCR_INIT, NULL}, |
| 1477 | /* Clear 10BTCSR to default */ |
| 1478 | {MIIM_DM9161_10BTCSR, MIIM_DM9161_10BTCSR_INIT, |
| 1479 | NULL}, |
| 1480 | /* Configure some basic stuff */ |
| 1481 | {MIIM_CONTROL, MIIM_CR_INIT, NULL}, |
| 1482 | /* Restart Auto Negotiation */ |
| 1483 | {MIIM_CONTROL, MIIM_DM9161_CR_RSTAN, NULL}, |
| 1484 | {miim_end,} |
| 1485 | }, |
| 1486 | (struct phy_cmd[]){ /* startup */ |
| 1487 | /* Status is read once to clear old link state */ |
| 1488 | {MIIM_STATUS, miim_read, NULL}, |
| 1489 | /* Auto-negotiate */ |
| 1490 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1491 | /* Read the status */ |
| 1492 | {MIIM_DM9161_SCSR, miim_read, |
| 1493 | &mii_parse_dm9161_scsr}, |
| 1494 | {miim_end,} |
| 1495 | }, |
| 1496 | (struct phy_cmd[]){ /* shutdown */ |
| 1497 | {miim_end,} |
| 1498 | }, |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1499 | }; |
David Updegraff | af1c2b8 | 2007-04-20 14:34:48 -0500 | [diff] [blame] | 1500 | /* a generic flavor. */ |
| 1501 | struct phy_info phy_info_generic = { |
| 1502 | 0, |
| 1503 | "Unknown/Generic PHY", |
| 1504 | 32, |
| 1505 | (struct phy_cmd[]) { /* config */ |
| 1506 | {PHY_BMCR, PHY_BMCR_RESET, NULL}, |
| 1507 | {PHY_BMCR, PHY_BMCR_AUTON|PHY_BMCR_RST_NEG, NULL}, |
| 1508 | {miim_end,} |
| 1509 | }, |
| 1510 | (struct phy_cmd[]) { /* startup */ |
| 1511 | {PHY_BMSR, miim_read, NULL}, |
| 1512 | {PHY_BMSR, miim_read, &mii_parse_sr}, |
| 1513 | {PHY_BMSR, miim_read, &mii_parse_link}, |
| 1514 | {miim_end,} |
| 1515 | }, |
| 1516 | (struct phy_cmd[]) { /* shutdown */ |
| 1517 | {miim_end,} |
| 1518 | } |
| 1519 | }; |
| 1520 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1521 | |
wdenk | 3dd7f0f | 2005-04-04 23:43:44 +0000 | [diff] [blame] | 1522 | uint mii_parse_lxt971_sr2(uint mii_reg, struct tsec_private *priv) |
| 1523 | { |
wdenk | 3c2b3d4 | 2005-04-05 23:32:21 +0000 | [diff] [blame] | 1524 | unsigned int speed; |
| 1525 | if (priv->link) { |
| 1526 | speed = mii_reg & MIIM_LXT971_SR2_SPEED_MASK; |
wdenk | 3dd7f0f | 2005-04-04 23:43:44 +0000 | [diff] [blame] | 1527 | |
wdenk | 3c2b3d4 | 2005-04-05 23:32:21 +0000 | [diff] [blame] | 1528 | switch (speed) { |
| 1529 | case MIIM_LXT971_SR2_10HDX: |
| 1530 | priv->speed = 10; |
| 1531 | priv->duplexity = 0; |
| 1532 | break; |
| 1533 | case MIIM_LXT971_SR2_10FDX: |
| 1534 | priv->speed = 10; |
| 1535 | priv->duplexity = 1; |
| 1536 | break; |
| 1537 | case MIIM_LXT971_SR2_100HDX: |
| 1538 | priv->speed = 100; |
| 1539 | priv->duplexity = 0; |
urwithsughosh@gmail.com | cd2d160 | 2007-09-10 14:54:56 -0400 | [diff] [blame] | 1540 | break; |
wdenk | 3c2b3d4 | 2005-04-05 23:32:21 +0000 | [diff] [blame] | 1541 | default: |
| 1542 | priv->speed = 100; |
| 1543 | priv->duplexity = 1; |
wdenk | 3c2b3d4 | 2005-04-05 23:32:21 +0000 | [diff] [blame] | 1544 | } |
| 1545 | } else { |
| 1546 | priv->speed = 0; |
| 1547 | priv->duplexity = 0; |
| 1548 | } |
wdenk | 3dd7f0f | 2005-04-04 23:43:44 +0000 | [diff] [blame] | 1549 | |
wdenk | 3c2b3d4 | 2005-04-05 23:32:21 +0000 | [diff] [blame] | 1550 | return 0; |
wdenk | 3dd7f0f | 2005-04-04 23:43:44 +0000 | [diff] [blame] | 1551 | } |
| 1552 | |
wdenk | 9d46ea4 | 2005-03-14 23:56:42 +0000 | [diff] [blame] | 1553 | static struct phy_info phy_info_lxt971 = { |
| 1554 | 0x0001378e, |
| 1555 | "LXT971", |
| 1556 | 4, |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1557 | (struct phy_cmd[]){ /* config */ |
| 1558 | {MIIM_CR, MIIM_CR_INIT, mii_cr_init}, /* autonegotiate */ |
| 1559 | {miim_end,} |
| 1560 | }, |
| 1561 | (struct phy_cmd[]){ /* startup - enable interrupts */ |
| 1562 | /* { 0x12, 0x00f2, NULL }, */ |
| 1563 | {MIIM_STATUS, miim_read, NULL}, |
| 1564 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1565 | {MIIM_LXT971_SR2, miim_read, &mii_parse_lxt971_sr2}, |
| 1566 | {miim_end,} |
| 1567 | }, |
| 1568 | (struct phy_cmd[]){ /* shutdown - disable interrupts */ |
| 1569 | {miim_end,} |
| 1570 | }, |
wdenk | 9d46ea4 | 2005-03-14 23:56:42 +0000 | [diff] [blame] | 1571 | }; |
| 1572 | |
Wolfgang Denk | be5048f | 2006-03-12 22:50:55 +0100 | [diff] [blame] | 1573 | /* Parse the DP83865's link and auto-neg status register for speed and duplex |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1574 | * information |
| 1575 | */ |
Wolfgang Denk | be5048f | 2006-03-12 22:50:55 +0100 | [diff] [blame] | 1576 | uint mii_parse_dp83865_lanr(uint mii_reg, struct tsec_private *priv) |
| 1577 | { |
| 1578 | switch (mii_reg & MIIM_DP83865_SPD_MASK) { |
| 1579 | |
| 1580 | case MIIM_DP83865_SPD_1000: |
| 1581 | priv->speed = 1000; |
| 1582 | break; |
| 1583 | |
| 1584 | case MIIM_DP83865_SPD_100: |
| 1585 | priv->speed = 100; |
| 1586 | break; |
| 1587 | |
| 1588 | default: |
| 1589 | priv->speed = 10; |
| 1590 | break; |
| 1591 | |
| 1592 | } |
| 1593 | |
| 1594 | if (mii_reg & MIIM_DP83865_DPX_FULL) |
| 1595 | priv->duplexity = 1; |
| 1596 | else |
| 1597 | priv->duplexity = 0; |
| 1598 | |
| 1599 | return 0; |
| 1600 | } |
| 1601 | |
| 1602 | struct phy_info phy_info_dp83865 = { |
| 1603 | 0x20005c7, |
| 1604 | "NatSemi DP83865", |
| 1605 | 4, |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1606 | (struct phy_cmd[]){ /* config */ |
| 1607 | {MIIM_CONTROL, MIIM_DP83865_CR_INIT, NULL}, |
| 1608 | {miim_end,} |
| 1609 | }, |
| 1610 | (struct phy_cmd[]){ /* startup */ |
| 1611 | /* Status is read once to clear old link state */ |
| 1612 | {MIIM_STATUS, miim_read, NULL}, |
| 1613 | /* Auto-negotiate */ |
| 1614 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1615 | /* Read the link and auto-neg status */ |
| 1616 | {MIIM_DP83865_LANR, miim_read, |
| 1617 | &mii_parse_dp83865_lanr}, |
| 1618 | {miim_end,} |
| 1619 | }, |
| 1620 | (struct phy_cmd[]){ /* shutdown */ |
| 1621 | {miim_end,} |
| 1622 | }, |
Wolfgang Denk | be5048f | 2006-03-12 22:50:55 +0100 | [diff] [blame] | 1623 | }; |
| 1624 | |
Dave Liu | 18ee320 | 2008-01-11 18:45:28 +0800 | [diff] [blame] | 1625 | struct phy_info phy_info_rtl8211b = { |
| 1626 | 0x001cc91, |
| 1627 | "RealTek RTL8211B", |
| 1628 | 4, |
| 1629 | (struct phy_cmd[]){ /* config */ |
| 1630 | /* Reset and configure the PHY */ |
| 1631 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1632 | {MIIM_GBIT_CONTROL, MIIM_GBIT_CONTROL_INIT, NULL}, |
| 1633 | {MIIM_ANAR, MIIM_ANAR_INIT, NULL}, |
| 1634 | {MIIM_CONTROL, MIIM_CONTROL_RESET, NULL}, |
| 1635 | {MIIM_CONTROL, MIIM_CONTROL_INIT, &mii_cr_init}, |
| 1636 | {miim_end,} |
| 1637 | }, |
| 1638 | (struct phy_cmd[]){ /* startup */ |
| 1639 | /* Status is read once to clear old link state */ |
| 1640 | {MIIM_STATUS, miim_read, NULL}, |
| 1641 | /* Auto-negotiate */ |
| 1642 | {MIIM_STATUS, miim_read, &mii_parse_sr}, |
| 1643 | /* Read the status */ |
| 1644 | {MIIM_RTL8211B_PHY_STATUS, miim_read, &mii_parse_RTL8211B_sr}, |
| 1645 | {miim_end,} |
| 1646 | }, |
| 1647 | (struct phy_cmd[]){ /* shutdown */ |
| 1648 | {miim_end,} |
| 1649 | }, |
| 1650 | }; |
| 1651 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1652 | struct phy_info *phy_info[] = { |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1653 | &phy_info_cis8204, |
Timur Tabi | 2ad6b51 | 2006-10-31 18:44:42 -0600 | [diff] [blame] | 1654 | &phy_info_cis8201, |
Paul Gortmaker | 91e2576 | 2007-01-16 11:38:14 -0500 | [diff] [blame] | 1655 | &phy_info_BCM5461S, |
Joe Hamman | c3243cf | 2007-04-30 16:47:28 -0500 | [diff] [blame] | 1656 | &phy_info_BCM5464S, |
Zach LeRoy | 091dc9f | 2009-05-22 10:26:33 -0500 | [diff] [blame] | 1657 | &phy_info_BCM5482S, |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1658 | &phy_info_M88E1011S, |
wdenk | 9d46ea4 | 2005-03-14 23:56:42 +0000 | [diff] [blame] | 1659 | &phy_info_M88E1111S, |
Ron Madrid | 290ef64 | 2008-05-23 15:37:05 -0700 | [diff] [blame] | 1660 | &phy_info_M88E1118, |
Sergei Poselenov | d23dc39 | 2008-06-06 15:52:44 +0200 | [diff] [blame] | 1661 | &phy_info_M88E1121R, |
Andy Fleming | 09f3e09 | 2006-09-13 10:34:18 -0500 | [diff] [blame] | 1662 | &phy_info_M88E1145, |
Wolfgang Denk | 5728be3 | 2007-08-06 01:01:49 +0200 | [diff] [blame] | 1663 | &phy_info_M88E1149S, |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1664 | &phy_info_dm9161, |
wdenk | 9d46ea4 | 2005-03-14 23:56:42 +0000 | [diff] [blame] | 1665 | &phy_info_lxt971, |
Pieter Henning | 736323a | 2009-02-22 23:17:15 -0800 | [diff] [blame] | 1666 | &phy_info_VSC8211, |
Jon Loeliger | debb735 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 1667 | &phy_info_VSC8244, |
Tor Krill | 2d934ea | 2008-03-28 15:29:45 +0100 | [diff] [blame] | 1668 | &phy_info_VSC8601, |
Wolfgang Denk | be5048f | 2006-03-12 22:50:55 +0100 | [diff] [blame] | 1669 | &phy_info_dp83865, |
Dave Liu | 18ee320 | 2008-01-11 18:45:28 +0800 | [diff] [blame] | 1670 | &phy_info_rtl8211b, |
Paul Gortmaker | 0452352 | 2009-03-09 18:07:53 -0500 | [diff] [blame] | 1671 | &phy_info_generic, /* must be last; has ID 0 and 32 bit mask */ |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1672 | NULL |
| 1673 | }; |
| 1674 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1675 | /* Grab the identifier of the device's PHY, and search through |
wdenk | 9d46ea4 | 2005-03-14 23:56:42 +0000 | [diff] [blame] | 1676 | * all of the known PHYs to see if one matches. If so, return |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1677 | * it, if not, return NULL |
| 1678 | */ |
| 1679 | struct phy_info *get_phy_info(struct eth_device *dev) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1680 | { |
| 1681 | struct tsec_private *priv = (struct tsec_private *)dev->priv; |
| 1682 | uint phy_reg, phy_ID; |
| 1683 | int i; |
| 1684 | struct phy_info *theInfo = NULL; |
| 1685 | |
| 1686 | /* Grab the bits from PHYIR1, and put them in the upper half */ |
| 1687 | phy_reg = read_phy_reg(priv, MIIM_PHYIR1); |
| 1688 | phy_ID = (phy_reg & 0xffff) << 16; |
| 1689 | |
| 1690 | /* Grab the bits from PHYIR2, and put them in the lower half */ |
| 1691 | phy_reg = read_phy_reg(priv, MIIM_PHYIR2); |
| 1692 | phy_ID |= (phy_reg & 0xffff); |
| 1693 | |
| 1694 | /* loop through all the known PHY types, and find one that */ |
| 1695 | /* matches the ID we read from the PHY. */ |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1696 | for (i = 0; phy_info[i]; i++) { |
Andy Fleming | 2a3cee4 | 2007-05-09 00:54:20 -0500 | [diff] [blame] | 1697 | if (phy_info[i]->id == (phy_ID >> phy_info[i]->shift)) { |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1698 | theInfo = phy_info[i]; |
Andy Fleming | 2a3cee4 | 2007-05-09 00:54:20 -0500 | [diff] [blame] | 1699 | break; |
| 1700 | } |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1701 | } |
| 1702 | |
Paul Gortmaker | 0452352 | 2009-03-09 18:07:53 -0500 | [diff] [blame] | 1703 | if (theInfo == &phy_info_generic) { |
| 1704 | printf("%s: No support for PHY id %x; assuming generic\n", dev->name, phy_ID); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1705 | } else { |
Stefan Roese | 5810dc3 | 2005-09-21 18:20:22 +0200 | [diff] [blame] | 1706 | debug("%s: PHY is %s (%x)\n", dev->name, theInfo->name, phy_ID); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1707 | } |
| 1708 | |
| 1709 | return theInfo; |
| 1710 | } |
| 1711 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1712 | /* Execute the given series of commands on the given device's |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1713 | * PHY, running functions as necessary |
| 1714 | */ |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1715 | void phy_run_commands(struct tsec_private *priv, struct phy_cmd *cmd) |
| 1716 | { |
| 1717 | int i; |
| 1718 | uint result; |
| 1719 | volatile tsec_t *phyregs = priv->phyregs; |
| 1720 | |
| 1721 | phyregs->miimcfg = MIIMCFG_RESET; |
| 1722 | |
| 1723 | phyregs->miimcfg = MIIMCFG_INIT_VALUE; |
| 1724 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1725 | while (phyregs->miimind & MIIMIND_BUSY) ; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1726 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1727 | for (i = 0; cmd->mii_reg != miim_end; i++) { |
| 1728 | if (cmd->mii_data == miim_read) { |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1729 | result = read_phy_reg(priv, cmd->mii_reg); |
| 1730 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1731 | if (cmd->funct != NULL) |
| 1732 | (*(cmd->funct)) (result, priv); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1733 | |
| 1734 | } else { |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1735 | if (cmd->funct != NULL) |
| 1736 | result = (*(cmd->funct)) (cmd->mii_reg, priv); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1737 | else |
| 1738 | result = cmd->mii_data; |
| 1739 | |
| 1740 | write_phy_reg(priv, cmd->mii_reg, result); |
| 1741 | |
| 1742 | } |
| 1743 | cmd++; |
| 1744 | } |
| 1745 | } |
| 1746 | |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1747 | /* Relocate the function pointers in the phy cmd lists */ |
| 1748 | static void relocate_cmds(void) |
| 1749 | { |
| 1750 | struct phy_cmd **cmdlistptr; |
| 1751 | struct phy_cmd *cmd; |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1752 | int i, j, k; |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1753 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1754 | for (i = 0; phy_info[i]; i++) { |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1755 | /* First thing's first: relocate the pointers to the |
| 1756 | * PHY command structures (the structs were done) */ |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1757 | phy_info[i] = (struct phy_info *)((uint) phy_info[i] |
| 1758 | + gd->reloc_off); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1759 | phy_info[i]->name += gd->reloc_off; |
| 1760 | phy_info[i]->config = |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1761 | (struct phy_cmd *)((uint) phy_info[i]->config |
| 1762 | + gd->reloc_off); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1763 | phy_info[i]->startup = |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1764 | (struct phy_cmd *)((uint) phy_info[i]->startup |
| 1765 | + gd->reloc_off); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1766 | phy_info[i]->shutdown = |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1767 | (struct phy_cmd *)((uint) phy_info[i]->shutdown |
| 1768 | + gd->reloc_off); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1769 | |
| 1770 | cmdlistptr = &phy_info[i]->config; |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1771 | j = 0; |
| 1772 | for (; cmdlistptr <= &phy_info[i]->shutdown; cmdlistptr++) { |
| 1773 | k = 0; |
| 1774 | for (cmd = *cmdlistptr; |
| 1775 | cmd->mii_reg != miim_end; |
| 1776 | cmd++) { |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1777 | /* Only relocate non-NULL pointers */ |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1778 | if (cmd->funct) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1779 | cmd->funct += gd->reloc_off; |
| 1780 | |
| 1781 | k++; |
| 1782 | } |
| 1783 | j++; |
| 1784 | } |
| 1785 | } |
| 1786 | |
| 1787 | relocated = 1; |
| 1788 | } |
| 1789 | |
Jon Loeliger | cb51c0b | 2007-07-09 17:39:42 -0500 | [diff] [blame] | 1790 | #if defined(CONFIG_MII) || defined(CONFIG_CMD_MII) \ |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 1791 | && !defined(BITBANGMII) |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1792 | |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 1793 | /* |
| 1794 | * Read a MII PHY register. |
| 1795 | * |
| 1796 | * Returns: |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1797 | * 0 on success |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 1798 | */ |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 1799 | static int tsec_miiphy_read(char *devname, unsigned char addr, |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1800 | unsigned char reg, unsigned short *value) |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 1801 | { |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1802 | unsigned short ret; |
michael.firth@bt.com | 55fe7c5 | 2008-01-16 11:40:51 +0000 | [diff] [blame] | 1803 | struct tsec_private *priv = privlist[0]; |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 1804 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1805 | if (NULL == priv) { |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1806 | printf("Can't read PHY at address %d\n", addr); |
| 1807 | return -1; |
| 1808 | } |
| 1809 | |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 1810 | ret = (unsigned short)tsec_local_mdio_read(priv->phyregs, addr, reg); |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1811 | *value = ret; |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 1812 | |
| 1813 | return 0; |
| 1814 | } |
| 1815 | |
| 1816 | /* |
| 1817 | * Write a MII PHY register. |
| 1818 | * |
| 1819 | * Returns: |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1820 | * 0 on success |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 1821 | */ |
Marian Balakowicz | 63ff004 | 2005-10-28 22:30:33 +0200 | [diff] [blame] | 1822 | static int tsec_miiphy_write(char *devname, unsigned char addr, |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1823 | unsigned char reg, unsigned short value) |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 1824 | { |
michael.firth@bt.com | 55fe7c5 | 2008-01-16 11:40:51 +0000 | [diff] [blame] | 1825 | struct tsec_private *priv = privlist[0]; |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 1826 | |
Jon Loeliger | 89875e9 | 2006-10-10 17:03:43 -0500 | [diff] [blame] | 1827 | if (NULL == priv) { |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1828 | printf("Can't write PHY at address %d\n", addr); |
| 1829 | return -1; |
| 1830 | } |
| 1831 | |
Andy Fleming | 2abe361 | 2008-08-31 16:33:27 -0500 | [diff] [blame] | 1832 | tsec_local_mdio_write(priv->phyregs, addr, reg, value); |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 1833 | |
| 1834 | return 0; |
| 1835 | } |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1836 | |
Jon Loeliger | cb51c0b | 2007-07-09 17:39:42 -0500 | [diff] [blame] | 1837 | #endif |
wdenk | 97d80fc | 2004-06-09 00:34:46 +0000 | [diff] [blame] | 1838 | |
David Updegraff | 53a5c42 | 2007-06-11 10:41:07 -0500 | [diff] [blame] | 1839 | #ifdef CONFIG_MCAST_TFTP |
| 1840 | |
| 1841 | /* CREDITS: linux gianfar driver, slightly adjusted... thanx. */ |
| 1842 | |
| 1843 | /* Set the appropriate hash bit for the given addr */ |
| 1844 | |
| 1845 | /* The algorithm works like so: |
| 1846 | * 1) Take the Destination Address (ie the multicast address), and |
| 1847 | * do a CRC on it (little endian), and reverse the bits of the |
| 1848 | * result. |
| 1849 | * 2) Use the 8 most significant bits as a hash into a 256-entry |
| 1850 | * table. The table is controlled through 8 32-bit registers: |
| 1851 | * gaddr0-7. gaddr0's MSB is entry 0, and gaddr7's LSB is |
| 1852 | * gaddr7. This means that the 3 most significant bits in the |
| 1853 | * hash index which gaddr register to use, and the 5 other bits |
| 1854 | * indicate which bit (assuming an IBM numbering scheme, which |
| 1855 | * for PowerPC (tm) is usually the case) in the tregister holds |
| 1856 | * the entry. */ |
| 1857 | static int |
| 1858 | tsec_mcast_addr (struct eth_device *dev, u8 mcast_mac, u8 set) |
| 1859 | { |
| 1860 | struct tsec_private *priv = privlist[1]; |
| 1861 | volatile tsec_t *regs = priv->regs; |
| 1862 | volatile u32 *reg_array, value; |
| 1863 | u8 result, whichbit, whichreg; |
| 1864 | |
| 1865 | result = (u8)((ether_crc(MAC_ADDR_LEN,mcast_mac) >> 24) & 0xff); |
| 1866 | whichbit = result & 0x1f; /* the 5 LSB = which bit to set */ |
| 1867 | whichreg = result >> 5; /* the 3 MSB = which reg to set it in */ |
| 1868 | value = (1 << (31-whichbit)); |
| 1869 | |
| 1870 | reg_array = &(regs->hash.gaddr0); |
| 1871 | |
| 1872 | if (set) { |
| 1873 | reg_array[whichreg] |= value; |
| 1874 | } else { |
| 1875 | reg_array[whichreg] &= ~value; |
| 1876 | } |
| 1877 | return 0; |
| 1878 | } |
| 1879 | #endif /* Multicast TFTP ? */ |