forked from torvalds/linux
-
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 branch 'timers-core-for-linus' of git://git.kernel.org/pub/scm/…
…linux/kernel/git/tip/tip Pull timer changes from Ingo Molnar: "Various clocksource driver updates: extend the core with memory mapped hardware (mmio) support and add new (ARM) Moxart SoC and sun4i hardware support" * 'timers-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (23 commits) clocksource: arch_timer: Add support for memory mapped timers clocksource: arch_timer: Push the read/write wrappers deeper Documentation: Add memory mapped ARM architected timer binding clocksource: arch_timer: Pass clock event to set_mode callback clocksource: arch_timer: Make register accessors less error-prone ARM: clocksource: moxart: documentation: Update device tree bindings document ARM: clocksource: moxart: Add bitops.h include ARM: clocksource: moxart: documentation: Fix device tree bindings document ARM: clocksource: Add support for MOXA ART SoCs clocksource: cadence_ttc: Reuse clocksource as sched_clock clocksource: cadence_ttc: Remove unused header clocksource: sun4i: Fix bug when switching from periodic to oneshot modes clocksource: sun4i: Cleanup parent clock setup clocksource: sun4i: Remove TIMER_SCAL variable clocksource: sun4i: Factor out some timer code clocksource: sun4i: Fix the next event code clocksource: sun4i: Don't forget to enable the clock we use clocksource: sun4i: Add clocksource and sched clock drivers clocksource: sun4i: rename AUTORELOAD define to RELOAD clocksource: sun4i: Wrap macros arguments in parenthesis ...
- Loading branch information
Showing
12 changed files
with
738 additions
and
133 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
17 changes: 17 additions & 0 deletions
17
Documentation/devicetree/bindings/timer/moxa,moxart-timer.txt
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,17 @@ | ||
MOXA ART timer | ||
|
||
Required properties: | ||
|
||
- compatible : Must be "moxa,moxart-timer" | ||
- reg : Should contain registers location and length | ||
- interrupts : Should contain the timer interrupt number | ||
- clocks : Should contain phandle for the clock that drives the counter | ||
|
||
Example: | ||
|
||
timer: timer@98400000 { | ||
compatible = "moxa,moxart-timer"; | ||
reg = <0x98400000 0x42>; | ||
interrupts = <19 1>; | ||
clocks = <&coreclk>; | ||
}; |
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 |
---|---|---|
|
@@ -2125,6 +2125,13 @@ M: Russell King <[email protected]> | |
S: Maintained | ||
F: include/linux/clk.h | ||
|
||
CLOCKSOURCE, CLOCKEVENT DRIVERS | ||
M: Daniel Lezcano <[email protected]> | ||
M: Thomas Gleixner <[email protected]> | ||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core | ||
S: Supported | ||
F: drivers/clocksource | ||
|
||
CISCO FCOE HBA DRIVER | ||
M: Hiral Patel <[email protected]> | ||
M: Suma Ramars <[email protected]> | ||
|
@@ -7156,7 +7163,7 @@ S: Maintained | |
F: include/linux/mmc/dw_mmc.h | ||
F: drivers/mmc/host/dw_mmc* | ||
|
||
TIMEKEEPING, NTP | ||
TIMEKEEPING, CLOCKSOURCE CORE, NTP | ||
M: John Stultz <[email protected]> | ||
M: Thomas Gleixner <[email protected]> | ||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core | ||
|
@@ -7169,7 +7176,6 @@ F: include/uapi/linux/timex.h | |
F: kernel/time/clocksource.c | ||
F: kernel/time/time*.c | ||
F: kernel/time/ntp.c | ||
F: drivers/clocksource | ||
|
||
TLG2300 VIDEO4LINUX-2 DRIVER | ||
M: Huang Shijie <[email protected]> | ||
|
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.