mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-04-04 05:21:32 +00:00
In order that we can use eth_env_* even when CONFIG_NET isn't set, move
these functions to environment code from net code.
This fixes failures such as:
board/ti/am335x/built-in.o: In function `board_late_init':
board/ti/am335x/board.c:752: undefined reference to `eth_env_set_enetaddr'
u-boot/board/ti/am335x/board.c:766: undefined reference to `eth_env_set_enetaddr'
which caters for use cases such as:
commit f411b5cca4
("board: am335x: Always set eth/eth1addr environment
variable")
when Ethernet is required in Linux, but not U-Boot.
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
37 lines
700 B
C
37 lines
700 B
C
/*
|
|
* Copyright (C) 2017 Microchip
|
|
* Wenyou Yang <wenyou.yang@microchip.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <environment.h>
|
|
#include <i2c_eeprom.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;
|
|
}
|