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.5 20 lines 544 B view raw
1RDA Micro RDA8810PL Timer 2 3Required properties: 4- compatible : "rda,8810pl-timer" 5- reg : Offset and length of the register set for the device. 6- interrupts : Should contain two interrupts. 7- interrupt-names : Should be "hwtimer", "ostimer". 8 9Example: 10 11 apb@20900000 { 12 compatible = "simple-bus"; 13 ... 14 timer@10000 { 15 compatible = "rda,8810pl-timer"; 16 reg = <0x10000 0x1000>; 17 interrupts = <16 IRQ_TYPE_LEVEL_HIGH>, 18 <17 IRQ_TYPE_LEVEL_HIGH>; 19 interrupt-names = "hwtimer", "ostimer"; 20 };