mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 11:44:01 +08:00
0075242b3a
Add runtime DT support and documentation for the Cortex A7/A15 architected timers. Signed-off-by: Will Deacon <will.deacon@arm.com> Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
28 lines
673 B
Plaintext
28 lines
673 B
Plaintext
* ARM architected timer
|
|
|
|
ARM Cortex-A7 and Cortex-A15 have a per-core architected timer, which
|
|
provides per-cpu timers.
|
|
|
|
The timer is attached to a GIC to deliver its per-processor interrupts.
|
|
|
|
** Timer node properties:
|
|
|
|
- compatible : Should at least contain "arm,armv7-timer".
|
|
|
|
- interrupts : Interrupt list for secure, non-secure, virtual and
|
|
hypervisor timers, in that order.
|
|
|
|
- clock-frequency : The frequency of the main counter, in Hz. Optional.
|
|
|
|
Example:
|
|
|
|
timer {
|
|
compatible = "arm,cortex-a15-timer",
|
|
"arm,armv7-timer";
|
|
interrupts = <1 13 0xf08>,
|
|
<1 14 0xf08>,
|
|
<1 11 0xf08>,
|
|
<1 10 0xf08>;
|
|
clock-frequency = <100000000>;
|
|
};
|