Merge "fix(intel): update boot scratch cold register to use cold 8" into integration

This commit is contained in:
Manish Pandey 2023-11-08 15:52:18 +01:00 committed by TrustedFirmware Code Review
commit 9c473d888a

View file

@ -62,7 +62,7 @@ int socfpga_pwr_domain_on(u_register_t mpidr)
#if PLATFORM_MODEL != PLAT_SOCFPGA_AGILEX5
if (cpu_id == 0x00) {
psci_boot = mmio_read_32(SOCFPGA_SYSMGR(BOOT_SCRATCH_COLD_8));
psci_boot |= 0x20000; /* bit 17 */
psci_boot |= 0x80000; /* bit 19 */
mmio_write_32(SOCFPGA_SYSMGR(BOOT_SCRATCH_COLD_8), psci_boot);
}