All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2 0/2] Add OpenPiton board support
@ 2021-04-22  6:14 Tianrui Wei
  2021-04-22  6:19 ` [PATCH V2 1/2] mmc: add OpenPiton mmc support Tianrui Wei
  2021-04-22  6:24 ` [PATCH V2 0/2] Add OpenPiton board support Tianrui Wei
  0 siblings, 2 replies; 5+ messages in thread
From: Tianrui Wei @ 2021-04-22  6:14 UTC (permalink / raw)
  To: u-boot

This patch set is to add OpenPiton board support. Patches are split into
several parts:

- [PATCH 1/2] add OpenPiton support to mmc driver
- [PATCH 2/2] add support for OpenPiton board

Description

- for mmc driver, it's settings are automatically configured at hardware level.
  We only need to expose the memory mapped interface through U-Boot driver model
- For OpenPiton, as we need to embed the device tree blob into the bitstream,
  there is currently no itb support

Tests checks

- Able to boot Debian Linux from SD card on Digilent Genesys 2
- Checkpatch is performed, with some warnings ignored

Changelogs
- V2
  . fix styles and typos in [1/2] and [2/2]
  . add board documentation in [2/2]

 arch/riscv/Kconfig                      |   4 +
 arch/riscv/dts/Makefile                 |   1 +
 arch/riscv/dts/openpiton-riscv64.dts    | 159 +++++
 board/openpiton/riscv/Kconfig           |  42 ++
 board/openpiton/riscv/MAINTAINERS       |   6 +
 board/openpiton/riscv/Makefile          |   5 +
 board/openpiton/riscv/openpiton-riscv.c |  41 ++
 configs/openpiton_riscv64_defconfig     | 132 ++++
 doc/board/index.rst                     |   1 +
 doc/board/openpiton/index.rst           |   9 +
 doc/board/openpiton/riscv64.rst         | 885 ++++++++++++++++++++++++
 drivers/mmc/Kconfig                     |   6 +
 drivers/mmc/Makefile                    |   1 +
 drivers/mmc/piton_mmc.c                 | 177 +++++
 include/configs/openpiton-riscv.h       |  58 ++
 15 files changed, 1527 insertions(+)
 create mode 100644 arch/riscv/dts/openpiton-riscv64.dts
 create mode 100644 board/openpiton/riscv/Kconfig
 create mode 100644 board/openpiton/riscv/MAINTAINERS
 create mode 100644 board/openpiton/riscv/Makefile
 create mode 100644 board/openpiton/riscv/openpiton-riscv.c
 create mode 100644 configs/openpiton_riscv64_defconfig
 create mode 100644 doc/board/openpiton/index.rst
 create mode 100644 doc/board/openpiton/riscv64.rst
 create mode 100644 drivers/mmc/piton_mmc.c
 create mode 100644 include/configs/openpiton-riscv.h
--
2.17.1  

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

end of thread, other threads:[~2021-04-22 10:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-22  6:14 [PATCH V2 0/2] Add OpenPiton board support Tianrui Wei
2021-04-22  6:19 ` [PATCH V2 1/2] mmc: add OpenPiton mmc support Tianrui Wei
2021-04-22  6:55   ` Jaehoon Chung
2021-04-22 10:34     ` Tianrui Wei
2021-04-22  6:24 ` [PATCH V2 0/2] Add OpenPiton board support Tianrui Wei

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.