]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
imx8ulp: Fix DCNANO QoS setting
authorYe Li <ye.li@nxp.com>
Fri, 29 Oct 2021 01:46:23 +0000 (09:46 +0800)
committerStefano Babic <sbabic@denx.de>
Sat, 5 Feb 2022 12:38:38 +0000 (13:38 +0100)
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>
arch/arm/include/asm/arch-imx8ulp/sys_proto.h
arch/arm/mach-imx/imx8ulp/soc.c
board/freescale/imx8ulp_evk/spl.c

index 1a142dce72900a10ecd9253619565e0cb76e227d..8e2c6ed0ceac7d7b7a15e317ff044bc9982cf6a5 100644 (file)
@@ -16,4 +16,5 @@ enum bt_mode get_boot_mode(void);
 int xrdc_config_pdac(u32 bridge, u32 index, u32 dom, u32 perm);
 int xrdc_config_pdac_openacc(u32 bridge, u32 index);
 enum boot_device get_boot_device(void);
+void set_lpav_qos(void);
 #endif
index 0cf4765bd65ddd1f23d4b9033a6926e107337a72..2348132bf751d3aa6d0ab19158ffe32ac9565346 100644 (file)
@@ -485,7 +485,10 @@ void lpav_configure(void)
        writel(0x1f, SIM_SEC_BASE_ADDR + 0x50);
        writel(0xffffffff, SIM_SEC_BASE_ADDR + 0x54);
        writel(0x003fffff, SIM_SEC_BASE_ADDR + 0x58);
+}
 
+void set_lpav_qos(void)
+{
        /* Set read QoS of dcnano on LPAV NIC */
        writel(0xf, 0x2e447100);
 }
index faece336ef30d3f2a350b55e322835182b3f144a..42f8e262b6a897608647be436f1a084298b5e822 100644 (file)
@@ -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)