public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Jesse Taube <mr.bossman075@gmail.com>
To: Stefano Babic <sbabic@denx.de>, u-boot@lists.denx.de
Cc: 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 22:53:03 -0400	[thread overview]
Message-ID: <a5ae9cbf-c136-b12a-833b-e195fbca469f@gmail.com> (raw)
In-Reply-To: <602c112d-e23b-70df-c262-a963fb866116@denx.de>



On 7/25/22 09:34, Stefano Babic wrote:
> 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_ESDHC13

I'm sorry I need to rebase.

Thanks,
Jesse

> 
> 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
>>
> 
> 

      reply	other threads:[~2022-07-26  2:53 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 ` [PATCH v2 0/8] Add support for the i.MXRT1170 Stefano Babic
2022-07-26  2:53   ` Jesse Taube [this message]

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=a5ae9cbf-c136-b12a-833b-e195fbca469f@gmail.com \
    --to=mr.bossman075@gmail.com \
    --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=paul.liu@linaro.org \
    --cc=pbrobinson@gmail.com \
    --cc=samuel@sholland.org \
    --cc=sbabic@denx.de \
    --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