summaryrefslogtreecommitdiff
path: root/src/soc/amd
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2022-04-25 14:59:05 -0600
committerFelix Held <felix-coreboot@felixheld.de>2022-05-16 13:08:35 +0000
commit169302aa7f52c9d9e842700575741a932a64ac99 (patch)
tree482069799866bfc5c87f6082ca2bb72d72dfc35a /src/soc/amd
parentbae84984860853f67d36b775c39171845be74b8b (diff)
acpi, arch/x86/smp/mpspec,soc/amd/common: Move MP_IRQ_ flags into acpi.h
The MP_IRQ flags can be used in the MP table and the ACPI MADT table. Move them into acpi.h to avoid pulling in the full mpspec.h which is only available on x86. BUG=b:218874489, b:160595155 TEST=Build Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: I4f1091b7629a6446fa399720b0270556a926401a Reviewed-on: https://review.coreboot.org/c/coreboot/+/63845 Reviewed-by: Karthik Ramasubramanian <kramasub@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd')
-rw-r--r--src/soc/amd/common/block/include/amdblocks/chip.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/amd/common/block/include/amdblocks/chip.h b/src/soc/amd/common/block/include/amdblocks/chip.h
index 2ae9185dd3..46662fc596 100644
--- a/src/soc/amd/common/block/include/amdblocks/chip.h
+++ b/src/soc/amd/common/block/include/amdblocks/chip.h
@@ -34,7 +34,7 @@ struct soc_amd_common_config {
*/
struct {
uint8_t irq;
- /* See MP_IRQ_* from mpspec.h */
+ /* See MP_IRQ_* from acpi.h */
uint8_t flags;
} irq_override[16];