From: Stefano Babic <sbabic@denx.de>
To: Jesse Taube <mr.bossman075@gmail.com>, u-boot@lists.denx.de
Cc: sbabic@denx.de, festevam@gmail.com, festevam@denx.de,
uboot-imx@nxp.com, giulio.benetti@benettiengineering.com,
lukma@denx.de, seanga2@gmail.com, sjg@chromium.org,
jagan@amarulasolutions.com, kever.yang@rock-chips.com,
andre.przywara@arm.com, pbrobinson@gmail.com,
tharvey@gateworks.com, paul.liu@linaro.org,
christianshewitt@gmail.com, samuel@sholland.org
Subject: Re: [PATCH v2 0/8] Add support for the i.MXRT1170
Date: Mon, 25 Jul 2022 15:34:50 +0200 [thread overview]
Message-ID: <602c112d-e23b-70df-c262-a963fb866116@denx.de> (raw)
In-Reply-To: <20220617164237.1350241-1-Mr.Bossman075@gmail.com>
Hi Jesse,
I get errors as soon as I merge the series:
https://source.denx.de/u-boot/custodians/u-boot-imx/-/jobs/471284
In fact, you add new CONFIG_ but not via Kbuild:
CONFIG_SPL_STACK
CONFIG_SYS_FSL_ERRATUM_ESDHC135
Check this job, too:
https://source.denx.de/u-boot/custodians/u-boot-imx/-/jobs/471287
Best regards,
Stefano
On 17.06.22 18:42, Jesse Taube wrote:
> This patchset contains:
> - i.MXRT1170 clock driver adaption
> - i.MXRT1170-evk basic support
>
> Jesse Taube (8):
> imx: imxrt1170-evk: Add support for the NXP i.MXRT1170-EVK
> ARM: dts: imxrt11170-pinfunc: Add pinctrl binding header
> dt-bindings: imx: Add clock binding for i.MXRT1170
> clk: imx: Add i.MXRT11xx pllv3 variant
> clk: imx: Add initial support for i.MXRT1170 clock driver
> RAM: Add changes for i.MXRT11xx series
> ARM: dts: imx: add i.MXRT1170-EVK support
> ARM: imxrt1170_defconfig: Add i.MXRT1170 defconfig
>
> arch/arm/dts/Makefile | 3 +-
> arch/arm/dts/imxrt1170-evk-u-boot.dtsi | 94 +
> arch/arm/dts/imxrt1170-evk.dts | 250 +++
> arch/arm/dts/imxrt1170-pinfunc.h | 1561 +++++++++++++++++
> arch/arm/dts/imxrt1170.dtsi | 257 +++
> arch/arm/include/asm/arch-imx/cpu.h | 1 +
> arch/arm/mach-imx/imxrt/Kconfig | 9 +
> arch/arm/mach-imx/imxrt/soc.c | 2 +
> board/freescale/imxrt1170-evk/Kconfig | 22 +
> board/freescale/imxrt1170-evk/MAINTAINERS | 7 +
> board/freescale/imxrt1170-evk/Makefile | 6 +
> board/freescale/imxrt1170-evk/imximage.cfg | 32 +
> board/freescale/imxrt1170-evk/imxrt1170-evk.c | 80 +
> configs/imxrt1170-evk_defconfig | 67 +
> drivers/clk/imx/Kconfig | 16 +
> drivers/clk/imx/Makefile | 1 +
> drivers/clk/imx/clk-imxrt1170.c | 221 +++
> drivers/clk/imx/clk-pllv3.c | 56 +-
> drivers/clk/imx/clk.h | 1 +
> drivers/ram/imxrt_sdram.c | 9 +
> include/configs/imxrt1170-evk.h | 37 +
> include/dt-bindings/clock/imxrt1170-clock.h | 48 +
> include/dt-bindings/memory/imxrt-sdram.h | 1 +
> 23 files changed, 2777 insertions(+), 4 deletions(-)
> create mode 100644 arch/arm/dts/imxrt1170-evk-u-boot.dtsi
> create mode 100644 arch/arm/dts/imxrt1170-evk.dts
> create mode 100644 arch/arm/dts/imxrt1170-pinfunc.h
> create mode 100644 arch/arm/dts/imxrt1170.dtsi
> create mode 100644 board/freescale/imxrt1170-evk/Kconfig
> create mode 100644 board/freescale/imxrt1170-evk/MAINTAINERS
> create mode 100644 board/freescale/imxrt1170-evk/Makefile
> create mode 100644 board/freescale/imxrt1170-evk/imximage.cfg
> create mode 100644 board/freescale/imxrt1170-evk/imxrt1170-evk.c
> create mode 100644 configs/imxrt1170-evk_defconfig
> create mode 100644 drivers/clk/imx/clk-imxrt1170.c
> create mode 100644 include/configs/imxrt1170-evk.h
> create mode 100644 include/dt-bindings/clock/imxrt1170-clock.h
>
--
=====================================================================
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, 82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de
=====================================================================
next prev parent reply other threads:[~2022-07-25 13:34 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-17 16:42 [PATCH v2 0/8] Add support for the i.MXRT1170 Jesse Taube
2022-06-17 16:42 ` [PATCH v2 1/8] imx: imxrt1170-evk: Add support for the NXP i.MXRT1170-EVK Jesse Taube
2022-06-17 16:42 ` [PATCH v2 2/8] ARM: dts: imxrt11170-pinfunc: Add pinctrl binding header Jesse Taube
2022-06-17 16:42 ` [PATCH v2 3/8] dt-bindings: imx: Add clock binding for i.MXRT1170 Jesse Taube
2022-06-17 16:42 ` [PATCH v2 4/8] clk: imx: Add i.MXRT11xx pllv3 variant Jesse Taube
2022-06-17 16:42 ` [PATCH v2 5/8] clk: imx: Add initial support for i.MXRT1170 clock driver Jesse Taube
2022-06-17 16:42 ` [PATCH v2 6/8] RAM: Add changes for i.MXRT11xx series Jesse Taube
2022-06-17 16:42 ` [PATCH v2 7/8] ARM: dts: imx: add i.MXRT1170-EVK support Jesse Taube
2022-06-17 16:42 ` [PATCH v2 8/8] ARM: imxrt1170_defconfig: Add i.MXRT1170 defconfig Jesse Taube
2022-06-18 0:43 ` Fabio Estevam
2022-06-18 14:32 ` Giulio Benetti
2022-06-21 14:52 ` Fabio Estevam
2022-07-25 13:34 ` Stefano Babic [this message]
2022-07-26 2:53 ` [PATCH v2 0/8] Add support for the i.MXRT1170 Jesse Taube
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=602c112d-e23b-70df-c262-a963fb866116@denx.de \
--to=sbabic@denx.de \
--cc=andre.przywara@arm.com \
--cc=christianshewitt@gmail.com \
--cc=festevam@denx.de \
--cc=festevam@gmail.com \
--cc=giulio.benetti@benettiengineering.com \
--cc=jagan@amarulasolutions.com \
--cc=kever.yang@rock-chips.com \
--cc=lukma@denx.de \
--cc=mr.bossman075@gmail.com \
--cc=paul.liu@linaro.org \
--cc=pbrobinson@gmail.com \
--cc=samuel@sholland.org \
--cc=seanga2@gmail.com \
--cc=sjg@chromium.org \
--cc=tharvey@gateworks.com \
--cc=u-boot@lists.denx.de \
--cc=uboot-imx@nxp.com \
/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