All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jagan Teki <jteki@openedev.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v8 00/23] imx6: Add Engicam i.CoreM6 QDL support
Date: Mon, 24 Oct 2016 17:27:19 +0530	[thread overview]
Message-ID: <1477310262-17841-1-git-send-email-jteki@openedev.com> (raw)

From: Jagan Teki <jagan@amarulasolutions.com>

This series supports Engicam i.CoreM6 QDL modules on top of u-boot-imx/master
and test on the respective starter kits as well.

Tested both MMC and NAND boot.

Changes for v8:
	- Rebase on u-boot-imx/master
	- Add "configs: imx6qdl: Enable CONFIG_BLK if DM_MMC" patch
	- Add "configs: imx6qdl: Enable CONFIG_DM_MMC_OPS if DM_MMC" patch

Changes for v7:
        - Add patch to CONFIG_DEFAULT_FDT_FILE to defconfigs
        - Rebase on u-boot-imx/master

Changes for v6:
        - Rebase to u-boot-imx/master
        - Move few SPL configs to defconfigs

Changes for v5:
        - Add NAND support

Changes for v4:
        - Add 'net: Kconfig: Add FEC_MXC entry' patch
        - Updated ENV configs along with comments
        - Restructured configs for more readability
        - Add CONFIG_ENV_OVERWRITE
        - Rename icorem6qdl_defconfig with icorem6qdl_mmc_defconfig

Changes for v3:
        - Remove "v2 01/17 imx: iomux-v3: Fix build error with snvs base" patch
        - Remove 'default n' on Kconfig DEFAULT_FDT_FILE patch
        - Add minimal devicetree support for Engicam i.CoreM6 QDL
        - Add is_mx6dl()
        - Add is_mx6solo()
        - Use is_mx6dq()
        - Add last commit sha1 and header in pull devicetree files from Linux

Changes for v2:
        - Make static to local iomux structure in board file
        - Corrected rowaddr in mx6_ddr3_cfg
        - Used imx_ddr_size
        - Add FEC support and tested the same
        - Add DM_GPIO, DM_MMC support
        - Add pinctrl support
        - Add devicetree support

Jagan Teki (23):
  serial: Kconfig: Add MXC_UART entry
  thermal: Kconfig: Add IMX_THERMAL entry
  config: Move CONFIG_DEFAULT_FDT_FILE to defconfigs
  arm: imx: Add Engicam i.CoreM6 QDL Starter Kit initial support
  net: Kconfig: Add FEC_MXC entry
  imx6: icorem6: Add ENET support
  imx: s/docs\/README.imximage/doc\/README.imximage/g
  arm: dts: Add devicetree for i.MX6DL
  arm: dts: Add devicetree for i.MX6DQL
  arm: dts: imx6dl: Add pinctrl defines
  dt-bindings: clock: imx6qdl: Add clock defines
  arm: imx6q: Add devicetree support for Engicam i.CoreM6 DualLite/Solo
  imx6q: icorem6: Enable pinctrl driver
  configs: imx6qdl: Enable CONFIG_BLK if DM_MMC
  configs: imx6qdl: Enable CONFIG_DM_MMC_OPS if DM_MMC
  engicam: icorem6: Add DM_GPIO, DM_MMC support
  arm: dts: Add devicetree for i.MX6Q
  arm: dts: imx6q: Add pinctrl defines
  arm: imx6q: Add devicetree support for Engicam i.CoreM6 Quad/Dual
  mtd: nand: Kconfig: Add NAND_MXS entry
  imx6: icorem6: Add NAND support
  imx6: icorem6: Enable MTD device support
  imx6: icorem6: Add default mtd nand partition table

 arch/arm/cpu/armv7/mx6/Kconfig              |   11 +
 arch/arm/dts/Makefile                       |    4 +-
 arch/arm/dts/imx6dl-icore.dts               |   59 ++
 arch/arm/dts/imx6dl-pinfunc.h               | 1091 +++++++++++++++++++++++
 arch/arm/dts/imx6dl.dtsi                    |  133 +++
 arch/arm/dts/imx6q-icore.dts                |   59 ++
 arch/arm/dts/imx6q-pinfunc.h                | 1047 ++++++++++++++++++++++
 arch/arm/dts/imx6q.dtsi                     |  300 +++++++
 arch/arm/dts/imx6qdl-icore.dtsi             |  196 ++++
 arch/arm/dts/imx6qdl.dtsi                   | 1281 +++++++++++++++++++++++++++
 arch/arm/include/asm/imx-common/sys_proto.h |    2 +
 board/barco/titanium/imximage.cfg           |    2 +-
 board/ccv/xpress/imximage.cfg               |    2 +-
 board/denx/m53evk/imximage.cfg              |    2 +-
 board/engicam/icorem6/Kconfig               |   12 +
 board/engicam/icorem6/MAINTAINERS           |    6 +
 board/engicam/icorem6/Makefile              |    6 +
 board/engicam/icorem6/README                |   38 +
 board/engicam/icorem6/icorem6.c             |  537 +++++++++++
 board/freescale/mx6sabresd/mx6dlsabresd.cfg |    2 +-
 board/freescale/mx6slevk/imximage.cfg       |    2 +-
 board/freescale/mx6ullevk/imximage.cfg      |    2 +-
 board/freescale/mx7dsabresd/imximage.cfg    |    2 +-
 board/freescale/s32v234evb/s32v234evb.cfg   |    2 +-
 board/freescale/vf610twr/imximage.cfg       |    2 +-
 board/phytec/pcm052/imximage.cfg            |    2 +-
 board/technexion/pico-imx6ul/imximage.cfg   |    2 +-
 board/toradex/colibri_imx7/imximage.cfg     |    2 +-
 board/toradex/colibri_vf/imximage.cfg       |    2 +-
 board/warp/imximage.cfg                     |    2 +-
 board/warp7/imximage.cfg                    |    2 +-
 common/Kconfig                              |    5 +
 configs/dms-ba16-1g_defconfig               |    1 +
 configs/dms-ba16_defconfig                  |    1 +
 configs/ge_b450v3_defconfig                 |    1 +
 configs/ge_b650v3_defconfig                 |    1 +
 configs/ge_b850v3_defconfig                 |    1 +
 configs/imx6qdl_icore_mmc_defconfig         |   44 +
 configs/imx6qdl_icore_nand_defconfig        |   37 +
 configs/mx25pdk_defconfig                   |    1 +
 configs/mx53ard_defconfig                   |    1 +
 configs/pico-imx6ul_defconfig               |    1 +
 configs/tqma6q_mba6_mmc_defconfig           |    1 +
 configs/tqma6q_mba6_spi_defconfig           |    1 +
 configs/tqma6s_mba6_mmc_defconfig           |    1 +
 configs/tqma6s_mba6_spi_defconfig           |    1 +
 configs/tqma6s_wru4_mmc_defconfig           |    1 +
 configs/zc5202_defconfig                    |    1 +
 configs/zc5601_defconfig                    |    1 +
 drivers/mtd/nand/Kconfig                    |    7 +
 drivers/net/Kconfig                         |    7 +
 drivers/serial/Kconfig                      |    7 +
 drivers/thermal/Kconfig                     |   13 +
 include/configs/advantech_dms-ba16.h        |    1 -
 include/configs/ge_bx50v3.h                 |    4 -
 include/configs/imx6qdl_icore.h             |  167 ++++
 include/configs/mx25pdk.h                   |    2 -
 include/configs/mx53ard.h                   |    2 -
 include/configs/pico-imx6ul.h               |    2 -
 include/configs/tqma6_mba6.h                |    6 -
 include/configs/tqma6_wru4.h                |    2 -
 include/configs/zc5202.h                    |    2 -
 include/configs/zc5601.h                    |    2 -
 include/dt-bindings/clock/imx6qdl-clock.h   |  274 ++++++
 64 files changed, 5372 insertions(+), 39 deletions(-)
 create mode 100644 arch/arm/dts/imx6dl-icore.dts
 create mode 100644 arch/arm/dts/imx6dl-pinfunc.h
 create mode 100644 arch/arm/dts/imx6dl.dtsi
 create mode 100644 arch/arm/dts/imx6q-icore.dts
 create mode 100644 arch/arm/dts/imx6q-pinfunc.h
 create mode 100644 arch/arm/dts/imx6q.dtsi
 create mode 100644 arch/arm/dts/imx6qdl-icore.dtsi
 create mode 100644 arch/arm/dts/imx6qdl.dtsi
 create mode 100644 board/engicam/icorem6/Kconfig
 create mode 100644 board/engicam/icorem6/MAINTAINERS
 create mode 100644 board/engicam/icorem6/Makefile
 create mode 100644 board/engicam/icorem6/README
 create mode 100644 board/engicam/icorem6/icorem6.c
 create mode 100644 configs/imx6qdl_icore_mmc_defconfig
 create mode 100644 configs/imx6qdl_icore_nand_defconfig
 create mode 100644 include/configs/imx6qdl_icore.h
 create mode 100644 include/dt-bindings/clock/imx6qdl-clock.h

