From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Warren Date: Sun, 31 Jan 2010 22:47:24 -0800 Subject: [U-Boot] Pull request - net Message-ID: <4B6678FC.20402@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Wolfgang The following changes since commit 9b208ece0a4e040774e24990b7cb6f0ad0ca4cc7: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx are available in the git repository at: git://git.denx.de/u-boot-net.git master Heiko Schocher (1): 83xx, uec: split enet_interface in two variables Jens Scharsig (1): new at91_emac network driver (NET_MULTI api) Matthias Kaehlcke (2): cs8900_initialize() cleanup Add EP93xx ethernet driver Mike Frysinger (1): smc91111_eeprom: fix linking error Nick Thompson (1): TI: DaVinci: Updating EMAC driver for DM365, DM646x and DA8XX Peter Tyser (6): tsec: Force TBI PHY to 1000Mbps full duplex in SGMII mode tsec: Clean up Broadcom PHY status parsing tsec: Make functions/data static when possible tsec: General cleanup tsec: Add support for using the BCM5482 PHY in fiber mode tsec: Add TSEC_FIBER flag Semih Hazar (1): macb: Fix mii_phy_read and mii_phy_write functions Seunghyeon Rhee (1): NET: Fix MAC addr handling for smc911x README | 10 + board/atmel/at91rm9200dk/at91rm9200dk.c | 15 + board/atmel/at91rm9200ek/at91rm9200ek.c | 14 + board/cmc_pu2/cmc_pu2.c | 13 + board/csb637/csb637.c | 13 + board/eukrea/cpuat91/cpuat91.c | 14 + board/freescale/mpc8360emds/mpc8360emds.c | 3 +- board/kb9202/kb9202.c | 13 + board/m501sk/m501sk.c | 14 + board/mp2usb/mp2usb.c | 13 + cpu/arm920t/at91rm9200/bcm5221.c | 4 +- cpu/arm920t/at91rm9200/dm9161.c | 3 +- drivers/net/Makefile | 2 + drivers/net/at91_emac.c | 498 +++++++++++++++ drivers/net/cs8900.c | 3 +- drivers/net/davinci_emac.c | 266 ++++++--- drivers/net/ep93xx_eth.c | 653 ++++++++++++++++++++ drivers/net/ep93xx_eth.h | 144 +++++ drivers/net/macb.c | 110 +--- drivers/net/smc911x.c | 15 +- drivers/net/tsec.c | 941 ++++++++++++++++------------- drivers/qe/uec.c | 122 +++-- drivers/qe/uec.h | 34 +- drivers/qe/uec_phy.c | 84 ++-- examples/standalone/smc91111_eeprom.c | 5 +- include/asm-arm/arch-at91/at91_emac.h | 145 +++++ include/asm-arm/arch-davinci/emac_defs.h | 59 ++- include/common.h | 5 + include/configs/MPC8323ERDB.h | 6 +- include/configs/MPC832XEMDS.h | 6 +- include/configs/MPC8360EMDS.h | 6 +- include/configs/MPC8360ERDK.h | 6 +- include/configs/MPC8568MDS.h | 6 +- include/configs/MPC8569MDS.h | 30 +- include/configs/at91rm9200dk.h | 9 +- include/configs/at91rm9200ek.h | 8 +- include/configs/cmc_pu2.h | 8 +- include/configs/cpuat91.h | 8 +- include/configs/csb637.h | 8 +- include/configs/kb9202.h | 8 +- include/configs/kmeter1.h | 3 +- include/configs/m501sk.h | 9 +- include/configs/mp2usb.h | 8 +- include/netdev.h | 2 + include/tsec.h | 20 +- 45 files changed, 2602 insertions(+), 764 deletions(-) create mode 100644 drivers/net/at91_emac.c create mode 100644 drivers/net/ep93xx_eth.c create mode 100644 drivers/net/ep93xx_eth.h create mode 100644 include/asm-arm/arch-at91/at91_emac.h regards, Ben