All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tianrui Wei <tianrui-wei@outlook.com>
To: u-boot@lists.denx.de
Subject: [PATCH V2 0/2] Add OpenPiton board support
Date: Thu, 22 Apr 2021 14:14:48 +0800	[thread overview]
Message-ID: <SY4PR01MB67984A4216854CD0EC021B66F6469@SY4PR01MB6798.ausprd01.prod.outlook.com> (raw)

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  

             reply	other threads:[~2021-04-22  6:14 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-22  6:14 Tianrui Wei [this message]
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

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=SY4PR01MB67984A4216854CD0EC021B66F6469@SY4PR01MB6798.ausprd01.prod.outlook.com \
    --to=tianrui-wei@outlook.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 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.