mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
Add device tree support for the Black Sesame Technologies (BST) C1200 CDCU1.0 ADAS 4C2G platform. This platform is based on the BST C1200 SoC family. The changes include: - Adding a new BST device tree directory - Adding Makefile entries to build the BST platform device trees - Adding the device tree for the BST C1200 CDCU1.0 ADAS 4C2G board This board features a quad-core Cortex-A78 CPU, and various peripherals including UART, and interrupt controller. Signed-off-by: Albert Yang <yangzh0906@thundersoft.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
25 lines
425 B
Plaintext
25 lines
425 B
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
/dts-v1/;
|
|
|
|
#include "bstc1200.dtsi"
|
|
|
|
/ {
|
|
model = "BST C1200-96 CDCU1.0 4C2G";
|
|
compatible = "bst,c1200-cdcu1.0-adas-4c2g", "bst,c1200";
|
|
|
|
chosen {
|
|
stdout-path = "serial0:115200n8";
|
|
};
|
|
|
|
memory@810000000 {
|
|
device_type = "memory";
|
|
reg = <0x8 0x10000000 0x0 0x30000000>,
|
|
<0x8 0xc0000000 0x1 0x0>,
|
|
<0xc 0x00000000 0x0 0x40000000>;
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
status = "okay";
|
|
};
|