All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/13] board: ge: initial dm support
@ 2019-01-31 14:21 Ian Ray
  2019-01-31 14:21 ` [U-Boot] [PATCH 01/13] board: ge: bx50v3: Enable CONFIG_DM Ian Ray
                   ` (12 more replies)
  0 siblings, 13 replies; 30+ messages in thread
From: Ian Ray @ 2019-01-31 14:21 UTC (permalink / raw)
  To: u-boot

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

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

end of thread, other threads:[~2019-03-14  7:34 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-31 14:21 [U-Boot] [PATCH 00/13] board: ge: initial dm support Ian Ray
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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.