blob: 1357edee6ca5f0faf15c1a1a0030568643951d71 [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*------------------------------------------------------------------------
2 . smc91111.c
3 . This is a driver for SMSC's 91C111 single-chip Ethernet device.
4 .
5 . (C) Copyright 2002
6 . Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 . Rolf Offermanns <rof@sysgo.de>
8 .
9 . Copyright (C) 2001 Standard Microsystems Corporation (SMSC)
wdenk42dfe7a2004-03-14 22:25:36 +000010 . Developed by Simple Network Magic Corporation (SNMC)
wdenkfe8c2802002-11-03 00:38:21 +000011 . Copyright (C) 1996 by Erik Stahlman (ES)
12 .
13 . This program is free software; you can redistribute it and/or modify
14 . it under the terms of the GNU General Public License as published by
15 . the Free Software Foundation; either version 2 of the License, or
16 . (at your option) any later version.
17 .
18 . This program is distributed in the hope that it will be useful,
19 . but WITHOUT ANY WARRANTY; without even the implied warranty of
wdenk42dfe7a2004-03-14 22:25:36 +000020 . MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenkfe8c2802002-11-03 00:38:21 +000021 . GNU General Public License for more details.
22 .
23 . You should have received a copy of the GNU General Public License
24 . along with this program; if not, write to the Free Software
wdenk42dfe7a2004-03-14 22:25:36 +000025 . Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
wdenkfe8c2802002-11-03 00:38:21 +000026 .
27 . Information contained in this file was obtained from the LAN91C111
28 . manual from SMC. To get a copy, if you really want one, you can find
29 . information under www.smsc.com.
30 .
31 .
32 . "Features" of the SMC chip:
33 . Integrated PHY/MAC for 10/100BaseT Operation
34 . Supports internal and external MII
35 . Integrated 8K packet memory
36 . EEPROM interface for configuration
37 .
38 . Arguments:
wdenk42dfe7a2004-03-14 22:25:36 +000039 . io = for the base address
wdenkfe8c2802002-11-03 00:38:21 +000040 . irq = for the IRQ
41 .
42 . author:
wdenk42dfe7a2004-03-14 22:25:36 +000043 . Erik Stahlman ( erik@vt.edu )
44 . Daris A Nevil ( dnevil@snmc.com )
wdenkfe8c2802002-11-03 00:38:21 +000045 .
46 .
47 . Hardware multicast code from Peter Cammaert ( pc@denkart.be )
48 .
49 . Sources:
wdenk42dfe7a2004-03-14 22:25:36 +000050 . o SMSC LAN91C111 databook (www.smsc.com)
51 . o smc9194.c by Erik Stahlman
52 . o skeleton.c by Donald Becker ( becker@cesdis.gsfc.nasa.gov )
wdenkfe8c2802002-11-03 00:38:21 +000053 .
54 . History:
wdenk42dfe7a2004-03-14 22:25:36 +000055 . 06/19/03 Richard Woodruff Made u-boot environment aware and added mac addr checks.
wdenkfe8c2802002-11-03 00:38:21 +000056 . 10/17/01 Marco Hasewinkel Modify for DNP/1110
wdenk42dfe7a2004-03-14 22:25:36 +000057 . 07/25/01 Woojung Huh Modify for ADS Bitsy
58 . 04/25/01 Daris A Nevil Initial public release through SMSC
59 . 03/16/01 Daris A Nevil Modified smc9194.c for use with LAN91C111
wdenkfe8c2802002-11-03 00:38:21 +000060 ----------------------------------------------------------------------------*/
61
62#include <common.h>
63#include <command.h>
wdenkf39748a2004-06-09 13:37:52 +000064#include <config.h>
Ben Warren7194ab82009-10-04 22:37:03 -070065#include <malloc.h>
wdenkfe8c2802002-11-03 00:38:21 +000066#include "smc91111.h"
67#include <net.h>
68
wdenkfe8c2802002-11-03 00:38:21 +000069/* Use power-down feature of the chip */
70#define POWER_DOWN 0
71
72#define NO_AUTOPROBE
73
Wolfgang Denk0be248f2006-03-07 00:22:36 +010074#define SMC_DEBUG 0
wdenk8bf3b002003-12-06 23:20:41 +000075
76#if SMC_DEBUG > 1
wdenkfe8c2802002-11-03 00:38:21 +000077static const char version[] =
78 "smc91111.c:v1.0 04/25/01 by Daris A Nevil (dnevil@snmc.com)\n";
wdenk8bf3b002003-12-06 23:20:41 +000079#endif
wdenkfe8c2802002-11-03 00:38:21 +000080
wdenkf39748a2004-06-09 13:37:52 +000081/* Autonegotiation timeout in seconds */
82#ifndef CONFIG_SMC_AUTONEG_TIMEOUT
83#define CONFIG_SMC_AUTONEG_TIMEOUT 10
84#endif
85
wdenkfe8c2802002-11-03 00:38:21 +000086/*------------------------------------------------------------------------
87 .
88 . Configuration options, for the experienced user to change.
89 .
90 -------------------------------------------------------------------------*/
91
92/*
93 . Wait time for memory to be free. This probably shouldn't be
94 . tuned that much, as waiting for this means nothing else happens
95 . in the system
96*/
97#define MEMORY_WAIT_TIME 16
98
99
100#if (SMC_DEBUG > 2 )
101#define PRINTK3(args...) printf(args)
102#else
103#define PRINTK3(args...)
104#endif
105
106#if SMC_DEBUG > 1
107#define PRINTK2(args...) printf(args)
108#else
109#define PRINTK2(args...)
110#endif
111
112#ifdef SMC_DEBUG
113#define PRINTK(args...) printf(args)
114#else
115#define PRINTK(args...)
116#endif
117
118
119/*------------------------------------------------------------------------
120 .
wdenk42dfe7a2004-03-14 22:25:36 +0000121 . The internal workings of the driver. If you are changing anything
wdenkfe8c2802002-11-03 00:38:21 +0000122 . here with the SMC stuff, you should have the datasheet and know
123 . what you are doing.
124 .
125 -------------------------------------------------------------------------*/
wdenkfe8c2802002-11-03 00:38:21 +0000126
127/* Memory sizing constant */
128#define LAN91C111_MEMORY_MULTIPLIER (1024*2)
129
130#ifndef CONFIG_SMC91111_BASE
Ben Warren7194ab82009-10-04 22:37:03 -0700131#error "SMC91111 Base address must be passed to initialization funciton"
132/* #define CONFIG_SMC91111_BASE 0x20000300 */
wdenkfe8c2802002-11-03 00:38:21 +0000133#endif
134
wdenkfe8c2802002-11-03 00:38:21 +0000135#define SMC_DEV_NAME "SMC91111"
136#define SMC_PHY_ADDR 0x0000
137#define SMC_ALLOC_MAX_TRY 5
138#define SMC_TX_TIMEOUT 30
139
140#define SMC_PHY_CLOCK_DELAY 1000
141
142#define ETH_ZLEN 60
143
wdenk42dfe7a2004-03-14 22:25:36 +0000144#ifdef CONFIG_SMC_USE_32_BIT
wdenkfe8c2802002-11-03 00:38:21 +0000145#define USE_32_BIT 1
146#else
147#undef USE_32_BIT
148#endif
wdenkfe8c2802002-11-03 00:38:21 +0000149
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100150#ifdef SHARED_RESOURCES
Ben Warren7194ab82009-10-04 22:37:03 -0700151extern void swap_to(int device_id);
152#else
153# define swap_to(x)
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100154#endif
wdenkfe8c2802002-11-03 00:38:21 +0000155
wdenkfe8c2802002-11-03 00:38:21 +0000156#ifndef CONFIG_SMC91111_EXT_PHY
Ben Warren7194ab82009-10-04 22:37:03 -0700157static void smc_phy_configure(struct eth_device *dev);
wdenkfe8c2802002-11-03 00:38:21 +0000158#endif /* !CONFIG_SMC91111_EXT_PHY */
159
160/*
wdenkfe8c2802002-11-03 00:38:21 +0000161 ------------------------------------------------------------
162 .
163 . Internal routines
164 .
165 ------------------------------------------------------------
166*/
167
wdenkc3c7f862004-06-09 14:47:54 +0000168#ifdef CONFIG_SMC_USE_IOFUNCS
169/*
170 * input and output functions
171 *
172 * Implemented due to inx,outx macros accessing the device improperly
173 * and putting the device into an unkown state.
174 *
175 * For instance, on Sharp LPD7A400 SDK, affects were chip memory
176 * could not be free'd (hence the alloc failures), duplicate packets,
177 * packets being corrupt (shifted) on the wire, etc. Switching to the
178 * inx,outx functions fixed this problem.
179 */
wdenkc3c7f862004-06-09 14:47:54 +0000180
Ben Warren7194ab82009-10-04 22:37:03 -0700181static inline word SMC_inw(struct eth_device *dev, dword offset)
wdenkc3c7f862004-06-09 14:47:54 +0000182{
183 word v;
Ben Warren7194ab82009-10-04 22:37:03 -0700184 v = *((volatile word*)(dev->iobase + offset));
wdenkc3c7f862004-06-09 14:47:54 +0000185 barrier(); *(volatile u32*)(0xc0000000);
186 return v;
187}
188
Ben Warren7194ab82009-10-04 22:37:03 -0700189static inline void SMC_outw(struct eth_device *dev, word value, dword offset)
wdenkc3c7f862004-06-09 14:47:54 +0000190{
Ben Warren7194ab82009-10-04 22:37:03 -0700191 *((volatile word*)(dev->iobase + offset)) = value;
wdenkc3c7f862004-06-09 14:47:54 +0000192 barrier(); *(volatile u32*)(0xc0000000);
193}
194
Ben Warren7194ab82009-10-04 22:37:03 -0700195static inline byte SMC_inb(struct eth_device *dev, dword offset)
wdenkc3c7f862004-06-09 14:47:54 +0000196{
197 word _w;
198
Ben Warren7194ab82009-10-04 22:37:03 -0700199 _w = SMC_inw(dev, offset & ~((dword)1));
wdenkc3c7f862004-06-09 14:47:54 +0000200 return (offset & 1) ? (byte)(_w >> 8) : (byte)(_w);
201}
202
Ben Warren7194ab82009-10-04 22:37:03 -0700203static inline void SMC_outb(struct eth_device *dev, byte value, dword offset)
wdenkc3c7f862004-06-09 14:47:54 +0000204{
205 word _w;
206
Ben Warren7194ab82009-10-04 22:37:03 -0700207 _w = SMC_inw(dev, offset & ~((dword)1));
wdenkc3c7f862004-06-09 14:47:54 +0000208 if (offset & 1)
Ben Warren7194ab82009-10-04 22:37:03 -0700209 *((volatile word*)(dev->iobase + (offset & ~((dword)1)))) =
210 (value<<8) | (_w & 0x00ff);
wdenkc3c7f862004-06-09 14:47:54 +0000211 else
Ben Warren7194ab82009-10-04 22:37:03 -0700212 *((volatile word*)(dev->iobase + offset)) =
213 value | (_w & 0xff00);
wdenkc3c7f862004-06-09 14:47:54 +0000214}
215
Ben Warren7194ab82009-10-04 22:37:03 -0700216static inline void SMC_insw(struct eth_device *dev, dword offset,
217 volatile uchar* buf, dword len)
wdenkc3c7f862004-06-09 14:47:54 +0000218{
Wolfgang Denkd52fb7e2006-03-11 22:53:33 +0100219 volatile word *p = (volatile word *)buf;
220
wdenkc3c7f862004-06-09 14:47:54 +0000221 while (len-- > 0) {
Ben Warren7194ab82009-10-04 22:37:03 -0700222 *p++ = SMC_inw(dev, offset);
Wolfgang Denkd52fb7e2006-03-11 22:53:33 +0100223 barrier();
224 *((volatile u32*)(0xc0000000));
wdenkc3c7f862004-06-09 14:47:54 +0000225 }
226}
227
Ben Warren7194ab82009-10-04 22:37:03 -0700228static inline void SMC_outsw(struct eth_device *dev, dword offset,
229 uchar* buf, dword len)
wdenkc3c7f862004-06-09 14:47:54 +0000230{
Wolfgang Denkd52fb7e2006-03-11 22:53:33 +0100231 volatile word *p = (volatile word *)buf;
232
wdenkc3c7f862004-06-09 14:47:54 +0000233 while (len-- > 0) {
Ben Warren7194ab82009-10-04 22:37:03 -0700234 SMC_outw(dev, *p++, offset);
Wolfgang Denkd52fb7e2006-03-11 22:53:33 +0100235 barrier();
236 *(volatile u32*)(0xc0000000);
wdenkc3c7f862004-06-09 14:47:54 +0000237 }
238}
239#endif /* CONFIG_SMC_USE_IOFUNCS */
240
wdenkfe8c2802002-11-03 00:38:21 +0000241/*
242 . A rather simple routine to print out a packet for debugging purposes.
243*/
244#if SMC_DEBUG > 2
245static void print_packet( byte *, int );
246#endif
247
248#define tx_done(dev) 1
249
Ben Warren7194ab82009-10-04 22:37:03 -0700250static int poll4int (struct eth_device *dev, byte mask, int timeout)
wdenkb56ddc62003-09-15 21:14:37 +0000251{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200252 int tmo = get_timer (0) + timeout * CONFIG_SYS_HZ;
wdenkb56ddc62003-09-15 21:14:37 +0000253 int is_timeout = 0;
Ben Warren7194ab82009-10-04 22:37:03 -0700254 word old_bank = SMC_inw (dev, BSR_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000255
wdenkb56ddc62003-09-15 21:14:37 +0000256 PRINTK2 ("Polling...\n");
Ben Warren7194ab82009-10-04 22:37:03 -0700257 SMC_SELECT_BANK (dev, 2);
258 while ((SMC_inw (dev, SMC91111_INT_REG) & mask) == 0) {
wdenkb56ddc62003-09-15 21:14:37 +0000259 if (get_timer (0) >= tmo) {
260 is_timeout = 1;
261 break;
262 }
wdenkfe8c2802002-11-03 00:38:21 +0000263 }
wdenkfe8c2802002-11-03 00:38:21 +0000264
wdenkb56ddc62003-09-15 21:14:37 +0000265 /* restore old bank selection */
Ben Warren7194ab82009-10-04 22:37:03 -0700266 SMC_SELECT_BANK (dev, old_bank);
wdenkfe8c2802002-11-03 00:38:21 +0000267
wdenkb56ddc62003-09-15 21:14:37 +0000268 if (is_timeout)
269 return 1;
270 else
271 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000272}
273
wdenk487778b2003-06-06 11:20:01 +0000274/* Only one release command at a time, please */
Ben Warren7194ab82009-10-04 22:37:03 -0700275static inline void smc_wait_mmu_release_complete (struct eth_device *dev)
wdenk487778b2003-06-06 11:20:01 +0000276{
277 int count = 0;
wdenkb56ddc62003-09-15 21:14:37 +0000278
wdenk487778b2003-06-06 11:20:01 +0000279 /* assume bank 2 selected */
Ben Warren7194ab82009-10-04 22:37:03 -0700280 while (SMC_inw (dev, MMU_CMD_REG) & MC_BUSY) {
wdenkb56ddc62003-09-15 21:14:37 +0000281 udelay (1); /* Wait until not busy */
282 if (++count > 200)
283 break;
wdenk487778b2003-06-06 11:20:01 +0000284 }
285}
286
wdenkfe8c2802002-11-03 00:38:21 +0000287/*
288 . Function: smc_reset( void )
289 . Purpose:
wdenk42dfe7a2004-03-14 22:25:36 +0000290 . This sets the SMC91111 chip to its normal state, hopefully from whatever
291 . mess that any other DOS driver has put it in.
wdenkfe8c2802002-11-03 00:38:21 +0000292 .
293 . Maybe I should reset more registers to defaults in here? SOFTRST should
294 . do that for me.
295 .
296 . Method:
297 . 1. send a SOFT RESET
298 . 2. wait for it to finish
299 . 3. enable autorelease mode
300 . 4. reset the memory management unit
301 . 5. clear all interrupts
302 .
303*/
Ben Warren7194ab82009-10-04 22:37:03 -0700304static void smc_reset (struct eth_device *dev)
wdenkfe8c2802002-11-03 00:38:21 +0000305{
wdenkf39748a2004-06-09 13:37:52 +0000306 PRINTK2 ("%s: smc_reset\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000307
308 /* This resets the registers mostly to defaults, but doesn't
309 affect EEPROM. That seems unnecessary */
Ben Warren7194ab82009-10-04 22:37:03 -0700310 SMC_SELECT_BANK (dev, 0);
311 SMC_outw (dev, RCR_SOFTRST, RCR_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000312
313 /* Setup the Configuration Register */
314 /* This is necessary because the CONFIG_REG is not affected */
315 /* by a soft reset */
316
Ben Warren7194ab82009-10-04 22:37:03 -0700317 SMC_SELECT_BANK (dev, 1);
wdenkfe8c2802002-11-03 00:38:21 +0000318#if defined(CONFIG_SMC91111_EXT_PHY)
Ben Warren7194ab82009-10-04 22:37:03 -0700319 SMC_outw (dev, CONFIG_DEFAULT | CONFIG_EXT_PHY, CONFIG_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000320#else
Ben Warren7194ab82009-10-04 22:37:03 -0700321 SMC_outw (dev, CONFIG_DEFAULT, CONFIG_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000322#endif
323
324
325 /* Release from possible power-down state */
326 /* Configuration register is not affected by Soft Reset */
Ben Warren7194ab82009-10-04 22:37:03 -0700327 SMC_outw (dev, SMC_inw (dev, CONFIG_REG) | CONFIG_EPH_POWER_EN,
328 CONFIG_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000329
Ben Warren7194ab82009-10-04 22:37:03 -0700330 SMC_SELECT_BANK (dev, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000331
332 /* this should pause enough for the chip to be happy */
wdenkb56ddc62003-09-15 21:14:37 +0000333 udelay (10);
wdenkfe8c2802002-11-03 00:38:21 +0000334
335 /* Disable transmit and receive functionality */
Ben Warren7194ab82009-10-04 22:37:03 -0700336 SMC_outw (dev, RCR_CLEAR, RCR_REG);
337 SMC_outw (dev, TCR_CLEAR, TCR_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000338
339 /* set the control register */
Ben Warren7194ab82009-10-04 22:37:03 -0700340 SMC_SELECT_BANK (dev, 1);
341 SMC_outw (dev, CTL_DEFAULT, CTL_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000342
343 /* Reset the MMU */
Ben Warren7194ab82009-10-04 22:37:03 -0700344 SMC_SELECT_BANK (dev, 2);
345 smc_wait_mmu_release_complete (dev);
346 SMC_outw (dev, MC_RESET, MMU_CMD_REG);
347 while (SMC_inw (dev, MMU_CMD_REG) & MC_BUSY)
wdenkb56ddc62003-09-15 21:14:37 +0000348 udelay (1); /* Wait until not busy */
wdenkfe8c2802002-11-03 00:38:21 +0000349
350 /* Note: It doesn't seem that waiting for the MMU busy is needed here,
351 but this is a place where future chipsets _COULD_ break. Be wary
wdenk8bde7f72003-06-27 21:31:46 +0000352 of issuing another MMU command right after this */
wdenkfe8c2802002-11-03 00:38:21 +0000353
354 /* Disable all interrupts */
Ben Warren7194ab82009-10-04 22:37:03 -0700355 SMC_outb (dev, 0, IM_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000356}
357
358/*
359 . Function: smc_enable
360 . Purpose: let the chip talk to the outside work
361 . Method:
362 . 1. Enable the transmitter
363 . 2. Enable the receiver
364 . 3. Enable interrupts
365*/
Ben Warren7194ab82009-10-04 22:37:03 -0700366static void smc_enable(struct eth_device *dev)
wdenkfe8c2802002-11-03 00:38:21 +0000367{
wdenkf39748a2004-06-09 13:37:52 +0000368 PRINTK2("%s: smc_enable\n", SMC_DEV_NAME);
Ben Warren7194ab82009-10-04 22:37:03 -0700369 SMC_SELECT_BANK( dev, 0 );
wdenkfe8c2802002-11-03 00:38:21 +0000370 /* see the header file for options in TCR/RCR DEFAULT*/
Ben Warren7194ab82009-10-04 22:37:03 -0700371 SMC_outw( dev, TCR_DEFAULT, TCR_REG );
372 SMC_outw( dev, RCR_DEFAULT, RCR_REG );
wdenkfe8c2802002-11-03 00:38:21 +0000373
374 /* clear MII_DIS */
375/* smc_write_phy_register(PHY_CNTL_REG, 0x0000); */
376}
377
378/*
Ben Warren7194ab82009-10-04 22:37:03 -0700379 . Function: smc_halt
wdenkfe8c2802002-11-03 00:38:21 +0000380 . Purpose: closes down the SMC91xxx chip.
381 . Method:
382 . 1. zero the interrupt mask
383 . 2. clear the enable receive flag
384 . 3. clear the enable xmit flags
385 .
386 . TODO:
387 . (1) maybe utilize power down mode.
388 . Why not yet? Because while the chip will go into power down mode,
389 . the manual says that it will wake up in response to any I/O requests
wdenk42dfe7a2004-03-14 22:25:36 +0000390 . in the register space. Empirical results do not show this working.
wdenkfe8c2802002-11-03 00:38:21 +0000391*/
Ben Warren7194ab82009-10-04 22:37:03 -0700392static void smc_halt(struct eth_device *dev)
wdenkfe8c2802002-11-03 00:38:21 +0000393{
Ben Warren7194ab82009-10-04 22:37:03 -0700394 PRINTK2("%s: smc_halt\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000395
396 /* no more interrupts for me */
Ben Warren7194ab82009-10-04 22:37:03 -0700397 SMC_SELECT_BANK( dev, 2 );
398 SMC_outb( dev, 0, IM_REG );
wdenkfe8c2802002-11-03 00:38:21 +0000399
400 /* and tell the card to stay away from that nasty outside world */
Ben Warren7194ab82009-10-04 22:37:03 -0700401 SMC_SELECT_BANK( dev, 0 );
402 SMC_outb( dev, RCR_CLEAR, RCR_REG );
403 SMC_outb( dev, TCR_CLEAR, TCR_REG );
404
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100405 swap_to(FLASH);
wdenkfe8c2802002-11-03 00:38:21 +0000406}
407
408
409/*
Ben Warren7194ab82009-10-04 22:37:03 -0700410 . Function: smc_send(struct net_device * )
wdenkfe8c2802002-11-03 00:38:21 +0000411 . Purpose:
412 . This sends the actual packet to the SMC9xxx chip.
413 .
414 . Algorithm:
wdenk42dfe7a2004-03-14 22:25:36 +0000415 . First, see if a saved_skb is available.
wdenkfe8c2802002-11-03 00:38:21 +0000416 . ( this should NOT be called if there is no 'saved_skb'
417 . Now, find the packet number that the chip allocated
418 . Point the data pointers at it in memory
419 . Set the length word in the chip's memory
420 . Dump the packet to chip memory
421 . Check if a last byte is needed ( odd length packet )
422 . if so, set the control flag right
wdenk42dfe7a2004-03-14 22:25:36 +0000423 . Tell the card to send it
wdenkfe8c2802002-11-03 00:38:21 +0000424 . Enable the transmit interrupt, so I know if it failed
wdenk42dfe7a2004-03-14 22:25:36 +0000425 . Free the kernel data if I actually sent it.
wdenkfe8c2802002-11-03 00:38:21 +0000426*/
Joe Hershberger9f098642012-05-21 14:45:32 +0000427static int smc_send(struct eth_device *dev, void *packet, int packet_length)
wdenkfe8c2802002-11-03 00:38:21 +0000428{
wdenkb56ddc62003-09-15 21:14:37 +0000429 byte packet_no;
wdenkb56ddc62003-09-15 21:14:37 +0000430 byte *buf;
431 int length;
432 int numPages;
433 int try = 0;
434 int time_out;
435 byte status;
wdenk518e2e12004-03-25 14:59:05 +0000436 byte saved_pnr;
437 word saved_ptr;
wdenkfe8c2802002-11-03 00:38:21 +0000438
wdenk518e2e12004-03-25 14:59:05 +0000439 /* save PTR and PNR registers before manipulation */
Ben Warren7194ab82009-10-04 22:37:03 -0700440 SMC_SELECT_BANK (dev, 2);
441 saved_pnr = SMC_inb( dev, PN_REG );
442 saved_ptr = SMC_inw( dev, PTR_REG );
wdenkfe8c2802002-11-03 00:38:21 +0000443
wdenkf39748a2004-06-09 13:37:52 +0000444 PRINTK3 ("%s: smc_hardware_send_packet\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000445
446 length = ETH_ZLEN < packet_length ? packet_length : ETH_ZLEN;
447
448 /* allocate memory
wdenkb56ddc62003-09-15 21:14:37 +0000449 ** The MMU wants the number of pages to be the number of 256 bytes
450 ** 'pages', minus 1 ( since a packet can't ever have 0 pages :) )
451 **
452 ** The 91C111 ignores the size bits, but the code is left intact
453 ** for backwards and future compatibility.
454 **
455 ** Pkt size for allocating is data length +6 (for additional status
456 ** words, length and ctl!)
457 **
458 ** If odd size then last byte is included in this header.
459 */
460 numPages = ((length & 0xfffe) + 6);
461 numPages >>= 8; /* Divide by 256 */
wdenkfe8c2802002-11-03 00:38:21 +0000462
wdenkb56ddc62003-09-15 21:14:37 +0000463 if (numPages > 7) {
464 printf ("%s: Far too big packet error. \n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000465 return 0;
466 }
467
468 /* now, try to allocate the memory */
Ben Warren7194ab82009-10-04 22:37:03 -0700469 SMC_SELECT_BANK (dev, 2);
470 SMC_outw (dev, MC_ALLOC | numPages, MMU_CMD_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000471
wdenkdc7c9a12003-03-26 06:55:25 +0000472 /* FIXME: the ALLOC_INT bit never gets set *
wdenk42dfe7a2004-03-14 22:25:36 +0000473 * so the following will always give a *
474 * memory allocation error. *
475 * same code works in armboot though *
wdenkdc7c9a12003-03-26 06:55:25 +0000476 * -ro
477 */
478
wdenkfe8c2802002-11-03 00:38:21 +0000479again:
480 try++;
481 time_out = MEMORY_WAIT_TIME;
482 do {
Ben Warren7194ab82009-10-04 22:37:03 -0700483 status = SMC_inb (dev, SMC91111_INT_REG);
wdenkb56ddc62003-09-15 21:14:37 +0000484 if (status & IM_ALLOC_INT) {
wdenkfe8c2802002-11-03 00:38:21 +0000485 /* acknowledge the interrupt */
Ben Warren7194ab82009-10-04 22:37:03 -0700486 SMC_outb (dev, IM_ALLOC_INT, SMC91111_INT_REG);
wdenk8bde7f72003-06-27 21:31:46 +0000487 break;
wdenkfe8c2802002-11-03 00:38:21 +0000488 }
wdenkb56ddc62003-09-15 21:14:37 +0000489 } while (--time_out);
wdenkfe8c2802002-11-03 00:38:21 +0000490
wdenkb56ddc62003-09-15 21:14:37 +0000491 if (!time_out) {
492 PRINTK2 ("%s: memory allocation, try %d failed ...\n",
493 SMC_DEV_NAME, try);
494 if (try < SMC_ALLOC_MAX_TRY)
495 goto again;
496 else
497 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000498 }
499
wdenkb56ddc62003-09-15 21:14:37 +0000500 PRINTK2 ("%s: memory allocation, try %d succeeded ...\n",
501 SMC_DEV_NAME, try);
wdenkfe8c2802002-11-03 00:38:21 +0000502
wdenkb56ddc62003-09-15 21:14:37 +0000503 buf = (byte *) packet;
wdenkfe8c2802002-11-03 00:38:21 +0000504
505 /* If I get here, I _know_ there is a packet slot waiting for me */
Ben Warren7194ab82009-10-04 22:37:03 -0700506 packet_no = SMC_inb (dev, AR_REG);
wdenkb56ddc62003-09-15 21:14:37 +0000507 if (packet_no & AR_FAILED) {
wdenkfe8c2802002-11-03 00:38:21 +0000508 /* or isn't there? BAD CHIP! */
wdenkb56ddc62003-09-15 21:14:37 +0000509 printf ("%s: Memory allocation failed. \n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000510 return 0;
511 }
512
513 /* we have a packet address, so tell the card to use it */
wdenk1f6d4252004-11-02 13:00:33 +0000514#ifndef CONFIG_XAENIAX
Ben Warren7194ab82009-10-04 22:37:03 -0700515 SMC_outb (dev, packet_no, PN_REG);
wdenk1f6d4252004-11-02 13:00:33 +0000516#else
517 /* On Xaeniax board, we can't use SMC_outb here because that way
518 * the Allocate MMU command will end up written to the command register
519 * as well, which will lead to a problem.
520 */
Ben Warren7194ab82009-10-04 22:37:03 -0700521 SMC_outl (dev, packet_no << 16, 0);
wdenk1f6d4252004-11-02 13:00:33 +0000522#endif
wdenkb79a11c2004-03-25 15:14:43 +0000523 /* do not write new ptr value if Write data fifo not empty */
524 while ( saved_ptr & PTR_NOTEMPTY )
wdenk518e2e12004-03-25 14:59:05 +0000525 printf ("Write data fifo not empty!\n");
526
wdenkfe8c2802002-11-03 00:38:21 +0000527 /* point to the beginning of the packet */
Ben Warren7194ab82009-10-04 22:37:03 -0700528 SMC_outw (dev, PTR_AUTOINC, PTR_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000529
wdenkb56ddc62003-09-15 21:14:37 +0000530 PRINTK3 ("%s: Trying to xmit packet of length %x\n",
531 SMC_DEV_NAME, length);
wdenkfe8c2802002-11-03 00:38:21 +0000532
533#if SMC_DEBUG > 2
wdenkb56ddc62003-09-15 21:14:37 +0000534 printf ("Transmitting Packet\n");
535 print_packet (buf, length);
wdenkfe8c2802002-11-03 00:38:21 +0000536#endif
537
538 /* send the packet length ( +6 for status, length and ctl byte )
wdenk8bde7f72003-06-27 21:31:46 +0000539 and the status word ( set to zeros ) */
wdenkfe8c2802002-11-03 00:38:21 +0000540#ifdef USE_32_BIT
Ben Warren7194ab82009-10-04 22:37:03 -0700541 SMC_outl (dev, (length + 6) << 16, SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000542#else
Ben Warren7194ab82009-10-04 22:37:03 -0700543 SMC_outw (dev, 0, SMC91111_DATA_REG);
wdenkb56ddc62003-09-15 21:14:37 +0000544 /* send the packet length ( +6 for status words, length, and ctl */
Ben Warren7194ab82009-10-04 22:37:03 -0700545 SMC_outw (dev, (length + 6), SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000546#endif
547
548 /* send the actual data
wdenkb56ddc62003-09-15 21:14:37 +0000549 . I _think_ it's faster to send the longs first, and then
550 . mop up by sending the last word. It depends heavily
wdenk42dfe7a2004-03-14 22:25:36 +0000551 . on alignment, at least on the 486. Maybe it would be
wdenkb56ddc62003-09-15 21:14:37 +0000552 . a good idea to check which is optimal? But that could take
553 . almost as much time as is saved?
554 */
wdenkfe8c2802002-11-03 00:38:21 +0000555#ifdef USE_32_BIT
Ben Warren7194ab82009-10-04 22:37:03 -0700556 SMC_outsl (dev, SMC91111_DATA_REG, buf, length >> 2);
wdenkbb310d42004-11-22 22:20:07 +0000557#ifndef CONFIG_XAENIAX
wdenkb56ddc62003-09-15 21:14:37 +0000558 if (length & 0x2)
Ben Warren7194ab82009-10-04 22:37:03 -0700559 SMC_outw (dev, *((word *) (buf + (length & 0xFFFFFFFC))),
wdenkb56ddc62003-09-15 21:14:37 +0000560 SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000561#else
wdenkbb310d42004-11-22 22:20:07 +0000562 /* On XANEIAX, we can only use 32-bit writes, so we need to handle
563 * unaligned tail part specially. The standard code doesn't work.
564 */
565 if ((length & 3) == 3) {
566 u16 * ptr = (u16*) &buf[length-3];
Ben Warren7194ab82009-10-04 22:37:03 -0700567 SMC_outl(dev, (*ptr) | ((0x2000 | buf[length-1]) << 16),
wdenkbb310d42004-11-22 22:20:07 +0000568 SMC91111_DATA_REG);
569 } else if ((length & 2) == 2) {
570 u16 * ptr = (u16*) &buf[length-2];
Ben Warren7194ab82009-10-04 22:37:03 -0700571 SMC_outl(dev, *ptr, SMC91111_DATA_REG);
wdenkbb310d42004-11-22 22:20:07 +0000572 } else if (length & 1) {
Ben Warren7194ab82009-10-04 22:37:03 -0700573 SMC_outl(dev, (0x2000 | buf[length-1]), SMC91111_DATA_REG);
wdenkbb310d42004-11-22 22:20:07 +0000574 } else {
Ben Warren7194ab82009-10-04 22:37:03 -0700575 SMC_outl(dev, 0, SMC91111_DATA_REG);
wdenkbb310d42004-11-22 22:20:07 +0000576 }
577#endif
578#else
Ben Warren7194ab82009-10-04 22:37:03 -0700579 SMC_outsw (dev, SMC91111_DATA_REG, buf, (length) >> 1);
wdenkfe8c2802002-11-03 00:38:21 +0000580#endif /* USE_32_BIT */
581
wdenkbb310d42004-11-22 22:20:07 +0000582#ifndef CONFIG_XAENIAX
wdenk42dfe7a2004-03-14 22:25:36 +0000583 /* Send the last byte, if there is one. */
wdenkb56ddc62003-09-15 21:14:37 +0000584 if ((length & 1) == 0) {
Ben Warren7194ab82009-10-04 22:37:03 -0700585 SMC_outw (dev, 0, SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000586 } else {
Ben Warren7194ab82009-10-04 22:37:03 -0700587 SMC_outw (dev, buf[length - 1] | 0x2000, SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000588 }
wdenkbb310d42004-11-22 22:20:07 +0000589#endif
wdenkfe8c2802002-11-03 00:38:21 +0000590
591 /* and let the chipset deal with it */
Ben Warren7194ab82009-10-04 22:37:03 -0700592 SMC_outw (dev, MC_ENQUEUE, MMU_CMD_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000593
594 /* poll for TX INT */
Ben Warren7194ab82009-10-04 22:37:03 -0700595 /* if (poll4int (dev, IM_TX_INT, SMC_TX_TIMEOUT)) { */
wdenk518e2e12004-03-25 14:59:05 +0000596 /* poll for TX_EMPTY INT - autorelease enabled */
Ben Warren7194ab82009-10-04 22:37:03 -0700597 if (poll4int(dev, IM_TX_EMPTY_INT, SMC_TX_TIMEOUT)) {
wdenkfe8c2802002-11-03 00:38:21 +0000598 /* sending failed */
wdenkb56ddc62003-09-15 21:14:37 +0000599 PRINTK2 ("%s: TX timeout, sending failed...\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000600
601 /* release packet */
wdenk518e2e12004-03-25 14:59:05 +0000602 /* no need to release, MMU does that now */
wdenk1f6d4252004-11-02 13:00:33 +0000603#ifdef CONFIG_XAENIAX
Ben Warren7194ab82009-10-04 22:37:03 -0700604 SMC_outw (dev, MC_FREEPKT, MMU_CMD_REG);
wdenk1f6d4252004-11-02 13:00:33 +0000605#endif
wdenkfe8c2802002-11-03 00:38:21 +0000606
wdenk8bde7f72003-06-27 21:31:46 +0000607 /* wait for MMU getting ready (low) */
Ben Warren7194ab82009-10-04 22:37:03 -0700608 while (SMC_inw (dev, MMU_CMD_REG) & MC_BUSY) {
wdenkb56ddc62003-09-15 21:14:37 +0000609 udelay (10);
wdenk8bde7f72003-06-27 21:31:46 +0000610 }
wdenkfe8c2802002-11-03 00:38:21 +0000611
wdenkb56ddc62003-09-15 21:14:37 +0000612 PRINTK2 ("MMU ready\n");
wdenkfe8c2802002-11-03 00:38:21 +0000613
614
615 return 0;
616 } else {
617 /* ack. int */
Ben Warren7194ab82009-10-04 22:37:03 -0700618 SMC_outb (dev, IM_TX_EMPTY_INT, SMC91111_INT_REG);
wdenk518e2e12004-03-25 14:59:05 +0000619 /* SMC_outb (IM_TX_INT, SMC91111_INT_REG); */
wdenkb56ddc62003-09-15 21:14:37 +0000620 PRINTK2 ("%s: Sent packet of length %d \n", SMC_DEV_NAME,
621 length);
wdenkfe8c2802002-11-03 00:38:21 +0000622
623 /* release packet */
wdenk518e2e12004-03-25 14:59:05 +0000624 /* no need to release, MMU does that now */
wdenk1f6d4252004-11-02 13:00:33 +0000625#ifdef CONFIG_XAENIAX
Ben Warren7194ab82009-10-04 22:37:03 -0700626 SMC_outw (dev, MC_FREEPKT, MMU_CMD_REG);
wdenk1f6d4252004-11-02 13:00:33 +0000627#endif
wdenkfe8c2802002-11-03 00:38:21 +0000628
wdenk8bde7f72003-06-27 21:31:46 +0000629 /* wait for MMU getting ready (low) */
Ben Warren7194ab82009-10-04 22:37:03 -0700630 while (SMC_inw (dev, MMU_CMD_REG) & MC_BUSY) {
wdenkb56ddc62003-09-15 21:14:37 +0000631 udelay (10);
wdenk8bde7f72003-06-27 21:31:46 +0000632 }
wdenkfe8c2802002-11-03 00:38:21 +0000633
wdenkb56ddc62003-09-15 21:14:37 +0000634 PRINTK2 ("MMU ready\n");
wdenkfe8c2802002-11-03 00:38:21 +0000635
636
637 }
638
wdenk518e2e12004-03-25 14:59:05 +0000639 /* restore previously saved registers */
wdenk1f6d4252004-11-02 13:00:33 +0000640#ifndef CONFIG_XAENIAX
Ben Warren7194ab82009-10-04 22:37:03 -0700641 SMC_outb( dev, saved_pnr, PN_REG );
wdenk1f6d4252004-11-02 13:00:33 +0000642#else
643 /* On Xaeniax board, we can't use SMC_outb here because that way
644 * the Allocate MMU command will end up written to the command register
645 * as well, which will lead to a problem.
646 */
Ben Warren7194ab82009-10-04 22:37:03 -0700647 SMC_outl(dev, saved_pnr << 16, 0);
wdenk1f6d4252004-11-02 13:00:33 +0000648#endif
Ben Warren7194ab82009-10-04 22:37:03 -0700649 SMC_outw( dev, saved_ptr, PTR_REG );
wdenk518e2e12004-03-25 14:59:05 +0000650
wdenkfe8c2802002-11-03 00:38:21 +0000651 return length;
652}
653
Thomas Chou1ca6d0d2010-10-06 09:16:10 +0800654static int smc_write_hwaddr(struct eth_device *dev)
655{
656 int i;
657
658 swap_to(ETHERNET);
659 SMC_SELECT_BANK (dev, 1);
660#ifdef USE_32_BIT
661 for (i = 0; i < 6; i += 2) {
662 word address;
663
664 address = dev->enetaddr[i + 1] << 8;
665 address |= dev->enetaddr[i];
666 SMC_outw(dev, address, (ADDR0_REG + i));
667 }
668#else
669 for (i = 0; i < 6; i++)
670 SMC_outb(dev, dev->enetaddr[i], (ADDR0_REG + i));
671#endif
672 swap_to(FLASH);
673 return 0;
674}
675
wdenkfe8c2802002-11-03 00:38:21 +0000676/*
677 * Open and Initialize the board
678 *
679 * Set up everything, reset the card, etc ..
680 *
681 */
Ben Warren7194ab82009-10-04 22:37:03 -0700682static int smc_init(struct eth_device *dev, bd_t *bd)
wdenkfe8c2802002-11-03 00:38:21 +0000683{
Ben Warren7194ab82009-10-04 22:37:03 -0700684 swap_to(ETHERNET);
685
686 PRINTK2 ("%s: smc_init\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000687
688 /* reset the hardware */
Ben Warren7194ab82009-10-04 22:37:03 -0700689 smc_reset (dev);
690 smc_enable (dev);
wdenkfe8c2802002-11-03 00:38:21 +0000691
692 /* Configure the PHY */
693#ifndef CONFIG_SMC91111_EXT_PHY
Ben Warren7194ab82009-10-04 22:37:03 -0700694 smc_phy_configure (dev);
wdenkfe8c2802002-11-03 00:38:21 +0000695#endif
696
wdenkfe8c2802002-11-03 00:38:21 +0000697 /* conservative setting (10Mbps, HalfDuplex, no AutoNeg.) */
Ben Warren7194ab82009-10-04 22:37:03 -0700698/* SMC_SELECT_BANK(dev, 0); */
699/* SMC_outw(dev, 0, RPC_REG); */
wdenkfe8c2802002-11-03 00:38:21 +0000700
Ben Warren7194ab82009-10-04 22:37:03 -0700701 printf(SMC_DEV_NAME ": MAC %pM\n", dev->enetaddr);
702
wdenkfe8c2802002-11-03 00:38:21 +0000703 return 0;
704}
705
wdenkfe8c2802002-11-03 00:38:21 +0000706/*-------------------------------------------------------------
707 .
708 . smc_rcv - receive a packet from the card
709 .
710 . There is ( at least ) a packet waiting to be read from
711 . chip-memory.
712 .
713 . o Read the status
714 . o If an error, record it
715 . o otherwise, read in the packet
716 --------------------------------------------------------------
717*/
Ben Warren7194ab82009-10-04 22:37:03 -0700718static int smc_rcv(struct eth_device *dev)
wdenkfe8c2802002-11-03 00:38:21 +0000719{
wdenk42dfe7a2004-03-14 22:25:36 +0000720 int packet_number;
wdenkfe8c2802002-11-03 00:38:21 +0000721 word status;
722 word packet_length;
wdenk42dfe7a2004-03-14 22:25:36 +0000723 int is_error = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000724#ifdef USE_32_BIT
725 dword stat_len;
726#endif
wdenk518e2e12004-03-25 14:59:05 +0000727 byte saved_pnr;
728 word saved_ptr;
wdenkfe8c2802002-11-03 00:38:21 +0000729
Ben Warren7194ab82009-10-04 22:37:03 -0700730 SMC_SELECT_BANK(dev, 2);
wdenk518e2e12004-03-25 14:59:05 +0000731 /* save PTR and PTR registers */
Ben Warren7194ab82009-10-04 22:37:03 -0700732 saved_pnr = SMC_inb( dev, PN_REG );
733 saved_ptr = SMC_inw( dev, PTR_REG );
wdenk518e2e12004-03-25 14:59:05 +0000734
Ben Warren7194ab82009-10-04 22:37:03 -0700735 packet_number = SMC_inw( dev, RXFIFO_REG );
wdenkfe8c2802002-11-03 00:38:21 +0000736
737 if ( packet_number & RXFIFO_REMPTY ) {
738
739 return 0;
740 }
741
wdenkf39748a2004-06-09 13:37:52 +0000742 PRINTK3("%s: smc_rcv\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000743 /* start reading from the start of the packet */
Ben Warren7194ab82009-10-04 22:37:03 -0700744 SMC_outw( dev, PTR_READ | PTR_RCV | PTR_AUTOINC, PTR_REG );
wdenkfe8c2802002-11-03 00:38:21 +0000745
746 /* First two words are status and packet_length */
747#ifdef USE_32_BIT
Ben Warren7194ab82009-10-04 22:37:03 -0700748 stat_len = SMC_inl(dev, SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000749 status = stat_len & 0xffff;
750 packet_length = stat_len >> 16;
751#else
Ben Warren7194ab82009-10-04 22:37:03 -0700752 status = SMC_inw( dev, SMC91111_DATA_REG );
753 packet_length = SMC_inw( dev, SMC91111_DATA_REG );
wdenkfe8c2802002-11-03 00:38:21 +0000754#endif
755
756 packet_length &= 0x07ff; /* mask off top bits */
757
758 PRINTK2("RCV: STATUS %4x LENGTH %4x\n", status, packet_length );
759
760 if ( !(status & RS_ERRORS ) ){
761 /* Adjust for having already read the first two words */
762 packet_length -= 4; /*4; */
763
764
wdenkfe8c2802002-11-03 00:38:21 +0000765 /* set odd length for bug in LAN91C111, */
766 /* which never sets RS_ODDFRAME */
767 /* TODO ? */
768
769
770#ifdef USE_32_BIT
771 PRINTK3(" Reading %d dwords (and %d bytes) \n",
772 packet_length >> 2, packet_length & 3 );
773 /* QUESTION: Like in the TX routine, do I want
774 to send the DWORDs or the bytes first, or some
775 mixture. A mixture might improve already slow PIO
wdenk42dfe7a2004-03-14 22:25:36 +0000776 performance */
Ben Warren7194ab82009-10-04 22:37:03 -0700777 SMC_insl( dev, SMC91111_DATA_REG, NetRxPackets[0],
778 packet_length >> 2 );
wdenkfe8c2802002-11-03 00:38:21 +0000779 /* read the left over bytes */
780 if (packet_length & 3) {
781 int i;
782
Ben Warren7194ab82009-10-04 22:37:03 -0700783 byte *tail = (byte *)(NetRxPackets[0] +
784 (packet_length & ~3));
785 dword leftover = SMC_inl(dev, SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000786 for (i=0; i<(packet_length & 3); i++)
787 *tail++ = (byte) (leftover >> (8*i)) & 0xff;
788 }
789#else
790 PRINTK3(" Reading %d words and %d byte(s) \n",
791 (packet_length >> 1 ), packet_length & 1 );
Ben Warren7194ab82009-10-04 22:37:03 -0700792 SMC_insw(dev, SMC91111_DATA_REG , NetRxPackets[0],
793 packet_length >> 1);
wdenkfe8c2802002-11-03 00:38:21 +0000794
795#endif /* USE_32_BIT */
796
797#if SMC_DEBUG > 2
798 printf("Receiving Packet\n");
799 print_packet( NetRxPackets[0], packet_length );
800#endif
801 } else {
802 /* error ... */
803 /* TODO ? */
804 is_error = 1;
805 }
806
Ben Warren7194ab82009-10-04 22:37:03 -0700807 while ( SMC_inw( dev, MMU_CMD_REG ) & MC_BUSY )
wdenkfe8c2802002-11-03 00:38:21 +0000808 udelay(1); /* Wait until not busy */
809
810 /* error or good, tell the card to get rid of this packet */
Ben Warren7194ab82009-10-04 22:37:03 -0700811 SMC_outw( dev, MC_RELEASE, MMU_CMD_REG );
wdenkfe8c2802002-11-03 00:38:21 +0000812
Ben Warren7194ab82009-10-04 22:37:03 -0700813 while ( SMC_inw( dev, MMU_CMD_REG ) & MC_BUSY )
wdenkfe8c2802002-11-03 00:38:21 +0000814 udelay(1); /* Wait until not busy */
815
wdenk518e2e12004-03-25 14:59:05 +0000816 /* restore saved registers */
wdenk1f6d4252004-11-02 13:00:33 +0000817#ifndef CONFIG_XAENIAX
Ben Warren7194ab82009-10-04 22:37:03 -0700818 SMC_outb( dev, saved_pnr, PN_REG );
wdenk1f6d4252004-11-02 13:00:33 +0000819#else
820 /* On Xaeniax board, we can't use SMC_outb here because that way
821 * the Allocate MMU command will end up written to the command register
822 * as well, which will lead to a problem.
823 */
Ben Warren7194ab82009-10-04 22:37:03 -0700824 SMC_outl( dev, saved_pnr << 16, 0);
wdenk1f6d4252004-11-02 13:00:33 +0000825#endif
Ben Warren7194ab82009-10-04 22:37:03 -0700826 SMC_outw( dev, saved_ptr, PTR_REG );
wdenk518e2e12004-03-25 14:59:05 +0000827
wdenkfe8c2802002-11-03 00:38:21 +0000828 if (!is_error) {
829 /* Pass the packet up to the protocol layers. */
830 NetReceive(NetRxPackets[0], packet_length);
831 return packet_length;
832 } else {
833 return 0;
834 }
835
836}
837
838
wdenkfe8c2802002-11-03 00:38:21 +0000839#if 0
840/*------------------------------------------------------------
841 . Modify a bit in the LAN91C111 register set
842 .-------------------------------------------------------------*/
Ben Warren7194ab82009-10-04 22:37:03 -0700843static word smc_modify_regbit(struct eth_device *dev, int bank, int ioaddr, int reg,
wdenkfe8c2802002-11-03 00:38:21 +0000844 unsigned int bit, int val)
845{
846 word regval;
847
Ben Warren7194ab82009-10-04 22:37:03 -0700848 SMC_SELECT_BANK( dev, bank );
wdenkfe8c2802002-11-03 00:38:21 +0000849
Ben Warren7194ab82009-10-04 22:37:03 -0700850 regval = SMC_inw( dev, reg );
wdenkfe8c2802002-11-03 00:38:21 +0000851 if (val)
852 regval |= bit;
853 else
854 regval &= ~bit;
855
Ben Warren7194ab82009-10-04 22:37:03 -0700856 SMC_outw( dev, regval, 0 );
wdenkfe8c2802002-11-03 00:38:21 +0000857 return(regval);
858}
859
860
861/*------------------------------------------------------------
862 . Retrieve a bit in the LAN91C111 register set
863 .-------------------------------------------------------------*/
Ben Warren7194ab82009-10-04 22:37:03 -0700864static int smc_get_regbit(struct eth_device *dev, int bank, int ioaddr, int reg, unsigned int bit)
wdenkfe8c2802002-11-03 00:38:21 +0000865{
Ben Warren7194ab82009-10-04 22:37:03 -0700866 SMC_SELECT_BANK( dev, bank );
867 if ( SMC_inw( dev, reg ) & bit)
wdenkfe8c2802002-11-03 00:38:21 +0000868 return(1);
869 else
870 return(0);
871}
872
873
874/*------------------------------------------------------------
875 . Modify a LAN91C111 register (word access only)
876 .-------------------------------------------------------------*/
Ben Warren7194ab82009-10-04 22:37:03 -0700877static void smc_modify_reg(struct eth_device *dev, int bank, int ioaddr, int reg, word val)
wdenkfe8c2802002-11-03 00:38:21 +0000878{
Ben Warren7194ab82009-10-04 22:37:03 -0700879 SMC_SELECT_BANK( dev, bank );
880 SMC_outw( dev, val, reg );
wdenkfe8c2802002-11-03 00:38:21 +0000881}
882
883
884/*------------------------------------------------------------
885 . Retrieve a LAN91C111 register (word access only)
886 .-------------------------------------------------------------*/
Ben Warren7194ab82009-10-04 22:37:03 -0700887static int smc_get_reg(struct eth_device *dev, int bank, int ioaddr, int reg)
wdenkfe8c2802002-11-03 00:38:21 +0000888{
Ben Warren7194ab82009-10-04 22:37:03 -0700889 SMC_SELECT_BANK( dev, bank );
890 return(SMC_inw( dev, reg ));
wdenkfe8c2802002-11-03 00:38:21 +0000891}
892
893#endif /* 0 */
894
895/*---PHY CONTROL AND CONFIGURATION----------------------------------------- */
896
897#if (SMC_DEBUG > 2 )
898
899/*------------------------------------------------------------
900 . Debugging function for viewing MII Management serial bitstream
901 .-------------------------------------------------------------*/
wdenkb56ddc62003-09-15 21:14:37 +0000902static void smc_dump_mii_stream (byte * bits, int size)
wdenkfe8c2802002-11-03 00:38:21 +0000903{
904 int i;
905
wdenkb56ddc62003-09-15 21:14:37 +0000906 printf ("BIT#:");
907 for (i = 0; i < size; ++i) {
908 printf ("%d", i % 10);
909 }
wdenkfe8c2802002-11-03 00:38:21 +0000910
wdenkb56ddc62003-09-15 21:14:37 +0000911 printf ("\nMDOE:");
912 for (i = 0; i < size; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +0000913 if (bits[i] & MII_MDOE)
wdenkb56ddc62003-09-15 21:14:37 +0000914 printf ("1");
wdenkfe8c2802002-11-03 00:38:21 +0000915 else
wdenkb56ddc62003-09-15 21:14:37 +0000916 printf ("0");
917 }
wdenkfe8c2802002-11-03 00:38:21 +0000918
wdenkb56ddc62003-09-15 21:14:37 +0000919 printf ("\nMDO :");
920 for (i = 0; i < size; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +0000921 if (bits[i] & MII_MDO)
wdenkb56ddc62003-09-15 21:14:37 +0000922 printf ("1");
wdenkfe8c2802002-11-03 00:38:21 +0000923 else
wdenkb56ddc62003-09-15 21:14:37 +0000924 printf ("0");
925 }
wdenkfe8c2802002-11-03 00:38:21 +0000926
wdenkb56ddc62003-09-15 21:14:37 +0000927 printf ("\nMDI :");
928 for (i = 0; i < size; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +0000929 if (bits[i] & MII_MDI)
wdenkb56ddc62003-09-15 21:14:37 +0000930 printf ("1");
wdenkfe8c2802002-11-03 00:38:21 +0000931 else
wdenkb56ddc62003-09-15 21:14:37 +0000932 printf ("0");
933 }
wdenkfe8c2802002-11-03 00:38:21 +0000934
wdenkb56ddc62003-09-15 21:14:37 +0000935 printf ("\n");
wdenkfe8c2802002-11-03 00:38:21 +0000936}
937#endif
938
939/*------------------------------------------------------------
940 . Reads a register from the MII Management serial interface
941 .-------------------------------------------------------------*/
942#ifndef CONFIG_SMC91111_EXT_PHY
Ben Warren7194ab82009-10-04 22:37:03 -0700943static word smc_read_phy_register (struct eth_device *dev, byte phyreg)
wdenkfe8c2802002-11-03 00:38:21 +0000944{
945 int oldBank;
946 int i;
947 byte mask;
948 word mii_reg;
949 byte bits[64];
950 int clk_idx = 0;
951 int input_idx;
952 word phydata;
953 byte phyaddr = SMC_PHY_ADDR;
954
955 /* 32 consecutive ones on MDO to establish sync */
956 for (i = 0; i < 32; ++i)
957 bits[clk_idx++] = MII_MDOE | MII_MDO;
958
959 /* Start code <01> */
960 bits[clk_idx++] = MII_MDOE;
961 bits[clk_idx++] = MII_MDOE | MII_MDO;
962
963 /* Read command <10> */
964 bits[clk_idx++] = MII_MDOE | MII_MDO;
965 bits[clk_idx++] = MII_MDOE;
966
967 /* Output the PHY address, msb first */
wdenkb56ddc62003-09-15 21:14:37 +0000968 mask = (byte) 0x10;
969 for (i = 0; i < 5; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +0000970 if (phyaddr & mask)
971 bits[clk_idx++] = MII_MDOE | MII_MDO;
972 else
973 bits[clk_idx++] = MII_MDOE;
974
975 /* Shift to next lowest bit */
976 mask >>= 1;
wdenkb56ddc62003-09-15 21:14:37 +0000977 }
wdenkfe8c2802002-11-03 00:38:21 +0000978
979 /* Output the phy register number, msb first */
wdenkb56ddc62003-09-15 21:14:37 +0000980 mask = (byte) 0x10;
981 for (i = 0; i < 5; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +0000982 if (phyreg & mask)
983 bits[clk_idx++] = MII_MDOE | MII_MDO;
984 else
985 bits[clk_idx++] = MII_MDOE;
986
987 /* Shift to next lowest bit */
988 mask >>= 1;
wdenkb56ddc62003-09-15 21:14:37 +0000989 }
wdenkfe8c2802002-11-03 00:38:21 +0000990
991 /* Tristate and turnaround (2 bit times) */
992 bits[clk_idx++] = 0;
993 /*bits[clk_idx++] = 0; */
994
995 /* Input starts at this bit time */
996 input_idx = clk_idx;
997
998 /* Will input 16 bits */
999 for (i = 0; i < 16; ++i)
1000 bits[clk_idx++] = 0;
1001
1002 /* Final clock bit */
1003 bits[clk_idx++] = 0;
1004
1005 /* Save the current bank */
Ben Warren7194ab82009-10-04 22:37:03 -07001006 oldBank = SMC_inw (dev, BANK_SELECT);
wdenkfe8c2802002-11-03 00:38:21 +00001007
1008 /* Select bank 3 */
Ben Warren7194ab82009-10-04 22:37:03 -07001009 SMC_SELECT_BANK (dev, 3);
wdenkfe8c2802002-11-03 00:38:21 +00001010
1011 /* Get the current MII register value */
Ben Warren7194ab82009-10-04 22:37:03 -07001012 mii_reg = SMC_inw (dev, MII_REG);
wdenkfe8c2802002-11-03 00:38:21 +00001013
1014 /* Turn off all MII Interface bits */
wdenkb56ddc62003-09-15 21:14:37 +00001015 mii_reg &= ~(MII_MDOE | MII_MCLK | MII_MDI | MII_MDO);
wdenkfe8c2802002-11-03 00:38:21 +00001016
1017 /* Clock all 64 cycles */
wdenkb56ddc62003-09-15 21:14:37 +00001018 for (i = 0; i < sizeof bits; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +00001019 /* Clock Low - output data */
Ben Warren7194ab82009-10-04 22:37:03 -07001020 SMC_outw (dev, mii_reg | bits[i], MII_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001021 udelay (SMC_PHY_CLOCK_DELAY);
wdenkfe8c2802002-11-03 00:38:21 +00001022
1023
1024 /* Clock Hi - input data */
Ben Warren7194ab82009-10-04 22:37:03 -07001025 SMC_outw (dev, mii_reg | bits[i] | MII_MCLK, MII_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001026 udelay (SMC_PHY_CLOCK_DELAY);
Ben Warren7194ab82009-10-04 22:37:03 -07001027 bits[i] |= SMC_inw (dev, MII_REG) & MII_MDI;
wdenkb56ddc62003-09-15 21:14:37 +00001028 }
wdenkfe8c2802002-11-03 00:38:21 +00001029
1030 /* Return to idle state */
1031 /* Set clock to low, data to low, and output tristated */
Ben Warren7194ab82009-10-04 22:37:03 -07001032 SMC_outw (dev, mii_reg, MII_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001033 udelay (SMC_PHY_CLOCK_DELAY);
wdenkfe8c2802002-11-03 00:38:21 +00001034
1035 /* Restore original bank select */
Ben Warren7194ab82009-10-04 22:37:03 -07001036 SMC_SELECT_BANK (dev, oldBank);
wdenkfe8c2802002-11-03 00:38:21 +00001037
1038 /* Recover input data */
1039 phydata = 0;
wdenkb56ddc62003-09-15 21:14:37 +00001040 for (i = 0; i < 16; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +00001041 phydata <<= 1;
1042
1043 if (bits[input_idx++] & MII_MDI)
1044 phydata |= 0x0001;
wdenkb56ddc62003-09-15 21:14:37 +00001045 }
wdenkfe8c2802002-11-03 00:38:21 +00001046
1047#if (SMC_DEBUG > 2 )
wdenkb56ddc62003-09-15 21:14:37 +00001048 printf ("smc_read_phy_register(): phyaddr=%x,phyreg=%x,phydata=%x\n",
wdenkfe8c2802002-11-03 00:38:21 +00001049 phyaddr, phyreg, phydata);
wdenkb56ddc62003-09-15 21:14:37 +00001050 smc_dump_mii_stream (bits, sizeof bits);
wdenkfe8c2802002-11-03 00:38:21 +00001051#endif
1052
wdenkb56ddc62003-09-15 21:14:37 +00001053 return (phydata);
wdenkfe8c2802002-11-03 00:38:21 +00001054}
1055
1056
1057/*------------------------------------------------------------
1058 . Writes a register to the MII Management serial interface
1059 .-------------------------------------------------------------*/
Ben Warren7194ab82009-10-04 22:37:03 -07001060static void smc_write_phy_register (struct eth_device *dev, byte phyreg,
1061 word phydata)
wdenkfe8c2802002-11-03 00:38:21 +00001062{
1063 int oldBank;
1064 int i;
1065 word mask;
1066 word mii_reg;
1067 byte bits[65];
1068 int clk_idx = 0;
1069 byte phyaddr = SMC_PHY_ADDR;
1070
1071 /* 32 consecutive ones on MDO to establish sync */
1072 for (i = 0; i < 32; ++i)
1073 bits[clk_idx++] = MII_MDOE | MII_MDO;
1074
1075 /* Start code <01> */
1076 bits[clk_idx++] = MII_MDOE;
1077 bits[clk_idx++] = MII_MDOE | MII_MDO;
1078
1079 /* Write command <01> */
1080 bits[clk_idx++] = MII_MDOE;
1081 bits[clk_idx++] = MII_MDOE | MII_MDO;
1082
1083 /* Output the PHY address, msb first */
wdenkb56ddc62003-09-15 21:14:37 +00001084 mask = (byte) 0x10;
1085 for (i = 0; i < 5; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +00001086 if (phyaddr & mask)
1087 bits[clk_idx++] = MII_MDOE | MII_MDO;
1088 else
1089 bits[clk_idx++] = MII_MDOE;
1090
1091 /* Shift to next lowest bit */
1092 mask >>= 1;
wdenkb56ddc62003-09-15 21:14:37 +00001093 }
wdenkfe8c2802002-11-03 00:38:21 +00001094
1095 /* Output the phy register number, msb first */
wdenkb56ddc62003-09-15 21:14:37 +00001096 mask = (byte) 0x10;
1097 for (i = 0; i < 5; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +00001098 if (phyreg & mask)
1099 bits[clk_idx++] = MII_MDOE | MII_MDO;
1100 else
1101 bits[clk_idx++] = MII_MDOE;
1102
1103 /* Shift to next lowest bit */
1104 mask >>= 1;
wdenkb56ddc62003-09-15 21:14:37 +00001105 }
wdenkfe8c2802002-11-03 00:38:21 +00001106
1107 /* Tristate and turnaround (2 bit times) */
1108 bits[clk_idx++] = 0;
1109 bits[clk_idx++] = 0;
1110
1111 /* Write out 16 bits of data, msb first */
1112 mask = 0x8000;
wdenkb56ddc62003-09-15 21:14:37 +00001113 for (i = 0; i < 16; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +00001114 if (phydata & mask)
1115 bits[clk_idx++] = MII_MDOE | MII_MDO;
1116 else
1117 bits[clk_idx++] = MII_MDOE;
1118
1119 /* Shift to next lowest bit */
1120 mask >>= 1;
wdenkb56ddc62003-09-15 21:14:37 +00001121 }
wdenkfe8c2802002-11-03 00:38:21 +00001122
1123 /* Final clock bit (tristate) */
1124 bits[clk_idx++] = 0;
1125
1126 /* Save the current bank */
Ben Warren7194ab82009-10-04 22:37:03 -07001127 oldBank = SMC_inw (dev, BANK_SELECT);
wdenkfe8c2802002-11-03 00:38:21 +00001128
1129 /* Select bank 3 */
Ben Warren7194ab82009-10-04 22:37:03 -07001130 SMC_SELECT_BANK (dev, 3);
wdenkfe8c2802002-11-03 00:38:21 +00001131
1132 /* Get the current MII register value */
Ben Warren7194ab82009-10-04 22:37:03 -07001133 mii_reg = SMC_inw (dev, MII_REG);
wdenkfe8c2802002-11-03 00:38:21 +00001134
1135 /* Turn off all MII Interface bits */
wdenkb56ddc62003-09-15 21:14:37 +00001136 mii_reg &= ~(MII_MDOE | MII_MCLK | MII_MDI | MII_MDO);
wdenkfe8c2802002-11-03 00:38:21 +00001137
1138 /* Clock all cycles */
wdenkb56ddc62003-09-15 21:14:37 +00001139 for (i = 0; i < sizeof bits; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +00001140 /* Clock Low - output data */
Ben Warren7194ab82009-10-04 22:37:03 -07001141 SMC_outw (dev, mii_reg | bits[i], MII_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001142 udelay (SMC_PHY_CLOCK_DELAY);
wdenkfe8c2802002-11-03 00:38:21 +00001143
1144
1145 /* Clock Hi - input data */
Ben Warren7194ab82009-10-04 22:37:03 -07001146 SMC_outw (dev, mii_reg | bits[i] | MII_MCLK, MII_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001147 udelay (SMC_PHY_CLOCK_DELAY);
Ben Warren7194ab82009-10-04 22:37:03 -07001148 bits[i] |= SMC_inw (dev, MII_REG) & MII_MDI;
wdenkb56ddc62003-09-15 21:14:37 +00001149 }
wdenkfe8c2802002-11-03 00:38:21 +00001150
1151 /* Return to idle state */
1152 /* Set clock to low, data to low, and output tristated */
Ben Warren7194ab82009-10-04 22:37:03 -07001153 SMC_outw (dev, mii_reg, MII_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001154 udelay (SMC_PHY_CLOCK_DELAY);
wdenkfe8c2802002-11-03 00:38:21 +00001155
1156 /* Restore original bank select */
Ben Warren7194ab82009-10-04 22:37:03 -07001157 SMC_SELECT_BANK (dev, oldBank);
wdenkfe8c2802002-11-03 00:38:21 +00001158
1159#if (SMC_DEBUG > 2 )
wdenkb56ddc62003-09-15 21:14:37 +00001160 printf ("smc_write_phy_register(): phyaddr=%x,phyreg=%x,phydata=%x\n",
wdenkfe8c2802002-11-03 00:38:21 +00001161 phyaddr, phyreg, phydata);
wdenkb56ddc62003-09-15 21:14:37 +00001162 smc_dump_mii_stream (bits, sizeof bits);
wdenkfe8c2802002-11-03 00:38:21 +00001163#endif
1164}
1165#endif /* !CONFIG_SMC91111_EXT_PHY */
1166
1167
wdenkfe8c2802002-11-03 00:38:21 +00001168/*------------------------------------------------------------
wdenkfe8c2802002-11-03 00:38:21 +00001169 . Configures the specified PHY using Autonegotiation. Calls
1170 . smc_phy_fixed() if the user has requested a certain config.
1171 .-------------------------------------------------------------*/
1172#ifndef CONFIG_SMC91111_EXT_PHY
Ben Warren7194ab82009-10-04 22:37:03 -07001173static void smc_phy_configure (struct eth_device *dev)
wdenkfe8c2802002-11-03 00:38:21 +00001174{
1175 int timeout;
wdenkb56ddc62003-09-15 21:14:37 +00001176 word my_phy_caps; /* My PHY capabilities */
1177 word my_ad_caps; /* My Advertised capabilities */
1178 word status = 0; /*;my status = 0 */
wdenkfe8c2802002-11-03 00:38:21 +00001179
wdenkf39748a2004-06-09 13:37:52 +00001180 PRINTK3 ("%s: smc_program_phy()\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +00001181
wdenkfe8c2802002-11-03 00:38:21 +00001182 /* Reset the PHY, setting all other bits to zero */
Ben Warren7194ab82009-10-04 22:37:03 -07001183 smc_write_phy_register (dev, PHY_CNTL_REG, PHY_CNTL_RST);
wdenkfe8c2802002-11-03 00:38:21 +00001184
1185 /* Wait for the reset to complete, or time out */
wdenkb56ddc62003-09-15 21:14:37 +00001186 timeout = 6; /* Wait up to 3 seconds */
1187 while (timeout--) {
Ben Warren7194ab82009-10-04 22:37:03 -07001188 if (!(smc_read_phy_register (dev, PHY_CNTL_REG)
wdenkb56ddc62003-09-15 21:14:37 +00001189 & PHY_CNTL_RST)) {
wdenkfe8c2802002-11-03 00:38:21 +00001190 /* reset complete */
1191 break;
wdenkfe8c2802002-11-03 00:38:21 +00001192 }
1193
Mike Frysinger65029492012-03-05 13:46:51 +00001194 mdelay(500); /* wait 500 millisecs */
wdenkb56ddc62003-09-15 21:14:37 +00001195 }
1196
1197 if (timeout < 1) {
1198 printf ("%s:PHY reset timed out\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +00001199 goto smc_phy_configure_exit;
wdenkb56ddc62003-09-15 21:14:37 +00001200 }
wdenkfe8c2802002-11-03 00:38:21 +00001201
1202 /* Read PHY Register 18, Status Output */
1203 /* lp->lastPhy18 = smc_read_phy_register(PHY_INT_REG); */
1204
1205 /* Enable PHY Interrupts (for register 18) */
1206 /* Interrupts listed here are disabled */
Ben Warren7194ab82009-10-04 22:37:03 -07001207 smc_write_phy_register (dev, PHY_MASK_REG, 0xffff);
wdenkfe8c2802002-11-03 00:38:21 +00001208
1209 /* Configure the Receive/Phy Control register */
Ben Warren7194ab82009-10-04 22:37:03 -07001210 SMC_SELECT_BANK (dev, 0);
1211 SMC_outw (dev, RPC_DEFAULT, RPC_REG);
wdenkfe8c2802002-11-03 00:38:21 +00001212
1213 /* Copy our capabilities from PHY_STAT_REG to PHY_AD_REG */
Ben Warren7194ab82009-10-04 22:37:03 -07001214 my_phy_caps = smc_read_phy_register (dev, PHY_STAT_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001215 my_ad_caps = PHY_AD_CSMA; /* I am CSMA capable */
wdenkfe8c2802002-11-03 00:38:21 +00001216
1217 if (my_phy_caps & PHY_STAT_CAP_T4)
1218 my_ad_caps |= PHY_AD_T4;
1219
1220 if (my_phy_caps & PHY_STAT_CAP_TXF)
1221 my_ad_caps |= PHY_AD_TX_FDX;
1222
1223 if (my_phy_caps & PHY_STAT_CAP_TXH)
1224 my_ad_caps |= PHY_AD_TX_HDX;
1225
1226 if (my_phy_caps & PHY_STAT_CAP_TF)
1227 my_ad_caps |= PHY_AD_10_FDX;
1228
1229 if (my_phy_caps & PHY_STAT_CAP_TH)
1230 my_ad_caps |= PHY_AD_10_HDX;
1231
1232 /* Update our Auto-Neg Advertisement Register */
Ben Warren7194ab82009-10-04 22:37:03 -07001233 smc_write_phy_register (dev, PHY_AD_REG, my_ad_caps);
wdenkfe8c2802002-11-03 00:38:21 +00001234
wdenk518e2e12004-03-25 14:59:05 +00001235 /* Read the register back. Without this, it appears that when */
1236 /* auto-negotiation is restarted, sometimes it isn't ready and */
1237 /* the link does not come up. */
Ben Warren7194ab82009-10-04 22:37:03 -07001238 smc_read_phy_register(dev, PHY_AD_REG);
wdenk518e2e12004-03-25 14:59:05 +00001239
wdenkf39748a2004-06-09 13:37:52 +00001240 PRINTK2 ("%s: phy caps=%x\n", SMC_DEV_NAME, my_phy_caps);
1241 PRINTK2 ("%s: phy advertised caps=%x\n", SMC_DEV_NAME, my_ad_caps);
wdenkfe8c2802002-11-03 00:38:21 +00001242
1243 /* Restart auto-negotiation process in order to advertise my caps */
Ben Warren7194ab82009-10-04 22:37:03 -07001244 smc_write_phy_register (dev, PHY_CNTL_REG,
wdenkb56ddc62003-09-15 21:14:37 +00001245 PHY_CNTL_ANEG_EN | PHY_CNTL_ANEG_RST);
wdenkfe8c2802002-11-03 00:38:21 +00001246
1247 /* Wait for the auto-negotiation to complete. This may take from */
1248 /* 2 to 3 seconds. */
1249 /* Wait for the reset to complete, or time out */
wdenkf39748a2004-06-09 13:37:52 +00001250 timeout = CONFIG_SMC_AUTONEG_TIMEOUT * 2;
wdenkb56ddc62003-09-15 21:14:37 +00001251 while (timeout--) {
wdenkf39748a2004-06-09 13:37:52 +00001252
Ben Warren7194ab82009-10-04 22:37:03 -07001253 status = smc_read_phy_register (dev, PHY_STAT_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001254 if (status & PHY_STAT_ANEG_ACK) {
wdenkfe8c2802002-11-03 00:38:21 +00001255 /* auto-negotiate complete */
1256 break;
wdenkb56ddc62003-09-15 21:14:37 +00001257 }
wdenkfe8c2802002-11-03 00:38:21 +00001258
Mike Frysinger65029492012-03-05 13:46:51 +00001259 mdelay(500); /* wait 500 millisecs */
wdenkfe8c2802002-11-03 00:38:21 +00001260
1261 /* Restart auto-negotiation if remote fault */
wdenkb56ddc62003-09-15 21:14:37 +00001262 if (status & PHY_STAT_REM_FLT) {
wdenkf39748a2004-06-09 13:37:52 +00001263 printf ("%s: PHY remote fault detected\n",
wdenkb56ddc62003-09-15 21:14:37 +00001264 SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +00001265
1266 /* Restart auto-negotiation */
wdenkf39748a2004-06-09 13:37:52 +00001267 printf ("%s: PHY restarting auto-negotiation\n",
wdenkfe8c2802002-11-03 00:38:21 +00001268 SMC_DEV_NAME);
Ben Warren7194ab82009-10-04 22:37:03 -07001269 smc_write_phy_register (dev, PHY_CNTL_REG,
wdenkb56ddc62003-09-15 21:14:37 +00001270 PHY_CNTL_ANEG_EN |
1271 PHY_CNTL_ANEG_RST |
1272 PHY_CNTL_SPEED |
1273 PHY_CNTL_DPLX);
wdenkfe8c2802002-11-03 00:38:21 +00001274 }
wdenkb56ddc62003-09-15 21:14:37 +00001275 }
wdenkfe8c2802002-11-03 00:38:21 +00001276
wdenkb56ddc62003-09-15 21:14:37 +00001277 if (timeout < 1) {
wdenkf39748a2004-06-09 13:37:52 +00001278 printf ("%s: PHY auto-negotiate timed out\n", SMC_DEV_NAME);
wdenkb56ddc62003-09-15 21:14:37 +00001279 }
wdenkfe8c2802002-11-03 00:38:21 +00001280
1281 /* Fail if we detected an auto-negotiate remote fault */
wdenkb56ddc62003-09-15 21:14:37 +00001282 if (status & PHY_STAT_REM_FLT) {
wdenkf39748a2004-06-09 13:37:52 +00001283 printf ("%s: PHY remote fault detected\n", SMC_DEV_NAME);
wdenkb56ddc62003-09-15 21:14:37 +00001284 }
wdenkfe8c2802002-11-03 00:38:21 +00001285
1286 /* Re-Configure the Receive/Phy Control register */
Ben Warren7194ab82009-10-04 22:37:03 -07001287 SMC_outw (dev, RPC_DEFAULT, RPC_REG);
wdenkfe8c2802002-11-03 00:38:21 +00001288
wdenk26238132004-07-09 22:51:01 +00001289smc_phy_configure_exit: ;
wdenkfe8c2802002-11-03 00:38:21 +00001290
1291}
1292#endif /* !CONFIG_SMC91111_EXT_PHY */
1293
1294
1295#if SMC_DEBUG > 2
1296static void print_packet( byte * buf, int length )
1297{
wdenk8bde7f72003-06-27 21:31:46 +00001298 int i;
1299 int remainder;
1300 int lines;
wdenkfe8c2802002-11-03 00:38:21 +00001301
wdenk8bde7f72003-06-27 21:31:46 +00001302 printf("Packet of length %d \n", length );
wdenkfe8c2802002-11-03 00:38:21 +00001303
1304#if SMC_DEBUG > 3
wdenk8bde7f72003-06-27 21:31:46 +00001305 lines = length / 16;
1306 remainder = length % 16;
wdenkfe8c2802002-11-03 00:38:21 +00001307
wdenk8bde7f72003-06-27 21:31:46 +00001308 for ( i = 0; i < lines ; i ++ ) {
1309 int cur;
wdenkfe8c2802002-11-03 00:38:21 +00001310
wdenk8bde7f72003-06-27 21:31:46 +00001311 for ( cur = 0; cur < 8; cur ++ ) {
1312 byte a, b;
wdenkfe8c2802002-11-03 00:38:21 +00001313
wdenk8bde7f72003-06-27 21:31:46 +00001314 a = *(buf ++ );
1315 b = *(buf ++ );
1316 printf("%02x%02x ", a, b );
1317 }
1318 printf("\n");
1319 }
1320 for ( i = 0; i < remainder/2 ; i++ ) {
1321 byte a, b;
wdenkfe8c2802002-11-03 00:38:21 +00001322
wdenk8bde7f72003-06-27 21:31:46 +00001323 a = *(buf ++ );
1324 b = *(buf ++ );
1325 printf("%02x%02x ", a, b );
1326 }
1327 printf("\n");
wdenkfe8c2802002-11-03 00:38:21 +00001328#endif
wdenkfe8c2802002-11-03 00:38:21 +00001329}
1330#endif
1331
Ben Warren7194ab82009-10-04 22:37:03 -07001332int smc91111_initialize(u8 dev_num, int base_addr)
wdenk0b97ab12003-06-19 23:58:30 +00001333{
Ben Warren7194ab82009-10-04 22:37:03 -07001334 struct smc91111_priv *priv;
1335 struct eth_device *dev;
wdenk3d3befa2004-03-14 15:06:13 +00001336 int i;
wdenkf39748a2004-06-09 13:37:52 +00001337
Ben Warren7194ab82009-10-04 22:37:03 -07001338 priv = malloc(sizeof(*priv));
1339 if (!priv)
1340 return 0;
1341 dev = malloc(sizeof(*dev));
1342 if (!dev) {
1343 free(priv);
1344 return 0;
wdenkb56ddc62003-09-15 21:14:37 +00001345 }
wdenkf39748a2004-06-09 13:37:52 +00001346
Thomas Chou1ca6d0d2010-10-06 09:16:10 +08001347 memset(dev, 0, sizeof(*dev));
Ben Warren7194ab82009-10-04 22:37:03 -07001348 priv->dev_num = dev_num;
1349 dev->priv = priv;
1350 dev->iobase = base_addr;
1351
1352 swap_to(ETHERNET);
1353 SMC_SELECT_BANK(dev, 1);
1354 for (i = 0; i < 6; ++i)
1355 dev->enetaddr[i] = SMC_inb(dev, (ADDR0_REG + i));
1356 swap_to(FLASH);
1357
1358 dev->init = smc_init;
1359 dev->halt = smc_halt;
1360 dev->send = smc_send;
1361 dev->recv = smc_rcv;
Thomas Chou1ca6d0d2010-10-06 09:16:10 +08001362 dev->write_hwaddr = smc_write_hwaddr;
Ben Warren7194ab82009-10-04 22:37:03 -07001363 sprintf(dev->name, "%s-%hu", SMC_DEV_NAME, dev_num);
1364
1365 eth_register(dev);
1366 return 0;
wdenk0b97ab12003-06-19 23:58:30 +00001367}