Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1324642 > unrolled thread
| Started by | Krzysztof Adamski <k@japko.eu> |
|---|---|
| First post | 2016-02-02 22:30 +0100 |
| Last post | 2016-02-04 00:50 +0100 |
| Articles | 4 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v2 2/5] dts: sun8i-h3: Add APB0 related clocks and resets Krzysztof Adamski <k@japko.eu> - 2016-02-02 22:30 +0100
Re: [PATCH v2 2/5] dts: sun8i-h3: Add APB0 related clocks and resets Maxime Ripard <maxime.ripard@free-electrons.com> - 2016-02-03 13:40 +0100
Re: [PATCH v2 2/5] dts: sun8i-h3: Add APB0 related clocks and resets Krzysztof Adamski <k@japko.eu> - 2016-02-03 23:30 +0100
Re: [PATCH v2 2/5] dts: sun8i-h3: Add APB0 related clocks and resets Krzysztof Adamski <k@japko.eu> - 2016-02-04 00:50 +0100
| From | Krzysztof Adamski <k@japko.eu> |
|---|---|
| Date | 2016-02-02 22:30 +0100 |
| Subject | [PATCH v2 2/5] dts: sun8i-h3: Add APB0 related clocks and resets |
| Message-ID | <qXQGm-FZ-5@gated-at.bofh.it> |
APB0 is bearly mentioned in H3 User Manual and it is only setup in the
Allwinners kernel dump for CIR. I have verified experimentally that the
gate for R_PIO exists and works, though. There are probably other gates
there but I don't know their order right now and I don't have access to
their peripherals on my board to test them.
Signed-off-by: Krzysztof Adamski <k@japko.eu>
---
arch/arm/boot/dts/sun8i-h3.dtsi | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/arch/arm/boot/dts/sun8i-h3.dtsi b/arch/arm/boot/dts/sun8i-h3.dtsi
index 1524130e..ce35e93 100644
--- a/arch/arm/boot/dts/sun8i-h3.dtsi
+++ b/arch/arm/boot/dts/sun8i-h3.dtsi
@@ -276,6 +276,32 @@
clocks = <&osc24M>, <&pll6 1>, <&pll5>;
clock-output-names = "mbus";
};
+
+ ahb0: ahb0_clk {
+ compatible = "fixed-factor-clock";
+ #clock-cells = <0>;
+ clock-div = <1>;
+ clock-mult = <1>;
+ clocks = <&osc24M>, <&osc32k>;
+ clock-output-names = "ahb0";
+ };
+
+ apb0: clk@01f0140c {
+ compatible = "allwinner,sun8i-a23-apb0-clk";
+ reg = <0x01f0140c 0x4>;
+ #clock-cells = <0>;
+ clocks = <&ahb0>;
+ clock-output-names = "apb0";
+ };
+
+ apb0_gates: clk@01f01428 {
+ compatible = "allwinner,sun8i-h3-abp0-gates-clk";
+ reg = <0x01f01428 0x4>;
+ #clock-cells = <1>;
+ clocks = <&apb0>;
+ clock-indices = <0>, <1>;
+ clock-output-names = "apb0_pio", "apb0_ir";
+ };
};
soc {
@@ -493,5 +519,11 @@
interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>,
<GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
};
+
+ apb0_reset: reset@01f014b0 {
+ reg = <0x01f014b0 0x4>;
+ compatible = "allwinner,sun6i-a31-clock-reset";
+ #reset-cells = <1>;
+ };
};
};
--
2.1.4
[toc] | [next] | [standalone]
| From | Maxime Ripard <maxime.ripard@free-electrons.com> |
|---|---|
| Date | 2016-02-03 13:40 +0100 |
| Message-ID | <qY4T1-1Xc-17@gated-at.bofh.it> |
| In reply to | #1324642 |
[Multipart message — attachments visible in raw view] — view raw
Hi,
On Tue, Feb 02, 2016 at 10:21:50PM +0100, Krzysztof Adamski wrote:
> APB0 is bearly mentioned in H3 User Manual and it is only setup in the
> Allwinners kernel dump for CIR. I have verified experimentally that the
> gate for R_PIO exists and works, though. There are probably other gates
> there but I don't know their order right now and I don't have access to
> their peripherals on my board to test them.
>
> Signed-off-by: Krzysztof Adamski <k@japko.eu>
> ---
> arch/arm/boot/dts/sun8i-h3.dtsi | 32 ++++++++++++++++++++++++++++++++
> 1 file changed, 32 insertions(+)
>
> diff --git a/arch/arm/boot/dts/sun8i-h3.dtsi b/arch/arm/boot/dts/sun8i-h3.dtsi
> index 1524130e..ce35e93 100644
> --- a/arch/arm/boot/dts/sun8i-h3.dtsi
> +++ b/arch/arm/boot/dts/sun8i-h3.dtsi
> @@ -276,6 +276,32 @@
> clocks = <&osc24M>, <&pll6 1>, <&pll5>;
> clock-output-names = "mbus";
> };
> +
> + ahb0: ahb0_clk {
> + compatible = "fixed-factor-clock";
> + #clock-cells = <0>;
> + clock-div = <1>;
> + clock-mult = <1>;
> + clocks = <&osc24M>, <&osc32k>;
> + clock-output-names = "ahb0";
> + };
I'm not sure what you mean there. The fixed factor clocks only take a
single parent, and you provided two.
Maxime
--
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
[toc] | [prev] | [next] | [standalone]
| From | Krzysztof Adamski <k@japko.eu> |
|---|---|
| Date | 2016-02-03 23:30 +0100 |
| Message-ID | <qYe5Y-7Yi-5@gated-at.bofh.it> |
| In reply to | #1325337 |
On Wed, Feb 03, 2016 at 01:35:34PM +0100, Maxime Ripard wrote:
>Hi,
>
>On Tue, Feb 02, 2016 at 10:21:50PM +0100, Krzysztof Adamski wrote:
>> APB0 is bearly mentioned in H3 User Manual and it is only setup in the
>> Allwinners kernel dump for CIR. I have verified experimentally that the
>> gate for R_PIO exists and works, though. There are probably other gates
>> there but I don't know their order right now and I don't have access to
>> their peripherals on my board to test them.
>>
>> Signed-off-by: Krzysztof Adamski <k@japko.eu>
>> ---
>> arch/arm/boot/dts/sun8i-h3.dtsi | 32 ++++++++++++++++++++++++++++++++
>> 1 file changed, 32 insertions(+)
>>
>> diff --git a/arch/arm/boot/dts/sun8i-h3.dtsi b/arch/arm/boot/dts/sun8i-h3.dtsi
>> index 1524130e..ce35e93 100644
>> --- a/arch/arm/boot/dts/sun8i-h3.dtsi
>> +++ b/arch/arm/boot/dts/sun8i-h3.dtsi
>> @@ -276,6 +276,32 @@
>> clocks = <&osc24M>, <&pll6 1>, <&pll5>;
>> clock-output-names = "mbus";
>> };
>> +
>> + ahb0: ahb0_clk {
>> + compatible = "fixed-factor-clock";
>> + #clock-cells = <0>;
>> + clock-div = <1>;
>> + clock-mult = <1>;
>> + clocks = <&osc24M>, <&osc32k>;
>> + clock-output-names = "ahb0";
>> + };
>
>I'm not sure what you mean there. The fixed factor clocks only take a
>single parent, and you provided two.
True, I that's actually some stupid leftover. As mentioned in the commit
message I didn't really know how the clock tree looks like here so I
wanted to just pretend it's connectet to osc24M. After some experiments
I think that 0x01f0140c register does not exist on H3 and I was finally
(hopefully) able to understand how this clock is set up in Allwinner's
code. So I changed the clock to factors clock with possible osc32k and
osc24M parrents. Will send it in v3.
[toc] | [prev] | [next] | [standalone]
| From | Krzysztof Adamski <k@japko.eu> |
|---|---|
| Date | 2016-02-04 00:50 +0100 |
| Message-ID | <qYflr-yl-59@gated-at.bofh.it> |
| In reply to | #1326007 |
On Wed, Feb 03, 2016 at 11:21:17PM +0100, Krzysztof Adamski wrote: >On Wed, Feb 03, 2016 at 01:35:34PM +0100, Maxime Ripard wrote: >>Hi, >> >>I'm not sure what you mean there. The fixed factor clocks only take a >>single parent, and you provided two. > >True, I that's actually some stupid leftover. As mentioned in the >commit message I didn't really know how the clock tree looks like here >so I wanted to just pretend it's connectet to osc24M. After some >experiments I think that 0x01f0140c register does not exist on H3 and >I was finally (hopefully) able to understand how this clock is set up >in Allwinner's code. So I changed the clock to factors clock with >possible osc32k and osc24M parrents. Will send it in v3. I've changed my mind about using factors clock. The clock I was thinking about is only setup for CIR peripheral and I have no information on how r_pio is clocked other than the fact it works by default so I assume it's clocked from 24M oscillator. New patchset send, let me know what you think.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web