From: Sean Anderson <seanga2@gmail.com>
To: u-boot@lists.denx.de
Subject: [PATCH 00/11] riscv: Add Sipeed Maix support
Date: Tue, 31 Dec 2019 17:39:52 -0500 [thread overview]
Message-ID: <29dd818b-dff7-a44d-1e6c-493726d68f93@gmail.com> (raw)
This patch series adds support for Sipeed Maix boards and the
Kendryte K210 CPU. Currently, only the Maix Bit V2.0 is supported,
however other models are similar. This series depends on
<https://patchwork.ozlabs.org/patch/1215326/> and
<https://patchwork.ozlabs.org/patch/1215327/>.
(log: Include missing header for log.h)
(clk: Include missing headers for linux/clk-provider.h)
To flash u-boot to a maix bit, run
kflash -tp /dev/<your tty here> -B bit_mic -S SLOW u-boot-dtb.bin
Boot output should look like the following:
U-Boot 2020.01-rc5+ (Dec 31 2019 - 16:05:31 -0500)
CPU: rv64acdfim
DRAM: 8 MiB
MMC:
In: serial at 38000000
Out: serial at 38000000
Err: serial at 38000000
Model: Sipeed Maix
=>
Sean Anderson (11):
clk: Always use the supplied struct clk
clk: Check that ops of composite clock components exist before calling
riscv: Add headers for asm/global_data.h
riscv: Add an option to default to RV64I
riscv: Enable SiFive UART support pre-relocation
riscv: Add initial Sipeed Maix support
riscv: Add device tree for K210
riscv: Add K210 sysctl support
riscv: Add K210 pll support
riscv: Add K210 clock support
riscv: Add option to disable writes to mcounteren
arch/riscv/Kconfig | 16 +
arch/riscv/cpu/cpu.c | 2 +
arch/riscv/dts/Makefile | 1 +
arch/riscv/dts/k210-maix-bit.dts | 42 +++
arch/riscv/dts/k210.dtsi | 455 ++++++++++++++++++++++++
arch/riscv/include/asm/global_data.h | 2 +
arch/riscv/include/asm/k210_sysctl.h | 43 +++
arch/riscv/lib/Makefile | 1 +
arch/riscv/lib/k210_sysctl.c | 22 ++
board/sipeed/maix/Kconfig | 49 +++
board/sipeed/maix/MAINTAINERS | 13 +
board/sipeed/maix/Makefile | 5 +
board/sipeed/maix/maix.c | 9 +
configs/sipeed_maix_bitm_config | 139 ++++++++
drivers/clk/Kconfig | 1 +
drivers/clk/Makefile | 1 +
drivers/clk/clk-composite.c | 65 ++--
drivers/clk/clk-divider.c | 6 +-
drivers/clk/clk-fixed-factor.c | 3 +-
drivers/clk/clk-gate.c | 6 +-
drivers/clk/clk-mux.c | 12 +-
drivers/clk/imx/clk-gate2.c | 4 +-
drivers/clk/kendryte/Kconfig | 7 +
drivers/clk/kendryte/Makefile | 1 +
drivers/clk/kendryte/clk.c | 391 ++++++++++++++++++++
drivers/clk/kendryte/clk.h | 27 ++
drivers/clk/kendryte/pll.c | 455 ++++++++++++++++++++++++
drivers/clk/kendryte/pll.h | 38 ++
drivers/serial/serial_sifive.c | 1 +
include/configs/sipeed-maix.h | 19 +
include/dt-bindings/clock/k210-sysctl.h | 54 +++
include/dt-bindings/reset/k210-sysctl.h | 39 ++
32 files changed, 1887 insertions(+), 42 deletions(-)
create mode 100644 arch/riscv/dts/k210-maix-bit.dts
create mode 100644 arch/riscv/dts/k210.dtsi
create mode 100644 arch/riscv/include/asm/k210_sysctl.h
create mode 100644 arch/riscv/lib/k210_sysctl.c
create mode 100644 board/sipeed/maix/Kconfig
create mode 100644 board/sipeed/maix/MAINTAINERS
create mode 100644 board/sipeed/maix/Makefile
create mode 100644 board/sipeed/maix/maix.c
create mode 100644 configs/sipeed_maix_bitm_config
create mode 100644 drivers/clk/kendryte/Kconfig
create mode 100644 drivers/clk/kendryte/Makefile
create mode 100644 drivers/clk/kendryte/clk.c
create mode 100644 drivers/clk/kendryte/clk.h
create mode 100644 drivers/clk/kendryte/pll.c
create mode 100644 drivers/clk/kendryte/pll.h
create mode 100644 include/configs/sipeed-maix.h
create mode 100644 include/dt-bindings/clock/k210-sysctl.h
create mode 100644 include/dt-bindings/reset/k210-sysctl.h
--
2.24.1
next reply other threads:[~2019-12-31 22:39 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-31 22:39 Sean Anderson [this message]
2019-12-31 22:42 ` [PATCH 01/11] clk: Always use the supplied struct clk Sean Anderson
2020-01-02 5:01 ` Jagan Teki
2019-12-31 22:43 ` [PATCH 02/11] clk: Check that ops of composite clock components exist, before calling Sean Anderson
2019-12-31 22:44 ` [PATCH 03/11] riscv: Add headers for asm/global_data.h Sean Anderson
2019-12-31 22:45 ` [PATCH 04/11] riscv: Add an option to default to RV64I Sean Anderson
2019-12-31 22:46 ` [PATCH 05/11] riscv: Enable SiFive UART support pre-relocation Sean Anderson
2019-12-31 22:47 ` [PATCH 06/11] riscv: Add initial Sipeed Maix support Sean Anderson
2019-12-31 22:48 ` [PATCH 07/11] riscv: Add device tree for K210 Sean Anderson
2019-12-31 22:49 ` [PATCH 08/11] riscv: Add K210 sysctl support Sean Anderson
2019-12-31 22:50 ` [PATCH 09/11] riscv: Add K210 pll support Sean Anderson
2019-12-31 22:50 ` [PATCH 10/11] riscv: Add K210 clock support Sean Anderson
2019-12-31 22:51 ` [PATCH 11/11] riscv: Add option to disable writes to mcounteren Sean Anderson
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=29dd818b-dff7-a44d-1e6c-493726d68f93@gmail.com \
--to=seanga2@gmail.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