public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot]  [PATCH 00/19] imx: ventana: misc updates
@ 2015-05-09  1:28 Tim Harvey
  2015-05-09  1:28 ` [U-Boot] [PATCH 01/19] imx: ventana: set dtype env var to boot media Tim Harvey
                   ` (22 more replies)
  0 siblings, 23 replies; 44+ messages in thread
From: Tim Harvey @ 2015-05-09  1:28 UTC (permalink / raw)
  To: u-boot

This collection of patches comprises a set of various updates I've been
on for Ventana.

In summary:
 - enable driver model
 - enable gpio command
 - enable dm-serial
 - enable thermal support
 - fixup for GW522x PCI enumeration
 - split out common code shared between SPL an U-Boot
 - pull down various init code to the SPL for use in Falcon mode
 - enable Falcon mode (based on env var)

The enabling of Falcon mode is dependent on a patch I submitted earlier
allowing nand env in spl [1].

Currently Falcon mode is configured for NAND boot. I plan on re-working
a pending patchset I have that allows dynamic env support (use mmc or nand
env depending on boot device) but I still need to re-work that using
driver-model so it will come later.

I will send a followup patch with README updates explaining our use of Falcon
mode if everything here looks good.

Tim

[1] https://patchwork.ozlabs.org/patch/470191/

Tim Harvey (19):
  imx: ventana: set dtype env var to boot media
  imx: ventana: display SPL boot device
  imx: ventana: config: enable gpio command
  imx: ventana: config: enable driver model
  imx: ventana: register gpio's with gpio_request
  imx: ventana: enable DM_SERIAL
  imx: ventana: config: enable Thermal support
  imx: ventana: config: use MMC SPL RAW support
  imx: ventana: (cosmetic) clean up size defines for improved
    readability
  imx: ventana: fix pcie reset for GW522x
  imx: ventana: default msata/pci mux to pci before PCI enumeration
  imx: ventana: split out common functions between SPL and uboot
  imx: ventana: move GSC boot watchdog disable function to gsc.c
  imx: ventana: detect pmic using i2c probe instead of board model
  imx: ventana: use common uart and i2c setup functions in SPL
  imx: ventana: add gpio setup to SPL
  imx: ventana: add pmic_setup to SPL
  imx: ventana: add GSC boot watchdog disable to SPL
  imx: ventana: config: enable Falcon mode

 board/gateworks/gw_ventana/Makefile         |   2 +-
 board/gateworks/gw_ventana/common.c         | 827 +++++++++++++++++++++++++
 board/gateworks/gw_ventana/common.h         |  98 +++
 board/gateworks/gw_ventana/gsc.c            |  27 +
 board/gateworks/gw_ventana/gsc.h            |   1 +
 board/gateworks/gw_ventana/gw_ventana.c     | 911 ++--------------------------
 board/gateworks/gw_ventana/gw_ventana_spl.c | 103 ++--
 include/configs/gw_ventana.h                |  67 +-
 8 files changed, 1102 insertions(+), 934 deletions(-)
 create mode 100644 board/gateworks/gw_ventana/common.c
 create mode 100644 board/gateworks/gw_ventana/common.h

-- 
1.9.1

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

end of thread, other threads:[~2015-05-21 17:07 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-09  1:28 [U-Boot] [PATCH 00/19] imx: ventana: misc updates Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 01/19] imx: ventana: set dtype env var to boot media Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 02/19] imx: ventana: display SPL boot device Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 03/19] imx: ventana: config: enable gpio command Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 04/19] imx: ventana: config: enable driver model Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 05/19] imx: ventana: register gpio's with gpio_request Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 06/19] imx: ventana: enable DM_SERIAL Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 07/19] imx: ventana: config: enable Thermal support Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 08/19] imx: ventana: config: use MMC SPL RAW support Tim Harvey
2015-05-09  1:36   ` Fabio Estevam
2015-05-12 23:23     ` Tim Harvey
2015-05-15 14:20       ` Stefano Babic
2015-05-09  1:28 ` [U-Boot] [PATCH 09/19] imx: ventana: (cosmetic) clean up size defines for improved readability Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 10/19] imx: ventana: fix pcie reset for GW522x Tim Harvey
2015-05-11  7:59   ` Stefano Babic
2015-05-11 19:12     ` Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 11/19] imx: ventana: default msata/pci mux to pci before PCI enumeration Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 12/19] imx: ventana: split out common functions between SPL and uboot Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 13/19] imx: ventana: move GSC boot watchdog disable function to gsc.c Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 14/19] imx: ventana: detect pmic using i2c probe instead of board model Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 15/19] imx: ventana: use common uart and i2c setup functions in SPL Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 16/19] imx: ventana: add gpio setup to SPL Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 17/19] imx: ventana: add pmic_setup " Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 18/19] imx: ventana: add GSC boot watchdog disable " Tim Harvey
2015-05-09  1:28 ` [U-Boot] [PATCH 19/19] imx: ventana: config: enable Falcon mode Tim Harvey
2015-05-18 23:25   ` Fabio Estevam
2015-05-19 13:26     ` Tim Harvey
2015-05-19 13:30       ` Fabio Estevam
2015-05-21 16:17       ` Stefano Babic
2015-05-21 16:46         ` Stefan Roese
2015-05-21 17:06           ` Stefano Babic
2015-05-21 17:07           ` Tim Harvey
2015-05-15 14:25 ` [U-Boot] [PATCH 00/19] imx: ventana: misc updates Stefano Babic
2015-05-15 16:30   ` Tim Harvey
2015-05-15 16:56     ` Stefano Babic
2015-05-15 18:57       ` Otavio Salvador
2015-05-21 16:56         ` Tom Rini
2015-05-21 17:02           ` Stefano Babic
2015-05-15 16:14 ` [U-Boot] [PATCH v2 08/19] imx: ventana: config: use MMC SPL RAW support Tim Harvey
2015-05-19 13:06   ` Stefano Babic
2015-05-15 16:17 ` [U-Boot] [PATCH v2 09/19] imx: ventana: (cosmetic) clean up size defines for improved readability Tim Harvey
2015-05-19 13:06   ` Stefano Babic
2015-05-15 16:18 ` [U-Boot] [PATCH v2 17/19] imx: ventana: add pmic_setup to SPL Tim Harvey
2015-05-19 13:07   ` Stefano Babic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox