summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorYe Li <ye.li@nxp.com>2021-10-29 04:46:23 +0300
committerStefano Babic <sbabic@denx.de>2022-02-05 15:38:38 +0300
commitbd8b673003078309341c81b6a059f3bdebd81c4b (patch)
tree1c662fc601d5ab54b28f94d4a8b2e7c823078648 /board
parent16062f9b0a566cfa07fed21aef183608de6da50e (diff)
downloadu-boot-bd8b673003078309341c81b6a059f3bdebd81c4b.tar.xz
imx8ulp: Fix DCNANO QoS setting
The setting does not have effect because we should set it after power on the PS16 for NIC AV. So move it after upower_init which has powered on all PS 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.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/board/freescale/imx8ulp_evk/spl.c b/board/freescale/imx8ulp_evk/spl.c
index faece336ef..42f8e262b6 100644
--- a/board/freescale/imx8ulp_evk/spl.c
+++ b/board/freescale/imx8ulp_evk/spl.c
@@ -90,6 +90,9 @@ void spl_board_init(void)
/* Init XRDC MRC for VIDEO, DSP domains */
xrdc_init_mrc();
+
+ /* Call it after PS16 power up */
+ set_lpav_qos();
}
void board_init_f(ulong dummy)