From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kever Yang Date: Fri, 25 Oct 2019 10:11:26 +0800 Subject: [U-Boot] [PATCH 08/12] rockchip: misc: read cpuid either from efuse or otp In-Reply-To: <20191024232803.10338-9-heiko@sntech.de> References: <20191024232803.10338-1-heiko@sntech.de> <20191024232803.10338-9-heiko@sntech.de> Message-ID: <809fe1a7-1cd7-c31b-e934-9ac22a50f388@rock-chips.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: u-boot@lists.denx.de On 2019/10/25 上午7:27, Heiko Stuebner wrote: > From: Heiko Stuebner > > Newer Rockchip socs use a different ip block to handle one-time- > programmable memory, so depending on what got enabled get the cpuid > from either source. > > Signed-off-by: Heiko Stuebner Reviewed-by: Kever Yang Thanks, - Kever > --- > arch/arm/mach-rockchip/misc.c | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/arch/arm/mach-rockchip/misc.c b/arch/arm/mach-rockchip/misc.c > index c0e4fdbc00..bed4317f7e 100644 > --- a/arch/arm/mach-rockchip/misc.c > +++ b/arch/arm/mach-rockchip/misc.c > @@ -57,13 +57,18 @@ int rockchip_cpuid_from_efuse(const u32 cpuid_offset, > const u32 cpuid_length, > u8 *cpuid) > { > -#if CONFIG_IS_ENABLED(ROCKCHIP_EFUSE) > +#if CONFIG_IS_ENABLED(ROCKCHIP_EFUSE) || CONFIG_IS_ENABLED(ROCKCHIP_OTP) > struct udevice *dev; > int ret; > > /* retrieve the device */ > +#if CONFIG_IS_ENABLED(ROCKCHIP_EFUSE) > ret = uclass_get_device_by_driver(UCLASS_MISC, > DM_GET_DRIVER(rockchip_efuse), &dev); > +#elif CONFIG_IS_ENABLED(ROCKCHIP_OTP) > + ret = uclass_get_device_by_driver(UCLASS_MISC, > + DM_GET_DRIVER(rockchip_otp), &dev); > +#endif > if (ret) { > debug("%s: could not find efuse device\n", __func__); > return -1;