1. 15 10月, 2009 1 次提交
  2. 13 10月, 2009 1 次提交
  3. 10 10月, 2009 1 次提交
  4. 01 10月, 2009 1 次提交
  5. 18 9月, 2009 1 次提交
  6. 20 8月, 2009 1 次提交
  7. 20 7月, 2009 1 次提交
  8. 22 6月, 2009 1 次提交
  9. 09 6月, 2009 1 次提交
  10. 08 6月, 2009 1 次提交
  11. 26 5月, 2009 1 次提交
  12. 19 5月, 2009 1 次提交
  13. 30 4月, 2009 1 次提交
  14. 27 4月, 2009 1 次提交
    • G
      net: add Xilinx ll_temac device driver · 92744989
      Grant Likely 提交于
      This patch adds support for the Xilinx ll_temac 10/100/1000 Ethernet
      device.  The ll_temac ipcore is typically used on Xilinx Virtex and
      Spartan designs attached to either a PowerPC 4xx or Microblaze
      processor.
      
      At the present moment, this driver only works with Virtex5 PowerPC
      designs because it assumes DCR is used to access the DMA registers.
      However, the low level access to DMA registers is abstracted and
      it should be easy to adapt for the other implementations.
      
      I'm posting this driver now as an RFC.  There are still some things that
      need to be tightened up, but it does appear to be stable.
      
      Derived from driver code written by Yoshio Kashiwagi and David H. Lynch Jr.
      
      Tested on Xilinx ML507 eval board with Base System Builder generated
      FPGA design.
      Signed-off-by: NGrant Likely <grant.likely@secretlab.ca>
      Acked-by: NAndy Fleming <afleming@freescale.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      92744989
  15. 09 4月, 2009 1 次提交
  16. 02 4月, 2009 1 次提交
  17. 27 3月, 2009 1 次提交
  18. 12 3月, 2009 2 次提交
  19. 19 2月, 2009 1 次提交
  20. 05 2月, 2009 1 次提交
  21. 08 1月, 2009 1 次提交
  22. 12 12月, 2008 1 次提交
  23. 04 12月, 2008 3 次提交
  24. 03 12月, 2008 1 次提交
  25. 22 11月, 2008 1 次提交
    • R
      net/hp-plus: fix link errors · 38ae07e4
      Randy Dunlap 提交于
      Fix hp-plus driver link errors.
      Builds as loadable module and kernel image driver.
      All drivers that use 8390.o or 8390p.o that will build on
      i386 with MCA/PCI/EISA/ISA were built successfully both
      =m and =y.
      
      drivers/built-in.o: In function `hpp_open':
      hp-plus.c:(.text+0xac06c): undefined reference to `eip_interrupt'
      hp-plus.c:(.text+0xac0d7): undefined reference to `eip_open'
      drivers/built-in.o: In function `hpp_close':
      hp-plus.c:(.text+0xac1bb): undefined reference to `eip_close'
      drivers/built-in.o: In function `hpp_probe1':
      hp-plus.c:(.init.text+0xa98a): undefined reference to `NS8390p_init'
      drivers/built-in.o: In function `hp_plus_probe':
      (.init.text+0xa9fe): undefined reference to `__alloc_eip_netdev'
      Signed-off-by: NRandy Dunlap <randy.dunlap@oracle.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      38ae07e4
  26. 06 11月, 2008 1 次提交
  27. 31 10月, 2008 1 次提交
  28. 21 10月, 2008 1 次提交
  29. 18 9月, 2008 4 次提交
  30. 03 9月, 2008 1 次提交
    • R
      hp-plus: fix link objects · 8dcc61ac
      Randy Dunlap 提交于
      Fix hp-plus Makefile object file:
      
      drivers/built-in.o: In function `hpp_open':
      hp-plus.c:(.text+0xaf445): undefined reference to `ei_interrupt'
      hp-plus.c:(.text+0xaf4ac): undefined reference to `ei_open'
      drivers/built-in.o: In function `hpp_close':
      hp-plus.c:(.text+0xaf59d): undefined reference to `ei_close'
      drivers/built-in.o: In function `hpp_probe1':
      hp-plus.c:(.init.text+0x7314): undefined reference to `ei_poll'
      drivers/built-in.o: In function `hp_plus_probe':
      (.init.text+0x7407): undefined reference to `__alloc_ei_netdev'
      make[1]: *** [.tmp_vmlinux1] Error 1
      Signed-off-by: NRandy Dunlap <randy.dunlap@oracle.com>
      Signed-off-by: NJeff Garzik <jgarzik@redhat.com>
      8dcc61ac
  31. 23 7月, 2008 1 次提交
  32. 11 7月, 2008 1 次提交
  33. 04 7月, 2008 1 次提交
  34. 24 6月, 2008 1 次提交
    • Y
      bnx2x: New link code · c18487ee
      Yaniv Rosner 提交于
      New Link code:
      Moving all the link related code (including the calculations, the
      initialization of the MAC and PHY and the external PHY's code) into
      a separated file. The changes from the code that used to be part of
      bnx2x.c (now called bnx2x_main.c) are:
      - Using separate structures for link inputs and link outputs to clearly 
        identify what was configured and what is the outcome
      - Adding code to read external PHY FW version and print it as part of 
        ethtool -i
      - Adding code to upgrade external PHY FW from ethtool -E with special 
        magic number - Changing the link down indication to ERR level
      - Adding a lock on all PHY access to prevent an interrupt and 
        setting changes to overlap
      - Adding support for emulation and FPGA (small chunk of code that really 
        helps in the lab) - Adding support for 1G on BCM8706 PHY
      - Adding clear debug print incase of fan failure (the PHY type is now 
        "failure")
      Signed-off-by: NYaniv Rosner <yanivr@broadcom.com>
      Signed-off-by: NEilon Greenstein <eilong@broadcom.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      c18487ee