mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
f1da5ea670
Add basic DT to support Unisoc's SC9863A, with this patch, the board sp9863a-1h10 can run into console. Link: https://lore.kernel.org/r/20191223092948.24824-4-zhang.lyra@gmail.com Signed-off-by: Chunyan Zhang <chunyan.zhang@unisoc.com> Signed-off-by: Olof Johansson <olof@lixom.net>
40 lines
548 B
Plaintext
40 lines
548 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Unisoc SP9863A-1h10 boards DTS file
|
|
*
|
|
* Copyright (C) 2019, Unisoc Inc.
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "sc9863a.dtsi"
|
|
|
|
/ {
|
|
model = "Spreadtrum SP9863A-1H10 Board";
|
|
|
|
compatible = "sprd,sp9863a-1h10", "sprd,sc9863a";
|
|
|
|
aliases {
|
|
serial0 = &uart0;
|
|
serial1 = &uart1;
|
|
};
|
|
|
|
memory@80000000 {
|
|
device_type = "memory";
|
|
reg = <0x0 0x80000000 0x0 0x80000000>;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial1:115200n8";
|
|
bootargs = "earlycon";
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&uart1 {
|
|
status = "okay";
|
|
};
|