aboutsummaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2022-04-06 14:30:18 +0800
committerStefano Babic <sbabic@denx.de>2022-04-12 17:33:56 +0200
commit3524540e700a3efe595fc2d3cd0325be6f795399 (patch)
treea7b177eee3935c3bce03f7100aebdf2060c970ec /board
parentc916fb1747e33da7e89b5c683045861e37534c80 (diff)
downloadu-boot-3524540e700a3efe595fc2d3cd0325be6f795399.zip
u-boot-3524540e700a3efe595fc2d3cd0325be6f795399.tar.gz
u-boot-3524540e700a3efe595fc2d3cd0325be6f795399.tar.bz2
imx: imx8ulp: Load the lposc fuse for dual boot
Found the lposc fuse loading having impact to cpu idle in kernel. Without the loading in dual boot mode, kernel will hang after idle for a while. Reviewed-by: Peng Fan <peng.fan@nxp.com> Signed-off-by: Ye Li <ye.li@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'board')
-rw-r--r--board/freescale/imx8ulp_evk/spl.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/board/freescale/imx8ulp_evk/spl.c b/board/freescale/imx8ulp_evk/spl.c
index e6949b5..9bc9081 100644
--- a/board/freescale/imx8ulp_evk/spl.c
+++ b/board/freescale/imx8ulp_evk/spl.c
@@ -76,10 +76,8 @@ void spl_board_init(void)
/* After AP set iomuxc0, the i2c can't work, Need M33 to set it now */
- /* Load the lposc fuse for single boot to work around ROM issue,
- * The fuse depends on S400 to read.
- */
- if (is_soc_rev(CHIP_REV_1_0) && get_boot_mode() == SINGLE_BOOT)
+ /* Load the lposc fuse to work around ROM issue. The fuse depends on S400 to read. */
+ if (is_soc_rev(CHIP_REV_1_0))
load_lposc_fuse();
upower_init();