* [PATCH v2] ARM: dts: dra7: Correct clock tree for sys_32k_ck @ 2016-03-14 12:03 Keerthy [not found] ` <1457957001-720-1-git-send-email-j-keerthy-l0cyMroinI0@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Keerthy @ 2016-03-14 12:03 UTC (permalink / raw) To: tony-4v6yS6AI5VpBDgjK7y7TUQ, linux-omap-u79uwXL29TY76Z2rM5mHXA, devicetree-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-kernel-u79uwXL29TY76Z2rM5mHXA, robh+dt-DgEjT+Ai2ygdnm+yROfE0A Cc: galak-sgV2jX0FEOL9JmXXK+q4OQ, mark.rutland-5wv7dgnIgG8, j-keerthy-l0cyMroinI0, Lokesh Vutla This is w.r.t J6/J6eco: 32clk is pseudo (erratum i856) - clock source. Errata i856 for the AM572x (DRA7xx) points out that the 32.768KHz external crystal is not enabled at power up. Instead the CPU falls back to using an emulation for the 32KHz clock which is SYSCLK1/610. SYSCLK1 is usually 20MHz on boards so far (which gives an emulated frequency of 32.786KHz) Modelling the same in device tree. Signed-off-by: Keerthy <j-keerthy-l0cyMroinI0@public.gmane.org> Signed-off-by: Lokesh Vutla <lokeshvutla-l0cyMroinI0@public.gmane.org> --- Errata Document: http://www.ti.com/lit/er/sprz429h/sprz429h.pdf Errata number: i856 Tested the debugfs clock tree nodes on DRA7-EVM. Changes in v2: Added missing Signed-off-by: Lokesh Vutla <lokeshvutla-l0cyMroinI0@public.gmane.org> arch/arm/boot/dts/dra7xx-clocks.dtsi | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/dra7xx-clocks.dtsi b/arch/arm/boot/dts/dra7xx-clocks.dtsi index 357bede..7f1f892 100644 --- a/arch/arm/boot/dts/dra7xx-clocks.dtsi +++ b/arch/arm/boot/dts/dra7xx-clocks.dtsi @@ -98,12 +98,20 @@ clock-frequency = <32768>; }; - sys_32k_ck: sys_32k_ck { + sys_clk32_crystal_ck: sys_clk32_crystal_ck { #clock-cells = <0>; compatible = "fixed-clock"; clock-frequency = <32768>; }; + sys_clk32_pseudo_ck: sys_clk32_pseudo_ck { + #clock-cells = <0>; + compatible = "fixed-factor-clock"; + clocks = <&sys_clkin1>; + clock-mult = <1>; + clock-div = <610>; + }; + virt_12000000_ck: virt_12000000_ck { #clock-cells = <0>; compatible = "fixed-clock"; @@ -2146,4 +2154,12 @@ ti,bit-shift = <0>; reg = <0x558>; }; + + sys_32k_ck: sys_32k_ck { + #clock-cells = <0>; + compatible = "ti,mux-clock"; + clocks = <&sys_clk32_crystal_ck>, <&sys_clk32_pseudo_ck>, <&sys_clk32_pseudo_ck>, <&sys_clk32_pseudo_ck>; + ti,bit-shift = <8>; + reg = <0x6c4>; + }; }; -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 9+ messages in thread
[parent not found: <1457957001-720-1-git-send-email-j-keerthy-l0cyMroinI0@public.gmane.org>]
* Re: [PATCH v2] ARM: dts: dra7: Correct clock tree for sys_32k_ck [not found] ` <1457957001-720-1-git-send-email-j-keerthy-l0cyMroinI0@public.gmane.org> @ 2016-03-30 21:18 ` Tony Lindgren [not found] ` <20160330211828.GE9329-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Tony Lindgren @ 2016-03-30 21:18 UTC (permalink / raw) To: Keerthy Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA, devicetree-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-kernel-u79uwXL29TY76Z2rM5mHXA, robh+dt-DgEjT+Ai2ygdnm+yROfE0A, galak-sgV2jX0FEOL9JmXXK+q4OQ, mark.rutland-5wv7dgnIgG8, Lokesh Vutla * Keerthy <j-keerthy-l0cyMroinI0@public.gmane.org> [160314 05:04]: > This is w.r.t J6/J6eco: 32clk is pseudo (erratum i856) - clock source. > Errata i856 for the AM572x (DRA7xx) points out that the 32.768KHz external > crystal is not enabled at power up. Instead the CPU falls back to using > an emulation for the 32KHz clock which is SYSCLK1/610. SYSCLK1 is usually > 20MHz on boards so far (which gives an emulated frequency of 32.786KHz) Thanks applying into omap-for-v4.6/fixes. Tony -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <20160330211828.GE9329-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>]
* Re: [PATCH v2] ARM: dts: dra7: Correct clock tree for sys_32k_ck [not found] ` <20160330211828.GE9329-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> @ 2016-03-30 21:32 ` Tony Lindgren 2016-03-31 6:30 ` Tero Kristo 0 siblings, 1 reply; 9+ messages in thread From: Tony Lindgren @ 2016-03-30 21:32 UTC (permalink / raw) To: Keerthy Cc: linux-omap-u79uwXL29TY76Z2rM5mHXA, devicetree-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-kernel-u79uwXL29TY76Z2rM5mHXA, robh+dt-DgEjT+Ai2ygdnm+yROfE0A, galak-sgV2jX0FEOL9JmXXK+q4OQ, mark.rutland-5wv7dgnIgG8, Lokesh Vutla, Tero Kristo * Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> [160330 14:19]: > * Keerthy <j-keerthy-l0cyMroinI0@public.gmane.org> [160314 05:04]: > > This is w.r.t J6/J6eco: 32clk is pseudo (erratum i856) - clock source. > > Errata i856 for the AM572x (DRA7xx) points out that the 32.768KHz external > > crystal is not enabled at power up. Instead the CPU falls back to using > > an emulation for the 32KHz clock which is SYSCLK1/610. SYSCLK1 is usually > > 20MHz on boards so far (which gives an emulated frequency of 32.786KHz) > > Thanks applying into omap-for-v4.6/fixes. Actually let's wait a review from Tero on this one, not sure about the pseudo clock naming here. So dropping for now. Regards, Tony -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] ARM: dts: dra7: Correct clock tree for sys_32k_ck 2016-03-30 21:32 ` Tony Lindgren @ 2016-03-31 6:30 ` Tero Kristo 2016-03-31 9:22 ` Keerthy 0 siblings, 1 reply; 9+ messages in thread From: Tero Kristo @ 2016-03-31 6:30 UTC (permalink / raw) To: Tony Lindgren, Keerthy Cc: linux-omap, devicetree, linux-arm-kernel, linux-kernel, robh+dt, galak, mark.rutland, Lokesh Vutla On 03/31/2016 12:32 AM, Tony Lindgren wrote: > * Tony Lindgren <tony@atomide.com> [160330 14:19]: >> * Keerthy <j-keerthy@ti.com> [160314 05:04]: >>> This is w.r.t J6/J6eco: 32clk is pseudo (erratum i856) - clock source. >>> Errata i856 for the AM572x (DRA7xx) points out that the 32.768KHz external >>> crystal is not enabled at power up. Instead the CPU falls back to using >>> an emulation for the 32KHz clock which is SYSCLK1/610. SYSCLK1 is usually >>> 20MHz on boards so far (which gives an emulated frequency of 32.786KHz) >> >> Thanks applying into omap-for-v4.6/fixes. > > Actually let's wait a review from Tero on this one, not sure > about the pseudo clock naming here. So dropping for now. The patch is fine for me, I didn't comment anything before as I thought you already applied it. Acked-by: Tero Kristo <t-kristo@ti.com> > > Regards, > > Tony > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] ARM: dts: dra7: Correct clock tree for sys_32k_ck 2016-03-31 6:30 ` Tero Kristo @ 2016-03-31 9:22 ` Keerthy [not found] ` <56FCEC61.5020400-l0cyMroinI0@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Keerthy @ 2016-03-31 9:22 UTC (permalink / raw) To: Tero Kristo, Tony Lindgren, Keerthy Cc: linux-omap, devicetree, linux-arm-kernel, linux-kernel, robh+dt, galak, mark.rutland, Lokesh Vutla On Thursday 31 March 2016 12:00 PM, Tero Kristo wrote: > On 03/31/2016 12:32 AM, Tony Lindgren wrote: >> * Tony Lindgren <tony@atomide.com> [160330 14:19]: >>> * Keerthy <j-keerthy@ti.com> [160314 05:04]: >>>> This is w.r.t J6/J6eco: 32clk is pseudo (erratum i856) - clock source. >>>> Errata i856 for the AM572x (DRA7xx) points out that the 32.768KHz >>>> external >>>> crystal is not enabled at power up. Instead the CPU falls back to using >>>> an emulation for the 32KHz clock which is SYSCLK1/610. SYSCLK1 is >>>> usually >>>> 20MHz on boards so far (which gives an emulated frequency of 32.786KHz) >>> >>> Thanks applying into omap-for-v4.6/fixes. >> >> Actually let's wait a review from Tero on this one, not sure >> about the pseudo clock naming here. So dropping for now. > > The patch is fine for me, I didn't comment anything before as I thought > you already applied it. > > Acked-by: Tero Kristo <t-kristo@ti.com> Thanks Tero. > >> >> Regards, >> >> Tony >> > ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <56FCEC61.5020400-l0cyMroinI0@public.gmane.org>]
* Re: [PATCH v2] ARM: dts: dra7: Correct clock tree for sys_32k_ck [not found] ` <56FCEC61.5020400-l0cyMroinI0@public.gmane.org> @ 2016-03-31 17:00 ` Tony Lindgren [not found] ` <20160331170017.GI9329-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Tony Lindgren @ 2016-03-31 17:00 UTC (permalink / raw) To: Keerthy Cc: Tero Kristo, Keerthy, linux-omap-u79uwXL29TY76Z2rM5mHXA, devicetree-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-kernel-u79uwXL29TY76Z2rM5mHXA, robh+dt-DgEjT+Ai2ygdnm+yROfE0A, galak-sgV2jX0FEOL9JmXXK+q4OQ, mark.rutland-5wv7dgnIgG8, Lokesh Vutla * Keerthy <a0393675-l0cyMroinI0@public.gmane.org> [160331 02:26]: > > > On Thursday 31 March 2016 12:00 PM, Tero Kristo wrote: > >On 03/31/2016 12:32 AM, Tony Lindgren wrote: > >>* Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> [160330 14:19]: > >>>* Keerthy <j-keerthy-l0cyMroinI0@public.gmane.org> [160314 05:04]: > >>>>This is w.r.t J6/J6eco: 32clk is pseudo (erratum i856) - clock source. > >>>>Errata i856 for the AM572x (DRA7xx) points out that the 32.768KHz > >>>>external > >>>>crystal is not enabled at power up. Instead the CPU falls back to using > >>>>an emulation for the 32KHz clock which is SYSCLK1/610. SYSCLK1 is > >>>>usually > >>>>20MHz on boards so far (which gives an emulated frequency of 32.786KHz) > >>> > >>>Thanks applying into omap-for-v4.6/fixes. > >> > >>Actually let's wait a review from Tero on this one, not sure > >>about the pseudo clock naming here. So dropping for now. > > > >The patch is fine for me, I didn't comment anything before as I thought > >you already applied it. > > > >Acked-by: Tero Kristo <t-kristo-l0cyMroinI0@public.gmane.org> > > Thanks Tero. OK applying with Tero's ack. Tony -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <20160331170017.GI9329-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>]
* Re: [PATCH v2] ARM: dts: dra7: Correct clock tree for sys_32k_ck [not found] ` <20160331170017.GI9329-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> @ 2016-04-01 15:36 ` Tony Lindgren [not found] ` <20160401153606.GJ9329-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Tony Lindgren @ 2016-04-01 15:36 UTC (permalink / raw) To: Keerthy Cc: mark.rutland-5wv7dgnIgG8, devicetree-u79uwXL29TY76Z2rM5mHXA, Lokesh Vutla, Keerthy, linux-kernel-u79uwXL29TY76Z2rM5mHXA, Tero Kristo, robh+dt-DgEjT+Ai2ygdnm+yROfE0A, galak-sgV2jX0FEOL9JmXXK+q4OQ, linux-omap-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r Hi, * Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> [160331 10:04]: > * Keerthy <a0393675-l0cyMroinI0@public.gmane.org> [160331 02:26]: > > > > > > On Thursday 31 March 2016 12:00 PM, Tero Kristo wrote: > > >On 03/31/2016 12:32 AM, Tony Lindgren wrote: > > >>* Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> [160330 14:19]: > > >>>* Keerthy <j-keerthy-l0cyMroinI0@public.gmane.org> [160314 05:04]: > > >>>>This is w.r.t J6/J6eco: 32clk is pseudo (erratum i856) - clock source. > > >>>>Errata i856 for the AM572x (DRA7xx) points out that the 32.768KHz > > >>>>external > > >>>>crystal is not enabled at power up. Instead the CPU falls back to using > > >>>>an emulation for the 32KHz clock which is SYSCLK1/610. SYSCLK1 is > > >>>>usually > > >>>>20MHz on boards so far (which gives an emulated frequency of 32.786KHz) > > >>> > > >>>Thanks applying into omap-for-v4.6/fixes. > > >> > > >>Actually let's wait a review from Tero on this one, not sure > > >>about the pseudo clock naming here. So dropping for now. > > > > > >The patch is fine for me, I didn't comment anything before as I thought > > >you already applied it. > > > > > >Acked-by: Tero Kristo <t-kristo-l0cyMroinI0@public.gmane.org> > > > > Thanks Tero. > > OK applying with Tero's ack. I'm dropping this again as it introduces new warnings with make dtbs: Warning (reg_format): "reg" property in /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1) Warning (avoid_default_addr_size): Relying on default #address-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck Warning (avoid_default_addr_size): Relying on default #size-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck DTC arch/arm/boot/dts/am57xx-cl-som-am57x.dtb Warning (reg_format): "reg" property in /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1) Warning (avoid_default_addr_size): Relying on default #address-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck Warning (avoid_default_addr_size): Relying on default #size-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck DTC arch/arm/boot/dts/am57xx-sbc-am57x.dtb Warning (reg_format): "reg" property in /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1) Warning (avoid_default_addr_size): Relying on default #address-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck Warning (avoid_default_addr_size): Relying on default #size-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck DTC arch/arm/boot/dts/dra7-evm.dtb Warning (reg_format): "reg" property in /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1) Warning (avoid_default_addr_size): Relying on default #address-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck Warning (avoid_default_addr_size): Relying on default #size-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck DTC arch/arm/boot/dts/dra72-evm.dtb Warning (reg_format): "reg" property in /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1) Warning (avoid_default_addr_size): Relying on default #address-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck Warning (avoid_default_addr_size): Relying on default #size-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck Regards, Tony -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <20160401153606.GJ9329-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>]
* Re: [PATCH v2] ARM: dts: dra7: Correct clock tree for sys_32k_ck [not found] ` <20160401153606.GJ9329-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> @ 2016-04-01 18:48 ` Tero Kristo [not found] ` <56FEC297.50102-l0cyMroinI0@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Tero Kristo @ 2016-04-01 18:48 UTC (permalink / raw) To: Tony Lindgren, Keerthy Cc: mark.rutland-5wv7dgnIgG8, devicetree-u79uwXL29TY76Z2rM5mHXA, Lokesh Vutla, Keerthy, linux-kernel-u79uwXL29TY76Z2rM5mHXA, robh+dt-DgEjT+Ai2ygdnm+yROfE0A, galak-sgV2jX0FEOL9JmXXK+q4OQ, linux-omap-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On 04/01/2016 06:36 PM, Tony Lindgren wrote: > Hi, > > * Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> [160331 10:04]: >> * Keerthy <a0393675-l0cyMroinI0@public.gmane.org> [160331 02:26]: >>> >>> >>> On Thursday 31 March 2016 12:00 PM, Tero Kristo wrote: >>>> On 03/31/2016 12:32 AM, Tony Lindgren wrote: >>>>> * Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> [160330 14:19]: >>>>>> * Keerthy <j-keerthy-l0cyMroinI0@public.gmane.org> [160314 05:04]: >>>>>>> This is w.r.t J6/J6eco: 32clk is pseudo (erratum i856) - clock source. >>>>>>> Errata i856 for the AM572x (DRA7xx) points out that the 32.768KHz >>>>>>> external >>>>>>> crystal is not enabled at power up. Instead the CPU falls back to using >>>>>>> an emulation for the 32KHz clock which is SYSCLK1/610. SYSCLK1 is >>>>>>> usually >>>>>>> 20MHz on boards so far (which gives an emulated frequency of 32.786KHz) >>>>>> >>>>>> Thanks applying into omap-for-v4.6/fixes. >>>>> >>>>> Actually let's wait a review from Tero on this one, not sure >>>>> about the pseudo clock naming here. So dropping for now. >>>> >>>> The patch is fine for me, I didn't comment anything before as I thought >>>> you already applied it. >>>> >>>> Acked-by: Tero Kristo <t-kristo-l0cyMroinI0@public.gmane.org> >>> >>> Thanks Tero. >> >> OK applying with Tero's ack. > > I'm dropping this again as it introduces new warnings with make dtbs: > > Warning (reg_format): "reg" property in /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1) > Warning (avoid_default_addr_size): Relying on default #address-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck > Warning (avoid_default_addr_size): Relying on default #size-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck > DTC arch/arm/boot/dts/am57xx-cl-som-am57x.dtb > Warning (reg_format): "reg" property in /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1) > Warning (avoid_default_addr_size): Relying on default #address-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck > Warning (avoid_default_addr_size): Relying on default #size-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck > DTC arch/arm/boot/dts/am57xx-sbc-am57x.dtb > Warning (reg_format): "reg" property in /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1) > Warning (avoid_default_addr_size): Relying on default #address-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck > Warning (avoid_default_addr_size): Relying on default #size-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck > DTC arch/arm/boot/dts/dra7-evm.dtb > Warning (reg_format): "reg" property in /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1) > Warning (avoid_default_addr_size): Relying on default #address-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck > Warning (avoid_default_addr_size): Relying on default #size-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck > DTC arch/arm/boot/dts/dra72-evm.dtb > Warning (reg_format): "reg" property in /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1) > Warning (avoid_default_addr_size): Relying on default #address-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck > Warning (avoid_default_addr_size): Relying on default #size-cells value for /ocp/l4@4a000000/cm_core@8000/clockdomains/sys_32k_ck > > Regards, > > Tony > Looks like a merge conflict to me, sys_32k_ck has gone under clockdomains for some reason. It should be under clocks. -Tero -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <56FEC297.50102-l0cyMroinI0@public.gmane.org>]
* Re: [PATCH v2] ARM: dts: dra7: Correct clock tree for sys_32k_ck [not found] ` <56FEC297.50102-l0cyMroinI0@public.gmane.org> @ 2016-04-01 19:06 ` Tony Lindgren 0 siblings, 0 replies; 9+ messages in thread From: Tony Lindgren @ 2016-04-01 19:06 UTC (permalink / raw) To: Tero Kristo Cc: Keerthy, mark.rutland-5wv7dgnIgG8, devicetree-u79uwXL29TY76Z2rM5mHXA, Lokesh Vutla, Keerthy, linux-kernel-u79uwXL29TY76Z2rM5mHXA, robh+dt-DgEjT+Ai2ygdnm+yROfE0A, galak-sgV2jX0FEOL9JmXXK+q4OQ, linux-omap-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r * Tero Kristo <t-kristo-l0cyMroinI0@public.gmane.org> [160401 11:50]: > > Looks like a merge conflict to me, sys_32k_ck has gone under clockdomains > for some reason. It should be under clocks. Oh OK, I'll wait for an updated patch against v4.6-rc1 then. Might be worth checking it applies cleanly against omap-for-v4.6/fixes-rc1 too. Regards, Tony -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2016-04-01 19:06 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-03-14 12:03 [PATCH v2] ARM: dts: dra7: Correct clock tree for sys_32k_ck Keerthy [not found] ` <1457957001-720-1-git-send-email-j-keerthy-l0cyMroinI0@public.gmane.org> 2016-03-30 21:18 ` Tony Lindgren [not found] ` <20160330211828.GE9329-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> 2016-03-30 21:32 ` Tony Lindgren 2016-03-31 6:30 ` Tero Kristo 2016-03-31 9:22 ` Keerthy [not found] ` <56FCEC61.5020400-l0cyMroinI0@public.gmane.org> 2016-03-31 17:00 ` Tony Lindgren [not found] ` <20160331170017.GI9329-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> 2016-04-01 15:36 ` Tony Lindgren [not found] ` <20160401153606.GJ9329-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org> 2016-04-01 18:48 ` Tero Kristo [not found] ` <56FEC297.50102-l0cyMroinI0@public.gmane.org> 2016-04-01 19:06 ` Tony Lindgren
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).