public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH 0/7] Add Aspeed AST2600 support
@ 2020-12-14  5:54 Chia-Wei, Wang
  2020-12-14  5:54 ` [PATCH 1/7] clk: aspeed: Add AST2600 clock support Chia-Wei, Wang
                   ` (6 more replies)
  0 siblings, 7 replies; 21+ messages in thread
From: Chia-Wei, Wang @ 2020-12-14  5:54 UTC (permalink / raw)
  To: u-boot

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

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

end of thread, other threads:[~2021-01-19 13:04 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-14  5:54 [PATCH 0/7] Add Aspeed AST2600 support Chia-Wei, Wang
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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox