mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-17 16:53:06 +00:00
Add information that will be needed for enabling the UEFI capsule update feature on the RockPi4 boards. With the feature enabled, it would be possible to update the idbloader and u-boot.itb images on the RockPi4B and RockPi4C variants. Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
14 lines
460 B
C
14 lines
460 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* RK3399: Architecture common definitions
|
|
*
|
|
* Copyright (C) 2019 Collabora Inc - https://www.collabora.com/
|
|
* Rohan Garg <rohan.garg@collabora.com>
|
|
*/
|
|
|
|
int rockchip_cpuid_from_efuse(const u32 cpuid_offset,
|
|
const u32 cpuid_length,
|
|
u8 *cpuid);
|
|
int rockchip_cpuid_set(const u8 *cpuid, const u32 cpuid_length);
|
|
int rockchip_setup_macaddr(void);
|
|
void rockchip_capsule_update_board_setup(void);
|