Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 | /*********************************************************************** * * Copyright (C) 2005 by Videon Central, Inc. * * $Id$ * @Author: Arthur Shipkowski * @Descr: Ethernet driver for the NS7520. Uses polled Ethernet, like * the older netarmeth driver. Note that attempting to filter * broadcast and multicast out in the SAFR register will cause * bad things due to released errata. * @References: [1] NS7520 Hardware Reference, December 2003 * [2] Intel LXT971 Datasheet #249414 Rev. 02 * ***********************************************************************/ #include <common.h> #if defined(CONFIG_DRIVER_NS7520_ETHERNET) #include <net.h> /* NetSendPacket */ #include <asm/arch/netarm_registers.h> #include <asm/arch/netarm_dma_module.h> #include "ns7520_eth.h" /* for Ethernet and PHY */ /** * Send an error message to the terminal. */ #define ERROR(x) \ do { \ char *__foo = strrchr(__FILE__, '/'); \ \ printf("%s: %d: %s(): ", (__foo == NULL ? __FILE__ : (__foo + 1)), \ __LINE__, __FUNCTION__); \ printf x; printf("\n"); \ } while (0); /* some definition to make transistion to linux easier */ #define NS7520_DRIVER_NAME "eth" #define KERN_WARNING "Warning:" #define KERN_ERR "Error:" #define KERN_INFO "Info:" #if 1 # define DEBUG #endif #ifdef DEBUG # define printk printf # define DEBUG_INIT 0x0001 # define DEBUG_MINOR 0x0002 # define DEBUG_RX 0x0004 # define DEBUG_TX 0x0008 # define DEBUG_INT 0x0010 # define DEBUG_POLL 0x0020 # define DEBUG_LINK 0x0040 # define DEBUG_MII 0x0100 # define DEBUG_MII_LOW 0x0200 # define DEBUG_MEM 0x0400 # define DEBUG_ERROR 0x4000 # define DEBUG_ERROR_CRIT 0x8000 static int nDebugLvl = DEBUG_ERROR_CRIT; # define DEBUG_ARGS0( FLG, a0 ) if( ( nDebugLvl & (FLG) ) == (FLG) ) \ printf("%s: " a0, __FUNCTION__, 0, 0, 0, 0, 0, 0 ) # define DEBUG_ARGS1( FLG, a0, a1 ) if( ( nDebugLvl & (FLG) ) == (FLG)) \ printf("%s: " a0, __FUNCTION__, (int)(a1), 0, 0, 0, 0, 0 ) # define DEBUG_ARGS2( FLG, a0, a1, a2 ) if( (nDebugLvl & (FLG)) ==(FLG))\ printf("%s: " a0, __FUNCTION__, (int)(a1), (int)(a2), 0, 0,0,0 ) # define DEBUG_ARGS3( FLG, a0, a1, a2, a3 ) if((nDebugLvl &(FLG))==(FLG))\ printf("%s: "a0,__FUNCTION__,(int)(a1),(int)(a2),(int)(a3),0,0,0) # define DEBUG_FN( FLG ) if( (nDebugLvl & (FLG)) == (FLG) ) \ printf("\r%s:line %d\n", (int)__FUNCTION__, __LINE__, 0,0,0,0); # define ASSERT( expr, func ) if( !( expr ) ) { \ printf( "Assertion failed! %s:line %d %s\n", \ (int)__FUNCTION__,__LINE__,(int)(#expr),0,0,0); \ func } #else /* DEBUG */ # define printk(...) # define DEBUG_ARGS0( FLG, a0 ) # define DEBUG_ARGS1( FLG, a0, a1 ) # define DEBUG_ARGS2( FLG, a0, a1, a2 ) # define DEBUG_ARGS3( FLG, a0, a1, a2, a3 ) # define DEBUG_FN( n ) # define ASSERT(expr, func) #endif /* DEBUG */ #define NS7520_MII_NEG_DELAY (5*CFG_HZ) /* in s */ #define TX_TIMEOUT (5*CFG_HZ) /* in s */ #define RX_STALL_WORKAROUND_CNT 100 static int ns7520_eth_reset(void); static void ns7520_link_auto_negotiate(void); static void ns7520_link_update_egcr(void); static void ns7520_link_print_changed(void); /* the PHY stuff */ static char ns7520_mii_identify_phy(void); static unsigned short ns7520_mii_read(unsigned short uiRegister); static void ns7520_mii_write(unsigned short uiRegister, unsigned short uiData); static unsigned int ns7520_mii_get_clock_divisor(unsigned int unMaxMDIOClk); static unsigned int ns7520_mii_poll_busy(void); static unsigned int nPhyMaxMdioClock = PHY_MDIO_MAX_CLK; static unsigned int uiLastLinkStatus; static PhyType phyDetected = PHY_NONE; /*********************************************************************** * @Function: eth_init * @Return: -1 on failure otherwise 0 * @Descr: Initializes the ethernet engine and uses either FS Forth's default * MAC addr or the one in environment ***********************************************************************/ int eth_init(bd_t * pbis) { unsigned char aucMACAddr[6]; char *pcTmp = getenv("ethaddr"); char *pcEnd; int i; DEBUG_FN(DEBUG_INIT); /* no need to check for hardware */ if (!ns7520_eth_reset()) return -1; if (NULL == pcTmp) return -1; for (i = 0; i < 6; i++) { aucMACAddr[i] = pcTmp ? simple_strtoul(pcTmp, &pcEnd, 16) : 0; pcTmp = (*pcTmp) ? pcEnd + 1 : pcEnd; } /* configure ethernet address */ *get_eth_reg_addr(NS7520_ETH_SA1) = aucMACAddr[5] << 8 | aucMACAddr[4]; *get_eth_reg_addr(NS7520_ETH_SA2) = aucMACAddr[3] << 8 | aucMACAddr[2]; *get_eth_reg_addr(NS7520_ETH_SA3) = aucMACAddr[1] << 8 | aucMACAddr[0]; /* enable hardware */ *get_eth_reg_addr(NS7520_ETH_MAC1) = NS7520_ETH_MAC1_RXEN; *get_eth_reg_addr(NS7520_ETH_SUPP) = NS7520_ETH_SUPP_JABBER; *get_eth_reg_addr(NS7520_ETH_MAC1) = NS7520_ETH_MAC1_RXEN; /* the linux kernel may give packets < 60 bytes, for example arp */ *get_eth_reg_addr(NS7520_ETH_MAC2) = NS7520_ETH_MAC2_CRCEN | NS7520_ETH_MAC2_PADEN | NS7520_ETH_MAC2_HUGE; /* Broadcast/multicast allowed; if you don't set this even unicast chokes */ /* Based on NS7520 errata documentation */ *get_eth_reg_addr(NS7520_ETH_SAFR) = NS7520_ETH_SAFR_BROAD | NS7520_ETH_SAFR_PRM; /* enable receive and transmit FIFO, use 10/100 Mbps MII */ *get_eth_reg_addr(NS7520_ETH_EGCR) |= NS7520_ETH_EGCR_ETXWM_75 | NS7520_ETH_EGCR_ERX | NS7520_ETH_EGCR_ERXREG | NS7520_ETH_EGCR_ERXBR | NS7520_ETH_EGCR_ETX; return 0; } /*********************************************************************** * @Function: eth_send * @Return: -1 on timeout otherwise 1 * @Descr: sends one frame by DMA ***********************************************************************/ int eth_send(volatile void *pPacket, int nLen) { int i, length32, retval = 1; char *pa; unsigned int *pa32, lastp = 0, rest; unsigned int status; pa = (char *) pPacket; pa32 = (unsigned int *) pPacket; length32 = nLen / 4; rest = nLen % 4; /* make sure there's no garbage in the last word */ switch (rest) { case 0: lastp = pa32[length32 - 1]; length32--; break; case 1: lastp = pa32[length32] & 0x000000ff; break; case 2: lastp = pa32[length32] & 0x0000ffff; break; case 3: lastp = pa32[length32] & 0x00ffffff; break; } while (((*get_eth_reg_addr(NS7520_ETH_EGSR)) & NS7520_ETH_EGSR_TXREGE) == 0) { } /* write to the fifo */ for (i = 0; i < length32; i++) *get_eth_reg_addr(NS7520_ETH_FIFO) = pa32[i]; /* the last word is written to an extra register, this starts the transmission */ *get_eth_reg_addr(NS7520_ETH_FIFOL) = lastp; /* Wait for it to be done */ while ((*get_eth_reg_addr(NS7520_ETH_EGSR) & NS7520_ETH_EGSR_TXBC) == 0) { } status = (*get_eth_reg_addr(NS7520_ETH_ETSR)); *get_eth_reg_addr(NS7520_ETH_EGSR) = NS7520_ETH_EGSR_TXBC; /* Clear it now */ if (status & NS7520_ETH_ETSR_TXOK) { retval = 0; /* We're OK! */ } else if (status & NS7520_ETH_ETSR_TXDEF) { printf("Deferred, we'll see.\n"); retval = 0; } else if (status & NS7520_ETH_ETSR_TXAL) { printf("Late collision error, %d collisions.\n", (*get_eth_reg_addr(NS7520_ETH_ETSR)) & NS7520_ETH_ETSR_TXCOLC); } else if (status & NS7520_ETH_ETSR_TXAEC) { printf("Excessive collisions: %d\n", (*get_eth_reg_addr(NS7520_ETH_ETSR)) & NS7520_ETH_ETSR_TXCOLC); } else if (status & NS7520_ETH_ETSR_TXAED) { printf("Excessive deferral on xmit.\n"); } else if (status & NS7520_ETH_ETSR_TXAUR) { printf("Packet underrun.\n"); } else if (status & NS7520_ETH_ETSR_TXAJ) { printf("Jumbo packet error.\n"); } else { printf("Error: Should never get here.\n"); } return (retval); } /*********************************************************************** * @Function: eth_rx * @Return: size of last frame in bytes or 0 if no frame available * @Descr: gives one frame to U-Boot which has been copied by DMA engine already * to NetRxPackets[ 0 ]. ***********************************************************************/ int eth_rx(void) { int i; unsigned short rxlen; unsigned short totrxlen = 0; unsigned int *addr; unsigned int rxstatus, lastrxlen; char *pa; /* If RXBR is 1, data block was received */ while (((*get_eth_reg_addr(NS7520_ETH_EGSR)) & NS7520_ETH_EGSR_RXBR) == NS7520_ETH_EGSR_RXBR) { /* get status register and the length of received block */ rxstatus = *get_eth_reg_addr(NS7520_ETH_ERSR); rxlen = (rxstatus & NS7520_ETH_ERSR_RXSIZE) >> 16; /* clear RXBR to make fifo available */ *get_eth_reg_addr(NS7520_ETH_EGSR) = NS7520_ETH_EGSR_RXBR; if (rxstatus & NS7520_ETH_ERSR_ROVER) { printf("Receive overrun, resetting FIFO.\n"); *get_eth_reg_addr(NS7520_ETH_EGCR) &= ~NS7520_ETH_EGCR_ERX; udelay(20); *get_eth_reg_addr(NS7520_ETH_EGCR) |= NS7520_ETH_EGCR_ERX; } if (rxlen == 0) { printf("Nothing.\n"); return 0; } addr = (unsigned int *) NetRxPackets[0]; pa = (char *) NetRxPackets[0]; /* read the fifo */ for (i = 0; i < rxlen / 4; i++) { *addr = *get_eth_reg_addr(NS7520_ETH_FIFO); addr++; } if ((*get_eth_reg_addr(NS7520_ETH_EGSR)) & NS7520_ETH_EGSR_RXREGR) { /* RXFDB indicates wether the last word is 1,2,3 or 4 bytes long */ lastrxlen = ((*get_eth_reg_addr(NS7520_ETH_EGSR)) & NS7520_ETH_EGSR_RXFDB_MA) >> 28; *addr = *get_eth_reg_addr(NS7520_ETH_FIFO); switch (lastrxlen) { case 1: *addr &= 0xff000000; break; case 2: *addr &= 0xffff0000; break; case 3: *addr &= 0xffffff00; break; } } /* Pass the packet up to the protocol layers. */ NetReceive(NetRxPackets[0], rxlen - 4); totrxlen += rxlen - 4; } return totrxlen; } /*********************************************************************** * @Function: eth_halt * @Return: n/a * @Descr: stops the ethernet engine ***********************************************************************/ void eth_halt(void) { DEBUG_FN(DEBUG_INIT); *get_eth_reg_addr(NS7520_ETH_MAC1) &= ~NS7520_ETH_MAC1_RXEN; *get_eth_reg_addr(NS7520_ETH_EGCR) &= ~(NS7520_ETH_EGCR_ERX | NS7520_ETH_EGCR_ERXDMA | NS7520_ETH_EGCR_ERXREG | NS7520_ETH_EGCR_ERXBR | NS7520_ETH_EGCR_ETX | NS7520_ETH_EGCR_ETXDMA); } /*********************************************************************** * @Function: ns7520_eth_reset * @Return: 0 on failure otherwise 1 * @Descr: resets the ethernet interface and the PHY, * performs auto negotiation or fixed modes ***********************************************************************/ static int ns7520_eth_reset(void) { DEBUG_FN(DEBUG_MINOR); /* Reset important registers */ *get_eth_reg_addr(NS7520_ETH_EGCR) = 0; /* Null it out! */ *get_eth_reg_addr(NS7520_ETH_MAC1) &= NS7520_ETH_MAC1_SRST; *get_eth_reg_addr(NS7520_ETH_MAC2) = 0; /* Reset MAC */ *get_eth_reg_addr(NS7520_ETH_EGCR) |= NS7520_ETH_EGCR_MAC_RES; udelay(5); *get_eth_reg_addr(NS7520_ETH_EGCR) &= ~NS7520_ETH_EGCR_MAC_RES; /* reset and initialize PHY */ *get_eth_reg_addr(NS7520_ETH_MAC1) &= ~NS7520_ETH_MAC1_SRST; /* we don't support hot plugging of PHY, therefore we don't reset phyDetected and nPhyMaxMdioClock here. The risk is if the setting is incorrect the first open may detect the PHY correctly but succeding will fail For reseting the PHY and identifying we have to use the standard MDIO CLOCK value 2.5 MHz only after hardware reset After having identified the PHY we will do faster */ *get_eth_reg_addr(NS7520_ETH_MCFG) = ns7520_mii_get_clock_divisor(nPhyMaxMdioClock); /* reset PHY */ ns7520_mii_write(PHY_COMMON_CTRL, PHY_COMMON_CTRL_RESET); ns7520_mii_write(PHY_COMMON_CTRL, 0); udelay(3000); /* [2] p.70 says at least 300us reset recovery time. */ /* MII clock has been setup to default, ns7520_mii_identify_phy should work for all */ if (!ns7520_mii_identify_phy()) { printk(KERN_ERR NS7520_DRIVER_NAME ": Unsupported PHY, aborting\n"); return 0; } /* now take the highest MDIO clock possible after detection */ *get_eth_reg_addr(NS7520_ETH_MCFG) = ns7520_mii_get_clock_divisor(nPhyMaxMdioClock); /* PHY has been detected, so there can be no abort reason and we can finish initializing ethernet */ uiLastLinkStatus = 0xff; /* undefined */ ns7520_link_auto_negotiate(); if (phyDetected == PHY_LXT971A) /* set LED2 to link mode */ ns7520_mii_write(PHY_LXT971_LED_CFG, (PHY_LXT971_LED_CFG_LINK_ACT << PHY_LXT971_LED_CFG_SHIFT_LED2) | (PHY_LXT971_LED_CFG_TRANSMIT << PHY_LXT971_LED_CFG_SHIFT_LED1)); return 1; } /*********************************************************************** * @Function: ns7520_link_auto_negotiate * @Return: void * @Descr: performs auto-negotation of link. ***********************************************************************/ static void ns7520_link_auto_negotiate(void) { unsigned long ulStartJiffies; unsigned short uiStatus; DEBUG_FN(DEBUG_LINK); /* run auto-negotation */ /* define what we are capable of */ ns7520_mii_write(PHY_COMMON_AUTO_ADV, PHY_COMMON_AUTO_ADV_100BTXFD | PHY_COMMON_AUTO_ADV_100BTX | PHY_COMMON_AUTO_ADV_10BTFD | PHY_COMMON_AUTO_ADV_10BT | PHY_COMMON_AUTO_ADV_802_3); /* start auto-negotiation */ ns7520_mii_write(PHY_COMMON_CTRL, PHY_COMMON_CTRL_AUTO_NEG | PHY_COMMON_CTRL_RES_AUTO); /* wait for completion */ ulStartJiffies = get_timer(0); while (get_timer(0) < ulStartJiffies + NS7520_MII_NEG_DELAY) { uiStatus = ns7520_mii_read(PHY_COMMON_STAT); if ((uiStatus & (PHY_COMMON_STAT_AN_COMP | PHY_COMMON_STAT_LNK_STAT)) == (PHY_COMMON_STAT_AN_COMP | PHY_COMMON_STAT_LNK_STAT)) { /* lucky we are, auto-negotiation succeeded */ ns7520_link_print_changed(); ns7520_link_update_egcr(); return; } } DEBUG_ARGS0(DEBUG_LINK, "auto-negotiation timed out\n"); /* ignore invalid link settings */ } /*********************************************************************** * @Function: ns7520_link_update_egcr * @Return: void * @Descr: updates the EGCR and MAC2 link status after mode change or * auto-negotation ***********************************************************************/ static void ns7520_link_update_egcr(void) { unsigned int unEGCR; unsigned int unMAC2; unsigned int unIPGT; DEBUG_FN(DEBUG_LINK); unEGCR = *get_eth_reg_addr(NS7520_ETH_EGCR); unMAC2 = *get_eth_reg_addr(NS7520_ETH_MAC2); unIPGT = *get_eth_reg_addr(NS7520_ETH_IPGT) & ~NS7520_ETH_IPGT_IPGT; unEGCR &= ~NS7520_ETH_EGCR_EFULLD; unMAC2 &= ~NS7520_ETH_MAC2_FULLD; if ((uiLastLinkStatus & PHY_LXT971_STAT2_DUPLEX_MODE) == PHY_LXT971_STAT2_DUPLEX_MODE) { unEGCR |= NS7520_ETH_EGCR_EFULLD; unMAC2 |= NS7520_ETH_MAC2_FULLD; unIPGT |= 0x15; /* see [1] p. 167 */ } else unIPGT |= 0x12; /* see [1] p. 167 */ *get_eth_reg_addr(NS7520_ETH_MAC2) = unMAC2; *get_eth_reg_addr(NS7520_ETH_EGCR) = unEGCR; *get_eth_reg_addr(NS7520_ETH_IPGT) = unIPGT; } /*********************************************************************** * @Function: ns7520_link_print_changed * @Return: void * @Descr: checks whether the link status has changed and if so prints * the new mode ***********************************************************************/ static void ns7520_link_print_changed(void) { unsigned short uiStatus; unsigned short uiControl; DEBUG_FN(DEBUG_LINK); uiControl = ns7520_mii_read(PHY_COMMON_CTRL); if ((uiControl & PHY_COMMON_CTRL_AUTO_NEG) == PHY_COMMON_CTRL_AUTO_NEG) { /* PHY_COMMON_STAT_LNK_STAT is only set on autonegotiation */ uiStatus = ns7520_mii_read(PHY_COMMON_STAT); if (!(uiStatus & PHY_COMMON_STAT_LNK_STAT)) { printk(KERN_WARNING NS7520_DRIVER_NAME ": link down\n"); /* @TODO Linux: carrier_off */ } else { /* @TODO Linux: carrier_on */ if (phyDetected == PHY_LXT971A) { uiStatus = ns7520_mii_read(PHY_LXT971_STAT2); uiStatus &= (PHY_LXT971_STAT2_100BTX | PHY_LXT971_STAT2_DUPLEX_MODE | PHY_LXT971_STAT2_AUTO_NEG); /* mask out all uninteresting parts */ } /* other PHYs must store there link information in uiStatus as PHY_LXT971 */ } } else { /* mode has been forced, so uiStatus should be the same as the last link status, enforce printing */ uiStatus = uiLastLinkStatus; uiLastLinkStatus = 0xff; } if (uiStatus != uiLastLinkStatus) { /* save current link status */ uiLastLinkStatus = uiStatus; /* print new link status */ printk(KERN_INFO NS7520_DRIVER_NAME ": link mode %i Mbps %s duplex %s\n", (uiStatus & PHY_LXT971_STAT2_100BTX) ? 100 : 10, (uiStatus & PHY_LXT971_STAT2_DUPLEX_MODE) ? "full" : "half", (uiStatus & PHY_LXT971_STAT2_AUTO_NEG) ? "(auto)" : ""); } } /*********************************************************************** * the MII low level stuff ***********************************************************************/ /*********************************************************************** * @Function: ns7520_mii_identify_phy * @Return: 1 if supported PHY has been detected otherwise 0 * @Descr: checks for supported PHY and prints the IDs. ***********************************************************************/ static char ns7520_mii_identify_phy(void) { unsigned short uiID1; unsigned short uiID2; unsigned char *szName; char cRes = 0; DEBUG_FN(DEBUG_MII); phyDetected = (PhyType) uiID1 = ns7520_mii_read(PHY_COMMON_ID1); switch (phyDetected) { case PHY_LXT971A: szName = "LXT971A"; uiID2 = ns7520_mii_read(PHY_COMMON_ID2); nPhyMaxMdioClock = PHY_LXT971_MDIO_MAX_CLK; cRes = 1; break; case PHY_NONE: default: /* in case uiID1 == 0 && uiID2 == 0 we may have the wrong address or reset sets the wrong NS7520_ETH_MCFG_CLKS */ uiID2 = 0; szName = "unknown"; nPhyMaxMdioClock = PHY_MDIO_MAX_CLK; phyDetected = PHY_NONE; } printk(KERN_INFO NS7520_DRIVER_NAME ": PHY (0x%x, 0x%x) = %s detected\n", uiID1, uiID2, szName); return cRes; } /*********************************************************************** * @Function: ns7520_mii_read * @Return: the data read from PHY register uiRegister * @Descr: the data read may be invalid if timed out. If so, a message * is printed but the invalid data is returned. * The fixed device address is being used. ***********************************************************************/ static unsigned short ns7520_mii_read(unsigned short uiRegister) { DEBUG_FN(DEBUG_MII_LOW); /* write MII register to be read */ *get_eth_reg_addr(NS7520_ETH_MADR) = CONFIG_PHY_ADDR << 8 | uiRegister; *get_eth_reg_addr(NS7520_ETH_MCMD) = NS7520_ETH_MCMD_READ; if (!ns7520_mii_poll_busy()) printk(KERN_WARNING NS7520_DRIVER_NAME ": MII still busy in read\n"); /* continue to read */ *get_eth_reg_addr(NS7520_ETH_MCMD) = 0; return (unsigned short) (*get_eth_reg_addr(NS7520_ETH_MRDD)); } /*********************************************************************** * @Function: ns7520_mii_write * @Return: nothing * @Descr: writes the data to the PHY register. In case of a timeout, * no special handling is performed but a message printed * The fixed device address is being used. ***********************************************************************/ static void ns7520_mii_write(unsigned short uiRegister, unsigned short uiData) { DEBUG_FN(DEBUG_MII_LOW); /* write MII register to be written */ *get_eth_reg_addr(NS7520_ETH_MADR) = CONFIG_PHY_ADDR << 8 | uiRegister; *get_eth_reg_addr(NS7520_ETH_MWTD) = uiData; if (!ns7520_mii_poll_busy()) { printf(KERN_WARNING NS7520_DRIVER_NAME ": MII still busy in write\n"); } } /*********************************************************************** * @Function: ns7520_mii_get_clock_divisor * @Return: the clock divisor that should be used in NS7520_ETH_MCFG_CLKS * @Descr: if no clock divisor can be calculated for the * current SYSCLK and the maximum MDIO Clock, a warning is printed * and the greatest divisor is taken ***********************************************************************/ static unsigned int ns7520_mii_get_clock_divisor(unsigned int unMaxMDIOClk) { struct { unsigned int unSysClkDivisor; unsigned int unClks; /* field for NS7520_ETH_MCFG_CLKS */ } PHYClockDivisors[] = { { 4, NS7520_ETH_MCFG_CLKS_4}, { 6, NS7520_ETH_MCFG_CLKS_6}, { 8, NS7520_ETH_MCFG_CLKS_8}, { 10, NS7520_ETH_MCFG_CLKS_10}, { 14, NS7520_ETH_MCFG_CLKS_14}, { 20, NS7520_ETH_MCFG_CLKS_20}, { 28, NS7520_ETH_MCFG_CLKS_28} }; int nIndexSysClkDiv; int nArraySize = sizeof(PHYClockDivisors) / sizeof(PHYClockDivisors[0]); unsigned int unClks = NS7520_ETH_MCFG_CLKS_28; /* defaults to greatest div */ DEBUG_FN(DEBUG_INIT); for (nIndexSysClkDiv = 0; nIndexSysClkDiv < nArraySize; nIndexSysClkDiv++) { /* find first sysclock divisor that isn't higher than 2.5 MHz clock */ if (NETARM_XTAL_FREQ / PHYClockDivisors[nIndexSysClkDiv].unSysClkDivisor <= unMaxMDIOClk) { unClks = PHYClockDivisors[nIndexSysClkDiv].unClks; break; } } DEBUG_ARGS2(DEBUG_INIT, "Taking MDIO Clock bit mask 0x%0x for max clock %i\n", unClks, unMaxMDIOClk); /* return greatest divisor */ return unClks; } /*********************************************************************** * @Function: ns7520_mii_poll_busy * @Return: 0 if timed out otherwise the remaing timeout * @Descr: waits until the MII has completed a command or it times out * code may be interrupted by hard interrupts. * It is not checked what happens on multiple actions when * the first is still being busy and we timeout. ***********************************************************************/ static unsigned int ns7520_mii_poll_busy(void) { unsigned int unTimeout = 1000; DEBUG_FN(DEBUG_MII_LOW); while (((*get_eth_reg_addr(NS7520_ETH_MIND) & NS7520_ETH_MIND_BUSY) == NS7520_ETH_MIND_BUSY) && unTimeout) unTimeout--; return unTimeout; } /* ---------------------------------------------------------------------------- * Net+ARM ethernet MII functionality. */ #if defined(CONFIG_MII) /** * Maximum MII address we support */ #define MII_ADDRESS_MAX (31) /** * Maximum MII register address we support */ #define MII_REGISTER_MAX (31) /** * Ethernet MII interface return values for public functions. */ enum mii_status { MII_STATUS_SUCCESS = 0, MII_STATUS_FAILURE = 1, }; /** * Read a 16-bit value from an MII register. */ extern int ns7520_miiphy_read(char *devname, unsigned char const addr, unsigned char const reg, unsigned short *const value) { int ret = MII_STATUS_FAILURE; /* Parameter checks */ if (addr > MII_ADDRESS_MAX) { ERROR(("invalid addr, 0x%02X", addr)); goto miiphy_read_failed_0; } if (reg > MII_REGISTER_MAX) { ERROR(("invalid reg, 0x%02X", reg)); goto miiphy_read_failed_0; } if (value == NULL) { ERROR(("NULL value")); goto miiphy_read_failed_0; } DEBUG_FN(DEBUG_MII_LOW); /* write MII register to be read */ *get_eth_reg_addr(NS7520_ETH_MADR) = (addr << 8) | reg; *get_eth_reg_addr(NS7520_ETH_MCMD) = NS7520_ETH_MCMD_READ; if (!ns7520_mii_poll_busy()) printk(KERN_WARNING NS7520_DRIVER_NAME ": MII still busy in read\n"); /* continue to read */ *get_eth_reg_addr(NS7520_ETH_MCMD) = 0; *value = (*get_eth_reg_addr(NS7520_ETH_MRDD)); ret = MII_STATUS_SUCCESS; /* Fall through */ miiphy_read_failed_0: return (ret); } /** * Write a 16-bit value to an MII register. */ extern int ns7520_miiphy_write(char *devname, unsigned char const addr, unsigned char const reg, unsigned short const value) { int ret = MII_STATUS_FAILURE; /* Parameter checks */ if (addr > MII_ADDRESS_MAX) { ERROR(("invalid addr, 0x%02X", addr)); goto miiphy_write_failed_0; } if (reg > MII_REGISTER_MAX) { ERROR(("invalid reg, 0x%02X", reg)); goto miiphy_write_failed_0; } /* write MII register to be written */ *get_eth_reg_addr(NS7520_ETH_MADR) = (addr << 8) | reg; *get_eth_reg_addr(NS7520_ETH_MWTD) = value; if (!ns7520_mii_poll_busy()) { printf(KERN_WARNING NS7520_DRIVER_NAME ": MII still busy in write\n"); } ret = MII_STATUS_SUCCESS; /* Fall through */ miiphy_write_failed_0: return (ret); } #endif /* defined(CONFIG_MII) */ #endif /* CONFIG_DRIVER_NS7520_ETHERNET */ int ns7520_miiphy_initialize(bd_t *bis) { #if defined(CONFIG_DRIVER_NS7520_ETHERNET) #if defined(CONFIG_MII) miiphy_register("ns7520phy", ns7520_miiphy_read, ns7520_miiphy_write); #endif #endif return 0; } |