diff options
author | Ye Li <ye.li@nxp.com> | 2021-10-29 09:46:23 +0800 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2022-02-05 13:38:38 +0100 |
commit | bd8b673003078309341c81b6a059f3bdebd81c4b (patch) | |
tree | 1c662fc601d5ab54b28f94d4a8b2e7c823078648 /board | |
parent | 16062f9b0a566cfa07fed21aef183608de6da50e (diff) | |
download | u-boot-bd8b673003078309341c81b6a059f3bdebd81c4b.tar.gz |
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.c | 3 |
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) |