mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-11-04 02:11:25 +01:00 
			
		
		
		
	Move this header out of the common header. Network support is used in quite a few places but it still does not warrant blanket inclusion. Note that this net.h header itself has quite a lot in it. It could be split into the driver-mode support, functions, structures, checksumming, etc. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			39 lines
		
	
	
		
			726 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			726 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0+
 | 
						|
/*
 | 
						|
 * Copyright (C) 2017 Microchip
 | 
						|
 *		      Wenyou Yang <wenyou.yang@microchip.com>
 | 
						|
 */
 | 
						|
 | 
						|
#include <common.h>
 | 
						|
#include <dm.h>
 | 
						|
#include <eeprom.h>
 | 
						|
#include <env.h>
 | 
						|
#include <i2c_eeprom.h>
 | 
						|
#include <net.h>
 | 
						|
#include <netdev.h>
 | 
						|
 | 
						|
int at91_set_ethaddr(int offset)
 | 
						|
{
 | 
						|
	const int ETH_ADDR_LEN = 6;
 | 
						|
	unsigned char ethaddr[ETH_ADDR_LEN];
 | 
						|
	const char *ETHADDR_NAME = "ethaddr";
 | 
						|
	struct udevice *dev;
 | 
						|
	int ret;
 | 
						|
 | 
						|
	if (env_get(ETHADDR_NAME))
 | 
						|
		return 0;
 | 
						|
 | 
						|
	ret = uclass_first_device_err(UCLASS_I2C_EEPROM, &dev);
 | 
						|
	if (ret)
 | 
						|
		return ret;
 | 
						|
 | 
						|
	ret = i2c_eeprom_read(dev, offset, ethaddr, 6);
 | 
						|
	if (ret)
 | 
						|
		return ret;
 | 
						|
 | 
						|
	if (is_valid_ethaddr(ethaddr))
 | 
						|
		eth_env_set_enetaddr(ETHADDR_NAME, ethaddr);
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 |