mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
5510ee99c0
Add devicetree support for HiKey970 development board which based on Hi3670 SoC and is also one of the 96Boards Consumer Edition and AI platform. Only UART6 is enabled which is the default console required by the 96Boards Consumer Edition Specification. This patch has been tested on HiKey970 Board. Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Signed-off-by: Wei Xu <xuwei5@hisilicon.com>
36 lines
564 B
Plaintext
36 lines
564 B
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* dts file for Hisilicon HiKey970 Development Board
|
|
*
|
|
* Copyright (C) 2016, Hisilicon Ltd.
|
|
* Copyright (C) 2018, Linaro Ltd.
|
|
*
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "hi3670.dtsi"
|
|
|
|
/ {
|
|
model = "HiKey970";
|
|
compatible = "hisilicon,hi3670-hikey970", "hisilicon,hi3670";
|
|
|
|
aliases {
|
|
serial6 = &uart6; /* console UART */
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial6:115200n8";
|
|
};
|
|
|
|
memory@0 {
|
|
device_type = "memory";
|
|
/* expect bootloader to fill in this region */
|
|
reg = <0x0 0x0 0x0 0x0>;
|
|
};
|
|
};
|
|
|
|
&uart6 {
|
|
status = "okay";
|
|
};
|