All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] Static initcalls
@ 2024-12-17 15:59 Jerome Forissier
  2024-12-17 15:59 ` [PATCH 1/5] common: board: Simplify array with function pointers with CONFIG_IS_ENABLED Jerome Forissier
                   ` (4 more replies)
  0 siblings, 5 replies; 13+ messages in thread
From: Jerome Forissier @ 2024-12-17 15:59 UTC (permalink / raw)
  To: u-boot
  Cc: Ilias Apalodimas, Tom Rini, Simon Glass, Michal Simek,
	Jerome Forissier

This series replaces the dynamic initcalls (with function pointers) with
static calls, and gets rid of initcall_run_list(), init_sequence_f,
init_sequence_f_r and init_sequence_r. This makes the code simpler and the
binary slighlty smaller: -2655 bytes/-0.25 % with LTO enabled and -1344
bytes/-0.12 % with LTO disabled (xilinx_zynqmp_kria_defconfig).

Execution time doesn't seem to change noticeably. There is no impact on
the SPL.

Jerome Forissier (4):
  board_init_f(): use static calls
  board_init_f_r(): use static calls
  board_init_r(): use static calls
  initcall: remove initcall_run_list()

Michal Simek (1):
  common: board: Simplify array with function pointers with
    CONFIG_IS_ENABLED

 common/board_f.c            | 213 +++++++++++++++----------------
 common/board_r.c            | 244 ++++++++++++++----------------------
 include/initcall.h          |  43 +++----
 lib/Makefile                |   1 -
 lib/initcall.c              | 102 ---------------
 test/py/tests/test_trace.py |   8 +-
 6 files changed, 218 insertions(+), 393 deletions(-)
 delete mode 100644 lib/initcall.c

-- 
2.43.0


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

end of thread, other threads:[~2024-12-18 14:02 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-17 15:59 [PATCH 0/5] Static initcalls Jerome Forissier
2024-12-17 15:59 ` [PATCH 1/5] common: board: Simplify array with function pointers with CONFIG_IS_ENABLED Jerome Forissier
2024-12-18 12:03   ` Ilias Apalodimas
2024-12-18 12:15     ` Ilias Apalodimas
2024-12-18 12:28       ` Jerome Forissier
2024-12-18 12:15     ` Jerome Forissier
2024-12-18 12:27       ` Ilias Apalodimas
2024-12-17 15:59 ` [PATCH 2/5] board_init_f(): use static calls Jerome Forissier
2024-12-18 12:38   ` Ilias Apalodimas
2024-12-18 14:02     ` Jerome Forissier
2024-12-17 15:59 ` [PATCH 3/5] board_init_f_r(): " Jerome Forissier
2024-12-17 15:59 ` [PATCH 4/5] board_init_r(): " Jerome Forissier
2024-12-17 15:59 ` [PATCH 5/5] initcall: remove initcall_run_list() Jerome Forissier

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.