All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/10] i.MX6: move duplicated options to mx6_common to standardise mx6 config
@ 2015-05-11 11:23 Peter Robinson
  2015-05-11 11:23 ` [U-Boot] [PATCH 01/10] novena: standardise mx6_common.h include Peter Robinson
                   ` (13 more replies)
  0 siblings, 14 replies; 37+ messages in thread
From: Peter Robinson @ 2015-05-11 11:23 UTC (permalink / raw)
  To: u-boot

There's a lot of common options in the i.MX6 boards that are repeated across a 
lot of the devices. There's a mx6_common.h which is little used but makes sense
to be the central location for all the options we want across all mx6 boards to
ensure a consistent set of features. This is a first pass at moving those options
and unifying the common options to a standard default.

Peter Robinson (10):
      novena: standardise mx6_common.h include
      imx6: move all standard includes to mx6_common.h
      imx6: move generic imx6 options to mx6_common.h
      imx6: move standard ATAG configs to mx6_common.h
      imx6: move MXC_GPIO define to mx6_common.h
      imx6: centralise common boot options in mx6_common.h
      imx6: move generic miscellaneous and overwrite options
      imx6: standardise filesystem and boot options to
      imx6: generic MMC config options to mx6_common
      mx6: standardise CONFIG_CMD_CACHE

 include/configs/aristainetos.h      | 54 +-----------------------------------------------------
 include/configs/cgtqmx6eval.h       | 60 +-----------------------------------------------------------
 include/configs/cm_fx6.h            | 31 -------------------------------
 include/configs/embestmx6boards.h   | 47 +----------------------------------------------
 include/configs/gw_ventana.h        | 56 +-------------------------------------------------------
 include/configs/hummingboard.h      | 59 +----------------------------------------------------------
 include/configs/mx6_common.h        | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 include/configs/mx6cuboxi.h         | 52 ----------------------------------------------------
 include/configs/mx6qarm2.h          | 57 +--------------------------------------------------------
 include/configs/mx6sabre_common.h   | 62 +-------------------------------------------------------------
 include/configs/mx6sabresd.h        |  3 ---
 include/configs/mx6slevk.h          | 60 +-----------------------------------------------------------
 include/configs/mx6sxsabresd.h      | 59 -----------------------------------------------------------
 include/configs/nitrogen6x.h        | 67 +------------------------------------------------------------------
 include/configs/novena.h            | 47 +----------------------------------------------
 include/configs/ot1200.h            | 68 +-------------------------------------------------------------------
 include/configs/platinum.h          | 59 -----------------------------------------------------------
 include/configs/platinum_picon.h    |  2 --
 include/configs/platinum_titanium.h |  2 --
 include/configs/secomx6quq7.h       | 59 ++---------------------------------------------------------
 include/configs/tbs2910.h           | 49 -------------------------------------------------
 include/configs/titanium.h          | 58 ----------------------------------------------------------
 include/configs/tqma6.h             | 57 ---------------------------------------------------------
 include/configs/udoo.h              | 61 +------------------------------------------------------------
 include/configs/wandboard.h         | 61 +------------------------------------------------------------
 include/configs/warp.h              | 58 +---------------------------------------------------------
 26 files changed, 81 insertions(+), 1232 deletions(-)

^ permalink raw reply	[flat|nested] 37+ messages in thread
* [U-Boot] [PATCH 0/10 v2] i.MX6: move duplicated options to mx6_common to standardise mx6 config
@ 2015-05-11 16:22 Peter Robinson
  2015-05-11 16:22 ` [U-Boot] [PATCH 05/10] imx6: move MXC_GPIO define to mx6_common.h Peter Robinson
  0 siblings, 1 reply; 37+ messages in thread
From: Peter Robinson @ 2015-05-11 16:22 UTC (permalink / raw)
  To: u-boot

There's a lot of common options in the i.MX6 boards that are repeated across a 
lot of the devices. There's a mx6_common.h which is little used but makes sense
to be the central location for all the options we want across all mx6 boards to
ensure a consistent set of features. This is a first pass at moving those options
and unifying the common options to a standard default.

Changes since v1:
* Move CONFIG_SYS_NO_FLASH changes from patch 7 to patch 2 and reorder includes
so we don't need to undef CONFIG_CMD_FLASH / CONFIG_CMD_IMLS
* Add CONFIG_CMD_GPIO to mx6_common.f (patch 5)
* Use the default for all CONFIG_SYS_PROMPT_HUSH_PS2 (patch 7)
* Drop LZO change (patch 8) 

I think I got all the review points :)

Peter Robinson (10):
      novena: standardise mx6_common.h include
      imx6: move all standard includes to mx6_common.h
      imx6: move generic imx6 options to mx6_common.h
      imx6: move standard ATAG configs to mx6_common.h
      imx6: move MXC_GPIO define to mx6_common.h
      imx6: centralise common boot options in mx6_common.h
      imx6: move generic miscellaneous and overwrite options
      imx6: standardise filesystem and boot options
      imx6: generic MMC config options to mx6_common
      mx6: standardise CONFIG_CMD_CACHE

Reviewed-by: Eric Nelson <eric.nelson@boundarydevices.com>

^ permalink raw reply	[flat|nested] 37+ messages in thread
* [U-Boot] [PATCH 0/10 v3] i.MX6: move duplicated options to mx6_common to standardise mx6 config
@ 2015-05-22 16:30 Peter Robinson
  2015-05-22 16:30 ` [U-Boot] [PATCH 05/10] imx6: move MXC_GPIO define to mx6_common.h Peter Robinson
  0 siblings, 1 reply; 37+ messages in thread
