From: Jagan Teki <jagan@openedev.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v5 00/33] ARM: i.MX6: SabreSD: Add dts support
Date: Thu, 4 May 2017 20:41:09 +0530 [thread overview]
Message-ID: <1493910702-6751-1-git-send-email-jagan@openedev.com> (raw)
From: Jagan Teki <jagan@amarulasolutions.com>
Compared to previous series, this series
- remove DCD addition on SPL for duallite, since it's not working
- Add board_fit_config_name_match for SPL to fetch board dts
- Now we have single SPL deconfig file for all SabreSD cpu models.
Changes for v5:
- rebase on master
- removed SPL support for i.MX6DL SabreSD
- Add board_fit_config_name_match for SPL to fetch board dts
- Add imx6qdl_sabresd_spl_defconfig for common SPL support
Changes for v4:
- rebase on master
- Rename imx6[dl|q]_sabresd_spl_defconfig to imx6[dl|q]_sabresd_spl_defconfig
- Update README
- Move CONFIG_FEC_MXC to configs/mx6[dl|q|qp]sabreauto_defconfigs
- Add dts support for non-spl based defconfigs
Changes for v3:
- rebase on master
- Added patch 'ARM: i.MX6: sabresd: Cleanup board code'
- Added patch 'ARM: i.MX6DL: sabresd: Move DCD reginit on SPL'
Changes for v2:
- rebase on master
- Added new-patches.
Jagan Teki (33):
mx6sabresd: README: Fix to add space on dd command
ARM: dts: i.MX6: Add imx6qdl-sabresd.dtsi
ARM: dts: imx6qdl-sabresd: Add imx6q-sabresd.dts
ARM: i.MX6: sabresd: Remove SPL_I2C_SUPPORT
ARM: i.MX6Q: sabresd: Add initial devicetree support
ARM: dts: imx6qdl-sabresd: Add imx6qp-sabresd.dts
ARM: i.MX6QP: sabresd: Add initial devicetree support
ARM: i.MX6: sabresd: Move CONFIG_SYS_I2C_MXC to defconfigs
ARM: dts: imx6qdl-sabresd: Add I2C node's
ARM: dts: imx6qdl-sabresd: Add PMIC pfuze100 node
ARM: i.MX6: sabresd: Enable DM_I2C and DM_PMIC
ARM: i.MX6: sabresd: defconfig move - CONFIG_USB_EHCI(_MX6)
ARM: dts: imx6qdl-sabresd: Add usb host node
ARM: dts: imx6qdl-sabresd: Add usb otg node
ARM: i.MX6: sabresd: Enable CONFIG_DM_REGULATOR
ARM: i.MX6: sabresd: Enable DM_USB
ARM: dts: imx6qdl-sabresd: Add FEC node
ARM: i.MX6: sabre: Move CONFIG_FEC_MXC to defconfigs
ARM: i.MX6: sabresd: Enable DM_ETH
ARM: i.MX6: sabresd: Add dm_gpio_* for backlight
ARM: i.MX6: sabresd: Add imx6_pcie_toggle_power
ARM: i.MX6: sabresd: Add imx6_pcie_toggle_reset
ARM: dts: imx6qdl-sabresd: Add imx6dl-sabresd.dts
ARM: i.MX6: %s/mx6[dl|q]sabresd_defconfig/imx6[dl|q]_sabresd_defconfig
ARM: i.MX6Q: sabresd: Add dts support for imx6q_sabresd
ARM: i.MX6DL: sabresd: Add dts support for imx6dl_sabresd
ARM: i.MX6: sabresd: Drop legacy non-fdt code
ARM: i.MX6: %s/mx6sabresd/imx6sabresd
ARM: i.MX6: %s/MX6SABRESD/IMX6SABRESD
ARM: i.MX6: sabresd: Move DM_* and OF_CONTROL to arch Kconfig
ARM: i.MX6: sabresd: Drop checkboard
ARM: i.MX6: sabresd: Cleanup board code
imx6sabresd: README: Update with dtb changes
arch/arm/cpu/armv7/mx6/Kconfig | 26 +-
arch/arm/dts/Makefile | 3 +
arch/arm/dts/imx6dl-sabresd.dts | 17 +
arch/arm/dts/imx6q-sabresd.dts | 21 +
arch/arm/dts/imx6qdl-sabresd.dtsi | 235 +++++++
arch/arm/dts/imx6qp-sabresd.dts | 85 +++
.../freescale/{mx6sabresd => imx6sabresd}/Kconfig | 6 +-
board/freescale/imx6sabresd/MAINTAINERS | 9 +
.../freescale/{mx6sabresd => imx6sabresd}/Makefile | 2 +-
board/freescale/{mx6sabresd => imx6sabresd}/README | 46 +-
.../mx6sabresd.c => imx6sabresd/imx6sabresd.c} | 733 +++++++++------------
board/freescale/imx6sabresd/mx6dlsabresd.cfg | 131 ++++
board/freescale/imx6sabresd/mx6q_4x_mt41j128.cfg | 169 +++++
board/freescale/mx6sabresd/MAINTAINERS | 8 -
...lsabresd_defconfig => imx6dl_sabresd_defconfig} | 14 +-
...6qsabresd_defconfig => imx6q_sabresd_defconfig} | 14 +-
...spl_defconfig => imx6qdl_sabresd_spl_defconfig} | 19 +-
configs/mx6dlsabreauto_defconfig | 2 +
configs/mx6qpsabreauto_defconfig | 2 +
configs/mx6qsabreauto_defconfig | 2 +
include/configs/{mx6sabresd.h => imx6sabresd.h} | 25 +-
include/configs/mx6sabre_common.h | 3 +-
22 files changed, 1072 insertions(+), 500 deletions(-)
create mode 100644 arch/arm/dts/imx6dl-sabresd.dts
create mode 100644 arch/arm/dts/imx6q-sabresd.dts
create mode 100644 arch/arm/dts/imx6qdl-sabresd.dtsi
create mode 100644 arch/arm/dts/imx6qp-sabresd.dts
rename board/freescale/{mx6sabresd => imx6sabresd}/Kconfig (56%)
create mode 100644 board/freescale/imx6sabresd/MAINTAINERS
rename board/freescale/{mx6sabresd => imx6sabresd}/Makefile (86%)
rename board/freescale/{mx6sabresd => imx6sabresd}/README (60%)
rename board/freescale/{mx6sabresd/mx6sabresd.c => imx6sabresd/imx6sabresd.c} (69%)
create mode 100644 board/freescale/imx6sabresd/mx6dlsabresd.cfg
create mode 100644 board/freescale/imx6sabresd/mx6q_4x_mt41j128.cfg
delete mode 100644 board/freescale/mx6sabresd/MAINTAINERS
rename configs/{mx6dlsabresd_defconfig => imx6dl_sabresd_defconfig} (71%)
rename configs/{mx6qsabresd_defconfig => imx6q_sabresd_defconfig} (71%)
rename configs/{mx6sabresd_spl_defconfig => imx6qdl_sabresd_spl_defconfig} (74%)
rename include/configs/{mx6sabresd.h => imx6sabresd.h} (71%)
--
1.9.1
next reply other threads:[~2017-05-04 15:11 UTC|newest]
Thread overview: 58+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-04 15:11 Jagan Teki [this message]
2017-05-04 15:11 ` [U-Boot] [PATCH v5 01/33] mx6sabresd: README: Fix to add space on dd command Jagan Teki
2017-05-11 17:15 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 02/33] ARM: dts: i.MX6: Add imx6qdl-sabresd.dtsi Jagan Teki
2017-05-11 17:14 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 03/33] ARM: dts: imx6qdl-sabresd: Add imx6q-sabresd.dts Jagan Teki
2017-05-11 17:16 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 04/33] ARM: i.MX6: sabresd: Remove SPL_I2C_SUPPORT Jagan Teki
2017-05-11 17:17 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 05/33] ARM: i.MX6Q: sabresd: Add initial devicetree support Jagan Teki
2017-05-11 17:18 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 06/33] ARM: dts: imx6qdl-sabresd: Add imx6qp-sabresd.dts Jagan Teki
2017-05-04 15:11 ` [U-Boot] [PATCH v5 07/33] ARM: i.MX6QP: sabresd: Add initial devicetree support Jagan Teki
2017-05-04 15:11 ` [U-Boot] [PATCH v5 08/33] ARM: i.MX6: sabresd: Move CONFIG_SYS_I2C_MXC to defconfigs Jagan Teki
2017-05-11 17:19 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 09/33] ARM: dts: imx6qdl-sabresd: Add I2C node's Jagan Teki
2017-05-04 15:11 ` [U-Boot] [PATCH v5 10/33] ARM: dts: imx6qdl-sabresd: Add PMIC pfuze100 node Jagan Teki
2017-05-04 15:11 ` [U-Boot] [PATCH v5 11/33] ARM: i.MX6: sabresd: Enable DM_I2C and DM_PMIC Jagan Teki
2017-05-11 17:20 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 12/33] ARM: i.MX6: sabresd: defconfig move - CONFIG_USB_EHCI(_MX6) Jagan Teki
2017-05-11 17:21 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 13/33] ARM: dts: imx6qdl-sabresd: Add usb host node Jagan Teki
2017-05-04 15:11 ` [U-Boot] [PATCH v5 14/33] ARM: dts: imx6qdl-sabresd: Add usb otg node Jagan Teki
2017-05-04 15:11 ` [U-Boot] [PATCH v5 15/33] ARM: i.MX6: sabresd: Enable CONFIG_DM_REGULATOR Jagan Teki
2017-05-04 15:11 ` [U-Boot] [PATCH v5 16/33] ARM: i.MX6: sabresd: Enable DM_USB Jagan Teki
2017-05-11 17:21 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 17/33] ARM: dts: imx6qdl-sabresd: Add FEC node Jagan Teki
2017-05-04 15:11 ` [U-Boot] [PATCH v5 18/33] ARM: i.MX6: sabre: Move CONFIG_FEC_MXC to defconfigs Jagan Teki
2017-05-11 17:22 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 19/33] ARM: i.MX6: sabresd: Enable DM_ETH Jagan Teki
2017-05-11 17:23 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 20/33] ARM: i.MX6: sabresd: Add dm_gpio_* for backlight Jagan Teki
2017-05-11 17:23 ` Fabio Estevam
2017-05-18 8:30 ` Jagan Teki
2017-05-18 10:38 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 21/33] ARM: i.MX6: sabresd: Add imx6_pcie_toggle_power Jagan Teki
2017-05-11 17:25 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 22/33] ARM: i.MX6: sabresd: Add imx6_pcie_toggle_reset Jagan Teki
2017-05-04 15:11 ` [U-Boot] [PATCH v5 23/33] ARM: dts: imx6qdl-sabresd: Add imx6dl-sabresd.dts Jagan Teki
2017-05-04 15:11 ` [U-Boot] [PATCH v5 24/33] ARM: i.MX6: %s/mx6[dl|q]sabresd_defconfig/imx6[dl|q]_sabresd_defconfig Jagan Teki
2017-05-11 17:26 ` Fabio Estevam
2017-05-18 4:48 ` Jagan Teki
2017-05-04 15:11 ` [U-Boot] [PATCH v5 25/33] ARM: i.MX6Q: sabresd: Add dts support for imx6q_sabresd Jagan Teki
2017-05-04 15:11 ` [U-Boot] [PATCH v5 26/33] ARM: i.MX6DL: sabresd: Add dts support for imx6dl_sabresd Jagan Teki
2017-05-04 15:11 ` [U-Boot] [PATCH v5 27/33] ARM: i.MX6: sabresd: Drop legacy non-fdt code Jagan Teki
2017-05-11 17:28 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 28/33] ARM: i.MX6: %s/mx6sabresd/imx6sabresd Jagan Teki
2017-05-11 17:30 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 29/33] ARM: i.MX6: %s/MX6SABRESD/IMX6SABRESD Jagan Teki
2017-05-04 15:11 ` [U-Boot] [PATCH v5 30/33] ARM: i.MX6: sabresd: Move DM_* and OF_CONTROL to arch Kconfig Jagan Teki
2017-05-04 15:11 ` [U-Boot] [PATCH v5 31/33] ARM: i.MX6: sabresd: Drop checkboard Jagan Teki
2017-05-11 17:31 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 32/33] ARM: i.MX6: sabresd: Cleanup board code Jagan Teki
2017-05-11 17:32 ` Fabio Estevam
2017-05-04 15:11 ` [U-Boot] [PATCH v5 33/33] imx6sabresd: README: Update with dtb changes Jagan Teki
2017-05-04 22:10 ` [U-Boot] [PATCH v5 00/33] ARM: i.MX6: SabreSD: Add dts support Fabio Estevam
2017-05-11 17:12 ` Fabio Estevam
2017-05-12 23:09 ` Fabio Estevam
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=1493910702-6751-1-git-send-email-jagan@openedev.com \
--to=jagan@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox