All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 0/9] mx7: add Colibri iMX7S/iMX7D support
@ 2016-07-13  7:25 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
                   ` (9 more replies)
  0 siblings, 10 replies; 27+ messages in thread
From: Stefan Agner @ 2016-07-13  7:25 UTC (permalink / raw)
  To: u-boot

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.

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

-- 
2.9.0

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

end of thread, other threads:[~2016-07-19 16:58 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
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 ` [U-Boot] [PATCH v2 0/9] mx7: add Colibri iMX7S/iMX7D support Stefan Agner
2016-07-19 14:18   ` stefano
2016-07-19 16:09     ` Stefan Agner
2016-07-19 16:58       ` Stefano Babic

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.