diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2021-02-15 13:08:19 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2021-02-24 10:00:02 +0000 |
commit | 32b99169a56aa18047039092856a744d0e3d2d67 (patch) | |
tree | 169861274cf4c167e041616455c649dd52f7175b /src/mainboard/amd/mandolin/mainboard.c | |
parent | 2c7842407af8e84b28d41e8369ccf199748f65ce (diff) |
mb/amd,google/zork: Move init_tables() call
The semantics of pirq_setup() from previous platforms was to
only setup the global pointers for PIC and APIC tables, not
to create or modify the tables themselves.
Change-Id: Iaa7c31eed21432dc2b3fe6b32803bd2658fd5e2d
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50717
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/mainboard/amd/mandolin/mainboard.c')
-rw-r--r-- | src/mainboard/amd/mandolin/mainboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/amd/mandolin/mainboard.c b/src/mainboard/amd/mandolin/mainboard.c index 0d208da348..3513f614fe 100644 --- a/src/mainboard/amd/mandolin/mainboard.c +++ b/src/mainboard/amd/mandolin/mainboard.c @@ -75,7 +75,6 @@ static void init_tables(void) static void pirq_setup(void) { - init_tables(); intr_data_ptr = fch_apic_routing; picr_data_ptr = fch_pic_routing; } @@ -100,6 +99,7 @@ static void mandolin_enable(struct device *dev) { printk(BIOS_INFO, "Mainboard " CONFIG_MAINBOARD_PART_NUMBER " Enable.\n"); + init_tables(); /* Initialize the PIRQ data structures for consumption */ pirq_setup(); } |