diff options
author | Frans Hendriks <fhendriks@eltan.com> | 2022-08-17 09:59:29 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-08-18 18:28:43 +0000 |
commit | 82f0a68a9872d6b82b25ebe022a8e7425113e83d (patch) | |
tree | b6263149d95e792d5c7f1f9a81914988d8ccc961 /src/soc | |
parent | e0ddb37ae806995fd6cd830b6c22c364ac2f425e (diff) |
soc/intel/tigerlake/fsp_params.c: Add INT D routing for PEG60
Debian 11 reports ´0:6:0 can´t derive routing for PCI INT D´.
Use FIXED_INT_PIRQ for INT D to PIRQ routing table.
BUG=NA
TEST=Boot Debian 11 on Siemens AS_TGL1 and verify no PIRQ error message
in ´dmesg´
Change-Id: If38c7b6f664e0f6533e583ce62504281a4092720
Signed-off-by: Frans Hendriks <fhendriks@eltan.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/66824
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/tigerlake/fsp_params.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/tigerlake/fsp_params.c b/src/soc/intel/tigerlake/fsp_params.c index 2c258409c9..ef75c56b4a 100644 --- a/src/soc/intel/tigerlake/fsp_params.c +++ b/src/soc/intel/tigerlake/fsp_params.c @@ -122,7 +122,7 @@ static const struct slot_irq_constraints irq_constraints[] = { { .slot = SA_DEV_SLOT_CPU_PCIE, .fns = { - ANY_PIRQ(SA_DEVFN_CPU_PCIE), + FIXED_INT_PIRQ(SA_DEVFN_CPU_PCIE, PCI_INT_D, PIRQ_D), }, }, { |