All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH u-boot 00/12] config cleanups and small fixes
@ 2016-10-06 21:26 Cédric Le Goater
  2016-10-06 21:26 ` [PATCH u-boot 01/12] aspeed: add CONFIG_AST_SPI_NOR Cédric Le Goater
                   ` (12 more replies)
  0 siblings, 13 replies; 32+ messages in thread
From: Cédric Le Goater @ 2016-10-06 21:26 UTC (permalink / raw)
  To: openbmc

Hello,

Here is a set of cleanups on the configuration. It should ease the
port on v2016.11 which is a little more strict on CONFIG_ defines.

I also included a couple of fixes on the timer and ramdisk relocation.


Thanks,

C.

Cédric Le Goater (12):
  aspeed: add CONFIG_AST_SPI_NOR
  aspeed: rework top level configuration of the Aspeed SoC
  aspeed: use CONFIG_TARGET_AST_G{4,5}
  aspeed: remove CONFIG_SYS_INIT_RAM_END
  aspeed: replace CONFIG_ASPEED_TIMER_CLK with CONFIG_TIMER_CLK_FREQ
  aspeed: timer cleanups
  aspeed: add configuration for the network devices
  aspeed: remove CONFIG_MAC_NUM
  aspeed: add CONFIG_DRAM_ECC
  aspeed: remove CONFIG_PHY_MAX_ADDR
  bootm: fix ramdisk relocation
  aspeed: remove hack loading ramdisk in memory

 arch/arm/Kconfig                             | 14 +++----
 arch/arm/include/asm/arch-aspeed/aspeed.h    | 29 --------------
 arch/arm/include/asm/arch-aspeed/ast-ahbc.h  |  2 +-
 arch/arm/include/asm/arch-aspeed/platform.h  | 10 +----
 arch/arm/include/asm/arch-aspeed/regs-ahbc.h |  4 +-
 arch/arm/include/asm/arch-aspeed/regs-scu.h  | 56 ++++++++++++++--------------
 arch/arm/mach-aspeed/Kconfig                 | 50 +++++++++++++++++++++++++
 arch/arm/mach-aspeed/Makefile                |  4 +-
 arch/arm/mach-aspeed/ast-ahbc.c              |  5 +--
 arch/arm/mach-aspeed/ast-scu.c               | 19 ++++++----
 arch/arm/mach-aspeed/cpuinfo.c               |  5 +--
 arch/arm/mach-aspeed/flash.c                 | 21 +----------
 arch/arm/mach-aspeed/timer.c                 | 27 ++++++++++----
 board/aspeed/Kconfig                         | 16 --------
 board/aspeed/ast-g4/Kconfig                  |  6 ---
 board/aspeed/ast-g4/ast-g4.c                 |  1 -
 board/aspeed/ast-g5/Kconfig                  | 15 +++++---
 cmd/bootm.c                                  |  3 ++
 common/image.c                               | 11 ------
 configs/ast_g4_ncsi_defconfig                |  3 ++
 configs/ast_g4_phy_defconfig                 |  4 ++
 configs/ast_g5_ncsi_defconfig                |  3 ++
 configs/ast_g5_phy_defconfig                 |  4 ++
 drivers/net/Kconfig                          | 19 +++++++++-
 drivers/net/ftgmac100.c                      | 15 ++++----
 include/configs/ast-common.h                 | 15 +++-----
 include/configs/ast-g4-ncsi.h                |  6 +--
 include/configs/ast-g4-phy.h                 |  9 ++---
 include/configs/ast-g5-ncsi.h                |  9 ++---
 include/configs/ast-g5-phy.h                 | 11 ++----
 30 files changed, 194 insertions(+), 202 deletions(-)
 delete mode 100644 arch/arm/include/asm/arch-aspeed/aspeed.h
 create mode 100644 arch/arm/mach-aspeed/Kconfig
 delete mode 100644 board/aspeed/Kconfig

-- 
2.7.4

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

end of thread, other threads:[~2016-10-17  6:52 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-06 21:26 [PATCH u-boot 00/12] config cleanups and small fixes Cédric Le Goater
2016-10-06 21:26 ` [PATCH u-boot 01/12] aspeed: add CONFIG_AST_SPI_NOR Cédric Le Goater
2016-10-10  6:21   ` Joel Stanley
2016-10-06 21:26 ` [PATCH u-boot 02/12] aspeed: rework top level configuration of the Aspeed SoC Cédric Le Goater
2016-10-10  6:22   ` Joel Stanley
2016-10-06 21:26 ` [PATCH u-boot 03/12] aspeed: use CONFIG_TARGET_AST_G{4,5} Cédric Le Goater
2016-10-10  6:22   ` Joel Stanley
2016-10-06 21:26 ` [PATCH u-boot 04/12] aspeed: remove CONFIG_SYS_INIT_RAM_END Cédric Le Goater
2016-10-10  6:22   ` Joel Stanley
2016-10-06 21:26 ` [PATCH u-boot 05/12] aspeed: replace CONFIG_ASPEED_TIMER_CLK with CONFIG_TIMER_CLK_FREQ Cédric Le Goater
2016-10-10  6:22   ` Joel Stanley
2016-10-06 21:26 ` [PATCH u-boot 06/12] aspeed: timer cleanups Cédric Le Goater
2016-10-10  6:22   ` Joel Stanley
2016-10-17  6:52     ` Cédric Le Goater
2016-10-06 21:26 ` [PATCH u-boot 07/12] aspeed: add configuration for the network devices Cédric Le Goater
2016-10-10  6:23   ` Joel Stanley
2016-10-06 21:26 ` [PATCH u-boot 08/12] aspeed: remove CONFIG_MAC_NUM Cédric Le Goater
2016-10-10  6:23   ` Joel Stanley
2016-10-06 21:26 ` [PATCH u-boot 09/12] aspeed: add CONFIG_DRAM_ECC Cédric Le Goater
2016-10-10  6:23   ` Joel Stanley
2016-10-06 21:26 ` [PATCH u-boot 10/12] aspeed: remove CONFIG_PHY_MAX_ADDR Cédric Le Goater
2016-10-10  6:23   ` Joel Stanley
2016-10-06 21:26 ` [PATCH u-boot 11/12] bootm: fix ramdisk relocation Cédric Le Goater
2016-10-10  6:23   ` Joel Stanley
2016-10-10  7:41     ` Cédric Le Goater
2016-10-06 21:26 ` [PATCH u-boot 12/12] aspeed: remove hack loading ramdisk in memory Cédric Le Goater
2016-10-10  6:24   ` Joel Stanley
2016-10-07  7:24 ` [PATCH u-boot 00/12] config cleanups and small fixes Cédric Le Goater
2016-10-10  6:24   ` Joel Stanley
2016-10-10  6:49     ` Joel Stanley
2016-10-10  7:32       ` Cédric Le Goater
2016-10-10  6:57     ` Cédric Le Goater

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.