From: Peter Robinson @ 2015-05-22 16:30 UTC (permalink / raw)
  To: u-boot

There's a lot of common options in the i.MX6 boards that are repeated across a
lot of the devices. There's a mx6_common.h which is little used but makes sense
to be the central location for all the options we want across all mx6 boards to
ensure a consistent set of features. This is a first pass at moving those options
and unifying the common options to a standard default.

Changes since v2:
* Rebase on imx-uboot master
* Check that CONFIG_MX6 hasn't already been defined
* Check that CONFIG_SYS_TEXT_BASE/CONFIG_BOOTDELAY haven't already been defined
* Don't accidentily drop CONFIG_EFI_PARTITION from tbs2910.h

Changes since v1:
* Move CONFIG_SYS_NO_FLASH changes from patch 7 to patch 2 and reorder includes
so we don't need to undef CONFIG_CMD_FLASH / CONFIG_CMD_IMLS
* Add CONFIG_CMD_GPIO to mx6_common.f (patch 5)
* Use the default for all CONFIG_SYS_PROMPT_HUSH_PS2 (patch 7)
* Drop LZO change (patch 8)

Peter Robinson (10):
      novena: standardise mx6_common.h include
      imx6: move all standard includes to mx6_common.h
      imx6: move generic imx6 options to mx6_common.h
      imx6: move standard ATAG configs to mx6_common.h
      imx6: move MXC_GPIO define to mx6_common.h
      imx6: centralise common boot options in mx6_common.h
      imx6: move generic miscellaneous and overwrite options
      imx6: standardise filesystem and boot options
      imx6: generic MMC config options to mx6_common
      mx6: standardise CONFIG_CMD_CACHE

Reviewed-by: Eric Nelson <eric.nelson@boundarydevices.com>

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

end of thread, other threads:[~2015-05-22 16:30 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-11 11:23 [U-Boot] [PATCH 0/10] i.MX6: move duplicated options to mx6_common to standardise mx6 config Peter Robinson
2015-05-11 11:23 ` [U-Boot] [PATCH 01/10] novena: standardise mx6_common.h include Peter Robinson
2015-05-11 12:38   ` Tom Rini
2015-05-11 11:23 ` [U-Boot] [PATCH 02/10] imx6: move all standard includes to mx6_common.h Peter Robinson
2015-05-11 12:32   ` Tom Rini
2015-05-11 13:13     ` Peter Robinson
2015-05-11 13:20       ` Tom Rini
2015-05-11 13:25         ` Peter Robinson
2015-05-11 11:23 ` [U-Boot] [PATCH 03/10] imx6: move generic imx6 options " Peter Robinson
2015-05-11 12:43   ` Tom Rini
2015-05-12  6:29   ` Markus Niebel
2015-05-11 11:23 ` [U-Boot] [PATCH 04/10] imx6: move standard ATAG configs " Peter Robinson
2015-05-11 12:43   ` Tom Rini
2015-05-11 11:23 ` [U-Boot] [PATCH 05/10] imx6: move MXC_GPIO define " Peter Robinson
2015-05-11 12:43   ` Tom Rini
2015-05-11 12:51     ` Peter Robinson
2015-05-11 13:21       ` Tom Rini
2015-05-11 13:44       ` Stefano Babic
2015-05-11 16:14         ` Peter Robinson
2015-05-11 11:23 ` [U-Boot] [PATCH 06/10] imx6: centralise common boot options in mx6_common.h Peter Robinson
2015-05-11 11:23 ` [U-Boot] [PATCH 07/10] imx6: move generic miscellaneous and overwrite options Peter Robinson
2015-05-11 12:33   ` Tom Rini
2015-05-11 13:28     ` Peter Robinson
2015-05-11 11:23 ` [U-Boot] [PATCH 08/10] imx6: standardise filesystem and boot options to Peter Robinson
2015-05-11 12:25   ` Tom Rini
2015-05-11 12:52     ` Peter Robinson
2015-05-11 13:20       ` Tom Rini
2015-05-11 11:23 ` [U-Boot] [PATCH 09/10] imx6: generic MMC config options to mx6_common Peter Robinson
2015-05-11 12:43   ` Tom Rini
2015-05-11 11:23 ` [U-Boot] [PATCH 10/10] mx6: standardise CONFIG_CMD_CACHE Peter Robinson
2015-05-11 12:43   ` Tom Rini
2015-05-11 12:13 ` [U-Boot] [PATCH 0/10] i.MX6: move duplicated options to mx6_common to standardise mx6 config Fabio Estevam
2015-05-11 12:18 ` Stefano Babic
2015-05-11 12:43 ` Tom Rini
2015-05-11 14:40 ` Eric Nelson
2015-05-11 16:22 [U-Boot] [PATCH 0/10 v2] " Peter Robinson
2015-05-11 16:22 ` [U-Boot] [PATCH 05/10] imx6: move MXC_GPIO define to mx6_common.h Peter Robinson
2015-05-22 16:30 [U-Boot] [PATCH 0/10 v3] i.MX6: move duplicated options to mx6_common to standardise mx6 config Peter Robinson
2015-05-22 16:30 ` [U-Boot] [PATCH 05/10] imx6: move MXC_GPIO define to mx6_common.h Peter Robinson

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.