public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
* [GIT PULL] ARM: mvebu fixes for v3.8-rc6 (round 2)
@ 2013-02-04 21:37 Jason Cooper
  2013-02-05 14:03 ` Jason Cooper
  0 siblings, 1 reply; 6+ messages in thread
From: Jason Cooper @ 2013-02-04 21:37 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit de27686b77f1c5c5dddf06d48fd322c52f098d51:

  arm: mvebu: i2c come back in defconfig

are available in the git repository at:

  git://git.infradead.org/users/jcooper/linux.git tags/mvebu_fixes_for_v3.8-rc6-round2

for you to fetch changes up to b3fa2a0a2e3ac23415efec7ae848efd918b6b444:

  rtc: rtc-mv: Add support for clk to avoid lockups

----------------------------------------------------------------
mvebu fixes for v3.8-rc6 (round 2)
    
    This series of four patches started with Simon Baatz reporting lost MAC
    addresses when compiling mv643xx_eth as a module.  Accompanying that, he was
    getting hard lockups on boot when most other drivers were compiled as modules.
    
    All of this boiled down to gated clocks.  mv643xx_eth looses it's mac address
    after it's clock gets gated.  The patch included in this series prevents the
    ge0 and ge1 clocks from being gated when doing legacy platform init of the
    driver.
    
    There is another patch to accompany the DT conversion of the driver which will
    allow reading the mac address from the devicetree.  This patch is not included
    here because the bindings are being added for v3.9.
    
    The hard lockups at boot were the result of many SoC IPs using the runit gate
    clock.  Several drivers (gpio, rtc) were not claiming the clock, and of_serial
    wouldn't claim the clock if clock-frequency was specified in the DT.
    
    clock-frequency was only necessary before we added proper clock support, it is
    now removed from all kirkwood dts files.
    
    Last, proper clock support is added to gpio-mvebu and rtc-mv.
    
    With these four fixes all drivers that can be compiled as modules can be
    without breaking bootup.
----------------------------------------------------------------
Andrew Lunn (2):
      gpio: mvebu: Add clk support to prevent lockup
      rtc: rtc-mv: Add support for clk to avoid lockups

Jason Cooper (1):
      ARM: kirkwood: of_serial: fix clock gating by removing clock-frequency

Sebastian Hesselbarth (1):
      ARM: kirkwood: fix to retain gbe MAC addresses for DT kernels

 arch/arm/boot/dts/kirkwood-dns320.dts         |  2 --
 arch/arm/boot/dts/kirkwood-dns325.dts         |  1 -
 arch/arm/boot/dts/kirkwood-dockstar.dts       |  1 -
 arch/arm/boot/dts/kirkwood-dreamplug.dts      |  1 -
 arch/arm/boot/dts/kirkwood-goflexnet.dts      |  1 -
 arch/arm/boot/dts/kirkwood-ib62x0.dts         |  1 -
 arch/arm/boot/dts/kirkwood-iconnect.dts       |  1 -
 arch/arm/boot/dts/kirkwood-iomega_ix2_200.dts |  1 -
 arch/arm/boot/dts/kirkwood-km_kirkwood.dts    |  1 -
 arch/arm/boot/dts/kirkwood-lschlv2.dts        |  1 -
 arch/arm/boot/dts/kirkwood-lsxhl.dts          |  1 -
 arch/arm/boot/dts/kirkwood-mplcec4.dts        |  1 -
 arch/arm/boot/dts/kirkwood-nsa310.dts         |  1 -
 arch/arm/boot/dts/kirkwood-openblocks_a6.dts  |  2 --
 arch/arm/boot/dts/kirkwood-topkick.dts        |  1 -
 arch/arm/boot/dts/kirkwood.dtsi               |  5 ++--
 arch/arm/mach-kirkwood/board-dt.c             | 24 ++++++++++++-------
 drivers/gpio/gpio-mvebu.c                     |  7 ++++++
 drivers/rtc/rtc-mv.c                          | 28 ++++++++++++++++++----
 19 files changed, 49 insertions(+), 32 deletions(-)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [GIT PULL] ARM: mvebu fixes for v3.8-rc6 (round 2)
  2013-02-04 21:37 [GIT PULL] ARM: mvebu fixes for v3.8-rc6 (round 2) Jason Cooper
@ 2013-02-05 14:03 ` Jason Cooper
  2013-02-05 18:57   ` Olof Johansson
  0 siblings, 1 reply; 6+ messages in thread
From: Jason Cooper @ 2013-02-05 14:03 UTC (permalink / raw)
  To: linux-arm-kernel

Olof, Arnd, Russell,

On Mon, Feb 04, 2013 at 09:37:17PM +0000, Jason Cooper wrote:
> The following changes since commit de27686b77f1c5c5dddf06d48fd322c52f098d51:
> 
>   arm: mvebu: i2c come back in defconfig
> 
> are available in the git repository at:
> 
>   git://git.infradead.org/users/jcooper/linux.git tags/mvebu_fixes_for_v3.8-rc6-round2
> 
> for you to fetch changes up to b3fa2a0a2e3ac23415efec7ae848efd918b6b444:
> 
>   rtc: rtc-mv: Add support for clk to avoid lockups
> 
> ----------------------------------------------------------------
> mvebu fixes for v3.8-rc6 (round 2)
>     
>     This series of four patches started with Simon Baatz reporting lost MAC
>     addresses when compiling mv643xx_eth as a module.  Accompanying that, he was
>     getting hard lockups on boot when most other drivers were compiled as modules.
>     
>     All of this boiled down to gated clocks.  mv643xx_eth looses it's mac address
>     after it's clock gets gated.  The patch included in this series prevents the
>     ge0 and ge1 clocks from being gated when doing legacy platform init of the
>     driver.
>     
>     There is another patch to accompany the DT conversion of the driver which will
>     allow reading the mac address from the devicetree.  This patch is not included
>     here because the bindings are being added for v3.9.
>     
>     The hard lockups at boot were the result of many SoC IPs using the runit gate
>     clock.  Several drivers (gpio, rtc) were not claiming the clock, and of_serial
>     wouldn't claim the clock if clock-frequency was specified in the DT.
>     
>     clock-frequency was only necessary before we added proper clock support, it is
>     now removed from all kirkwood dts files.
>     
>     Last, proper clock support is added to gpio-mvebu and rtc-mv.
>     
>     With these four fixes all drivers that can be compiled as modules can be
>     without breaking bootup.
> ----------------------------------------------------------------

In light of Russell's recent comment (re i.MX fixes) on Linus' standard
for -rc7, I'd like to clarify the above.

While only one user reported the above problems (Simon Baatz), it was
caused by compiling v3.8-rc5 with the debian kernel config.  This config
builds almost everything it can as a module.

I'd like to do a v2 of this pull request since it was pointed out to me
this morning that I missed a clock-frequency in
kirkwood-ns2-common.dtsi.

Does the above meet the metric Linus has set for -rc7?  I think so, but
I leave that up to you guys.

If so, I'll redo these four patches to explicitly say they fix boot
problems caused when using debians default kernel config.

thx,

Jason.

> Andrew Lunn (2):
>       gpio: mvebu: Add clk support to prevent lockup
>       rtc: rtc-mv: Add support for clk to avoid lockups
> 
> Jason Cooper (1):
>       ARM: kirkwood: of_serial: fix clock gating by removing clock-frequency
> 
> Sebastian Hesselbarth (1):
>       ARM: kirkwood: fix to retain gbe MAC addresses for DT kernels
> 
>  arch/arm/boot/dts/kirkwood-dns320.dts         |  2 --
>  arch/arm/boot/dts/kirkwood-dns325.dts         |  1 -
>  arch/arm/boot/dts/kirkwood-dockstar.dts       |  1 -
>  arch/arm/boot/dts/kirkwood-dreamplug.dts      |  1 -
>  arch/arm/boot/dts/kirkwood-goflexnet.dts      |  1 -
>  arch/arm/boot/dts/kirkwood-ib62x0.dts         |  1 -
>  arch/arm/boot/dts/kirkwood-iconnect.dts       |  1 -
>  arch/arm/boot/dts/kirkwood-iomega_ix2_200.dts |  1 -
>  arch/arm/boot/dts/kirkwood-km_kirkwood.dts    |  1 -
>  arch/arm/boot/dts/kirkwood-lschlv2.dts        |  1 -
>  arch/arm/boot/dts/kirkwood-lsxhl.dts          |  1 -
>  arch/arm/boot/dts/kirkwood-mplcec4.dts        |  1 -
>  arch/arm/boot/dts/kirkwood-nsa310.dts         |  1 -
>  arch/arm/boot/dts/kirkwood-openblocks_a6.dts  |  2 --
>  arch/arm/boot/dts/kirkwood-topkick.dts        |  1 -
>  arch/arm/boot/dts/kirkwood.dtsi               |  5 ++--
>  arch/arm/mach-kirkwood/board-dt.c             | 24 ++++++++++++-------
>  drivers/gpio/gpio-mvebu.c                     |  7 ++++++
>  drivers/rtc/rtc-mv.c                          | 28 ++++++++++++++++++----
>  19 files changed, 49 insertions(+), 32 deletions(-)
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [GIT PULL] ARM: mvebu fixes for v3.8-rc6 (round 2)
  2013-02-05 14:03 ` Jason Cooper
