-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'timer' of git://git.kernel.org/pub/scm/linux/kernel/git/ar…
…m/arm-soc Pull "ARM: timer cleanup work" from Arnd Bergmann: "These are split out from the generic soc and driver updates because there was a lot of conflicting work by multiple people. Marc Zyngier worked on simplifying the "localtimer" interfaces, and some of the platforms are touching the same code as they move to device tree based booting. Signed-off-by: Arnd Bergmann <arnd@arndb.de>" * tag 'timer' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (61 commits) ARM: tegra: select USB_ULPI if USB is selected arm/tegra: pcie: fix return value of function ARM: ux500: fix compilation after local timer rework ARM: shmobile: remove additional __io() macro use ARM: local timers: make the runtime registration interface mandatory ARM: local timers: convert MSM to runtime registration interface ARM: local timers: convert exynos to runtime registration interface ARM: smp_twd: remove old local timer interface ARM: imx6q: convert to twd_local_timer_register() interface ARM: highbank: convert to twd_local_timer_register() interface ARM: ux500: convert to twd_local_timer_register() interface ARM: shmobile: convert to twd_local_timer_register() interface ARM: tegra: convert to twd_local_timer_register() interface ARM: plat-versatile: convert to twd_local_timer_register() interface ARM: OMAP4: convert to twd_local_timer_register() interface ARM: smp_twd: add device tree support ARM: smp_twd: add runtime registration support ARM: local timers: introduce a new registration interface ARM: smp_twd: make local_timer_stop a symbol instead of a #define ARM: mach-shmobile: default to no earlytimer ...
- Loading branch information
Showing
103 changed files
with
964 additions
and
999 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
* ARM Timer Watchdog | ||
|
||
ARM 11MP, Cortex-A5 and Cortex-A9 are often associated with a per-core | ||
Timer-Watchdog (aka TWD), which provides both a per-cpu local timer | ||
and watchdog. | ||
|
||
The TWD is usually attached to a GIC to deliver its two per-processor | ||
interrupts. | ||
|
||
** Timer node required properties: | ||
|
||
- compatible : Should be one of: | ||
"arm,cortex-a9-twd-timer" | ||
"arm,cortex-a5-twd-timer" | ||
"arm,arm11mp-twd-timer" | ||
|
||
- interrupts : One interrupt to each core | ||
|
||
- reg : Specify the base address and the size of the TWD timer | ||
register window. | ||
|
||
Example: | ||
|
||
twd-timer@2c000600 { | ||
compatible = "arm,arm11mp-twd-timer""; | ||
reg = <0x2c000600 0x20>; | ||
interrupts = <1 13 0xf01>; | ||
}; | ||
|
||
** Watchdog node properties: | ||
|
||
- compatible : Should be one of: | ||
"arm,cortex-a9-twd-wdt" | ||
"arm,cortex-a5-twd-wdt" | ||
"arm,arm11mp-twd-wdt" | ||
|
||
- interrupts : One interrupt to each core | ||
|
||
- reg : Specify the base address and the size of the TWD watchdog | ||
register window. | ||
|
||
Example: | ||
|
||
twd-watchdog@2c000620 { | ||
compatible = "arm,arm11mp-twd-wdt"; | ||
reg = <0x2c000620 0x20>; | ||
interrupts = <1 14 0xf01>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.