All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] configs/imx6ulz_smm_m2b_defconfig: Enable clock framework
@ 2025-07-08 10:35 Michael Trimarchi
  2025-07-08 10:35 ` [PATCH 2/2] configs: imx6ulz_smm_m2b: Add board watchdog reset configuration Michael Trimarchi
  2025-07-11  4:08 ` [PATCH 1/2] configs/imx6ulz_smm_m2b_defconfig: Enable clock framework Peng Fan
  0 siblings, 2 replies; 5+ messages in thread
From: Michael Trimarchi @ 2025-07-08 10:35 UTC (permalink / raw)
  To: u-boot
  Cc: Michael Trimarchi, Ilias Apalodimas, Jerome Forissier,
	Marek Vasut, Peng Fan, Tom Rini

Enable the clock framework on the m2b platform as was done
in m2 variant. This helps to increase the NAND controller performance.

Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
---

 configs/imx6ulz_smm_m2b_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/configs/imx6ulz_smm_m2b_defconfig b/configs/imx6ulz_smm_m2b_defconfig
index c0eb1093d8b..3d7530431fd 100644
--- a/configs/imx6ulz_smm_m2b_defconfig
+++ b/configs/imx6ulz_smm_m2b_defconfig
@@ -44,6 +44,8 @@ CONFIG_ENV_IS_IN_NAND=y
 CONFIG_ENV_RELOC_GD_ENV_ADDR=y
 CONFIG_NO_NET=y
 CONFIG_BOUNCE_BUFFER=y
+CONFIG_CLK_COMPOSITE_CCF=y
+CONFIG_CLK_IMX6UL=y
 CONFIG_USB_FUNCTION_FASTBOOT=y
 CONFIG_FASTBOOT_BUF_ADDR=0x82000000
 CONFIG_FASTBOOT_FLASH=y
-- 
2.43.0

base-commit: b379335f141e3ddca0cdbb5d9d39af0444530542

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] configs: imx6ulz_smm_m2b: Add board watchdog reset configuration
  2025-07-08 10:35 [PATCH 1/2] configs/imx6ulz_smm_m2b_defconfig: Enable clock framework Michael Trimarchi
@ 2025-07-08 10:35 ` Michael Trimarchi
  2025-07-11  2:22   ` Fabio Estevam
  2025-07-11  4:09   ` Peng Fan
  2025-07-11  4:08 ` [PATCH 1/2] configs/imx6ulz_smm_m2b_defconfig: Enable clock framework Peng Fan
  1 sibling, 2 replies; 5+ messages in thread
From: Michael Trimarchi @ 2025-07-08 10:35 UTC (permalink / raw)
  To: u-boot
  Cc: Michael Trimarchi, Ilias Apalodimas, Jerome Forissier,
	Marek Vasut, Peng Fan, Tom Rini

Add the configuration that allow to reset the board from reset
cmd

Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
---

 configs/imx6ulz_smm_m2b_defconfig | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/configs/imx6ulz_smm_m2b_defconfig b/configs/imx6ulz_smm_m2b_defconfig
index 3d7530431fd..36f5922ea10 100644
--- a/configs/imx6ulz_smm_m2b_defconfig
+++ b/configs/imx6ulz_smm_m2b_defconfig
@@ -67,6 +67,8 @@ CONFIG_DM_PMIC=y
 CONFIG_DM_REGULATOR=y
 CONFIG_DM_REGULATOR_FIXED=y
 CONFIG_MXC_UART=y
+CONFIG_SYSRESET=y
+CONFIG_SYSRESET_WATCHDOG=y
 CONFIG_IMX_THERMAL=y
 CONFIG_USB=y
 CONFIG_SPL_USB_HOST=y
@@ -78,3 +80,4 @@ CONFIG_USB_GADGET_PRODUCT_NUM=0xa4a5
 CONFIG_CI_UDC=y
 CONFIG_SDP_LOADADDR=0x877fffc0
 CONFIG_SPL_USB_SDP_SUPPORT=y
+CONFIG_IMX_WATCHDOG=y
-- 
2.43.0

base-commit: b379335f141e3ddca0cdbb5d9d39af0444530542

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2] configs: imx6ulz_smm_m2b: Add board watchdog reset configuration
  2025-07-08 10:35 ` [PATCH 2/2] configs: imx6ulz_smm_m2b: Add board watchdog reset configuration Michael Trimarchi
@ 2025-07-11  2:22   ` Fabio Estevam
  2025-07-11  4:09   ` Peng Fan
  1 sibling, 0 replies; 5+ messages in thread
From: Fabio Estevam @ 2025-07-11  2:22 UTC (permalink / raw)
  To: Michael Trimarchi
  Cc: u-boot, Ilias Apalodimas, Jerome Forissier, Marek Vasut, Peng Fan,
	Tom Rini

On Tue, Jul 8, 2025 at 7:36 AM Michael Trimarchi
<michael@amarulasolutions.com> wrote:
>
> Add the configuration that allow to reset the board from reset
> cmd
>
> Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>

Applied both, thanks.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] configs/imx6ulz_smm_m2b_defconfig: Enable clock framework
  2025-07-08 10:35 [PATCH 1/2] configs/imx6ulz_smm_m2b_defconfig: Enable clock framework Michael Trimarchi
  2025-07-08 10:35 ` [PATCH 2/2] configs: imx6ulz_smm_m2b: Add board watchdog reset configuration Michael Trimarchi
@ 2025-07-11  4:08 ` Peng Fan
  1 sibling, 0 replies; 5+ messages in thread
From: Peng Fan @ 2025-07-11  4:08 UTC (permalink / raw)
  To: Michael Trimarchi
  Cc: u-boot, Ilias Apalodimas, Jerome Forissier, Marek Vasut, Peng Fan,
	Tom Rini

On Tue, Jul 08, 2025 at 12:35:28PM +0200, Michael Trimarchi wrote:
>Enable the clock framework on the m2b platform as was done
>in m2 variant. This helps to increase the NAND controller performance.
>
>Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>

As I understand, assigned-clocks will set a higher freq, so
performance improves.

Reviewed-by: Peng Fan <peng.fan@nxp.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2] configs: imx6ulz_smm_m2b: Add board watchdog reset configuration
  2025-07-08 10:35 ` [PATCH 2/2] configs: imx6ulz_smm_m2b: Add board watchdog reset configuration Michael Trimarchi
  2025-07-11  2:22   ` Fabio Estevam
@ 2025-07-11  4:09   ` Peng Fan
  1 sibling, 0 replies; 5+ messages in thread
From: Peng Fan @ 2025-07-11  4:09 UTC (permalink / raw)
  To: Michael Trimarchi
  Cc: u-boot, Ilias Apalodimas, Jerome Forissier, Marek Vasut, Peng Fan,
	Tom Rini

On Tue, Jul 08, 2025 at 12:35:29PM +0200, Michael Trimarchi wrote:
>Add the configuration that allow to reset the board from reset
>cmd
>
>Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
>---
>

Reviewed-by: Peng Fan <peng.fan@nxp.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-07-11  2:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-08 10:35 [PATCH 1/2] configs/imx6ulz_smm_m2b_defconfig: Enable clock framework Michael Trimarchi
2025-07-08 10:35 ` [PATCH 2/2] configs: imx6ulz_smm_m2b: Add board watchdog reset configuration Michael Trimarchi
2025-07-11  2:22   ` Fabio Estevam
2025-07-11  4:09   ` Peng Fan
2025-07-11  4:08 ` [PATCH 1/2] configs/imx6ulz_smm_m2b_defconfig: Enable clock framework Peng Fan

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.