@ 2013-02-05 18:57   ` Olof Johansson
  2013-02-05 19:09     ` Arnd Bergmann
  2013-02-05 19:37     ` Jason Cooper
  0 siblings, 2 replies; 6+ messages in thread
From: Olof Johansson @ 2013-02-05 18:57 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Feb 05, 2013 at 09:03:53AM -0500, Jason Cooper wrote:
> Olof, Arnd, Russell,
> 
> On Mon, Feb 04, 2013 at 09:37:17PM +0000, Jason Cooper wrote:
> > The following changes since commit de27686b77f1c5c5dddf06d48fd322c52f098d51:
> > 
> >   arm: mvebu: i2c come back in defconfig
> > 
> > are available in the git repository at:
> > 
> >   git://git.infradead.org/users/jcooper/linux.git tags/mvebu_fixes_for_v3.8-rc6-round2
> > 
> > for you to fetch changes up to b3fa2a0a2e3ac23415efec7ae848efd918b6b444:
> > 
> >   rtc: rtc-mv: Add support for clk to avoid lockups
> > 
> > ----------------------------------------------------------------
> > mvebu fixes for v3.8-rc6 (round 2)
> >     
> >     This series of four patches started with Simon Baatz reporting lost MAC
> >     addresses when compiling mv643xx_eth as a module.  Accompanying that, he was
> >     getting hard lockups on boot when most other drivers were compiled as modules.
> >     
> >     All of this boiled down to gated clocks.  mv643xx_eth looses it's mac address
> >     after it's clock gets gated.  The patch included in this series prevents the
> >     ge0 and ge1 clocks from being gated when doing legacy platform init of the
> >     driver.
> >     
> >     There is another patch to accompany the DT conversion of the driver which will
> >     allow reading the mac address from the devicetree.  This patch is not included
> >     here because the bindings are being added for v3.9.
> >     
> >     The hard lockups at boot were the result of many SoC IPs using the runit gate
> >     clock.  Several drivers (gpio, rtc) were not claiming the clock, and of_serial
> >     wouldn't claim the clock if clock-frequency was specified in the DT.
> >     
> >     clock-frequency was only necessary before we added proper clock support, it is
> >     now removed from all kirkwood dts files.
> >     
> >     Last, proper clock support is added to gpio-mvebu and rtc-mv.
> >     
> >     With these four fixes all drivers that can be compiled as modules can be
> >     without breaking bootup.
> > ----------------------------------------------------------------
> 
> In light of Russell's recent comment (re i.MX fixes) on Linus' standard
> for -rc7, I'd like to clarify the above.
> 
> While only one user reported the above problems (Simon Baatz), it was
> caused by compiling v3.8-rc5 with the debian kernel config.  This config
> builds almost everything it can as a module.

Is debian planning on shipping 3.8 on these platforms, or is it just one user
that tried to build it for his own use?

> I'd like to do a v2 of this pull request since it was pointed out to me
> this morning that I missed a clock-frequency in
> kirkwood-ns2-common.dtsi.
> 
> Does the above meet the metric Linus has set for -rc7?  I think so, but
> I leave that up to you guys.
> 
> If so, I'll redo these four patches to explicitly say they fix boot
> problems caused when using debians default kernel config.

It depends on the above question. If Debian needs this for their actual,
real, userbase (assuming they have one on kirkwood), then it's warranted
to go in.

But the fixes need to be rebased on -rc6 because I am not going to send
in some of the previous ones I had already queued but not sent in yet.


-Olof

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [GIT PULL] ARM: mvebu fixes for v3.8-rc6 (round 2)
  2013-02-05 18:57   ` Olof Johansson
