mirror of
https://github.com/smaeul/u-boot.git
synced 2025-11-25 05:10:06 +00:00
Import device tree from Linux kernel to add basic support for CPU, PLIC, UART and Timer. The name cv1800b in the filename represent the chip used on Milk-V Duo board. Signed-off-by: Kongyang Liu <seashell11234455@gmail.com> Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
19 lines
312 B
Plaintext
19 lines
312 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0 OR MIT)
|
|
/*
|
|
* Copyright (C) 2023 Jisheng Zhang <jszhang@kernel.org>
|
|
*/
|
|
|
|
#include "cv18xx.dtsi"
|
|
|
|
/ {
|
|
compatible = "sophgo,cv1800b";
|
|
};
|
|
|
|
&plic {
|
|
compatible = "sophgo,cv1800b-plic", "thead,c900-plic";
|
|
};
|
|
|
|
&clint {
|
|
compatible = "sophgo,cv1800b-clint", "thead,c900-clint";
|
|
};
|