blob: 3146ff4c9ea90ed6b7f553bdcd77344061c85a85 [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)
10 . Developed by Simple Network Magic Corporation (SNMC)
11 . 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
20 . MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 . 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
25 . Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 .
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:
39 . io = for the base address
40 . irq = for the IRQ
41 .
42 . author:
43 . Erik Stahlman ( erik@vt.edu )
44 . Daris A Nevil ( dnevil@snmc.com )
45 .
46 .
47 . Hardware multicast code from Peter Cammaert ( pc@denkart.be )
48 .
49 . Sources:
50 . 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 )
53 .
54 . History:
wdenk8bde7f72003-06-27 21:31:46 +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
57 . 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
60 ----------------------------------------------------------------------------*/
61
62#include <common.h>
63#include <command.h>
64#include "smc91111.h"
65#include <net.h>
66
67#ifdef CONFIG_DRIVER_SMC91111
68
69/* Use power-down feature of the chip */
70#define POWER_DOWN 0
71
72#define NO_AUTOPROBE
73
74static const char version[] =
75 "smc91111.c:v1.0 04/25/01 by Daris A Nevil (dnevil@snmc.com)\n";
76
77#define SMC_DEBUG 0
78
79/*------------------------------------------------------------------------
80 .
81 . Configuration options, for the experienced user to change.
82 .
83 -------------------------------------------------------------------------*/
84
85/*
86 . Wait time for memory to be free. This probably shouldn't be
87 . tuned that much, as waiting for this means nothing else happens
88 . in the system
89*/
90#define MEMORY_WAIT_TIME 16
91
92
93#if (SMC_DEBUG > 2 )
94#define PRINTK3(args...) printf(args)
95#else
96#define PRINTK3(args...)
97#endif
98
99#if SMC_DEBUG > 1
100#define PRINTK2(args...) printf(args)
101#else
102#define PRINTK2(args...)
103#endif
104
105#ifdef SMC_DEBUG
106#define PRINTK(args...) printf(args)
107#else
108#define PRINTK(args...)
109#endif
110
111
112/*------------------------------------------------------------------------
113 .
114 . The internal workings of the driver. If you are changing anything
115 . here with the SMC stuff, you should have the datasheet and know
116 . what you are doing.
117 .
118 -------------------------------------------------------------------------*/
119#define CARDNAME "LAN91C111"
120
121/* Memory sizing constant */
122#define LAN91C111_MEMORY_MULTIPLIER (1024*2)
123
124#ifndef CONFIG_SMC91111_BASE
125#define CONFIG_SMC91111_BASE 0x20000300
126#endif
127
128#define SMC_BASE_ADDRESS CONFIG_SMC91111_BASE
129
130#define SMC_DEV_NAME "SMC91111"
131#define SMC_PHY_ADDR 0x0000
132#define SMC_ALLOC_MAX_TRY 5
133#define SMC_TX_TIMEOUT 30
134
135#define SMC_PHY_CLOCK_DELAY 1000
136
137#define ETH_ZLEN 60
138
139#ifdef CONFIG_SMC_USE_32_BIT
140#define USE_32_BIT 1
141#else
142#undef USE_32_BIT
143#endif
144/*-----------------------------------------------------------------
145 .
146 . The driver can be entered at any of the following entry points.
147 .
148 .------------------------------------------------------------------ */
149
150extern int eth_init(bd_t *bd);
151extern void eth_halt(void);
152extern int eth_rx(void);
153extern int eth_send(volatile void *packet, int length);
154
155
wdenkfe8c2802002-11-03 00:38:21 +0000156/*
157 . This is called by register_netdev(). It is responsible for
158 . checking the portlist for the SMC9000 series chipset. If it finds
159 . one, then it will initialize the device, find the hardware information,
160 . and sets up the appropriate device parameters.
161 . NOTE: Interrupts are *OFF* when this procedure is called.
162 .
163 . NB:This shouldn't be static since it is referred to externally.
164*/
165int smc_init(void);
166
167/*
168 . This is called by unregister_netdev(). It is responsible for
169 . cleaning up before the driver is finally unregistered and discarded.
170*/
171void smc_destructor(void);
172
173/*
174 . The kernel calls this function when someone wants to use the device,
175 . typically 'ifconfig ethX up'.
176*/
wdenk0b97ab12003-06-19 23:58:30 +0000177static int smc_open(bd_t *bd);
wdenkfe8c2802002-11-03 00:38:21 +0000178
179
180/*
181 . This is called by the kernel in response to 'ifconfig ethX down'. It
182 . is responsible for cleaning up everything that the open routine
183 . does, and maybe putting the card into a powerdown state.
184*/
185static int smc_close(void);
186
187/*
188 . Configures the PHY through the MII Management interface
189*/
190#ifndef CONFIG_SMC91111_EXT_PHY
191static void smc_phy_configure(void);
192#endif /* !CONFIG_SMC91111_EXT_PHY */
193
194/*
195 . This is a separate procedure to handle the receipt of a packet, to
196 . leave the interrupt code looking slightly cleaner
197*/
198static int smc_rcv(void);
199
wdenk0b97ab12003-06-19 23:58:30 +0000200/* See if a MAC address is defined in the current environment. If so use it. If not
wdenk8bde7f72003-06-27 21:31:46 +0000201 . print a warning and set the environment and other globals with the default.
wdenk0b97ab12003-06-19 23:58:30 +0000202 . If an EEPROM is present it really should be consulted.
203*/
204int smc_get_ethaddr(bd_t *bd);
205int get_rom_mac(char *v_rom_mac);
wdenkfe8c2802002-11-03 00:38:21 +0000206
207/*
208 ------------------------------------------------------------
209 .
210 . Internal routines
211 .
212 ------------------------------------------------------------
213*/
214
215static char smc_mac_addr[] = {0x02, 0x80, 0xad, 0x20, 0x31, 0xb8};
216
217/*
218 * This function must be called before smc_open() if you want to override
219 * the default mac address.
220 */
221
222void smc_set_mac_addr(const char *addr) {
223 int i;
224
225 for (i=0; i < sizeof(smc_mac_addr); i++){
226 smc_mac_addr[i] = addr[i];
227 }
228}
229
230/*
231 * smc_get_macaddr is no longer used. If you want to override the default
wdenk0b97ab12003-06-19 23:58:30 +0000232 * mac address, call smc_get_mac_addr as a part of the board initialization.
wdenkfe8c2802002-11-03 00:38:21 +0000233 */
234
235#if 0
236void smc_get_macaddr( byte *addr ) {
237 /* MAC ADDRESS AT FLASHBLOCK 1 / OFFSET 0x10 */
wdenk8bde7f72003-06-27 21:31:46 +0000238 unsigned char *dnp1110_mac = (unsigned char *) (0xE8000000 + 0x20010);
wdenkfe8c2802002-11-03 00:38:21 +0000239 int i;
240
241
wdenk8bde7f72003-06-27 21:31:46 +0000242 for (i=0; i<6; i++) {
243 addr[0] = *(dnp1110_mac+0);
244 addr[1] = *(dnp1110_mac+1);
245 addr[2] = *(dnp1110_mac+2);
246 addr[3] = *(dnp1110_mac+3);
247 addr[4] = *(dnp1110_mac+4);
248 addr[5] = *(dnp1110_mac+5);
249 }
wdenkfe8c2802002-11-03 00:38:21 +0000250}
251#endif /* 0 */
252
253/***********************************************
254 * Show available memory *
255 ***********************************************/
256void dump_memory_info(void)
257{
wdenk8bde7f72003-06-27 21:31:46 +0000258 word mem_info;
259 word old_bank;
wdenkfe8c2802002-11-03 00:38:21 +0000260
wdenk8bde7f72003-06-27 21:31:46 +0000261 old_bank = SMC_inw(BANK_SELECT)&0xF;
wdenkfe8c2802002-11-03 00:38:21 +0000262
wdenk8bde7f72003-06-27 21:31:46 +0000263 SMC_SELECT_BANK(0);
264 mem_info = SMC_inw( MIR_REG );
265 PRINTK2("Memory: %4d available\n", (mem_info >> 8)*2048);
wdenkfe8c2802002-11-03 00:38:21 +0000266
wdenk8bde7f72003-06-27 21:31:46 +0000267 SMC_SELECT_BANK(old_bank);
wdenkfe8c2802002-11-03 00:38:21 +0000268}
269/*
270 . A rather simple routine to print out a packet for debugging purposes.
271*/
272#if SMC_DEBUG > 2
273static void print_packet( byte *, int );
274#endif
275
276#define tx_done(dev) 1
277
278
wdenkfe8c2802002-11-03 00:38:21 +0000279/* this does a soft reset on the device */
280static void smc_reset( void );
281
282/* Enable Interrupts, Receive, and Transmit */
283static void smc_enable( void );
284
285/* this puts the device in an inactive state */
286static void smc_shutdown( void );
287
288/* Routines to Read and Write the PHY Registers across the
289 MII Management Interface
290*/
291
292#ifndef CONFIG_SMC91111_EXT_PHY
293static word smc_read_phy_register(byte phyreg);
294static void smc_write_phy_register(byte phyreg, word phydata);
295#endif /* !CONFIG_SMC91111_EXT_PHY */
296
297
wdenkb56ddc62003-09-15 21:14:37 +0000298static int poll4int (byte mask, int timeout)
299{
300 int tmo = get_timer (0) + timeout * CFG_HZ;
301 int is_timeout = 0;
302 word old_bank = SMC_inw (BSR_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000303
wdenkb56ddc62003-09-15 21:14:37 +0000304 PRINTK2 ("Polling...\n");
305 SMC_SELECT_BANK (2);
306 while ((SMC_inw (SMC91111_INT_REG) & mask) == 0) {
307 if (get_timer (0) >= tmo) {
308 is_timeout = 1;
309 break;
310 }
wdenkfe8c2802002-11-03 00:38:21 +0000311 }
wdenkfe8c2802002-11-03 00:38:21 +0000312
wdenkb56ddc62003-09-15 21:14:37 +0000313 /* restore old bank selection */
314 SMC_SELECT_BANK (old_bank);
wdenkfe8c2802002-11-03 00:38:21 +0000315
wdenkb56ddc62003-09-15 21:14:37 +0000316 if (is_timeout)
317 return 1;
318 else
319 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000320}
321
wdenk487778b2003-06-06 11:20:01 +0000322/* Only one release command at a time, please */
wdenkb56ddc62003-09-15 21:14:37 +0000323static inline void smc_wait_mmu_release_complete (void)
wdenk487778b2003-06-06 11:20:01 +0000324{
325 int count = 0;
wdenkb56ddc62003-09-15 21:14:37 +0000326
wdenk487778b2003-06-06 11:20:01 +0000327 /* assume bank 2 selected */
wdenkb56ddc62003-09-15 21:14:37 +0000328 while (SMC_inw (MMU_CMD_REG) & MC_BUSY) {
329 udelay (1); /* Wait until not busy */
330 if (++count > 200)
331 break;
wdenk487778b2003-06-06 11:20:01 +0000332 }
333}
334
wdenkfe8c2802002-11-03 00:38:21 +0000335/*
336 . Function: smc_reset( void )
337 . Purpose:
338 . This sets the SMC91111 chip to its normal state, hopefully from whatever
339 . mess that any other DOS driver has put it in.
340 .
341 . Maybe I should reset more registers to defaults in here? SOFTRST should
342 . do that for me.
343 .
344 . Method:
345 . 1. send a SOFT RESET
346 . 2. wait for it to finish
347 . 3. enable autorelease mode
348 . 4. reset the memory management unit
349 . 5. clear all interrupts
350 .
351*/
wdenkb56ddc62003-09-15 21:14:37 +0000352static void smc_reset (void)
wdenkfe8c2802002-11-03 00:38:21 +0000353{
wdenkb56ddc62003-09-15 21:14:37 +0000354 PRINTK2 ("%s:smc_reset\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000355
356 /* This resets the registers mostly to defaults, but doesn't
357 affect EEPROM. That seems unnecessary */
wdenkb56ddc62003-09-15 21:14:37 +0000358 SMC_SELECT_BANK (0);
359 SMC_outw (RCR_SOFTRST, RCR_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000360
361 /* Setup the Configuration Register */
362 /* This is necessary because the CONFIG_REG is not affected */
363 /* by a soft reset */
364
wdenkb56ddc62003-09-15 21:14:37 +0000365 SMC_SELECT_BANK (1);
wdenkfe8c2802002-11-03 00:38:21 +0000366#if defined(CONFIG_SMC91111_EXT_PHY)
wdenkb56ddc62003-09-15 21:14:37 +0000367 SMC_outw (CONFIG_DEFAULT | CONFIG_EXT_PHY, CONFIG_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000368#else
wdenkb56ddc62003-09-15 21:14:37 +0000369 SMC_outw (CONFIG_DEFAULT, CONFIG_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000370#endif
371
372
373 /* Release from possible power-down state */
374 /* Configuration register is not affected by Soft Reset */
wdenkb56ddc62003-09-15 21:14:37 +0000375 SMC_outw (SMC_inw (CONFIG_REG) | CONFIG_EPH_POWER_EN, CONFIG_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000376
wdenkb56ddc62003-09-15 21:14:37 +0000377 SMC_SELECT_BANK (0);
wdenkfe8c2802002-11-03 00:38:21 +0000378
379 /* this should pause enough for the chip to be happy */
wdenkb56ddc62003-09-15 21:14:37 +0000380 udelay (10);
wdenkfe8c2802002-11-03 00:38:21 +0000381
382 /* Disable transmit and receive functionality */
wdenkb56ddc62003-09-15 21:14:37 +0000383 SMC_outw (RCR_CLEAR, RCR_REG);
384 SMC_outw (TCR_CLEAR, TCR_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000385
386 /* set the control register */
wdenkb56ddc62003-09-15 21:14:37 +0000387 SMC_SELECT_BANK (1);
388 SMC_outw (CTL_DEFAULT, CTL_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000389
390 /* Reset the MMU */
wdenkb56ddc62003-09-15 21:14:37 +0000391 SMC_SELECT_BANK (2);
392 smc_wait_mmu_release_complete ();
393 SMC_outw (MC_RESET, MMU_CMD_REG);
394 while (SMC_inw (MMU_CMD_REG) & MC_BUSY)
395 udelay (1); /* Wait until not busy */
wdenkfe8c2802002-11-03 00:38:21 +0000396
397 /* Note: It doesn't seem that waiting for the MMU busy is needed here,
398 but this is a place where future chipsets _COULD_ break. Be wary
wdenk8bde7f72003-06-27 21:31:46 +0000399 of issuing another MMU command right after this */
wdenkfe8c2802002-11-03 00:38:21 +0000400
401 /* Disable all interrupts */
wdenkb56ddc62003-09-15 21:14:37 +0000402 SMC_outb (0, IM_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000403}
404
405/*
406 . Function: smc_enable
407 . Purpose: let the chip talk to the outside work
408 . Method:
409 . 1. Enable the transmitter
410 . 2. Enable the receiver
411 . 3. Enable interrupts
412*/
413static void smc_enable()
414{
415 PRINTK2("%s:smc_enable\n", SMC_DEV_NAME);
416 SMC_SELECT_BANK( 0 );
417 /* see the header file for options in TCR/RCR DEFAULT*/
418 SMC_outw( TCR_DEFAULT, TCR_REG );
419 SMC_outw( RCR_DEFAULT, RCR_REG );
420
421 /* clear MII_DIS */
422/* smc_write_phy_register(PHY_CNTL_REG, 0x0000); */
423}
424
425/*
426 . Function: smc_shutdown
427 . Purpose: closes down the SMC91xxx chip.
428 . Method:
429 . 1. zero the interrupt mask
430 . 2. clear the enable receive flag
431 . 3. clear the enable xmit flags
432 .
433 . TODO:
434 . (1) maybe utilize power down mode.
435 . Why not yet? Because while the chip will go into power down mode,
436 . the manual says that it will wake up in response to any I/O requests
437 . in the register space. Empirical results do not show this working.
438*/
439static void smc_shutdown()
440{
441 PRINTK2(CARDNAME ":smc_shutdown\n");
442
443 /* no more interrupts for me */
444 SMC_SELECT_BANK( 2 );
445 SMC_outb( 0, IM_REG );
446
447 /* and tell the card to stay away from that nasty outside world */
448 SMC_SELECT_BANK( 0 );
449 SMC_outb( RCR_CLEAR, RCR_REG );
450 SMC_outb( TCR_CLEAR, TCR_REG );
451}
452
453
454/*
455 . Function: smc_hardware_send_packet(struct net_device * )
456 . Purpose:
457 . This sends the actual packet to the SMC9xxx chip.
458 .
459 . Algorithm:
460 . First, see if a saved_skb is available.
461 . ( this should NOT be called if there is no 'saved_skb'
462 . Now, find the packet number that the chip allocated
463 . Point the data pointers at it in memory
464 . Set the length word in the chip's memory
465 . Dump the packet to chip memory
466 . Check if a last byte is needed ( odd length packet )
467 . if so, set the control flag right
468 . Tell the card to send it
469 . Enable the transmit interrupt, so I know if it failed
470 . Free the kernel data if I actually sent it.
471*/
wdenkb56ddc62003-09-15 21:14:37 +0000472static int smc_send_packet (volatile void *packet, int packet_length)
wdenkfe8c2802002-11-03 00:38:21 +0000473{
wdenkb56ddc62003-09-15 21:14:37 +0000474 byte packet_no;
475 unsigned long ioaddr;
476 byte *buf;
477 int length;
478 int numPages;
479 int try = 0;
480 int time_out;
481 byte status;
wdenkfe8c2802002-11-03 00:38:21 +0000482
483
wdenkb56ddc62003-09-15 21:14:37 +0000484 PRINTK3 ("%s:smc_hardware_send_packet\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000485
486 length = ETH_ZLEN < packet_length ? packet_length : ETH_ZLEN;
487
488 /* allocate memory
wdenkb56ddc62003-09-15 21:14:37 +0000489 ** The MMU wants the number of pages to be the number of 256 bytes
490 ** 'pages', minus 1 ( since a packet can't ever have 0 pages :) )
491 **
492 ** The 91C111 ignores the size bits, but the code is left intact
493 ** for backwards and future compatibility.
494 **
495 ** Pkt size for allocating is data length +6 (for additional status
496 ** words, length and ctl!)
497 **
498 ** If odd size then last byte is included in this header.
499 */
500 numPages = ((length & 0xfffe) + 6);
501 numPages >>= 8; /* Divide by 256 */
wdenkfe8c2802002-11-03 00:38:21 +0000502
wdenkb56ddc62003-09-15 21:14:37 +0000503 if (numPages > 7) {
504 printf ("%s: Far too big packet error. \n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000505 return 0;
506 }
507
508 /* now, try to allocate the memory */
wdenkb56ddc62003-09-15 21:14:37 +0000509 SMC_SELECT_BANK (2);
510 SMC_outw (MC_ALLOC | numPages, MMU_CMD_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000511
wdenkdc7c9a12003-03-26 06:55:25 +0000512 /* FIXME: the ALLOC_INT bit never gets set *
513 * so the following will always give a *
514 * memory allocation error. *
515 * same code works in armboot though *
516 * -ro
517 */
518
wdenkfe8c2802002-11-03 00:38:21 +0000519again:
520 try++;
521 time_out = MEMORY_WAIT_TIME;
522 do {
wdenkb56ddc62003-09-15 21:14:37 +0000523 status = SMC_inb (SMC91111_INT_REG);
524 if (status & IM_ALLOC_INT) {
wdenkfe8c2802002-11-03 00:38:21 +0000525 /* acknowledge the interrupt */
wdenkb56ddc62003-09-15 21:14:37 +0000526 SMC_outb (IM_ALLOC_INT, SMC91111_INT_REG);
wdenk8bde7f72003-06-27 21:31:46 +0000527 break;
wdenkfe8c2802002-11-03 00:38:21 +0000528 }
wdenkb56ddc62003-09-15 21:14:37 +0000529 } while (--time_out);
wdenkfe8c2802002-11-03 00:38:21 +0000530
wdenkb56ddc62003-09-15 21:14:37 +0000531 if (!time_out) {
532 PRINTK2 ("%s: memory allocation, try %d failed ...\n",
533 SMC_DEV_NAME, try);
534 if (try < SMC_ALLOC_MAX_TRY)
535 goto again;
536 else
537 return 0;
wdenkfe8c2802002-11-03 00:38:21 +0000538 }
539
wdenkb56ddc62003-09-15 21:14:37 +0000540 PRINTK2 ("%s: memory allocation, try %d succeeded ...\n",
541 SMC_DEV_NAME, try);
wdenkfe8c2802002-11-03 00:38:21 +0000542
543 /* I can send the packet now.. */
544
545 ioaddr = SMC_BASE_ADDRESS;
546
wdenkb56ddc62003-09-15 21:14:37 +0000547 buf = (byte *) packet;
wdenkfe8c2802002-11-03 00:38:21 +0000548
549 /* If I get here, I _know_ there is a packet slot waiting for me */
wdenkb56ddc62003-09-15 21:14:37 +0000550 packet_no = SMC_inb (AR_REG);
551 if (packet_no & AR_FAILED) {
wdenkfe8c2802002-11-03 00:38:21 +0000552 /* or isn't there? BAD CHIP! */
wdenkb56ddc62003-09-15 21:14:37 +0000553 printf ("%s: Memory allocation failed. \n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000554 return 0;
555 }
556
557 /* we have a packet address, so tell the card to use it */
wdenkb56ddc62003-09-15 21:14:37 +0000558 SMC_outb (packet_no, PN_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000559
560 /* point to the beginning of the packet */
wdenkb56ddc62003-09-15 21:14:37 +0000561 SMC_outw (PTR_AUTOINC, PTR_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000562
wdenkb56ddc62003-09-15 21:14:37 +0000563 PRINTK3 ("%s: Trying to xmit packet of length %x\n",
564 SMC_DEV_NAME, length);
wdenkfe8c2802002-11-03 00:38:21 +0000565
566#if SMC_DEBUG > 2
wdenkb56ddc62003-09-15 21:14:37 +0000567 printf ("Transmitting Packet\n");
568 print_packet (buf, length);
wdenkfe8c2802002-11-03 00:38:21 +0000569#endif
570
571 /* send the packet length ( +6 for status, length and ctl byte )
wdenk8bde7f72003-06-27 21:31:46 +0000572 and the status word ( set to zeros ) */
wdenkfe8c2802002-11-03 00:38:21 +0000573#ifdef USE_32_BIT
wdenkb56ddc62003-09-15 21:14:37 +0000574 SMC_outl ((length + 6) << 16, SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000575#else
wdenkb56ddc62003-09-15 21:14:37 +0000576 SMC_outw (0, SMC91111_DATA_REG);
577 /* send the packet length ( +6 for status words, length, and ctl */
578 SMC_outw ((length + 6), SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000579#endif
580
581 /* send the actual data
wdenkb56ddc62003-09-15 21:14:37 +0000582 . I _think_ it's faster to send the longs first, and then
583 . mop up by sending the last word. It depends heavily
584 . on alignment, at least on the 486. Maybe it would be
585 . a good idea to check which is optimal? But that could take
586 . almost as much time as is saved?
587 */
wdenkfe8c2802002-11-03 00:38:21 +0000588#ifdef USE_32_BIT
wdenkb56ddc62003-09-15 21:14:37 +0000589 SMC_outsl (SMC91111_DATA_REG, buf, length >> 2);
590 if (length & 0x2)
591 SMC_outw (*((word *) (buf + (length & 0xFFFFFFFC))),
592 SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000593#else
wdenkb56ddc62003-09-15 21:14:37 +0000594 SMC_outsw (SMC91111_DATA_REG, buf, (length) >> 1);
wdenkfe8c2802002-11-03 00:38:21 +0000595#endif /* USE_32_BIT */
596
597 /* Send the last byte, if there is one. */
wdenkb56ddc62003-09-15 21:14:37 +0000598 if ((length & 1) == 0) {
599 SMC_outw (0, SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000600 } else {
wdenkb56ddc62003-09-15 21:14:37 +0000601 SMC_outw (buf[length - 1] | 0x2000, SMC91111_DATA_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000602 }
603
604 /* and let the chipset deal with it */
wdenkb56ddc62003-09-15 21:14:37 +0000605 SMC_outw (MC_ENQUEUE, MMU_CMD_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000606
607 /* poll for TX INT */
wdenkb56ddc62003-09-15 21:14:37 +0000608 if (poll4int (IM_TX_INT, SMC_TX_TIMEOUT)) {
wdenkfe8c2802002-11-03 00:38:21 +0000609 /* sending failed */
wdenkb56ddc62003-09-15 21:14:37 +0000610 PRINTK2 ("%s: TX timeout, sending failed...\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000611
612 /* release packet */
wdenkb56ddc62003-09-15 21:14:37 +0000613 SMC_outw (MC_FREEPKT, MMU_CMD_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000614
wdenk8bde7f72003-06-27 21:31:46 +0000615 /* wait for MMU getting ready (low) */
wdenkb56ddc62003-09-15 21:14:37 +0000616 while (SMC_inw (MMU_CMD_REG) & MC_BUSY) {
617 udelay (10);
wdenk8bde7f72003-06-27 21:31:46 +0000618 }
wdenkfe8c2802002-11-03 00:38:21 +0000619
wdenkb56ddc62003-09-15 21:14:37 +0000620 PRINTK2 ("MMU ready\n");
wdenkfe8c2802002-11-03 00:38:21 +0000621
622
623 return 0;
624 } else {
625 /* ack. int */
wdenkb56ddc62003-09-15 21:14:37 +0000626 SMC_outw (IM_TX_INT, SMC91111_INT_REG);
627 PRINTK2 ("%s: Sent packet of length %d \n", SMC_DEV_NAME,
628 length);
wdenkfe8c2802002-11-03 00:38:21 +0000629
630 /* release packet */
wdenkb56ddc62003-09-15 21:14:37 +0000631 SMC_outw (MC_FREEPKT, MMU_CMD_REG);
wdenkfe8c2802002-11-03 00:38:21 +0000632
wdenk8bde7f72003-06-27 21:31:46 +0000633 /* wait for MMU getting ready (low) */
wdenkb56ddc62003-09-15 21:14:37 +0000634 while (SMC_inw (MMU_CMD_REG) & MC_BUSY) {
635 udelay (10);
wdenk8bde7f72003-06-27 21:31:46 +0000636 }
wdenkfe8c2802002-11-03 00:38:21 +0000637
wdenkb56ddc62003-09-15 21:14:37 +0000638 PRINTK2 ("MMU ready\n");
wdenkfe8c2802002-11-03 00:38:21 +0000639
640
641 }
642
643 return length;
644}
645
646/*-------------------------------------------------------------------------
647 |
648 | smc_destructor( struct net_device * dev )
649 | Input parameters:
650 | dev, pointer to the device structure
651 |
652 | Output:
653 | None.
654 |
655 ---------------------------------------------------------------------------
656*/
657void smc_destructor()
658{
659 PRINTK2(CARDNAME ":smc_destructor\n");
660}
661
662
663/*
664 * Open and Initialize the board
665 *
666 * Set up everything, reset the card, etc ..
667 *
668 */
wdenkb56ddc62003-09-15 21:14:37 +0000669static int smc_open (bd_t * bd)
wdenkfe8c2802002-11-03 00:38:21 +0000670{
wdenkb56ddc62003-09-15 21:14:37 +0000671 int i, err;
wdenkfe8c2802002-11-03 00:38:21 +0000672
wdenkb56ddc62003-09-15 21:14:37 +0000673 PRINTK2 ("%s:smc_open\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +0000674
675 /* reset the hardware */
wdenkb56ddc62003-09-15 21:14:37 +0000676 smc_reset ();
677 smc_enable ();
wdenkfe8c2802002-11-03 00:38:21 +0000678
679 /* Configure the PHY */
680#ifndef CONFIG_SMC91111_EXT_PHY
wdenkb56ddc62003-09-15 21:14:37 +0000681 smc_phy_configure ();
wdenkfe8c2802002-11-03 00:38:21 +0000682#endif
683
wdenkfe8c2802002-11-03 00:38:21 +0000684 /* conservative setting (10Mbps, HalfDuplex, no AutoNeg.) */
685/* SMC_SELECT_BANK(0); */
686/* SMC_outw(0, RPC_REG); */
wdenkb56ddc62003-09-15 21:14:37 +0000687 SMC_SELECT_BANK (1);
wdenk8bde7f72003-06-27 21:31:46 +0000688
wdenkb56ddc62003-09-15 21:14:37 +0000689 err = smc_get_ethaddr (bd); /* set smc_mac_addr, and sync it with u-boot globals */
690 if (err < 0) {
691 memset (bd->bi_enetaddr, 0, 6); /* hack to make error stick! upper code will abort if not set */
692 return (-1); /* upper code ignores this, but NOT bi_enetaddr */
693 }
wdenkfe8c2802002-11-03 00:38:21 +0000694#ifdef USE_32_BIT
wdenkb56ddc62003-09-15 21:14:37 +0000695 for (i = 0; i < 6; i += 2) {
wdenkfe8c2802002-11-03 00:38:21 +0000696 word address;
697
wdenkb56ddc62003-09-15 21:14:37 +0000698 address = smc_mac_addr[i + 1] << 8;
699 address |= smc_mac_addr[i];
700 SMC_outw (address, ADDR0_REG + i);
wdenkfe8c2802002-11-03 00:38:21 +0000701 }
702#else
wdenkb56ddc62003-09-15 21:14:37 +0000703 for (i = 0; i < 6; i++)
704 SMC_outb (smc_mac_addr[i], ADDR0_REG + i);
wdenkfe8c2802002-11-03 00:38:21 +0000705#endif
706
707 return 0;
708}
709
wdenkfe8c2802002-11-03 00:38:21 +0000710/*-------------------------------------------------------------
711 .
712 . smc_rcv - receive a packet from the card
713 .
714 . There is ( at least ) a packet waiting to be read from
715 . chip-memory.
716 .
717 . o Read the status
718 . o If an error, record it
719 . o otherwise, read in the packet
720 --------------------------------------------------------------
721*/
722static int smc_rcv()
723{
724 int packet_number;
725 word status;
726 word packet_length;
727 int is_error = 0;
728#ifdef USE_32_BIT
729 dword stat_len;
730#endif
731
732
733 SMC_SELECT_BANK(2);
734 packet_number = SMC_inw( RXFIFO_REG );
735
736 if ( packet_number & RXFIFO_REMPTY ) {
737
738 return 0;
739 }
740
741 PRINTK3("%s:smc_rcv\n", SMC_DEV_NAME);
742 /* start reading from the start of the packet */
743 SMC_outw( PTR_READ | PTR_RCV | PTR_AUTOINC, PTR_REG );
744
745 /* First two words are status and packet_length */
746#ifdef USE_32_BIT
747 stat_len = SMC_inl(SMC91111_DATA_REG);
748 status = stat_len & 0xffff;
749 packet_length = stat_len >> 16;
750#else
751 status = SMC_inw( SMC91111_DATA_REG );
752 packet_length = SMC_inw( SMC91111_DATA_REG );
753#endif
754
755 packet_length &= 0x07ff; /* mask off top bits */
756
757 PRINTK2("RCV: STATUS %4x LENGTH %4x\n", status, packet_length );
758
759 if ( !(status & RS_ERRORS ) ){
760 /* Adjust for having already read the first two words */
761 packet_length -= 4; /*4; */
762
763
wdenkfe8c2802002-11-03 00:38:21 +0000764 /* set odd length for bug in LAN91C111, */
765 /* which never sets RS_ODDFRAME */
766 /* TODO ? */
767
768
769#ifdef USE_32_BIT
770 PRINTK3(" Reading %d dwords (and %d bytes) \n",
771 packet_length >> 2, packet_length & 3 );
772 /* QUESTION: Like in the TX routine, do I want
773 to send the DWORDs or the bytes first, or some
774 mixture. A mixture might improve already slow PIO
775 performance */
776 SMC_insl( SMC91111_DATA_REG , NetRxPackets[0], packet_length >> 2 );
777 /* read the left over bytes */
778 if (packet_length & 3) {
779 int i;
780
wdenk699b13a2002-11-03 18:03:52 +0000781 byte *tail = (byte *)(NetRxPackets[0] + (packet_length & ~3));
wdenkfe8c2802002-11-03 00:38:21 +0000782 dword leftover = SMC_inl(SMC91111_DATA_REG);
783 for (i=0; i<(packet_length & 3); i++)
784 *tail++ = (byte) (leftover >> (8*i)) & 0xff;
785 }
786#else
787 PRINTK3(" Reading %d words and %d byte(s) \n",
788 (packet_length >> 1 ), packet_length & 1 );
789 SMC_insw(SMC91111_DATA_REG , NetRxPackets[0], packet_length >> 1);
790
791#endif /* USE_32_BIT */
792
793#if SMC_DEBUG > 2
794 printf("Receiving Packet\n");
795 print_packet( NetRxPackets[0], packet_length );
796#endif
797 } else {
798 /* error ... */
799 /* TODO ? */
800 is_error = 1;
801 }
802
803 while ( SMC_inw( MMU_CMD_REG ) & MC_BUSY )
804 udelay(1); /* Wait until not busy */
805
806 /* error or good, tell the card to get rid of this packet */
807 SMC_outw( MC_RELEASE, MMU_CMD_REG );
808
809 while ( SMC_inw( MMU_CMD_REG ) & MC_BUSY )
810 udelay(1); /* Wait until not busy */
811
812 if (!is_error) {
813 /* Pass the packet up to the protocol layers. */
814 NetReceive(NetRxPackets[0], packet_length);
815 return packet_length;
816 } else {
817 return 0;
818 }
819
820}
821
822
wdenkfe8c2802002-11-03 00:38:21 +0000823/*----------------------------------------------------
824 . smc_close
825 .
826 . this makes the board clean up everything that it can
827 . and not talk to the outside world. Caused by
828 . an 'ifconfig ethX down'
829 .
830 -----------------------------------------------------*/
831static int smc_close()
832{
833 PRINTK2("%s:smc_close\n", SMC_DEV_NAME);
834
835 /* clear everything */
836 smc_shutdown();
837
838 return 0;
839}
840
841
842#if 0
843/*------------------------------------------------------------
844 . Modify a bit in the LAN91C111 register set
845 .-------------------------------------------------------------*/
846static word smc_modify_regbit(int bank, int ioaddr, int reg,
847 unsigned int bit, int val)
848{
849 word regval;
850
851 SMC_SELECT_BANK( bank );
852
853 regval = SMC_inw( reg );
854 if (val)
855 regval |= bit;
856 else
857 regval &= ~bit;
858
859 SMC_outw( regval, 0 );
860 return(regval);
861}
862
863
864/*------------------------------------------------------------
865 . Retrieve a bit in the LAN91C111 register set
866 .-------------------------------------------------------------*/
867static int smc_get_regbit(int bank, int ioaddr, int reg, unsigned int bit)
868{
869 SMC_SELECT_BANK( bank );
870 if ( SMC_inw( reg ) & bit)
871 return(1);
872 else
873 return(0);
874}
875
876
877/*------------------------------------------------------------
878 . Modify a LAN91C111 register (word access only)
879 .-------------------------------------------------------------*/
880static void smc_modify_reg(int bank, int ioaddr, int reg, word val)
881{
882 SMC_SELECT_BANK( bank );
883 SMC_outw( val, reg );
884}
885
886
887/*------------------------------------------------------------
888 . Retrieve a LAN91C111 register (word access only)
889 .-------------------------------------------------------------*/
890static int smc_get_reg(int bank, int ioaddr, int reg)
891{
892 SMC_SELECT_BANK( bank );
893 return(SMC_inw( reg ));
894}
895
896#endif /* 0 */
897
898/*---PHY CONTROL AND CONFIGURATION----------------------------------------- */
899
900#if (SMC_DEBUG > 2 )
901
902/*------------------------------------------------------------
903 . Debugging function for viewing MII Management serial bitstream
904 .-------------------------------------------------------------*/
wdenkb56ddc62003-09-15 21:14:37 +0000905static void smc_dump_mii_stream (byte * bits, int size)
wdenkfe8c2802002-11-03 00:38:21 +0000906{
907 int i;
908
wdenkb56ddc62003-09-15 21:14:37 +0000909 printf ("BIT#:");
910 for (i = 0; i < size; ++i) {
911 printf ("%d", i % 10);
912 }
wdenkfe8c2802002-11-03 00:38:21 +0000913
wdenkb56ddc62003-09-15 21:14:37 +0000914 printf ("\nMDOE:");
915 for (i = 0; i < size; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +0000916 if (bits[i] & MII_MDOE)
wdenkb56ddc62003-09-15 21:14:37 +0000917 printf ("1");
wdenkfe8c2802002-11-03 00:38:21 +0000918 else
wdenkb56ddc62003-09-15 21:14:37 +0000919 printf ("0");
920 }
wdenkfe8c2802002-11-03 00:38:21 +0000921
wdenkb56ddc62003-09-15 21:14:37 +0000922 printf ("\nMDO :");
923 for (i = 0; i < size; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +0000924 if (bits[i] & MII_MDO)
wdenkb56ddc62003-09-15 21:14:37 +0000925 printf ("1");
wdenkfe8c2802002-11-03 00:38:21 +0000926 else
wdenkb56ddc62003-09-15 21:14:37 +0000927 printf ("0");
928 }
wdenkfe8c2802002-11-03 00:38:21 +0000929
wdenkb56ddc62003-09-15 21:14:37 +0000930 printf ("\nMDI :");
931 for (i = 0; i < size; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +0000932 if (bits[i] & MII_MDI)
wdenkb56ddc62003-09-15 21:14:37 +0000933 printf ("1");
wdenkfe8c2802002-11-03 00:38:21 +0000934 else
wdenkb56ddc62003-09-15 21:14:37 +0000935 printf ("0");
936 }
wdenkfe8c2802002-11-03 00:38:21 +0000937
wdenkb56ddc62003-09-15 21:14:37 +0000938 printf ("\n");
wdenkfe8c2802002-11-03 00:38:21 +0000939}
940#endif
941
942/*------------------------------------------------------------
943 . Reads a register from the MII Management serial interface
944 .-------------------------------------------------------------*/
945#ifndef CONFIG_SMC91111_EXT_PHY
wdenkb56ddc62003-09-15 21:14:37 +0000946static word smc_read_phy_register (byte phyreg)
wdenkfe8c2802002-11-03 00:38:21 +0000947{
948 int oldBank;
949 int i;
950 byte mask;
951 word mii_reg;
952 byte bits[64];
953 int clk_idx = 0;
954 int input_idx;
955 word phydata;
956 byte phyaddr = SMC_PHY_ADDR;
957
958 /* 32 consecutive ones on MDO to establish sync */
959 for (i = 0; i < 32; ++i)
960 bits[clk_idx++] = MII_MDOE | MII_MDO;
961
962 /* Start code <01> */
963 bits[clk_idx++] = MII_MDOE;
964 bits[clk_idx++] = MII_MDOE | MII_MDO;
965
966 /* Read command <10> */
967 bits[clk_idx++] = MII_MDOE | MII_MDO;
968 bits[clk_idx++] = MII_MDOE;
969
970 /* Output the PHY address, msb first */
wdenkb56ddc62003-09-15 21:14:37 +0000971 mask = (byte) 0x10;
972 for (i = 0; i < 5; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +0000973 if (phyaddr & mask)
974 bits[clk_idx++] = MII_MDOE | MII_MDO;
975 else
976 bits[clk_idx++] = MII_MDOE;
977
978 /* Shift to next lowest bit */
979 mask >>= 1;
wdenkb56ddc62003-09-15 21:14:37 +0000980 }
wdenkfe8c2802002-11-03 00:38:21 +0000981
982 /* Output the phy register number, msb first */
wdenkb56ddc62003-09-15 21:14:37 +0000983 mask = (byte) 0x10;
984 for (i = 0; i < 5; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +0000985 if (phyreg & mask)
986 bits[clk_idx++] = MII_MDOE | MII_MDO;
987 else
988 bits[clk_idx++] = MII_MDOE;
989
990 /* Shift to next lowest bit */
991 mask >>= 1;
wdenkb56ddc62003-09-15 21:14:37 +0000992 }
wdenkfe8c2802002-11-03 00:38:21 +0000993
994 /* Tristate and turnaround (2 bit times) */
995 bits[clk_idx++] = 0;
996 /*bits[clk_idx++] = 0; */
997
998 /* Input starts at this bit time */
999 input_idx = clk_idx;
1000
1001 /* Will input 16 bits */
1002 for (i = 0; i < 16; ++i)
1003 bits[clk_idx++] = 0;
1004
1005 /* Final clock bit */
1006 bits[clk_idx++] = 0;
1007
1008 /* Save the current bank */
wdenkb56ddc62003-09-15 21:14:37 +00001009 oldBank = SMC_inw (BANK_SELECT);
wdenkfe8c2802002-11-03 00:38:21 +00001010
1011 /* Select bank 3 */
wdenkb56ddc62003-09-15 21:14:37 +00001012 SMC_SELECT_BANK (3);
wdenkfe8c2802002-11-03 00:38:21 +00001013
1014 /* Get the current MII register value */
wdenkb56ddc62003-09-15 21:14:37 +00001015 mii_reg = SMC_inw (MII_REG);
wdenkfe8c2802002-11-03 00:38:21 +00001016
1017 /* Turn off all MII Interface bits */
wdenkb56ddc62003-09-15 21:14:37 +00001018 mii_reg &= ~(MII_MDOE | MII_MCLK | MII_MDI | MII_MDO);
wdenkfe8c2802002-11-03 00:38:21 +00001019
1020 /* Clock all 64 cycles */
wdenkb56ddc62003-09-15 21:14:37 +00001021 for (i = 0; i < sizeof bits; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +00001022 /* Clock Low - output data */
wdenkb56ddc62003-09-15 21:14:37 +00001023 SMC_outw (mii_reg | bits[i], MII_REG);
1024 udelay (SMC_PHY_CLOCK_DELAY);
wdenkfe8c2802002-11-03 00:38:21 +00001025
1026
1027 /* Clock Hi - input data */
wdenkb56ddc62003-09-15 21:14:37 +00001028 SMC_outw (mii_reg | bits[i] | MII_MCLK, MII_REG);
1029 udelay (SMC_PHY_CLOCK_DELAY);
1030 bits[i] |= SMC_inw (MII_REG) & MII_MDI;
1031 }
wdenkfe8c2802002-11-03 00:38:21 +00001032
1033 /* Return to idle state */
1034 /* Set clock to low, data to low, and output tristated */
wdenkb56ddc62003-09-15 21:14:37 +00001035 SMC_outw (mii_reg, MII_REG);
1036 udelay (SMC_PHY_CLOCK_DELAY);
wdenkfe8c2802002-11-03 00:38:21 +00001037
1038 /* Restore original bank select */
wdenkb56ddc62003-09-15 21:14:37 +00001039 SMC_SELECT_BANK (oldBank);
wdenkfe8c2802002-11-03 00:38:21 +00001040
1041 /* Recover input data */
1042 phydata = 0;
wdenkb56ddc62003-09-15 21:14:37 +00001043 for (i = 0; i < 16; ++i) {
wdenkfe8c2802002-11-03 00:38:21 +00001044 phydata <<= 1;
1045
1046 if (bits[input_idx++] & MII_MDI)
1047 phydata |= 0x0001;
wdenkb56ddc62003-09-15 21:14:37 +00001048 }
wdenkfe8c2802002-11-03 00:38:21 +00001049
1050#if (SMC_DEBUG > 2 )
wdenkb56ddc62003-09-15 21:14:37 +00001051 printf ("smc_read_phy_register(): phyaddr=%x,phyreg=%x,phydata=%x\n",
wdenkfe8c2802002-11-03 00:38:21 +00001052 phyaddr, phyreg, phydata);
wdenkb56ddc62003-09-15 21:14:37 +00001053 smc_dump_mii_stream (bits, sizeof bits);
wdenkfe8c2802002-11-03 00:38:21 +00001054#endif
1055
wdenkb56ddc62003-09-15 21:14:37 +00001056 return (phydata);
wdenkfe8c2802002-11-03 00:38:21 +00001057}
1058
1059
1060/*------------------------------------------------------------
1061 . Writes a register to the MII Management serial interface
1062 .-------------------------------------------------------------*/
wdenkb56ddc62003-09-15 21:14:37 +00001063static void smc_write_phy_register (byte phyreg, 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 */
wdenkb56ddc62003-09-15 21:14:37 +00001129 oldBank = SMC_inw (BANK_SELECT);
wdenkfe8c2802002-11-03 00:38:21 +00001130
1131 /* Select bank 3 */
wdenkb56ddc62003-09-15 21:14:37 +00001132 SMC_SELECT_BANK (3);
wdenkfe8c2802002-11-03 00:38:21 +00001133
1134 /* Get the current MII register value */
wdenkb56ddc62003-09-15 21:14:37 +00001135 mii_reg = SMC_inw (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 */
wdenkb56ddc62003-09-15 21:14:37 +00001143 SMC_outw (mii_reg | bits[i], MII_REG);
1144 udelay (SMC_PHY_CLOCK_DELAY);
wdenkfe8c2802002-11-03 00:38:21 +00001145
1146
1147 /* Clock Hi - input data */
wdenkb56ddc62003-09-15 21:14:37 +00001148 SMC_outw (mii_reg | bits[i] | MII_MCLK, MII_REG);
1149 udelay (SMC_PHY_CLOCK_DELAY);
1150 bits[i] |= SMC_inw (MII_REG) & MII_MDI;
1151 }
wdenkfe8c2802002-11-03 00:38:21 +00001152
1153 /* Return to idle state */
1154 /* Set clock to low, data to low, and output tristated */
wdenkb56ddc62003-09-15 21:14:37 +00001155 SMC_outw (mii_reg, MII_REG);
1156 udelay (SMC_PHY_CLOCK_DELAY);
wdenkfe8c2802002-11-03 00:38:21 +00001157
1158 /* Restore original bank select */
wdenkb56ddc62003-09-15 21:14:37 +00001159 SMC_SELECT_BANK (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/*------------------------------------------------------------
1171 . Waits the specified number of milliseconds - kernel friendly
1172 .-------------------------------------------------------------*/
1173#ifndef CONFIG_SMC91111_EXT_PHY
1174static void smc_wait_ms(unsigned int ms)
1175{
1176 udelay(ms*1000);
1177}
1178#endif /* !CONFIG_SMC91111_EXT_PHY */
1179
1180
wdenkfe8c2802002-11-03 00:38:21 +00001181/*------------------------------------------------------------
1182 . Configures the specified PHY using Autonegotiation. Calls
1183 . smc_phy_fixed() if the user has requested a certain config.
1184 .-------------------------------------------------------------*/
1185#ifndef CONFIG_SMC91111_EXT_PHY
wdenkb56ddc62003-09-15 21:14:37 +00001186static void smc_phy_configure ()
wdenkfe8c2802002-11-03 00:38:21 +00001187{
1188 int timeout;
1189 byte phyaddr;
wdenkb56ddc62003-09-15 21:14:37 +00001190 word my_phy_caps; /* My PHY capabilities */
1191 word my_ad_caps; /* My Advertised capabilities */
1192 word status = 0; /*;my status = 0 */
wdenkfe8c2802002-11-03 00:38:21 +00001193 int failed = 0;
1194
wdenkb56ddc62003-09-15 21:14:37 +00001195 PRINTK3 ("%s:smc_program_phy()\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +00001196
1197
wdenkfe8c2802002-11-03 00:38:21 +00001198 /* Get the detected phy address */
1199 phyaddr = SMC_PHY_ADDR;
1200
1201 /* Reset the PHY, setting all other bits to zero */
wdenkb56ddc62003-09-15 21:14:37 +00001202 smc_write_phy_register (PHY_CNTL_REG, PHY_CNTL_RST);
wdenkfe8c2802002-11-03 00:38:21 +00001203
1204 /* Wait for the reset to complete, or time out */
wdenkb56ddc62003-09-15 21:14:37 +00001205 timeout = 6; /* Wait up to 3 seconds */
1206 while (timeout--) {
1207 if (!(smc_read_phy_register (PHY_CNTL_REG)
1208 & PHY_CNTL_RST)) {
wdenkfe8c2802002-11-03 00:38:21 +00001209 /* reset complete */
1210 break;
wdenkfe8c2802002-11-03 00:38:21 +00001211 }
1212
wdenkb56ddc62003-09-15 21:14:37 +00001213 smc_wait_ms (500); /* wait 500 millisecs */
1214 }
1215
1216 if (timeout < 1) {
1217 printf ("%s:PHY reset timed out\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +00001218 goto smc_phy_configure_exit;
wdenkb56ddc62003-09-15 21:14:37 +00001219 }
wdenkfe8c2802002-11-03 00:38:21 +00001220
1221 /* Read PHY Register 18, Status Output */
1222 /* lp->lastPhy18 = smc_read_phy_register(PHY_INT_REG); */
1223
1224 /* Enable PHY Interrupts (for register 18) */
1225 /* Interrupts listed here are disabled */
wdenkb56ddc62003-09-15 21:14:37 +00001226 smc_write_phy_register (PHY_INT_REG, 0xffff);
wdenkfe8c2802002-11-03 00:38:21 +00001227
1228 /* Configure the Receive/Phy Control register */
wdenkb56ddc62003-09-15 21:14:37 +00001229 SMC_SELECT_BANK (0);
1230 SMC_outw (RPC_DEFAULT, RPC_REG);
wdenkfe8c2802002-11-03 00:38:21 +00001231
1232 /* Copy our capabilities from PHY_STAT_REG to PHY_AD_REG */
wdenkb56ddc62003-09-15 21:14:37 +00001233 my_phy_caps = smc_read_phy_register (PHY_STAT_REG);
1234 my_ad_caps = PHY_AD_CSMA; /* I am CSMA capable */
wdenkfe8c2802002-11-03 00:38:21 +00001235
1236 if (my_phy_caps & PHY_STAT_CAP_T4)
1237 my_ad_caps |= PHY_AD_T4;
1238
1239 if (my_phy_caps & PHY_STAT_CAP_TXF)
1240 my_ad_caps |= PHY_AD_TX_FDX;
1241
1242 if (my_phy_caps & PHY_STAT_CAP_TXH)
1243 my_ad_caps |= PHY_AD_TX_HDX;
1244
1245 if (my_phy_caps & PHY_STAT_CAP_TF)
1246 my_ad_caps |= PHY_AD_10_FDX;
1247
1248 if (my_phy_caps & PHY_STAT_CAP_TH)
1249 my_ad_caps |= PHY_AD_10_HDX;
1250
1251 /* Update our Auto-Neg Advertisement Register */
wdenkb56ddc62003-09-15 21:14:37 +00001252 smc_write_phy_register (PHY_AD_REG, my_ad_caps);
wdenkfe8c2802002-11-03 00:38:21 +00001253
wdenkb56ddc62003-09-15 21:14:37 +00001254 PRINTK2 ("%s:phy caps=%x\n", SMC_DEV_NAME, my_phy_caps);
1255 PRINTK2 ("%s:phy advertised caps=%x\n", SMC_DEV_NAME, my_ad_caps);
wdenkfe8c2802002-11-03 00:38:21 +00001256
1257 /* Restart auto-negotiation process in order to advertise my caps */
wdenkb56ddc62003-09-15 21:14:37 +00001258 smc_write_phy_register (PHY_CNTL_REG,
1259 PHY_CNTL_ANEG_EN | PHY_CNTL_ANEG_RST);
wdenkfe8c2802002-11-03 00:38:21 +00001260
1261 /* Wait for the auto-negotiation to complete. This may take from */
1262 /* 2 to 3 seconds. */
1263 /* Wait for the reset to complete, or time out */
wdenkb56ddc62003-09-15 21:14:37 +00001264 timeout = 20; /* Wait up to 10 seconds */
1265 while (timeout--) {
1266 status = smc_read_phy_register (PHY_STAT_REG);
1267 if (status & PHY_STAT_ANEG_ACK) {
wdenkfe8c2802002-11-03 00:38:21 +00001268 /* auto-negotiate complete */
1269 break;
wdenkb56ddc62003-09-15 21:14:37 +00001270 }
wdenkfe8c2802002-11-03 00:38:21 +00001271
wdenkb56ddc62003-09-15 21:14:37 +00001272 smc_wait_ms (500); /* wait 500 millisecs */
wdenkfe8c2802002-11-03 00:38:21 +00001273
1274 /* Restart auto-negotiation if remote fault */
wdenkb56ddc62003-09-15 21:14:37 +00001275 if (status & PHY_STAT_REM_FLT) {
1276 printf ("%s:PHY remote fault detected\n",
1277 SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +00001278
1279 /* Restart auto-negotiation */
wdenkb56ddc62003-09-15 21:14:37 +00001280 printf ("%s:PHY restarting auto-negotiation\n",
wdenkfe8c2802002-11-03 00:38:21 +00001281 SMC_DEV_NAME);
wdenkb56ddc62003-09-15 21:14:37 +00001282 smc_write_phy_register (PHY_CNTL_REG,
1283 PHY_CNTL_ANEG_EN |
1284 PHY_CNTL_ANEG_RST |
1285 PHY_CNTL_SPEED |
1286 PHY_CNTL_DPLX);
wdenkfe8c2802002-11-03 00:38:21 +00001287 }
wdenkb56ddc62003-09-15 21:14:37 +00001288 }
wdenkfe8c2802002-11-03 00:38:21 +00001289
wdenkb56ddc62003-09-15 21:14:37 +00001290 if (timeout < 1) {
1291 printf ("%s:PHY auto-negotiate timed out\n", SMC_DEV_NAME);
1292 printf ("%s:PHY auto-negotiate timed out\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +00001293 failed = 1;
wdenkb56ddc62003-09-15 21:14:37 +00001294 }
wdenkfe8c2802002-11-03 00:38:21 +00001295
1296 /* Fail if we detected an auto-negotiate remote fault */
wdenkb56ddc62003-09-15 21:14:37 +00001297 if (status & PHY_STAT_REM_FLT) {
1298 printf ("%s:PHY remote fault detected\n", SMC_DEV_NAME);
1299 printf ("%s:PHY remote fault detected\n", SMC_DEV_NAME);
wdenkfe8c2802002-11-03 00:38:21 +00001300 failed = 1;
wdenkb56ddc62003-09-15 21:14:37 +00001301 }
wdenkfe8c2802002-11-03 00:38:21 +00001302
1303 /* Re-Configure the Receive/Phy Control register */
wdenkb56ddc62003-09-15 21:14:37 +00001304 SMC_outw (RPC_DEFAULT, RPC_REG);
wdenkfe8c2802002-11-03 00:38:21 +00001305
wdenkb56ddc62003-09-15 21:14:37 +00001306 smc_phy_configure_exit:
wdenkfe8c2802002-11-03 00:38:21 +00001307
1308}
1309#endif /* !CONFIG_SMC91111_EXT_PHY */
1310
1311
1312#if SMC_DEBUG > 2
1313static void print_packet( byte * buf, int length )
1314{
1315#if 0
wdenk8bde7f72003-06-27 21:31:46 +00001316 int i;
1317 int remainder;
1318 int lines;
wdenkfe8c2802002-11-03 00:38:21 +00001319
wdenk8bde7f72003-06-27 21:31:46 +00001320 printf("Packet of length %d \n", length );
wdenkfe8c2802002-11-03 00:38:21 +00001321
1322#if SMC_DEBUG > 3
wdenk8bde7f72003-06-27 21:31:46 +00001323 lines = length / 16;
1324 remainder = length % 16;
wdenkfe8c2802002-11-03 00:38:21 +00001325
wdenk8bde7f72003-06-27 21:31:46 +00001326 for ( i = 0; i < lines ; i ++ ) {
1327 int cur;
wdenkfe8c2802002-11-03 00:38:21 +00001328
wdenk8bde7f72003-06-27 21:31:46 +00001329 for ( cur = 0; cur < 8; cur ++ ) {
1330 byte a, b;
wdenkfe8c2802002-11-03 00:38:21 +00001331
wdenk8bde7f72003-06-27 21:31:46 +00001332 a = *(buf ++ );
1333 b = *(buf ++ );
1334 printf("%02x%02x ", a, b );
1335 }
1336 printf("\n");
1337 }
1338 for ( i = 0; i < remainder/2 ; i++ ) {
1339 byte a, b;
wdenkfe8c2802002-11-03 00:38:21 +00001340
wdenk8bde7f72003-06-27 21:31:46 +00001341 a = *(buf ++ );
1342 b = *(buf ++ );
1343 printf("%02x%02x ", a, b );
1344 }
1345 printf("\n");
wdenkfe8c2802002-11-03 00:38:21 +00001346#endif
1347#endif
1348}
1349#endif
1350
1351int eth_init(bd_t *bd) {
wdenk0b97ab12003-06-19 23:58:30 +00001352 return (smc_open(bd));
wdenkfe8c2802002-11-03 00:38:21 +00001353}
1354
1355void eth_halt() {
1356 smc_close();
1357}
1358
1359int eth_rx() {
1360 return smc_rcv();
1361}
1362
1363int eth_send(volatile void *packet, int length) {
1364 return smc_send_packet(packet, length);
1365}
1366
wdenkb56ddc62003-09-15 21:14:37 +00001367int smc_get_ethaddr (bd_t * bd)
wdenk0b97ab12003-06-19 23:58:30 +00001368{
wdenkb56ddc62003-09-15 21:14:37 +00001369 int env_size, rom_valid, env_present = 0, reg;
1370 char *s = NULL, *e, *v_mac, es[] = "11:22:33:44:55:66";
1371 uchar s_env_mac[64], v_env_mac[6], v_rom_mac[6];
wdenk0b97ab12003-06-19 23:58:30 +00001372
wdenkb56ddc62003-09-15 21:14:37 +00001373 env_size = getenv_r ("ethaddr", s_env_mac, sizeof (s_env_mac));
1374 if ((env_size > 0) && (env_size < sizeof (es))) { /* exit if env is bad */
1375 printf ("\n*** ERROR: ethaddr is not set properly!!\n");
1376 return (-1);
wdenk8bde7f72003-06-27 21:31:46 +00001377 }
wdenk8bde7f72003-06-27 21:31:46 +00001378
wdenkb56ddc62003-09-15 21:14:37 +00001379 if (env_size > 0) {
1380 env_present = 1;
1381 s = s_env_mac;
wdenk8bde7f72003-06-27 21:31:46 +00001382 }
wdenkb56ddc62003-09-15 21:14:37 +00001383
1384 for (reg = 0; reg < 6; ++reg) { /* turn string into mac value */
1385 v_env_mac[reg] = s ? simple_strtoul (s, &e, 16) : 0;
1386 if (s)
1387 s = (*e) ? e + 1 : e;
1388 }
1389
1390 rom_valid = get_rom_mac (v_rom_mac); /* get ROM mac value if any */
1391
1392 if (!env_present) { /* if NO env */
1393 if (rom_valid) { /* but ROM is valid */
1394 v_mac = v_rom_mac;
1395 sprintf (s_env_mac, "%02X:%02X:%02X:%02X:%02X:%02X",
1396 v_mac[0], v_mac[1], v_mac[2], v_mac[3],
1397 v_mac[4], v_mac[5]);
1398 setenv ("ethaddr", s_env_mac);
1399 } else { /* no env, bad ROM */
1400 printf ("\n*** ERROR: ethaddr is NOT set !!\n");
1401 return (-1);
1402 }
1403 } else { /* good env, don't care ROM */
1404 v_mac = v_env_mac; /* always use a good env over a ROM */
1405 }
1406
1407 if (env_present && rom_valid) { /* if both env and ROM are good */
1408 if (memcmp (v_env_mac, v_rom_mac, 6) != 0) {
wdenkb56ddc62003-09-15 21:14:37 +00001409 printf ("\nWarning: MAC addresses don't match:\n");
1410 printf ("\tHW MAC address: "
1411 "%02X:%02X:%02X:%02X:%02X:%02X\n",
1412 v_rom_mac[0], v_rom_mac[1],
1413 v_rom_mac[2], v_rom_mac[3],
1414 v_rom_mac[4], v_rom_mac[5] );
1415 printf ("\t\"ethaddr\" value: "
1416 "%02X:%02X:%02X:%02X:%02X:%02X\n",
1417 v_env_mac[0], v_env_mac[1],
1418 v_env_mac[2], v_env_mac[3],
1419 v_env_mac[4], v_env_mac[5]) ;
1420 debug ("### Set MAC addr from environment\n");
wdenkb56ddc62003-09-15 21:14:37 +00001421 }
1422 }
1423 memcpy (bd->bi_enetaddr, v_mac, 6); /* update global address to match env (allows env changing) */
1424 smc_set_mac_addr (v_mac); /* use old function to update smc default */
1425 return (0);
wdenk0b97ab12003-06-19 23:58:30 +00001426}
1427
wdenkb56ddc62003-09-15 21:14:37 +00001428int get_rom_mac (char *v_rom_mac)
wdenk0b97ab12003-06-19 23:58:30 +00001429{
wdenkb56ddc62003-09-15 21:14:37 +00001430 int is_rom_present = 0;
wdenk0b97ab12003-06-19 23:58:30 +00001431
wdenkb56ddc62003-09-15 21:14:37 +00001432#ifdef HARDCODE_MAC /* used for testing or to supress run time warnings */
1433 char hw_mac_addr[] = { 0x02, 0x80, 0xad, 0x20, 0x31, 0xb8 };
1434
1435 memcpy (v_rom_mac, hw_mac_addr, 6);
1436 return (1);
wdenk0b97ab12003-06-19 23:58:30 +00001437#else
wdenkb56ddc62003-09-15 21:14:37 +00001438 if (is_rom_present) {
1439 /* if eeprom contents are valid
1440 * extract mac address into hw_mac_addr, 8 or 16 bit accesses
1441 * memcpy (v_rom_mac, hc_mac_addr, 6);
1442 * return(1);
1443 */
1444 }
1445 memset (v_rom_mac, 0, 6);
1446 return (0);
wdenk0b97ab12003-06-19 23:58:30 +00001447#endif
1448}
wdenkfe8c2802002-11-03 00:38:21 +00001449#endif /* CONFIG_DRIVER_SMC91111 */