public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Ian Ray <ian.ray@ge.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 00/13] board: ge: initial dm support
Date: Thu, 31 Jan 2019 16:21:10 +0200	[thread overview]
Message-ID: <cover.1548942080.git.ian.ray@ge.com> (raw)

This series is primarily (patches 01-07) about converting ge_bx50v3 and
mx53ppd boards to use the Driver Model and Device Tree.

Four additional patches (08-13) include recent additional functionality
and fixes.


Patches applicable on top of master:

 * SHA1: 535d74a8ae8d194269cefdf59ae17a92cd6e75dc

 * However, note that patch _13_ requires:
   - https://patchwork.ozlabs.org/patch/947075/ 
   - https://patchwork.ozlabs.org/patch/947076/
   - https://patchwork.ozlabs.org/patch/947074/


Ian Ray (11):
  board: ge: bx50v3: Enable CONFIG_DM
  board: ge: bx50v3: Enable CONFIG_DM_MMC
  board: ge: bx50v3: Enable CONFIG_DM_GPIO
  board: ge: bx50v3: Enable CONFIG_DM_SPI, CONFIG_DM_SPI_FLASH
  board: ge: ppd: Enable CONFIG_DM
  arm: imx: Add esdhc3/4 nodes to imx53.dtsi
  board: ge: ppd: Enable CONFIG_DM_MMC
  board: ge: store version information in fdt
  mx53ppd: bring dock out of reset at boot
  mx53ppd: fix unsupported set command
  bootcount: i2c: Delay after writing

Joonas Aijala (2):
  board: ge: bx50v3: Specific ARP timeout removed
  board: ge: bx50v3: Network booting of fitImage with nfs rootfs

 arch/arm/dts/Makefile             |   3 +
 arch/arm/dts/imx53-ppd.dts        |  43 ++++++++++
 arch/arm/dts/imx53.dtsi           |  26 +++++++
 arch/arm/dts/imx6q-bx50v3.dts     |  89 +++++++++++++++++++++
 board/ge/bx50v3/bx50v3.c          | 160 +++++---------------------------------
 board/ge/mx53ppd/mx53ppd.c        |  84 +++-----------------
 board/ge/mx53ppd/ppd_gpio.h       |   4 +
 configs/ge_bx50v3_defconfig       |  12 +++
 configs/mx53ppd_defconfig         |   9 +++
 drivers/bootcount/bootcount_i2c.c |   4 +
 include/configs/ge_bx50v3.h       |  36 +++++++--
 include/configs/mx53ppd.h         |  12 +--
 12 files changed, 255 insertions(+), 227 deletions(-)
 create mode 100644 arch/arm/dts/imx53-ppd.dts
 create mode 100644 arch/arm/dts/imx6q-bx50v3.dts

-- 
2.10.1

             reply	other threads:[~2019-01-31 14:21 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-31 14:21 Ian Ray [this message]
2019-01-31 14:21 ` [U-Boot] [PATCH 01/13] board: ge: bx50v3: Enable CONFIG_DM Ian Ray
2019-03-13  9:47   ` [U-Boot] [U-Boot,01/13] " sbabic at denx.de
2019-01-31 14:21 ` [U-Boot] [PATCH 02/13] board: ge: bx50v3: Enable CONFIG_DM_MMC Ian Ray
2019-03-13  9:47   ` [U-Boot] [U-Boot,02/13] " sbabic at denx.de
2019-01-31 14:21 ` [U-Boot] [PATCH 03/13] board: ge: bx50v3: Enable CONFIG_DM_GPIO Ian Ray
2019-03-13  9:29   ` [U-Boot] [U-Boot,03/13] " sbabic at denx.de
2019-01-31 14:21 ` [U-Boot] [PATCH 04/13] board: ge: bx50v3: Enable CONFIG_DM_SPI, CONFIG_DM_SPI_FLASH Ian Ray
2019-03-13  9:28   ` [U-Boot] [U-Boot, " sbabic at denx.de
2019-01-31 14:21 ` [U-Boot] [PATCH 05/13] board: ge: ppd: Enable CONFIG_DM Ian Ray
2019-03-13  9:29   ` [U-Boot] [U-Boot,05/13] " sbabic at denx.de
2019-01-31 14:21 ` [U-Boot] [PATCH 06/13] arm: imx: Add esdhc3/4 nodes to imx53.dtsi Ian Ray
2019-03-13  9:28   ` [U-Boot] [U-Boot, " sbabic at denx.de
2019-01-31 14:21 ` [U-Boot] [PATCH 07/13] board: ge: ppd: Enable CONFIG_DM_MMC Ian Ray
2019-03-13  9:28   ` [U-Boot] [U-Boot,07/13] " sbabic at denx.de
2019-01-31 14:21 ` [U-Boot] [PATCH 08/13] board: ge: store version information in fdt Ian Ray
2019-03-13  9:38   ` [U-Boot] [U-Boot, " sbabic at denx.de
2019-01-31 14:21 ` [U-Boot] [PATCH 09/13] board: ge: bx50v3: Specific ARP timeout removed Ian Ray
2019-01-31 14:21 ` [U-Boot] [PATCH 10/13] board: ge: bx50v3: Network booting of fitImage with nfs rootfs Ian Ray
     [not found]   ` <joonas.aijala@ge.com>
2019-03-13  9:28     ` [U-Boot] [U-Boot, " sbabic at denx.de
2019-03-13  9:38     ` [U-Boot] [U-Boot, 09/13] board: ge: bx50v3: Specific ARP timeout removed sbabic at denx.de
2019-01-31 14:21 ` [U-Boot] [PATCH 11/13] mx53ppd: bring dock out of reset at boot Ian Ray
2019-03-13  9:28   ` [U-Boot] [U-Boot,11/13] " sbabic at denx.de
2019-01-31 14:21 ` [U-Boot] [PATCH 12/13] mx53ppd: fix unsupported set command Ian Ray
2019-03-13  9:30   ` [U-Boot] [U-Boot,12/13] " sbabic at denx.de
2019-01-31 14:21 ` [U-Boot] [PATCH 13/13] bootcount: i2c: Delay after writing Ian Ray
2019-03-13 10:04   ` Stefano Babic
2019-03-13 13:01     ` Heiko Schocher
2019-03-13 13:42       ` Stefano Babic
2019-03-14  7:34         ` [U-Boot] EXT: " Ray, Ian

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=cover.1548942080.git.ian.ray@ge.com \
    --to=ian.ray@ge.com \
    --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