All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Cédric Le Goater" <clg@kaod.org>
To: openbmc@lists.ozlabs.org
Subject: [PATCH u-boot 00/12] config cleanups and small fixes
Date: Thu,  6 Oct 2016 23:26:33 +0200	[thread overview]
Message-ID: <1475789205-19618-1-git-send-email-clg@kaod.org> (raw)

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

             reply	other threads:[~2016-10-06 21:34 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-06 21:26 Cédric Le Goater [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1475789205-19618-1-git-send-email-clg@kaod.org \
    --to=clg@kaod.org \
    --cc=openbmc@lists.ozlabs.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.