public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Stefan Agner <stefan@agner.ch>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 0/9] mx7: add Colibri iMX7S/iMX7D support
Date: Mon, 18 Jul 2016 13:59:31 -0700	[thread overview]
Message-ID: <7d69fe8a0cf296eba508d14abb61b359@agner.ch> (raw)
In-Reply-To: <20160713072543.3576-1-stefan@agner.ch>

On 2016-07-13 00:25, Stefan Agner wrote:
> From: Stefan Agner <stefan.agner@toradex.com>
> 
> This patchset adds support for the Toradex i.MX 7Solo and 7Dual
> based computer on modules Colibri iMX7S/iMX7D.
> 
> It also brings several smaller i.MX 7 related fixes/cleanups.

Is there anything holding us back merging this patchset?

It touches several subsystems, ultimately the final patch adding the new
board is depending on all of them. What is the plan how to merge it?

--
Stefan

> 
> Changes since v1:
> - Dropped Ricoh RN5T567 PMIC support (for now)
> - Use CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG for runtime variables
> - Convert USB OTG Power Pin Polarity to Kconfig
> - Use gpio_request in lcd_setup
> 
> Stefan Agner (9):
>   dm: imx: serial: Support DTE mode when using driver model
>   usb: move CONFIG_USB_EHCI_MX7 to Kconfig
>   usb: ehci-mx6: configure power polarity in usb_power_config
>   usb: ehci-mx6: introduce config for high active power pin
>   mx7: set soc environment according to exact SoC type
>   mx7_common: Put display board info config into board file
>   mx7_common: use Kconfig for ARMv7 non-secure mode
>   imx_watchdog: add weak attribute to reset_cpu function
>   colibri_imx7: add Colibri iMX7S/iMX7D module support
> 
>  arch/arm/cpu/armv7/mx7/Kconfig            |   9 +
>  arch/arm/cpu/armv7/mx7/soc.c              |  14 +
>  board/toradex/colibri_imx7/Kconfig        |  12 +
>  board/toradex/colibri_imx7/MAINTAINERS    |   6 +
>  board/toradex/colibri_imx7/Makefile       |   6 +
>  board/toradex/colibri_imx7/colibri_imx7.c | 420 ++++++++++++++++++++++++++++++
>  board/toradex/colibri_imx7/imximage.cfg   | 150 +++++++++++
>  configs/colibri_imx7_defconfig            |  40 +++
>  configs/mx7dsabresd_defconfig             |   3 +
>  configs/warp7_defconfig                   |   4 +
>  drivers/serial/serial_mxc.c               |   9 +-
>  drivers/usb/host/Kconfig                  |  16 ++
>  drivers/usb/host/ehci-mx6.c               |  14 +-
>  drivers/watchdog/imx_watchdog.c           |   2 +-
>  include/configs/colibri_imx7.h            | 248 ++++++++++++++++++
>  include/configs/mx7_common.h              |  10 +-
>  include/configs/mx7dsabresd.h             |   4 +-
>  include/configs/warp7.h                   |   4 +-
>  include/dm/platform_data/serial_mxc.h     |   1 +
>  19 files changed, 953 insertions(+), 19 deletions(-)
>  create mode 100644 board/toradex/colibri_imx7/Kconfig
>  create mode 100644 board/toradex/colibri_imx7/MAINTAINERS
>  create mode 100644 board/toradex/colibri_imx7/Makefile
>  create mode 100644 board/toradex/colibri_imx7/colibri_imx7.c
>  create mode 100644 board/toradex/colibri_imx7/imximage.cfg
>  create mode 100644 configs/colibri_imx7_defconfig
>  create mode 100644 include/configs/colibri_imx7.h

  parent reply	other threads:[~2016-07-18 20:59 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-13  7:25 [U-Boot] [PATCH v2 0/9] mx7: add Colibri iMX7S/iMX7D support Stefan Agner
2016-07-13  7:25 ` [U-Boot] [PATCH v2 1/9] dm: imx: serial: Support DTE mode when using driver model Stefan Agner
2016-07-13  7:25 ` [U-Boot] [PATCH v2 2/9] usb: move CONFIG_USB_EHCI_MX7 to Kconfig Stefan Agner
2016-07-13  7:25 ` [U-Boot] [PATCH v2 3/9] usb: ehci-mx6: configure power polarity in usb_power_config Stefan Agner
2016-07-13  7:25 ` [U-Boot] [PATCH v2 4/9] usb: ehci-mx6: introduce config for high active power pin Stefan Agner
2016-07-13 12:11   ` Otavio Salvador
2016-07-13 16:03     ` Stefan Agner
2016-07-13  7:25 ` [U-Boot] [PATCH v2 5/9] mx7: set soc environment according to exact SoC type Stefan Agner
2016-07-18 22:19   ` Fabio Estevam
2016-07-18 22:21     ` Stefan Agner
2016-07-19  0:36       ` Tom Rini
2016-07-19  2:19         ` Stefan Agner
2016-07-19 12:33           ` Tom Rini
2016-07-19 13:59         ` Stefano Babic
2016-07-19 14:06           ` Fabio Estevam
2016-07-19 14:21             ` Stefano Babic
2016-07-13  7:25 ` [U-Boot] [PATCH v2 6/9] mx7_common: Put display board info config into board file Stefan Agner
2016-07-13  7:25 ` [U-Boot] [PATCH v2 7/9] mx7_common: use Kconfig for ARMv7 non-secure mode Stefan Agner
2016-07-13  7:25 ` [U-Boot] [PATCH v2 8/9] imx_watchdog: add weak attribute to reset_cpu function Stefan Agner
2016-07-13  7:25 ` [U-Boot] [PATCH v2 9/9] colibri_imx7: add Colibri iMX7S/iMX7D module support Stefan Agner
2016-07-19 14:14   ` Stefano Babic
2016-07-19 16:05     ` Stefan Agner
2016-07-19 16:26       ` Stefano Babic
2016-07-18 20:59 ` Stefan Agner [this message]
2016-07-19 14:18   ` [U-Boot] [PATCH v2 0/9] mx7: add Colibri iMX7S/iMX7D support stefano
2016-07-19 16:09     ` Stefan Agner
2016-07-19 16:58       ` Stefano Babic

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=7d69fe8a0cf296eba508d14abb61b359@agner.ch \
    --to=stefan@agner.ch \
    --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