mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-29 11:42:36 +00:00

Add basic support for Unisoc's UMS9620, with this patch, the board ums9620-2h10 can run into console. Link: https://lore.kernel.org/r/20231218100234.1102916-4-chunyan.zhang@unisoc.com Signed-off-by: Chunyan Zhang <chunyan.zhang@unisoc.com>
39 lines
522 B
Plaintext
39 lines
522 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0 OR MIT)
|
|
/*
|
|
* Unisoc UMS9620-2h10 board DTS file
|
|
*
|
|
* Copyright (C) 2023, Unisoc Inc.
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "ums9620.dtsi"
|
|
|
|
/ {
|
|
model = "Unisoc UMS9620-2H10 Board";
|
|
|
|
compatible = "sprd,ums9620-2h10", "sprd,ums9620";
|
|
|
|
aliases {
|
|
serial0 = &uart0;
|
|
serial1 = &uart1;
|
|
};
|
|
|
|
memory@80000000 {
|
|
device_type = "memory";
|
|
reg = <0x0 0x80000000 0x2 0x00000000>;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial1:921600n8";
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&uart1 {
|
|
status = "okay";
|
|
};
|