diff options
| author | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-05 01:51:29 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-05 01:51:29 +0200 | 
| commit | 080bdb7f3a0227bc2f34a3b2d4e6f573dab3ca3a (patch) | |
| tree | 25724dfd8332f647b9a7765d204112dcadf83e63 /board/mp2usb/mp2usb.c | |
| parent | 29ca46c4453c41e0617b76248cae3be628e03cc2 (diff) | |
| download | olio-uboot-2014.01-080bdb7f3a0227bc2f34a3b2d4e6f573dab3ca3a.tar.xz olio-uboot-2014.01-080bdb7f3a0227bc2f34a3b2d4e6f573dab3ca3a.zip | |
* Move dm9161.c and lxt972.c into cpu/arm920t/at91rm9200
  Patch by Anders Larsen, 29 Apr 2005
* Fix problems introduced by Patch by Steven Scholz, 02 Mar 2005
  (8e2be51de8dd03c1ce4d06cbb18ad06133d47cd5)
Diffstat (limited to 'board/mp2usb/mp2usb.c')
| -rw-r--r-- | board/mp2usb/mp2usb.c | 26 | 
1 files changed, 26 insertions, 0 deletions
| diff --git a/board/mp2usb/mp2usb.c b/board/mp2usb/mp2usb.c index b22f2e19a..e75be1e3a 100644 --- a/board/mp2usb/mp2usb.c +++ b/board/mp2usb/mp2usb.c @@ -27,6 +27,8 @@  #include <common.h>  #include <asm/arch/AT91RM9200.h> +#include <at91rm9200_net.h> +#include <dm9161.h>  #include <asm/mach-types.h>  /* ------------------------------------------------------------------------- */ @@ -60,3 +62,27 @@ int dram_init (void)  	gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;  	return 0;  } + +#ifdef CONFIG_DRIVER_ETHER +#if (CONFIG_COMMANDS & CFG_CMD_NET) + +/* + * Name: + *	at91rm9200_GetPhyInterface + * Description: + *	Initialise the interface functions to the PHY + * Arguments: + *	None + * Return value: + *	None + */ +void at91rm9200_GetPhyInterface(AT91PS_PhyOps p_phyops) +{ +	p_phyops->Init = dm9161_InitPhy; +	p_phyops->IsPhyConnected = dm9161_IsPhyConnected; +	p_phyops->GetLinkSpeed = dm9161_GetLinkSpeed; +	p_phyops->AutoNegotiate = dm9161_AutoNegotiate; +} + +#endif	/* CONFIG_COMMANDS & CFG_CMD_NET */ +#endif	/* CONFIG_DRIVER_ETHER */ |