mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 19:17:48 +07:00
2359ccddc1
Bindings are supposed to be organized by device class/function. Move bindings for various timers to timer/ binding directory. Cc: Linus Walleij <linus.walleij@linaro.org> Acked-by: Thierry Reding <thierry.reding@gmail.com> Signed-off-by: Rob Herring <robh@kernel.org>
27 lines
647 B
Plaintext
27 lines
647 B
Plaintext
* ARMv7M System Timer
|
|
|
|
ARMv7-M includes a system timer, known as SysTick. Current driver only
|
|
implements the clocksource feature.
|
|
|
|
Required properties:
|
|
- compatible : Should be "arm,armv7m-systick"
|
|
- reg : The address range of the timer
|
|
|
|
Required clocking property, have to be one of:
|
|
- clocks : The input clock of the timer
|
|
- clock-frequency : The rate in HZ in input of the ARM SysTick
|
|
|
|
Examples:
|
|
|
|
systick: timer@e000e010 {
|
|
compatible = "arm,armv7m-systick";
|
|
reg = <0xe000e010 0x10>;
|
|
clocks = <&clk_systick>;
|
|
};
|
|
|
|
systick: timer@e000e010 {
|
|
compatible = "arm,armv7m-systick";
|
|
reg = <0xe000e010 0x10>;
|
|
clock-frequency = <90000000>;
|
|
};
|