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 v5.3-rc6 20 lines 599 B view raw
1Allwinner Sunxi Interrupt Controller 2 3Required properties: 4 5- compatible : should be one of the following: 6 "allwinner,sun4i-a10-ic" 7 "allwinner,suniv-f1c100s-ic" 8- reg : Specifies base physical address and size of the registers. 9- interrupt-controller : Identifies the node as an interrupt controller 10- #interrupt-cells : Specifies the number of cells needed to encode an 11 interrupt source. The value shall be 1. 12 13Example: 14 15intc: interrupt-controller { 16 compatible = "allwinner,sun4i-a10-ic"; 17 reg = <0x01c20400 0x400>; 18 interrupt-controller; 19 #interrupt-cells = <1>; 20};