forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'irqchip-fixes-5.17-2' of git://git.kernel.org/pub/scm/linu…
…x/kernel/git/maz/arm-platforms into irq/urgent Pull irqchip fixes from Marc Zyngier: - Don't register a hotplug notifier on GICv3 systems that advertise LPI support, but have no ITS to make use of it - Add missing DT matching for the thead,c900-plic variant of the SiFive PLIC Link: https://lore.kernel.org/r/[email protected]
- Loading branch information
Showing
3 changed files
with
19 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,19 +35,28 @@ description: | |
contains a specific memory layout, which is documented in chapter 8 of the | ||
SiFive U5 Coreplex Series Manual <https://static.dev.sifive.com/U54-MC-RVCoreIP.pdf>. | ||
|
||
The thead,c900-plic is different from sifive,plic-1.0.0 in opensbi, the | ||
T-HEAD PLIC implementation requires setting a delegation bit to allow access | ||
from S-mode. So add thead,c900-plic to distinguish them. | ||
|
||
maintainers: | ||
- Sagar Kadam <[email protected]> | ||
- Paul Walmsley <[email protected]> | ||
- Palmer Dabbelt <[email protected]> | ||
|
||
properties: | ||
compatible: | ||
items: | ||
- enum: | ||
- sifive,fu540-c000-plic | ||
- starfive,jh7100-plic | ||
- canaan,k210-plic | ||
- const: sifive,plic-1.0.0 | ||
oneOf: | ||
- items: | ||
- enum: | ||
- sifive,fu540-c000-plic | ||
- starfive,jh7100-plic | ||
- canaan,k210-plic | ||
- const: sifive,plic-1.0.0 | ||
- items: | ||
- enum: | ||
- allwinner,sun20i-d1-plic | ||
- const: thead,c900-plic | ||
|
||
reg: | ||
maxItems: 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters