Skip to content

Commit

Permalink
soc/intel/alderlake: Fix IRQ for PEG0, PEG1
Browse files Browse the repository at this point in the history
Fixes the following warnings on Linux:

    pcieport 0000:00:06.0: can't derive routing for PCI INT D
    pcieport 0000:00:06.2: can't derive routing for PCI INT B

Change-Id: I49406e0db77cf2391972f6660729bd0a41a34f13
Signed-off-by: Tim Crawford <[email protected]>
  • Loading branch information
crawfxrd committed Jan 23, 2023
1 parent c6ef149 commit 40e8d68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/soc/intel/alderlake/fsp_params.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ static const struct slot_irq_constraints irq_constraints[] = {
{
.slot = SA_DEV_SLOT_CPU_6,
.fns = {
FIXED_INT_PIRQ(SA_DEVFN_CPU_PCIE6_0, PCI_INT_A, PIRQ_A),
FIXED_INT_PIRQ(SA_DEVFN_CPU_PCIE6_2, PCI_INT_C, PIRQ_C),
FIXED_INT_PIRQ(SA_DEVFN_CPU_PCIE6_0, PCI_INT_D, PIRQ_A),
FIXED_INT_PIRQ(SA_DEVFN_CPU_PCIE6_2, PCI_INT_B, PIRQ_C),
},
},
{
Expand Down

0 comments on commit 40e8d68

Please sign in to comment.