diff options
Diffstat (limited to 'board/at91rm9200dk/at91rm9200dk.c')
| -rw-r--r-- | board/at91rm9200dk/at91rm9200dk.c | 26 | 
1 files changed, 26 insertions, 0 deletions
| diff --git a/board/at91rm9200dk/at91rm9200dk.c b/board/at91rm9200dk/at91rm9200dk.c index 2cb60b0fa..77caed36d 100644 --- a/board/at91rm9200dk/at91rm9200dk.c +++ b/board/at91rm9200dk/at91rm9200dk.c @@ -24,6 +24,8 @@  #include <common.h>  #include <asm/arch/AT91RM9200.h> +#include <at91rm9200_net.h> +#include <dm9161.h>  /* ------------------------------------------------------------------------- */  /* @@ -61,6 +63,30 @@ int dram_init (void)  	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 */ +  /*   * Disk On Chip (NAND) Millenium initialization.   * The NAND lives in the CS2* space |