2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-08-01 00:46:19 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2016 Rockchip Electronics Co., Ltd
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2017-04-22 08:57:54 +00:00
|
|
|
#include <dm.h>
|
2019-11-14 19:57:50 +00:00
|
|
|
#include <eeprom.h>
|
2019-08-01 15:46:51 +00:00
|
|
|
#include <env.h>
|
2017-04-22 08:57:54 +00:00
|
|
|
#include <i2c_eeprom.h>
|
2019-11-14 19:57:46 +00:00
|
|
|
#include <init.h>
|
2017-04-22 08:57:54 +00:00
|
|
|
#include <netdev.h>
|
2019-11-15 21:07:24 +00:00
|
|
|
#include <asm/arch-rockchip/bootrom.h>
|
|
|
|
#include <asm/io.h>
|
2017-04-22 08:57:54 +00:00
|
|
|
|
|
|
|
static int get_ethaddr_from_eeprom(u8 *addr)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct udevice *dev;
|
|
|
|
|
|
|
|
ret = uclass_first_device_err(UCLASS_I2C_EEPROM, &dev);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return i2c_eeprom_read(dev, 0, addr, 6);
|
|
|
|
}
|
|
|
|
|
2019-07-22 12:02:14 +00:00
|
|
|
int rk3288_board_late_init(void)
|
2017-04-22 08:57:54 +00:00
|
|
|
{
|
|
|
|
u8 ethaddr[6];
|
|
|
|
|
|
|
|
if (get_ethaddr_from_eeprom(ethaddr))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (is_valid_ethaddr(ethaddr))
|
2017-08-03 18:22:11 +00:00
|
|
|
eth_env_set_enetaddr("ethaddr", ethaddr);
|
2017-04-22 08:57:54 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2019-11-15 21:07:24 +00:00
|
|
|
|
|
|
|
int mmc_get_env_dev(void)
|
|
|
|
{
|
|
|
|
u32 bootdevice_brom_id = readl(BROM_BOOTSOURCE_ID_ADDR);
|
|
|
|
|
|
|
|
if (bootdevice_brom_id == BROM_BOOTSOURCE_EMMC)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|