-- 
2.7.4

             reply	other threads:[~2016-10-24 11:57 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-24 11:57 Jagan Teki [this message]
2016-10-24 11:57 ` [U-Boot] [PATCH v8 01/23] serial: Kconfig: Add MXC_UART entry Jagan Teki
2016-10-26 17:14   ` Markus Niebel
2016-10-26 17:44     ` Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 02/23] thermal: Kconfig: Add IMX_THERMAL entry Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 03/23] config: Move CONFIG_DEFAULT_FDT_FILE to defconfigs Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 04/23] arm: imx: Add Engicam i.CoreM6 QDL Starter Kit initial support Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 05/23] net: Kconfig: Add FEC_MXC entry Jagan Teki
2016-10-26 17:16   ` Markus Niebel
2016-10-26 18:04     ` Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 06/23] imx6: icorem6: Add ENET support Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 07/23] imx: s/docs\/README.imximage/doc\/README.imximage/g Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 08/23] arm: dts: Add devicetree for i.MX6DL Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 09/23] arm: dts: Add devicetree for i.MX6DQL Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 10/23] arm: dts: imx6dl: Add pinctrl defines Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 11/23] dt-bindings: clock: imx6qdl: Add clock defines Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 12/23] arm: imx6q: Add devicetree support for Engicam i.CoreM6 DualLite/Solo Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 13/23] imx6q: icorem6: Enable pinctrl driver Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 14/23] configs: imx6qdl: Enable CONFIG_BLK if DM_MMC Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 15/23] configs: imx6qdl: Enable CONFIG_DM_MMC_OPS " Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 16/23] engicam: icorem6: Add DM_GPIO, DM_MMC support Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 17/23] arm: dts: Add devicetree for i.MX6Q Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 18/23] arm: dts: imx6q: Add pinctrl defines Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 19/23] arm: imx6q: Add devicetree support for Engicam i.CoreM6 Quad/Dual Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 20/23] mtd: nand: Kconfig: Add NAND_MXS entry Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 21/23] imx6: icorem6: Add NAND support Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 22/23] imx6: icorem6: Enable MTD device support Jagan Teki
2016-10-24 11:57 ` [U-Boot] [PATCH v8 23/23] imx6: icorem6: Add default mtd nand partition table Jagan Teki

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=1477310262-17841-1-git-send-email-jteki@openedev.com \
    --to=jteki@openedev.com \
    --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 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.