Skip to content

Commit

Permalink
Move RPI eMMC to the correct DMA channel.
Browse files Browse the repository at this point in the history
The FixedDMA ACPI macro takes the DMA request line and channel as the
first two arguments. In most cases, these should be the same value. It is
unclear why a 4 was being supplied as the channel for the RPIs. the eMMC
owns DMA channel 11.
  • Loading branch information
ccstevens committed May 2, 2017
1 parent 59e9bff commit dbee7c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion uefi/plat/rpi/acpi/dsdt.asl
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ DefinitionBlock (
0x00001000)

Interrupt(, Level, ActiveHigh,) {62}
FixedDMA(11, 4, Width32Bit, )
FixedDMA(11, 11, Width32Bit, )
})
}
}
Expand Down
2 changes: 1 addition & 1 deletion uefi/plat/rpi2/acpi/dsdt.asl
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ DefinitionBlock (
0x00001000)

Interrupt(, Level, ActiveHigh,) {62}
FixedDMA(11, 4, Width32Bit, )
FixedDMA(11, 11, Width32Bit, )
})
}
}
Expand Down

0 comments on commit dbee7c4

Please sign in to comment.