mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
drm/tegra: vic: Fix CRC enable for T264
The change to write the INTF_CRC_CFG register was inadvertently left out. Correct this. Bug 4809300 Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com> Change-Id: I208da56d03e90e72ce26dffe7bef1cdeab95fab6
This commit is contained in:
committed by
Jon Hunter
parent
c8cb7c0808
commit
e71627a4e5
@@ -713,8 +713,11 @@ static int __maybe_unused vic_runtime_resume(struct device *dev)
|
|||||||
|
|
||||||
host1x_actmon_enable(&vic->client.base);
|
host1x_actmon_enable(&vic->client.base);
|
||||||
|
|
||||||
if (vic->can_enable_crc)
|
if (vic->can_enable_crc) {
|
||||||
vic_writel(vic, 0x1, VIC_SEC_INTF_CRC_CTRL);
|
vic_writel(vic, 0x1, VIC_SEC_INTF_CRC_CTRL);
|
||||||
|
if (of_machine_is_compatible("nvidia,tegra264"))
|
||||||
|
vic_writel(vic, 0x1, VIC_SEC_INTF_CRC_CFG);
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user