public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Chia-Wei, Wang <chiawei_wang@aspeedtech.com>
To: u-boot@lists.denx.de
Subject: [PATCH 0/7] Add Aspeed AST2600 support
Date: Mon, 14 Dec 2020 13:54:22 +0800	[thread overview]
Message-ID: <20201214055429.32690-1-chiawei_wang@aspeedtech.com> (raw)

The patch series add the U-boot support for AST2600,
which is the 7th generation BMC chip introduced by
ASPEED technogology.

The change includes the newly added low level platform
code, Kconfig, and device tree of AST2600. In addition,
certain fundamental drivers such as DRAM, reset, and
watchodg are implemented for the AST2600 new design.

Note that these patches currently supports only memory
mapped SPI flash booting.

Chia-Wei, Wang (5):
  wdt: aspeed: Add AST2600 watchdog support
  reset: aspeed: Add AST2600 reset support
  ARM: dts: aspeed: Add AST2600 SoC support
  aspeed: Add AST2600 platform support
  configs: aspeed: Add defconfig for AST2600 EVB

Dylan Hung (1):
  ram: aspeed: Add AST2600 DRAM control support

Ryan Chen (1):
  clk: aspeed: Add AST2600 clock support

 arch/arm/dts/Makefile                         |    1 +
 arch/arm/dts/ast2600-evb.dts                  |  179 ++
 arch/arm/dts/ast2600-u-boot.dtsi              |   44 +
 arch/arm/dts/ast2600.dtsi                     | 1946 +++++++++++++++++
 arch/arm/include/asm/arch-aspeed/boot0.h      |   23 +
 arch/arm/include/asm/arch-aspeed/platform.h   |    5 +
 .../arm/include/asm/arch-aspeed/scu_ast2600.h |  338 +++
 .../include/asm/arch-aspeed/sdram_ast2600.h   |  163 ++
 .../arm/include/asm/arch-aspeed/wdt_ast2600.h |  129 ++
 arch/arm/mach-aspeed/Kconfig                  |   20 +
 arch/arm/mach-aspeed/Makefile                 |    1 +
 arch/arm/mach-aspeed/ast2600/Kconfig          |   17 +
 arch/arm/mach-aspeed/ast2600/Makefile         |    2 +
 arch/arm/mach-aspeed/ast2600/board_common.c   |  105 +
 arch/arm/mach-aspeed/ast2600/lowlevel_init.S  |  233 ++
 arch/arm/mach-aspeed/ast2600/spl.c            |   55 +
 board/aspeed/evb_ast2600/Kconfig              |   12 +
 board/aspeed/evb_ast2600/Makefile             |    1 +
 board/aspeed/evb_ast2600/evb_ast2600.c        |    5 +
 configs/evb-ast2600_defconfig                 |   69 +
 drivers/clk/aspeed/Makefile                   |    1 +
 drivers/clk/aspeed/clk_ast2600.c              | 1173 ++++++++++
 drivers/ram/aspeed/Kconfig                    |   61 +-
 drivers/ram/aspeed/Makefile                   |    3 +-
 drivers/ram/aspeed/sdram_ast2600.c            | 1061 +++++++++
 drivers/reset/Kconfig                         |    9 +
 drivers/reset/Makefile                        |    1 +
 drivers/reset/reset-ast2600.c                 |  108 +
 drivers/sysreset/sysreset_ast.c               |    5 +
 drivers/watchdog/Kconfig                      |    9 +
 drivers/watchdog/Makefile                     |    1 +
 drivers/watchdog/ast2600_wdt.c                |  110 +
 include/configs/evb_ast2600.h                 |   16 +
 include/dt-bindings/clock/ast2600-clock.h     |   62 +
 include/dt-bindings/reset/ast2600-reset.h     |   70 +
 35 files changed, 6036 insertions(+), 2 deletions(-)
 create mode 100644 arch/arm/dts/ast2600-evb.dts
 create mode 100644 arch/arm/dts/ast2600-u-boot.dtsi
 create mode 100644 arch/arm/dts/ast2600.dtsi
 create mode 100644 arch/arm/include/asm/arch-aspeed/boot0.h
 create mode 100644 arch/arm/include/asm/arch-aspeed/scu_ast2600.h
 create mode 100644 arch/arm/include/asm/arch-aspeed/sdram_ast2600.h
 create mode 100644 arch/arm/include/asm/arch-aspeed/wdt_ast2600.h
 create mode 100644 arch/arm/mach-aspeed/ast2600/Kconfig
 create mode 100644 arch/arm/mach-aspeed/ast2600/Makefile
 create mode 100644 arch/arm/mach-aspeed/ast2600/board_common.c
 create mode 100644 arch/arm/mach-aspeed/ast2600/lowlevel_init.S
 create mode 100644 arch/arm/mach-aspeed/ast2600/spl.c
 create mode 100644 board/aspeed/evb_ast2600/Kconfig
 create mode 100644 board/aspeed/evb_ast2600/Makefile
 create mode 100644 board/aspeed/evb_ast2600/evb_ast2600.c
 create mode 100644 configs/evb-ast2600_defconfig
 create mode 100644 drivers/clk/aspeed/clk_ast2600.c
 create mode 100644 drivers/ram/aspeed/sdram_ast2600.c
 create mode 100644 drivers/reset/reset-ast2600.c
 create mode 100644 drivers/watchdog/ast2600_wdt.c
 create mode 100644 include/configs/evb_ast2600.h
 create mode 100644 include/dt-bindings/clock/ast2600-clock.h
 create mode 100644 include/dt-bindings/reset/ast2600-reset.h

-- 
2.17.1

             reply	other threads:[~2020-12-14  5:54 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-14  5:54 Chia-Wei, Wang [this message]
2020-12-14  5:54 ` [PATCH 1/7] clk: aspeed: Add AST2600 clock support Chia-Wei, Wang
2021-01-19 13:04   ` Tom Rini
2020-12-14  5:54 ` [PATCH 2/7] ram: aspeed: Add AST2600 DRAM control support Chia-Wei, Wang
2021-01-12  3:00   ` Ryan Chen
2021-01-19 13:04   ` Tom Rini
2020-12-14  5:54 ` [PATCH 3/7] wdt: aspeed: Add AST2600 watchdog support Chia-Wei, Wang
2021-01-12  3:00   ` Ryan Chen
2021-01-19 13:04   ` Tom Rini
2020-12-14  5:54 ` [PATCH 4/7] reset: aspeed: Add AST2600 reset support Chia-Wei, Wang
2021-01-12  3:01   ` Ryan Chen
2021-01-19 13:04   ` Tom Rini
2020-12-14  5:54 ` [PATCH 5/7] ARM: dts: aspeed: Add AST2600 SoC support Chia-Wei, Wang
2021-01-12  3:01   ` Ryan Chen
2021-01-19 13:04   ` Tom Rini
2020-12-14  5:54 ` [PATCH 6/7] aspeed: Add AST2600 platform support Chia-Wei, Wang
2021-01-12  3:01   ` Ryan Chen
2021-01-19 13:04   ` Tom Rini
2020-12-14  5:54 ` [PATCH 7/7] configs: aspeed: Add defconfig for AST2600 EVB Chia-Wei, Wang
2021-01-12  3:02   ` Ryan Chen
2021-01-19 13:04   ` Tom Rini

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=20201214055429.32690-1-chiawei_wang@aspeedtech.com \
    --to=chiawei_wang@aspeedtech.com \
    --cc=u-boot@lists.denx.de \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox