Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.7-rc1 22 lines 608 B view raw
1* H8/300H Interrupt controller 2 3Required properties: 4 5- compatible: has to be "renesas,h8300h-intc", "renesas,h8300-intc" as fallback. 6- #interrupt-cells: has to be <2>: an interrupt index and flags, as defined in 7 interrupts.txt in this directory 8- regs: Base address of interrupt controller registers. 9 10Optional properties: 11 12- any properties, listed in interrupts.txt, and any standard resource allocation 13 properties 14 15Example: 16 17 h8intc: interrupt-controller@fee012 { 18 compatible = "renesas,h8300h-intc", "renesas,h8300-intc"; 19 #interrupt-cells = <2>; 20 interrupt-controller; 21 reg = <0xfee012 7>; 22 };