public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH v3 00/12] Remove K3 misc sys_proto.h header
@ 2023-04-06 14:09 Andrew Davis
  2023-04-06 14:09 ` [PATCH v3 01/12] arm: mach-k3: Move MSMC fixup to SoC level Andrew Davis
                   ` (11 more replies)
  0 siblings, 12 replies; 17+ messages in thread
From: Andrew Davis @ 2023-04-06 14:09 UTC (permalink / raw)
  To: Simon Glass, Tom Rini, Christian Gmeiner, u-boot; +Cc: Andrew Davis

Hello all,

Some minor cleanups with end patch removing sys_proto.h.
Why? Becouse I don't like headers of "miscellaneous".

Thanks,
Andrew

Changes from v2:
 - Reworked patch [2/12] to use static and turned it into common macro
 - Removed "EEPROM" from comment as board detection can use other methods
 - Added more reviewed by tags

Changes from v1:
 - Added reviewed by tag
 - Rebased on latest

Andrew Davis (12):
  arm: mach-k3: Move MSMC fixup to SoC level
  arm: mach-k3: Move J721e SoC detection out of common section
  soc: soc_ti_k3: Use hardware.h to remove definition duplication
  configs: j721x_evm: Remove unneeded check for SYS_K3_SPL_ATF
  configs: j721s2_evm.h: Remove refrences to J7200 EVM
  arm: mach-k3: Make release_resources_for_core_shutdown() common
  arm: mach-k3: Move sysfw-loader.h out of mach includes
  arm: mach-k3: Add weak do_board_detect() to common file
  arm: mach-k3: Remove unused fdt_disable_node()
  arm: mach-k3: Move sdelay() and wait_on_value() declaration
  arm: mach-k3: Move J721s2 SPL init functions to mach-k3
  arm: mach-k3: Remove empty sys_proto.h include

 arch/arm/mach-k3/Kconfig                      |   5 -
 arch/arm/mach-k3/am625_init.c                 |   2 +-
 arch/arm/mach-k3/am62a7_init.c                |   2 +-
 arch/arm/mach-k3/am642_init.c                 |  59 +--------
 arch/arm/mach-k3/am654_init.c                 |  58 +--------
 arch/arm/mach-k3/common.c                     |  88 +++++++------
 arch/arm/mach-k3/common.h                     |   5 +-
 arch/arm/mach-k3/include/mach/am62_hardware.h |   8 ++
 .../arm/mach-k3/include/mach/am62a_hardware.h |   8 ++
 arch/arm/mach-k3/include/mach/am64_hardware.h |  24 ++++
 arch/arm/mach-k3/include/mach/am6_hardware.h  |  19 +++
 arch/arm/mach-k3/include/mach/hardware.h      |  25 ++++
 .../arm/mach-k3/include/mach/j721e_hardware.h |  19 +++
 .../mach-k3/include/mach/j721s2_hardware.h    |  19 +++
 arch/arm/mach-k3/include/mach/sys_proto.h     |  25 ----
 arch/arm/mach-k3/j721e_init.c                 |  66 +---------
 arch/arm/mach-k3/j721s2_init.c                | 121 ++++++++++--------
 arch/arm/mach-k3/security.c                   |   1 -
 arch/arm/mach-k3/sysfw-loader.c               |   1 -
 .../mach-k3/{include/mach => }/sysfw-loader.h |   0
 board/siemens/iot2050/board.c                 |  12 +-
 board/ti/am62ax/evm.c                         |   1 -
 board/ti/am62x/evm.c                          |   1 -
 board/ti/am64x/evm.c                          |   1 -
 board/ti/am65x/evm.c                          |  20 ---
 board/ti/common/Kconfig                       |   1 -
 board/ti/j721e/evm.c                          |  13 +-
 board/ti/j721e/j721e.env                      |   2 -
 board/ti/j721s2/evm.c                         |  81 ------------
 board/ti/j721s2/j721s2.env                    |   2 -
 configs/am65x_evm_a53_defconfig               |   2 +-
 configs/am65x_hs_evm_a53_defconfig            |   2 +-
 configs/iot2050_pg1_defconfig                 |   1 +
 configs/iot2050_pg2_defconfig                 |   1 +
 configs/j7200_evm_a72_defconfig               |   1 +
 configs/j7200_hs_evm_a72_defconfig            |   1 +
 configs/j721e_evm_a72_defconfig               |   1 +
 configs/j721e_hs_evm_a72_defconfig            |   1 +
 configs/j721s2_evm_a72_defconfig              |   2 +-
 configs/j721s2_hs_evm_a72_defconfig           |   2 +-
 drivers/phy/phy-ti-am654.c                    |   1 -
 drivers/ram/k3-am654-ddrss.c                  |   5 +-
 drivers/soc/Kconfig                           |   2 +-
 drivers/soc/soc_ti_k3.c                       |  30 ++---
 include/configs/j721s2_evm.h                  |   2 +-
 45 files changed, 280 insertions(+), 463 deletions(-)
 delete mode 100644 arch/arm/mach-k3/include/mach/sys_proto.h
 rename arch/arm/mach-k3/{include/mach => }/sysfw-loader.h (100%)

-- 
2.39.2


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

end of thread, other threads:[~2023-04-06 16:29 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-06 14:09 [PATCH v3 00/12] Remove K3 misc sys_proto.h header Andrew Davis
2023-04-06 14:09 ` [PATCH v3 01/12] arm: mach-k3: Move MSMC fixup to SoC level Andrew Davis
2023-04-06 14:09 ` [PATCH v3 02/12] arm: mach-k3: Move J721e SoC detection out of common section Andrew Davis
2023-04-06 15:59   ` Christian Gmeiner
2023-04-06 16:29     ` Andrew Davis
2023-04-06 14:09 ` [PATCH v3 03/12] soc: soc_ti_k3: Use hardware.h to remove definition duplication Andrew Davis
2023-04-06 14:09 ` [PATCH v3 04/12] configs: j721x_evm: Remove unneeded check for SYS_K3_SPL_ATF Andrew Davis
2023-04-06 14:09 ` [PATCH v3 05/12] configs: j721s2_evm.h: Remove refrences to J7200 EVM Andrew Davis
2023-04-06 14:09 ` [PATCH v3 06/12] arm: mach-k3: Make release_resources_for_core_shutdown() common Andrew Davis
2023-04-06 14:09 ` [PATCH v3 07/12] arm: mach-k3: Move sysfw-loader.h out of mach includes Andrew Davis
2023-04-06 14:09 ` [PATCH v3 08/12] arm: mach-k3: Add weak do_board_detect() to common file Andrew Davis
2023-04-06 16:01   ` Christian Gmeiner
2023-04-06 14:10 ` [PATCH v3 09/12] arm: mach-k3: Remove unused fdt_disable_node() Andrew Davis
2023-04-06 14:10 ` [PATCH v3 10/12] arm: mach-k3: Move sdelay() and wait_on_value() declaration Andrew Davis
2023-04-06 14:10 ` [PATCH v3 11/12] arm: mach-k3: Move J721s2 SPL init functions to mach-k3 Andrew Davis
2023-04-06 14:10 ` [PATCH v3 12/12] arm: mach-k3: Remove empty sys_proto.h include Andrew Davis
2023-04-06 16:02   ` Christian Gmeiner

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