public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Simon Guinot <simon.guinot@sequanux.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/6] ARM: kirkwood: dts conversion round 2
Date: Thu, 17 May 2018 13:54:45 +0200	[thread overview]
Message-ID: <20180517115444.GB25769@kw.sim.vm.gnt> (raw)
In-Reply-To: <20180517094601.4816-1-judge.packham@gmail.com>

On Thu, May 17, 2018 at 09:45:55PM +1200, Chris Packham wrote:
> This is the second round of updating kirkwood boards to OF_CONTROL. Most
> of these boards use spi flash so I've added the u-boot specific
> "spi-flash" compatible string where appropriate.

Hi Chris,

Thanks for converting the LaCie boards to device tree. I'll test them
as soon as possible.

Simon

> 
> 
> Chris Packham (6):
>   ARM: kirkwood: Add device-tree for d2net_v2 & net2big_v2
>   ARM: kirkwood: Add device-tree for dreamplug
>   ARM: kirkwood: Add device-tree for ds109
>   ARM: kirkwood: Add device-tree for lschlv2 & lsxhl
>   ARM: kirkwood: Add device-tree for netspace & inetspace
>   ARM: kirkwood: Add device-tree for keymile
> 
>  arch/arm/dts/kirkwood-d2net.dts         |  45 ++
>  arch/arm/dts/kirkwood-dreamplug.dts     | 127 ++++
>  arch/arm/dts/kirkwood-ds109.dts         |  40 ++
>  arch/arm/dts/kirkwood-is2.dts           |  40 ++
>  arch/arm/dts/kirkwood-km_common.dtsi    |  47 ++
>  arch/arm/dts/kirkwood-km_kirkwood.dts   |  31 +
>  arch/arm/dts/kirkwood-lschlv2.dts       |  20 +
>  arch/arm/dts/kirkwood-lsxhl.dts         |  20 +
>  arch/arm/dts/kirkwood-lsxl.dtsi         | 237 +++++++
>  arch/arm/dts/kirkwood-net2big.dts       |  63 ++
>  arch/arm/dts/kirkwood-netxbig.dtsi      | 232 +++++++
>  arch/arm/dts/kirkwood-ns2-common.dtsi   |  97 +++
>  arch/arm/dts/kirkwood-ns2.dts           |  40 ++
>  arch/arm/dts/kirkwood-ns2lite.dts       |  35 +
>  arch/arm/dts/kirkwood-ns2max.dts        |  59 ++
>  arch/arm/dts/kirkwood-ns2mini.dts       |  60 ++
>  arch/arm/dts/kirkwood-synology.dtsi     | 855 ++++++++++++++++++++++++
>  configs/d2net_v2_defconfig              |   3 +-
>  configs/dreamplug_defconfig             |   3 +-
>  configs/ds109_defconfig                 |   2 +
>  configs/inetspace_v2_defconfig          |   3 +-
>  configs/km_kirkwood_128m16_defconfig    |   3 +-
>  configs/km_kirkwood_defconfig           |   3 +-
>  configs/km_kirkwood_pci_defconfig       |   3 +-
>  configs/kmcoge5un_defconfig             |   3 +-
>  configs/kmnusa_defconfig                |   3 +-
>  configs/kmsugp1_defconfig               |   3 +-
>  configs/kmsuv31_defconfig               |   3 +-
>  configs/lschlv2_defconfig               |   3 +-
>  configs/lsxhl_defconfig                 |   3 +-
>  configs/mgcoge3un_defconfig             |   3 +-
>  configs/net2big_v2_defconfig            |   3 +-
>  configs/netspace_lite_v2_defconfig      |   3 +-
>  configs/netspace_max_v2_defconfig       |   3 +-
>  configs/netspace_mini_v2_defconfig      |   3 +-
>  configs/netspace_v2_defconfig           |   3 +-
>  include/dt-bindings/leds/leds-netxbig.h |  18 +
>  include/dt-bindings/leds/leds-ns2.h     |   9 +
>  38 files changed, 2113 insertions(+), 18 deletions(-)
>  create mode 100644 arch/arm/dts/kirkwood-d2net.dts
>  create mode 100644 arch/arm/dts/kirkwood-dreamplug.dts
>  create mode 100644 arch/arm/dts/kirkwood-ds109.dts
>  create mode 100644 arch/arm/dts/kirkwood-is2.dts
>  create mode 100644 arch/arm/dts/kirkwood-km_common.dtsi
>  create mode 100644 arch/arm/dts/kirkwood-km_kirkwood.dts
>  create mode 100644 arch/arm/dts/kirkwood-lschlv2.dts
>  create mode 100644 arch/arm/dts/kirkwood-lsxhl.dts
>  create mode 100644 arch/arm/dts/kirkwood-lsxl.dtsi
>  create mode 100644 arch/arm/dts/kirkwood-net2big.dts
>  create mode 100644 arch/arm/dts/kirkwood-netxbig.dtsi
>  create mode 100644 arch/arm/dts/kirkwood-ns2-common.dtsi
>  create mode 100644 arch/arm/dts/kirkwood-ns2.dts
>  create mode 100644 arch/arm/dts/kirkwood-ns2lite.dts
>  create mode 100644 arch/arm/dts/kirkwood-ns2max.dts
>  create mode 100644 arch/arm/dts/kirkwood-ns2mini.dts
>  create mode 100644 arch/arm/dts/kirkwood-synology.dtsi
>  create mode 100644 include/dt-bindings/leds/leds-netxbig.h
>  create mode 100644 include/dt-bindings/leds/leds-ns2.h
> 
> -- 
> 2.17.0
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180517/e877e839/attachment.sig>

  parent reply	other threads:[~2018-05-17 11:54 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-17  9:45 [U-Boot] [PATCH 0/6] ARM: kirkwood: dts conversion round 2 Chris Packham
2018-05-17  9:45 ` [U-Boot] [PATCH 1/6] ARM: kirkwood: Add device-tree for d2net_v2 & net2big_v2 Chris Packham
2018-05-17  9:45 ` [U-Boot] [PATCH 2/6] ARM: kirkwood: Add device-tree for dreamplug Chris Packham
2018-05-17  9:45 ` [U-Boot] [PATCH 3/6] ARM: kirkwood: Add device-tree for ds109 Chris Packham
2018-05-17  9:45 ` [U-Boot] [PATCH 4/6] ARM: kirkwood: Add device-tree for lschlv2 & lsxhl Chris Packham
2018-05-17  9:46 ` [U-Boot] [PATCH 5/6] ARM: kirkwood: Add device-tree for netspace & inetspace Chris Packham
2018-05-17  9:46 ` [U-Boot] [PATCH 6/6] ARM: kirkwood: Add device-tree for keymile Chris Packham
2018-05-17 11:54 ` Simon Guinot [this message]
2018-05-29  8:31 ` [U-Boot] [PATCH 0/6] ARM: kirkwood: dts conversion round 2 Stefan Roese

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180517115444.GB25769@kw.sim.vm.gnt \
    --to=simon.guinot@sequanux.org \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox