]> git.baikalelectronics.ru Git - uboot.git/commit
k210: use the board vendor name rather than the marketing name
authorDamien Le Moal <damien.lemoal@opensource.wdc.com>
Tue, 1 Mar 2022 10:35:39 +0000 (10:35 +0000)
committerLeo Yu-Chi Liang <ycliang@andestech.com>
Tue, 15 Mar 2022 09:43:11 +0000 (17:43 +0800)
commitbaa764ed25f22f67564a0617b021cdadc7da60c9
tree12cca16af2089ff5c0f2666216307aefa442ef75
parent383f72c4d29caf7a8b3cbda13eeaebb8c4303527
k210: use the board vendor name rather than the marketing name

"kendryte" is the marketing name for the K210 RISC-V SoC produced by
Canaan Inc. Rather than "kendryte,k210", use the usual "canaan,k210"
vendor,SoC compatibility string format in the device tree files and
use the SoC name for file names.
With these changes, the device tree files are more in sync with the
Linux kernel DTS and drivers, making uboot device tree usable by the
kernel.

Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Signed-off-by: Niklas Cassel <niklas.cassel@wdc.com>
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
21 files changed:
MAINTAINERS
arch/riscv/dts/k210-maix-bit.dts
arch/riscv/dts/k210.dtsi
board/sipeed/maix/maix.c
doc/board/sipeed/maix.rst
doc/device-tree-bindings/mfd/canaan,k210-sysctl.txt [new file with mode: 0644]
doc/device-tree-bindings/mfd/kendryte,k210-sysctl.txt [deleted file]
doc/device-tree-bindings/pinctrl/canaan,k210-fpioa.txt [new file with mode: 0644]
doc/device-tree-bindings/pinctrl/kendryte,k210-fpioa.txt [deleted file]
doc/device-tree-bindings/spi/snps,dw-apb-ssi.txt
drivers/clk/Makefile
drivers/clk/clk_k210.c [new file with mode: 0644]
drivers/clk/clk_kendryte.c [deleted file]
drivers/pinctrl/Makefile
drivers/pinctrl/pinctrl-k210.c [new file with mode: 0644]
drivers/pinctrl/pinctrl-kendryte.c [deleted file]
drivers/spi/designware_spi.c
include/configs/sipeed-maix.h
include/k210/pll.h [new file with mode: 0644]
include/kendryte/pll.h [deleted file]
test/dm/k210_pll.c