[PATCH v2] board: zynqmp: Move zynqmp commands from board/ to arch/

2024-04-10 Thread Charlie Johnston
zynqmp.c to reflect the command name as well. Signed-off-by: Charlie Johnston --- arch/arm/mach-zynqmp/Kconfig | 13 - arch/arm/mach-zynqmp/Makefile | 4 .../cmds.c => arch/arm/mach-zynqmp/zynqmp.c | 0 board/xilinx/zynqmp/Kcon

[PATCH v2 0/1] arch: zynqmp: Make zynqmp command more accessible.

2024-04-10 Thread Charlie Johnston
While working on a third-party board using a ZynqMP, I was unable to use the zynqmp command even with the proper config definitions. While that command appears tied to the architecture, it was being included based on the board selection instead. This patch series moves the command to be accessible

[PATCH 2/2] arch: zynqmp: Move CMD_ZYNQMP Kconfig from board to arch

2024-04-08 Thread Charlie Johnston
Since the previous commit moved the zynqmp command to cmds and the command depends on the arch rather than the board, this commit moves the Kconfig entry into the arch/arm/mach-zynqmp/Kconfig Signed-off-by: Charlie Johnston --- arch/arm/mach-zynqmp/Kconfig | 13 - board/xilinx

[PATCH 1/2] board: zynqmp: Move zynqmp commands from board/ to cmd/

2024-04-08 Thread Charlie Johnston
only be included if the board were also a ZynqMP predefined board. Signed-off-by: Charlie Johnston --- board/xilinx/zynqmp/Makefile | 4 cmd/Makefile | 3 +++ board/xilinx/zynqmp/cmds.c => cmd/zynqmp.c | 0 3 files changed, 3 insertions(+)

[PATCH 0/2] arch: zynqmp: Make zynqmp command more accessible.

2024-04-08 Thread Charlie Johnston
While working on a third-party board using a ZynqMP, I was unable to use the zynqmp command even with the proper config definitions. While that command appears tied to the architecture, it was being included based on the board selection instead. This patch series moves the command to be accessible