mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
25 lines
546 B
Plaintext
25 lines
546 B
Plaintext
|
|
||
|
* ARM Global Timer
|
||
|
Cortex-A9 are often associated with a per-core Global timer.
|
||
|
|
||
|
** Timer node required properties:
|
||
|
|
||
|
- compatible : Should be "arm,cortex-a9-global-timer"
|
||
|
Driver supports versions r2p0 and above.
|
||
|
|
||
|
- interrupts : One interrupt to each core
|
||
|
|
||
|
- reg : Specify the base address and the size of the GT timer
|
||
|
register window.
|
||
|
|
||
|
- clocks : Should be phandle to a clock.
|
||
|
|
||
|
Example:
|
||
|
|
||
|
timer@2c000600 {
|
||
|
compatible = "arm,cortex-a9-global-timer";
|
||
|
reg = <0x2c000600 0x20>;
|
||
|
interrupts = <1 13 0xf01>;
|
||
|
clocks = <&arm_periph_clk>;
|
||
|
};
|