]>
Commit | Line | Data |
---|---|---|
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 <[email protected]> | |
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 | . | |
1a459660 | 13 | * SPDX-License-Identifier: GPL-2.0+ |
fe8c2806 WD |
14 | . |
15 | . Information contained in this file was obtained from the LAN91C111 | |
16 | . manual from SMC. To get a copy, if you really want one, you can find | |
17 | . information under www.smsc.com. | |
18 | . | |
19 | . | |
20 | . "Features" of the SMC chip: | |
21 | . Integrated PHY/MAC for 10/100BaseT Operation | |
22 | . Supports internal and external MII | |
23 | . Integrated 8K packet memory | |
24 | . EEPROM interface for configuration | |
25 | . | |
26 | . Arguments: | |
42dfe7a1 | 27 | . io = for the base address |
fe8c2806 WD |
28 | . irq = for the IRQ |
29 | . | |
30 | . author: | |
42dfe7a1 WD |
31 | . Erik Stahlman ( [email protected] ) |
32 | . Daris A Nevil ( [email protected] ) | |
fe8c2806 WD |
33 | . |
34 | . | |
35 | . Hardware multicast code from Peter Cammaert ( [email protected] ) | |
36 | . | |
37 | . Sources: | |
42dfe7a1 WD |
38 | . o SMSC LAN91C111 databook (www.smsc.com) |
39 | . o smc9194.c by Erik Stahlman | |
40 | . o skeleton.c by Donald Becker ( [email protected] ) | |
fe8c2806 WD |
41 | . |
42 | . History: | |
42dfe7a1 | 43 | . 06/19/03 Richard Woodruff Made u-boot environment aware and added mac addr checks. |
fe8c2806 | 44 | . 10/17/01 Marco Hasewinkel Modify for DNP/1110 |
42dfe7a1 WD |
45 | . 07/25/01 Woojung Huh Modify for ADS Bitsy |
46 | . 04/25/01 Daris A Nevil Initial public release through SMSC | |
47 | . 03/16/01 Daris A Nevil Modified smc9194.c for use with LAN91C111 | |
fe8c2806 WD |
48 | ----------------------------------------------------------------------------*/ |
49 | ||
50 | #include <common.h> | |
51 | #include <command.h> | |
f39748ae | 52 | #include <config.h> |
7194ab80 | 53 | #include <malloc.h> |
fe8c2806 WD |
54 | #include "smc91111.h" |
55 | #include <net.h> | |
56 | ||
fe8c2806 WD |
57 | /* Use power-down feature of the chip */ |
58 | #define POWER_DOWN 0 | |
59 | ||
60 | #define NO_AUTOPROBE | |
61 | ||
0be248fa | 62 | #define SMC_DEBUG 0 |
8bf3b005 WD |
63 | |
64 | #if SMC_DEBUG > 1 | |
fe8c2806 WD |
65 | static const char version[] = |
66 | "smc91111.c:v1.0 04/25/01 by Daris A Nevil ([email protected])\n"; | |
8bf3b005 | 67 | #endif |
fe8c2806 | 68 | |
f39748ae WD |
69 | /* Autonegotiation timeout in seconds */ |
70 | #ifndef CONFIG_SMC_AUTONEG_TIMEOUT | |
71 | #define CONFIG_SMC_AUTONEG_TIMEOUT 10 | |
72 | #endif | |
73 | ||
fe8c2806 WD |
74 | /*------------------------------------------------------------------------ |
75 | . | |
76 | . Configuration options, for the experienced user to change. | |
77 | . | |
78 | -------------------------------------------------------------------------*/ | |
79 | ||
80 | /* | |
81 | . Wait time for memory to be free. This probably shouldn't be | |
82 | . tuned that much, as waiting for this means nothing else happens | |
83 | . in the system | |
84 | */ | |
85 | #define MEMORY_WAIT_TIME 16 | |
86 | ||
87 | ||
88 | #if (SMC_DEBUG > 2 ) | |
89 | #define PRINTK3(args...) printf(args) | |
90 | #else | |
91 | #define PRINTK3(args...) | |
92 | #endif | |
93 | ||
94 | #if SMC_DEBUG > 1 | |
95 | #define PRINTK2(args...) printf(args) | |
96 | #else | |
97 | #define PRINTK2(args...) | |
98 | #endif | |
99 | ||
100 | #ifdef SMC_DEBUG | |
101 | #define PRINTK(args...) printf(args) | |
102 | #else | |
103 | #define PRINTK(args...) | |
104 | #endif | |
105 | ||
106 | ||
107 | /*------------------------------------------------------------------------ | |
108 | . | |
42dfe7a1 | 109 | . The internal workings of the driver. If you are changing anything |
fe8c2806 WD |
110 | . here with the SMC stuff, you should have the datasheet and know |
111 | . what you are doing. | |
112 | . | |
113 | -------------------------------------------------------------------------*/ | |
fe8c2806 WD |
114 | |
115 | /* Memory sizing constant */ | |
116 | #define LAN91C111_MEMORY_MULTIPLIER (1024*2) | |
117 | ||
118 | #ifndef CONFIG_SMC91111_BASE | |
7194ab80 BW |
119 | #error "SMC91111 Base address must be passed to initialization funciton" |
120 | /* #define CONFIG_SMC91111_BASE 0x20000300 */ | |
fe8c2806 WD |
121 | #endif |
122 | ||
fe8c2806 WD |
123 | #define SMC_DEV_NAME "SMC91111" |
124 | #define SMC_PHY_ADDR 0x0000 | |
125 | #define SMC_ALLOC_MAX_TRY 5 | |
126 | #define SMC_TX_TIMEOUT 30 | |
127 | ||
128 | #define SMC_PHY_CLOCK_DELAY 1000 | |
129 | ||
130 | #define ETH_ZLEN 60 | |
131 | ||
42dfe7a1 | 132 | #ifdef CONFIG_SMC_USE_32_BIT |
fe8c2806 WD |
133 | #define USE_32_BIT 1 |
134 | #else | |
135 | #undef USE_32_BIT | |
136 | #endif | |
fe8c2806 | 137 | |
0afe519a | 138 | #ifdef SHARED_RESOURCES |
7194ab80 BW |
139 | extern void swap_to(int device_id); |
140 | #else | |
141 | # define swap_to(x) | |
0afe519a | 142 | #endif |
fe8c2806 | 143 | |
fe8c2806 | 144 | #ifndef CONFIG_SMC91111_EXT_PHY |
7194ab80 | 145 | static void smc_phy_configure(struct eth_device *dev); |
fe8c2806 WD |
146 | #endif /* !CONFIG_SMC91111_EXT_PHY */ |
147 | ||
fe8c2806 WD |
148 | /* |
149 | ------------------------------------------------------------ | |
150 | . | |
151 | . Internal routines | |
152 | . | |
153 | ------------------------------------------------------------ | |
154 | */ | |
155 | ||
c3c7f861 WD |
156 | #ifdef CONFIG_SMC_USE_IOFUNCS |
157 | /* | |
158 | * input and output functions | |
159 | * | |
160 | * Implemented due to inx,outx macros accessing the device improperly | |
161 | * and putting the device into an unkown state. | |
162 | * | |
163 | * For instance, on Sharp LPD7A400 SDK, affects were chip memory | |
164 | * could not be free'd (hence the alloc failures), duplicate packets, | |
165 | * packets being corrupt (shifted) on the wire, etc. Switching to the | |
166 | * inx,outx functions fixed this problem. | |
167 | */ | |
c3c7f861 | 168 | |
7194ab80 | 169 | static inline word SMC_inw(struct eth_device *dev, dword offset) |
c3c7f861 WD |
170 | { |
171 | word v; | |
7194ab80 | 172 | v = *((volatile word*)(dev->iobase + offset)); |
c3c7f861 WD |
173 | barrier(); *(volatile u32*)(0xc0000000); |
174 | return v; | |
175 | } | |
176 | ||
7194ab80 | 177 | static inline void SMC_outw(struct eth_device *dev, word value, dword offset) |
c3c7f861 | 178 | { |
7194ab80 | 179 | *((volatile word*)(dev->iobase + offset)) = value; |
c3c7f861 WD |
180 | barrier(); *(volatile u32*)(0xc0000000); |
181 | } | |
182 | ||
7194ab80 | 183 | static inline byte SMC_inb(struct eth_device *dev, dword offset) |
c3c7f861 WD |
184 | { |
185 | word _w; | |
186 | ||
7194ab80 | 187 | _w = SMC_inw(dev, offset & ~((dword)1)); |
c3c7f861 WD |
188 | return (offset & 1) ? (byte)(_w >> 8) : (byte)(_w); |
189 | } | |
190 | ||
7194ab80 | 191 | static inline void SMC_outb(struct eth_device *dev, byte value, dword offset) |
c3c7f861 WD |
192 | { |
193 | word _w; | |
194 | ||
7194ab80 | 195 | _w = SMC_inw(dev, offset & ~((dword)1)); |
c3c7f861 | 196 | if (offset & 1) |
7194ab80 BW |
197 | *((volatile word*)(dev->iobase + (offset & ~((dword)1)))) = |
198 | (value<<8) | (_w & 0x00ff); | |
c3c7f861 | 199 | else |
7194ab80 BW |
200 | *((volatile word*)(dev->iobase + offset)) = |
201 | value | (_w & 0xff00); | |
c3c7f861 WD |
202 | } |
203 | ||
7194ab80 BW |
204 | static inline void SMC_insw(struct eth_device *dev, dword offset, |
205 | volatile uchar* buf, dword len) | |
c3c7f861 | 206 | { |
d52fb7e3 WD |
207 | volatile word *p = (volatile word *)buf; |
208 | ||
c3c7f861 | 209 | while (len-- > 0) { |
7194ab80 | 210 | *p++ = SMC_inw(dev, offset); |
d52fb7e3 WD |
211 | barrier(); |
212 | *((volatile u32*)(0xc0000000)); | |
c3c7f861 WD |
213 | } |
214 | } | |
215 | ||
7194ab80 BW |
216 | static inline void SMC_outsw(struct eth_device *dev, dword offset, |
217 | uchar* buf, dword len) | |
c3c7f861 | 218 | { |
d52fb7e3 WD |
219 | volatile word *p = (volatile word *)buf; |
220 | ||
c3c7f861 | 221 | while (len-- > 0) { |
7194ab80 | 222 | SMC_outw(dev, *p++, offset); |
d52fb7e3 WD |
223 | barrier(); |
224 | *(volatile u32*)(0xc0000000); | |
c3c7f861 WD |
225 | } |
226 | } | |
227 | #endif /* CONFIG_SMC_USE_IOFUNCS */ | |
228 | ||
fe8c2806 WD |
229 | /* |
230 | . A rather simple routine to print out a packet for debugging purposes. | |
231 | */ | |
232 | #if SMC_DEBUG > 2 | |
233 | static void print_packet( byte *, int ); | |
234 | #endif | |
235 | ||
236 | #define tx_done(dev) 1 | |
237 | ||
7194ab80 | 238 | static int poll4int (struct eth_device *dev, byte mask, int timeout) |
b56ddc63 | 239 | { |
6d0f6bcf | 240 | int tmo = get_timer (0) + timeout * CONFIG_SYS_HZ; |
b56ddc63 | 241 | int is_timeout = 0; |
7194ab80 | 242 | word old_bank = SMC_inw (dev, BSR_REG); |
b56ddc63 WD |
243 | |
244 | PRINTK2 ("Polling...\n"); | |
7194ab80 BW |
245 | SMC_SELECT_BANK (dev, 2); |
246 | while ((SMC_inw (dev, SMC91111_INT_REG) & mask) == 0) { | |
b56ddc63 WD |
247 | if (get_timer (0) >= tmo) { |
248 | is_timeout = 1; | |
249 | break; | |
250 | } | |
fe8c2806 | 251 | } |
fe8c2806 | 252 | |
b56ddc63 | 253 | /* restore old bank selection */ |
7194ab80 | 254 | SMC_SELECT_BANK (dev, old_bank); |
fe8c2806 | 255 | |
b56ddc63 WD |
256 | if (is_timeout) |
257 | return 1; | |
258 | else | |
259 | return 0; | |
fe8c2806 WD |
260 | } |
261 | ||
487778b7 | 262 | /* Only one release command at a time, please */ |
7194ab80 | 263 | static inline void smc_wait_mmu_release_complete (struct eth_device *dev) |
487778b7 WD |
264 | { |
265 | int count = 0; | |
b56ddc63 | 266 | |
487778b7 | 267 | /* assume bank 2 selected */ |
7194ab80 | 268 | while (SMC_inw (dev, MMU_CMD_REG) & MC_BUSY) { |
b56ddc63 WD |
269 | udelay (1); /* Wait until not busy */ |
270 | if (++count > 200) | |
271 | break; | |
487778b7 WD |
272 | } |
273 | } | |
274 | ||
fe8c2806 WD |
275 | /* |
276 | . Function: smc_reset( void ) | |
277 | . Purpose: | |
42dfe7a1 WD |
278 | . This sets the SMC91111 chip to its normal state, hopefully from whatever |
279 | . mess that any other DOS driver has put it in. | |
fe8c2806 WD |
280 | . |
281 | . Maybe I should reset more registers to defaults in here? SOFTRST should | |
282 | . do that for me. | |
283 | . | |
284 | . Method: | |
285 | . 1. send a SOFT RESET | |
286 | . 2. wait for it to finish | |
287 | . 3. enable autorelease mode | |
288 | . 4. reset the memory management unit | |
289 | . 5. clear all interrupts | |
290 | . | |
291 | */ | |
7194ab80 | 292 | static void smc_reset (struct eth_device *dev) |
fe8c2806 | 293 | { |
f39748ae | 294 | PRINTK2 ("%s: smc_reset\n", SMC_DEV_NAME); |
fe8c2806 WD |
295 | |
296 | /* This resets the registers mostly to defaults, but doesn't | |
297 | affect EEPROM. That seems unnecessary */ | |
7194ab80 BW |
298 | SMC_SELECT_BANK (dev, 0); |
299 | SMC_outw (dev, RCR_SOFTRST, RCR_REG); | |
fe8c2806 WD |
300 | |
301 | /* Setup the Configuration Register */ | |
302 | /* This is necessary because the CONFIG_REG is not affected */ | |
303 | /* by a soft reset */ | |
304 | ||
7194ab80 | 305 | SMC_SELECT_BANK (dev, 1); |
fe8c2806 | 306 | #if defined(CONFIG_SMC91111_EXT_PHY) |
7194ab80 | 307 | SMC_outw (dev, CONFIG_DEFAULT | CONFIG_EXT_PHY, CONFIG_REG); |
fe8c2806 | 308 | #else |
7194ab80 | 309 | SMC_outw (dev, CONFIG_DEFAULT, CONFIG_REG); |
fe8c2806 WD |
310 | #endif |
311 | ||
312 | ||
313 | /* Release from possible power-down state */ | |
314 | /* Configuration register is not affected by Soft Reset */ | |
7194ab80 BW |
315 | SMC_outw (dev, SMC_inw (dev, CONFIG_REG) | CONFIG_EPH_POWER_EN, |
316 | CONFIG_REG); | |
fe8c2806 | 317 | |
7194ab80 | 318 | SMC_SELECT_BANK (dev, 0); |
fe8c2806 WD |
319 | |
320 | /* this should pause enough for the chip to be happy */ | |
b56ddc63 | 321 | udelay (10); |
fe8c2806 WD |
322 | |
323 | /* Disable transmit and receive functionality */ | |
7194ab80 BW |
324 | SMC_outw (dev, RCR_CLEAR, RCR_REG); |
325 | SMC_outw (dev, TCR_CLEAR, TCR_REG); | |
fe8c2806 WD |
326 | |
327 | /* set the control register */ | |
7194ab80 BW |
328 | SMC_SELECT_BANK (dev, 1); |
329 | SMC_outw (dev, CTL_DEFAULT, CTL_REG); | |
fe8c2806 WD |
330 | |
331 | /* Reset the MMU */ | |
7194ab80 BW |
332 | SMC_SELECT_BANK (dev, 2); |
333 | smc_wait_mmu_release_complete (dev); | |
334 | SMC_outw (dev, MC_RESET, MMU_CMD_REG); | |
335 | while (SMC_inw (dev, MMU_CMD_REG) & MC_BUSY) | |
b56ddc63 | 336 | udelay (1); /* Wait until not busy */ |
fe8c2806 WD |
337 | |
338 | /* Note: It doesn't seem that waiting for the MMU busy is needed here, | |
339 | but this is a place where future chipsets _COULD_ break. Be wary | |
8bde7f77 | 340 | of issuing another MMU command right after this */ |
fe8c2806 WD |
341 | |
342 | /* Disable all interrupts */ | |
7194ab80 | 343 | SMC_outb (dev, 0, IM_REG); |
fe8c2806 WD |
344 | } |
345 | ||
346 | /* | |
347 | . Function: smc_enable | |
348 | . Purpose: let the chip talk to the outside work | |
349 | . Method: | |
350 | . 1. Enable the transmitter | |
351 | . 2. Enable the receiver | |
352 | . 3. Enable interrupts | |
353 | */ | |
7194ab80 | 354 | static void smc_enable(struct eth_device *dev) |
fe8c2806 | 355 | { |
f39748ae | 356 | PRINTK2("%s: smc_enable\n", SMC_DEV_NAME); |
7194ab80 | 357 | SMC_SELECT_BANK( dev, 0 ); |
fe8c2806 | 358 | /* see the header file for options in TCR/RCR DEFAULT*/ |
7194ab80 BW |
359 | SMC_outw( dev, TCR_DEFAULT, TCR_REG ); |
360 | SMC_outw( dev, RCR_DEFAULT, RCR_REG ); | |
fe8c2806 WD |
361 | |
362 | /* clear MII_DIS */ | |
363 | /* smc_write_phy_register(PHY_CNTL_REG, 0x0000); */ | |
364 | } | |
365 | ||
366 | /* | |
7194ab80 | 367 | . Function: smc_halt |
fe8c2806 WD |
368 | . Purpose: closes down the SMC91xxx chip. |
369 | . Method: | |
370 | . 1. zero the interrupt mask | |
371 | . 2. clear the enable receive flag | |
372 | . 3. clear the enable xmit flags | |
373 | . | |
374 | . TODO: | |
375 | . (1) maybe utilize power down mode. | |
376 | . Why not yet? Because while the chip will go into power down mode, | |
377 | . the manual says that it will wake up in response to any I/O requests | |
42dfe7a1 | 378 | . in the register space. Empirical results do not show this working. |
fe8c2806 | 379 | */ |
7194ab80 | 380 | static void smc_halt(struct eth_device *dev) |
fe8c2806 | 381 | { |
7194ab80 | 382 | PRINTK2("%s: smc_halt\n", SMC_DEV_NAME); |
fe8c2806 WD |
383 | |
384 | /* no more interrupts for me */ | |
7194ab80 BW |
385 | SMC_SELECT_BANK( dev, 2 ); |
386 | SMC_outb( dev, 0, IM_REG ); | |
fe8c2806 WD |
387 | |
388 | /* and tell the card to stay away from that nasty outside world */ | |
7194ab80 BW |
389 | SMC_SELECT_BANK( dev, 0 ); |
390 | SMC_outb( dev, RCR_CLEAR, RCR_REG ); | |
391 | SMC_outb( dev, TCR_CLEAR, TCR_REG ); | |
392 | ||
0afe519a | 393 | swap_to(FLASH); |
fe8c2806 WD |
394 | } |
395 | ||
396 | ||
397 | /* | |
7194ab80 | 398 | . Function: smc_send(struct net_device * ) |
fe8c2806 WD |
399 | . Purpose: |
400 | . This sends the actual packet to the SMC9xxx chip. | |
401 | . | |
402 | . Algorithm: | |
42dfe7a1 | 403 | . First, see if a saved_skb is available. |
fe8c2806 WD |
404 | . ( this should NOT be called if there is no 'saved_skb' |
405 | . Now, find the packet number that the chip allocated | |
406 | . Point the data pointers at it in memory | |
407 | . Set the length word in the chip's memory | |
408 | . Dump the packet to chip memory | |
409 | . Check if a last byte is needed ( odd length packet ) | |
410 | . if so, set the control flag right | |
42dfe7a1 | 411 | . Tell the card to send it |
fe8c2806 | 412 | . Enable the transmit interrupt, so I know if it failed |
42dfe7a1 | 413 | . Free the kernel data if I actually sent it. |
fe8c2806 | 414 | */ |
9f098640 | 415 | static int smc_send(struct eth_device *dev, void *packet, int packet_length) |
fe8c2806 | 416 | { |
b56ddc63 | 417 | byte packet_no; |
b56ddc63 WD |
418 | byte *buf; |
419 | int length; | |
420 | int numPages; | |
421 | int try = 0; | |
422 | int time_out; | |
423 | byte status; | |
518e2e1a WD |
424 | byte saved_pnr; |
425 | word saved_ptr; | |
fe8c2806 | 426 | |
518e2e1a | 427 | /* save PTR and PNR registers before manipulation */ |
7194ab80 BW |
428 | SMC_SELECT_BANK (dev, 2); |
429 | saved_pnr = SMC_inb( dev, PN_REG ); | |
430 | saved_ptr = SMC_inw( dev, PTR_REG ); | |
fe8c2806 | 431 | |
f39748ae | 432 | PRINTK3 ("%s: smc_hardware_send_packet\n", SMC_DEV_NAME); |
fe8c2806 WD |
433 | |
434 | length = ETH_ZLEN < packet_length ? packet_length : ETH_ZLEN; | |
435 | ||
436 | /* allocate memory | |
b56ddc63 WD |
437 | ** The MMU wants the number of pages to be the number of 256 bytes |
438 | ** 'pages', minus 1 ( since a packet can't ever have 0 pages :) ) | |
439 | ** | |
440 | ** The 91C111 ignores the size bits, but the code is left intact | |
441 | ** for backwards and future compatibility. | |
442 | ** | |
443 | ** Pkt size for allocating is data length +6 (for additional status | |
444 | ** words, length and ctl!) | |
445 | ** | |
446 | ** If odd size then last byte is included in this header. | |
447 | */ | |
448 | numPages = ((length & 0xfffe) + 6); | |
449 | numPages >>= 8; /* Divide by 256 */ | |
450 | ||
451 | if (numPages > 7) { | |
452 | printf ("%s: Far too big packet error. \n", SMC_DEV_NAME); | |
fe8c2806 WD |
453 | return 0; |
454 | } | |
455 | ||
456 | /* now, try to allocate the memory */ | |
7194ab80 BW |
457 | SMC_SELECT_BANK (dev, 2); |
458 | SMC_outw (dev, MC_ALLOC | numPages, MMU_CMD_REG); | |
fe8c2806 | 459 | |
dc7c9a1a | 460 | /* FIXME: the ALLOC_INT bit never gets set * |
42dfe7a1 WD |
461 | * so the following will always give a * |
462 | * memory allocation error. * | |
463 | * same code works in armboot though * | |
dc7c9a1a WD |
464 | * -ro |
465 | */ | |
466 | ||
fe8c2806 WD |
467 | again: |
468 | try++; | |
469 | time_out = MEMORY_WAIT_TIME; | |
470 | do { | |
7194ab80 | 471 | status = SMC_inb (dev, SMC91111_INT_REG); |
b56ddc63 | 472 | if (status & IM_ALLOC_INT) { |
fe8c2806 | 473 | /* acknowledge the interrupt */ |
7194ab80 | 474 | SMC_outb (dev, IM_ALLOC_INT, SMC91111_INT_REG); |
8bde7f77 | 475 | break; |
fe8c2806 | 476 | } |
b56ddc63 WD |
477 | } while (--time_out); |
478 | ||
479 | if (!time_out) { | |
480 | PRINTK2 ("%s: memory allocation, try %d failed ...\n", | |
481 | SMC_DEV_NAME, try); | |
482 | if (try < SMC_ALLOC_MAX_TRY) | |
483 | goto again; | |
484 | else | |
485 | return 0; | |
fe8c2806 WD |
486 | } |
487 | ||
b56ddc63 WD |
488 | PRINTK2 ("%s: memory allocation, try %d succeeded ...\n", |
489 | SMC_DEV_NAME, try); | |
fe8c2806 | 490 | |
b56ddc63 | 491 | buf = (byte *) packet; |
fe8c2806 WD |
492 | |
493 | /* If I get here, I _know_ there is a packet slot waiting for me */ | |
7194ab80 | 494 | packet_no = SMC_inb (dev, AR_REG); |
b56ddc63 | 495 | if (packet_no & AR_FAILED) { |
fe8c2806 | 496 | /* or isn't there? BAD CHIP! */ |
b56ddc63 | 497 | printf ("%s: Memory allocation failed. \n", SMC_DEV_NAME); |
fe8c2806 WD |
498 | return 0; |
499 | } | |
500 | ||
501 | /* we have a packet address, so tell the card to use it */ | |
7194ab80 | 502 | SMC_outb (dev, packet_no, PN_REG); |
1c87dd76 | 503 | |
b79a11cc WD |
504 | /* do not write new ptr value if Write data fifo not empty */ |
505 | while ( saved_ptr & PTR_NOTEMPTY ) | |
518e2e1a WD |
506 | printf ("Write data fifo not empty!\n"); |
507 | ||
fe8c2806 | 508 | /* point to the beginning of the packet */ |
7194ab80 | 509 | SMC_outw (dev, PTR_AUTOINC, PTR_REG); |
fe8c2806 | 510 | |
b56ddc63 WD |
511 | PRINTK3 ("%s: Trying to xmit packet of length %x\n", |
512 | SMC_DEV_NAME, length); | |
fe8c2806 WD |
513 | |
514 | #if SMC_DEBUG > 2 | |
b56ddc63 WD |
515 | printf ("Transmitting Packet\n"); |
516 | print_packet (buf, length); | |
fe8c2806 WD |
517 | #endif |
518 | ||
519 | /* send the packet length ( +6 for status, length and ctl byte ) | |
8bde7f77 | 520 | and the status word ( set to zeros ) */ |
fe8c2806 | 521 | #ifdef USE_32_BIT |
7194ab80 | 522 | SMC_outl (dev, (length + 6) << 16, SMC91111_DATA_REG); |
fe8c2806 | 523 | #else |
7194ab80 | 524 | SMC_outw (dev, 0, SMC91111_DATA_REG); |
b56ddc63 | 525 | /* send the packet length ( +6 for status words, length, and ctl */ |
7194ab80 | 526 | SMC_outw (dev, (length + 6), SMC91111_DATA_REG); |
fe8c2806 WD |
527 | #endif |
528 | ||
529 | /* send the actual data | |
b56ddc63 WD |
530 | . I _think_ it's faster to send the longs first, and then |
531 | . mop up by sending the last word. It depends heavily | |
42dfe7a1 | 532 | . on alignment, at least on the 486. Maybe it would be |
b56ddc63 WD |
533 | . a good idea to check which is optimal? But that could take |
534 | . almost as much time as is saved? | |
535 | */ | |
fe8c2806 | 536 | #ifdef USE_32_BIT |
7194ab80 | 537 | SMC_outsl (dev, SMC91111_DATA_REG, buf, length >> 2); |
b56ddc63 | 538 | if (length & 0x2) |
7194ab80 | 539 | SMC_outw (dev, *((word *) (buf + (length & 0xFFFFFFFC))), |
b56ddc63 | 540 | SMC91111_DATA_REG); |
fe8c2806 | 541 | #else |
7194ab80 | 542 | SMC_outsw (dev, SMC91111_DATA_REG, buf, (length) >> 1); |
fe8c2806 WD |
543 | #endif /* USE_32_BIT */ |
544 | ||
42dfe7a1 | 545 | /* Send the last byte, if there is one. */ |
b56ddc63 | 546 | if ((length & 1) == 0) { |
7194ab80 | 547 | SMC_outw (dev, 0, SMC91111_DATA_REG); |
fe8c2806 | 548 | } else { |
7194ab80 | 549 | SMC_outw (dev, buf[length - 1] | 0x2000, SMC91111_DATA_REG); |
fe8c2806 WD |
550 | } |
551 | ||
552 | /* and let the chipset deal with it */ | |
7194ab80 | 553 | SMC_outw (dev, MC_ENQUEUE, MMU_CMD_REG); |
fe8c2806 WD |
554 | |
555 | /* poll for TX INT */ | |
7194ab80 | 556 | /* if (poll4int (dev, IM_TX_INT, SMC_TX_TIMEOUT)) { */ |
518e2e1a | 557 | /* poll for TX_EMPTY INT - autorelease enabled */ |
7194ab80 | 558 | if (poll4int(dev, IM_TX_EMPTY_INT, SMC_TX_TIMEOUT)) { |
fe8c2806 | 559 | /* sending failed */ |
b56ddc63 | 560 | PRINTK2 ("%s: TX timeout, sending failed...\n", SMC_DEV_NAME); |
fe8c2806 WD |
561 | |
562 | /* release packet */ | |
518e2e1a | 563 | /* no need to release, MMU does that now */ |
fe8c2806 | 564 | |
8bde7f77 | 565 | /* wait for MMU getting ready (low) */ |
7194ab80 | 566 | while (SMC_inw (dev, MMU_CMD_REG) & MC_BUSY) { |
b56ddc63 | 567 | udelay (10); |
8bde7f77 | 568 | } |
fe8c2806 | 569 | |
b56ddc63 | 570 | PRINTK2 ("MMU ready\n"); |
fe8c2806 WD |
571 | |
572 | ||
573 | return 0; | |
574 | } else { | |
575 | /* ack. int */ | |
7194ab80 | 576 | SMC_outb (dev, IM_TX_EMPTY_INT, SMC91111_INT_REG); |
518e2e1a | 577 | /* SMC_outb (IM_TX_INT, SMC91111_INT_REG); */ |
b56ddc63 WD |
578 | PRINTK2 ("%s: Sent packet of length %d \n", SMC_DEV_NAME, |
579 | length); | |
fe8c2806 WD |
580 | |
581 | /* release packet */ | |
518e2e1a | 582 | /* no need to release, MMU does that now */ |
fe8c2806 | 583 | |
8bde7f77 | 584 | /* wait for MMU getting ready (low) */ |
7194ab80 | 585 | while (SMC_inw (dev, MMU_CMD_REG) & MC_BUSY) { |
b56ddc63 | 586 | udelay (10); |
8bde7f77 | 587 | } |
fe8c2806 | 588 | |
b56ddc63 | 589 | PRINTK2 ("MMU ready\n"); |
fe8c2806 WD |
590 | |
591 | ||
592 | } | |
593 | ||
518e2e1a | 594 | /* restore previously saved registers */ |
7194ab80 | 595 | SMC_outb( dev, saved_pnr, PN_REG ); |
7194ab80 | 596 | SMC_outw( dev, saved_ptr, PTR_REG ); |
518e2e1a | 597 | |
fe8c2806 WD |
598 | return length; |
599 | } | |
600 | ||
1ca6d0df TC |
601 | static int smc_write_hwaddr(struct eth_device *dev) |
602 | { | |
603 | int i; | |
604 | ||
605 | swap_to(ETHERNET); | |
606 | SMC_SELECT_BANK (dev, 1); | |
607 | #ifdef USE_32_BIT | |
608 | for (i = 0; i < 6; i += 2) { | |
609 | word address; | |
610 | ||
611 | address = dev->enetaddr[i + 1] << 8; | |
612 | address |= dev->enetaddr[i]; | |
613 | SMC_outw(dev, address, (ADDR0_REG + i)); | |
614 | } | |
615 | #else | |
616 | for (i = 0; i < 6; i++) | |
617 | SMC_outb(dev, dev->enetaddr[i], (ADDR0_REG + i)); | |
618 | #endif | |
619 | swap_to(FLASH); | |
620 | return 0; | |
621 | } | |
622 | ||
fe8c2806 WD |
623 | /* |
624 | * Open and Initialize the board | |
625 | * | |
626 | * Set up everything, reset the card, etc .. | |
627 | * | |
628 | */ | |
7194ab80 | 629 | static int smc_init(struct eth_device *dev, bd_t *bd) |
fe8c2806 | 630 | { |
7194ab80 BW |
631 | swap_to(ETHERNET); |
632 | ||
633 | PRINTK2 ("%s: smc_init\n", SMC_DEV_NAME); | |
fe8c2806 WD |
634 | |
635 | /* reset the hardware */ | |
7194ab80 BW |
636 | smc_reset (dev); |
637 | smc_enable (dev); | |
fe8c2806 WD |
638 | |
639 | /* Configure the PHY */ | |
640 | #ifndef CONFIG_SMC91111_EXT_PHY | |
7194ab80 | 641 | smc_phy_configure (dev); |
fe8c2806 WD |
642 | #endif |
643 | ||
fe8c2806 | 644 | /* conservative setting (10Mbps, HalfDuplex, no AutoNeg.) */ |
7194ab80 BW |
645 | /* SMC_SELECT_BANK(dev, 0); */ |
646 | /* SMC_outw(dev, 0, RPC_REG); */ | |
fe8c2806 | 647 | |
7194ab80 BW |
648 | printf(SMC_DEV_NAME ": MAC %pM\n", dev->enetaddr); |
649 | ||
fe8c2806 WD |
650 | return 0; |
651 | } | |
652 | ||
fe8c2806 WD |
653 | /*------------------------------------------------------------- |
654 | . | |
655 | . smc_rcv - receive a packet from the card | |
656 | . | |
657 | . There is ( at least ) a packet waiting to be read from | |
658 | . chip-memory. | |
659 | . | |
660 | . o Read the status | |
661 | . o If an error, record it | |
662 | . o otherwise, read in the packet | |
663 | -------------------------------------------------------------- | |
664 | */ | |
7194ab80 | 665 | static int smc_rcv(struct eth_device *dev) |
fe8c2806 | 666 | { |
42dfe7a1 | 667 | int packet_number; |
fe8c2806 WD |
668 | word status; |
669 | word packet_length; | |
42dfe7a1 | 670 | int is_error = 0; |
fe8c2806 WD |
671 | #ifdef USE_32_BIT |
672 | dword stat_len; | |
673 | #endif | |
518e2e1a WD |
674 | byte saved_pnr; |
675 | word saved_ptr; | |
fe8c2806 | 676 | |
7194ab80 | 677 | SMC_SELECT_BANK(dev, 2); |
518e2e1a | 678 | /* save PTR and PTR registers */ |
7194ab80 BW |
679 | saved_pnr = SMC_inb( dev, PN_REG ); |
680 | saved_ptr = SMC_inw( dev, PTR_REG ); | |
518e2e1a | 681 | |
7194ab80 | 682 | packet_number = SMC_inw( dev, RXFIFO_REG ); |
fe8c2806 WD |
683 | |
684 | if ( packet_number & RXFIFO_REMPTY ) { | |
685 | ||
686 | return 0; | |
687 | } | |
688 | ||
f39748ae | 689 | PRINTK3("%s: smc_rcv\n", SMC_DEV_NAME); |
fe8c2806 | 690 | /* start reading from the start of the packet */ |
7194ab80 | 691 | SMC_outw( dev, PTR_READ | PTR_RCV | PTR_AUTOINC, PTR_REG ); |
fe8c2806 WD |
692 | |
693 | /* First two words are status and packet_length */ | |
694 | #ifdef USE_32_BIT | |
7194ab80 | 695 | stat_len = SMC_inl(dev, SMC91111_DATA_REG); |
fe8c2806 WD |
696 | status = stat_len & 0xffff; |
697 | packet_length = stat_len >> 16; | |
698 | #else | |
7194ab80 BW |
699 | status = SMC_inw( dev, SMC91111_DATA_REG ); |
700 | packet_length = SMC_inw( dev, SMC91111_DATA_REG ); | |
fe8c2806 WD |
701 | #endif |
702 | ||
703 | packet_length &= 0x07ff; /* mask off top bits */ | |
704 | ||
705 | PRINTK2("RCV: STATUS %4x LENGTH %4x\n", status, packet_length ); | |
706 | ||
707 | if ( !(status & RS_ERRORS ) ){ | |
708 | /* Adjust for having already read the first two words */ | |
709 | packet_length -= 4; /*4; */ | |
710 | ||
711 | ||
fe8c2806 WD |
712 | /* set odd length for bug in LAN91C111, */ |
713 | /* which never sets RS_ODDFRAME */ | |
714 | /* TODO ? */ | |
715 | ||
716 | ||
717 | #ifdef USE_32_BIT | |
1fd92db8 | 718 | PRINTK3(" Reading %d dwords (and %d bytes)\n", |
fe8c2806 WD |
719 | packet_length >> 2, packet_length & 3 ); |
720 | /* QUESTION: Like in the TX routine, do I want | |
721 | to send the DWORDs or the bytes first, or some | |
722 | mixture. A mixture might improve already slow PIO | |
42dfe7a1 | 723 | performance */ |
1fd92db8 JH |
724 | SMC_insl(dev, SMC91111_DATA_REG, net_rx_packets[0], |
725 | packet_length >> 2); | |
fe8c2806 WD |
726 | /* read the left over bytes */ |
727 | if (packet_length & 3) { | |
728 | int i; | |
729 | ||
1fd92db8 | 730 | byte *tail = (byte *)(net_rx_packets[0] + |
7194ab80 BW |
731 | (packet_length & ~3)); |
732 | dword leftover = SMC_inl(dev, SMC91111_DATA_REG); | |
fe8c2806 WD |
733 | for (i=0; i<(packet_length & 3); i++) |
734 | *tail++ = (byte) (leftover >> (8*i)) & 0xff; | |
735 | } | |
736 | #else | |
1fd92db8 | 737 | PRINTK3(" Reading %d words and %d byte(s)\n", |
fe8c2806 | 738 | (packet_length >> 1 ), packet_length & 1 ); |
1fd92db8 JH |
739 | SMC_insw(dev, SMC91111_DATA_REG , net_rx_packets[0], |
740 | packet_length >> 1); | |
fe8c2806 WD |
741 | |
742 | #endif /* USE_32_BIT */ | |
743 | ||
744 | #if SMC_DEBUG > 2 | |
745 | printf("Receiving Packet\n"); | |
1fd92db8 | 746 | print_packet(net_rx_packets[0], packet_length); |
fe8c2806 WD |
747 | #endif |
748 | } else { | |
749 | /* error ... */ | |
750 | /* TODO ? */ | |
751 | is_error = 1; | |
752 | } | |
753 | ||
7194ab80 | 754 | while ( SMC_inw( dev, MMU_CMD_REG ) & MC_BUSY ) |
fe8c2806 WD |
755 | udelay(1); /* Wait until not busy */ |
756 | ||
757 | /* error or good, tell the card to get rid of this packet */ | |
7194ab80 | 758 | SMC_outw( dev, MC_RELEASE, MMU_CMD_REG ); |
fe8c2806 | 759 | |
7194ab80 | 760 | while ( SMC_inw( dev, MMU_CMD_REG ) & MC_BUSY ) |
fe8c2806 WD |
761 | udelay(1); /* Wait until not busy */ |
762 | ||
518e2e1a | 763 | /* restore saved registers */ |
7194ab80 | 764 | SMC_outb( dev, saved_pnr, PN_REG ); |
7194ab80 | 765 | SMC_outw( dev, saved_ptr, PTR_REG ); |
518e2e1a | 766 | |
fe8c2806 WD |
767 | if (!is_error) { |
768 | /* Pass the packet up to the protocol layers. */ | |
1fd92db8 | 769 | net_process_received_packet(net_rx_packets[0], packet_length); |
fe8c2806 WD |
770 | return packet_length; |
771 | } else { | |
772 | return 0; | |
773 | } | |
774 | ||
775 | } | |
776 | ||
777 | ||
fe8c2806 WD |
778 | #if 0 |
779 | /*------------------------------------------------------------ | |
780 | . Modify a bit in the LAN91C111 register set | |
781 | .-------------------------------------------------------------*/ | |
7194ab80 | 782 | static word smc_modify_regbit(struct eth_device *dev, int bank, int ioaddr, int reg, |
fe8c2806 WD |
783 | unsigned int bit, int val) |
784 | { | |
785 | word regval; | |
786 | ||
7194ab80 | 787 | SMC_SELECT_BANK( dev, bank ); |
fe8c2806 | 788 | |
7194ab80 | 789 | regval = SMC_inw( dev, reg ); |
fe8c2806 WD |
790 | if (val) |
791 | regval |= bit; | |
792 | else | |
793 | regval &= ~bit; | |
794 | ||
7194ab80 | 795 | SMC_outw( dev, regval, 0 ); |
fe8c2806 WD |
796 | return(regval); |
797 | } | |
798 | ||
799 | ||
800 | /*------------------------------------------------------------ | |
801 | . Retrieve a bit in the LAN91C111 register set | |
802 | .-------------------------------------------------------------*/ | |
7194ab80 | 803 | static int smc_get_regbit(struct eth_device *dev, int bank, int ioaddr, int reg, unsigned int bit) |
fe8c2806 | 804 | { |
7194ab80 BW |
805 | SMC_SELECT_BANK( dev, bank ); |
806 | if ( SMC_inw( dev, reg ) & bit) | |
fe8c2806 WD |
807 | return(1); |
808 | else | |
809 | return(0); | |
810 | } | |
811 | ||
812 | ||
813 | /*------------------------------------------------------------ | |
814 | . Modify a LAN91C111 register (word access only) | |
815 | .-------------------------------------------------------------*/ | |
7194ab80 | 816 | static void smc_modify_reg(struct eth_device *dev, int bank, int ioaddr, int reg, word val) |
fe8c2806 | 817 | { |
7194ab80 BW |
818 | SMC_SELECT_BANK( dev, bank ); |
819 | SMC_outw( dev, val, reg ); | |
fe8c2806 WD |
820 | } |
821 | ||
822 | ||
823 | /*------------------------------------------------------------ | |
824 | . Retrieve a LAN91C111 register (word access only) | |
825 | .-------------------------------------------------------------*/ | |
7194ab80 | 826 | static int smc_get_reg(struct eth_device *dev, int bank, int ioaddr, int reg) |
fe8c2806 | 827 | { |
7194ab80 BW |
828 | SMC_SELECT_BANK( dev, bank ); |
829 | return(SMC_inw( dev, reg )); | |
fe8c2806 WD |
830 | } |
831 | ||
832 | #endif /* 0 */ | |
833 | ||
834 | /*---PHY CONTROL AND CONFIGURATION----------------------------------------- */ | |
835 | ||
836 | #if (SMC_DEBUG > 2 ) | |
837 | ||
838 | /*------------------------------------------------------------ | |
839 | . Debugging function for viewing MII Management serial bitstream | |
840 | .-------------------------------------------------------------*/ | |
b56ddc63 | 841 | static void smc_dump_mii_stream (byte * bits, int size) |
fe8c2806 WD |
842 | { |
843 | int i; | |
844 | ||
b56ddc63 WD |
845 | printf ("BIT#:"); |
846 | for (i = 0; i < size; ++i) { | |
847 | printf ("%d", i % 10); | |
848 | } | |
fe8c2806 | 849 | |
b56ddc63 WD |
850 | printf ("\nMDOE:"); |
851 | for (i = 0; i < size; ++i) { | |
fe8c2806 | 852 | if (bits[i] & MII_MDOE) |
b56ddc63 | 853 | printf ("1"); |
fe8c2806 | 854 | else |
b56ddc63 WD |
855 | printf ("0"); |
856 | } | |
fe8c2806 | 857 | |
b56ddc63 WD |
858 | printf ("\nMDO :"); |
859 | for (i = 0; i < size; ++i) { | |
fe8c2806 | 860 | if (bits[i] & MII_MDO) |
b56ddc63 | 861 | printf ("1"); |
fe8c2806 | 862 | else |
b56ddc63 WD |
863 | printf ("0"); |
864 | } | |
fe8c2806 | 865 | |
b56ddc63 WD |
866 | printf ("\nMDI :"); |
867 | for (i = 0; i < size; ++i) { | |
fe8c2806 | 868 | if (bits[i] & MII_MDI) |
b56ddc63 | 869 | printf ("1"); |
fe8c2806 | 870 | else |
b56ddc63 WD |
871 | printf ("0"); |
872 | } | |
fe8c2806 | 873 | |
b56ddc63 | 874 | printf ("\n"); |
fe8c2806 WD |
875 | } |
876 | #endif | |
877 | ||
878 | /*------------------------------------------------------------ | |
879 | . Reads a register from the MII Management serial interface | |
880 | .-------------------------------------------------------------*/ | |
881 | #ifndef CONFIG_SMC91111_EXT_PHY | |
7194ab80 | 882 | static word smc_read_phy_register (struct eth_device *dev, byte phyreg) |
fe8c2806 WD |
883 | { |
884 | int oldBank; | |
885 | int i; | |
886 | byte mask; | |
887 | word mii_reg; | |
888 | byte bits[64]; | |
889 | int clk_idx = 0; | |
890 | int input_idx; | |
891 | word phydata; | |
892 | byte phyaddr = SMC_PHY_ADDR; | |
893 | ||
894 | /* 32 consecutive ones on MDO to establish sync */ | |
895 | for (i = 0; i < 32; ++i) | |
896 | bits[clk_idx++] = MII_MDOE | MII_MDO; | |
897 | ||
898 | /* Start code <01> */ | |
899 | bits[clk_idx++] = MII_MDOE; | |
900 | bits[clk_idx++] = MII_MDOE | MII_MDO; | |
901 | ||
902 | /* Read command <10> */ | |
903 | bits[clk_idx++] = MII_MDOE | MII_MDO; | |
904 | bits[clk_idx++] = MII_MDOE; | |
905 | ||
906 | /* Output the PHY address, msb first */ | |
b56ddc63 WD |
907 | mask = (byte) 0x10; |
908 | for (i = 0; i < 5; ++i) { | |
fe8c2806 WD |
909 | if (phyaddr & mask) |
910 | bits[clk_idx++] = MII_MDOE | MII_MDO; | |
911 | else | |
912 | bits[clk_idx++] = MII_MDOE; | |
913 | ||
914 | /* Shift to next lowest bit */ | |
915 | mask >>= 1; | |
b56ddc63 | 916 | } |
fe8c2806 WD |
917 | |
918 | /* Output the phy register number, msb first */ | |
b56ddc63 WD |
919 | mask = (byte) 0x10; |
920 | for (i = 0; i < 5; ++i) { | |
fe8c2806 WD |
921 | if (phyreg & mask) |
922 | bits[clk_idx++] = MII_MDOE | MII_MDO; | |
923 | else | |
924 | bits[clk_idx++] = MII_MDOE; | |
925 | ||
926 | /* Shift to next lowest bit */ | |
927 | mask >>= 1; | |
b56ddc63 | 928 | } |
fe8c2806 WD |
929 | |
930 | /* Tristate and turnaround (2 bit times) */ | |
931 | bits[clk_idx++] = 0; | |
932 | /*bits[clk_idx++] = 0; */ | |
933 | ||
934 | /* Input starts at this bit time */ | |
935 | input_idx = clk_idx; | |
936 | ||
937 | /* Will input 16 bits */ | |
938 | for (i = 0; i < 16; ++i) | |
939 | bits[clk_idx++] = 0; | |
940 | ||
941 | /* Final clock bit */ | |
942 | bits[clk_idx++] = 0; | |
943 | ||
944 | /* Save the current bank */ | |
7194ab80 | 945 | oldBank = SMC_inw (dev, BANK_SELECT); |
fe8c2806 WD |
946 | |
947 | /* Select bank 3 */ | |
7194ab80 | 948 | SMC_SELECT_BANK (dev, 3); |
fe8c2806 WD |
949 | |
950 | /* Get the current MII register value */ | |
7194ab80 | 951 | mii_reg = SMC_inw (dev, MII_REG); |
fe8c2806 WD |
952 | |
953 | /* Turn off all MII Interface bits */ | |
b56ddc63 | 954 | mii_reg &= ~(MII_MDOE | MII_MCLK | MII_MDI | MII_MDO); |
fe8c2806 WD |
955 | |
956 | /* Clock all 64 cycles */ | |
b56ddc63 | 957 | for (i = 0; i < sizeof bits; ++i) { |
fe8c2806 | 958 | /* Clock Low - output data */ |
7194ab80 | 959 | SMC_outw (dev, mii_reg | bits[i], MII_REG); |
b56ddc63 | 960 | udelay (SMC_PHY_CLOCK_DELAY); |
fe8c2806 WD |
961 | |
962 | ||
963 | /* Clock Hi - input data */ | |
7194ab80 | 964 | SMC_outw (dev, mii_reg | bits[i] | MII_MCLK, MII_REG); |
b56ddc63 | 965 | udelay (SMC_PHY_CLOCK_DELAY); |
7194ab80 | 966 | bits[i] |= SMC_inw (dev, MII_REG) & MII_MDI; |
b56ddc63 | 967 | } |
fe8c2806 WD |
968 | |
969 | /* Return to idle state */ | |
970 | /* Set clock to low, data to low, and output tristated */ | |
7194ab80 | 971 | SMC_outw (dev, mii_reg, MII_REG); |
b56ddc63 | 972 | udelay (SMC_PHY_CLOCK_DELAY); |
fe8c2806 WD |
973 | |
974 | /* Restore original bank select */ | |
7194ab80 | 975 | SMC_SELECT_BANK (dev, oldBank); |
fe8c2806 WD |
976 | |
977 | /* Recover input data */ | |
978 | phydata = 0; | |
b56ddc63 | 979 | for (i = 0; i < 16; ++i) { |
fe8c2806 WD |
980 | phydata <<= 1; |
981 | ||
982 | if (bits[input_idx++] & MII_MDI) | |
983 | phydata |= 0x0001; | |
b56ddc63 | 984 | } |
fe8c2806 WD |
985 | |
986 | #if (SMC_DEBUG > 2 ) | |
b56ddc63 | 987 | printf ("smc_read_phy_register(): phyaddr=%x,phyreg=%x,phydata=%x\n", |
fe8c2806 | 988 | phyaddr, phyreg, phydata); |
b56ddc63 | 989 | smc_dump_mii_stream (bits, sizeof bits); |
fe8c2806 WD |
990 | #endif |
991 | ||
b56ddc63 | 992 | return (phydata); |
fe8c2806 WD |
993 | } |
994 | ||
995 | ||
996 | /*------------------------------------------------------------ | |
997 | . Writes a register to the MII Management serial interface | |
998 | .-------------------------------------------------------------*/ | |
7194ab80 BW |
999 | static void smc_write_phy_register (struct eth_device *dev, byte phyreg, |
1000 | word phydata) | |
fe8c2806 WD |
1001 | { |
1002 | int oldBank; | |
1003 | int i; | |
1004 | word mask; | |
1005 | word mii_reg; | |
1006 | byte bits[65]; | |
1007 | int clk_idx = 0; | |
1008 | byte phyaddr = SMC_PHY_ADDR; | |
1009 | ||
1010 | /* 32 consecutive ones on MDO to establish sync */ | |
1011 | for (i = 0; i < 32; ++i) | |
1012 | bits[clk_idx++] = MII_MDOE | MII_MDO; | |
1013 | ||
1014 | /* Start code <01> */ | |
1015 | bits[clk_idx++] = MII_MDOE; | |
1016 | bits[clk_idx++] = MII_MDOE | MII_MDO; | |
1017 | ||
1018 | /* Write command <01> */ | |
1019 | bits[clk_idx++] = MII_MDOE; | |
1020 | bits[clk_idx++] = MII_MDOE | MII_MDO; | |
1021 | ||
1022 | /* Output the PHY address, msb first */ | |
b56ddc63 WD |
1023 | mask = (byte) 0x10; |
1024 | for (i = 0; i < 5; ++i) { | |
fe8c2806 WD |
1025 | if (phyaddr & mask) |
1026 | bits[clk_idx++] = MII_MDOE | MII_MDO; | |
1027 | else | |
1028 | bits[clk_idx++] = MII_MDOE; | |
1029 | ||
1030 | /* Shift to next lowest bit */ | |
1031 | mask >>= 1; | |
b56ddc63 | 1032 | } |
fe8c2806 WD |
1033 | |
1034 | /* Output the phy register number, msb first */ | |
b56ddc63 WD |
1035 | mask = (byte) 0x10; |
1036 | for (i = 0; i < 5; ++i) { | |
fe8c2806 WD |
1037 | if (phyreg & mask) |
1038 | bits[clk_idx++] = MII_MDOE | MII_MDO; | |
1039 | else | |
1040 | bits[clk_idx++] = MII_MDOE; | |
1041 | ||
1042 | /* Shift to next lowest bit */ | |
1043 | mask >>= 1; | |
b56ddc63 | 1044 | } |
fe8c2806 WD |
1045 | |
1046 | /* Tristate and turnaround (2 bit times) */ | |
1047 | bits[clk_idx++] = 0; | |
1048 | bits[clk_idx++] = 0; | |
1049 | ||
1050 | /* Write out 16 bits of data, msb first */ | |
1051 | mask = 0x8000; | |
b56ddc63 | 1052 | for (i = 0; i < 16; ++i) { |
fe8c2806 WD |
1053 | if (phydata & mask) |
1054 | bits[clk_idx++] = MII_MDOE | MII_MDO; | |
1055 | else | |
1056 | bits[clk_idx++] = MII_MDOE; | |
1057 | ||
1058 | /* Shift to next lowest bit */ | |
1059 | mask >>= 1; | |
b56ddc63 | 1060 | } |
fe8c2806 WD |
1061 | |
1062 | /* Final clock bit (tristate) */ | |
1063 | bits[clk_idx++] = 0; | |
1064 | ||
1065 | /* Save the current bank */ | |
7194ab80 | 1066 | oldBank = SMC_inw (dev, BANK_SELECT); |
fe8c2806 WD |
1067 | |
1068 | /* Select bank 3 */ | |
7194ab80 | 1069 | SMC_SELECT_BANK (dev, 3); |
fe8c2806 WD |
1070 | |
1071 | /* Get the current MII register value */ | |
7194ab80 | 1072 | mii_reg = SMC_inw (dev, MII_REG); |
fe8c2806 WD |
1073 | |
1074 | /* Turn off all MII Interface bits */ | |
b56ddc63 | 1075 | mii_reg &= ~(MII_MDOE | MII_MCLK | MII_MDI | MII_MDO); |
fe8c2806 WD |
1076 | |
1077 | /* Clock all cycles */ | |
b56ddc63 | 1078 | for (i = 0; i < sizeof bits; ++i) { |
fe8c2806 | 1079 | /* Clock Low - output data */ |
7194ab80 | 1080 | SMC_outw (dev, mii_reg | bits[i], MII_REG); |
b56ddc63 | 1081 | udelay (SMC_PHY_CLOCK_DELAY); |
fe8c2806 WD |
1082 | |
1083 | ||
1084 | /* Clock Hi - input data */ | |
7194ab80 | 1085 | SMC_outw (dev, mii_reg | bits[i] | MII_MCLK, MII_REG); |
b56ddc63 | 1086 | udelay (SMC_PHY_CLOCK_DELAY); |
7194ab80 | 1087 | bits[i] |= SMC_inw (dev, MII_REG) & MII_MDI; |
b56ddc63 | 1088 | } |
fe8c2806 WD |
1089 | |
1090 | /* Return to idle state */ | |
1091 | /* Set clock to low, data to low, and output tristated */ | |
7194ab80 | 1092 | SMC_outw (dev, mii_reg, MII_REG); |
b56ddc63 | 1093 | udelay (SMC_PHY_CLOCK_DELAY); |
fe8c2806 WD |
1094 | |
1095 | /* Restore original bank select */ | |
7194ab80 | 1096 | SMC_SELECT_BANK (dev, oldBank); |
fe8c2806 WD |
1097 | |
1098 | #if (SMC_DEBUG > 2 ) | |
b56ddc63 | 1099 | printf ("smc_write_phy_register(): phyaddr=%x,phyreg=%x,phydata=%x\n", |
fe8c2806 | 1100 | phyaddr, phyreg, phydata); |
b56ddc63 | 1101 | smc_dump_mii_stream (bits, sizeof bits); |
fe8c2806 WD |
1102 | #endif |
1103 | } | |
1104 | #endif /* !CONFIG_SMC91111_EXT_PHY */ | |
1105 | ||
1106 | ||
fe8c2806 WD |
1107 | /*------------------------------------------------------------ |
1108 | . Configures the specified PHY using Autonegotiation. Calls | |
1109 | . smc_phy_fixed() if the user has requested a certain config. | |
1110 | .-------------------------------------------------------------*/ | |
1111 | #ifndef CONFIG_SMC91111_EXT_PHY | |
7194ab80 | 1112 | static void smc_phy_configure (struct eth_device *dev) |
fe8c2806 WD |
1113 | { |
1114 | int timeout; | |
b56ddc63 WD |
1115 | word my_phy_caps; /* My PHY capabilities */ |
1116 | word my_ad_caps; /* My Advertised capabilities */ | |
1117 | word status = 0; /*;my status = 0 */ | |
fe8c2806 | 1118 | |
f39748ae | 1119 | PRINTK3 ("%s: smc_program_phy()\n", SMC_DEV_NAME); |
fe8c2806 | 1120 | |
fe8c2806 | 1121 | /* Reset the PHY, setting all other bits to zero */ |
7194ab80 | 1122 | smc_write_phy_register (dev, PHY_CNTL_REG, PHY_CNTL_RST); |
fe8c2806 WD |
1123 | |
1124 | /* Wait for the reset to complete, or time out */ | |
b56ddc63 WD |
1125 | timeout = 6; /* Wait up to 3 seconds */ |
1126 | while (timeout--) { | |
7194ab80 | 1127 | if (!(smc_read_phy_register (dev, PHY_CNTL_REG) |
b56ddc63 | 1128 | & PHY_CNTL_RST)) { |
fe8c2806 WD |
1129 | /* reset complete */ |
1130 | break; | |
fe8c2806 WD |
1131 | } |
1132 | ||
65029492 | 1133 | mdelay(500); /* wait 500 millisecs */ |
b56ddc63 WD |
1134 | } |
1135 | ||
1136 | if (timeout < 1) { | |
1137 | printf ("%s:PHY reset timed out\n", SMC_DEV_NAME); | |
fe8c2806 | 1138 | goto smc_phy_configure_exit; |
b56ddc63 | 1139 | } |
fe8c2806 WD |
1140 | |
1141 | /* Read PHY Register 18, Status Output */ | |
1142 | /* lp->lastPhy18 = smc_read_phy_register(PHY_INT_REG); */ | |
1143 | ||
1144 | /* Enable PHY Interrupts (for register 18) */ | |
1145 | /* Interrupts listed here are disabled */ | |
7194ab80 | 1146 | smc_write_phy_register (dev, PHY_MASK_REG, 0xffff); |
fe8c2806 WD |
1147 | |
1148 | /* Configure the Receive/Phy Control register */ | |
7194ab80 BW |
1149 | SMC_SELECT_BANK (dev, 0); |
1150 | SMC_outw (dev, RPC_DEFAULT, RPC_REG); | |
fe8c2806 WD |
1151 | |
1152 | /* Copy our capabilities from PHY_STAT_REG to PHY_AD_REG */ | |
7194ab80 | 1153 | my_phy_caps = smc_read_phy_register (dev, PHY_STAT_REG); |
b56ddc63 | 1154 | my_ad_caps = PHY_AD_CSMA; /* I am CSMA capable */ |
fe8c2806 WD |
1155 | |
1156 | if (my_phy_caps & PHY_STAT_CAP_T4) | |
1157 | my_ad_caps |= PHY_AD_T4; | |
1158 | ||
1159 | if (my_phy_caps & PHY_STAT_CAP_TXF) | |
1160 | my_ad_caps |= PHY_AD_TX_FDX; | |
1161 | ||
1162 | if (my_phy_caps & PHY_STAT_CAP_TXH) | |
1163 | my_ad_caps |= PHY_AD_TX_HDX; | |
1164 | ||
1165 | if (my_phy_caps & PHY_STAT_CAP_TF) | |
1166 | my_ad_caps |= PHY_AD_10_FDX; | |
1167 | ||
1168 | if (my_phy_caps & PHY_STAT_CAP_TH) | |
1169 | my_ad_caps |= PHY_AD_10_HDX; | |
1170 | ||
1171 | /* Update our Auto-Neg Advertisement Register */ | |
7194ab80 | 1172 | smc_write_phy_register (dev, PHY_AD_REG, my_ad_caps); |
fe8c2806 | 1173 | |
518e2e1a WD |
1174 | /* Read the register back. Without this, it appears that when */ |
1175 | /* auto-negotiation is restarted, sometimes it isn't ready and */ | |
1176 | /* the link does not come up. */ | |
7194ab80 | 1177 | smc_read_phy_register(dev, PHY_AD_REG); |
518e2e1a | 1178 | |
f39748ae WD |
1179 | PRINTK2 ("%s: phy caps=%x\n", SMC_DEV_NAME, my_phy_caps); |
1180 | PRINTK2 ("%s: phy advertised caps=%x\n", SMC_DEV_NAME, my_ad_caps); | |
fe8c2806 WD |
1181 | |
1182 | /* Restart auto-negotiation process in order to advertise my caps */ | |
7194ab80 | 1183 | smc_write_phy_register (dev, PHY_CNTL_REG, |
b56ddc63 | 1184 | PHY_CNTL_ANEG_EN | PHY_CNTL_ANEG_RST); |
fe8c2806 WD |
1185 | |
1186 | /* Wait for the auto-negotiation to complete. This may take from */ | |
1187 | /* 2 to 3 seconds. */ | |
1188 | /* Wait for the reset to complete, or time out */ | |
f39748ae | 1189 | timeout = CONFIG_SMC_AUTONEG_TIMEOUT * 2; |
b56ddc63 | 1190 | while (timeout--) { |
f39748ae | 1191 | |
7194ab80 | 1192 | status = smc_read_phy_register (dev, PHY_STAT_REG); |
b56ddc63 | 1193 | if (status & PHY_STAT_ANEG_ACK) { |
fe8c2806 WD |
1194 | /* auto-negotiate complete */ |
1195 | break; | |
b56ddc63 | 1196 | } |
fe8c2806 | 1197 | |
65029492 | 1198 | mdelay(500); /* wait 500 millisecs */ |
fe8c2806 WD |
1199 | |
1200 | /* Restart auto-negotiation if remote fault */ | |
b56ddc63 | 1201 | if (status & PHY_STAT_REM_FLT) { |
f39748ae | 1202 | printf ("%s: PHY remote fault detected\n", |
b56ddc63 | 1203 | SMC_DEV_NAME); |
fe8c2806 WD |
1204 | |
1205 | /* Restart auto-negotiation */ | |
f39748ae | 1206 | printf ("%s: PHY restarting auto-negotiation\n", |
fe8c2806 | 1207 | SMC_DEV_NAME); |
7194ab80 | 1208 | smc_write_phy_register (dev, PHY_CNTL_REG, |
b56ddc63 WD |
1209 | PHY_CNTL_ANEG_EN | |
1210 | PHY_CNTL_ANEG_RST | | |
1211 | PHY_CNTL_SPEED | | |
1212 | PHY_CNTL_DPLX); | |
fe8c2806 | 1213 | } |
b56ddc63 | 1214 | } |
fe8c2806 | 1215 | |
b56ddc63 | 1216 | if (timeout < 1) { |
f39748ae | 1217 | printf ("%s: PHY auto-negotiate timed out\n", SMC_DEV_NAME); |
b56ddc63 | 1218 | } |
fe8c2806 WD |
1219 | |
1220 | /* Fail if we detected an auto-negotiate remote fault */ | |
b56ddc63 | 1221 | if (status & PHY_STAT_REM_FLT) { |
f39748ae | 1222 | printf ("%s: PHY remote fault detected\n", SMC_DEV_NAME); |
b56ddc63 | 1223 | } |
fe8c2806 WD |
1224 | |
1225 | /* Re-Configure the Receive/Phy Control register */ | |
7194ab80 | 1226 | SMC_outw (dev, RPC_DEFAULT, RPC_REG); |
fe8c2806 | 1227 | |
26238132 | 1228 | smc_phy_configure_exit: ; |
fe8c2806 WD |
1229 | |
1230 | } | |
1231 | #endif /* !CONFIG_SMC91111_EXT_PHY */ | |
1232 | ||
1233 | ||
1234 | #if SMC_DEBUG > 2 | |
1235 | static void print_packet( byte * buf, int length ) | |
1236 | { | |
8bde7f77 WD |
1237 | int i; |
1238 | int remainder; | |
1239 | int lines; | |
fe8c2806 | 1240 | |
8bde7f77 | 1241 | printf("Packet of length %d \n", length ); |
fe8c2806 WD |
1242 | |
1243 | #if SMC_DEBUG > 3 | |
8bde7f77 WD |
1244 | lines = length / 16; |
1245 | remainder = length % 16; | |
1246 | ||
1247 | for ( i = 0; i < lines ; i ++ ) { | |
1248 | int cur; | |
1249 | ||
1250 | for ( cur = 0; cur < 8; cur ++ ) { | |
1251 | byte a, b; | |
1252 | ||
1253 | a = *(buf ++ ); | |
1254 | b = *(buf ++ ); | |
1255 | printf("%02x%02x ", a, b ); | |
1256 | } | |
1257 | printf("\n"); | |
1258 | } | |
1259 | for ( i = 0; i < remainder/2 ; i++ ) { | |
1260 | byte a, b; | |
1261 | ||
1262 | a = *(buf ++ ); | |
1263 | b = *(buf ++ ); | |
1264 | printf("%02x%02x ", a, b ); | |
1265 | } | |
1266 | printf("\n"); | |
fe8c2806 | 1267 | #endif |
fe8c2806 WD |
1268 | } |
1269 | #endif | |
1270 | ||
7194ab80 | 1271 | int smc91111_initialize(u8 dev_num, int base_addr) |
0b97ab14 | 1272 | { |
7194ab80 BW |
1273 | struct smc91111_priv *priv; |
1274 | struct eth_device *dev; | |
1275 | int i; | |
b56ddc63 | 1276 | |
7194ab80 BW |
1277 | priv = malloc(sizeof(*priv)); |
1278 | if (!priv) | |
1279 | return 0; | |
1280 | dev = malloc(sizeof(*dev)); | |
1281 | if (!dev) { | |
1282 | free(priv); | |
1283 | return 0; | |
b56ddc63 WD |
1284 | } |
1285 | ||
1ca6d0df | 1286 | memset(dev, 0, sizeof(*dev)); |
7194ab80 BW |
1287 | priv->dev_num = dev_num; |
1288 | dev->priv = priv; | |
1289 | dev->iobase = base_addr; | |
0b97ab14 | 1290 | |
7194ab80 BW |
1291 | swap_to(ETHERNET); |
1292 | SMC_SELECT_BANK(dev, 1); | |
1293 | for (i = 0; i < 6; ++i) | |
1294 | dev->enetaddr[i] = SMC_inb(dev, (ADDR0_REG + i)); | |
1295 | swap_to(FLASH); | |
f39748ae | 1296 | |
7194ab80 BW |
1297 | dev->init = smc_init; |
1298 | dev->halt = smc_halt; | |
1299 | dev->send = smc_send; | |
1300 | dev->recv = smc_rcv; | |
1ca6d0df | 1301 | dev->write_hwaddr = smc_write_hwaddr; |
7194ab80 | 1302 | sprintf(dev->name, "%s-%hu", SMC_DEV_NAME, dev_num); |
f39748ae | 1303 | |
7194ab80 BW |
1304 | eth_register(dev); |
1305 | return 0; | |
0b97ab14 | 1306 | } |