]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/smc91111.c
Files include/linux/byteorder/{big,little}_endian.h define
[people/ms/u-boot.git] / drivers / smc91111.c
CommitLineData
fe8c2806
WD
1/*------------------------------------------------------------------------
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)
42dfe7a1 10 . Developed by Simple Network Magic Corporation (SNMC)
fe8c2806
WD
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
42dfe7a1 20 . MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
fe8c2806
WD
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
42dfe7a1 25 . Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
fe8c2806
WD
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:
42dfe7a1 39 . io = for the base address
fe8c2806
WD
40 . irq = for the IRQ
41 .
42 . author:
42dfe7a1
WD
43 . Erik Stahlman ( erik@vt.edu )
44 . Daris A Nevil ( dnevil@snmc.com )
fe8c2806
WD
45 .
46 .
47 . Hardware multicast code from Peter Cammaert ( pc@denkart.be )
48 .
49 . Sources:
42dfe7a1
WD
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 )
fe8c2806
WD
53 .
54 . History:
42dfe7a1 55 . 06/19/03 Richard Woodruff Made u-boot environment aware and added mac addr checks.
fe8c2806 56 . 10/17/01 Marco Hasewinkel Modify for DNP/1110
42dfe7a1
WD
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
fe8c2806
WD
60 ----------------------------------------------------------------------------*/
61
62#include <common.h>
63#include <command.h>
f39748ae 64#include <config.h>
fe8c2806
WD
65#include "smc91111.h"
66#include <net.h>
67
68#ifdef CONFIG_DRIVER_SMC91111
69
70/* Use power-down feature of the chip */
71#define POWER_DOWN 0
72
73#define NO_AUTOPROBE
74
0be248fa 75#define SMC_DEBUG 0
8bf3b005
WD
76
77#if SMC_DEBUG > 1
fe8c2806
WD
78static const char version[] =
79 "smc91111.c:v1.0 04/25/01 by Daris A Nevil (dnevil@snmc.com)\n";
8bf3b005 80#endif
fe8c2806 81
f39748ae
WD
82/* Autonegotiation timeout in seconds */
83#ifndef CONFIG_SMC_AUTONEG_TIMEOUT
84#define CONFIG_SMC_AUTONEG_TIMEOUT 10
85#endif
86
fe8c2806
WD
87/*------------------------------------------------------------------------
88 .
89 . Configuration options, for the experienced user to change.
90 .
91 -------------------------------------------------------------------------*/
92
93/*
94 . Wait time for memory to be free. This probably shouldn't be
95 . tuned that much, as waiting for this means nothing else happens
96 . in the system
97*/
98#define MEMORY_WAIT_TIME 16
99
100
101#if (SMC_DEBUG > 2 )
102#define PRINTK3(args...) printf(args)
103#else
104#define PRINTK3(args...)
105#endif
106
107#if SMC_DEBUG > 1
108#define PRINTK2(args...) printf(args)
109#else
110#define PRINTK2(args...)
111#endif
112
113#ifdef SMC_DEBUG
114#define PRINTK(args...) printf(args)
115#else
116#define PRINTK(args...)
117#endif
118
119
120/*------------------------------------------------------------------------
121 .
42dfe7a1 122 . The internal workings of the driver. If you are changing anything
fe8c2806
WD
123 . here with the SMC stuff, you should have the datasheet and know
124 . what you are doing.
125 .
126 -------------------------------------------------------------------------*/
127#define CARDNAME "LAN91C111"
128
129/* Memory sizing constant */
130#define LAN91C111_MEMORY_MULTIPLIER (1024*2)
131
132#ifndef CONFIG_SMC91111_BASE
133#define CONFIG_SMC91111_BASE 0x20000300
134#endif
135
136#define SMC_BASE_ADDRESS CONFIG_SMC91111_BASE
137
138#define SMC_DEV_NAME "SMC91111"
139#define SMC_PHY_ADDR 0x0000
140#define SMC_ALLOC_MAX_TRY 5
141#define SMC_TX_TIMEOUT 30
142
143#define SMC_PHY_CLOCK_DELAY 1000
144
145#define ETH_ZLEN 60
146
42dfe7a1 147#ifdef CONFIG_SMC_USE_32_BIT
fe8c2806
WD
148#define USE_32_BIT 1
149#else
150#undef USE_32_BIT
151#endif
152/*-----------------------------------------------------------------
153 .
154 . The driver can be entered at any of the following entry points.
155 .
156 .------------------------------------------------------------------ */
157
158extern int eth_init(bd_t *bd);
159extern void eth_halt(void);
160extern int eth_rx(void);
161extern int eth_send(volatile void *packet, int length);
162
0afe519a
WD
163#ifdef SHARED_RESOURCES
164 extern void swap_to(int device_id);
165#endif
fe8c2806 166
fe8c2806
WD
167/*
168 . This is called by register_netdev(). It is responsible for
169 . checking the portlist for the SMC9000 series chipset. If it finds
170 . one, then it will initialize the device, find the hardware information,
171 . and sets up the appropriate device parameters.
172 . NOTE: Interrupts are *OFF* when this procedure is called.
173 .
174 . NB:This shouldn't be static since it is referred to externally.
175*/
176int smc_init(void);
177
178/*
179 . This is called by unregister_netdev(). It is responsible for
180 . cleaning up before the driver is finally unregistered and discarded.
181*/
182void smc_destructor(void);
183
184/*
185 . The kernel calls this function when someone wants to use the device,
186 . typically 'ifconfig ethX up'.
187*/
0b97ab14 188static int smc_open(bd_t *bd);
fe8c2806
WD
189
190
191/*
192 . This is called by the kernel in response to 'ifconfig ethX down'. It
193 . is responsible for cleaning up everything that the open routine
194 . does, and maybe putting the card into a powerdown state.
195*/
196static int smc_close(void);
197
198/*
199 . Configures the PHY through the MII Management interface
200*/
201#ifndef CONFIG_SMC91111_EXT_PHY
202static void smc_phy_configure(void);
203#endif /* !CONFIG_SMC91111_EXT_PHY */
204
205/*
206 . This is a separate procedure to handle the receipt of a packet, to
207 . leave the interrupt code looking slightly cleaner
208*/
209static int smc_rcv(void);
210
0b97ab14 211/* See if a MAC address is defined in the current environment. If so use it. If not
8bde7f77 212 . print a warning and set the environment and other globals with the default.
0b97ab14
WD
213 . If an EEPROM is present it really should be consulted.
214*/
215int smc_get_ethaddr(bd_t *bd);
d52fb7e3 216int get_rom_mac(uchar *v_rom_mac);
fe8c2806
WD
217
218/*
219 ------------------------------------------------------------
220 .
221 . Internal routines
222 .
223 ------------------------------------------------------------
224*/
225
c3c7f861
WD
226#ifdef CONFIG_SMC_USE_IOFUNCS
227/*
228 * input and output functions
229 *
230 * Implemented due to inx,outx macros accessing the device improperly
231 * and putting the device into an unkown state.
232 *
233 * For instance, on Sharp LPD7A400 SDK, affects were chip memory
234 * could not be free'd (hence the alloc failures), duplicate packets,
235 * packets being corrupt (shifted) on the wire, etc. Switching to the
236 * inx,outx functions fixed this problem.
237 */
238static inline word SMC_inw(dword offset);
239static inline void SMC_outw(word value, dword offset);
240static inline byte SMC_inb(dword offset);
241static inline void SMC_outb(byte value, dword offset);
242static inline void SMC_insw(dword offset, volatile uchar* buf, dword len);
243static inline void SMC_outsw(dword offset, uchar* buf, dword len);
244
245#define barrier() __asm__ __volatile__("": : :"memory")
246
247static inline word SMC_inw(dword offset)
248{
249 word v;
250 v = *((volatile word*)(SMC_BASE_ADDRESS+offset));
251 barrier(); *(volatile u32*)(0xc0000000);
252 return v;
253}
254
255static inline void SMC_outw(word value, dword offset)
256{
257 *((volatile word*)(SMC_BASE_ADDRESS+offset)) = value;
258 barrier(); *(volatile u32*)(0xc0000000);
259}
260
261static inline byte SMC_inb(dword offset)
262{
263 word _w;
264
265 _w = SMC_inw(offset & ~((dword)1));
266 return (offset & 1) ? (byte)(_w >> 8) : (byte)(_w);
267}
268
269static inline void SMC_outb(byte value, dword offset)
270{
271 word _w;
272
273 _w = SMC_inw(offset & ~((dword)1));
274 if (offset & 1)
275 *((volatile word*)(SMC_BASE_ADDRESS+(offset & ~((dword)1)))) = (value<<8) | (_w & 0x00ff);
276 else
277 *((volatile word*)(SMC_BASE_ADDRESS+offset)) = value | (_w & 0xff00);
278}
279
280static inline void SMC_insw(dword offset, volatile uchar* buf, dword len)
281{
d52fb7e3
WD
282 volatile word *p = (volatile word *)buf;
283
c3c7f861 284 while (len-- > 0) {
d52fb7e3
WD
285 *p++ = SMC_inw(offset);
286 barrier();
287 *((volatile u32*)(0xc0000000));
c3c7f861
WD
288 }
289}
290
291static inline void SMC_outsw(dword offset, uchar* buf, dword len)
292{
d52fb7e3
WD
293 volatile word *p = (volatile word *)buf;
294
c3c7f861 295 while (len-- > 0) {
d52fb7e3
WD
296 SMC_outw(*p++, offset);
297 barrier();
298 *(volatile u32*)(0xc0000000);
c3c7f861
WD
299 }
300}
301#endif /* CONFIG_SMC_USE_IOFUNCS */
302
8bf3b005 303static char unsigned smc_mac_addr[6] = {0x02, 0x80, 0xad, 0x20, 0x31, 0xb8};
fe8c2806
WD
304
305/*
306 * This function must be called before smc_open() if you want to override
307 * the default mac address.
308 */
309
d52fb7e3 310void smc_set_mac_addr(const unsigned char *addr) {
fe8c2806
WD
311 int i;
312
313 for (i=0; i < sizeof(smc_mac_addr); i++){
314 smc_mac_addr[i] = addr[i];
315 }
316}
317
318/*
319 * smc_get_macaddr is no longer used. If you want to override the default
0b97ab14 320 * mac address, call smc_get_mac_addr as a part of the board initialization.
fe8c2806
WD
321 */
322
323#if 0
324void smc_get_macaddr( byte *addr ) {
325 /* MAC ADDRESS AT FLASHBLOCK 1 / OFFSET 0x10 */
8bde7f77 326 unsigned char *dnp1110_mac = (unsigned char *) (0xE8000000 + 0x20010);
fe8c2806
WD
327 int i;
328
329
8bde7f77
WD
330 for (i=0; i<6; i++) {
331 addr[0] = *(dnp1110_mac+0);
332 addr[1] = *(dnp1110_mac+1);
333 addr[2] = *(dnp1110_mac+2);
334 addr[3] = *(dnp1110_mac+3);
335 addr[4] = *(dnp1110_mac+4);
336 addr[5] = *(dnp1110_mac+5);
337 }
fe8c2806
WD
338}
339#endif /* 0 */
340
341/***********************************************
42dfe7a1 342 * Show available memory *
fe8c2806
WD
343 ***********************************************/
344void dump_memory_info(void)
345{
8bde7f77
WD
346 word mem_info;
347 word old_bank;
fe8c2806 348
8bde7f77 349 old_bank = SMC_inw(BANK_SELECT)&0xF;
fe8c2806 350
8bde7f77
WD
351 SMC_SELECT_BANK(0);
352 mem_info = SMC_inw( MIR_REG );
353 PRINTK2("Memory: %4d available\n", (mem_info >> 8)*2048);
fe8c2806 354
8bde7f77 355 SMC_SELECT_BANK(old_bank);
fe8c2806
WD
356}
357/*
358 . A rather simple routine to print out a packet for debugging purposes.
359*/
360#if SMC_DEBUG > 2
361static void print_packet( byte *, int );
362#endif
363
364#define tx_done(dev) 1
365
366
fe8c2806
WD
367/* this does a soft reset on the device */
368static void smc_reset( void );
369
370/* Enable Interrupts, Receive, and Transmit */
371static void smc_enable( void );
372
373/* this puts the device in an inactive state */
374static void smc_shutdown( void );
375
376/* Routines to Read and Write the PHY Registers across the
377 MII Management Interface
378*/
379
380#ifndef CONFIG_SMC91111_EXT_PHY
381static word smc_read_phy_register(byte phyreg);
382static void smc_write_phy_register(byte phyreg, word phydata);
383#endif /* !CONFIG_SMC91111_EXT_PHY */
384
385
b56ddc63
WD
386static int poll4int (byte mask, int timeout)
387{
388 int tmo = get_timer (0) + timeout * CFG_HZ;
389 int is_timeout = 0;
390 word old_bank = SMC_inw (BSR_REG);
391
392 PRINTK2 ("Polling...\n");
393 SMC_SELECT_BANK (2);
394 while ((SMC_inw (SMC91111_INT_REG) & mask) == 0) {
395 if (get_timer (0) >= tmo) {
396 is_timeout = 1;
397 break;
398 }
fe8c2806 399 }
fe8c2806 400
b56ddc63
WD
401 /* restore old bank selection */
402 SMC_SELECT_BANK (old_bank);
fe8c2806 403
b56ddc63
WD
404 if (is_timeout)
405 return 1;
406 else
407 return 0;
fe8c2806
WD
408}
409
487778b7 410/* Only one release command at a time, please */
b56ddc63 411static inline void smc_wait_mmu_release_complete (void)
487778b7
WD
412{
413 int count = 0;
b56ddc63 414
487778b7 415 /* assume bank 2 selected */
b56ddc63
WD
416 while (SMC_inw (MMU_CMD_REG) & MC_BUSY) {
417 udelay (1); /* Wait until not busy */
418 if (++count > 200)
419 break;
487778b7
WD
420 }
421}
422
fe8c2806
WD
423/*
424 . Function: smc_reset( void )
425 . Purpose:
42dfe7a1
WD
426 . This sets the SMC91111 chip to its normal state, hopefully from whatever
427 . mess that any other DOS driver has put it in.
fe8c2806
WD
428 .
429 . Maybe I should reset more registers to defaults in here? SOFTRST should
430 . do that for me.
431 .
432 . Method:
433 . 1. send a SOFT RESET
434 . 2. wait for it to finish
435 . 3. enable autorelease mode
436 . 4. reset the memory management unit
437 . 5. clear all interrupts
438 .
439*/
b56ddc63 440static void smc_reset (void)
fe8c2806 441{
f39748ae 442 PRINTK2 ("%s: smc_reset\n", SMC_DEV_NAME);
fe8c2806
WD
443
444 /* This resets the registers mostly to defaults, but doesn't
445 affect EEPROM. That seems unnecessary */
b56ddc63
WD
446 SMC_SELECT_BANK (0);
447 SMC_outw (RCR_SOFTRST, RCR_REG);
fe8c2806
WD
448
449 /* Setup the Configuration Register */
450 /* This is necessary because the CONFIG_REG is not affected */
451 /* by a soft reset */
452
b56ddc63 453 SMC_SELECT_BANK (1);
fe8c2806 454#if defined(CONFIG_SMC91111_EXT_PHY)
b56ddc63 455 SMC_outw (CONFIG_DEFAULT | CONFIG_EXT_PHY, CONFIG_REG);
fe8c2806 456#else
b56ddc63 457 SMC_outw (CONFIG_DEFAULT, CONFIG_REG);
fe8c2806
WD
458#endif
459
460
461 /* Release from possible power-down state */
462 /* Configuration register is not affected by Soft Reset */
b56ddc63 463 SMC_outw (SMC_inw (CONFIG_REG) | CONFIG_EPH_POWER_EN, CONFIG_REG);
fe8c2806 464
b56ddc63 465 SMC_SELECT_BANK (0);
fe8c2806
WD
466
467 /* this should pause enough for the chip to be happy */
b56ddc63 468 udelay (10);
fe8c2806
WD
469
470 /* Disable transmit and receive functionality */
b56ddc63
WD
471 SMC_outw (RCR_CLEAR, RCR_REG);
472 SMC_outw (TCR_CLEAR, TCR_REG);
fe8c2806
WD
473
474 /* set the control register */
b56ddc63
WD
475 SMC_SELECT_BANK (1);
476 SMC_outw (CTL_DEFAULT, CTL_REG);
fe8c2806
WD
477
478 /* Reset the MMU */
b56ddc63
WD
479 SMC_SELECT_BANK (2);
480 smc_wait_mmu_release_complete ();
481 SMC_outw (MC_RESET, MMU_CMD_REG);
482 while (SMC_inw (MMU_CMD_REG) & MC_BUSY)
483 udelay (1); /* Wait until not busy */
fe8c2806
WD
484
485 /* Note: It doesn't seem that waiting for the MMU busy is needed here,
486 but this is a place where future chipsets _COULD_ break. Be wary
8bde7f77 487 of issuing another MMU command right after this */
fe8c2806
WD
488
489 /* Disable all interrupts */
b56ddc63 490 SMC_outb (0, IM_REG);
fe8c2806
WD
491}
492
493/*
494 . Function: smc_enable
495 . Purpose: let the chip talk to the outside work
496 . Method:
497 . 1. Enable the transmitter
498 . 2. Enable the receiver
499 . 3. Enable interrupts
500*/
501static void smc_enable()
502{
f39748ae 503 PRINTK2("%s: smc_enable\n", SMC_DEV_NAME);
fe8c2806
WD
504 SMC_SELECT_BANK( 0 );
505 /* see the header file for options in TCR/RCR DEFAULT*/
506 SMC_outw( TCR_DEFAULT, TCR_REG );
507 SMC_outw( RCR_DEFAULT, RCR_REG );
508
509 /* clear MII_DIS */
510/* smc_write_phy_register(PHY_CNTL_REG, 0x0000); */
511}
512
513/*
514 . Function: smc_shutdown
515 . Purpose: closes down the SMC91xxx chip.
516 . Method:
517 . 1. zero the interrupt mask
518 . 2. clear the enable receive flag
519 . 3. clear the enable xmit flags
520 .
521 . TODO:
522 . (1) maybe utilize power down mode.
523 . Why not yet? Because while the chip will go into power down mode,
524 . the manual says that it will wake up in response to any I/O requests
42dfe7a1 525 . in the register space. Empirical results do not show this working.
fe8c2806
WD
526*/
527static void smc_shutdown()
528{
f39748ae 529 PRINTK2(CARDNAME ": smc_shutdown\n");
fe8c2806
WD
530
531 /* no more interrupts for me */
532 SMC_SELECT_BANK( 2 );
533 SMC_outb( 0, IM_REG );
534
535 /* and tell the card to stay away from that nasty outside world */
536 SMC_SELECT_BANK( 0 );
537 SMC_outb( RCR_CLEAR, RCR_REG );
538 SMC_outb( TCR_CLEAR, TCR_REG );
0afe519a
WD
539#ifdef SHARED_RESOURCES
540 swap_to(FLASH);
541#endif
fe8c2806
WD
542}
543
544
545/*
546 . Function: smc_hardware_send_packet(struct net_device * )
547 . Purpose:
548 . This sends the actual packet to the SMC9xxx chip.
549 .
550 . Algorithm:
42dfe7a1 551 . First, see if a saved_skb is available.
fe8c2806
WD
552 . ( this should NOT be called if there is no 'saved_skb'
553 . Now, find the packet number that the chip allocated
554 . Point the data pointers at it in memory
555 . Set the length word in the chip's memory
556 . Dump the packet to chip memory
557 . Check if a last byte is needed ( odd length packet )
558 . if so, set the control flag right
42dfe7a1 559 . Tell the card to send it
fe8c2806 560 . Enable the transmit interrupt, so I know if it failed
42dfe7a1 561 . Free the kernel data if I actually sent it.
fe8c2806 562*/
b56ddc63 563static int smc_send_packet (volatile void *packet, int packet_length)
fe8c2806 564{
b56ddc63
WD
565 byte packet_no;
566 unsigned long ioaddr;
567 byte *buf;
568 int length;
569 int numPages;
570 int try = 0;
571 int time_out;
572 byte status;
518e2e1a
WD
573 byte saved_pnr;
574 word saved_ptr;
fe8c2806 575
518e2e1a 576 /* save PTR and PNR registers before manipulation */
b79a11cc 577 SMC_SELECT_BANK (2);
518e2e1a
WD
578 saved_pnr = SMC_inb( PN_REG );
579 saved_ptr = SMC_inw( PTR_REG );
fe8c2806 580
f39748ae 581 PRINTK3 ("%s: smc_hardware_send_packet\n", SMC_DEV_NAME);
fe8c2806
WD
582
583 length = ETH_ZLEN < packet_length ? packet_length : ETH_ZLEN;
584
585 /* allocate memory
b56ddc63
WD
586 ** The MMU wants the number of pages to be the number of 256 bytes
587 ** 'pages', minus 1 ( since a packet can't ever have 0 pages :) )
588 **
589 ** The 91C111 ignores the size bits, but the code is left intact
590 ** for backwards and future compatibility.
591 **
592 ** Pkt size for allocating is data length +6 (for additional status
593 ** words, length and ctl!)
594 **
595 ** If odd size then last byte is included in this header.
596 */
597 numPages = ((length & 0xfffe) + 6);
598 numPages >>= 8; /* Divide by 256 */
599
600 if (numPages > 7) {
601 printf ("%s: Far too big packet error. \n", SMC_DEV_NAME);
fe8c2806
WD
602 return 0;
603 }
604
605 /* now, try to allocate the memory */
b56ddc63
WD
606 SMC_SELECT_BANK (2);
607 SMC_outw (MC_ALLOC | numPages, MMU_CMD_REG);
fe8c2806 608
dc7c9a1a 609 /* FIXME: the ALLOC_INT bit never gets set *
42dfe7a1
WD
610 * so the following will always give a *
611 * memory allocation error. *
612 * same code works in armboot though *
dc7c9a1a
WD
613 * -ro
614 */
615
fe8c2806
WD
616again:
617 try++;
618 time_out = MEMORY_WAIT_TIME;
619 do {
b56ddc63
WD
620 status = SMC_inb (SMC91111_INT_REG);
621 if (status & IM_ALLOC_INT) {
fe8c2806 622 /* acknowledge the interrupt */
b56ddc63 623 SMC_outb (IM_ALLOC_INT, SMC91111_INT_REG);
8bde7f77 624 break;
fe8c2806 625 }
b56ddc63
WD
626 } while (--time_out);
627
628 if (!time_out) {
629 PRINTK2 ("%s: memory allocation, try %d failed ...\n",
630 SMC_DEV_NAME, try);
631 if (try < SMC_ALLOC_MAX_TRY)
632 goto again;
633 else
634 return 0;
fe8c2806
WD
635 }
636
b56ddc63
WD
637 PRINTK2 ("%s: memory allocation, try %d succeeded ...\n",
638 SMC_DEV_NAME, try);
fe8c2806
WD
639
640 /* I can send the packet now.. */
641
642 ioaddr = SMC_BASE_ADDRESS;
643
b56ddc63 644 buf = (byte *) packet;
fe8c2806
WD
645
646 /* If I get here, I _know_ there is a packet slot waiting for me */
b56ddc63
WD
647 packet_no = SMC_inb (AR_REG);
648 if (packet_no & AR_FAILED) {
fe8c2806 649 /* or isn't there? BAD CHIP! */
b56ddc63 650 printf ("%s: Memory allocation failed. \n", SMC_DEV_NAME);
fe8c2806
WD
651 return 0;
652 }
653
654 /* we have a packet address, so tell the card to use it */
1f6d4258 655#ifndef CONFIG_XAENIAX
b56ddc63 656 SMC_outb (packet_no, PN_REG);
1f6d4258
WD
657#else
658 /* On Xaeniax board, we can't use SMC_outb here because that way
659 * the Allocate MMU command will end up written to the command register
660 * as well, which will lead to a problem.
661 */
662 SMC_outl (packet_no << 16, 0);
663#endif
b79a11cc
WD
664 /* do not write new ptr value if Write data fifo not empty */
665 while ( saved_ptr & PTR_NOTEMPTY )
518e2e1a
WD
666 printf ("Write data fifo not empty!\n");
667
fe8c2806 668 /* point to the beginning of the packet */
b56ddc63 669 SMC_outw (PTR_AUTOINC, PTR_REG);
fe8c2806 670
b56ddc63
WD
671 PRINTK3 ("%s: Trying to xmit packet of length %x\n",
672 SMC_DEV_NAME, length);
fe8c2806
WD
673
674#if SMC_DEBUG > 2
b56ddc63
WD
675 printf ("Transmitting Packet\n");
676 print_packet (buf, length);
fe8c2806
WD
677#endif
678
679 /* send the packet length ( +6 for status, length and ctl byte )
8bde7f77 680 and the status word ( set to zeros ) */
fe8c2806 681#ifdef USE_32_BIT
b56ddc63 682 SMC_outl ((length + 6) << 16, SMC91111_DATA_REG);
fe8c2806 683#else
b56ddc63
WD
684 SMC_outw (0, SMC91111_DATA_REG);
685 /* send the packet length ( +6 for status words, length, and ctl */
686 SMC_outw ((length + 6), SMC91111_DATA_REG);
fe8c2806
WD
687#endif
688
689 /* send the actual data
b56ddc63
WD
690 . I _think_ it's faster to send the longs first, and then
691 . mop up by sending the last word. It depends heavily
42dfe7a1 692 . on alignment, at least on the 486. Maybe it would be
b56ddc63
WD
693 . a good idea to check which is optimal? But that could take
694 . almost as much time as is saved?
695 */
fe8c2806 696#ifdef USE_32_BIT
b56ddc63 697 SMC_outsl (SMC91111_DATA_REG, buf, length >> 2);
bb310d46 698#ifndef CONFIG_XAENIAX
b56ddc63
WD
699 if (length & 0x2)
700 SMC_outw (*((word *) (buf + (length & 0xFFFFFFFC))),
701 SMC91111_DATA_REG);
bb310d46
WD
702#else
703 /* On XANEIAX, we can only use 32-bit writes, so we need to handle
704 * unaligned tail part specially. The standard code doesn't work.
705 */
706 if ((length & 3) == 3) {
707 u16 * ptr = (u16*) &buf[length-3];
708 SMC_outl((*ptr) | ((0x2000 | buf[length-1]) << 16),
709 SMC91111_DATA_REG);
710 } else if ((length & 2) == 2) {
711 u16 * ptr = (u16*) &buf[length-2];
712 SMC_outl(*ptr, SMC91111_DATA_REG);
713 } else if (length & 1) {
714 SMC_outl((0x2000 | buf[length-1]), SMC91111_DATA_REG);
715 } else {
716 SMC_outl(0, SMC91111_DATA_REG);
717 }
718#endif
fe8c2806 719#else
b56ddc63 720 SMC_outsw (SMC91111_DATA_REG, buf, (length) >> 1);
fe8c2806
WD
721#endif /* USE_32_BIT */
722
bb310d46 723#ifndef CONFIG_XAENIAX
42dfe7a1 724 /* Send the last byte, if there is one. */
b56ddc63
WD
725 if ((length & 1) == 0) {
726 SMC_outw (0, SMC91111_DATA_REG);
fe8c2806 727 } else {
b56ddc63 728 SMC_outw (buf[length - 1] | 0x2000, SMC91111_DATA_REG);
fe8c2806 729 }
bb310d46 730#endif
fe8c2806
WD
731
732 /* and let the chipset deal with it */
b56ddc63 733 SMC_outw (MC_ENQUEUE, MMU_CMD_REG);
fe8c2806
WD
734
735 /* poll for TX INT */
518e2e1a
WD
736 /* if (poll4int (IM_TX_INT, SMC_TX_TIMEOUT)) { */
737 /* poll for TX_EMPTY INT - autorelease enabled */
738 if (poll4int(IM_TX_EMPTY_INT, SMC_TX_TIMEOUT)) {
fe8c2806 739 /* sending failed */
b56ddc63 740 PRINTK2 ("%s: TX timeout, sending failed...\n", SMC_DEV_NAME);
fe8c2806
WD
741
742 /* release packet */
518e2e1a 743 /* no need to release, MMU does that now */
1f6d4258
WD
744#ifdef CONFIG_XAENIAX
745 SMC_outw (MC_FREEPKT, MMU_CMD_REG);
746#endif
fe8c2806 747
8bde7f77 748 /* wait for MMU getting ready (low) */
b56ddc63
WD
749 while (SMC_inw (MMU_CMD_REG) & MC_BUSY) {
750 udelay (10);
8bde7f77 751 }
fe8c2806 752
b56ddc63 753 PRINTK2 ("MMU ready\n");
fe8c2806
WD
754
755
756 return 0;
757 } else {
758 /* ack. int */
518e2e1a
WD
759 SMC_outb (IM_TX_EMPTY_INT, SMC91111_INT_REG);
760 /* SMC_outb (IM_TX_INT, SMC91111_INT_REG); */
b56ddc63
WD
761 PRINTK2 ("%s: Sent packet of length %d \n", SMC_DEV_NAME,
762 length);
fe8c2806
WD
763
764 /* release packet */
518e2e1a 765 /* no need to release, MMU does that now */
1f6d4258
WD
766#ifdef CONFIG_XAENIAX
767 SMC_outw (MC_FREEPKT, MMU_CMD_REG);
768#endif
fe8c2806 769
8bde7f77 770 /* wait for MMU getting ready (low) */
b56ddc63
WD
771 while (SMC_inw (MMU_CMD_REG) & MC_BUSY) {
772 udelay (10);
8bde7f77 773 }
fe8c2806 774
b56ddc63 775 PRINTK2 ("MMU ready\n");
fe8c2806
WD
776
777
778 }
779
518e2e1a 780 /* restore previously saved registers */
1f6d4258 781#ifndef CONFIG_XAENIAX
518e2e1a 782 SMC_outb( saved_pnr, PN_REG );
1f6d4258
WD
783#else
784 /* On Xaeniax board, we can't use SMC_outb here because that way
785 * the Allocate MMU command will end up written to the command register
786 * as well, which will lead to a problem.
787 */
788 SMC_outl(saved_pnr << 16, 0);
789#endif
518e2e1a
WD
790 SMC_outw( saved_ptr, PTR_REG );
791
fe8c2806
WD
792 return length;
793}
794
795/*-------------------------------------------------------------------------
796 |
797 | smc_destructor( struct net_device * dev )
798 | Input parameters:
799 | dev, pointer to the device structure
800 |
801 | Output:
802 | None.
803 |
804 ---------------------------------------------------------------------------
805*/
806void smc_destructor()
807{
f39748ae 808 PRINTK2(CARDNAME ": smc_destructor\n");
fe8c2806
WD
809}
810
811
812/*
813 * Open and Initialize the board
814 *
815 * Set up everything, reset the card, etc ..
816 *
817 */
b56ddc63 818static int smc_open (bd_t * bd)
fe8c2806 819{
b56ddc63 820 int i, err;
fe8c2806 821
f39748ae 822 PRINTK2 ("%s: smc_open\n", SMC_DEV_NAME);
fe8c2806
WD
823
824 /* reset the hardware */
b56ddc63
WD
825 smc_reset ();
826 smc_enable ();
fe8c2806
WD
827
828 /* Configure the PHY */
829#ifndef CONFIG_SMC91111_EXT_PHY
b56ddc63 830 smc_phy_configure ();
fe8c2806
WD
831#endif
832
fe8c2806
WD
833 /* conservative setting (10Mbps, HalfDuplex, no AutoNeg.) */
834/* SMC_SELECT_BANK(0); */
835/* SMC_outw(0, RPC_REG); */
b56ddc63 836 SMC_SELECT_BANK (1);
487778b7 837
b56ddc63
WD
838 err = smc_get_ethaddr (bd); /* set smc_mac_addr, and sync it with u-boot globals */
839 if (err < 0) {
42dfe7a1 840 memset (bd->bi_enetaddr, 0, 6); /* hack to make error stick! upper code will abort if not set */
b56ddc63
WD
841 return (-1); /* upper code ignores this, but NOT bi_enetaddr */
842 }
fe8c2806 843#ifdef USE_32_BIT
b56ddc63 844 for (i = 0; i < 6; i += 2) {
fe8c2806
WD
845 word address;
846
b56ddc63
WD
847 address = smc_mac_addr[i + 1] << 8;
848 address |= smc_mac_addr[i];
39539887 849 SMC_outw (address, (ADDR0_REG + i));
fe8c2806
WD
850 }
851#else
b56ddc63 852 for (i = 0; i < 6; i++)
39539887 853 SMC_outb (smc_mac_addr[i], (ADDR0_REG + i));
fe8c2806
WD
854#endif
855
856 return 0;
857}
858
fe8c2806
WD
859/*-------------------------------------------------------------
860 .
861 . smc_rcv - receive a packet from the card
862 .
863 . There is ( at least ) a packet waiting to be read from
864 . chip-memory.
865 .
866 . o Read the status
867 . o If an error, record it
868 . o otherwise, read in the packet
869 --------------------------------------------------------------
870*/
871static int smc_rcv()
872{
42dfe7a1 873 int packet_number;
fe8c2806
WD
874 word status;
875 word packet_length;
42dfe7a1 876 int is_error = 0;
fe8c2806
WD
877#ifdef USE_32_BIT
878 dword stat_len;
879#endif
518e2e1a
WD
880 byte saved_pnr;
881 word saved_ptr;
fe8c2806 882
fe8c2806 883 SMC_SELECT_BANK(2);
518e2e1a
WD
884 /* save PTR and PTR registers */
885 saved_pnr = SMC_inb( PN_REG );
886 saved_ptr = SMC_inw( PTR_REG );
887
fe8c2806
WD
888 packet_number = SMC_inw( RXFIFO_REG );
889
890 if ( packet_number & RXFIFO_REMPTY ) {
891
892 return 0;
893 }
894
f39748ae 895 PRINTK3("%s: smc_rcv\n", SMC_DEV_NAME);
fe8c2806
WD
896 /* start reading from the start of the packet */
897 SMC_outw( PTR_READ | PTR_RCV | PTR_AUTOINC, PTR_REG );
898
899 /* First two words are status and packet_length */
900#ifdef USE_32_BIT
901 stat_len = SMC_inl(SMC91111_DATA_REG);
902 status = stat_len & 0xffff;
903 packet_length = stat_len >> 16;
904#else
42dfe7a1
WD
905 status = SMC_inw( SMC91111_DATA_REG );
906 packet_length = SMC_inw( SMC91111_DATA_REG );
fe8c2806
WD
907#endif
908
909 packet_length &= 0x07ff; /* mask off top bits */
910
911 PRINTK2("RCV: STATUS %4x LENGTH %4x\n", status, packet_length );
912
913 if ( !(status & RS_ERRORS ) ){
914 /* Adjust for having already read the first two words */
915 packet_length -= 4; /*4; */
916
917
fe8c2806
WD
918 /* set odd length for bug in LAN91C111, */
919 /* which never sets RS_ODDFRAME */
920 /* TODO ? */
921
922
923#ifdef USE_32_BIT
924 PRINTK3(" Reading %d dwords (and %d bytes) \n",
925 packet_length >> 2, packet_length & 3 );
926 /* QUESTION: Like in the TX routine, do I want
927 to send the DWORDs or the bytes first, or some
928 mixture. A mixture might improve already slow PIO
42dfe7a1 929 performance */
fe8c2806
WD
930 SMC_insl( SMC91111_DATA_REG , NetRxPackets[0], packet_length >> 2 );
931 /* read the left over bytes */
932 if (packet_length & 3) {
933 int i;
934
699b13a6 935 byte *tail = (byte *)(NetRxPackets[0] + (packet_length & ~3));
fe8c2806
WD
936 dword leftover = SMC_inl(SMC91111_DATA_REG);
937 for (i=0; i<(packet_length & 3); i++)
938 *tail++ = (byte) (leftover >> (8*i)) & 0xff;
939 }
940#else
941 PRINTK3(" Reading %d words and %d byte(s) \n",
942 (packet_length >> 1 ), packet_length & 1 );
943 SMC_insw(SMC91111_DATA_REG , NetRxPackets[0], packet_length >> 1);
944
945#endif /* USE_32_BIT */
946
947#if SMC_DEBUG > 2
948 printf("Receiving Packet\n");
949 print_packet( NetRxPackets[0], packet_length );
950#endif
951 } else {
952 /* error ... */
953 /* TODO ? */
954 is_error = 1;
955 }
956
957 while ( SMC_inw( MMU_CMD_REG ) & MC_BUSY )
958 udelay(1); /* Wait until not busy */
959
960 /* error or good, tell the card to get rid of this packet */
961 SMC_outw( MC_RELEASE, MMU_CMD_REG );
962
963 while ( SMC_inw( MMU_CMD_REG ) & MC_BUSY )
964 udelay(1); /* Wait until not busy */
965
518e2e1a 966 /* restore saved registers */
1f6d4258 967#ifndef CONFIG_XAENIAX
518e2e1a 968 SMC_outb( saved_pnr, PN_REG );
1f6d4258
WD
969#else
970 /* On Xaeniax board, we can't use SMC_outb here because that way
971 * the Allocate MMU command will end up written to the command register
972 * as well, which will lead to a problem.
973 */
974 SMC_outl( saved_pnr << 16, 0);
975#endif
518e2e1a
WD
976 SMC_outw( saved_ptr, PTR_REG );
977
fe8c2806
WD
978 if (!is_error) {
979 /* Pass the packet up to the protocol layers. */
980 NetReceive(NetRxPackets[0], packet_length);
981 return packet_length;
982 } else {
983 return 0;
984 }
985
986}
987
988
fe8c2806
WD
989/*----------------------------------------------------
990 . smc_close
991 .
992 . this makes the board clean up everything that it can
42dfe7a1 993 . and not talk to the outside world. Caused by
fe8c2806
WD
994 . an 'ifconfig ethX down'
995 .
996 -----------------------------------------------------*/
997static int smc_close()
998{
f39748ae 999 PRINTK2("%s: smc_close\n", SMC_DEV_NAME);
fe8c2806
WD
1000
1001 /* clear everything */
1002 smc_shutdown();
1003
1004 return 0;
1005}
1006
1007
1008#if 0
1009/*------------------------------------------------------------
1010 . Modify a bit in the LAN91C111 register set
1011 .-------------------------------------------------------------*/
1012static word smc_modify_regbit(int bank, int ioaddr, int reg,
1013 unsigned int bit, int val)
1014{
1015 word regval;
1016
1017 SMC_SELECT_BANK( bank );
1018
1019 regval = SMC_inw( reg );
1020 if (val)
1021 regval |= bit;
1022 else
1023 regval &= ~bit;
1024
1025 SMC_outw( regval, 0 );
1026 return(regval);
1027}
1028
1029
1030/*------------------------------------------------------------
1031 . Retrieve a bit in the LAN91C111 register set
1032 .-------------------------------------------------------------*/
1033static int smc_get_regbit(int bank, int ioaddr, int reg, unsigned int bit)
1034{
1035 SMC_SELECT_BANK( bank );
1036 if ( SMC_inw( reg ) & bit)
1037 return(1);
1038 else
1039 return(0);
1040}
1041
1042
1043/*------------------------------------------------------------
1044 . Modify a LAN91C111 register (word access only)
1045 .-------------------------------------------------------------*/
1046static void smc_modify_reg(int bank, int ioaddr, int reg, word val)
1047{
1048 SMC_SELECT_BANK( bank );
1049 SMC_outw( val, reg );
1050}
1051
1052
1053/*------------------------------------------------------------
1054 . Retrieve a LAN91C111 register (word access only)
1055 .-------------------------------------------------------------*/
1056static int smc_get_reg(int bank, int ioaddr, int reg)
1057{
1058 SMC_SELECT_BANK( bank );
1059 return(SMC_inw( reg ));
1060}
1061
1062#endif /* 0 */
1063
1064/*---PHY CONTROL AND CONFIGURATION----------------------------------------- */
1065
1066#if (SMC_DEBUG > 2 )
1067
1068/*------------------------------------------------------------
1069 . Debugging function for viewing MII Management serial bitstream
1070 .-------------------------------------------------------------*/
b56ddc63 1071static void smc_dump_mii_stream (byte * bits, int size)
fe8c2806
WD
1072{
1073 int i;
1074
b56ddc63
WD
1075 printf ("BIT#:");
1076 for (i = 0; i < size; ++i) {
1077 printf ("%d", i % 10);
1078 }
fe8c2806 1079
b56ddc63
WD
1080 printf ("\nMDOE:");
1081 for (i = 0; i < size; ++i) {
fe8c2806 1082 if (bits[i] & MII_MDOE)
b56ddc63 1083 printf ("1");
fe8c2806 1084 else
b56ddc63
WD
1085 printf ("0");
1086 }
fe8c2806 1087
b56ddc63
WD
1088 printf ("\nMDO :");
1089 for (i = 0; i < size; ++i) {
fe8c2806 1090 if (bits[i] & MII_MDO)
b56ddc63 1091 printf ("1");
fe8c2806 1092 else
b56ddc63
WD
1093 printf ("0");
1094 }
fe8c2806 1095
b56ddc63
WD
1096 printf ("\nMDI :");
1097 for (i = 0; i < size; ++i) {
fe8c2806 1098 if (bits[i] & MII_MDI)
b56ddc63 1099 printf ("1");
fe8c2806 1100 else
b56ddc63
WD
1101 printf ("0");
1102 }
fe8c2806 1103
b56ddc63 1104 printf ("\n");
fe8c2806
WD
1105}
1106#endif
1107
1108/*------------------------------------------------------------
1109 . Reads a register from the MII Management serial interface
1110 .-------------------------------------------------------------*/
1111#ifndef CONFIG_SMC91111_EXT_PHY
b56ddc63 1112static word smc_read_phy_register (byte phyreg)
fe8c2806
WD
1113{
1114 int oldBank;
1115 int i;
1116 byte mask;
1117 word mii_reg;
1118 byte bits[64];
1119 int clk_idx = 0;
1120 int input_idx;
1121 word phydata;
1122 byte phyaddr = SMC_PHY_ADDR;
1123
1124 /* 32 consecutive ones on MDO to establish sync */
1125 for (i = 0; i < 32; ++i)
1126 bits[clk_idx++] = MII_MDOE | MII_MDO;
1127
1128 /* Start code <01> */
1129 bits[clk_idx++] = MII_MDOE;
1130 bits[clk_idx++] = MII_MDOE | MII_MDO;
1131
1132 /* Read command <10> */
1133 bits[clk_idx++] = MII_MDOE | MII_MDO;
1134 bits[clk_idx++] = MII_MDOE;
1135
1136 /* Output the PHY address, msb first */
b56ddc63
WD
1137 mask = (byte) 0x10;
1138 for (i = 0; i < 5; ++i) {
fe8c2806
WD
1139 if (phyaddr & mask)
1140 bits[clk_idx++] = MII_MDOE | MII_MDO;
1141 else
1142 bits[clk_idx++] = MII_MDOE;
1143
1144 /* Shift to next lowest bit */
1145 mask >>= 1;
b56ddc63 1146 }
fe8c2806
WD
1147
1148 /* Output the phy register number, msb first */
b56ddc63
WD
1149 mask = (byte) 0x10;
1150 for (i = 0; i < 5; ++i) {
fe8c2806
WD
1151 if (phyreg & mask)
1152 bits[clk_idx++] = MII_MDOE | MII_MDO;
1153 else
1154 bits[clk_idx++] = MII_MDOE;
1155
1156 /* Shift to next lowest bit */
1157 mask >>= 1;
b56ddc63 1158 }
fe8c2806
WD
1159
1160 /* Tristate and turnaround (2 bit times) */
1161 bits[clk_idx++] = 0;
1162 /*bits[clk_idx++] = 0; */
1163
1164 /* Input starts at this bit time */
1165 input_idx = clk_idx;
1166
1167 /* Will input 16 bits */
1168 for (i = 0; i < 16; ++i)
1169 bits[clk_idx++] = 0;
1170
1171 /* Final clock bit */
1172 bits[clk_idx++] = 0;
1173
1174 /* Save the current bank */
b56ddc63 1175 oldBank = SMC_inw (BANK_SELECT);
fe8c2806
WD
1176
1177 /* Select bank 3 */
b56ddc63 1178 SMC_SELECT_BANK (3);
fe8c2806
WD
1179
1180 /* Get the current MII register value */
b56ddc63 1181 mii_reg = SMC_inw (MII_REG);
fe8c2806
WD
1182
1183 /* Turn off all MII Interface bits */
b56ddc63 1184 mii_reg &= ~(MII_MDOE | MII_MCLK | MII_MDI | MII_MDO);
fe8c2806
WD
1185
1186 /* Clock all 64 cycles */
b56ddc63 1187 for (i = 0; i < sizeof bits; ++i) {
fe8c2806 1188 /* Clock Low - output data */
b56ddc63
WD
1189 SMC_outw (mii_reg | bits[i], MII_REG);
1190 udelay (SMC_PHY_CLOCK_DELAY);
fe8c2806
WD
1191
1192
1193 /* Clock Hi - input data */
b56ddc63
WD
1194 SMC_outw (mii_reg | bits[i] | MII_MCLK, MII_REG);
1195 udelay (SMC_PHY_CLOCK_DELAY);
1196 bits[i] |= SMC_inw (MII_REG) & MII_MDI;
1197 }
fe8c2806
WD
1198
1199 /* Return to idle state */
1200 /* Set clock to low, data to low, and output tristated */
b56ddc63
WD
1201 SMC_outw (mii_reg, MII_REG);
1202 udelay (SMC_PHY_CLOCK_DELAY);
fe8c2806
WD
1203
1204 /* Restore original bank select */
b56ddc63 1205 SMC_SELECT_BANK (oldBank);
fe8c2806
WD
1206
1207 /* Recover input data */
1208 phydata = 0;
b56ddc63 1209 for (i = 0; i < 16; ++i) {
fe8c2806
WD
1210 phydata <<= 1;
1211
1212 if (bits[input_idx++] & MII_MDI)
1213 phydata |= 0x0001;
b56ddc63 1214 }
fe8c2806
WD
1215
1216#if (SMC_DEBUG > 2 )
b56ddc63 1217 printf ("smc_read_phy_register(): phyaddr=%x,phyreg=%x,phydata=%x\n",
fe8c2806 1218 phyaddr, phyreg, phydata);
b56ddc63 1219 smc_dump_mii_stream (bits, sizeof bits);
fe8c2806
WD
1220#endif
1221
b56ddc63 1222 return (phydata);
fe8c2806
WD
1223}
1224
1225
1226/*------------------------------------------------------------
1227 . Writes a register to the MII Management serial interface
1228 .-------------------------------------------------------------*/
b56ddc63 1229static void smc_write_phy_register (byte phyreg, word phydata)
fe8c2806
WD
1230{
1231 int oldBank;
1232 int i;
1233 word mask;
1234 word mii_reg;
1235 byte bits[65];
1236 int clk_idx = 0;
1237 byte phyaddr = SMC_PHY_ADDR;
1238
1239 /* 32 consecutive ones on MDO to establish sync */
1240 for (i = 0; i < 32; ++i)
1241 bits[clk_idx++] = MII_MDOE | MII_MDO;
1242
1243 /* Start code <01> */
1244 bits[clk_idx++] = MII_MDOE;
1245 bits[clk_idx++] = MII_MDOE | MII_MDO;
1246
1247 /* Write command <01> */
1248 bits[clk_idx++] = MII_MDOE;
1249 bits[clk_idx++] = MII_MDOE | MII_MDO;
1250
1251 /* Output the PHY address, msb first */
b56ddc63
WD
1252 mask = (byte) 0x10;
1253 for (i = 0; i < 5; ++i) {
fe8c2806
WD
1254 if (phyaddr & mask)
1255 bits[clk_idx++] = MII_MDOE | MII_MDO;
1256 else
1257 bits[clk_idx++] = MII_MDOE;
1258
1259 /* Shift to next lowest bit */
1260 mask >>= 1;
b56ddc63 1261 }
fe8c2806
WD
1262
1263 /* Output the phy register number, msb first */
b56ddc63
WD
1264 mask = (byte) 0x10;
1265 for (i = 0; i < 5; ++i) {
fe8c2806
WD
1266 if (phyreg & mask)
1267 bits[clk_idx++] = MII_MDOE | MII_MDO;
1268 else
1269 bits[clk_idx++] = MII_MDOE;
1270
1271 /* Shift to next lowest bit */
1272 mask >>= 1;
b56ddc63 1273 }
fe8c2806
WD
1274
1275 /* Tristate and turnaround (2 bit times) */
1276 bits[clk_idx++] = 0;
1277 bits[clk_idx++] = 0;
1278
1279 /* Write out 16 bits of data, msb first */
1280 mask = 0x8000;
b56ddc63 1281 for (i = 0; i < 16; ++i) {
fe8c2806
WD
1282 if (phydata & mask)
1283 bits[clk_idx++] = MII_MDOE | MII_MDO;
1284 else
1285 bits[clk_idx++] = MII_MDOE;
1286
1287 /* Shift to next lowest bit */
1288 mask >>= 1;
b56ddc63 1289 }
fe8c2806
WD
1290
1291 /* Final clock bit (tristate) */
1292 bits[clk_idx++] = 0;
1293
1294 /* Save the current bank */
b56ddc63 1295 oldBank = SMC_inw (BANK_SELECT);
fe8c2806
WD
1296
1297 /* Select bank 3 */
b56ddc63 1298 SMC_SELECT_BANK (3);
fe8c2806
WD
1299
1300 /* Get the current MII register value */
b56ddc63 1301 mii_reg = SMC_inw (MII_REG);
fe8c2806
WD
1302
1303 /* Turn off all MII Interface bits */
b56ddc63 1304 mii_reg &= ~(MII_MDOE | MII_MCLK | MII_MDI | MII_MDO);
fe8c2806
WD
1305
1306 /* Clock all cycles */
b56ddc63 1307 for (i = 0; i < sizeof bits; ++i) {
fe8c2806 1308 /* Clock Low - output data */
b56ddc63
WD
1309 SMC_outw (mii_reg | bits[i], MII_REG);
1310 udelay (SMC_PHY_CLOCK_DELAY);
fe8c2806
WD
1311
1312
1313 /* Clock Hi - input data */
b56ddc63
WD
1314 SMC_outw (mii_reg | bits[i] | MII_MCLK, MII_REG);
1315 udelay (SMC_PHY_CLOCK_DELAY);
1316 bits[i] |= SMC_inw (MII_REG) & MII_MDI;
1317 }
fe8c2806
WD
1318
1319 /* Return to idle state */
1320 /* Set clock to low, data to low, and output tristated */
b56ddc63
WD
1321 SMC_outw (mii_reg, MII_REG);
1322 udelay (SMC_PHY_CLOCK_DELAY);
fe8c2806
WD
1323
1324 /* Restore original bank select */
b56ddc63 1325 SMC_SELECT_BANK (oldBank);
fe8c2806
WD
1326
1327#if (SMC_DEBUG > 2 )
b56ddc63 1328 printf ("smc_write_phy_register(): phyaddr=%x,phyreg=%x,phydata=%x\n",
fe8c2806 1329 phyaddr, phyreg, phydata);
b56ddc63 1330 smc_dump_mii_stream (bits, sizeof bits);
fe8c2806
WD
1331#endif
1332}
1333#endif /* !CONFIG_SMC91111_EXT_PHY */
1334
1335
fe8c2806
WD
1336/*------------------------------------------------------------
1337 . Waits the specified number of milliseconds - kernel friendly
1338 .-------------------------------------------------------------*/
1339#ifndef CONFIG_SMC91111_EXT_PHY
1340static void smc_wait_ms(unsigned int ms)
1341{
1342 udelay(ms*1000);
1343}
1344#endif /* !CONFIG_SMC91111_EXT_PHY */
1345
1346
fe8c2806
WD
1347/*------------------------------------------------------------
1348 . Configures the specified PHY using Autonegotiation. Calls
1349 . smc_phy_fixed() if the user has requested a certain config.
1350 .-------------------------------------------------------------*/
1351#ifndef CONFIG_SMC91111_EXT_PHY
b56ddc63 1352static void smc_phy_configure ()
fe8c2806
WD
1353{
1354 int timeout;
1355 byte phyaddr;
b56ddc63
WD
1356 word my_phy_caps; /* My PHY capabilities */
1357 word my_ad_caps; /* My Advertised capabilities */
1358 word status = 0; /*;my status = 0 */
fe8c2806
WD
1359 int failed = 0;
1360
f39748ae 1361 PRINTK3 ("%s: smc_program_phy()\n", SMC_DEV_NAME);
fe8c2806
WD
1362
1363
fe8c2806
WD
1364 /* Get the detected phy address */
1365 phyaddr = SMC_PHY_ADDR;
1366
1367 /* Reset the PHY, setting all other bits to zero */
b56ddc63 1368 smc_write_phy_register (PHY_CNTL_REG, PHY_CNTL_RST);
fe8c2806
WD
1369
1370 /* Wait for the reset to complete, or time out */
b56ddc63
WD
1371 timeout = 6; /* Wait up to 3 seconds */
1372 while (timeout--) {
1373 if (!(smc_read_phy_register (PHY_CNTL_REG)
1374 & PHY_CNTL_RST)) {
fe8c2806
WD
1375 /* reset complete */
1376 break;
fe8c2806
WD
1377 }
1378
b56ddc63
WD
1379 smc_wait_ms (500); /* wait 500 millisecs */
1380 }
1381
1382 if (timeout < 1) {
1383 printf ("%s:PHY reset timed out\n", SMC_DEV_NAME);
fe8c2806 1384 goto smc_phy_configure_exit;
b56ddc63 1385 }
fe8c2806
WD
1386
1387 /* Read PHY Register 18, Status Output */
1388 /* lp->lastPhy18 = smc_read_phy_register(PHY_INT_REG); */
1389
1390 /* Enable PHY Interrupts (for register 18) */
1391 /* Interrupts listed here are disabled */
8bf3b005 1392 smc_write_phy_register (PHY_MASK_REG, 0xffff);
fe8c2806
WD
1393
1394 /* Configure the Receive/Phy Control register */
b56ddc63
WD
1395 SMC_SELECT_BANK (0);
1396 SMC_outw (RPC_DEFAULT, RPC_REG);
fe8c2806
WD
1397
1398 /* Copy our capabilities from PHY_STAT_REG to PHY_AD_REG */
b56ddc63
WD
1399 my_phy_caps = smc_read_phy_register (PHY_STAT_REG);
1400 my_ad_caps = PHY_AD_CSMA; /* I am CSMA capable */
fe8c2806
WD
1401
1402 if (my_phy_caps & PHY_STAT_CAP_T4)
1403 my_ad_caps |= PHY_AD_T4;
1404
1405 if (my_phy_caps & PHY_STAT_CAP_TXF)
1406 my_ad_caps |= PHY_AD_TX_FDX;
1407
1408 if (my_phy_caps & PHY_STAT_CAP_TXH)
1409 my_ad_caps |= PHY_AD_TX_HDX;
1410
1411 if (my_phy_caps & PHY_STAT_CAP_TF)
1412 my_ad_caps |= PHY_AD_10_FDX;
1413
1414 if (my_phy_caps & PHY_STAT_CAP_TH)
1415 my_ad_caps |= PHY_AD_10_HDX;
1416
1417 /* Update our Auto-Neg Advertisement Register */
b56ddc63 1418 smc_write_phy_register (PHY_AD_REG, my_ad_caps);
fe8c2806 1419
518e2e1a
WD
1420 /* Read the register back. Without this, it appears that when */
1421 /* auto-negotiation is restarted, sometimes it isn't ready and */
1422 /* the link does not come up. */
1423 smc_read_phy_register(PHY_AD_REG);
1424
f39748ae
WD
1425 PRINTK2 ("%s: phy caps=%x\n", SMC_DEV_NAME, my_phy_caps);
1426 PRINTK2 ("%s: phy advertised caps=%x\n", SMC_DEV_NAME, my_ad_caps);
fe8c2806
WD
1427
1428 /* Restart auto-negotiation process in order to advertise my caps */
b56ddc63
WD
1429 smc_write_phy_register (PHY_CNTL_REG,
1430 PHY_CNTL_ANEG_EN | PHY_CNTL_ANEG_RST);
fe8c2806
WD
1431
1432 /* Wait for the auto-negotiation to complete. This may take from */
1433 /* 2 to 3 seconds. */
1434 /* Wait for the reset to complete, or time out */
f39748ae 1435 timeout = CONFIG_SMC_AUTONEG_TIMEOUT * 2;
b56ddc63 1436 while (timeout--) {
f39748ae 1437
b56ddc63
WD
1438 status = smc_read_phy_register (PHY_STAT_REG);
1439 if (status & PHY_STAT_ANEG_ACK) {
fe8c2806
WD
1440 /* auto-negotiate complete */
1441 break;
b56ddc63 1442 }
fe8c2806 1443
b56ddc63 1444 smc_wait_ms (500); /* wait 500 millisecs */
fe8c2806
WD
1445
1446 /* Restart auto-negotiation if remote fault */
b56ddc63 1447 if (status & PHY_STAT_REM_FLT) {
f39748ae 1448 printf ("%s: PHY remote fault detected\n",
b56ddc63 1449 SMC_DEV_NAME);
fe8c2806
WD
1450
1451 /* Restart auto-negotiation */
f39748ae 1452 printf ("%s: PHY restarting auto-negotiation\n",
fe8c2806 1453 SMC_DEV_NAME);
b56ddc63
WD
1454 smc_write_phy_register (PHY_CNTL_REG,
1455 PHY_CNTL_ANEG_EN |
1456 PHY_CNTL_ANEG_RST |
1457 PHY_CNTL_SPEED |
1458 PHY_CNTL_DPLX);
fe8c2806 1459 }
b56ddc63 1460 }
fe8c2806 1461
b56ddc63 1462 if (timeout < 1) {
f39748ae 1463 printf ("%s: PHY auto-negotiate timed out\n", SMC_DEV_NAME);
fe8c2806 1464 failed = 1;
b56ddc63 1465 }
fe8c2806
WD
1466
1467 /* Fail if we detected an auto-negotiate remote fault */
b56ddc63 1468 if (status & PHY_STAT_REM_FLT) {
f39748ae 1469 printf ("%s: PHY remote fault detected\n", SMC_DEV_NAME);
fe8c2806 1470 failed = 1;
b56ddc63 1471 }
fe8c2806
WD
1472
1473 /* Re-Configure the Receive/Phy Control register */
b56ddc63 1474 SMC_outw (RPC_DEFAULT, RPC_REG);
fe8c2806 1475
26238132 1476smc_phy_configure_exit: ;
fe8c2806
WD
1477
1478}
1479#endif /* !CONFIG_SMC91111_EXT_PHY */
1480
1481
1482#if SMC_DEBUG > 2
1483static void print_packet( byte * buf, int length )
1484{
8bde7f77
WD
1485 int i;
1486 int remainder;
1487 int lines;
fe8c2806 1488
8bde7f77 1489 printf("Packet of length %d \n", length );
fe8c2806
WD
1490
1491#if SMC_DEBUG > 3
8bde7f77
WD
1492 lines = length / 16;
1493 remainder = length % 16;
1494
1495 for ( i = 0; i < lines ; i ++ ) {
1496 int cur;
1497
1498 for ( cur = 0; cur < 8; cur ++ ) {
1499 byte a, b;
1500
1501 a = *(buf ++ );
1502 b = *(buf ++ );
1503 printf("%02x%02x ", a, b );
1504 }
1505 printf("\n");
1506 }
1507 for ( i = 0; i < remainder/2 ; i++ ) {
1508 byte a, b;
1509
1510 a = *(buf ++ );
1511 b = *(buf ++ );
1512 printf("%02x%02x ", a, b );
1513 }
1514 printf("\n");
fe8c2806 1515#endif
fe8c2806
WD
1516}
1517#endif
1518
1519int eth_init(bd_t *bd) {
0afe519a
WD
1520#ifdef SHARED_RESOURCES
1521 swap_to(ETHERNET);
1522#endif
0b97ab14 1523 return (smc_open(bd));
fe8c2806
WD
1524}
1525
1526void eth_halt() {
1527 smc_close();
1528}
1529
1530int eth_rx() {
1531 return smc_rcv();
1532}
1533
1534int eth_send(volatile void *packet, int length) {
1535 return smc_send_packet(packet, length);
1536}
1537
b56ddc63 1538int smc_get_ethaddr (bd_t * bd)
0b97ab14 1539{
b56ddc63 1540 int env_size, rom_valid, env_present = 0, reg;
ebd0a0ae 1541 char *s = NULL, *e, es[] = "11:22:33:44:55:66";
d52fb7e3 1542 char s_env_mac[64];
ebd0a0ae 1543 uchar v_env_mac[6], v_rom_mac[6], *v_mac;
b56ddc63
WD
1544
1545 env_size = getenv_r ("ethaddr", s_env_mac, sizeof (s_env_mac));
1546 if ((env_size > 0) && (env_size < sizeof (es))) { /* exit if env is bad */
1547 printf ("\n*** ERROR: ethaddr is not set properly!!\n");
1548 return (-1);
1549 }
1550
1551 if (env_size > 0) {
1552 env_present = 1;
1553 s = s_env_mac;
8bde7f77 1554 }
8bde7f77 1555
42dfe7a1 1556 for (reg = 0; reg < 6; ++reg) { /* turn string into mac value */
b56ddc63
WD
1557 v_env_mac[reg] = s ? simple_strtoul (s, &e, 16) : 0;
1558 if (s)
1559 s = (*e) ? e + 1 : e;
8bde7f77 1560 }
b56ddc63
WD
1561
1562 rom_valid = get_rom_mac (v_rom_mac); /* get ROM mac value if any */
1563
1564 if (!env_present) { /* if NO env */
1565 if (rom_valid) { /* but ROM is valid */
ebd0a0ae 1566 v_mac = v_rom_mac;
b56ddc63
WD
1567 sprintf (s_env_mac, "%02X:%02X:%02X:%02X:%02X:%02X",
1568 v_mac[0], v_mac[1], v_mac[2], v_mac[3],
1569 v_mac[4], v_mac[5]);
1570 setenv ("ethaddr", s_env_mac);
1571 } else { /* no env, bad ROM */
1572 printf ("\n*** ERROR: ethaddr is NOT set !!\n");
1573 return (-1);
1574 }
1575 } else { /* good env, don't care ROM */
ebd0a0ae 1576 v_mac = v_env_mac; /* always use a good env over a ROM */
b56ddc63
WD
1577 }
1578
42dfe7a1 1579 if (env_present && rom_valid) { /* if both env and ROM are good */
b56ddc63 1580 if (memcmp (v_env_mac, v_rom_mac, 6) != 0) {
b56ddc63
WD
1581 printf ("\nWarning: MAC addresses don't match:\n");
1582 printf ("\tHW MAC address: "
1583 "%02X:%02X:%02X:%02X:%02X:%02X\n",
1584 v_rom_mac[0], v_rom_mac[1],
1585 v_rom_mac[2], v_rom_mac[3],
1586 v_rom_mac[4], v_rom_mac[5] );
1587 printf ("\t\"ethaddr\" value: "
1588 "%02X:%02X:%02X:%02X:%02X:%02X\n",
1589 v_env_mac[0], v_env_mac[1],
1590 v_env_mac[2], v_env_mac[3],
1591 v_env_mac[4], v_env_mac[5]) ;
1592 debug ("### Set MAC addr from environment\n");
b56ddc63
WD
1593 }
1594 }
1595 memcpy (bd->bi_enetaddr, v_mac, 6); /* update global address to match env (allows env changing) */
d52fb7e3 1596 smc_set_mac_addr ((uchar *)v_mac); /* use old function to update smc default */
3d3befa7 1597 PRINTK("Using MAC Address %02X:%02X:%02X:%02X:%02X:%02X\n", v_mac[0], v_mac[1],
42dfe7a1 1598 v_mac[2], v_mac[3], v_mac[4], v_mac[5]);
b56ddc63 1599 return (0);
0b97ab14
WD
1600}
1601
d52fb7e3 1602int get_rom_mac (uchar *v_rom_mac)
0b97ab14 1603{
b56ddc63
WD
1604#ifdef HARDCODE_MAC /* used for testing or to supress run time warnings */
1605 char hw_mac_addr[] = { 0x02, 0x80, 0xad, 0x20, 0x31, 0xb8 };
0b97ab14 1606
b56ddc63
WD
1607 memcpy (v_rom_mac, hw_mac_addr, 6);
1608 return (1);
0b97ab14 1609#else
3d3befa7 1610 int i;
f39748ae
WD
1611 int valid_mac = 0;
1612
3d3befa7
WD
1613 SMC_SELECT_BANK (1);
1614 for (i=0; i<6; i++)
1615 {
39539887 1616 v_rom_mac[i] = SMC_inb ((ADDR0_REG + i));
f39748ae 1617 valid_mac |= v_rom_mac[i];
b56ddc63 1618 }
f39748ae
WD
1619
1620 return (valid_mac ? 1 : 0);
0b97ab14
WD
1621#endif
1622}
fe8c2806 1623#endif /* CONFIG_DRIVER_SMC91111 */