wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1 | /* |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 2 | * (C) Copyright 2009 Industrie Dial Face S.p.A. |
| 3 | * Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> |
| 4 | * |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 5 | * (C) Copyright 2001 |
| 6 | * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com. |
| 7 | * |
| 8 | * See file CREDITS for list of people who contributed to this |
| 9 | * project. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU General Public License as |
| 13 | * published by the Free Software Foundation; either version 2 of |
| 14 | * the License, or (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 24 | * MA 02111-1307 USA |
| 25 | */ |
| 26 | |
| 27 | /* |
| 28 | * This provides a bit-banged interface to the ethernet MII management |
| 29 | * channel. |
| 30 | */ |
| 31 | |
| 32 | #include <common.h> |
| 33 | #include <ioports.h> |
| 34 | #include <ppc_asm.tmpl> |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 35 | #include <miiphy.h> |
| 36 | |
| 37 | #define BB_MII_RELOCATE(v,off) (v += (v?off:0)) |
| 38 | |
| 39 | DECLARE_GLOBAL_DATA_PTR; |
| 40 | |
| 41 | #ifndef CONFIG_BITBANGMII_MULTI |
| 42 | |
| 43 | /* |
| 44 | * If CONFIG_BITBANGMII_MULTI is not defined we use a |
| 45 | * compatibility layer with the previous miiphybb implementation |
| 46 | * based on macros usage. |
| 47 | * |
| 48 | */ |
| 49 | static int bb_mii_init_wrap(struct bb_miiphy_bus *bus) |
| 50 | { |
| 51 | #ifdef MII_INIT |
| 52 | MII_INIT; |
| 53 | #endif |
| 54 | return 0; |
| 55 | } |
| 56 | |
| 57 | static int bb_mdio_active_wrap(struct bb_miiphy_bus *bus) |
| 58 | { |
| 59 | #ifdef MDIO_DECLARE |
| 60 | MDIO_DECLARE; |
| 61 | #endif |
| 62 | MDIO_ACTIVE; |
| 63 | return 0; |
| 64 | } |
| 65 | |
| 66 | static int bb_mdio_tristate_wrap(struct bb_miiphy_bus *bus) |
| 67 | { |
| 68 | #ifdef MDIO_DECLARE |
| 69 | MDIO_DECLARE; |
| 70 | #endif |
| 71 | MDIO_TRISTATE; |
| 72 | return 0; |
| 73 | } |
| 74 | |
| 75 | static int bb_set_mdio_wrap(struct bb_miiphy_bus *bus, int v) |
| 76 | { |
| 77 | #ifdef MDIO_DECLARE |
| 78 | MDIO_DECLARE; |
| 79 | #endif |
| 80 | MDIO(v); |
| 81 | return 0; |
| 82 | } |
| 83 | |
| 84 | static int bb_get_mdio_wrap(struct bb_miiphy_bus *bus, int *v) |
| 85 | { |
| 86 | #ifdef MDIO_DECLARE |
| 87 | MDIO_DECLARE; |
| 88 | #endif |
| 89 | *v = MDIO_READ; |
| 90 | return 0; |
| 91 | } |
| 92 | |
| 93 | static int bb_set_mdc_wrap(struct bb_miiphy_bus *bus, int v) |
| 94 | { |
| 95 | #ifdef MDC_DECLARE |
| 96 | MDC_DECLARE; |
| 97 | #endif |
| 98 | MDC(v); |
| 99 | return 0; |
| 100 | } |
| 101 | |
| 102 | static int bb_delay_wrap(struct bb_miiphy_bus *bus) |
| 103 | { |
| 104 | MIIDELAY; |
| 105 | return 0; |
| 106 | } |
| 107 | |
| 108 | struct bb_miiphy_bus bb_miiphy_buses[] = { |
| 109 | { |
| 110 | .name = BB_MII_DEVNAME, |
| 111 | .init = bb_mii_init_wrap, |
| 112 | .mdio_active = bb_mdio_active_wrap, |
| 113 | .mdio_tristate = bb_mdio_tristate_wrap, |
| 114 | .set_mdio = bb_set_mdio_wrap, |
| 115 | .get_mdio = bb_get_mdio_wrap, |
| 116 | .set_mdc = bb_set_mdc_wrap, |
| 117 | .delay = bb_delay_wrap, |
| 118 | } |
| 119 | }; |
| 120 | |
| 121 | int bb_miiphy_buses_num = sizeof(bb_miiphy_buses) / |
Wolfgang Denk | 4946775 | 2009-10-28 00:49:47 +0100 | [diff] [blame] | 122 | sizeof(bb_miiphy_buses[0]); |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 123 | #endif |
| 124 | |
| 125 | void bb_miiphy_init(void) |
| 126 | { |
| 127 | int i; |
| 128 | |
| 129 | for (i = 0; i < bb_miiphy_buses_num; i++) { |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 130 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 131 | /* Relocate the hook pointers*/ |
| 132 | BB_MII_RELOCATE(bb_miiphy_buses[i].init, gd->reloc_off); |
| 133 | BB_MII_RELOCATE(bb_miiphy_buses[i].mdio_active, gd->reloc_off); |
| 134 | BB_MII_RELOCATE(bb_miiphy_buses[i].mdio_tristate, gd->reloc_off); |
| 135 | BB_MII_RELOCATE(bb_miiphy_buses[i].set_mdio, gd->reloc_off); |
| 136 | BB_MII_RELOCATE(bb_miiphy_buses[i].get_mdio, gd->reloc_off); |
| 137 | BB_MII_RELOCATE(bb_miiphy_buses[i].set_mdc, gd->reloc_off); |
| 138 | BB_MII_RELOCATE(bb_miiphy_buses[i].delay, gd->reloc_off); |
| 139 | #endif |
| 140 | if (bb_miiphy_buses[i].init != NULL) { |
| 141 | bb_miiphy_buses[i].init(&bb_miiphy_buses[i]); |
| 142 | } |
| 143 | } |
| 144 | } |
| 145 | |
Ben Warren | d7fb9bc | 2010-07-29 12:56:11 -0700 | [diff] [blame] | 146 | static inline struct bb_miiphy_bus *bb_miiphy_getbus(const char *devname) |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 147 | { |
| 148 | #ifdef CONFIG_BITBANGMII_MULTI |
| 149 | int i; |
| 150 | |
| 151 | /* Search the correct bus */ |
| 152 | for (i = 0; i < bb_miiphy_buses_num; i++) { |
| 153 | if (!strcmp(bb_miiphy_buses[i].name, devname)) { |
| 154 | return &bb_miiphy_buses[i]; |
| 155 | } |
| 156 | } |
| 157 | return NULL; |
| 158 | #else |
| 159 | /* We have just one bitbanging bus */ |
| 160 | return &bb_miiphy_buses[0]; |
| 161 | #endif |
| 162 | } |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 163 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 164 | /***************************************************************************** |
| 165 | * |
| 166 | * Utility to send the preamble, address, and register (common to read |
| 167 | * and write). |
| 168 | */ |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 169 | static void miiphy_pre(struct bb_miiphy_bus *bus, char read, |
Wolfgang Denk | 4946775 | 2009-10-28 00:49:47 +0100 | [diff] [blame] | 170 | unsigned char addr, unsigned char reg) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 171 | { |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 172 | int j; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 173 | |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 174 | /* |
| 175 | * Send a 32 bit preamble ('1's) with an extra '1' bit for good measure. |
| 176 | * The IEEE spec says this is a PHY optional requirement. The AMD |
| 177 | * 79C874 requires one after power up and one after a MII communications |
| 178 | * error. This means that we are doing more preambles than we need, |
| 179 | * but it is safer and will be much more robust. |
| 180 | */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 181 | |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 182 | bus->mdio_active(bus); |
| 183 | bus->set_mdio(bus, 1); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 184 | for (j = 0; j < 32; j++) { |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 185 | bus->set_mdc(bus, 0); |
| 186 | bus->delay(bus); |
| 187 | bus->set_mdc(bus, 1); |
| 188 | bus->delay(bus); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 189 | } |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 190 | |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 191 | /* send the start bit (01) and the read opcode (10) or write (10) */ |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 192 | bus->set_mdc(bus, 0); |
| 193 | bus->set_mdio(bus, 0); |
| 194 | bus->delay(bus); |
| 195 | bus->set_mdc(bus, 1); |
| 196 | bus->delay(bus); |
| 197 | bus->set_mdc(bus, 0); |
| 198 | bus->set_mdio(bus, 1); |
| 199 | bus->delay(bus); |
| 200 | bus->set_mdc(bus, 1); |
| 201 | bus->delay(bus); |
| 202 | bus->set_mdc(bus, 0); |
| 203 | bus->set_mdio(bus, read); |
| 204 | bus->delay(bus); |
| 205 | bus->set_mdc(bus, 1); |
| 206 | bus->delay(bus); |
| 207 | bus->set_mdc(bus, 0); |
| 208 | bus->set_mdio(bus, !read); |
| 209 | bus->delay(bus); |
| 210 | bus->set_mdc(bus, 1); |
| 211 | bus->delay(bus); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 212 | |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 213 | /* send the PHY address */ |
| 214 | for (j = 0; j < 5; j++) { |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 215 | bus->set_mdc(bus, 0); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 216 | if ((addr & 0x10) == 0) { |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 217 | bus->set_mdio(bus, 0); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 218 | } else { |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 219 | bus->set_mdio(bus, 1); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 220 | } |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 221 | bus->delay(bus); |
| 222 | bus->set_mdc(bus, 1); |
| 223 | bus->delay(bus); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 224 | addr <<= 1; |
| 225 | } |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 226 | |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 227 | /* send the register address */ |
| 228 | for (j = 0; j < 5; j++) { |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 229 | bus->set_mdc(bus, 0); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 230 | if ((reg & 0x10) == 0) { |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 231 | bus->set_mdio(bus, 0); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 232 | } else { |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 233 | bus->set_mdio(bus, 1); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 234 | } |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 235 | bus->delay(bus); |
| 236 | bus->set_mdc(bus, 1); |
| 237 | bus->delay(bus); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 238 | reg <<= 1; |
| 239 | } |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 240 | } |
| 241 | |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 242 | /***************************************************************************** |
| 243 | * |
| 244 | * Read a MII PHY register. |
| 245 | * |
| 246 | * Returns: |
| 247 | * 0 on success |
| 248 | */ |
Ben Warren | d7fb9bc | 2010-07-29 12:56:11 -0700 | [diff] [blame] | 249 | int bb_miiphy_read(const char *devname, unsigned char addr, |
Wolfgang Denk | 4946775 | 2009-10-28 00:49:47 +0100 | [diff] [blame] | 250 | unsigned char reg, unsigned short *value) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 251 | { |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 252 | short rdreg; /* register working value */ |
| 253 | int v; |
| 254 | int j; /* counter */ |
| 255 | struct bb_miiphy_bus *bus; |
| 256 | |
| 257 | bus = bb_miiphy_getbus(devname); |
| 258 | if (bus == NULL) { |
| 259 | return -1; |
| 260 | } |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 261 | |
Richard Retanubun | 3f6b18f | 2009-07-02 13:21:22 -0400 | [diff] [blame] | 262 | if (value == NULL) { |
| 263 | puts("NULL value pointer\n"); |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 264 | return -1; |
Richard Retanubun | 3f6b18f | 2009-07-02 13:21:22 -0400 | [diff] [blame] | 265 | } |
| 266 | |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 267 | miiphy_pre (bus, 1, addr, reg); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 268 | |
| 269 | /* tri-state our MDIO I/O pin so we can read */ |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 270 | bus->set_mdc(bus, 0); |
| 271 | bus->mdio_tristate(bus); |
| 272 | bus->delay(bus); |
| 273 | bus->set_mdc(bus, 1); |
| 274 | bus->delay(bus); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 275 | |
| 276 | /* check the turnaround bit: the PHY should be driving it to zero */ |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 277 | bus->get_mdio(bus, &v); |
| 278 | if (v != 0) { |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 279 | /* puts ("PHY didn't drive TA low\n"); */ |
| 280 | for (j = 0; j < 32; j++) { |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 281 | bus->set_mdc(bus, 0); |
| 282 | bus->delay(bus); |
| 283 | bus->set_mdc(bus, 1); |
| 284 | bus->delay(bus); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 285 | } |
Richard Retanubun | 3f6b18f | 2009-07-02 13:21:22 -0400 | [diff] [blame] | 286 | /* There is no PHY, set value to 0xFFFF and return */ |
| 287 | *value = 0xFFFF; |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 288 | return -1; |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 289 | } |
| 290 | |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 291 | bus->set_mdc(bus, 0); |
| 292 | bus->delay(bus); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 293 | |
| 294 | /* read 16 bits of register data, MSB first */ |
| 295 | rdreg = 0; |
| 296 | for (j = 0; j < 16; j++) { |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 297 | bus->set_mdc(bus, 1); |
| 298 | bus->delay(bus); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 299 | rdreg <<= 1; |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 300 | bus->get_mdio(bus, &v); |
| 301 | rdreg |= (v & 0x1); |
| 302 | bus->set_mdc(bus, 0); |
| 303 | bus->delay(bus); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 304 | } |
| 305 | |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 306 | bus->set_mdc(bus, 1); |
| 307 | bus->delay(bus); |
| 308 | bus->set_mdc(bus, 0); |
| 309 | bus->delay(bus); |
| 310 | bus->set_mdc(bus, 1); |
| 311 | bus->delay(bus); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 312 | |
| 313 | *value = rdreg; |
| 314 | |
| 315 | #ifdef DEBUG |
| 316 | printf ("miiphy_read(0x%x) @ 0x%x = 0x%04x\n", reg, addr, *value); |
| 317 | #endif |
| 318 | |
| 319 | return 0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 320 | } |
| 321 | |
| 322 | |
| 323 | /***************************************************************************** |
| 324 | * |
| 325 | * Write a MII PHY register. |
| 326 | * |
| 327 | * Returns: |
| 328 | * 0 on success |
| 329 | */ |
Ben Warren | d7fb9bc | 2010-07-29 12:56:11 -0700 | [diff] [blame] | 330 | int bb_miiphy_write (const char *devname, unsigned char addr, |
Wolfgang Denk | 4946775 | 2009-10-28 00:49:47 +0100 | [diff] [blame] | 331 | unsigned char reg, unsigned short value) |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 332 | { |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 333 | struct bb_miiphy_bus *bus; |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 334 | int j; /* counter */ |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 335 | |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 336 | bus = bb_miiphy_getbus(devname); |
| 337 | if (bus == NULL) { |
| 338 | /* Bus not found! */ |
| 339 | return -1; |
| 340 | } |
| 341 | |
| 342 | miiphy_pre (bus, 0, addr, reg); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 343 | |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 344 | /* send the turnaround (10) */ |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 345 | bus->set_mdc(bus, 0); |
| 346 | bus->set_mdio(bus, 1); |
| 347 | bus->delay(bus); |
| 348 | bus->set_mdc(bus, 1); |
| 349 | bus->delay(bus); |
| 350 | bus->set_mdc(bus, 0); |
| 351 | bus->set_mdio(bus, 0); |
| 352 | bus->delay(bus); |
| 353 | bus->set_mdc(bus, 1); |
| 354 | bus->delay(bus); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 355 | |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 356 | /* write 16 bits of register data, MSB first */ |
| 357 | for (j = 0; j < 16; j++) { |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 358 | bus->set_mdc(bus, 0); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 359 | if ((value & 0x00008000) == 0) { |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 360 | bus->set_mdio(bus, 0); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 361 | } else { |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 362 | bus->set_mdio(bus, 1); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 363 | } |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 364 | bus->delay(bus); |
| 365 | bus->set_mdc(bus, 1); |
| 366 | bus->delay(bus); |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 367 | value <<= 1; |
| 368 | } |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 369 | |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 370 | /* |
| 371 | * Tri-state the MDIO line. |
| 372 | */ |
Luigi 'Comio' Mantellini | 4ba31ab | 2009-10-10 12:42:20 +0200 | [diff] [blame] | 373 | bus->mdio_tristate(bus); |
| 374 | bus->set_mdc(bus, 0); |
| 375 | bus->delay(bus); |
| 376 | bus->set_mdc(bus, 1); |
| 377 | bus->delay(bus); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 378 | |
Wolfgang Denk | 2afbe4e | 2005-08-13 02:04:37 +0200 | [diff] [blame] | 379 | return 0; |
Wolfgang Denk | 16d1c10 | 2009-10-25 23:00:09 +0100 | [diff] [blame] | 380 | } |