12345678910111213141516171819202122232425262728293031323334 |
- From a21e7548438f3a8f59f9b9f3a8bc973613d3726a Mon Sep 17 00:00:00 2001
- From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <[email protected]>
- Date: Thu, 14 Jun 2018 18:41:47 +0200
- Subject: [PATCH] ARM: dts: BCM53573: Add architected timer
- MIME-Version: 1.0
- Content-Type: text/plain; charset=UTF-8
- Content-Transfer-Encoding: 8bit
- It's a standard ARM architected timer that was simply missed when
- initially adding this .dtsi file.
- Signed-off-by: Rafał Miłecki <[email protected]>
- Signed-off-by: Florian Fainelli <[email protected]>
- ---
- arch/arm/boot/dts/bcm53573.dtsi | 8 ++++++++
- 1 file changed, 8 insertions(+)
- --- a/arch/arm/boot/dts/bcm53573.dtsi
- +++ b/arch/arm/boot/dts/bcm53573.dtsi
- @@ -48,6 +48,14 @@
- };
- };
-
- + timer {
- + compatible = "arm,armv7-timer";
- + interrupts = <GIC_PPI 13 IRQ_TYPE_LEVEL_LOW>,
- + <GIC_PPI 14 IRQ_TYPE_LEVEL_LOW>,
- + <GIC_PPI 11 IRQ_TYPE_LEVEL_LOW>,
- + <GIC_PPI 10 IRQ_TYPE_LEVEL_LOW>;
- + };
- +
- clocks {
- #address-cells = <1>;
- #size-cells = <1>;
|