forked from Minki/linux
3c0e3abd5e
SC9860G is a 8 cores of A53 SoC with 4G LTE support SoC from Spreadtrum. According to regular hierarchy of sprd dts, whale2.dtsi contains SoC peripherals IP nodes, sc9860.dtsi contains stuff related to ARM core stuff and sp9860g dts is for the board level. Signed-off-by: Orson Zhai <orson.zhai@spreadtrum.com> Signed-off-by: Chunyan Zhang <chunyan.zhang@spreadtrum.com> Reviewed-by: Mathieu Poirier <mathieu.poirier@linaro.org> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
57 lines
814 B
Plaintext
57 lines
814 B
Plaintext
/*
|
|
* Spreadtrum SP9860g board
|
|
*
|
|
* Copyright (C) 2017, Spreadtrum Communications Inc.
|
|
*
|
|
* SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "sc9860.dtsi"
|
|
|
|
/ {
|
|
model = "Spreadtrum SP9860G 3GFHD Board";
|
|
|
|
compatible = "sprd,sp9860g-1h10", "sprd,sc9860";
|
|
|
|
aliases {
|
|
serial0 = &uart0; /* for Bluetooth */
|
|
serial1 = &uart1; /* UART console */
|
|
serial2 = &uart2; /* Reserved */
|
|
serial3 = &uart3; /* for GPS */
|
|
};
|
|
|
|
memory{
|
|
device_type = "memory";
|
|
reg = <0x0 0x80000000 0 0x60000000>,
|
|
<0x1 0x80000000 0 0x60000000>;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial1:115200n8";
|
|
};
|
|
|
|
reserved-memory {
|
|
#address-cells = <2>;
|
|
#size-cells = <2>;
|
|
ranges;
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
status = "okay";
|
|
};
|
|
|
|
&uart1 {
|
|
status = "okay";
|
|
};
|
|
|
|
&uart2 {
|
|
status = "okay";
|
|
};
|
|
|
|
&uart3 {
|
|
status = "okay";
|
|
};
|