* [PATCH 0/2] enable DM_SERIAL on imx8mn-evk and imx8mn-ddr4-evk
@ 2022-02-25 13:20 Heiko Thiery
2022-02-25 13:20 ` [PATCH 1/2] ARM: imx: imx8mn-evk: enable DM_SERIAL Heiko Thiery
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Heiko Thiery @ 2022-02-25 13:20 UTC (permalink / raw)
To: u-boot
Cc: Stefano Babic, Fabio Estevam, NXP i . MX U-Boot Team, Peng Fan,
Marek Vasut, Heiko Thiery
I was only able to test it on a 8MNANOD3L-EVK board. Please help testing
this change on the other 2 eval boards (8MNANOLPD4-EVK, 8MNANOD4-EVK).
Heiko Thiery (2):
ARM: imx: imx8mn-evk: enable DM_SERIAL
ARM: imx: imx8mn-ddr4-evk: enable DM_SERIAL
configs/imx8mn_ddr4_evk_defconfig | 2 ++
configs/imx8mn_evk_defconfig | 2 ++
2 files changed, 4 insertions(+)
--
2.30.2
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/2] ARM: imx: imx8mn-evk: enable DM_SERIAL
2022-02-25 13:20 [PATCH 0/2] enable DM_SERIAL on imx8mn-evk and imx8mn-ddr4-evk Heiko Thiery
@ 2022-02-25 13:20 ` Heiko Thiery
2022-02-25 14:24 ` Fabio Estevam
2022-02-25 13:20 ` [PATCH 2/2] ARM: imx: imx8mn-ddr4-evk: " Heiko Thiery
2022-03-21 3:07 ` [PATCH 0/2] enable DM_SERIAL on imx8mn-evk and imx8mn-ddr4-evk Peng Fan (OSS)
2 siblings, 1 reply; 6+ messages in thread
From: Heiko Thiery @ 2022-02-25 13:20 UTC (permalink / raw)
To: u-boot
Cc: Stefano Babic, Fabio Estevam, NXP i . MX U-Boot Team, Peng Fan,
Marek Vasut, Heiko Thiery
Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com>
---
configs/imx8mn_evk_defconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/configs/imx8mn_evk_defconfig b/configs/imx8mn_evk_defconfig
index 95ac6f85fa..15909d545c 100644
--- a/configs/imx8mn_evk_defconfig
+++ b/configs/imx8mn_evk_defconfig
@@ -84,6 +84,8 @@ CONFIG_DM_REGULATOR=y
CONFIG_SPL_DM_REGULATOR=y
CONFIG_DM_REGULATOR_FIXED=y
CONFIG_DM_REGULATOR_GPIO=y
+CONFIG_DM_SERIAL=y
+# CONFIG_SPL_DM_SERIAL is not set
CONFIG_MXC_UART=y
CONFIG_SYSRESET=y
CONFIG_SPL_SYSRESET=y
--
2.30.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/2] ARM: imx: imx8mn-ddr4-evk: enable DM_SERIAL
2022-02-25 13:20 [PATCH 0/2] enable DM_SERIAL on imx8mn-evk and imx8mn-ddr4-evk Heiko Thiery
2022-02-25 13:20 ` [PATCH 1/2] ARM: imx: imx8mn-evk: enable DM_SERIAL Heiko Thiery
@ 2022-02-25 13:20 ` Heiko Thiery
2022-03-21 3:07 ` [PATCH 0/2] enable DM_SERIAL on imx8mn-evk and imx8mn-ddr4-evk Peng Fan (OSS)
2 siblings, 0 replies; 6+ messages in thread
From: Heiko Thiery @ 2022-02-25 13:20 UTC (permalink / raw)
To: u-boot
Cc: Stefano Babic, Fabio Estevam, NXP i . MX U-Boot Team, Peng Fan,
Marek Vasut, Heiko Thiery
Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com>
---
configs/imx8mn_ddr4_evk_defconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/configs/imx8mn_ddr4_evk_defconfig b/configs/imx8mn_ddr4_evk_defconfig
index c13885ab5e..05aa4fb259 100644
--- a/configs/imx8mn_ddr4_evk_defconfig
+++ b/configs/imx8mn_ddr4_evk_defconfig
@@ -77,6 +77,8 @@ CONFIG_PINCTRL_IMX8M=y
CONFIG_DM_REGULATOR=y
CONFIG_DM_REGULATOR_FIXED=y
CONFIG_DM_REGULATOR_GPIO=y
+CONFIG_DM_SERIAL=y
+# CONFIG_SPL_DM_SERIAL is not set
CONFIG_MXC_UART=y
CONFIG_SYSRESET=y
CONFIG_SPL_SYSRESET=y
--
2.30.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 1/2] ARM: imx: imx8mn-evk: enable DM_SERIAL
2022-02-25 13:20 ` [PATCH 1/2] ARM: imx: imx8mn-evk: enable DM_SERIAL Heiko Thiery
@ 2022-02-25 14:24 ` Fabio Estevam
0 siblings, 0 replies; 6+ messages in thread
From: Fabio Estevam @ 2022-02-25 14:24 UTC (permalink / raw)
To: Heiko Thiery
Cc: U-Boot-Denx, Stefano Babic, NXP i . MX U-Boot Team, Peng Fan,
Marek Vasut
Hi Heiko,
On Fri, Feb 25, 2022 at 10:21 AM Heiko Thiery <heiko.thiery@gmail.com> wrote:
>
> Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com>
Please provide a commit log explaining why you are doing this change.
Thanks
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/2] enable DM_SERIAL on imx8mn-evk and imx8mn-ddr4-evk
2022-02-25 13:20 [PATCH 0/2] enable DM_SERIAL on imx8mn-evk and imx8mn-ddr4-evk Heiko Thiery
2022-02-25 13:20 ` [PATCH 1/2] ARM: imx: imx8mn-evk: enable DM_SERIAL Heiko Thiery
2022-02-25 13:20 ` [PATCH 2/2] ARM: imx: imx8mn-ddr4-evk: " Heiko Thiery
@ 2022-03-21 3:07 ` Peng Fan (OSS)
2022-03-21 6:51 ` Heiko Thiery
2 siblings, 1 reply; 6+ messages in thread
From: Peng Fan (OSS) @ 2022-03-21 3:07 UTC (permalink / raw)
To: Heiko Thiery, u-boot@lists.denx.de
Cc: Stefano Babic, Fabio Estevam, dl-uboot-imx, Peng Fan, Marek Vasut
On 2022/2/25 21:20, Heiko Thiery wrote:
> I was only able to test it on a 8MNANOD3L-EVK board. Please help testing
> this change on the other 2 eval boards (8MNANOLPD4-EVK, 8MNANOD4-EVK).
SPL not use DM_SERIAL, only U-Boot proper use DM_SERIAL, right?
Not related to your patch, I think we need add some low level debug uart
setup to have uart work as early as possible, especially for bring up
new SoC/board.
Thanks,
Peng.
>
> Heiko Thiery (2):
> ARM: imx: imx8mn-evk: enable DM_SERIAL
> ARM: imx: imx8mn-ddr4-evk: enable DM_SERIAL
>
> configs/imx8mn_ddr4_evk_defconfig | 2 ++
> configs/imx8mn_evk_defconfig | 2 ++
> 2 files changed, 4 insertions(+)
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/2] enable DM_SERIAL on imx8mn-evk and imx8mn-ddr4-evk
2022-03-21 3:07 ` [PATCH 0/2] enable DM_SERIAL on imx8mn-evk and imx8mn-ddr4-evk Peng Fan (OSS)
@ 2022-03-21 6:51 ` Heiko Thiery
0 siblings, 0 replies; 6+ messages in thread
From: Heiko Thiery @ 2022-03-21 6:51 UTC (permalink / raw)
To: Peng Fan (OSS)
Cc: u-boot@lists.denx.de, Stefano Babic, Fabio Estevam, dl-uboot-imx,
Peng Fan, Marek Vasut
Hi Peng,
Am Mo., 21. März 2022 um 04:07 Uhr schrieb Peng Fan (OSS)
<peng.fan@oss.nxp.com>:
>
>
>
> On 2022/2/25 21:20, Heiko Thiery wrote:
> > I was only able to test it on a 8MNANOD3L-EVK board. Please help testing
> > this change on the other 2 eval boards (8MNANOLPD4-EVK, 8MNANOD4-EVK).
>
> SPL not use DM_SERIAL, only U-Boot proper use DM_SERIAL, right?
Yes only U-Boot uses DM_SERIAL.
> Not related to your patch, I think we need add some low level debug uart
> setup to have uart work as early as possible, especially for bring up
> new SoC/board.
>
> Thanks,
> Peng.
>
> >
> > Heiko Thiery (2):
> > ARM: imx: imx8mn-evk: enable DM_SERIAL
> > ARM: imx: imx8mn-ddr4-evk: enable DM_SERIAL
> >
> > configs/imx8mn_ddr4_evk_defconfig | 2 ++
> > configs/imx8mn_evk_defconfig | 2 ++
> > 2 files changed, 4 insertions(+)
> >
--
Heiko
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-03-21 6:51 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-25 13:20 [PATCH 0/2] enable DM_SERIAL on imx8mn-evk and imx8mn-ddr4-evk Heiko Thiery
2022-02-25 13:20 ` [PATCH 1/2] ARM: imx: imx8mn-evk: enable DM_SERIAL Heiko Thiery
2022-02-25 14:24 ` Fabio Estevam
2022-02-25 13:20 ` [PATCH 2/2] ARM: imx: imx8mn-ddr4-evk: " Heiko Thiery
2022-03-21 3:07 ` [PATCH 0/2] enable DM_SERIAL on imx8mn-evk and imx8mn-ddr4-evk Peng Fan (OSS)
2022-03-21 6:51 ` Heiko Thiery
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox