mbox

[GIT,PULL] ARM: Kirkwood: new boards for v3.5

Message ID 20120515032605.GV16338@titan.lakedaemon.net
State New
Headers show

Pull-request

git://git.infradead.org/users/jcooper/linux.git kirkwood_boards_for_v3.5

Message

Jason Cooper May 15, 2012, 3:26 a.m. UTC
The following changes since commit 36be50515fe2aef61533b516fa2576a2c7fe7664:

  Linux 3.4-rc7 (2012-05-12 18:37:47 -0700)

are available in the git repository at:
  git://git.infradead.org/users/jcooper/linux.git kirkwood_boards_for_v3.5

Arnaud Patard (3):
      kirkwood/orion: fix orion_gpio_set_blink
      orion/kirkwood: create a generic function for gpio led blinking
      kirkwood: Add iconnect support

Jamie Lentin (4):
      ARM: kirkwood: Basic support for DNS-320 and DNS-325
      mtd: Add orion_nand devicetree bindings
      kirkwood: Allow nand to be configured via. devicetree
      ARM: kirkwood: Define DNS-320/DNS-325 NAND in fdt

Simon Baatz (1):
      ARM: kirkwood: Add support for RaidSonic IB-NAS6210/6220 using devicetree

 .../devicetree/bindings/mtd/orion-nand.txt         |   50 ++++
 arch/arm/boot/dts/kirkwood-dns320.dts              |   64 +++++
 arch/arm/boot/dts/kirkwood-dns325.dts              |   59 +++++
 arch/arm/boot/dts/kirkwood-ib62x0.dts              |   44 +++
 arch/arm/boot/dts/kirkwood-iconnect.dts            |   26 ++
 arch/arm/boot/dts/kirkwood.dtsi                    |   15 +-
 arch/arm/mach-kirkwood/Kconfig                     |   22 ++
 arch/arm/mach-kirkwood/Makefile                    |    3 +
 arch/arm/mach-kirkwood/Makefile.boot               |    4 +
 arch/arm/mach-kirkwood/board-dnskw.c               |  275 ++++++++++++++++++++
 arch/arm/mach-kirkwood/board-dt.c                  |   13 +
 arch/arm/mach-kirkwood/board-ib62x0.c              |  143 ++++++++++
 arch/arm/mach-kirkwood/board-iconnect.c            |  165 ++++++++++++
 arch/arm/mach-kirkwood/common.c                    |   12 +
 arch/arm/mach-kirkwood/common.h                    |   18 ++
 arch/arm/mach-orion5x/dns323-setup.c               |   25 +--
 arch/arm/plat-orion/gpio.c                         |   27 ++-
 arch/arm/plat-orion/include/plat/gpio.h            |    2 +
 drivers/mtd/nand/orion_nand.c                      |   47 +++-
 19 files changed, 985 insertions(+), 29 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/mtd/orion-nand.txt
 create mode 100644 arch/arm/boot/dts/kirkwood-dns320.dts
 create mode 100644 arch/arm/boot/dts/kirkwood-dns325.dts
 create mode 100644 arch/arm/boot/dts/kirkwood-ib62x0.dts
 create mode 100644 arch/arm/boot/dts/kirkwood-iconnect.dts
 create mode 100644 arch/arm/mach-kirkwood/board-dnskw.c
 create mode 100644 arch/arm/mach-kirkwood/board-ib62x0.c
 create mode 100644 arch/arm/mach-kirkwood/board-iconnect.c

Comments

Arnd Bergmann May 15, 2012, 8:44 a.m. UTC | #1
On Tuesday 15 May 2012, Jason Cooper wrote:
> The following changes since commit 36be50515fe2aef61533b516fa2576a2c7fe7664:
> 
>   Linux 3.4-rc7 (2012-05-12 18:37:47 -0700)
> 
> are available in the git repository at:
>   git://git.infradead.org/users/jcooper/linux.git kirkwood_boards_for_v3.5
> 
> Arnaud Patard (3):
>       kirkwood/orion: fix orion_gpio_set_blink
>       orion/kirkwood: create a generic function for gpio led blinking
>       kirkwood: Add iconnect support
> 
> Jamie Lentin (4):
>       ARM: kirkwood: Basic support for DNS-320 and DNS-325
>       mtd: Add orion_nand devicetree bindings
>       kirkwood: Allow nand to be configured via. devicetree
>       ARM: kirkwood: Define DNS-320/DNS-325 NAND in fdt
> 
> Simon Baatz (1):
>       ARM: kirkwood: Add support for RaidSonic IB-NAS6210/6220 using devicetree
 
Please try to be more consistent with the formatting of the subject lines
in the future, the style that everyone else uses is "ARM: kirkwood: ..." for
ARM patches.

Pulled into next/boards, thanks!

	Arnd
Ben Dooks May 15, 2012, 8:47 a.m. UTC | #2
On 15/05/12 04:26, Jason Cooper wrote:
> The following changes since commit 36be50515fe2aef61533b516fa2576a2c7fe7664:
>
>    Linux 3.4-rc7 (2012-05-12 18:37:47 -0700)
>
> are available in the git repository at:
>    git://git.infradead.org/users/jcooper/linux.git kirkwood_boards_for_v3.5
>
> Arnaud Patard (3):
>        kirkwood/orion: fix orion_gpio_set_blink
>        orion/kirkwood: create a generic function for gpio led blinking
>        kirkwood: Add iconnect support
>
> Jamie Lentin (4):
>        ARM: kirkwood: Basic support for DNS-320 and DNS-325
>        mtd: Add orion_nand devicetree bindings
>        kirkwood: Allow nand to be configured via. devicetree
>        ARM: kirkwood: Define DNS-320/DNS-325 NAND in fdt
>
> Simon Baatz (1):
>        ARM: kirkwood: Add support for RaidSonic IB-NAS6210/6220 using devicetree
>
>   .../devicetree/bindings/mtd/orion-nand.txt         |   50 ++++
>   arch/arm/boot/dts/kirkwood-dns320.dts              |   64 +++++
>   arch/arm/boot/dts/kirkwood-dns325.dts              |   59 +++++
>   arch/arm/boot/dts/kirkwood-ib62x0.dts              |   44 +++
>   arch/arm/boot/dts/kirkwood-iconnect.dts            |   26 ++

I thought the idea of going to device-tree was to remove the addition
of these? Now instead of .c files we're getting piles of .dts files.
Nicolas Pitre May 15, 2012, 7:25 p.m. UTC | #3
On Tue, 15 May 2012, Ben Dooks wrote:

> On 15/05/12 04:26, Jason Cooper wrote:
> >   .../devicetree/bindings/mtd/orion-nand.txt         |   50 ++++
> >   arch/arm/boot/dts/kirkwood-dns320.dts              |   64 +++++
> >   arch/arm/boot/dts/kirkwood-dns325.dts              |   59 +++++
> >   arch/arm/boot/dts/kirkwood-ib62x0.dts              |   44 +++
> >   arch/arm/boot/dts/kirkwood-iconnect.dts            |   26 ++
> 
> I thought the idea of going to device-tree was to remove the addition
> of these? Now instead of .c files we're getting piles of .dts files.

Yes, and this is a good thing.

We're not to that point where DT is sufficiently well implemented and 
stable on ARM for those files to live somewhere else.  Eventually they 
will go when they won't have to evolve in lock step anymore.


Nicolas