mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 01:38:22 +00:00
59b01eb7a1
Support tinker-s board. The board is equivalent of tinker board except of emmc. TODO: - support of usb current burst when the board is powered from pc Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
47 lines
818 B
C
47 lines
818 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* (C) Copyright 2016 Rockchip Electronics Co., Ltd
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <env.h>
|
|
#include <i2c_eeprom.h>
|
|
#include <netdev.h>
|
|
#include <asm/arch-rockchip/bootrom.h>
|
|
#include <asm/io.h>
|
|
|
|
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);
|
|
}
|
|
|
|
int rk3288_board_late_init(void)
|
|
{
|
|
u8 ethaddr[6];
|
|
|
|
if (get_ethaddr_from_eeprom(ethaddr))
|
|
return 0;
|
|
|
|
if (is_valid_ethaddr(ethaddr))
|
|
eth_env_set_enetaddr("ethaddr", ethaddr);
|
|
|
|
return 0;
|
|
}
|
|
|
|
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;
|
|
}
|