Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1404092
| From | Rich Felker <dalias@libc.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2 04/12] of: add J-Core timer bindings |
| Date | 2016-05-20 05:00 +0200 |
| Message-ID | <rAIPo-8gr-19@gated-at.bofh.it> (permalink) |
| References | <rAIPn-8gr-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Signed-off-by: Rich Felker <dalias@libc.org>
---
.../devicetree/bindings/timer/jcore,pit.txt | 28 ++++++++++++++++++++++
1 file changed, 28 insertions(+)
create mode 100644 Documentation/devicetree/bindings/timer/jcore,pit.txt
diff --git a/Documentation/devicetree/bindings/timer/jcore,pit.txt b/Documentation/devicetree/bindings/timer/jcore,pit.txt
new file mode 100644
index 0000000..d53759a
--- /dev/null
+++ b/Documentation/devicetree/bindings/timer/jcore,pit.txt
@@ -0,0 +1,28 @@
+J-Core Programmable Interval Timer and Realtime Clock
+
+Required properties:
+
+- compatible: Must be "jcore,pit".
+
+- reg: Memory region for timer/rtc registers.
+
+- interrupts: An interrupt to assign for the timer. The actual pit
+ core is integrated with the aic and allows the timer interrupt
+ assignment to be programmed by software, but this property is
+ required in order to reserve an interrupt number that doesn't
+ conflict with other devices.
+
+Optional properties:
+
+- cpu-offset: For SMP, the per-cpu offset to the local timer
+ programming memory range.
+
+
+Example:
+
+timer {
+ compatible = "jcore,pit";
+ reg = < 0x200 0x30 >;
+ cpu-offset = < 0x300 >;
+ interrupts = < 0x48 >;
+};
--
2.8.1
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v2 00/12] J-core J2 cpu and SoC peripherals support Rich Felker <dalias@libc.org> - 2016-05-20 05:00 +0200
[PATCH v2 04/12] of: add J-Core timer bindings Rich Felker <dalias@libc.org> - 2016-05-20 05:00 +0200
Re: [PATCH v2 04/12] of: add J-Core timer bindings Geert Uytterhoeven <geert@linux-m68k.org> - 2016-05-20 10:10 +0200
[PATCH v2 09/12] clocksource: add J-Core PIT/RTC driver Rich Felker <dalias@libc.org> - 2016-05-20 05:00 +0200
Re: [PATCH v2 09/12] clocksource: add J-Core PIT/RTC driver Daniel Lezcano <daniel.lezcano@linaro.org> - 2016-05-20 16:10 +0200
Re: [PATCH v2 09/12] clocksource: add J-Core PIT/RTC driver Rich Felker <dalias@libc.org> - 2016-05-21 05:20 +0200
Re: [PATCH v2 09/12] clocksource: add J-Core PIT/RTC driver Rob Landley <rob@landley.net> - 2016-05-21 18:00 +0200
Re: [PATCH v2 09/12] clocksource: add J-Core PIT/RTC driver Daniel Lezcano <daniel.lezcano@linaro.org> - 2016-05-23 22:40 +0200
Re: [PATCH v2 09/12] clocksource: add J-Core PIT/RTC driver Rich Felker <dalias@libc.org> - 2016-05-24 04:30 +0200
[PATCH v2 01/12] of: add vendor prefix for J-Core Rich Felker <dalias@libc.org> - 2016-05-20 05:00 +0200
Re: [PATCH v2 01/12] of: add vendor prefix for J-Core Rob Herring <robh@kernel.org> - 2016-05-23 22:50 +0200
[PATCH v2 05/12] of: add J-Core SPI master bindings Rich Felker <dalias@libc.org> - 2016-05-20 05:00 +0200
Re: [PATCH v2 05/12] of: add J-Core SPI master bindings Geert Uytterhoeven <geert@linux-m68k.org> - 2016-05-20 10:10 +0200
Re: [PATCH v2 05/12] of: add J-Core SPI master bindings Rich Felker <dalias@libc.org> - 2016-05-23 23:10 +0200
Re: [PATCH v2 05/12] of: add J-Core SPI master bindings Rob Herring <robh@kernel.org> - 2016-05-24 01:20 +0200
Re: [PATCH v2 05/12] of: add J-Core SPI master bindings Rob Herring <robh@kernel.org> - 2016-05-23 23:10 +0200
[PATCH v2 11/12] sh: add defconfig for J-Core J2 Rich Felker <dalias@libc.org> - 2016-05-20 05:00 +0200
[PATCH v2 03/12] of: add J-Core interrupt controller bindings Rich Felker <dalias@libc.org> - 2016-05-20 05:00 +0200
Re: [PATCH v2 03/12] of: add J-Core interrupt controller bindings Geert Uytterhoeven <geert@linux-m68k.org> - 2016-05-20 10:10 +0200
Re: [PATCH v2 03/12] of: add J-Core interrupt controller bindings Rich Felker <dalias@libc.org> - 2016-05-21 00:40 +0200
Re: [PATCH v2 03/12] of: add J-Core interrupt controller bindings Geert Uytterhoeven <geert@linux-m68k.org> - 2016-05-21 20:10 +0200
Re: [PATCH v2 03/12] of: add J-Core interrupt controller bindings Rich Felker <dalias@libc.org> - 2016-05-21 21:20 +0200
Re: [PATCH v2 03/12] of: add J-Core interrupt controller bindings Rob Herring <robh@kernel.org> - 2016-05-23 23:00 +0200
Re: [PATCH v2 03/12] of: add J-Core interrupt controller bindings Rich Felker <dalias@libc.org> - 2016-05-23 23:20 +0200
Re: [PATCH v2 03/12] of: add J-Core interrupt controller bindings Marc Zyngier <marc.zyngier@arm.com> - 2016-05-24 10:10 +0200
Re: [PATCH v2 03/12] of: add J-Core interrupt controller bindings Rich Felker <dalias@libc.org> - 2016-05-25 04:30 +0200
csiph-web