mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-20 09:34:44 +08:00
f3074a2825
Define a compatible string for the Actions Semi S700 SoC timer. Signed-off-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Acked-by: Rob Herring <robh@kernel.org> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Rob Herring <robh+dt@kernel.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: devicetree@vger.kernel.org Link: http://lkml.kernel.org/r/1515418139-23276-1-git-send-email-daniel.lezcano@linaro.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
22 lines
746 B
Plaintext
22 lines
746 B
Plaintext
Actions Semi Owl Timer
|
|
|
|
Required properties:
|
|
- compatible : "actions,s500-timer" for S500
|
|
"actions,s700-timer" for S700
|
|
"actions,s900-timer" for S900
|
|
- reg : Offset and length of the register set for the device.
|
|
- interrupts : Should contain the interrupts.
|
|
- interrupt-names : Valid names are: "2hz0", "2hz1",
|
|
"timer0", "timer1", "timer2", "timer3"
|
|
See ../resource-names.txt
|
|
|
|
Example:
|
|
|
|
timer@b0168000 {
|
|
compatible = "actions,s500-timer";
|
|
reg = <0xb0168000 0x100>;
|
|
interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>,
|
|
<GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>;
|
|
interrupt-names = "timer0", "timer1";
|
|
};
|