All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 00/18] Minor board_f/board_r cleanups
@ 2020-11-28  8:43 Ovidiu Panait
  2020-11-28  8:43 ` [PATCH v4 01/18] common: Kconfig: Introduce CONFIG_CONSOLE_RECORD_INIT_F Ovidiu Panait
                   ` (17 more replies)
  0 siblings, 18 replies; 40+ messages in thread
From: Ovidiu Panait @ 2020-11-28  8:43 UTC (permalink / raw)
  To: u-boot

v4:
* Drop trap_init declaration from init.h and make arch-specific
implementations static for mips and m68k (on powerpc trap_init is an
asm routine)

v3:
* Use only "default y" for CONFIG_CONSOLE_RECORD_INIT_F Kconfig option
* Add reviewed-by tags

v2:
* Introduce CONFIG_CONSOLE_RECORD_INIT_F Kconfig to eliminate complex ifdef
  around console_record_init in board_f.c
* Add function comments to all routines that get their signatures changed
* Add reviewed-by tags

v1:
* Use IS_ENABLED() instead of #ifdef where possible
* Add int return values to various functions so we can drop multiple initr_*
  stub wrappers
* Clean some arch-specific ifdefs
* Minor CONFIG_HANDOFF patches

Ovidiu Panait (18):
  common: Kconfig: Introduce CONFIG_CONSOLE_RECORD_INIT_F
  common: board_f: Drop initf_console_record wrapper
  common: board_f: Use IS_ENABLED(CONFIG_TIMER_EARLY) in initf_dm
  common: board_f: Move setup_machine code to setup_bdinfo
  common: board_f: Use IS_ENABLED(CONFIG_OF_EMBED) in
    reserve_fdt,reloc_fdt
  common: board_r: Drop initr_console_record wrapper
  common: board_r: Drop initr_secondary_cpu wrapper
  common: board_r: Drop initr_post_backlog wrapper
  common: board_r: Drop initr_pci_ep wrapper
  common: board_r: Drop initr_pci wrapper
  common: board_r: Drop initr_noncached wrapper
  common: board_r: Drop initr_xen wrapper
  common: board_r: Drop initr_jumptable wrapper
  common: board_r: Drop initr_api wrapper
  common: board_r: Drop initr_bbmii wrapper
  common: board_r: Drop arch-specific ifdefs around initr_trap
  spl: Kconfig: Add SPL dependency to CONFIG_HANDOFF
  global_data: Enable spl_handoff only if CONFIG_HANDOFF is set

 api/api.c                            |   6 +-
 api/api_private.h                    |   2 +-
 arch/arm/include/asm/system.h        |  13 ++-
 arch/arm/lib/cache.c                 |   4 +-
 arch/m68k/lib/traps.c                |   7 ++
 arch/mips/lib/traps.c                |   7 ++
 arch/powerpc/cpu/mpc85xx/cpu_init.c  |   4 +-
 arch/powerpc/lib/Makefile            |   1 +
 arch/powerpc/lib/traps.c             |  17 ++++
 common/Kconfig                       |   8 ++
 common/board_f.c                     |  78 +++++++---------
 common/board_r.c                     | 134 ++++-----------------------
 common/exports.c                     |   4 +-
 common/spl/Kconfig                   |   2 +-
 drivers/net/phy/miiphybb.c           |   4 +-
 drivers/pci/pci-uclass.c             |   4 +-
 drivers/pci/pci.c                    |   6 +-
 drivers/pci_endpoint/pci_ep-uclass.c |   4 +-
 drivers/xen/hypervisor.c             |   4 +-
 include/api.h                        |  10 +-
 include/asm-generic/global_data.h    |   4 +-
 include/exports.h                    |  10 +-
 include/init.h                       |  46 ++++++++-
 include/miiphy.h                     |  10 +-
 include/post.h                       |  11 ++-
 include/xen.h                        |   2 +-
 post/post.c                          |   4 +-
 27 files changed, 221 insertions(+), 185 deletions(-)
 create mode 100644 arch/powerpc/lib/traps.c

-- 
2.17.1

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

end of thread, other threads:[~2021-01-16 16:24 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-28  8:43 [PATCH v4 00/18] Minor board_f/board_r cleanups Ovidiu Panait
2020-11-28  8:43 ` [PATCH v4 01/18] common: Kconfig: Introduce CONFIG_CONSOLE_RECORD_INIT_F Ovidiu Panait
2021-01-16 16:22   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 02/18] common: board_f: Drop initf_console_record wrapper Ovidiu Panait
2021-01-16 16:22   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 03/18] common: board_f: Use IS_ENABLED(CONFIG_TIMER_EARLY) in initf_dm Ovidiu Panait
2021-01-16 16:22   ` Tom Rini
2021-01-16 16:22   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 04/18] common: board_f: Move setup_machine code to setup_bdinfo Ovidiu Panait
2021-01-16 16:22   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 05/18] common: board_f: Use IS_ENABLED(CONFIG_OF_EMBED) in reserve_fdt, reloc_fdt Ovidiu Panait
2021-01-16 16:22   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 06/18] common: board_r: Drop initr_console_record wrapper Ovidiu Panait
2021-01-16 16:22   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 07/18] common: board_r: Drop initr_secondary_cpu wrapper Ovidiu Panait
2020-11-30 20:12   ` Simon Glass
2021-01-16 16:22   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 08/18] common: board_r: Drop initr_post_backlog wrapper Ovidiu Panait
2021-01-16 16:23   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 09/18] common: board_r: Drop initr_pci_ep wrapper Ovidiu Panait
2021-01-16 16:23   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 10/18] common: board_r: Drop initr_pci wrapper Ovidiu Panait
2021-01-16 16:23   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 11/18] common: board_r: Drop initr_noncached wrapper Ovidiu Panait
2021-01-16 16:23   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 12/18] common: board_r: Drop initr_xen wrapper Ovidiu Panait
2021-01-16 16:23   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 13/18] common: board_r: Drop initr_jumptable wrapper Ovidiu Panait
2021-01-16 16:23   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 14/18] common: board_r: Drop initr_api wrapper Ovidiu Panait
2021-01-16 16:23   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 15/18] common: board_r: Drop initr_bbmii wrapper Ovidiu Panait
2021-01-16 16:23   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 16/18] common: board_r: Drop arch-specific ifdefs around initr_trap Ovidiu Panait
2020-11-30 18:24   ` Daniel Schwierzeck
2021-01-16 16:23   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 17/18] spl: Kconfig: Add SPL dependency to CONFIG_HANDOFF Ovidiu Panait
2021-01-16 16:24   ` Tom Rini
2020-11-28  8:43 ` [PATCH v4 18/18] global_data: Enable spl_handoff only if CONFIG_HANDOFF is set Ovidiu Panait
2021-01-16 16:24   ` Tom Rini

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.