@ 2013-02-05 19:09     ` Arnd Bergmann
  2013-02-10  0:33       ` Olof Johansson
  2013-02-05 19:37     ` Jason Cooper
  1 sibling, 1 reply; 6+ messages in thread
From: Arnd Bergmann @ 2013-02-05 19:09 UTC (permalink / raw)
  To: linux-arm-kernel

On Tuesday 05 February 2013 10:57:58 Olof Johansson wrote:
> > 
> > While only one user reported the above problems (Simon Baatz), it was
> > caused by compiling v3.8-rc5 with the debian kernel config.  This config
> > builds almost everything it can as a module.
> 
> Is debian planning on shipping 3.8 on these platforms, or is it just one user
> that tried to build it for his own use?

I believe there is quite an active community around kirkwood running Debian,
since the combination is used on a lot of home NAS systems.

	Arnd

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [GIT PULL] ARM: mvebu fixes for v3.8-rc6 (round 2)
  2013-02-05 18:57   ` Olof Johansson
  2013-02-05 19:09     ` Arnd Bergmann
@ 2013-02-05 19:37     ` Jason Cooper
  1 sibling, 0 replies; 6+ messages in thread
From: Jason Cooper @ 2013-02-05 19:37 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Feb 05, 2013 at 10:57:58AM -0800, Olof Johansson wrote:
> On Tue, Feb 05, 2013 at 09:03:53AM -0500, Jason Cooper wrote:
> > Olof, Arnd, Russell,
> > 
> > On Mon, Feb 04, 2013 at 09:37:17PM +0000, Jason Cooper wrote:
> > > The following changes since commit de27686b77f1c5c5dddf06d48fd322c52f098d51:
> > > 
> > >   arm: mvebu: i2c come back in defconfig
> > > 
> > > are available in the git repository at:
> > > 
> > >   git://git.infradead.org/users/jcooper/linux.git tags/mvebu_fixes_for_v3.8-rc6-round2
> > > 
> > > for you to fetch changes up to b3fa2a0a2e3ac23415efec7ae848efd918b6b444:
> > > 
> > >   rtc: rtc-mv: Add support for clk to avoid lockups
> > > 
> > > ----------------------------------------------------------------
> > > mvebu fixes for v3.8-rc6 (round 2)
> > >     
> > >     This series of four patches started with Simon Baatz reporting lost MAC
> > >     addresses when compiling mv643xx_eth as a module.  Accompanying that, he was
> > >     getting hard lockups on boot when most other drivers were compiled as modules.
> > >     
> > >     All of this boiled down to gated clocks.  mv643xx_eth looses it's mac address
> > >     after it's clock gets gated.  The patch included in this series prevents the
> > >     ge0 and ge1 clocks from being gated when doing legacy platform init of the
> > >     driver.
> > >     
> > >     There is another patch to accompany the DT conversion of the driver which will
> > >     allow reading the mac address from the devicetree.  This patch is not included
> > >     here because the bindings are being added for v3.9.
> > >     
> > >     The hard lockups at boot were the result of many SoC IPs using the runit gate
> > >     clock.  Several drivers (gpio, rtc) were not claiming the clock, and of_serial
> > >     wouldn't claim the clock if clock-frequency was specified in the DT.
> > >     
> > >     clock-frequency was only necessary before we added proper clock support, it is
> > >     now removed from all kirkwood dts files.
> > >     
> > >     Last, proper clock support is added to gpio-mvebu and rtc-mv.
> > >     
> > >     With these four fixes all drivers that can be compiled as modules can be
> > >     without breaking bootup.
> > > ----------------------------------------------------------------
> > 
> > In light of Russell's recent comment (re i.MX fixes) on Linus' standard
> > for -rc7, I'd like to clarify the above.
> > 
> > While only one user reported the above problems (Simon Baatz), it was
> > caused by compiling v3.8-rc5 with the debian kernel config.  This config
> > builds almost everything it can as a module.
> 
> Is debian planning on shipping 3.8 on these platforms, or is it just one user
> that tried to build it for his own use?

