mirror of
https://github.com/torvalds/linux.git
synced 2024-12-19 01:23:20 +00:00
620f5e1cbf
"dw-apb-timer-osc" and "dw-apb-timer-sp" are the same implementation of the DW APB timer, just fed by different clocks. Thus, deprecate both "dw-apb-timer-osc" and "dw-apb-timer-sp" in lieu of "dw-apb-timer". Signed-off-by: Dinh Nguyen <dinguyen@altera.com> Reviewed-by: Pavel Machek <pavel@denx.de> Acked-by: Stephen Warren <swarren@wwwdotorg.org> CC: Rob Herring <rob.herring@calxeda.com> Cc: Pawel Moll <pawel.moll@arm.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Ian Campbell <ian.campbell@citrix.com> CC: Arnd Bergmann <arnd@arndb.de> Cc: Olof Johansson <olof@lixom.net> CC: Jamie Iles <jamie@jamieiles.com> Cc: John Stultz <john.stultz@linaro.org> Cc: Heiko Stuebner <heiko@sntech.de> Cc: Pavel Machek <pavel@denx.de> Cc: devicetree@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org Signed-off-by: Olof Johansson <olof@lixom.net> v3: - Split out a separate that cleans up the timer entries and clock information. - Clearly states which binding is deprecated in the bindings doc. v2: - Deprecate the "dw-apb-timer-osc" and "dw-apb-timer-sp" but maintain backwards compatibility in the driver.
33 lines
965 B
Plaintext
33 lines
965 B
Plaintext
* Designware APB timer
|
|
|
|
Required properties:
|
|
- compatible: One of:
|
|
"snps,dw-apb-timer"
|
|
"snps,dw-apb-timer-sp" <DEPRECATED>
|
|
"snps,dw-apb-timer-osc" <DEPRECATED>
|
|
- reg: physical base address of the controller and length of memory mapped
|
|
region.
|
|
- interrupts: IRQ line for the timer.
|
|
- either clocks+clock-names or clock-frequency properties
|
|
|
|
Optional properties:
|
|
- clocks : list of clock specifiers, corresponding to entries in
|
|
the clock-names property;
|
|
- clock-names : should contain "timer" and "pclk" entries, matching entries
|
|
in the clocks property.
|
|
- clock-frequency: The frequency in HZ of the timer.
|
|
- clock-freq: For backwards compatibility with picoxcell
|
|
|
|
If using the clock specifiers, the pclk clock is optional, as not all
|
|
systems may use one.
|
|
|
|
|
|
Example:
|
|
timer@ffe00000 {
|
|
compatible = "snps,dw-apb-timer";
|
|
interrupts = <0 170 4>;
|
|
reg = <0xffe00000 0x1000>;
|
|
clocks = <&timer_clk>, <&timer_pclk>;
|
|
clock-names = "timer", "pclk";
|
|
};
|