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

dt-bindings: timer: meson6_timer: document all interrupts

The meson6_timer IP block supports four timers - each of them has it's
own interrupt line. Update the documentation to reflect that all four
interrupts should be passed.

Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: Kevin Hilman <khilman@baylibre.com>

authored by

Martin Blumenstingl and committed by
Kevin Hilman
e55b892e 65102238

+5 -2
+5 -2
Documentation/devicetree/bindings/timer/amlogic,meson6-timer.txt
··· 4 4 5 5 - compatible : should be "amlogic,meson6-timer" 6 6 - reg : Specifies base physical address and size of the registers. 7 - - interrupts : The interrupt of the first timer 7 + - interrupts : The four interrupts, one for each timer event 8 8 9 9 Example: 10 10 11 11 timer@c1109940 { 12 12 compatible = "amlogic,meson6-timer"; 13 13 reg = <0xc1109940 0x14>; 14 - interrupts = <0 10 1>; 14 + interrupts = <GIC_SPI 10 IRQ_TYPE_EDGE_RISING>, 15 + <GIC_SPI 11 IRQ_TYPE_EDGE_RISING>, 16 + <GIC_SPI 6 IRQ_TYPE_EDGE_RISING>, 17 + <GIC_SPI 29 IRQ_TYPE_EDGE_RISING>; 15 18 };