To the best of my knowledge, it's the latter.  So I will hold off on
these for after v3.8 drops and CC stable.

I'd like to think more people doing embedded debian are rolling their
own kernels, but I don't think that is the case, unfortunately.

> > I'd like to do a v2 of this pull request since it was pointed out to me
> > this morning that I missed a clock-frequency in
> > kirkwood-ns2-common.dtsi.
> > 
> > Does the above meet the metric Linus has set for -rc7?  I think so, but
> > I leave that up to you guys.
> > 
> > If so, I'll redo these four patches to explicitly say they fix boot
> > problems caused when using debians default kernel config.
> 
> It depends on the above question. If Debian needs this for their actual,
> real, userbase (assuming they have one on kirkwood), then it's warranted
> to go in.
> 
> But the fixes need to be rebased on -rc6 because I am not going to send
> in some of the previous ones I had already queued but not sent in yet.

I'll rebase against v3.8 or newer when I resend.

thx,

Jason.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [GIT PULL] ARM: mvebu fixes for v3.8-rc6 (round 2)
  2013-02-05 19:09     ` Arnd Bergmann
@ 2013-02-10  0:33       ` Olof Johansson
  0 siblings, 0 replies; 6+ messages in thread
From: Olof Johansson @ 2013-02-10  0:33 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Feb 05, 2013 at 08:09:27PM +0100, Arnd Bergmann wrote:
> On Tuesday 05 February 2013 10:57:58 Olof Johansson wrote:
> > > 
> > > While only one user reported the above problems (Simon Baatz), it was
> > > caused by compiling v3.8-rc5 with the debian kernel config.  This config
> > > builds almost everything it can as a module.
> > 
> > Is debian planning on shipping 3.8 on these platforms, or is it just one user
> > that tried to build it for his own use?
> 
> I believe there is quite an active community around kirkwood running Debian,
> since the combination is used on a lot of home NAS systems.

Yeah, but the real question is how many of them are building their own mainline
kernels (with this specific config), and how many are just using whatever the
distro of their choice is providing.


-Olof

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-02-10  0:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-04 21:37 [GIT PULL] ARM: mvebu fixes for v3.8-rc6 (round 2) Jason Cooper
2013-02-05 14:03 ` Jason Cooper
2013-02-05 18:57   ` Olof Johansson
2013-02-05 19:09     ` Arnd Bergmann
2013-02-10  0:33       ` Olof Johansson
2013-02-05 19:37     ` Jason Cooper

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox