1
0
Fork 0

MLK-25018 soc: imx: Correct the default noc setting on imx8mq

The config for lcdif should be removed, and need to add vpu
qos setting by default. this patch is just to add back the
vpu qos config that is missed when resolving cherry-pick
conflict for patch:
3a3f54750294: MLK-19380 driver: soc: update the noc QoS setting on imx8mq

Signed-off-by: Jacky Bai <ping.bai@nxp.com>
Reviewed-by: Anson Huang <Anson.Huang@nxp.com>
zero-colors
Jacky Bai 2020-11-18 17:33:40 +08:00
parent c561632ebd
commit 940131d3f3
1 changed files with 2 additions and 2 deletions

View File

@ -191,8 +191,8 @@ static void __init imx8mq_noc_init(void)
if (res.a0)
pr_err("Config NOC for CPU fail!\n");
arm_smccc_smc(IMX_SIP_NOC, IMX_SIP_NOC_LCDIF, 0,
0, 0, 0, 0, 0, &res);
arm_smccc_smc(IMX_SIP_NOC, IMX_SIP_NOC_PRIORITY, NOC_VPU_PRIORITY,
0x80000300, 0, 0, 0, 0, &res);
if (res.a0)
pr_err("Config NOC for VPU fail!\n");
}