linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] ARM: mvebu: dt for v4.10 (#1)
@ 2016-11-17 21:50 Gregory CLEMENT
  2016-11-19  1:58 ` Olof Johansson
  0 siblings, 1 reply; 5+ messages in thread
From: Gregory CLEMENT @ 2016-11-17 21:50 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

Here is the first pull request for dt for mvebu for v4.10.

I hope being able to send a second part very soon with the series
removing all the DT warning.

Gregory

The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:

  Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)

are available in the git repository at:

  git://git.infradead.org/linux-mvebu.git tags/mvebu-dt-4.10-1

for you to fetch changes up to cf20c489de6fcef88405d4febef7a078d2053b9e:

  ARM: dt: orion5x: convert ls-chl to FDT (2016-11-07 17:23:34 +0100)

----------------------------------------------------------------
mvebu fixes for 4.10 (part 1)

Most of the commit are pinmux and i2c fix for netgear NASes
Fix on a wrong comment about PLL frequency
Bigger commit: conversion of on otion5x based board to the device tree

----------------------------------------------------------------
Ashley Hughes (1):
      ARM: dt: orion5x: convert ls-chl to FDT

Chris Packham (1):
      ARM: dts: mvebu: Update comment for main PLL frequency

Uwe Kleine-K?nig (6):
      ARM: dts: armada-370-rn104: add pinmuxing for i2c0
      ARM: dts: armada-370-rn104: drop specification of compatible for i2c0
      ARM: dts: armada-xp-rn2120: drop wrong compatible for i2c0
      ARM: dts: armada-xp-rn2120: add pinmuxing for ethernet
      ARM: dts: armada-370-rn102: drop specification of compatible for i2c0
      ARM: dts: armada-370-rn102: add pinmuxing for i2c0

 arch/arm/boot/dts/Makefile                     |   1 +
 arch/arm/boot/dts/armada-370-netgear-rn102.dts |   5 +-
 arch/arm/boot/dts/armada-370-netgear-rn104.dts |   5 +-
 arch/arm/boot/dts/armada-375.dtsi              |   2 +-
 arch/arm/boot/dts/armada-38x.dtsi              |   2 +-
 arch/arm/boot/dts/armada-39x.dtsi              |   2 +-
 arch/arm/boot/dts/armada-xp-netgear-rn2120.dts |   7 +-
 arch/arm/boot/dts/orion5x-lschl.dts            | 171 +++++++++++++
 arch/arm/mach-orion5x/Kconfig                  |   4 +-
 arch/arm/mach-orion5x/Makefile                 |   1 -
 arch/arm/mach-orion5x/ls-chl-setup.c           | 331 -------------------------
 11 files changed, 191 insertions(+), 340 deletions(-)
 create mode 100644 arch/arm/boot/dts/orion5x-lschl.dts
 delete mode 100644 arch/arm/mach-orion5x/ls-chl-setup.c

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

* [GIT PULL] ARM: mvebu: dt for v4.10 (#1)
  2016-11-17 21:50 [GIT PULL] ARM: mvebu: dt for v4.10 (#1) Gregory CLEMENT
@ 2016-11-19  1:58 ` Olof Johansson
  2016-11-19  8:25   ` Gregory CLEMENT
  0 siblings, 1 reply; 5+ messages in thread
From: Olof Johansson @ 2016-11-19  1:58 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

On Thu, Nov 17, 2016 at 10:50:33PM +0100, Gregory CLEMENT wrote:
> Hi,
> 
> Here is the first pull request for dt for mvebu for v4.10.
> 
> I hope being able to send a second part very soon with the series
> removing all the DT warning.
> 
> Gregory
> 
> The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:
> 
>   Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)
> 
> are available in the git repository at:
> 
>   git://git.infradead.org/linux-mvebu.git tags/mvebu-dt-4.10-1
> 
> for you to fetch changes up to cf20c489de6fcef88405d4febef7a078d2053b9e:
> 
>   ARM: dt: orion5x: convert ls-chl to FDT (2016-11-07 17:23:34 +0100)
> 
> ----------------------------------------------------------------
> mvebu fixes for 4.10 (part 1)
> 
> Most of the commit are pinmux and i2c fix for netgear NASes
> Fix on a wrong comment about PLL frequency
> Bigger commit: conversion of on otion5x based board to the device tree
> 
> ----------------------------------------------------------------
> Ashley Hughes (1):
>       ARM: dt: orion5x: convert ls-chl to FDT

This is a great conversion, but I'd like to see the code handled a
little differently.

First of all, there's no longer a need to have a config option for 
MACH_LINKSTATION_LSCHL, as long as ARCH_ORION5X_DT is enabled you'll
be fine. So you can remove that Kconfig entry alltogether.

Also, there's no need to make the DT addition and the legacy platform
removal in one commit. It's common that we build up the DT support to the point
that it's at parity, and then remove the legacy board. That way we also don't
entangle DT commits with non-DT commits, which can sometimes be a bit of a pain
(in particular for those who maintain a copy of the DT subdir in another git
repo).

So, mind respinning with this fixed? Thanks!


-Olof

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

* [GIT PULL] ARM: mvebu: dt for v4.10 (#1)
  2016-11-19  1:58 ` Olof Johansson
@ 2016-11-19  8:25   ` Gregory CLEMENT
  0 siblings, 0 replies; 5+ messages in thread
From: Gregory CLEMENT @ 2016-11-19  8:25 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof,
 
 On sam., nov. 19 2016, Olof Johansson <olof@lixom.net> wrote:

> Hi,
>
> On Thu, Nov 17, 2016 at 10:50:33PM +0100, Gregory CLEMENT wrote:
>> Hi,
>> 
>> Here is the first pull request for dt for mvebu for v4.10.
>> 
>> I hope being able to send a second part very soon with the series
>> removing all the DT warning.
>> 
>> Gregory
>> 
>> The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:
>> 
>>   Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)
>> 
>> are available in the git repository at:
>> 
>>   git://git.infradead.org/linux-mvebu.git tags/mvebu-dt-4.10-1
>> 
>> for you to fetch changes up to cf20c489de6fcef88405d4febef7a078d2053b9e:
>> 
>>   ARM: dt: orion5x: convert ls-chl to FDT (2016-11-07 17:23:34 +0100)
>> 
>> ----------------------------------------------------------------
>> mvebu fixes for 4.10 (part 1)
>> 
>> Most of the commit are pinmux and i2c fix for netgear NASes
>> Fix on a wrong comment about PLL frequency
>> Bigger commit: conversion of on otion5x based board to the device tree
>> 
>> ----------------------------------------------------------------
>> Ashley Hughes (1):
>>       ARM: dt: orion5x: convert ls-chl to FDT
>
> This is a great conversion, but I'd like to see the code handled a
> little differently.
>
> First of all, there's no longer a need to have a config option for 
> MACH_LINKSTATION_LSCHL, as long as ARCH_ORION5X_DT is enabled you'll
> be fine. So you can remove that Kconfig entry alltogether.
>
> Also, there's no need to make the DT addition and the legacy platform
> removal in one commit. It's common that we build up the DT support to the point
> that it's at parity, and then remove the legacy board. That way we also don't
> entangle DT commits with non-DT commits, which can sometimes be a bit of a pain
> (in particular for those who maintain a copy of the DT subdir in another git
> repo).
>
> So, mind respinning with this fixed? Thanks!

OK I am doing it.

Gregory

>
>
> -Olof
>

-- 
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [GIT PULL] ARM: mvebu: dt for v4.10 (#1)
@ 2016-11-19  8:33 Gregory CLEMENT
  2016-11-25 23:47 ` Arnd Bergmann
  0 siblings, 1 reply; 5+ messages in thread
From: Gregory CLEMENT @ 2016-11-19  8:33 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

Here is the first pull request for dt for mvebu for v4.10. It repalces
the previous one sent 2 days ago as requested by Olof.

I take the opportunity to add new commits:
"ARM: dts: kirkwood: fix spelling mistake" which as applied recently but
which is harmless and trivial.

I also add all the non controversial patches removing the DTC
warning. They wre posted two weeks ago and was in linux-next since this
day. As there is still some discussions about MBUS_ID and ranges, I will
prepare a new series for them which I still hope mnage to be part of
4.10.

Gregory

The following changes since commit 1001354ca34179f3db924eb66672442a173147dc:

  Linux 4.9-rc1 (2016-10-15 12:17:50 -0700)

are available in the git repository at:

  git://git.infradead.org/linux-mvebu.git tags/mvebu-dt-4.10-1

for you to fetch changes up to 2f7132852038deb8e364bee155f51cb477c8d2f4:

  ARM: dts: armada-375: Fixup ethernet child DT warning (2016-11-19 09:16:52 +0100)

----------------------------------------------------------------
mvebu dt for 4.10 (part 1)

Add missing pinmux declaration for netgear NASes
Fix i2c compatible string for netgear NASes
Fix on a wrong comment about PLL frequency
Fix spelling mistake of the manufacturer's name of the Topkick
Add dt support for the orion5x ls-chl Linkstation device
First step of fixing DTC warning for Armada 370, 375 and XP

----------------------------------------------------------------
Ashley Hughes (1):
      ARM: dts: orion5x: convert ls-chl to FDT

Chris Packham (1):
      ARM: dts: mvebu: Update comment for main PLL frequency

Gregory CLEMENT (21):
      ARM: dts: armada-xp-matrix: Fix the location of the pcie-controller node
      ARM: dts: armada-370-xp: move the cpurst node in the common file
      ARM: dts: armada-370-xp: add node labels
      ARM: dts: armada-370-xp: Use the node labels
      ARM: dts: armada-370-xp: Fixup mdio DT warning
      ARM: dts: armada-xp: Fixup pcie DT warnings
      ARM: dts: armada-370: Fixup pcie DT warnings
      ARM: dts: armada-370-xp: Remove skeleton.dtsi
      ARM: dts: armada-370-xp: Fixup l2-cache DT warning
      ARM: dts: armada-370-xp: Fixup memory DT warning
      ARM: dts: armada-370-xp: Remove address from dsa unit name
      ARM: dts: armada-370-xp: Remove button address and fixup names
      ARM: dts: armada-370-xp: Fixup regulator DT warning
      ARM: dts: armada-375: Add node labels
      ARM: dts: armada-375: Use the node labels
      ARM: dts: armada-375: Fixup mdio DT warning
      ARM: dts: armada-375: Fixup pcie DT warnings
      ARM: dts: armada-375: Fixup pinctrl DT warnings
      ARM: dts: armada-375: Remove skeleton.dtsi
      ARM: dts: armada-375: Fixup memory DT warning
      ARM: dts: armada-375: Fixup ethernet child DT warning

Paul Wassi (1):
      ARM: dts: kirkwood: fix spelling mistake

Uwe Kleine-K?nig (6):
      ARM: dts: armada-370-rn104: add pinmuxing for i2c0
      ARM: dts: armada-370-rn104: drop specification of compatible for i2c0
      ARM: dts: armada-xp-rn2120: drop wrong compatible for i2c0
      ARM: dts: armada-xp-rn2120: add pinmuxing for ethernet
      ARM: dts: armada-370-rn102: drop specification of compatible for i2c0
      ARM: dts: armada-370-rn102: add pinmuxing for i2c0

 arch/arm/boot/dts/Makefile                         |   1 +
 arch/arm/boot/dts/armada-370-db.dts                |  63 ++---
 arch/arm/boot/dts/armada-370-dlink-dns327l.dts     |  30 +--
 arch/arm/boot/dts/armada-370-mirabox.dts           |  57 ++---
 arch/arm/boot/dts/armada-370-netgear-rn102.dts     |  55 +++--
 arch/arm/boot/dts/armada-370-netgear-rn104.dts     |  63 ++---
 arch/arm/boot/dts/armada-370-rd.dts                |  57 ++---
 arch/arm/boot/dts/armada-370-seagate-nas-4bay.dts  |  27 +-
 arch/arm/boot/dts/armada-370-seagate-nas-xbay.dtsi |  45 ++--
 .../dts/armada-370-seagate-personal-cloud.dtsi     |  44 ++--
 arch/arm/boot/dts/armada-370-synology-ds213j.dts   |  18 +-
 arch/arm/boot/dts/armada-370-xp.dtsi               |  39 +--
 arch/arm/boot/dts/armada-370.dtsi                  | 136 +++++------
 arch/arm/boot/dts/armada-375-db.dts                | 271 +++++++++++----------
 arch/arm/boot/dts/armada-375.dtsi                  |  72 +++---
 arch/arm/boot/dts/armada-38x.dtsi                  |   2 +-
 arch/arm/boot/dts/armada-39x.dtsi                  |   2 +-
 arch/arm/boot/dts/armada-xp-axpwifiap.dts          |  68 +++---
 arch/arm/boot/dts/armada-xp-db.dts                 | 104 ++++----
 arch/arm/boot/dts/armada-xp-gp.dts                 |  80 +++---
 arch/arm/boot/dts/armada-xp-lenovo-ix4-300d.dts    |  53 ++--
 arch/arm/boot/dts/armada-xp-linksys-mamba.dts      |  52 ++--
 arch/arm/boot/dts/armada-xp-matrix.dts             |  20 +-
 arch/arm/boot/dts/armada-xp-mv78230.dtsi           |  12 +-
 arch/arm/boot/dts/armada-xp-mv78260.dtsi           |  20 +-
 arch/arm/boot/dts/armada-xp-mv78460.dtsi           |  22 +-
 arch/arm/boot/dts/armada-xp-netgear-rn2120.dts     |  74 +++---
 arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts   |  58 ++---
 arch/arm/boot/dts/armada-xp-synology-ds414.dts     |  75 +++---
 arch/arm/boot/dts/armada-xp.dtsi                   |  94 +++----
 arch/arm/boot/dts/kirkwood-topkick.dts             |   2 +-
 arch/arm/boot/dts/orion5x-lschl.dts                | 171 +++++++++++++
 32 files changed, 1042 insertions(+), 845 deletions(-)
 create mode 100644 arch/arm/boot/dts/orion5x-lschl.dts

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

* [GIT PULL] ARM: mvebu: dt for v4.10 (#1)
  2016-11-19  8:33 Gregory CLEMENT
@ 2016-11-25 23:47 ` Arnd Bergmann
  0 siblings, 0 replies; 5+ messages in thread
From: Arnd Bergmann @ 2016-11-25 23:47 UTC (permalink / raw)
  To: linux-arm-kernel

On Saturday, November 19, 2016 9:33:04 AM CET Gregory CLEMENT wrote:
> Here is the first pull request for dt for mvebu for v4.10. It repalces
> the previous one sent 2 days ago as requested by Olof.
> 
> I take the opportunity to add new commits:
> "ARM: dts: kirkwood: fix spelling mistake" which as applied recently but
> which is harmless and trivial.
> 
> I also add all the non controversial patches removing the DTC
> warning. They wre posted two weeks ago and was in linux-next since this
> day. As there is still some discussions about MBUS_ID and ranges, I will
> prepare a new series for them which I still hope mnage to be part of
> 4.10.
> 

Pulled into next/dt, thanks for the respin!

	Arnd

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

end of thread, other threads:[~2016-11-25 23:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-17 21:50 [GIT PULL] ARM: mvebu: dt for v4.10 (#1) Gregory CLEMENT
2016-11-19  1:58 ` Olof Johansson
2016-11-19  8:25   ` Gregory CLEMENT
  -- strict thread matches above, loose matches on Subject: below --
2016-11-19  8:33 Gregory CLEMENT
2016-11-25 23:47 ` Arnd Bergmann

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).