All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] riscv: spacemit: bananapi_f3: add support for Banana Pi F3 board
@ 2024-07-14 15:08 Kongyang Liu
  2024-07-14 15:08 ` [PATCH 1/2] riscv: spacemit: bananapi_f3: initial support added Kongyang Liu
  2024-07-14 15:08 ` [PATCH 2/2] doc: spacemit: bananapi_f3: document Banana Pi F3 board Kongyang Liu
  0 siblings, 2 replies; 7+ messages in thread
From: Kongyang Liu @ 2024-07-14 15:08 UTC (permalink / raw)
  To: u-boot
  Cc: Ben Dooks, Bin Meng, Dan Carpenter, Frieder Schrempf,
	Heinrich Schuchardt, Jonas Schwöbel, Leo, Michal Simek,
	Nishanth Menon, Padmarao Begari, Quentin Schulz, Randolph,
	Rick Chen, Samuel Holland, Svyatoslav Ryhel, Tom Rini,
	Yu Chien Peter Lin

Banana Pi F3 board is a industrial grade RISC-V development board, it
design with SpacemiT K1 8 core RISC-V chip, CPU integrates 2.0 TOPs AI
computing power. 4G DDR and 16G eMMC onboard.2x GbE Ethernet prot, 4x USB
3.0 and PCIe for M.2 interface, support HDMI and Dual MIPI-CSI Camera.

This patch introduces fundamental support for the Banana Pi F3 board,
encompassing UART, CPU, and PLIC support. This ensures that U-Boot can
operate in serial console mode.


Kongyang Liu (2):
  riscv: spacemit: bananapi_f3: initial support added
  doc: spacemit: bananapi_f3: document Banana Pi F3 board

 arch/riscv/Kconfig                     |   5 +
 arch/riscv/cpu/k1/Kconfig              |  18 ++
 arch/riscv/cpu/k1/Makefile             |   6 +
 arch/riscv/cpu/k1/cpu.c                |   9 +
 arch/riscv/cpu/k1/dram.c               |  39 +++
 arch/riscv/dts/Makefile                |   1 +
 arch/riscv/dts/k1-bananapi-f3.dts      |  20 ++
 arch/riscv/dts/k1.dtsi                 | 375 +++++++++++++++++++++++++
 board/spacemit/bananapi_f3/Kconfig     |  25 ++
 board/spacemit/bananapi_f3/MAINTAINERS |   6 +
 board/spacemit/bananapi_f3/Makefile    |   5 +
 board/spacemit/bananapi_f3/board.c     |   9 +
 configs/bananapi_f3_defconfig          |  20 ++
 doc/board/index.rst                    |   1 +
 doc/board/spacemit/bananapi_f3.rst     |  78 +++++
 doc/board/spacemit/index.rst           |   8 +
 include/configs/bananapi_f3.h          |  15 +
 17 files changed, 640 insertions(+)
 create mode 100644 arch/riscv/cpu/k1/Kconfig
 create mode 100644 arch/riscv/cpu/k1/Makefile
 create mode 100644 arch/riscv/cpu/k1/cpu.c
 create mode 100644 arch/riscv/cpu/k1/dram.c
 create mode 100644 arch/riscv/dts/k1-bananapi-f3.dts
 create mode 100644 arch/riscv/dts/k1.dtsi
 create mode 100644 board/spacemit/bananapi_f3/Kconfig
 create mode 100644 board/spacemit/bananapi_f3/MAINTAINERS
 create mode 100644 board/spacemit/bananapi_f3/Makefile
 create mode 100644 board/spacemit/bananapi_f3/board.c
 create mode 100644 configs/bananapi_f3_defconfig
 create mode 100644 doc/board/spacemit/bananapi_f3.rst
 create mode 100644 doc/board/spacemit/index.rst
 create mode 100644 include/configs/bananapi_f3.h

-- 
2.41.0


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

end of thread, other threads:[~2024-07-14 16:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-14 15:08 [PATCH 0/2] riscv: spacemit: bananapi_f3: add support for Banana Pi F3 board Kongyang Liu
2024-07-14 15:08 ` [PATCH 1/2] riscv: spacemit: bananapi_f3: initial support added Kongyang Liu
2024-07-14 15:48   ` Heinrich Schuchardt
2024-07-14 16:51     ` Kongyang Liu
2024-07-14 15:08 ` [PATCH 2/2] doc: spacemit: bananapi_f3: document Banana Pi F3 board Kongyang Liu
2024-07-14 15:19   ` Heinrich Schuchardt
2024-07-14 15:53     ` Kongyang Liu

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.