* [PATCH v2 0/3] Rockchip Timer DT binding YAML conversion @ 2021-05-06 11:11 Ezequiel Garcia 2021-05-06 11:11 ` [PATCH v2 1/3] arm64: dts: rockchip: add timer0 clocks on rk3368 Ezequiel Garcia ` (4 more replies) 0 siblings, 5 replies; 11+ messages in thread From: Ezequiel Garcia @ 2021-05-06 11:11 UTC (permalink / raw) To: linux-rockchip, devicetree Cc: Heiko Stuebner, Kever Yang, Daniel Lezcano, Rob Herring, Ezequiel Garcia, kernel Changes from v1: * Fix the order of clock specifiers. Ezequiel Garcia (3): arm64: dts: rockchip: add timer0 clocks on rk3368 arm: dts: rockchip: Fix the timer clocks order dt-bindings: timer: convert rockchip,rk-timer.txt to YAML .../bindings/timer/rockchip,rk-timer.txt | 27 -------- .../bindings/timer/rockchip,rk-timer.yaml | 64 +++++++++++++++++++ arch/arm/boot/dts/rk3188.dtsi | 8 +-- arch/arm/boot/dts/rk3288.dtsi | 4 +- arch/arm64/boot/dts/rockchip/rk3368.dtsi | 2 + 5 files changed, 72 insertions(+), 33 deletions(-) delete mode 100644 Documentation/devicetree/bindings/timer/rockchip,rk-timer.txt create mode 100644 Documentation/devicetree/bindings/timer/rockchip,rk-timer.yaml -- 2.30.0 ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v2 1/3] arm64: dts: rockchip: add timer0 clocks on rk3368 2021-05-06 11:11 [PATCH v2 0/3] Rockchip Timer DT binding YAML conversion Ezequiel Garcia @ 2021-05-06 11:11 ` Ezequiel Garcia 2021-05-06 11:11 ` [PATCH v2 2/3] arm: dts: rockchip: Fix the timer clocks order Ezequiel Garcia ` (3 subsequent siblings) 4 siblings, 0 replies; 11+ messages in thread From: Ezequiel Garcia @ 2021-05-06 11:11 UTC (permalink / raw) To: linux-rockchip, devicetree Cc: Heiko Stuebner, Kever Yang, Daniel Lezcano, Rob Herring, Ezequiel Garcia, kernel The timer driver requires pclk and sclk clocks to be present in the device tree node, so add them. Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com> --- arch/arm64/boot/dts/rockchip/rk3368.dtsi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm64/boot/dts/rockchip/rk3368.dtsi b/arch/arm64/boot/dts/rockchip/rk3368.dtsi index dfc6376171d0..4c64fbefb483 100644 --- a/arch/arm64/boot/dts/rockchip/rk3368.dtsi +++ b/arch/arm64/boot/dts/rockchip/rk3368.dtsi @@ -664,6 +664,8 @@ timer0: timer@ff810000 { compatible = "rockchip,rk3368-timer", "rockchip,rk3288-timer"; reg = <0x0 0xff810000 0x0 0x20>; interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&cru PCLK_TIMER0>, <&cru SCLK_TIMER00>; + clock-names = "pclk", "timer"; }; spdif: spdif@ff880000 { -- 2.30.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v2 2/3] arm: dts: rockchip: Fix the timer clocks order 2021-05-06 11:11 [PATCH v2 0/3] Rockchip Timer DT binding YAML conversion Ezequiel Garcia 2021-05-06 11:11 ` [PATCH v2 1/3] arm64: dts: rockchip: add timer0 clocks on rk3368 Ezequiel Garcia @ 2021-05-06 11:11 ` Ezequiel Garcia 2021-05-06 11:11 ` [PATCH v2 3/3] dt-bindings: timer: convert rockchip,rk-timer.txt to YAML Ezequiel Garcia ` (2 subsequent siblings) 4 siblings, 0 replies; 11+ messages in thread From: Ezequiel Garcia @ 2021-05-06 11:11 UTC (permalink / raw) To: linux-rockchip, devicetree Cc: Heiko Stuebner, Kever Yang, Daniel Lezcano, Rob Herring, Ezequiel Garcia, kernel Fixed order is the device-tree convention. The timer driver currently gets clocks by name, so no changes are needed there. Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com> --- arch/arm/boot/dts/rk3188.dtsi | 8 ++++---- arch/arm/boot/dts/rk3288.dtsi | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/arm/boot/dts/rk3188.dtsi b/arch/arm/boot/dts/rk3188.dtsi index 2298a8d840ba..2c08ae60e4a1 100644 --- a/arch/arm/boot/dts/rk3188.dtsi +++ b/arch/arm/boot/dts/rk3188.dtsi @@ -150,16 +150,16 @@ timer3: timer@2000e000 { compatible = "rockchip,rk3188-timer", "rockchip,rk3288-timer"; reg = <0x2000e000 0x20>; interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>; - clocks = <&cru SCLK_TIMER3>, <&cru PCLK_TIMER3>; - clock-names = "timer", "pclk"; + clocks = <&cru PCLK_TIMER3>, <&cru SCLK_TIMER3>; + clock-names = "pclk", "timer"; }; timer6: timer@200380a0 { compatible = "rockchip,rk3188-timer", "rockchip,rk3288-timer"; reg = <0x200380a0 0x20>; interrupts = <GIC_SPI 64 IRQ_TYPE_LEVEL_HIGH>; - clocks = <&cru SCLK_TIMER6>, <&cru PCLK_TIMER0>; - clock-names = "timer", "pclk"; + clocks = <&cru PCLK_TIMER0>, <&cru SCLK_TIMER6>; + clock-names = "pclk", "timer"; }; i2s0: i2s@1011a000 { diff --git a/arch/arm/boot/dts/rk3288.dtsi b/arch/arm/boot/dts/rk3288.dtsi index 05557ad02b33..03ae83f50a17 100644 --- a/arch/arm/boot/dts/rk3288.dtsi +++ b/arch/arm/boot/dts/rk3288.dtsi @@ -196,8 +196,8 @@ timer: timer@ff810000 { compatible = "rockchip,rk3288-timer"; reg = <0x0 0xff810000 0x0 0x20>; interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>; - clocks = <&xin24m>, <&cru PCLK_TIMER>; - clock-names = "timer", "pclk"; + clocks = <&cru PCLK_TIMER>, <&xin24m>; + clock-names = "pclk", "timer"; }; display-subsystem { -- 2.30.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v2 3/3] dt-bindings: timer: convert rockchip,rk-timer.txt to YAML 2021-05-06 11:11 [PATCH v2 0/3] Rockchip Timer DT binding YAML conversion Ezequiel Garcia 2021-05-06 11:11 ` [PATCH v2 1/3] arm64: dts: rockchip: add timer0 clocks on rk3368 Ezequiel Garcia 2021-05-06 11:11 ` [PATCH v2 2/3] arm: dts: rockchip: Fix the timer clocks order Ezequiel Garcia @ 2021-05-06 11:11 ` Ezequiel Garcia 2021-05-07 21:16 ` Rob Herring 2021-05-28 15:56 ` Heiko Stübner 2021-05-09 23:55 ` (subset) [PATCH v2 0/3] Rockchip Timer DT binding YAML conversion Heiko Stuebner 2021-05-10 0:12 ` Heiko Stuebner 4 siblings, 2 replies; 11+ messages in thread From: Ezequiel Garcia @ 2021-05-06 11:11 UTC (permalink / raw) To: linux-rockchip, devicetree Cc: Heiko Stuebner, Kever Yang, Daniel Lezcano, Rob Herring, Ezequiel Garcia, kernel Convert Rockchip Timer dt-bindings to YAML. Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com> --- .../bindings/timer/rockchip,rk-timer.txt | 27 -------- .../bindings/timer/rockchip,rk-timer.yaml | 64 +++++++++++++++++++ 2 files changed, 64 insertions(+), 27 deletions(-) delete mode 100644 Documentation/devicetree/bindings/timer/rockchip,rk-timer.txt create mode 100644 Documentation/devicetree/bindings/timer/rockchip,rk-timer.yaml diff --git a/Documentation/devicetree/bindings/timer/rockchip,rk-timer.txt b/Documentation/devicetree/bindings/timer/rockchip,rk-timer.txt deleted file mode 100644 index d65fdce7c7f0..000000000000 --- a/Documentation/devicetree/bindings/timer/rockchip,rk-timer.txt +++ /dev/null @@ -1,27 +0,0 @@ -Rockchip rk timer - -Required properties: -- compatible: should be: - "rockchip,rv1108-timer", "rockchip,rk3288-timer": for Rockchip RV1108 - "rockchip,rk3036-timer", "rockchip,rk3288-timer": for Rockchip RK3036 - "rockchip,rk3066-timer", "rockchip,rk3288-timer": for Rockchip RK3066 - "rockchip,rk3188-timer", "rockchip,rk3288-timer": for Rockchip RK3188 - "rockchip,rk3228-timer", "rockchip,rk3288-timer": for Rockchip RK3228 - "rockchip,rk3229-timer", "rockchip,rk3288-timer": for Rockchip RK3229 - "rockchip,rk3288-timer": for Rockchip RK3288 - "rockchip,rk3368-timer", "rockchip,rk3288-timer": for Rockchip RK3368 - "rockchip,rk3399-timer": for Rockchip RK3399 -- reg: base address of the timer register starting with TIMERS CONTROL register -- interrupts: should contain the interrupts for Timer0 -- clocks : must contain an entry for each entry in clock-names -- clock-names : must include the following entries: - "timer", "pclk" - -Example: - timer: timer@ff810000 { - compatible = "rockchip,rk3288-timer"; - reg = <0xff810000 0x20>; - interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>; - clocks = <&xin24m>, <&cru PCLK_TIMER>; - clock-names = "timer", "pclk"; - }; diff --git a/Documentation/devicetree/bindings/timer/rockchip,rk-timer.yaml b/Documentation/devicetree/bindings/timer/rockchip,rk-timer.yaml new file mode 100644 index 000000000000..e26ecb5893ae --- /dev/null +++ b/Documentation/devicetree/bindings/timer/rockchip,rk-timer.yaml @@ -0,0 +1,64 @@ +# SPDX-License-Identifier: GPL-2.0 +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/timer/rockchip,rk-timer.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Rockchip Timer Device Tree Bindings + +maintainers: + - Daniel Lezcano <daniel.lezcano@linaro.org> + +properties: + compatible: + oneOf: + - const: rockchip,rk3288-timer + - const: rockchip,rk3399-timer + - items: + - enum: + - rockchip,rv1108-timer + - rockchip,rk3036-timer + - rockchip,rk3066-timer + - rockchip,rk3188-timer + - rockchip,rk3228-timer + - rockchip,rk3229-timer + - rockchip,rk3288-timer + - rockchip,rk3368-timer + - rockchip,px30-timer + - const: rockchip,rk3288-timer + reg: + maxItems: 1 + + interrupts: + maxItems: 1 + + clocks: + minItems: 2 + maxItems: 2 + + clock-names: + items: + - const: pclk + - const: timer + +required: + - compatible + - reg + - interrupts + - clocks + - clock-names + +additionalProperties: false + +examples: + - | + #include <dt-bindings/interrupt-controller/arm-gic.h> + #include <dt-bindings/clock/rk3288-cru.h> + + timer: timer@ff810000 { + compatible = "rockchip,rk3288-timer"; + reg = <0xff810000 0x20>; + interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&cru PCLK_TIMER>, <&xin24m>; + clock-names = "pclk", "timer"; + }; -- 2.30.0 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH v2 3/3] dt-bindings: timer: convert rockchip,rk-timer.txt to YAML 2021-05-06 11:11 ` [PATCH v2 3/3] dt-bindings: timer: convert rockchip,rk-timer.txt to YAML Ezequiel Garcia @ 2021-05-07 21:16 ` Rob Herring 2021-05-28 15:56 ` Heiko Stübner 1 sibling, 0 replies; 11+ messages in thread From: Rob Herring @ 2021-05-07 21:16 UTC (permalink / raw) To: Ezequiel Garcia Cc: linux-rockchip, kernel, Heiko Stuebner, Daniel Lezcano, devicetree, Kever Yang, Rob Herring On Thu, 06 May 2021 08:11:36 -0300, Ezequiel Garcia wrote: > Convert Rockchip Timer dt-bindings to YAML. > > Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com> > --- > .../bindings/timer/rockchip,rk-timer.txt | 27 -------- > .../bindings/timer/rockchip,rk-timer.yaml | 64 +++++++++++++++++++ > 2 files changed, 64 insertions(+), 27 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/timer/rockchip,rk-timer.txt > create mode 100644 Documentation/devicetree/bindings/timer/rockchip,rk-timer.yaml > Reviewed-by: Rob Herring <robh@kernel.org> ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v2 3/3] dt-bindings: timer: convert rockchip,rk-timer.txt to YAML 2021-05-06 11:11 ` [PATCH v2 3/3] dt-bindings: timer: convert rockchip,rk-timer.txt to YAML Ezequiel Garcia 2021-05-07 21:16 ` Rob Herring @ 2021-05-28 15:56 ` Heiko Stübner 2021-05-28 15:57 ` Daniel Lezcano 1 sibling, 1 reply; 11+ messages in thread From: Heiko Stübner @ 2021-05-28 15:56 UTC (permalink / raw) To: linux-rockchip, devicetree, Daniel Lezcano Cc: Ezequiel Garcia, Kever Yang, Rob Herring, Ezequiel Garcia, kernel Hi Daniel, Am Donnerstag, 6. Mai 2021, 13:11:36 CEST schrieb Ezequiel Garcia: > Convert Rockchip Timer dt-bindings to YAML. > > Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com> can you apply this patch to the timer-tree? Thanks Heiko > --- > .../bindings/timer/rockchip,rk-timer.txt | 27 -------- > .../bindings/timer/rockchip,rk-timer.yaml | 64 +++++++++++++++++++ > 2 files changed, 64 insertions(+), 27 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/timer/rockchip,rk-timer.txt > create mode 100644 Documentation/devicetree/bindings/timer/rockchip,rk-timer.yaml > > diff --git a/Documentation/devicetree/bindings/timer/rockchip,rk-timer.txt b/Documentation/devicetree/bindings/timer/rockchip,rk-timer.txt > deleted file mode 100644 > index d65fdce7c7f0..000000000000 > --- a/Documentation/devicetree/bindings/timer/rockchip,rk-timer.txt > +++ /dev/null > @@ -1,27 +0,0 @@ > -Rockchip rk timer > - > -Required properties: > -- compatible: should be: > - "rockchip,rv1108-timer", "rockchip,rk3288-timer": for Rockchip RV1108 > - "rockchip,rk3036-timer", "rockchip,rk3288-timer": for Rockchip RK3036 > - "rockchip,rk3066-timer", "rockchip,rk3288-timer": for Rockchip RK3066 > - "rockchip,rk3188-timer", "rockchip,rk3288-timer": for Rockchip RK3188 > - "rockchip,rk3228-timer", "rockchip,rk3288-timer": for Rockchip RK3228 > - "rockchip,rk3229-timer", "rockchip,rk3288-timer": for Rockchip RK3229 > - "rockchip,rk3288-timer": for Rockchip RK3288 > - "rockchip,rk3368-timer", "rockchip,rk3288-timer": for Rockchip RK3368 > - "rockchip,rk3399-timer": for Rockchip RK3399 > -- reg: base address of the timer register starting with TIMERS CONTROL register > -- interrupts: should contain the interrupts for Timer0 > -- clocks : must contain an entry for each entry in clock-names > -- clock-names : must include the following entries: > - "timer", "pclk" > - > -Example: > - timer: timer@ff810000 { > - compatible = "rockchip,rk3288-timer"; > - reg = <0xff810000 0x20>; > - interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>; > - clocks = <&xin24m>, <&cru PCLK_TIMER>; > - clock-names = "timer", "pclk"; > - }; > diff --git a/Documentation/devicetree/bindings/timer/rockchip,rk-timer.yaml b/Documentation/devicetree/bindings/timer/rockchip,rk-timer.yaml > new file mode 100644 > index 000000000000..e26ecb5893ae > --- /dev/null > +++ b/Documentation/devicetree/bindings/timer/rockchip,rk-timer.yaml > @@ -0,0 +1,64 @@ > +# SPDX-License-Identifier: GPL-2.0 > +%YAML 1.2 > +--- > +$id: http://devicetree.org/schemas/timer/rockchip,rk-timer.yaml# > +$schema: http://devicetree.org/meta-schemas/core.yaml# > + > +title: Rockchip Timer Device Tree Bindings > + > +maintainers: > + - Daniel Lezcano <daniel.lezcano@linaro.org> > + > +properties: > + compatible: > + oneOf: > + - const: rockchip,rk3288-timer > + - const: rockchip,rk3399-timer > + - items: > + - enum: > + - rockchip,rv1108-timer > + - rockchip,rk3036-timer > + - rockchip,rk3066-timer > + - rockchip,rk3188-timer > + - rockchip,rk3228-timer > + - rockchip,rk3229-timer > + - rockchip,rk3288-timer > + - rockchip,rk3368-timer > + - rockchip,px30-timer > + - const: rockchip,rk3288-timer > + reg: > + maxItems: 1 > + > + interrupts: > + maxItems: 1 > + > + clocks: > + minItems: 2 > + maxItems: 2 > + > + clock-names: > + items: > + - const: pclk > + - const: timer > + > +required: > + - compatible > + - reg > + - interrupts > + - clocks > + - clock-names > + > +additionalProperties: false > + > +examples: > + - | > + #include <dt-bindings/interrupt-controller/arm-gic.h> > + #include <dt-bindings/clock/rk3288-cru.h> > + > + timer: timer@ff810000 { > + compatible = "rockchip,rk3288-timer"; > + reg = <0xff810000 0x20>; > + interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>; > + clocks = <&cru PCLK_TIMER>, <&xin24m>; > + clock-names = "pclk", "timer"; > + }; > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v2 3/3] dt-bindings: timer: convert rockchip,rk-timer.txt to YAML 2021-05-28 15:56 ` Heiko Stübner @ 2021-05-28 15:57 ` Daniel Lezcano 2021-06-19 14:25 ` Ezequiel Garcia 0 siblings, 1 reply; 11+ messages in thread From: Daniel Lezcano @ 2021-05-28 15:57 UTC (permalink / raw) To: Heiko Stübner, linux-rockchip, devicetree Cc: Ezequiel Garcia, Kever Yang, Rob Herring, kernel On 28/05/2021 17:56, Heiko Stübner wrote: > Hi Daniel, > > Am Donnerstag, 6. Mai 2021, 13:11:36 CEST schrieb Ezequiel Garcia: >> Convert Rockchip Timer dt-bindings to YAML. >> >> Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com> > > can you apply this patch to the timer-tree? Yes -- <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook | <http://twitter.com/#!/linaroorg> Twitter | <http://www.linaro.org/linaro-blog/> Blog ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v2 3/3] dt-bindings: timer: convert rockchip,rk-timer.txt to YAML 2021-05-28 15:57 ` Daniel Lezcano @ 2021-06-19 14:25 ` Ezequiel Garcia 2021-06-21 9:39 ` Daniel Lezcano 0 siblings, 1 reply; 11+ messages in thread From: Ezequiel Garcia @ 2021-06-19 14:25 UTC (permalink / raw) To: Daniel Lezcano, Heiko Stübner, linux-rockchip, devicetree Cc: Kever Yang, Rob Herring, kernel Hi Daniel, On Fri, 2021-05-28 at 17:57 +0200, Daniel Lezcano wrote: > On 28/05/2021 17:56, Heiko Stübner wrote: > > Hi Daniel, > > > > Am Donnerstag, 6. Mai 2021, 13:11:36 CEST schrieb Ezequiel Garcia: > > > Convert Rockchip Timer dt-bindings to YAML. > > > > > > Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com> > > > > can you apply this patch to the timer-tree? > > Yes > > Can't find this one applied in -next, maybe it fell thru somewhere :) ? Thanks! Ezequiel ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v2 3/3] dt-bindings: timer: convert rockchip,rk-timer.txt to YAML 2021-06-19 14:25 ` Ezequiel Garcia @ 2021-06-21 9:39 ` Daniel Lezcano 0 siblings, 0 replies; 11+ messages in thread From: Daniel Lezcano @ 2021-06-21 9:39 UTC (permalink / raw) To: Ezequiel Garcia, Heiko Stübner, linux-rockchip, devicetree Cc: Kever Yang, Rob Herring, kernel On 19/06/2021 16:25, Ezequiel Garcia wrote: > Hi Daniel, > > On Fri, 2021-05-28 at 17:57 +0200, Daniel Lezcano wrote: >> On 28/05/2021 17:56, Heiko Stübner wrote: >>> Hi Daniel, >>> >>> Am Donnerstag, 6. Mai 2021, 13:11:36 CEST schrieb Ezequiel Garcia: >>>> Convert Rockchip Timer dt-bindings to YAML. >>>> >>>> Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com> >>> >>> can you apply this patch to the timer-tree? >> >> Yes >> >> > > Can't find this one applied in -next, maybe it fell thru somewhere :) ? Right, I just picked it. Thanks for the heads-up -- <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook | <http://twitter.com/#!/linaroorg> Twitter | <http://www.linaro.org/linaro-blog/> Blog ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: (subset) [PATCH v2 0/3] Rockchip Timer DT binding YAML conversion 2021-05-06 11:11 [PATCH v2 0/3] Rockchip Timer DT binding YAML conversion Ezequiel Garcia ` (2 preceding siblings ...) 2021-05-06 11:11 ` [PATCH v2 3/3] dt-bindings: timer: convert rockchip,rk-timer.txt to YAML Ezequiel Garcia @ 2021-05-09 23:55 ` Heiko Stuebner 2021-05-10 0:12 ` Heiko Stuebner 4 siblings, 0 replies; 11+ messages in thread From: Heiko Stuebner @ 2021-05-09 23:55 UTC (permalink / raw) To: devicetree, linux-rockchip, Ezequiel Garcia Cc: Heiko Stuebner, kernel, Kever Yang, Rob Herring, Daniel Lezcano On Thu, 6 May 2021 08:11:33 -0300, Ezequiel Garcia wrote: > Changes from v1: > * Fix the order of clock specifiers. > > Ezequiel Garcia (3): > arm64: dts: rockchip: add timer0 clocks on rk3368 > arm: dts: rockchip: Fix the timer clocks order > dt-bindings: timer: convert rockchip,rk-timer.txt to YAML > > [...] Applied, thanks! [1/3] arm64: dts: rockchip: add timer0 clocks on rk3368 commit: 642593eec32571ff9288ddf3fa09792d3efb275f Best regards, -- Heiko Stuebner <heiko@sntech.de> ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: (subset) [PATCH v2 0/3] Rockchip Timer DT binding YAML conversion 2021-05-06 11:11 [PATCH v2 0/3] Rockchip Timer DT binding YAML conversion Ezequiel Garcia ` (3 preceding siblings ...) 2021-05-09 23:55 ` (subset) [PATCH v2 0/3] Rockchip Timer DT binding YAML conversion Heiko Stuebner @ 2021-05-10 0:12 ` Heiko Stuebner 4 siblings, 0 replies; 11+ messages in thread From: Heiko Stuebner @ 2021-05-10 0:12 UTC (permalink / raw) To: Ezequiel Garcia, linux-rockchip, devicetree Cc: Heiko Stuebner, Daniel Lezcano, kernel, Rob Herring, Kever Yang On Thu, 6 May 2021 08:11:33 -0300, Ezequiel Garcia wrote: > Changes from v1: > * Fix the order of clock specifiers. > > Ezequiel Garcia (3): > arm64: dts: rockchip: add timer0 clocks on rk3368 > arm: dts: rockchip: Fix the timer clocks order > dt-bindings: timer: convert rockchip,rk-timer.txt to YAML > > [...] Applied, thanks! [2/3] arm: dts: rockchip: Fix the timer clocks order commit: 7b46d674ac000b101fdad92cf16cc11d90b72f86 Best regards, -- Heiko Stuebner <heiko@sntech.de> ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2021-06-21 9:39 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-05-06 11:11 [PATCH v2 0/3] Rockchip Timer DT binding YAML conversion Ezequiel Garcia 2021-05-06 11:11 ` [PATCH v2 1/3] arm64: dts: rockchip: add timer0 clocks on rk3368 Ezequiel Garcia 2021-05-06 11:11 ` [PATCH v2 2/3] arm: dts: rockchip: Fix the timer clocks order Ezequiel Garcia 2021-05-06 11:11 ` [PATCH v2 3/3] dt-bindings: timer: convert rockchip,rk-timer.txt to YAML Ezequiel Garcia 2021-05-07 21:16 ` Rob Herring 2021-05-28 15:56 ` Heiko Stübner 2021-05-28 15:57 ` Daniel Lezcano 2021-06-19 14:25 ` Ezequiel Garcia 2021-06-21 9:39 ` Daniel Lezcano 2021-05-09 23:55 ` (subset) [PATCH v2 0/3] Rockchip Timer DT binding YAML conversion Heiko Stuebner 2021-05-10 0:12 ` Heiko Stuebner
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).