"Das U-Boot" Source Tree
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

rockchip: rk3128: Add efuse

RK3128's efuse is currently only supported by u-boot, so add it to
rk3128-u-boot.dtsi and imply the options required to get the serial
and the ethernet mac address(es) in SoC Kconfig defaults.

Signed-off-by: Alex Bee <knaerzche@gmail.com>

+8
+5
arch/arm/dts/rk3128-u-boot.dtsi
··· 8 8 reg = <0x0 0x20004000 0x0 0x1000>; 9 9 bootph-all; 10 10 }; 11 + 12 + efuse: efuse@20090000 { 13 + compatible = "rockchip,rk3128-efuse"; 14 + reg = <0x20090000 0x4000>; 15 + }; 11 16 }; 12 17 13 18 &cru {
+3
arch/arm/mach-rockchip/Kconfig
··· 64 64 config ROCKCHIP_RK3128 65 65 bool "Support Rockchip RK3128" 66 66 select CPU_V7A 67 + imply MISC 68 + imply MISC_INIT_R 69 + imply ROCKCHIP_EFUSE 67 70 imply ROCKCHIP_COMMON_BOARD 68 71 imply OF_UPSTREAM 69 72 help