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-rc5 17 lines 426 B view raw
1Allwinner A1X SoCs Timer Controller 2 3Required properties: 4 5- compatible : should be "allwinner,sun4i-a10-timer" 6- reg : Specifies base physical address and size of the registers. 7- interrupts : The interrupt of the first timer 8- clocks: phandle to the source clock (usually a 24 MHz fixed clock) 9 10Example: 11 12timer { 13 compatible = "allwinner,sun4i-a10-timer"; 14 reg = <0x01c20c00 0x400>; 15 interrupts = <22>; 16 clocks = <&osc>; 17};