diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-23 19:21:23 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-23 19:21:23 -0400 |
| commit | 1a4120bc101bdc25ec7258937b5071bf34b19cc5 (patch) | |
| tree | 4500b3fce7b44cbefb06a97df94ada236e07bd07 /Documentation/devicetree/bindings/rtc | |
| parent | 2fa379474fe2227d4d691d2d24eab4e3bdb3b26b (diff) | |
| parent | 35bf8cc74b2b1dfad18df6d330b271e68ab6e3f5 (diff) | |
Merge tag 'timer' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
Pull arm-soc timer updates from Arnd Bergmann:
"This contains two branches dealing with timers, one for the picoxcell
platform that is now using DT with the platform-independent
dw_apb_timer driver. The other change is for the omap-specific
dmtimer driver."
* tag 'timer' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc:
clocksource: dw_apb_timer: Add common DTS glue for dw_apb_timer
ARM: OMAP2+: Simplify dmtimer clock aliases
ARM: OMAP2+: Move dmtimer clock set function to dmtimer driver
ARM: OMAP1: Fix dmtimer support
ARM: OMAP: Add flag to indicate if a timer needs a manual reset
ARM: OMAP: Remove timer function pointer for context loss counter
ARM: OMAP: Remove loses_context variable from timer platform data
ARM: OMAP2+: Fix external clock support for dmtimers
ARM: OMAP2+: HWMOD: Correct timer device attributes
ARM: OMAP: Add DMTIMER capability variable to represent timer features
ARM: OMAP2+: Add dmtimer platform function to reserve systimers
ARM: OMAP2+: Remove unused max number of timers definition
ARM: OMAP: Remove unnecessary clk structure
Diffstat (limited to 'Documentation/devicetree/bindings/rtc')
| -rw-r--r-- | Documentation/devicetree/bindings/rtc/dw-apb.txt | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/rtc/dw-apb.txt b/Documentation/devicetree/bindings/rtc/dw-apb.txt new file mode 100644 index 00000000000..93e2b0f048e --- /dev/null +++ b/Documentation/devicetree/bindings/rtc/dw-apb.txt | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | * Designware APB timer | ||
| 2 | |||
| 3 | Required properties: | ||
| 4 | - compatible: "snps,dw-apb-timer-sp" or "snps,dw-apb-timer-osc" | ||
| 5 | - reg: physical base address of the controller and length of memory mapped | ||
| 6 | region. | ||
| 7 | - interrupts: IRQ line for the timer. | ||
| 8 | - clock-frequency: The frequency in HZ of the timer. | ||
| 9 | - clock-freq: For backwards compatibility with picoxcell | ||
| 10 | |||
| 11 | Example: | ||
| 12 | |||
| 13 | timer1: timer@ffc09000 { | ||
| 14 | compatible = "snps,dw-apb-timer-sp"; | ||
| 15 | interrupts = <0 168 4>; | ||
| 16 | clock-frequency = <200000000>; | ||
| 17 | reg = <0xffc09000 0x1000>; | ||
| 18 | }; | ||
| 19 | |||
| 20 | timer2: timer@ffd00000 { | ||
| 21 | compatible = "snps,dw-apb-timer-osc"; | ||
| 22 | interrupts = <0 169 4>; | ||
| 23 | clock-frequency = <200000000>; | ||
| 24 | reg = <0xffd00000 0x1000>; | ||
| 25 | }; | ||
