blob: 6dc7ad52e4cb9d981d5c45e2b21df38aafa5fe77 [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
181#define barrier() __asm__ __volatile__("": : :"memory")
182
Ben Warren7194ab82009-10-04 22:37:03 -0700183static inline word SMC_inw(struct eth_device *dev, dword offset)
wdenkc3c7f862004-06-09 14:47:54 +0000184{
185 word v;
Ben Warren7194ab82009-10-04 22:37:03 -0700186 v = *((volatile word*)(dev->iobase + offset));
wdenkc3c7f862004-06-09 14:47:54 +0000187 barrier(); *(volatile u32*)(0xc0000000);
188 return v;
189}
190
Ben Warren7194ab82009-10-04 22:37:03 -0700191static inline void SMC_outw(struct eth_device *dev, word value, dword offset)
wdenkc3c7f862004-06-09 14:47:54 +0000192{
Ben Warren7194ab82009-10-04 22:37:03 -0700193 *((volatile word*)(dev->iobase + offset)) = value;
wdenkc3c7f862004-06-09 14:47:54 +0000194 barrier(); *(volatile u32*)(0xc0000000);
195}
196
Ben Warren7194ab82009-10-04 22:37:03 -0700197static inline byte SMC_inb(struct eth_device *dev, dword offset)
wdenkc3c7f862004-06-09 14:47:54 +0000198{
199 word _w;
200
Ben Warren7194ab82009-10-04 22:37:03 -0700201 _w = SMC_inw(dev, offset & ~((dword)1));
wdenkc3c7f862004-06-09 14:47:54 +0000202 return (offset & 1) ? (byte)(_w >> 8) : (byte)(_w);
203}
204
Ben Warren7194ab82009-10-04 22:37:03 -0700205static inline void SMC_outb(struct eth_device *dev, byte value, dword offset)
wdenkc3c7f862004-06-09 14:47:54 +0000206{
207 word _w;
208
Ben Warren7194ab82009-10-04 22:37:03 -0700209 _w = SMC_inw(dev, offset & ~((dword)1));
wdenkc3c7f862004-06-09 14:47:54 +0000210 if (offset & 1)
Ben Warren7194ab82009-10-04 22:37:03 -0700211 *((volatile word*)(dev->iobase + (offset & ~((dword)1)))) =
212 (value<<8) | (_w & 0x00ff);
wdenkc3c7f862004-06-09 14:47:54 +0000213 else
Ben Warren7194ab82009-10-04 22:37:03 -0700214 *((volatile word*)(dev->iobase + offset)) =
215 value | (_w & 0xff00);
wdenkc3c7f862004-06-09 14:47:54 +0000216}
217
Ben Warren7194ab82009-10-04 22:37:03 -0700218static inline void SMC_insw(struct eth_device *dev, dword offset,
219 volatile uchar* buf, dword len)
wdenkc3c7f862004-06-09 14:47:54 +0000220{
Wolfgang Denkd52fb7e2006-03-11 22:53:33 +0100221 volatile word *p = (volatile word *)buf;
222
wdenkc3c7f862004-06-09 14:47:54 +0000223 while (len-- > 0) {
Ben Warren7194ab82009-10-04 22:37:03 -0700224 *p++ = SMC_inw(dev, offset);
Wolfgang Denkd52fb7e2006-03-11 22:53:33 +0100225 barrier();
226 *((volatile u32*)(0xc0000000));
wdenkc3c7f862004-06-09 14:47:54 +0000227 }
228}
229
Ben Warren7194ab82009-10-04 22:37:03 -0700230static inline void SMC_outsw(struct eth_device *dev, dword offset,
231 uchar* buf, dword len)
wdenkc3c7f862004-06-09 14:47:54 +0000232{
Wolfgang Denkd52fb7e2006-03-11 22:53:33 +0100233 volatile word *p = (volatile word *)buf;
234
wdenkc3c7f862004-06-09 14:47:54 +0000235 while (len-- > 0) {
Ben Warren7194ab82009-10-04 22:37:03 -0700236 SMC_outw(dev, *p++, offset);
Wolfgang Denkd52fb7e2006-03-11 22:53:33 +0100237 barrier();
238 *(volatile u32*)(0xc0000000);
wdenkc3c7f862004-06-09 14:47:54 +0000239 }
240}
241#endif /* CONFIG_SMC_USE_IOFUNCS */
242
wdenkfe8c2802002-11-03 00:38:21 +0000243/*
244 . A rather simple routine to print out a packet for debugging purposes.
245*/
246#if SMC_DEBUG > 2
247static void print_packet( byte *, int );
248#endif
249
250#define tx_done(dev) 1
251
Ben Warren7194ab82009-10-04 22:37:03 -0700252static int poll4int (struct eth_device *dev, byte mask, int timeout)
wdenkb56ddc62003-09-15 21:14:37 +0000253{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200254 int tmo = get_timer (0) + timeout * CONFIG_SYS_HZ;
wdenkb56ddc62003-09-15 21:14:37 +0000255 int is_timeout = 0;
Ben Warren7194ab82009-10-04 22:37:03 -0700256 word old_bank = SMC_inw (dev, BSR_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000257
wdenkb56ddc62003-09-15 21:14:37 +0000258 PRINTK2 ("Polling...\n");
Ben Warren7194ab82009-10-04 22:37:03 -0700259 SMC_SELECT_BANK (dev, 2);
260 while ((SMC_inw (dev, SMC91111_INT_REG) & mask) == 0) {
wdenkb56ddc62003-09-15 21:14:37 +0000261 if (get_timer (0) >= tmo) {
262 is_timeout = 1;
263 break;
264 }
wdenkfe8c2802002-11-03 00:38:21 +0000265 }
wdenkfe8c2802002-11-03 00:38:21 +0000266
wdenkb56ddc62003-09-15 21:14:37 +0000267 /* restore old bank selection */
Ben Warren7194ab82009-10-04 22:37:03 -0700268 SMC_SELECT_BANK (dev, old_bank);
wdenkfe8c2802002-11-03 00:38:21 +0000269
wdenkb56ddc62003-09-15 21:14:37 +0000270 if (is_timeout)
271 return 1;
272 else
273 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000274}
275
wdenk487778b2003-06-06 11:20:01 +0000276/* Only one release command at a time, please */
Ben Warren7194ab82009-10-04 22:37:03 -0700277static inline void smc_wait_mmu_release_complete (struct eth_device *dev)
wdenk487778b2003-06-06 11:20:01 +0000278{
279 int count = 0;
wdenkb56ddc62003-09-15 21:14:37 +0000280
wdenk487778b2003-06-06 11:20:01 +0000281 /* assume bank 2 selected */
Ben Warren7194ab82009-10-04 22:37:03 -0700282 while (SMC_inw (dev, MMU_CMD_REG) & MC_BUSY) {
wdenkb56ddc62003-09-15 21:14:37 +0000283 udelay (1); /* Wait until not busy */
284 if (++count > 200)
285 break;
wdenk487778b2003-06-06 11:20:01 +0000286 }
287}
288
wdenkfe8c2802002-11-03 00:38:21 +0000289/*
290 . Function: smc_reset( void )
291 . Purpose:
wdenk42dfe7a2004-03-14 22:25:36 +0000292 . This sets the SMC91111 chip to its normal state, hopefully from whatever
293 . mess that any other DOS driver has put it in.
wdenkfe8c2802002-11-03 00:38:21 +0000294 .
295 . Maybe I should reset more registers to defaults in here? SOFTRST should
296 . do that for me.
297 .
298 . Method:
299 . 1. send a SOFT RESET
300 . 2. wait for it to finish
301 . 3. enable autorelease mode
302 . 4. reset the memory management unit
303 . 5. clear all interrupts
304 .
305*/
Ben Warren7194ab82009-10-04 22:37:03 -0700306static void smc_reset (struct eth_device *dev)
wdenkfe8c2802002-11-03 00:38:21 +0000307{
wdenkf39748a2004-06-09 13:37:52 +0000308 PRINTK2 ("%s: smc_reset\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000309
310 /* This resets the registers mostly to defaults, but doesn't
311 affect EEPROM. That seems unnecessary */
Ben Warren7194ab82009-10-04 22:37:03 -0700312 SMC_SELECT_BANK (dev, 0);
313 SMC_outw (dev, RCR_SOFTRST, RCR_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000314
315 /* Setup the Configuration Register */
316 /* This is necessary because the CONFIG_REG is not affected */
317 /* by a soft reset */
318
Ben Warren7194ab82009-10-04 22:37:03 -0700319 SMC_SELECT_BANK (dev, 1);
wdenkfe8c2802002-11-03 00:38:21 +0000320#if defined(CONFIG_SMC91111_EXT_PHY)
Ben Warren7194ab82009-10-04 22:37:03 -0700321 SMC_outw (dev, CONFIG_DEFAULT | CONFIG_EXT_PHY, CONFIG_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000322#else
Ben Warren7194ab82009-10-04 22:37:03 -0700323 SMC_outw (dev, CONFIG_DEFAULT, CONFIG_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000324#endif
325
326
327 /* Release from possible power-down state */
328 /* Configuration register is not affected by Soft Reset */
Ben Warren7194ab82009-10-04 22:37:03 -0700329 SMC_outw (dev, SMC_inw (dev, CONFIG_REG) | CONFIG_EPH_POWER_EN,
330 CONFIG_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000331
Ben Warren7194ab82009-10-04 22:37:03 -0700332 SMC_SELECT_BANK (dev, 0);
wdenkfe8c2802002-11-03 00:38:21 +0000333
334 /* this should pause enough for the chip to be happy */
wdenkb56ddc62003-09-15 21:14:37 +0000335 udelay (10);
wdenkfe8c2802002-11-03 00:38:21 +0000336
337 /* Disable transmit and receive functionality */
Ben Warren7194ab82009-10-04 22:37:03 -0700338 SMC_outw (dev, RCR_CLEAR, RCR_REG);
339 SMC_outw (dev, TCR_CLEAR, TCR_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000340
341 /* set the control register */
Ben Warren7194ab82009-10-04 22:37:03 -0700342 SMC_SELECT_BANK (dev, 1);
343 SMC_outw (dev, CTL_DEFAULT, CTL_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000344
345 /* Reset the MMU */
Ben Warren7194ab82009-10-04 22:37:03 -0700346 SMC_SELECT_BANK (dev, 2);
347 smc_wait_mmu_release_complete (dev);
348 SMC_outw (dev, MC_RESET, MMU_CMD_REG);
349 while (SMC_inw (dev, MMU_CMD_REG) & MC_BUSY)
wdenkb56ddc62003-09-15 21:14:37 +0000350 udelay (1); /* Wait until not busy */
wdenkfe8c2802002-11-03 00:38:21 +0000351
352 /* Note: It doesn't seem that waiting for the MMU busy is needed here,
353 but this is a place where future chipsets _COULD_ break. Be wary
wdenk8bde7f72003-06-27 21:31:46 +0000354 of issuing another MMU command right after this */
wdenkfe8c2802002-11-03 00:38:21 +0000355
356 /* Disable all interrupts */
Ben Warren7194ab82009-10-04 22:37:03 -0700357 SMC_outb (dev, 0, IM_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000358}
359
360/*
361 . Function: smc_enable
362 . Purpose: let the chip talk to the outside work
363 . Method:
364 . 1. Enable the transmitter
365 . 2. Enable the receiver
366 . 3. Enable interrupts
367*/
Ben Warren7194ab82009-10-04 22:37:03 -0700368static void smc_enable(struct eth_device *dev)
wdenkfe8c2802002-11-03 00:38:21 +0000369{
wdenkf39748a2004-06-09 13:37:52 +0000370 PRINTK2("%s: smc_enable\n", SMC_DEV_NAME);
Ben Warren7194ab82009-10-04 22:37:03 -0700371 SMC_SELECT_BANK( dev, 0 );
wdenkfe8c2802002-11-03 00:38:21 +0000372 /* see the header file for options in TCR/RCR DEFAULT*/
Ben Warren7194ab82009-10-04 22:37:03 -0700373 SMC_outw( dev, TCR_DEFAULT, TCR_REG );
374 SMC_outw( dev, RCR_DEFAULT, RCR_REG );
wdenkfe8c2802002-11-03 00:38:21 +0000375
376 /* clear MII_DIS */
377/* smc_write_phy_register(PHY_CNTL_REG, 0x0000); */
378}
379
380/*
Ben Warren7194ab82009-10-04 22:37:03 -0700381 . Function: smc_halt
wdenkfe8c2802002-11-03 00:38:21 +0000382 . Purpose: closes down the SMC91xxx chip.
383 . Method:
384 . 1. zero the interrupt mask
385 . 2. clear the enable receive flag
386 . 3. clear the enable xmit flags
387 .
388 . TODO:
389 . (1) maybe utilize power down mode.
390 . Why not yet? Because while the chip will go into power down mode,
391 . the manual says that it will wake up in response to any I/O requests
wdenk42dfe7a2004-03-14 22:25:36 +0000392 . in the register space. Empirical results do not show this working.
wdenkfe8c2802002-11-03 00:38:21 +0000393*/
Ben Warren7194ab82009-10-04 22:37:03 -0700394static void smc_halt(struct eth_device *dev)
wdenkfe8c2802002-11-03 00:38:21 +0000395{
Ben Warren7194ab82009-10-04 22:37:03 -0700396 PRINTK2("%s: smc_halt\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000397
398 /* no more interrupts for me */
Ben Warren7194ab82009-10-04 22:37:03 -0700399 SMC_SELECT_BANK( dev, 2 );
400 SMC_outb( dev, 0, IM_REG );
wdenkfe8c2802002-11-03 00:38:21 +0000401
402 /* and tell the card to stay away from that nasty outside world */
Ben Warren7194ab82009-10-04 22:37:03 -0700403 SMC_SELECT_BANK( dev, 0 );
404 SMC_outb( dev, RCR_CLEAR, RCR_REG );
405 SMC_outb( dev, TCR_CLEAR, TCR_REG );
406
Wolfgang Denk0afe5192006-03-12 02:10:00 +0100407 swap_to(FLASH);
wdenkfe8c2802002-11-03 00:38:21 +0000408}
409
410
411/*
Ben Warren7194ab82009-10-04 22:37:03 -0700412 . Function: smc_send(struct net_device * )
wdenkfe8c2802002-11-03 00:38:21 +0000413 . Purpose:
414 . This sends the actual packet to the SMC9xxx chip.
415 .
416 . Algorithm:
wdenk42dfe7a2004-03-14 22:25:36 +0000417 . First, see if a saved_skb is available.
wdenkfe8c2802002-11-03 00:38:21 +0000418 . ( this should NOT be called if there is no 'saved_skb'
419 . Now, find the packet number that the chip allocated
420 . Point the data pointers at it in memory
421 . Set the length word in the chip's memory
422 . Dump the packet to chip memory
423 . Check if a last byte is needed ( odd length packet )
424 . if so, set the control flag right
wdenk42dfe7a2004-03-14 22:25:36 +0000425 . Tell the card to send it
wdenkfe8c2802002-11-03 00:38:21 +0000426 . Enable the transmit interrupt, so I know if it failed
wdenk42dfe7a2004-03-14 22:25:36 +0000427 . Free the kernel data if I actually sent it.
wdenkfe8c2802002-11-03 00:38:21 +0000428*/
Joe Hershberger9f098642012-05-21 14:45:32 +0000429static int smc_send(struct eth_device *dev, void *packet, int packet_length)
wdenkfe8c2802002-11-03 00:38:21 +0000430{
wdenkb56ddc62003-09-15 21:14:37 +0000431 byte packet_no;
wdenkb56ddc62003-09-15 21:14:37 +0000432 byte *buf;
433 int length;
434 int numPages;
435 int try = 0;
436 int time_out;
437 byte status;
wdenk518e2e12004-03-25 14:59:05 +0000438 byte saved_pnr;
439 word saved_ptr;
wdenkfe8c2802002-11-03 00:38:21 +0000440
wdenk518e2e12004-03-25 14:59:05 +0000441 /* save PTR and PNR registers before manipulation */
Ben Warren7194ab82009-10-04 22:37:03 -0700442 SMC_SELECT_BANK (dev, 2);
443 saved_pnr = SMC_inb( dev, PN_REG );
444 saved_ptr = SMC_inw( dev, PTR_REG );
wdenkfe8c2802002-11-03 00:38:21 +0000445
wdenkf39748a2004-06-09 13:37:52 +0000446 PRINTK3 ("%s: smc_hardware_send_packet\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000447
448 length = ETH_ZLEN < packet_length ? packet_length : ETH_ZLEN;
449
450 /* allocate memory
wdenkb56ddc62003-09-15 21:14:37 +0000451 ** The MMU wants the number of pages to be the number of 256 bytes
452 ** 'pages', minus 1 ( since a packet can't ever have 0 pages :) )
453 **
454 ** The 91C111 ignores the size bits, but the code is left intact
455 ** for backwards and future compatibility.
456 **
457 ** Pkt size for allocating is data length +6 (for additional status
458 ** words, length and ctl!)
459 **
460 ** If odd size then last byte is included in this header.
461 */
462 numPages = ((length & 0xfffe) + 6);
463 numPages >>= 8; /* Divide by 256 */
wdenkfe8c2802002-11-03 00:38:21 +0000464
wdenkb56ddc62003-09-15 21:14:37 +0000465 if (numPages > 7) {
466 printf ("%s: Far too big packet error. \n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000467 return 0;
468 }
469
470 /* now, try to allocate the memory */
Ben Warren7194ab82009-10-04 22:37:03 -0700471 SMC_SELECT_BANK (dev, 2);
472 SMC_outw (dev, MC_ALLOC | numPages, MMU_CMD_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000473
wdenkdc7c9a12003-03-26 06:55:25 +0000474 /* FIXME: the ALLOC_INT bit never gets set *
wdenk42dfe7a2004-03-14 22:25:36 +0000475 * so the following will always give a *
476 * memory allocation error. *
477 * same code works in armboot though *
wdenkdc7c9a12003-03-26 06:55:25 +0000478 * -ro
479 */
480
wdenkfe8c2802002-11-03 00:38:21 +0000481again:
482 try++;
483 time_out = MEMORY_WAIT_TIME;
484 do {
Ben Warren7194ab82009-10-04 22:37:03 -0700485 status = SMC_inb (dev, SMC91111_INT_REG);
wdenkb56ddc62003-09-15 21:14:37 +0000486 if (status & IM_ALLOC_INT) {
wdenkfe8c2802002-11-03 00:38:21 +0000487 /* acknowledge the interrupt */
Ben Warren7194ab82009-10-04 22:37:03 -0700488 SMC_outb (dev, IM_ALLOC_INT, SMC91111_INT_REG);
wdenk8bde7f72003-06-27 21:31:46 +0000489 break;
wdenkfe8c2802002-11-03 00:38:21 +0000490 }
wdenkb56ddc62003-09-15 21:14:37 +0000491 } while (--time_out);
wdenkfe8c2802002-11-03 00:38:21 +0000492
wdenkb56ddc62003-09-15 21:14:37 +0000493 if (!time_out) {
494 PRINTK2 ("%s: memory allocation, try %d failed ...\n",
495 SMC_DEV_NAME, try);
496 if (try < SMC_ALLOC_MAX_TRY)
497 goto again;
498 else
499 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000500 }
501
wdenkb56ddc62003-09-15 21:14:37 +0000502 PRINTK2 ("%s: memory allocation, try %d succeeded ...\n",
503 SMC_DEV_NAME, try);
wdenkfe8c2802002-11-03 00:38:21 +0000504
wdenkb56ddc62003-09-15 21:14:37 +0000505 buf = (byte *) packet;
wdenkfe8c2802002-11-03 00:38:21 +0000506
507 /* If I get here, I _know_ there is a packet slot waiting for me */
Ben Warren7194ab82009-10-04 22:37:03 -0700508 packet_no = SMC_inb (dev, AR_REG);
wdenkb56ddc62003-09-15 21:14:37 +0000509 if (packet_no & AR_FAILED) {
wdenkfe8c2802002-11-03 00:38:21 +0000510 /* or isn't there? BAD CHIP! */
wdenkb56ddc62003-09-15 21:14:37 +0000511 printf ("%s: Memory allocation failed. \n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000512 return 0;
513 }
514
515 /* we have a packet address, so tell the card to use it */
wdenk1f6d4252004-11-02 13:00:33 +0000516#ifndef CONFIG_XAENIAX
Ben Warren7194ab82009-10-04 22:37:03 -0700517 SMC_outb (dev, packet_no, PN_REG);
wdenk1f6d4252004-11-02 13:00:33 +0000518#else
519 /* On Xaeniax board, we can't use SMC_outb here because that way
520 * the Allocate MMU command will end up written to the command register
521 * as well, which will lead to a problem.
522 */
Ben Warren7194ab82009-10-04 22:37:03 -0700523 SMC_outl (dev, packet_no << 16, 0);
wdenk1f6d4252004-11-02 13:00:33 +0000524#endif
wdenkb79a11c2004-03-25 15:14:43 +0000525 /* do not write new ptr value if Write data fifo not empty */
526 while ( saved_ptr & PTR_NOTEMPTY )
wdenk518e2e12004-03-25 14:59:05 +0000527 printf ("Write data fifo not empty!\n");
528
wdenkfe8c2802002-11-03 00:38:21 +0000529 /* point to the beginning of the packet */
Ben Warren7194ab82009-10-04 22:37:03 -0700530 SMC_outw (dev, PTR_AUTOINC, PTR_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000531
wdenkb56ddc62003-09-15 21:14:37 +0000532 PRINTK3 ("%s: Trying to xmit packet of length %x\n",
533 SMC_DEV_NAME, length);
wdenkfe8c2802002-11-03 00:38:21 +0000534
535#if SMC_DEBUG > 2
wdenkb56ddc62003-09-15 21:14:37 +0000536 printf ("Transmitting Packet\n");
537 print_packet (buf, length);
wdenkfe8c2802002-11-03 00:38:21 +0000538#endif
539
540 /* send the packet length ( +6 for status, length and ctl byte )
wdenk8bde7f72003-06-27 21:31:46 +0000541 and the status word ( set to zeros ) */
wdenkfe8c2802002-11-03 00:38:21 +0000542#ifdef USE_32_BIT
Ben Warren7194ab82009-10-04 22:37:03 -0700543 SMC_outl (dev, (length + 6) << 16, SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000544#else
Ben Warren7194ab82009-10-04 22:37:03 -0700545 SMC_outw (dev, 0, SMC91111_DATA_REG);
wdenkb56ddc62003-09-15 21:14:37 +0000546 /* send the packet length ( +6 for status words, length, and ctl */
Ben Warren7194ab82009-10-04 22:37:03 -0700547 SMC_outw (dev, (length + 6), SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000548#endif
549
550 /* send the actual data
wdenkb56ddc62003-09-15 21:14:37 +0000551 . I _think_ it's faster to send the longs first, and then
552 . mop up by sending the last word. It depends heavily
wdenk42dfe7a2004-03-14 22:25:36 +0000553 . on alignment, at least on the 486. Maybe it would be
wdenkb56ddc62003-09-15 21:14:37 +0000554 . a good idea to check which is optimal? But that could take
555 . almost as much time as is saved?
556 */
wdenkfe8c2802002-11-03 00:38:21 +0000557#ifdef USE_32_BIT
Ben Warren7194ab82009-10-04 22:37:03 -0700558 SMC_outsl (dev, SMC91111_DATA_REG, buf, length >> 2);
wdenkbb310d42004-11-22 22:20:07 +0000559#ifndef CONFIG_XAENIAX
wdenkb56ddc62003-09-15 21:14:37 +0000560 if (length & 0x2)
Ben Warren7194ab82009-10-04 22:37:03 -0700561 SMC_outw (dev, *((word *) (buf + (length & 0xFFFFFFFC))),
wdenkb56ddc62003-09-15 21:14:37 +0000562 SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000563#else
wdenkbb310d42004-11-22 22:20:07 +0000564 /* On XANEIAX, we can only use 32-bit writes, so we need to handle
565 * unaligned tail part specially. The standard code doesn't work.
566 */
567 if ((length & 3) == 3) {
568 u16 * ptr = (u16*) &buf[length-3];
Ben Warren7194ab82009-10-04 22:37:03 -0700569 SMC_outl(dev, (*ptr) | ((0x2000 | buf[length-1]) << 16),
wdenkbb310d42004-11-22 22:20:07 +0000570 SMC91111_DATA_REG);
571 } else if ((length & 2) == 2) {
572 u16 * ptr = (u16*) &buf[length-2];
Ben Warren7194ab82009-10-04 22:37:03 -0700573 SMC_outl(dev, *ptr, SMC91111_DATA_REG);
wdenkbb310d42004-11-22 22:20:07 +0000574 } else if (length & 1) {
Ben Warren7194ab82009-10-04 22:37:03 -0700575 SMC_outl(dev, (0x2000 | buf[length-1]), SMC91111_DATA_REG);
wdenkbb310d42004-11-22 22:20:07 +0000576 } else {
Ben Warren7194ab82009-10-04 22:37:03 -0700577 SMC_outl(dev, 0, SMC91111_DATA_REG);
wdenkbb310d42004-11-22 22:20:07 +0000578 }
579#endif
580#else
Ben Warren7194ab82009-10-04 22:37:03 -0700581 SMC_outsw (dev, SMC91111_DATA_REG, buf, (length) >> 1);
wdenkfe8c2802002-11-03 00:38:21 +0000582#endif /* USE_32_BIT */
583
wdenkbb310d42004-11-22 22:20:07 +0000584#ifndef CONFIG_XAENIAX
wdenk42dfe7a2004-03-14 22:25:36 +0000585 /* Send the last byte, if there is one. */
wdenkb56ddc62003-09-15 21:14:37 +0000586 if ((length & 1) == 0) {
Ben Warren7194ab82009-10-04 22:37:03 -0700587 SMC_outw (dev, 0, SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000588 } else {
Ben Warren7194ab82009-10-04 22:37:03 -0700589 SMC_outw (dev, buf[length - 1] | 0x2000, SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000590 }
wdenkbb310d42004-11-22 22:20:07 +0000591#endif
wdenkfe8c2802002-11-03 00:38:21 +0000592
593 /* and let the chipset deal with it */
Ben Warren7194ab82009-10-04 22:37:03 -0700594 SMC_outw (dev, MC_ENQUEUE, MMU_CMD_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000595
596 /* poll for TX INT */
Ben Warren7194ab82009-10-04 22:37:03 -0700597 /* if (poll4int (dev, IM_TX_INT, SMC_TX_TIMEOUT)) { */
wdenk518e2e12004-03-25 14:59:05 +0000598 /* poll for TX_EMPTY INT - autorelease enabled */
Ben Warren7194ab82009-10-04 22:37:03 -0700599 if (poll4int(dev, IM_TX_EMPTY_INT, SMC_TX_TIMEOUT)) {
wdenkfe8c2802002-11-03 00:38:21 +0000600 /* sending failed */
wdenkb56ddc62003-09-15 21:14:37 +0000601 PRINTK2 ("%s: TX timeout, sending failed...\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000602
603 /* release packet */
wdenk518e2e12004-03-25 14:59:05 +0000604 /* no need to release, MMU does that now */
wdenk1f6d4252004-11-02 13:00:33 +0000605#ifdef CONFIG_XAENIAX
Ben Warren7194ab82009-10-04 22:37:03 -0700606 SMC_outw (dev, MC_FREEPKT, MMU_CMD_REG);
wdenk1f6d4252004-11-02 13:00:33 +0000607#endif
wdenkfe8c2802002-11-03 00:38:21 +0000608
wdenk8bde7f72003-06-27 21:31:46 +0000609 /* wait for MMU getting ready (low) */
Ben Warren7194ab82009-10-04 22:37:03 -0700610 while (SMC_inw (dev, MMU_CMD_REG) & MC_BUSY) {
wdenkb56ddc62003-09-15 21:14:37 +0000611 udelay (10);
wdenk8bde7f72003-06-27 21:31:46 +0000612 }
wdenkfe8c2802002-11-03 00:38:21 +0000613
wdenkb56ddc62003-09-15 21:14:37 +0000614 PRINTK2 ("MMU ready\n");
wdenkfe8c2802002-11-03 00:38:21 +0000615
616
617 return 0;
618 } else {
619 /* ack. int */
Ben Warren7194ab82009-10-04 22:37:03 -0700620 SMC_outb (dev, IM_TX_EMPTY_INT, SMC91111_INT_REG);
wdenk518e2e12004-03-25 14:59:05 +0000621 /* SMC_outb (IM_TX_INT, SMC91111_INT_REG); */
wdenkb56ddc62003-09-15 21:14:37 +0000622 PRINTK2 ("%s: Sent packet of length %d \n", SMC_DEV_NAME,
623 length);
wdenkfe8c2802002-11-03 00:38:21 +0000624
625 /* release packet */
wdenk518e2e12004-03-25 14:59:05 +0000626 /* no need to release, MMU does that now */
wdenk1f6d4252004-11-02 13:00:33 +0000627#ifdef CONFIG_XAENIAX
Ben Warren7194ab82009-10-04 22:37:03 -0700628 SMC_outw (dev, MC_FREEPKT, MMU_CMD_REG);
wdenk1f6d4252004-11-02 13:00:33 +0000629#endif
wdenkfe8c2802002-11-03 00:38:21 +0000630
wdenk8bde7f72003-06-27 21:31:46 +0000631 /* wait for MMU getting ready (low) */
Ben Warren7194ab82009-10-04 22:37:03 -0700632 while (SMC_inw (dev, MMU_CMD_REG) & MC_BUSY) {
wdenkb56ddc62003-09-15 21:14:37 +0000633 udelay (10);
wdenk8bde7f72003-06-27 21:31:46 +0000634 }
wdenkfe8c2802002-11-03 00:38:21 +0000635
wdenkb56ddc62003-09-15 21:14:37 +0000636 PRINTK2 ("MMU ready\n");
wdenkfe8c2802002-11-03 00:38:21 +0000637
638
639 }
640
wdenk518e2e12004-03-25 14:59:05 +0000641 /* restore previously saved registers */
wdenk1f6d4252004-11-02 13:00:33 +0000642#ifndef CONFIG_XAENIAX
Ben Warren7194ab82009-10-04 22:37:03 -0700643 SMC_outb( dev, saved_pnr, PN_REG );
wdenk1f6d4252004-11-02 13:00:33 +0000644#else
645 /* On Xaeniax board, we can't use SMC_outb here because that way
646 * the Allocate MMU command will end up written to the command register
647 * as well, which will lead to a problem.
648 */
Ben Warren7194ab82009-10-04 22:37:03 -0700649 SMC_outl(dev, saved_pnr << 16, 0);
wdenk1f6d4252004-11-02 13:00:33 +0000650#endif
Ben Warren7194ab82009-10-04 22:37:03 -0700651 SMC_outw( dev, saved_ptr, PTR_REG );
wdenk518e2e12004-03-25 14:59:05 +0000652
wdenkfe8c2802002-11-03 00:38:21 +0000653 return length;
654}
655
Thomas Chou1ca6d0d2010-10-06 09:16:10 +0800656static int smc_write_hwaddr(struct eth_device *dev)
657{
658 int i;
659
660 swap_to(ETHERNET);
661 SMC_SELECT_BANK (dev, 1);
662#ifdef USE_32_BIT
663 for (i = 0; i < 6; i += 2) {
664 word address;
665
666 address = dev->enetaddr[i + 1] << 8;
667 address |= dev->enetaddr[i];
668 SMC_outw(dev, address, (ADDR0_REG + i));
669 }
670#else
671 for (i = 0; i < 6; i++)
672 SMC_outb(dev, dev->enetaddr[i], (ADDR0_REG + i));
673#endif
674 swap_to(FLASH);
675 return 0;
676}
677
wdenkfe8c2802002-11-03 00:38:21 +0000678/*
679 * Open and Initialize the board
680 *
681 * Set up everything, reset the card, etc ..
682 *
683 */
Ben Warren7194ab82009-10-04 22:37:03 -0700684static int smc_init(struct eth_device *dev, bd_t *bd)
wdenkfe8c2802002-11-03 00:38:21 +0000685{
Ben Warren7194ab82009-10-04 22:37:03 -0700686 swap_to(ETHERNET);
687
688 PRINTK2 ("%s: smc_init\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000689
690 /* reset the hardware */
Ben Warren7194ab82009-10-04 22:37:03 -0700691 smc_reset (dev);
692 smc_enable (dev);
wdenkfe8c2802002-11-03 00:38:21 +0000693
694 /* Configure the PHY */
695#ifndef CONFIG_SMC91111_EXT_PHY
Ben Warren7194ab82009-10-04 22:37:03 -0700696 smc_phy_configure (dev);
wdenkfe8c2802002-11-03 00:38:21 +0000697#endif
698
wdenkfe8c2802002-11-03 00:38:21 +0000699 /* conservative setting (10Mbps, HalfDuplex, no AutoNeg.) */
Ben Warren7194ab82009-10-04 22:37:03 -0700700/* SMC_SELECT_BANK(dev, 0); */
701/* SMC_outw(dev, 0, RPC_REG); */
wdenkfe8c2802002-11-03 00:38:21 +0000702
Ben Warren7194ab82009-10-04 22:37:03 -0700703 printf(SMC_DEV_NAME ": MAC %pM\n", dev->enetaddr);
704
wdenkfe8c2802002-11-03 00:38:21 +0000705 return 0;
706}
707
wdenkfe8c2802002-11-03 00:38:21 +0000708/*-------------------------------------------------------------
709 .
710 . smc_rcv - receive a packet from the card
711 .
712 . There is ( at least ) a packet waiting to be read from
713 . chip-memory.
714 .
715 . o Read the status
716 . o If an error, record it
717 . o otherwise, read in the packet
718 --------------------------------------------------------------
719*/
Ben Warren7194ab82009-10-04 22:37:03 -0700720static int smc_rcv(struct eth_device *dev)
wdenkfe8c2802002-11-03 00:38:21 +0000721{
wdenk42dfe7a2004-03-14 22:25:36 +0000722 int packet_number;
wdenkfe8c2802002-11-03 00:38:21 +0000723 word status;
724 word packet_length;
wdenk42dfe7a2004-03-14 22:25:36 +0000725 int is_error = 0;
wdenkfe8c2802002-11-03 00:38:21 +0000726#ifdef USE_32_BIT
727 dword stat_len;
728#endif
wdenk518e2e12004-03-25 14:59:05 +0000729 byte saved_pnr;
730 word saved_ptr;
wdenkfe8c2802002-11-03 00:38:21 +0000731
Ben Warren7194ab82009-10-04 22:37:03 -0700732 SMC_SELECT_BANK(dev, 2);
wdenk518e2e12004-03-25 14:59:05 +0000733 /* save PTR and PTR registers */
Ben Warren7194ab82009-10-04 22:37:03 -0700734 saved_pnr = SMC_inb( dev, PN_REG );
735 saved_ptr = SMC_inw( dev, PTR_REG );
wdenk518e2e12004-03-25 14:59:05 +0000736
Ben Warren7194ab82009-10-04 22:37:03 -0700737 packet_number = SMC_inw( dev, RXFIFO_REG );
wdenkfe8c2802002-11-03 00:38:21 +0000738
739 if ( packet_number & RXFIFO_REMPTY ) {
740
741 return 0;
742 }
743
wdenkf39748a2004-06-09 13:37:52 +0000744 PRINTK3("%s: smc_rcv\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000745 /* start reading from the start of the packet */
Ben Warren7194ab82009-10-04 22:37:03 -0700746 SMC_outw( dev, PTR_READ | PTR_RCV | PTR_AUTOINC, PTR_REG );
wdenkfe8c2802002-11-03 00:38:21 +0000747
748 /* First two words are status and packet_length */
749#ifdef USE_32_BIT
Ben Warren7194ab82009-10-04 22:37:03 -0700750 stat_len = SMC_inl(dev, SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000751 status = stat_len & 0xffff;
752 packet_length = stat_len >> 16;
753#else
Ben Warren7194ab82009-10-04 22:37:03 -0700754 status = SMC_inw( dev, SMC91111_DATA_REG );
755 packet_length = SMC_inw( dev, SMC91111_DATA_REG );
wdenkfe8c2802002-11-03 00:38:21 +0000756#endif
757
758 packet_length &= 0x07ff; /* mask off top bits */
759
760 PRINTK2("RCV: STATUS %4x LENGTH %4x\n", status, packet_length );
761
762 if ( !(status & RS_ERRORS ) ){
763 /* Adjust for having already read the first two words */
764 packet_length -= 4; /*4; */
765
766
wdenkfe8c2802002-11-03 00:38:21 +0000767 /* set odd length for bug in LAN91C111, */
768 /* which never sets RS_ODDFRAME */
769 /* TODO ? */
770
771
772#ifdef USE_32_BIT
773 PRINTK3(" Reading %d dwords (and %d bytes) \n",
774 packet_length >> 2, packet_length & 3 );
775 /* QUESTION: Like in the TX routine, do I want
776 to send the DWORDs or the bytes first, or some
777 mixture. A mixture might improve already slow PIO
wdenk42dfe7a2004-03-14 22:25:36 +0000778 performance */
Ben Warren7194ab82009-10-04 22:37:03 -0700779 SMC_insl( dev, SMC91111_DATA_REG, NetRxPackets[0],
780 packet_length >> 2 );
wdenkfe8c2802002-11-03 00:38:21 +0000781 /* read the left over bytes */
782 if (packet_length & 3) {
783 int i;
784
Ben Warren7194ab82009-10-04 22:37:03 -0700785 byte *tail = (byte *)(NetRxPackets[0] +
786 (packet_length & ~3));
787 dword leftover = SMC_inl(dev, SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000788 for (i=0; i<(packet_length & 3); i++)
789 *tail++ = (byte) (leftover >> (8*i)) & 0xff;
790 }
791#else
792 PRINTK3(" Reading %d words and %d byte(s) \n",
793 (packet_length >> 1 ), packet_length & 1 );
Ben Warren7194ab82009-10-04 22:37:03 -0700794 SMC_insw(dev, SMC91111_DATA_REG , NetRxPackets[0],
795 packet_length >> 1);
wdenkfe8c2802002-11-03 00:38:21 +0000796
797#endif /* USE_32_BIT */
798
799#if SMC_DEBUG > 2
800 printf("Receiving Packet\n");
801 print_packet( NetRxPackets[0], packet_length );
802#endif
803 } else {
804 /* error ... */
805 /* TODO ? */
806 is_error = 1;
807 }
808
Ben Warren7194ab82009-10-04 22:37:03 -0700809 while ( SMC_inw( dev, MMU_CMD_REG ) & MC_BUSY )
wdenkfe8c2802002-11-03 00:38:21 +0000810 udelay(1); /* Wait until not busy */
811
812 /* error or good, tell the card to get rid of this packet */
Ben Warren7194ab82009-10-04 22:37:03 -0700813 SMC_outw( dev, MC_RELEASE, MMU_CMD_REG );
wdenkfe8c2802002-11-03 00:38:21 +0000814
Ben Warren7194ab82009-10-04 22:37:03 -0700815 while ( SMC_inw( dev, MMU_CMD_REG ) & MC_BUSY )
wdenkfe8c2802002-11-03 00:38:21 +0000816 udelay(1); /* Wait until not busy */
817
wdenk518e2e12004-03-25 14:59:05 +0000818 /* restore saved registers */
wdenk1f6d4252004-11-02 13:00:33 +0000819#ifndef CONFIG_XAENIAX
Ben Warren7194ab82009-10-04 22:37:03 -0700820 SMC_outb( dev, saved_pnr, PN_REG );
wdenk1f6d4252004-11-02 13:00:33 +0000821#else
822 /* On Xaeniax board, we can't use SMC_outb here because that way
823 * the Allocate MMU command will end up written to the command register
824 * as well, which will lead to a problem.
825 */
Ben Warren7194ab82009-10-04 22:37:03 -0700826 SMC_outl( dev, saved_pnr << 16, 0);
wdenk1f6d4252004-11-02 13:00:33 +0000827#endif
Ben Warren7194ab82009-10-04 22:37:03 -0700828 SMC_outw( dev, saved_ptr, PTR_REG );
wdenk518e2e12004-03-25 14:59:05 +0000829
wdenkfe8c2802002-11-03 00:38:21 +0000830 if (!is_error) {
831 /* Pass the packet up to the protocol layers. */
832 NetReceive(NetRxPackets[0], packet_length);
833 return packet_length;
834 } else {
835 return 0;
836 }
837
838}
839
840
wdenkfe8c2802002-11-03 00:38:21 +0000841#if 0
842/*------------------------------------------------------------
843 . Modify a bit in the LAN91C111 register set
844 .-------------------------------------------------------------*/
Ben Warren7194ab82009-10-04 22:37:03 -0700845static word smc_modify_regbit(struct eth_device *dev, int bank, int ioaddr, int reg,
wdenkfe8c2802002-11-03 00:38:21 +0000846 unsigned int bit, int val)
847{
848 word regval;
849
Ben Warren7194ab82009-10-04 22:37:03 -0700850 SMC_SELECT_BANK( dev, bank );
wdenkfe8c2802002-11-03 00:38:21 +0000851
Ben Warren7194ab82009-10-04 22:37:03 -0700852 regval = SMC_inw( dev, reg );
wdenkfe8c2802002-11-03 00:38:21 +0000853 if (val)
854 regval |= bit;
855 else
856 regval &= ~bit;
857
Ben Warren7194ab82009-10-04 22:37:03 -0700858 SMC_outw( dev, regval, 0 );
wdenkfe8c2802002-11-03 00:38:21 +0000859 return(regval);
860}
861
862
863/*------------------------------------------------------------
864 . Retrieve a bit in the LAN91C111 register set
865 .-------------------------------------------------------------*/
Ben Warren7194ab82009-10-04 22:37:03 -0700866static int smc_get_regbit(struct eth_device *dev, int bank, int ioaddr, int reg, unsigned int bit)
wdenkfe8c2802002-11-03 00:38:21 +0000867{
Ben Warren7194ab82009-10-04 22:37:03 -0700868 SMC_SELECT_BANK( dev, bank );
869 if ( SMC_inw( dev, reg ) & bit)
wdenkfe8c2802002-11-03 00:38:21 +0000870 return(1);
871 else
872 return(0);
873}
874
875
876/*------------------------------------------------------------
877 . Modify a LAN91C111 register (word access only)
878 .-------------------------------------------------------------*/
Ben Warren7194ab82009-10-04 22:37:03 -0700879static void smc_modify_reg(struct eth_device *dev, int bank, int ioaddr, int reg, word val)
wdenkfe8c2802002-11-03 00:38:21 +0000880{
Ben Warren7194ab82009-10-04 22:37:03 -0700881 SMC_SELECT_BANK( dev, bank );
882 SMC_outw( dev, val, reg );
wdenkfe8c2802002-11-03 00:38:21 +0000883}
884
885
886/*------------------------------------------------------------
887 . Retrieve a LAN91C111 register (word access only)
888 .-------------------------------------------------------------*/
Ben Warren7194ab82009-10-04 22:37:03 -0700889static int smc_get_reg(struct eth_device *dev, int bank, int ioaddr, int reg)
wdenkfe8c2802002-11-03 00:38:21 +0000890{
Ben Warren7194ab82009-10-04 22:37:03 -0700891 SMC_SELECT_BANK( dev, bank );
892 return(SMC_inw( dev, reg ));
wdenkfe8c2802002-11-03 00:38:21 +0000893}
894
895#endif /* 0 */
896
897/*---PHY CONTROL AND CONFIGURATION----------------------------------------- */
898
899#if (SMC_DEBUG > 2 )
900
901/*------------------------------------------------------------
902 . Debugging function for viewing MII Management serial bitstream
903 .-------------------------------------------------------------*/
wdenkb56ddc62003-09-15 21:14:37 +0000904static void smc_dump_mii_stream (byte * bits, int size)
wdenkfe8c2802002-11-03 00:38:21 +0000905{
906 int i;
907
wdenkb56ddc62003-09-15 21:14:37 +0000908 printf ("BIT#:");
909 for (i = 0; i < size; ++i) {
910 printf ("%d", i % 10);
911 }
wdenkfe8c2802002-11-03 00:38:21 +0000912
wdenkb56ddc62003-09-15 21:14:37 +0000913 printf ("\nMDOE:");
914 for (i = 0; i < size; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +0000915 if (bits[i] & MII_MDOE)
wdenkb56ddc62003-09-15 21:14:37 +0000916 printf ("1");
wdenkfe8c2802002-11-03 00:38:21 +0000917 else
wdenkb56ddc62003-09-15 21:14:37 +0000918 printf ("0");
919 }
wdenkfe8c2802002-11-03 00:38:21 +0000920
wdenkb56ddc62003-09-15 21:14:37 +0000921 printf ("\nMDO :");
922 for (i = 0; i < size; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +0000923 if (bits[i] & MII_MDO)
wdenkb56ddc62003-09-15 21:14:37 +0000924 printf ("1");
wdenkfe8c2802002-11-03 00:38:21 +0000925 else
wdenkb56ddc62003-09-15 21:14:37 +0000926 printf ("0");
927 }
wdenkfe8c2802002-11-03 00:38:21 +0000928
wdenkb56ddc62003-09-15 21:14:37 +0000929 printf ("\nMDI :");
930 for (i = 0; i < size; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +0000931 if (bits[i] & MII_MDI)
wdenkb56ddc62003-09-15 21:14:37 +0000932 printf ("1");
wdenkfe8c2802002-11-03 00:38:21 +0000933 else
wdenkb56ddc62003-09-15 21:14:37 +0000934 printf ("0");
935 }
wdenkfe8c2802002-11-03 00:38:21 +0000936
wdenkb56ddc62003-09-15 21:14:37 +0000937 printf ("\n");
wdenkfe8c2802002-11-03 00:38:21 +0000938}
939#endif
940
941/*------------------------------------------------------------
942 . Reads a register from the MII Management serial interface
943 .-------------------------------------------------------------*/
944#ifndef CONFIG_SMC91111_EXT_PHY
Ben Warren7194ab82009-10-04 22:37:03 -0700945static word smc_read_phy_register (struct eth_device *dev, byte phyreg)
wdenkfe8c2802002-11-03 00:38:21 +0000946{
947 int oldBank;
948 int i;
949 byte mask;
950 word mii_reg;
951 byte bits[64];
952 int clk_idx = 0;
953 int input_idx;
954 word phydata;
955 byte phyaddr = SMC_PHY_ADDR;
956
957 /* 32 consecutive ones on MDO to establish sync */
958 for (i = 0; i < 32; ++i)
959 bits[clk_idx++] = MII_MDOE | MII_MDO;
960
961 /* Start code <01> */
962 bits[clk_idx++] = MII_MDOE;
963 bits[clk_idx++] = MII_MDOE | MII_MDO;
964
965 /* Read command <10> */
966 bits[clk_idx++] = MII_MDOE | MII_MDO;
967 bits[clk_idx++] = MII_MDOE;
968
969 /* Output the PHY address, msb first */
wdenkb56ddc62003-09-15 21:14:37 +0000970 mask = (byte) 0x10;
971 for (i = 0; i < 5; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +0000972 if (phyaddr & mask)
973 bits[clk_idx++] = MII_MDOE | MII_MDO;
974 else
975 bits[clk_idx++] = MII_MDOE;
976
977 /* Shift to next lowest bit */
978 mask >>= 1;
wdenkb56ddc62003-09-15 21:14:37 +0000979 }
wdenkfe8c2802002-11-03 00:38:21 +0000980
981 /* Output the phy register number, msb first */
wdenkb56ddc62003-09-15 21:14:37 +0000982 mask = (byte) 0x10;
983 for (i = 0; i < 5; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +0000984 if (phyreg & mask)
985 bits[clk_idx++] = MII_MDOE | MII_MDO;
986 else
987 bits[clk_idx++] = MII_MDOE;
988
989 /* Shift to next lowest bit */
990 mask >>= 1;
wdenkb56ddc62003-09-15 21:14:37 +0000991 }
wdenkfe8c2802002-11-03 00:38:21 +0000992
993 /* Tristate and turnaround (2 bit times) */
994 bits[clk_idx++] = 0;
995 /*bits[clk_idx++] = 0; */
996
997 /* Input starts at this bit time */
998 input_idx = clk_idx;
999
1000 /* Will input 16 bits */
1001 for (i = 0; i < 16; ++i)
1002 bits[clk_idx++] = 0;
1003
1004 /* Final clock bit */
1005 bits[clk_idx++] = 0;
1006
1007 /* Save the current bank */
Ben Warren7194ab82009-10-04 22:37:03 -07001008 oldBank = SMC_inw (dev, BANK_SELECT);
wdenkfe8c2802002-11-03 00:38:21 +00001009
1010 /* Select bank 3 */
Ben Warren7194ab82009-10-04 22:37:03 -07001011 SMC_SELECT_BANK (dev, 3);
wdenkfe8c2802002-11-03 00:38:21 +00001012
1013 /* Get the current MII register value */
Ben Warren7194ab82009-10-04 22:37:03 -07001014 mii_reg = SMC_inw (dev, MII_REG);
wdenkfe8c2802002-11-03 00:38:21 +00001015
1016 /* Turn off all MII Interface bits */
wdenkb56ddc62003-09-15 21:14:37 +00001017 mii_reg &= ~(MII_MDOE | MII_MCLK | MII_MDI | MII_MDO);
wdenkfe8c2802002-11-03 00:38:21 +00001018
1019 /* Clock all 64 cycles */
wdenkb56ddc62003-09-15 21:14:37 +00001020 for (i = 0; i < sizeof bits; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +00001021 /* Clock Low - output data */
Ben Warren7194ab82009-10-04 22:37:03 -07001022 SMC_outw (dev, mii_reg | bits[i], MII_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001023 udelay (SMC_PHY_CLOCK_DELAY);
wdenkfe8c2802002-11-03 00:38:21 +00001024
1025
1026 /* Clock Hi - input data */
Ben Warren7194ab82009-10-04 22:37:03 -07001027 SMC_outw (dev, mii_reg | bits[i] | MII_MCLK, MII_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001028 udelay (SMC_PHY_CLOCK_DELAY);
Ben Warren7194ab82009-10-04 22:37:03 -07001029 bits[i] |= SMC_inw (dev, MII_REG) & MII_MDI;
wdenkb56ddc62003-09-15 21:14:37 +00001030 }
wdenkfe8c2802002-11-03 00:38:21 +00001031
1032 /* Return to idle state */
1033 /* Set clock to low, data to low, and output tristated */
Ben Warren7194ab82009-10-04 22:37:03 -07001034 SMC_outw (dev, mii_reg, MII_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001035 udelay (SMC_PHY_CLOCK_DELAY);
wdenkfe8c2802002-11-03 00:38:21 +00001036
1037 /* Restore original bank select */
Ben Warren7194ab82009-10-04 22:37:03 -07001038 SMC_SELECT_BANK (dev, oldBank);
wdenkfe8c2802002-11-03 00:38:21 +00001039
1040 /* Recover input data */
1041 phydata = 0;
wdenkb56ddc62003-09-15 21:14:37 +00001042 for (i = 0; i < 16; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +00001043 phydata <<= 1;
1044
1045 if (bits[input_idx++] & MII_MDI)
1046 phydata |= 0x0001;
wdenkb56ddc62003-09-15 21:14:37 +00001047 }
wdenkfe8c2802002-11-03 00:38:21 +00001048
1049#if (SMC_DEBUG > 2 )
wdenkb56ddc62003-09-15 21:14:37 +00001050 printf ("smc_read_phy_register(): phyaddr=%x,phyreg=%x,phydata=%x\n",
wdenkfe8c2802002-11-03 00:38:21 +00001051 phyaddr, phyreg, phydata);
wdenkb56ddc62003-09-15 21:14:37 +00001052 smc_dump_mii_stream (bits, sizeof bits);
wdenkfe8c2802002-11-03 00:38:21 +00001053#endif
1054
wdenkb56ddc62003-09-15 21:14:37 +00001055 return (phydata);
wdenkfe8c2802002-11-03 00:38:21 +00001056}
1057
1058
1059/*------------------------------------------------------------
1060 . Writes a register to the MII Management serial interface
1061 .-------------------------------------------------------------*/
Ben Warren7194ab82009-10-04 22:37:03 -07001062static void smc_write_phy_register (struct eth_device *dev, byte phyreg,
1063 word phydata)
wdenkfe8c2802002-11-03 00:38:21 +00001064{
1065 int oldBank;
1066 int i;
1067 word mask;
1068 word mii_reg;
1069 byte bits[65];
1070 int clk_idx = 0;
1071 byte phyaddr = SMC_PHY_ADDR;
1072
1073 /* 32 consecutive ones on MDO to establish sync */
1074 for (i = 0; i < 32; ++i)
1075 bits[clk_idx++] = MII_MDOE | MII_MDO;
1076
1077 /* Start code <01> */
1078 bits[clk_idx++] = MII_MDOE;
1079 bits[clk_idx++] = MII_MDOE | MII_MDO;
1080
1081 /* Write command <01> */
1082 bits[clk_idx++] = MII_MDOE;
1083 bits[clk_idx++] = MII_MDOE | MII_MDO;
1084
1085 /* Output the PHY address, msb first */
wdenkb56ddc62003-09-15 21:14:37 +00001086 mask = (byte) 0x10;
1087 for (i = 0; i < 5; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +00001088 if (phyaddr & mask)
1089 bits[clk_idx++] = MII_MDOE | MII_MDO;
1090 else
1091 bits[clk_idx++] = MII_MDOE;
1092
1093 /* Shift to next lowest bit */
1094 mask >>= 1;
wdenkb56ddc62003-09-15 21:14:37 +00001095 }
wdenkfe8c2802002-11-03 00:38:21 +00001096
1097 /* Output the phy register number, msb first */
wdenkb56ddc62003-09-15 21:14:37 +00001098 mask = (byte) 0x10;
1099 for (i = 0; i < 5; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +00001100 if (phyreg & mask)
1101 bits[clk_idx++] = MII_MDOE | MII_MDO;
1102 else
1103 bits[clk_idx++] = MII_MDOE;
1104
1105 /* Shift to next lowest bit */
1106 mask >>= 1;
wdenkb56ddc62003-09-15 21:14:37 +00001107 }
wdenkfe8c2802002-11-03 00:38:21 +00001108
1109 /* Tristate and turnaround (2 bit times) */
1110 bits[clk_idx++] = 0;
1111 bits[clk_idx++] = 0;
1112
1113 /* Write out 16 bits of data, msb first */
1114 mask = 0x8000;
wdenkb56ddc62003-09-15 21:14:37 +00001115 for (i = 0; i < 16; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +00001116 if (phydata & mask)
1117 bits[clk_idx++] = MII_MDOE | MII_MDO;
1118 else
1119 bits[clk_idx++] = MII_MDOE;
1120
1121 /* Shift to next lowest bit */
1122 mask >>= 1;
wdenkb56ddc62003-09-15 21:14:37 +00001123 }
wdenkfe8c2802002-11-03 00:38:21 +00001124
1125 /* Final clock bit (tristate) */
1126 bits[clk_idx++] = 0;
1127
1128 /* Save the current bank */
Ben Warren7194ab82009-10-04 22:37:03 -07001129 oldBank = SMC_inw (dev, BANK_SELECT);
wdenkfe8c2802002-11-03 00:38:21 +00001130
1131 /* Select bank 3 */
Ben Warren7194ab82009-10-04 22:37:03 -07001132 SMC_SELECT_BANK (dev, 3);
wdenkfe8c2802002-11-03 00:38:21 +00001133
1134 /* Get the current MII register value */
Ben Warren7194ab82009-10-04 22:37:03 -07001135 mii_reg = SMC_inw (dev, MII_REG);
wdenkfe8c2802002-11-03 00:38:21 +00001136
1137 /* Turn off all MII Interface bits */
wdenkb56ddc62003-09-15 21:14:37 +00001138 mii_reg &= ~(MII_MDOE | MII_MCLK | MII_MDI | MII_MDO);
wdenkfe8c2802002-11-03 00:38:21 +00001139
1140 /* Clock all cycles */
wdenkb56ddc62003-09-15 21:14:37 +00001141 for (i = 0; i < sizeof bits; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +00001142 /* Clock Low - output data */
Ben Warren7194ab82009-10-04 22:37:03 -07001143 SMC_outw (dev, mii_reg | bits[i], MII_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001144 udelay (SMC_PHY_CLOCK_DELAY);
wdenkfe8c2802002-11-03 00:38:21 +00001145
1146
1147 /* Clock Hi - input data */
Ben Warren7194ab82009-10-04 22:37:03 -07001148 SMC_outw (dev, mii_reg | bits[i] | MII_MCLK, MII_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001149 udelay (SMC_PHY_CLOCK_DELAY);
Ben Warren7194ab82009-10-04 22:37:03 -07001150 bits[i] |= SMC_inw (dev, MII_REG) & MII_MDI;
wdenkb56ddc62003-09-15 21:14:37 +00001151 }
wdenkfe8c2802002-11-03 00:38:21 +00001152
1153 /* Return to idle state */
1154 /* Set clock to low, data to low, and output tristated */
Ben Warren7194ab82009-10-04 22:37:03 -07001155 SMC_outw (dev, mii_reg, MII_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001156 udelay (SMC_PHY_CLOCK_DELAY);
wdenkfe8c2802002-11-03 00:38:21 +00001157
1158 /* Restore original bank select */
Ben Warren7194ab82009-10-04 22:37:03 -07001159 SMC_SELECT_BANK (dev, oldBank);
wdenkfe8c2802002-11-03 00:38:21 +00001160
1161#if (SMC_DEBUG > 2 )
wdenkb56ddc62003-09-15 21:14:37 +00001162 printf ("smc_write_phy_register(): phyaddr=%x,phyreg=%x,phydata=%x\n",
wdenkfe8c2802002-11-03 00:38:21 +00001163 phyaddr, phyreg, phydata);
wdenkb56ddc62003-09-15 21:14:37 +00001164 smc_dump_mii_stream (bits, sizeof bits);
wdenkfe8c2802002-11-03 00:38:21 +00001165#endif
1166}
1167#endif /* !CONFIG_SMC91111_EXT_PHY */
1168
1169
wdenkfe8c2802002-11-03 00:38:21 +00001170/*------------------------------------------------------------
wdenkfe8c2802002-11-03 00:38:21 +00001171 . Configures the specified PHY using Autonegotiation. Calls
1172 . smc_phy_fixed() if the user has requested a certain config.
1173 .-------------------------------------------------------------*/
1174#ifndef CONFIG_SMC91111_EXT_PHY
Ben Warren7194ab82009-10-04 22:37:03 -07001175static void smc_phy_configure (struct eth_device *dev)
wdenkfe8c2802002-11-03 00:38:21 +00001176{
1177 int timeout;
wdenkb56ddc62003-09-15 21:14:37 +00001178 word my_phy_caps; /* My PHY capabilities */
1179 word my_ad_caps; /* My Advertised capabilities */
1180 word status = 0; /*;my status = 0 */
wdenkfe8c2802002-11-03 00:38:21 +00001181
wdenkf39748a2004-06-09 13:37:52 +00001182 PRINTK3 ("%s: smc_program_phy()\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +00001183
wdenkfe8c2802002-11-03 00:38:21 +00001184 /* Reset the PHY, setting all other bits to zero */
Ben Warren7194ab82009-10-04 22:37:03 -07001185 smc_write_phy_register (dev, PHY_CNTL_REG, PHY_CNTL_RST);
wdenkfe8c2802002-11-03 00:38:21 +00001186
1187 /* Wait for the reset to complete, or time out */
wdenkb56ddc62003-09-15 21:14:37 +00001188 timeout = 6; /* Wait up to 3 seconds */
1189 while (timeout--) {
Ben Warren7194ab82009-10-04 22:37:03 -07001190 if (!(smc_read_phy_register (dev, PHY_CNTL_REG)
wdenkb56ddc62003-09-15 21:14:37 +00001191 & PHY_CNTL_RST)) {
wdenkfe8c2802002-11-03 00:38:21 +00001192 /* reset complete */
1193 break;
wdenkfe8c2802002-11-03 00:38:21 +00001194 }
1195
Mike Frysinger65029492012-03-05 13:46:51 +00001196 mdelay(500); /* wait 500 millisecs */
wdenkb56ddc62003-09-15 21:14:37 +00001197 }
1198
1199 if (timeout < 1) {
1200 printf ("%s:PHY reset timed out\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +00001201 goto smc_phy_configure_exit;
wdenkb56ddc62003-09-15 21:14:37 +00001202 }
wdenkfe8c2802002-11-03 00:38:21 +00001203
1204 /* Read PHY Register 18, Status Output */
1205 /* lp->lastPhy18 = smc_read_phy_register(PHY_INT_REG); */
1206
1207 /* Enable PHY Interrupts (for register 18) */
1208 /* Interrupts listed here are disabled */
Ben Warren7194ab82009-10-04 22:37:03 -07001209 smc_write_phy_register (dev, PHY_MASK_REG, 0xffff);
wdenkfe8c2802002-11-03 00:38:21 +00001210
1211 /* Configure the Receive/Phy Control register */
Ben Warren7194ab82009-10-04 22:37:03 -07001212 SMC_SELECT_BANK (dev, 0);
1213 SMC_outw (dev, RPC_DEFAULT, RPC_REG);
wdenkfe8c2802002-11-03 00:38:21 +00001214
1215 /* Copy our capabilities from PHY_STAT_REG to PHY_AD_REG */
Ben Warren7194ab82009-10-04 22:37:03 -07001216 my_phy_caps = smc_read_phy_register (dev, PHY_STAT_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001217 my_ad_caps = PHY_AD_CSMA; /* I am CSMA capable */
wdenkfe8c2802002-11-03 00:38:21 +00001218
1219 if (my_phy_caps & PHY_STAT_CAP_T4)
1220 my_ad_caps |= PHY_AD_T4;
1221
1222 if (my_phy_caps & PHY_STAT_CAP_TXF)
1223 my_ad_caps |= PHY_AD_TX_FDX;
1224
1225 if (my_phy_caps & PHY_STAT_CAP_TXH)
1226 my_ad_caps |= PHY_AD_TX_HDX;
1227
1228 if (my_phy_caps & PHY_STAT_CAP_TF)
1229 my_ad_caps |= PHY_AD_10_FDX;
1230
1231 if (my_phy_caps & PHY_STAT_CAP_TH)
1232 my_ad_caps |= PHY_AD_10_HDX;
1233
1234 /* Update our Auto-Neg Advertisement Register */
Ben Warren7194ab82009-10-04 22:37:03 -07001235 smc_write_phy_register (dev, PHY_AD_REG, my_ad_caps);
wdenkfe8c2802002-11-03 00:38:21 +00001236
wdenk518e2e12004-03-25 14:59:05 +00001237 /* Read the register back. Without this, it appears that when */
1238 /* auto-negotiation is restarted, sometimes it isn't ready and */
1239 /* the link does not come up. */
Ben Warren7194ab82009-10-04 22:37:03 -07001240 smc_read_phy_register(dev, PHY_AD_REG);
wdenk518e2e12004-03-25 14:59:05 +00001241
wdenkf39748a2004-06-09 13:37:52 +00001242 PRINTK2 ("%s: phy caps=%x\n", SMC_DEV_NAME, my_phy_caps);
1243 PRINTK2 ("%s: phy advertised caps=%x\n", SMC_DEV_NAME, my_ad_caps);
wdenkfe8c2802002-11-03 00:38:21 +00001244
1245 /* Restart auto-negotiation process in order to advertise my caps */
Ben Warren7194ab82009-10-04 22:37:03 -07001246 smc_write_phy_register (dev, PHY_CNTL_REG,
wdenkb56ddc62003-09-15 21:14:37 +00001247 PHY_CNTL_ANEG_EN | PHY_CNTL_ANEG_RST);
wdenkfe8c2802002-11-03 00:38:21 +00001248
1249 /* Wait for the auto-negotiation to complete. This may take from */
1250 /* 2 to 3 seconds. */
1251 /* Wait for the reset to complete, or time out */
wdenkf39748a2004-06-09 13:37:52 +00001252 timeout = CONFIG_SMC_AUTONEG_TIMEOUT * 2;
wdenkb56ddc62003-09-15 21:14:37 +00001253 while (timeout--) {
wdenkf39748a2004-06-09 13:37:52 +00001254
Ben Warren7194ab82009-10-04 22:37:03 -07001255 status = smc_read_phy_register (dev, PHY_STAT_REG);
wdenkb56ddc62003-09-15 21:14:37 +00001256 if (status & PHY_STAT_ANEG_ACK) {
wdenkfe8c2802002-11-03 00:38:21 +00001257 /* auto-negotiate complete */
1258 break;
wdenkb56ddc62003-09-15 21:14:37 +00001259 }
wdenkfe8c2802002-11-03 00:38:21 +00001260
Mike Frysinger65029492012-03-05 13:46:51 +00001261 mdelay(500); /* wait 500 millisecs */
wdenkfe8c2802002-11-03 00:38:21 +00001262
1263 /* Restart auto-negotiation if remote fault */
wdenkb56ddc62003-09-15 21:14:37 +00001264 if (status & PHY_STAT_REM_FLT) {
wdenkf39748a2004-06-09 13:37:52 +00001265 printf ("%s: PHY remote fault detected\n",
wdenkb56ddc62003-09-15 21:14:37 +00001266 SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +00001267
1268 /* Restart auto-negotiation */
wdenkf39748a2004-06-09 13:37:52 +00001269 printf ("%s: PHY restarting auto-negotiation\n",
wdenkfe8c2802002-11-03 00:38:21 +00001270 SMC_DEV_NAME);
Ben Warren7194ab82009-10-04 22:37:03 -07001271 smc_write_phy_register (dev, PHY_CNTL_REG,
wdenkb56ddc62003-09-15 21:14:37 +00001272 PHY_CNTL_ANEG_EN |
1273 PHY_CNTL_ANEG_RST |
1274 PHY_CNTL_SPEED |
1275 PHY_CNTL_DPLX);
wdenkfe8c2802002-11-03 00:38:21 +00001276 }
wdenkb56ddc62003-09-15 21:14:37 +00001277 }
wdenkfe8c2802002-11-03 00:38:21 +00001278
wdenkb56ddc62003-09-15 21:14:37 +00001279 if (timeout < 1) {
wdenkf39748a2004-06-09 13:37:52 +00001280 printf ("%s: PHY auto-negotiate timed out\n", SMC_DEV_NAME);
wdenkb56ddc62003-09-15 21:14:37 +00001281 }
wdenkfe8c2802002-11-03 00:38:21 +00001282
1283 /* Fail if we detected an auto-negotiate remote fault */
wdenkb56ddc62003-09-15 21:14:37 +00001284 if (status & PHY_STAT_REM_FLT) {
wdenkf39748a2004-06-09 13:37:52 +00001285 printf ("%s: PHY remote fault detected\n", SMC_DEV_NAME);
wdenkb56ddc62003-09-15 21:14:37 +00001286 }
wdenkfe8c2802002-11-03 00:38:21 +00001287
1288 /* Re-Configure the Receive/Phy Control register */
Ben Warren7194ab82009-10-04 22:37:03 -07001289 SMC_outw (dev, RPC_DEFAULT, RPC_REG);
wdenkfe8c2802002-11-03 00:38:21 +00001290
wdenk26238132004-07-09 22:51:01 +00001291smc_phy_configure_exit: ;
wdenkfe8c2802002-11-03 00:38:21 +00001292
1293}
1294#endif /* !CONFIG_SMC91111_EXT_PHY */
1295
1296
1297#if SMC_DEBUG > 2
1298static void print_packet( byte * buf, int length )
1299{
wdenk8bde7f72003-06-27 21:31:46 +00001300 int i;
1301 int remainder;
1302 int lines;
wdenkfe8c2802002-11-03 00:38:21 +00001303
wdenk8bde7f72003-06-27 21:31:46 +00001304 printf("Packet of length %d \n", length );
wdenkfe8c2802002-11-03 00:38:21 +00001305
1306#if SMC_DEBUG > 3
wdenk8bde7f72003-06-27 21:31:46 +00001307 lines = length / 16;
1308 remainder = length % 16;
wdenkfe8c2802002-11-03 00:38:21 +00001309
wdenk8bde7f72003-06-27 21:31:46 +00001310 for ( i = 0; i < lines ; i ++ ) {
1311 int cur;
wdenkfe8c2802002-11-03 00:38:21 +00001312
wdenk8bde7f72003-06-27 21:31:46 +00001313 for ( cur = 0; cur < 8; cur ++ ) {
1314 byte a, b;
wdenkfe8c2802002-11-03 00:38:21 +00001315
wdenk8bde7f72003-06-27 21:31:46 +00001316 a = *(buf ++ );
1317 b = *(buf ++ );
1318 printf("%02x%02x ", a, b );
1319 }
1320 printf("\n");
1321 }
1322 for ( i = 0; i < remainder/2 ; i++ ) {
1323 byte a, b;
wdenkfe8c2802002-11-03 00:38:21 +00001324
wdenk8bde7f72003-06-27 21:31:46 +00001325 a = *(buf ++ );
1326 b = *(buf ++ );
1327 printf("%02x%02x ", a, b );
1328 }
1329 printf("\n");
wdenkfe8c2802002-11-03 00:38:21 +00001330#endif
wdenkfe8c2802002-11-03 00:38:21 +00001331}
1332#endif
1333
Ben Warren7194ab82009-10-04 22:37:03 -07001334int smc91111_initialize(u8 dev_num, int base_addr)
wdenk0b97ab12003-06-19 23:58:30 +00001335{
Ben Warren7194ab82009-10-04 22:37:03 -07001336 struct smc91111_priv *priv;
1337 struct eth_device *dev;
wdenk3d3befa2004-03-14 15:06:13 +00001338 int i;
wdenkf39748a2004-06-09 13:37:52 +00001339
Ben Warren7194ab82009-10-04 22:37:03 -07001340 priv = malloc(sizeof(*priv));
1341 if (!priv)
1342 return 0;
1343 dev = malloc(sizeof(*dev));
1344 if (!dev) {
1345 free(priv);
1346 return 0;
wdenkb56ddc62003-09-15 21:14:37 +00001347 }
wdenkf39748a2004-06-09 13:37:52 +00001348
Thomas Chou1ca6d0d2010-10-06 09:16:10 +08001349 memset(dev, 0, sizeof(*dev));
Ben Warren7194ab82009-10-04 22:37:03 -07001350 priv->dev_num = dev_num;
1351 dev->priv = priv;
1352 dev->iobase = base_addr;
1353
1354 swap_to(ETHERNET);
1355 SMC_SELECT_BANK(dev, 1);
1356 for (i = 0; i < 6; ++i)
1357 dev->enetaddr[i] = SMC_inb(dev, (ADDR0_REG + i));
1358 swap_to(FLASH);
1359
1360 dev->init = smc_init;
1361 dev->halt = smc_halt;
1362 dev->send = smc_send;
1363 dev->recv = smc_rcv;
Thomas Chou1ca6d0d2010-10-06 09:16:10 +08001364 dev->write_hwaddr = smc_write_hwaddr;
Ben Warren7194ab82009-10-04 22:37:03 -07001365 sprintf(dev->name, "%s-%hu", SMC_DEV_NAME, dev_num);
1366
1367 eth_register(dev);
1368 return 0;
wdenk0b97ab12003-06-19 23:58:30 +00001369}