public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH 00/10] imx: Switch watchdog addressing from macros to devicetree
@ 2026-03-10  7:53 alice.guo
  2026-03-10  7:53 ` [PATCH v1 01/10] imx: Add helper to get watchdog base address from DT alias alice.guo
                   ` (9 more replies)
  0 siblings, 10 replies; 15+ messages in thread
From: alice.guo @ 2026-03-10  7:53 UTC (permalink / raw)
  To: NXP i.MX U-Boot Team, u-boot, Christoph Stoidner, upstream
  Cc: Joseph Guo, Stefano Babic, Fabio Estevam, Tom Rini, Peng Fan,
	Ye Li, Ranjani Vaidyanathan, Ji Luo, Marek Vasut, Jacky Bai,
	Stefan Roese, Marek Vasut, David Zang, Simon Glass,
	João Paulo Gonçalves, Rasmus Villemoes, Primoz Fiser,
	Frieder Schrempf,
	Jérémie Dautheribes (Schneider Electric), Joseph Guo,
	Mathieu Othacehe, Francesco Dolcini, Jindong Yue, Frank Li,
	Max Krummenacher, Ernest Van Hoecke, Emanuele Ghidoli, Alice Guo

CI: https://github.com/u-boot/u-boot/pull/902/checks

Signed-off-by: Alice Guo <alice.guo@nxp.com>
---
Alice Guo (10):
      imx: Add helper to get watchdog base address from DT alias
      watchdog: ulp_wdog: Get watchdog base address from device tree
      imx: soc: Get watchdog base addresses from device tree
      imx7ulp: dtsi: Add wdog1 and wdog2 nodes with aliases
      imx8ulp: dtsi: Add wdog3 alias and bootph-all property
      imx93: dtsi: Add wdog3/wdog4/wdog5 alias and bootph-all property
      imx91: dtsi: Add wdog3/wdog4/wdog5 alias and bootph-all property
      imx943: dtsi: Add wdog3 and wdog4 nodes with aliases
      imx95: dtsi: Add wdog3 and wdog4 nodes with aliases
      imx: Remove hardcoded watchdog base address macros

 arch/arm/dts/imx7ulp.dtsi                    |  8 +++++
 arch/arm/dts/imx8ulp-u-boot.dtsi             | 10 ++++++
 arch/arm/dts/imx91-u-boot.dtsi               | 18 ++++++++++
 arch/arm/dts/imx93-u-boot.dtsi               | 18 ++++++++++
 arch/arm/dts/imx93.dtsi                      | 21 ++++++++++++
 arch/arm/dts/imx943-u-boot.dtsi              | 21 ++++++++++++
 arch/arm/dts/imx95-u-boot.dtsi               | 19 +++++++++++
 arch/arm/include/asm/arch-imx8ulp/imx-regs.h |  2 --
 arch/arm/include/asm/arch-imx9/imx-regs.h    |  9 -----
 arch/arm/include/asm/mach-imx/sys_proto.h    |  2 ++
 arch/arm/mach-imx/Makefile                   |  4 +--
 arch/arm/mach-imx/fdt.c                      | 51 ++++++++++++++++++++++++++++
 arch/arm/mach-imx/imx8ulp/soc.c              | 15 +++++++-
 arch/arm/mach-imx/imx9/scmi/soc.c            | 16 +++++++--
 arch/arm/mach-imx/imx9/soc.c                 | 17 ++++++++--
 arch/arm/mach-imx/mx7ulp/soc.c               | 16 +++++++--
 drivers/watchdog/ulp_wdog.c                  | 38 +++++++++++++++------
 include/configs/imx8ulp_evk.h                |  2 --
 include/configs/imx91_evk.h                  |  2 --
 include/configs/imx91_frdm.h                 |  2 --
 include/configs/imx93_evk.h                  |  3 --
 include/configs/imx93_frdm.h                 |  3 --
 include/configs/imx93_qsb.h                  |  2 --
 include/configs/imx93_var_som.h              |  3 --
 include/configs/imx94_evk.h                  |  3 --
 include/configs/imx95_evk.h                  |  2 --
 include/configs/kontron-osm-s-mx93.h         |  2 --
 include/configs/mx7ulp_com.h                 |  3 --
 include/configs/mx7ulp_evk.h                 |  3 --
 include/configs/phycore_imx93.h              |  3 --
 include/configs/toradex-smarc-imx95.h        |  2 --
 31 files changed, 252 insertions(+), 68 deletions(-)
---
base-commit: ba7bf918dafcd093ad733b07ba490baeb20cf5da
change-id: 20260310-wdog-9ad08a8da9dc

Best regards,
-- 
Alice Guo <alice.guo@nxp.com>


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

end of thread, other threads:[~2026-03-12 12:48 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-10  7:53 [PATCH 00/10] imx: Switch watchdog addressing from macros to devicetree alice.guo
2026-03-10  7:53 ` [PATCH v1 01/10] imx: Add helper to get watchdog base address from DT alias alice.guo
2026-03-12  7:17   ` Peng Fan
2026-03-12  9:52     ` Rasmus Villemoes
2026-03-10  7:53 ` [PATCH v1 02/10] watchdog: ulp_wdog: Get watchdog base address from device tree alice.guo
2026-03-12  7:19   ` Peng Fan
2026-03-10  7:53 ` [PATCH v1 03/10] imx: soc: Get watchdog base addresses " alice.guo
2026-03-12  9:01   ` Peng Fan
2026-03-10  7:53 ` [PATCH v1 04/10] imx7ulp: dtsi: Add wdog1 and wdog2 nodes with aliases alice.guo
2026-03-10  7:53 ` [PATCH v1 05/10] imx8ulp: dtsi: Add wdog3 alias and bootph-all property alice.guo
2026-03-10  7:53 ` [PATCH v1 06/10] imx93: dtsi: Add wdog3/wdog4/wdog5 " alice.guo
2026-03-10  7:53 ` [PATCH v1 07/10] imx91: " alice.guo
2026-03-10  7:53 ` [PATCH v1 08/10] imx943: dtsi: Add wdog3 and wdog4 nodes with aliases alice.guo
2026-03-10  7:53 ` [PATCH v1 09/10] imx95: " alice.guo
2026-03-10  7:53 ` [PATCH v1 10/10] imx: Remove hardcoded watchdog base address macros alice.guo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox