aboutsummaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorJonathan Zhang <jonzhang@meta.com>2022-11-07 17:30:14 -0800
committerFelix Held <felix-coreboot@felixheld.de>2022-11-11 00:36:40 +0000
commitd5d9b280de718f0d5e458b227f3684ec7a7a1d3c (patch)
treecbbbb96755e9f05c3c3edcc7c17ef2708dfce4be /src/cpu
parentaba1c945cd44332521df49228b883c7081723812 (diff)
acpi/acpi.c: Fix einj generation pointer arithmetics
Without a cast the aritmetics of tat = einj + sizeof(acpi_einj_smi_t) is the same as tat = (uintptr_t)einj + size(acpi_einj_smi_t) * size(acpi_einj_smi_t) So it overshoots the intended offset by a lot. This issue only came apparent because now einj is in the small IMD region which is close to TSEG. With the wrong aritmetics the tat pointer ended up inside TSEG which is not accessible from the OS causing exceptions. TEST: observe that tat pointer is inside the small IMD below TSEG (0x78000000 on our setup). "acpi_create_einj trigger_action_table = 0x77ffe89c" Change-Id: I3ab64b95c33eef01b2048816a21e17855bcb2f54 Signed-off-by: Arthur Heymans <arthur.heymans@9elements.com> Signed-off-by: Jonathan Zhang <jonzhang@meta.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69326 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marc Jones <marc@marcjonesconsulting.com>
Diffstat (limited to 'src/cpu')
0 files changed, 0 insertions, 0 deletions