1 /***********************************************************************
3 * Copyright (C) 2004 by FS Forth-Systeme GmbH.
6 * $Id: ns9750_eth.c,v 1.2 2004/02/24 14:09:39 mpietrek Exp $
7 * @Author: Markus Pietrek
8 * @Descr: Ethernet driver for the NS9750. Uses DMA Engine with polling
9 * interrupt status. But interrupts are not enabled.
10 * Only one tx buffer descriptor and the RXA buffer descriptor are used
11 * Currently no transmit lockup handling is included. eth_send has a 5s
12 * timeout for sending frames. No retransmits are performed when an
14 * @References: [1] NS9750 Hardware Reference, December 2003
15 * [2] Intel LXT971 Datasheet #249414 Rev. 02
16 * [3] NS7520 Linux Ethernet Driver
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License as
20 * published by the Free Software Foundation; either version 2 of
21 * the License, or (at your option) any later version.
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
33 ***********************************************************************/
36 #include <net.h> /* NetSendPacket */
38 #include "ns9750_eth.h" /* for Ethernet and PHY */
40 #ifdef CONFIG_DRIVER_NS9750_ETHERNET
42 /* some definition to make transistion to linux easier */
44 #define NS9750_DRIVER_NAME "eth"
45 #define KERN_WARNING "Warning:"
46 #define KERN_ERR "Error:"
47 #define KERN_INFO "Info:"
54 # define printk printf
56 # define DEBUG_INIT 0x0001
57 # define DEBUG_MINOR 0x0002
58 # define DEBUG_RX 0x0004
59 # define DEBUG_TX 0x0008
60 # define DEBUG_INT 0x0010
61 # define DEBUG_POLL 0x0020
62 # define DEBUG_LINK 0x0040
63 # define DEBUG_MII 0x0100
64 # define DEBUG_MII_LOW 0x0200
65 # define DEBUG_MEM 0x0400
66 # define DEBUG_ERROR 0x4000
67 # define DEBUG_ERROR_CRIT 0x8000
69 static int nDebugLvl = DEBUG_ERROR_CRIT;
71 # define DEBUG_ARGS0( FLG, a0 ) if( ( nDebugLvl & (FLG) ) == (FLG) ) \
72 printf("%s: " a0, __FUNCTION__, 0, 0, 0, 0, 0, 0 )
73 # define DEBUG_ARGS1( FLG, a0, a1 ) if( ( nDebugLvl & (FLG) ) == (FLG)) \
74 printf("%s: " a0, __FUNCTION__, (int)(a1), 0, 0, 0, 0, 0 )
75 # define DEBUG_ARGS2( FLG, a0, a1, a2 ) if( (nDebugLvl & (FLG)) ==(FLG))\
76 printf("%s: " a0, __FUNCTION__, (int)(a1), (int)(a2), 0, 0,0,0 )
77 # define DEBUG_ARGS3( FLG, a0, a1, a2, a3 ) if((nDebugLvl &(FLG))==(FLG))\
78 printf("%s: "a0,__FUNCTION__,(int)(a1),(int)(a2),(int)(a3),0,0,0)
79 # define DEBUG_FN( FLG ) if( (nDebugLvl & (FLG)) == (FLG) ) \
80 printf("\r%s:line %d\n", (int)__FUNCTION__, __LINE__, 0,0,0,0);
81 # define ASSERT( expr, func ) if( !( expr ) ) { \
82 printf( "Assertion failed! %s:line %d %s\n", \
83 (int)__FUNCTION__,__LINE__,(int)(#expr),0,0,0); \
87 # define DEBUG_ARGS0( FLG, a0 )
88 # define DEBUG_ARGS1( FLG, a0, a1 )
89 # define DEBUG_ARGS2( FLG, a0, a1, a2 )
90 # define DEBUG_ARGS3( FLG, a0, a1, a2, a3 )
91 # define DEBUG_FN( n )
92 # define ASSERT(expr, func)
95 #define NS9750_MII_NEG_DELAY (5*CFG_HZ) /* in s */
96 #define TX_TIMEOUT (5*CFG_HZ) /* in s */
98 /* @TODO move it to eeprom.h */
99 #define FS_EEPROM_AUTONEG_MASK 0x7
100 #define FS_EEPROM_AUTONEG_SPEED_MASK 0x1
101 #define FS_EEPROM_AUTONEG_SPEED_10 0x0
102 #define FS_EEPROM_AUTONEG_SPEED_100 0x1
103 #define FS_EEPROM_AUTONEG_DUPLEX_MASK 0x2
104 #define FS_EEPROM_AUTONEG_DUPLEX_HALF 0x0
105 #define FS_EEPROM_AUTONEG_DUPLEX_FULL 0x2
106 #define FS_EEPROM_AUTONEG_ENABLE_MASK 0x4
107 #define FS_EEPROM_AUTONEG_DISABLE 0x0
108 #define FS_EEPROM_AUTONEG_ENABLE 0x4
110 /* buffer descriptors taken from [1] p.306 */
113 unsigned int* punSrc;
114 unsigned int unLen; /* 11 bits */
115 unsigned int* punDest; /* unused */
119 unsigned uStatus : 16;
122 unsigned uEnable : 1;
131 unsigned int* punSrc;
132 unsigned int unLen; /* 10 bits */
133 unsigned int* punDest; /* unused */
135 unsigned int unReg; /* only 32bit accesses may done to NS9750
138 unsigned uStatus : 16;
148 static int ns9750_eth_reset( void );
150 static void ns9750_link_force( void );
151 static void ns9750_link_auto_negotiate( void );
152 static void ns9750_link_update_egcr( void );
153 static void ns9750_link_print_changed( void );
157 static char ns9750_mii_identify_phy( void );
158 static unsigned short ns9750_mii_read( unsigned short uiRegister );
159 static void ns9750_mii_write( unsigned short uiRegister, unsigned short uiData );
160 static unsigned int ns9750_mii_get_clock_divisor( unsigned int unMaxMDIOClk );
161 static unsigned int ns9750_mii_poll_busy( void );
163 static unsigned int nPhyMaxMdioClock = PHY_MDIO_MAX_CLK;
164 static unsigned char ucLinkMode = FS_EEPROM_AUTONEG_ENABLE;
165 static unsigned int uiLastLinkStatus;
166 static PhyType phyDetected = PHY_NONE;
168 /* we use only one tx buffer descriptor */
169 static tx_buffer_desc_t* pTxBufferDesc =
170 (tx_buffer_desc_t*) get_eth_reg_addr( NS9750_ETH_TXBD );
172 /* we use only one rx buffer descriptor of the 4 */
173 static rx_buffer_desc_t aRxBufferDesc[ 4 ];
175 /***********************************************************************
176 * @Function: eth_init
177 * @Return: -1 on failure otherwise 0
178 * @Descr: Initializes the ethernet engine and uses either FS Forth's default
179 * MAC addr or the one in environment
180 ***********************************************************************/
182 int eth_init (bd_t * pbis)
184 /* This default MAC Addr is reserved by FS Forth-Systeme for the case of
186 unsigned char aucMACAddr[6] = { 0x00, 0x04, 0xf3, 0x00, 0x06, 0x35 };
187 char *pcTmp = getenv ("ethaddr");
191 DEBUG_FN (DEBUG_INIT);
193 /* no need to check for hardware */
195 if (!ns9750_eth_reset ())
199 for (i = 0; i < 6; i++) {
201 pcTmp ? simple_strtoul (pcTmp, &pcEnd,
203 pcTmp = (*pcTmp) ? pcEnd + 1 : pcEnd;
206 /* configure ethernet address */
208 *get_eth_reg_addr (NS9750_ETH_SA1) =
209 aucMACAddr[5] << 8 | aucMACAddr[4];
210 *get_eth_reg_addr (NS9750_ETH_SA2) =
211 aucMACAddr[3] << 8 | aucMACAddr[2];
212 *get_eth_reg_addr (NS9750_ETH_SA3) =
213 aucMACAddr[1] << 8 | aucMACAddr[0];
215 /* enable hardware */
217 *get_eth_reg_addr (NS9750_ETH_MAC1) = NS9750_ETH_MAC1_RXEN;
219 /* the linux kernel may give packets < 60 bytes, for example arp */
220 *get_eth_reg_addr (NS9750_ETH_MAC2) = NS9750_ETH_MAC2_CRCEN |
221 NS9750_ETH_MAC2_PADEN | NS9750_ETH_MAC2_HUGE;
223 /* enable receive and transmit FIFO, use 10/100 Mbps MII */
224 *get_eth_reg_addr (NS9750_ETH_EGCR1) =
225 NS9750_ETH_EGCR1_ETXWM |
226 NS9750_ETH_EGCR1_ERX |
227 NS9750_ETH_EGCR1_ERXDMA |
228 NS9750_ETH_EGCR1_ETX |
229 NS9750_ETH_EGCR1_ETXDMA | NS9750_ETH_EGCR1_ITXA;
231 /* prepare DMA descriptors */
232 for (i = 0; i < 4; i++) {
233 aRxBufferDesc[i].punSrc = 0;
234 aRxBufferDesc[i].unLen = 0;
235 aRxBufferDesc[i].s.bits.uWrap = 1;
236 aRxBufferDesc[i].s.bits.uInt = 1;
237 aRxBufferDesc[i].s.bits.uEnable = 0;
238 aRxBufferDesc[i].s.bits.uFull = 0;
241 /* NetRxPackets[ 0 ] is initialized before eth_init is called and never
242 changes. NetRxPackets is 32bit aligned */
243 aRxBufferDesc[0].punSrc = (unsigned int *) NetRxPackets[0];
244 aRxBufferDesc[0].s.bits.uEnable = 1;
245 aRxBufferDesc[0].unLen = 1522; /* as stated in [1] p.307 */
247 *get_eth_reg_addr (NS9750_ETH_RXAPTR) =
248 (unsigned int) &aRxBufferDesc[0];
250 /* [1] Tab. 221 states less than 5us */
251 *get_eth_reg_addr (NS9750_ETH_EGCR1) |= NS9750_ETH_EGCR1_ERXINIT;
253 (*get_eth_reg_addr (NS9750_ETH_EGSR) & NS9750_ETH_EGSR_RXINIT))
254 /* wait for finish */
257 /* @TODO do we need to clear RXINIT? */
258 *get_eth_reg_addr (NS9750_ETH_EGCR1) &= ~NS9750_ETH_EGCR1_ERXINIT;
260 *get_eth_reg_addr (NS9750_ETH_RXFREE) = 0x1;
265 /***********************************************************************
266 * @Function: eth_send
267 * @Return: -1 on timeout otherwise 1
268 * @Descr: sends one frame by DMA
269 ***********************************************************************/
271 int eth_send (volatile void *pPacket, int nLen)
277 /* clear old status values */
278 *get_eth_reg_addr (NS9750_ETH_EINTR) &=
279 *get_eth_reg_addr (NS9750_ETH_EINTR) & NS9750_ETH_EINTR_TX_MA;
281 /* prepare Tx Descriptors */
283 pTxBufferDesc->punSrc = (unsigned int *) pPacket; /* pPacket is 32bit
285 pTxBufferDesc->unLen = nLen;
286 /* only 32bit accesses allowed. wrap, full, interrupt and enabled to 1 */
287 pTxBufferDesc->s.unReg = 0xf0000000;
288 /* pTxBufferDesc is the first possible buffer descriptor */
289 *get_eth_reg_addr (NS9750_ETH_TXPTR) = 0x0;
291 /* enable processor for next frame */
293 *get_eth_reg_addr (NS9750_ETH_EGCR2) &= ~NS9750_ETH_EGCR2_TCLER;
294 *get_eth_reg_addr (NS9750_ETH_EGCR2) |= NS9750_ETH_EGCR2_TCLER;
296 ulTimeout = get_timer (0);
298 DEBUG_ARGS0 (DEBUG_TX | DEBUG_MINOR,
299 "Waiting for transmission to finish\n");
301 (*get_eth_reg_addr (NS9750_ETH_EINTR) &
302 (NS9750_ETH_EINTR_TXDONE | NS9750_ETH_EINTR_TXERR))) {
303 /* do nothing, wait for completion */
304 if (get_timer (0) - ulTimeout > TX_TIMEOUT) {
305 DEBUG_ARGS0 (DEBUG_TX, "Transmit Timed out\n");
309 DEBUG_ARGS0 (DEBUG_TX | DEBUG_MINOR, "transmitted...\n");
314 /***********************************************************************
316 * @Return: size of last frame in bytes or 0 if no frame available
317 * @Descr: gives one frame to U-Boot which has been copied by DMA engine already
318 * to NetRxPackets[ 0 ].
319 ***********************************************************************/
324 unsigned int unStatus;
327 *get_eth_reg_addr (NS9750_ETH_EINTR) & NS9750_ETH_EINTR_RX_MA;
330 /* no packet available, return immediately */
335 /* unLen always < max(nLen) and discard checksum */
336 nLen = (int) aRxBufferDesc[0].unLen - 4;
338 /* acknowledge status register */
339 *get_eth_reg_addr (NS9750_ETH_EINTR) = unStatus;
341 aRxBufferDesc[0].unLen = 1522;
342 aRxBufferDesc[0].s.bits.uFull = 0;
344 /* Buffer A descriptor available again */
345 *get_eth_reg_addr (NS9750_ETH_RXFREE) |= 0x1;
347 /* NetReceive may call eth_send. Due to a possible bug of the NS9750 we
348 * have to acknowledge the received frame before sending a new one */
349 if (unStatus & NS9750_ETH_EINTR_RXDONEA)
350 NetReceive (NetRxPackets[0], nLen);
355 /***********************************************************************
356 * @Function: eth_halt
358 * @Descr: stops the ethernet engine
359 ***********************************************************************/
363 DEBUG_FN (DEBUG_INIT);
365 *get_eth_reg_addr (NS9750_ETH_MAC1) &= ~NS9750_ETH_MAC1_RXEN;
366 *get_eth_reg_addr (NS9750_ETH_EGCR1) &= ~(NS9750_ETH_EGCR1_ERX |
367 NS9750_ETH_EGCR1_ERXDMA |
368 NS9750_ETH_EGCR1_ETX |
369 NS9750_ETH_EGCR1_ETXDMA);
372 /***********************************************************************
373 * @Function: ns9750_eth_reset
374 * @Return: 0 on failure otherwise 1
375 * @Descr: resets the ethernet interface and the PHY,
376 * performs auto negotiation or fixed modes
377 ***********************************************************************/
379 static int ns9750_eth_reset (void)
381 DEBUG_FN (DEBUG_MINOR);
384 *get_eth_reg_addr (NS9750_ETH_EGCR1) |= NS9750_ETH_EGCR1_MAC_HRST;
385 udelay (5); /* according to [1], p.322 */
386 *get_eth_reg_addr (NS9750_ETH_EGCR1) &= ~NS9750_ETH_EGCR1_MAC_HRST;
388 /* reset and initialize PHY */
390 *get_eth_reg_addr (NS9750_ETH_MAC1) &= ~NS9750_ETH_MAC1_SRST;
392 /* we don't support hot plugging of PHY, therefore we don't reset
393 phyDetected and nPhyMaxMdioClock here. The risk is if the setting is
394 incorrect the first open
395 may detect the PHY correctly but succeding will fail
396 For reseting the PHY and identifying we have to use the standard
397 MDIO CLOCK value 2.5 MHz only after hardware reset
398 After having identified the PHY we will do faster */
400 *get_eth_reg_addr (NS9750_ETH_MCFG) =
401 ns9750_mii_get_clock_divisor (nPhyMaxMdioClock);
404 ns9750_mii_write (PHY_COMMON_CTRL, PHY_COMMON_CTRL_RESET);
405 ns9750_mii_write (PHY_COMMON_CTRL, 0);
407 /* @TODO check time */
408 udelay (3000); /* [2] p.70 says at least 300us reset recovery time. But
409 go sure, it didn't worked stable at higher timer
410 frequencies under LxNETES-2.x */
412 /* MII clock has been setup to default, ns9750_mii_identify_phy should
415 if (!ns9750_mii_identify_phy ()) {
416 printk (KERN_ERR NS9750_DRIVER_NAME
417 ": Unsupported PHY, aborting\n");
421 /* now take the highest MDIO clock possible after detection */
422 *get_eth_reg_addr (NS9750_ETH_MCFG) =
423 ns9750_mii_get_clock_divisor (nPhyMaxMdioClock);
426 /* PHY has been detected, so there can be no abort reason and we can
427 finish initializing ethernet */
429 uiLastLinkStatus = 0xff; /* undefined */
431 if ((ucLinkMode & FS_EEPROM_AUTONEG_ENABLE_MASK) ==
432 FS_EEPROM_AUTONEG_DISABLE)
433 /* use parameters defined */
434 ns9750_link_force ();
436 ns9750_link_auto_negotiate ();
438 if (phyDetected == PHY_LXT971A)
439 /* set LED2 to link mode */
440 ns9750_mii_write (PHY_LXT971_LED_CFG,
441 PHY_LXT971_LED_CFG_LINK_ACT <<
442 PHY_LXT971_LED_CFG_SHIFT_LED2);
447 /***********************************************************************
448 * @Function: ns9750_link_force
450 * @Descr: configures eth and MII to use the link mode defined in
452 ***********************************************************************/
454 static void ns9750_link_force (void)
456 unsigned short uiControl;
458 DEBUG_FN (DEBUG_LINK);
460 uiControl = ns9750_mii_read (PHY_COMMON_CTRL);
461 uiControl &= ~(PHY_COMMON_CTRL_SPD_MA |
462 PHY_COMMON_CTRL_AUTO_NEG | PHY_COMMON_CTRL_DUPLEX);
464 uiLastLinkStatus = 0;
466 if ((ucLinkMode & FS_EEPROM_AUTONEG_SPEED_MASK) ==
467 FS_EEPROM_AUTONEG_SPEED_100) {
468 uiControl |= PHY_COMMON_CTRL_SPD_100;
469 uiLastLinkStatus |= PHY_LXT971_STAT2_100BTX;
471 uiControl |= PHY_COMMON_CTRL_SPD_10;
473 if ((ucLinkMode & FS_EEPROM_AUTONEG_DUPLEX_MASK) ==
474 FS_EEPROM_AUTONEG_DUPLEX_FULL) {
475 uiControl |= PHY_COMMON_CTRL_DUPLEX;
476 uiLastLinkStatus |= PHY_LXT971_STAT2_DUPLEX_MODE;
479 ns9750_mii_write (PHY_COMMON_CTRL, uiControl);
481 ns9750_link_print_changed ();
482 ns9750_link_update_egcr ();
485 /***********************************************************************
486 * @Function: ns9750_link_auto_negotiate
488 * @Descr: performs auto-negotation of link.
489 ***********************************************************************/
491 static void ns9750_link_auto_negotiate (void)
493 unsigned long ulStartJiffies;
494 unsigned short uiStatus;
496 DEBUG_FN (DEBUG_LINK);
498 /* run auto-negotation */
499 /* define what we are capable of */
500 ns9750_mii_write (PHY_COMMON_AUTO_ADV,
501 PHY_COMMON_AUTO_ADV_100BTXFD |
502 PHY_COMMON_AUTO_ADV_100BTX |
503 PHY_COMMON_AUTO_ADV_10BTFD |
504 PHY_COMMON_AUTO_ADV_10BT |
505 PHY_COMMON_AUTO_ADV_802_3);
506 /* start auto-negotiation */
507 ns9750_mii_write (PHY_COMMON_CTRL,
508 PHY_COMMON_CTRL_AUTO_NEG |
509 PHY_COMMON_CTRL_RES_AUTO);
511 /* wait for completion */
513 ulStartJiffies = get_ticks ();
514 while (get_ticks () < ulStartJiffies + NS9750_MII_NEG_DELAY) {
515 uiStatus = ns9750_mii_read (PHY_COMMON_STAT);
517 (PHY_COMMON_STAT_AN_COMP | PHY_COMMON_STAT_LNK_STAT)) ==
518 (PHY_COMMON_STAT_AN_COMP | PHY_COMMON_STAT_LNK_STAT)) {
519 /* lucky we are, auto-negotiation succeeded */
520 ns9750_link_print_changed ();
521 ns9750_link_update_egcr ();
526 DEBUG_ARGS0 (DEBUG_LINK, "auto-negotiation timed out\n");
527 /* ignore invalid link settings */
530 /***********************************************************************
531 * @Function: ns9750_link_update_egcr
533 * @Descr: updates the EGCR and MAC2 link status after mode change or
535 ***********************************************************************/
537 static void ns9750_link_update_egcr (void)
543 DEBUG_FN (DEBUG_LINK);
545 unEGCR = *get_eth_reg_addr (NS9750_ETH_EGCR1);
546 unMAC2 = *get_eth_reg_addr (NS9750_ETH_MAC2);
547 unIPGT = *get_eth_reg_addr (NS9750_ETH_IPGT) & ~NS9750_ETH_IPGT_MA;
549 unMAC2 &= ~NS9750_ETH_MAC2_FULLD;
550 if ((uiLastLinkStatus & PHY_LXT971_STAT2_DUPLEX_MODE)
551 == PHY_LXT971_STAT2_DUPLEX_MODE) {
552 unMAC2 |= NS9750_ETH_MAC2_FULLD;
553 unIPGT |= 0x15; /* see [1] p. 339 */
555 unIPGT |= 0x12; /* see [1] p. 339 */
557 *get_eth_reg_addr (NS9750_ETH_MAC2) = unMAC2;
558 *get_eth_reg_addr (NS9750_ETH_EGCR1) = unEGCR;
559 *get_eth_reg_addr (NS9750_ETH_IPGT) = unIPGT;
562 /***********************************************************************
563 * @Function: ns9750_link_print_changed
565 * @Descr: checks whether the link status has changed and if so prints
567 ***********************************************************************/
569 static void ns9750_link_print_changed (void)
571 unsigned short uiStatus;
572 unsigned short uiControl;
574 DEBUG_FN (DEBUG_LINK);
576 uiControl = ns9750_mii_read (PHY_COMMON_CTRL);
578 if ((uiControl & PHY_COMMON_CTRL_AUTO_NEG) ==
579 PHY_COMMON_CTRL_AUTO_NEG) {
580 /* PHY_COMMON_STAT_LNK_STAT is only set on autonegotiation */
581 uiStatus = ns9750_mii_read (PHY_COMMON_STAT);
583 if (!(uiStatus & PHY_COMMON_STAT_LNK_STAT)) {
584 printk (KERN_WARNING NS9750_DRIVER_NAME
586 /* @TODO Linux: carrier_off */
588 /* @TODO Linux: carrier_on */
589 if (phyDetected == PHY_LXT971A) {
590 uiStatus = ns9750_mii_read (PHY_LXT971_STAT2);
591 uiStatus &= (PHY_LXT971_STAT2_100BTX |
592 PHY_LXT971_STAT2_DUPLEX_MODE |
593 PHY_LXT971_STAT2_AUTO_NEG);
595 /* mask out all uninteresting parts */
597 /* other PHYs must store there link information in
598 uiStatus as PHY_LXT971 */
601 /* mode has been forced, so uiStatus should be the same as the
602 last link status, enforce printing */
603 uiStatus = uiLastLinkStatus;
604 uiLastLinkStatus = 0xff;
607 if (uiStatus != uiLastLinkStatus) {
608 /* save current link status */
609 uiLastLinkStatus = uiStatus;
611 /* print new link status */
613 printk (KERN_INFO NS9750_DRIVER_NAME
614 ": link mode %i Mbps %s duplex %s\n",
615 (uiStatus & PHY_LXT971_STAT2_100BTX) ? 100 : 10,
616 (uiStatus & PHY_LXT971_STAT2_DUPLEX_MODE) ? "full" :
618 (uiStatus & PHY_LXT971_STAT2_AUTO_NEG) ? "(auto)" :
623 /***********************************************************************
624 * the MII low level stuff
625 ***********************************************************************/
627 /***********************************************************************
628 * @Function: ns9750_mii_identify_phy
629 * @Return: 1 if supported PHY has been detected otherwise 0
630 * @Descr: checks for supported PHY and prints the IDs.
631 ***********************************************************************/
633 static char ns9750_mii_identify_phy (void)
635 unsigned short uiID1;
636 unsigned short uiID2;
637 unsigned char *szName;
640 DEBUG_FN (DEBUG_MII);
642 phyDetected = (PhyType) uiID1 = ns9750_mii_read (PHY_COMMON_ID1);
644 switch (phyDetected) {
647 uiID2 = ns9750_mii_read (PHY_COMMON_ID2);
648 nPhyMaxMdioClock = PHY_LXT971_MDIO_MAX_CLK;
653 /* in case uiID1 == 0 && uiID2 == 0 we may have the wrong
654 address or reset sets the wrong NS9750_ETH_MCFG_CLKS */
658 nPhyMaxMdioClock = PHY_MDIO_MAX_CLK;
659 phyDetected = PHY_NONE;
662 printk (KERN_INFO NS9750_DRIVER_NAME
663 ": PHY (0x%x, 0x%x) = %s detected\n", uiID1, uiID2, szName);
668 /***********************************************************************
669 * @Function: ns9750_mii_read
670 * @Return: the data read from PHY register uiRegister
671 * @Descr: the data read may be invalid if timed out. If so, a message
672 * is printed but the invalid data is returned.
673 * The fixed device address is being used.
674 ***********************************************************************/
676 static unsigned short ns9750_mii_read (unsigned short uiRegister)
678 DEBUG_FN (DEBUG_MII_LOW);
680 /* write MII register to be read */
681 *get_eth_reg_addr (NS9750_ETH_MADR) =
682 NS9750_ETH_PHY_ADDRESS << 8 | uiRegister;
684 *get_eth_reg_addr (NS9750_ETH_MCMD) = NS9750_ETH_MCMD_READ;
686 if (!ns9750_mii_poll_busy ())
687 printk (KERN_WARNING NS9750_DRIVER_NAME
688 ": MII still busy in read\n");
689 /* continue to read */
691 *get_eth_reg_addr (NS9750_ETH_MCMD) = 0;
693 return (unsigned short) (*get_eth_reg_addr (NS9750_ETH_MRDD));
697 /***********************************************************************
698 * @Function: ns9750_mii_write
700 * @Descr: writes the data to the PHY register. In case of a timeout,
701 * no special handling is performed but a message printed
702 * The fixed device address is being used.
703 ***********************************************************************/
705 static void ns9750_mii_write (unsigned short uiRegister,
706 unsigned short uiData)
708 DEBUG_FN (DEBUG_MII_LOW);
710 /* write MII register to be written */
711 *get_eth_reg_addr (NS9750_ETH_MADR) =
712 NS9750_ETH_PHY_ADDRESS << 8 | uiRegister;
714 *get_eth_reg_addr (NS9750_ETH_MWTD) = uiData;
716 if (!ns9750_mii_poll_busy ()) {
717 printf (KERN_WARNING NS9750_DRIVER_NAME
718 ": MII still busy in write\n");
723 /***********************************************************************
724 * @Function: ns9750_mii_get_clock_divisor
725 * @Return: the clock divisor that should be used in NS9750_ETH_MCFG_CLKS
726 * @Descr: if no clock divisor can be calculated for the
727 * current SYSCLK and the maximum MDIO Clock, a warning is printed
728 * and the greatest divisor is taken
729 ***********************************************************************/
731 static unsigned int ns9750_mii_get_clock_divisor (unsigned int unMaxMDIOClk)
734 unsigned int unSysClkDivisor;
735 unsigned int unClks; /* field for NS9750_ETH_MCFG_CLKS */
736 } PHYClockDivisors[] = {
738 4, NS9750_ETH_MCFG_CLKS_4}, {
739 6, NS9750_ETH_MCFG_CLKS_6}, {
740 8, NS9750_ETH_MCFG_CLKS_8}, {
741 10, NS9750_ETH_MCFG_CLKS_10}, {
742 20, NS9750_ETH_MCFG_CLKS_20}, {
743 30, NS9750_ETH_MCFG_CLKS_30}, {
744 40, NS9750_ETH_MCFG_CLKS_40}
749 sizeof (PHYClockDivisors) / sizeof (PHYClockDivisors[0]);
750 unsigned int unClks = NS9750_ETH_MCFG_CLKS_40; /* defaults to
753 DEBUG_FN (DEBUG_INIT);
755 for (nIndexSysClkDiv = 0; nIndexSysClkDiv < nArraySize;
757 /* find first sysclock divisor that isn't higher than 2.5 MHz
760 PHYClockDivisors[nIndexSysClkDiv].unSysClkDivisor <=
762 unClks = PHYClockDivisors[nIndexSysClkDiv].unClks;
767 DEBUG_ARGS2 (DEBUG_INIT,
768 "Taking MDIO Clock bit mask 0x%0x for max clock %i\n",
769 unClks, unMaxMDIOClk);
771 /* return greatest divisor */
775 /***********************************************************************
776 * @Function: ns9750_mii_poll_busy
777 * @Return: 0 if timed out otherwise the remaing timeout
778 * @Descr: waits until the MII has completed a command or it times out
779 * code may be interrupted by hard interrupts.
780 * It is not checked what happens on multiple actions when
781 * the first is still being busy and we timeout.
782 ***********************************************************************/
784 static unsigned int ns9750_mii_poll_busy (void)
786 unsigned int unTimeout = 10000;
788 DEBUG_FN (DEBUG_MII_LOW);
790 while (((*get_eth_reg_addr (NS9750_ETH_MIND) & NS9750_ETH_MIND_BUSY)
791 == NS9750_ETH_MIND_BUSY) && unTimeout)
797 #endif /* CONFIG_DRIVER_NS9750_ETHERNET */