All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/18] Convert extension support to UCLASS and adds its support to boot flows
@ 2025-10-09 14:50 Kory Maincent (TI.com)
  2025-10-09 14:50 ` [PATCH v2 01/18] MAINTAINERS: Add maintainer for extension board support Kory Maincent (TI.com)
                   ` (17 more replies)
  0 siblings, 18 replies; 36+ messages in thread
From: Kory Maincent (TI.com) @ 2025-10-09 14:50 UTC (permalink / raw)
  To: Tom Rini, Simon Glass, Jagan Teki, Andre Przywara, Hans de Goede,
	Mario Six, Stefano Babic, Fabio Estevam, NXP i.MX U-Boot Team,
	Ying-Chun Liu (PaulLiu)
  Cc: Roger Quadros, Bajjuri Praneeth, Thomas Petazzoni, u-boot,
	Kory Maincent (TI.com)

This series converts the extension board framework to use UCLASS as
requested by Simon Glass, then adds extension support to pxe_utils
and bootmeth_efi (not tested) to enable extension boards devicetree load
in the standard boot process.

I can't test the imx8 extension scan enabled by the
imx8mm-cl-iot-gate_defconfig as I don't have this board.
I also can't test the efi bootmeth change as I don't have such board.

Changes in v2:
- Fixes few build errors.
- Add patches to move the extension support and board scan out of XPL
  images build.

Signed-off-by: Kory Maincent (TI.com) <kory.maincent@bootlin.com>
---
Kory Maincent (TI.com) (18):
      MAINTAINERS: Add maintainer for extension board support
      boot: Move extension board support from cmd/ to boot/
      boot: Add UCLASS support for extension boards
      board: ti: Exclude cape detection from XPL builds
      board: ti: Refactor cape detection code for readability
      board: ti: Convert cape detection to use UCLASS framework
      board: sunxi: Exclude DIP detection from XPL builds
      board: sunxi: Refactor CHIP board extension code
      board: sunxi: Convert extension support to UCLASS framework
      board: sandbox: Improve extension board scan implementation
      board: sandbox: Convert extension support to UCLASS framework
      board: compulab: Exclude compulab extension board detection from XPL builds
      board: compulab: Convert imx8mm-cl-iot-gate to UCLASS extension framework
      boot: Remove legacy extension board support
      boot: extension: Move overlay apply custom logic to command level
      boot: pxe_utils: Add extension board devicetree overlay support
      boot: bootmeth_efi: Refactor distro_efi_try_bootflow_files return logic
      boot: bootmeth_efi: Add extension board devicetree overlay support

 MAINTAINERS                                        |   9 +
 .../imx8mm-cl-iot-gate/imx8mm-cl-iot-gate.c        |  67 ++++----
 board/sandbox/sandbox.c                            |  22 ++-
 board/sunxi/Makefile                               |   2 +-
 board/sunxi/chip.c                                 |  32 ++--
 board/ti/common/Makefile                           |   2 +-
 board/ti/common/cape_detect.c                      |  52 +++---
 boot/Kconfig                                       |   3 +
 boot/Makefile                                      |   1 +
 boot/bootmeth_efi.c                                |  78 +++++++--
 boot/extension-uclass.c                            | 138 ++++++++++++++++
 boot/pxe_utils.c                                   |  90 ++++++++++
 cmd/Kconfig                                        |   3 -
 cmd/extension_board.c                              | 183 ++++++++++-----------
 doc/usage/cmd/extension.rst                        |  24 +--
 include/dm/uclass-id.h                             |   1 +
 include/extension_board.h                          |  71 ++++++--
 17 files changed, 547 insertions(+), 231 deletions(-)
---
base-commit: 8e7f8c1248e8adfb525a2a4ea56ebf7e54ff5d7a
change-id: 20250916-feature_sysboot_extension_board-958dd0072565

Best regards,
-- 
Köry Maincent, Bootlin
Embedded Linux and kernel engineering
https://bootlin.com


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

end of thread, other threads:[~2025-10-13 13:41 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-09 14:50 [PATCH v2 00/18] Convert extension support to UCLASS and adds its support to boot flows Kory Maincent (TI.com)
2025-10-09 14:50 ` [PATCH v2 01/18] MAINTAINERS: Add maintainer for extension board support Kory Maincent (TI.com)
2025-10-10 11:13   ` Simon Glass
2025-10-10 14:13   ` Mattijs Korpershoek
2025-10-09 14:50 ` [PATCH v2 02/18] boot: Move extension board support from cmd/ to boot/ Kory Maincent (TI.com)
2025-10-10 11:13   ` Simon Glass
2025-10-10 12:33     ` Kory Maincent
2025-10-09 14:50 ` [PATCH v2 03/18] boot: Add UCLASS support for extension boards Kory Maincent (TI.com)
2025-10-10 11:13   ` Simon Glass
2025-10-10 13:35     ` Kory Maincent
2025-10-11  7:20       ` Simon Glass
2025-10-13 12:45         ` Kory Maincent
2025-10-13 13:41           ` Simon Glass
2025-10-09 14:50 ` [PATCH v2 04/18] board: ti: Exclude cape detection from XPL builds Kory Maincent (TI.com)
2025-10-09 14:50 ` [PATCH v2 05/18] board: ti: Refactor cape detection code for readability Kory Maincent (TI.com)
2025-10-09 14:50 ` [PATCH v2 06/18] board: ti: Convert cape detection to use UCLASS framework Kory Maincent (TI.com)
2025-10-09 14:50 ` [PATCH v2 07/18] board: sunxi: Exclude DIP detection from XPL builds Kory Maincent (TI.com)
2025-10-09 14:50 ` [PATCH v2 08/18] board: sunxi: Refactor CHIP board extension code Kory Maincent (TI.com)
2025-10-09 14:50 ` [PATCH v2 09/18] board: sunxi: Convert extension support to UCLASS framework Kory Maincent (TI.com)
2025-10-09 14:50 ` [PATCH v2 10/18] board: sandbox: Improve extension board scan implementation Kory Maincent (TI.com)
2025-10-10 11:13   ` Simon Glass
2025-10-09 14:50 ` [PATCH v2 11/18] board: sandbox: Convert extension support to UCLASS framework Kory Maincent (TI.com)
2025-10-10 11:13   ` Simon Glass
2025-10-09 14:50 ` [PATCH v2 12/18] board: compulab: Exclude compulab extension board detection from XPL builds Kory Maincent (TI.com)
2025-10-09 14:50 ` [PATCH v2 13/18] board: compulab: Convert imx8mm-cl-iot-gate to UCLASS extension framework Kory Maincent (TI.com)
2025-10-09 14:50 ` [PATCH v2 14/18] boot: Remove legacy extension board support Kory Maincent (TI.com)
2025-10-10 11:13   ` Simon Glass
2025-10-09 14:50 ` [PATCH v2 15/18] boot: extension: Move overlay apply custom logic to command level Kory Maincent (TI.com)
2025-10-10 11:13   ` Simon Glass
2025-10-09 14:50 ` [PATCH v2 16/18] boot: pxe_utils: Add extension board devicetree overlay support Kory Maincent (TI.com)
2025-10-09 16:37   ` Kory Maincent
2025-10-10 11:13   ` Simon Glass
2025-10-09 14:50 ` [PATCH v2 17/18] boot: bootmeth_efi: Refactor distro_efi_try_bootflow_files return logic Kory Maincent (TI.com)
2025-10-10 11:13   ` Simon Glass
2025-10-09 14:50 ` [PATCH v2 18/18] boot: bootmeth_efi: Add extension board devicetree overlay support Kory Maincent (TI.com)
2025-10-10 11:13   ` Simon Glass

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.