The Linux vendor prefixes list uses 'cdns'. Match it, especially since we have that prefix in our own list as well. Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
42 lines
678 B
Text
42 lines
678 B
Text
/*
|
|
* Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#include <mem.h>
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
cpus {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
cpu0: cpu@0 {
|
|
device_type = "cpu";
|
|
compatible = "cdns,tensilica-xtensa-lx7";
|
|
reg = <0>;
|
|
};
|
|
};
|
|
|
|
soc {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
compatible = "simple-bus";
|
|
ranges;
|
|
|
|
sram0: memory@3ffb0000 {
|
|
compatible = "mmio-sram";
|
|
reg = <0x3ffb0000 0x50000>;
|
|
};
|
|
|
|
uart0: uart@3f400000 {
|
|
compatible = "espressif,esp32s2-uart";
|
|
reg = <0x3f400000 0x400>;
|
|
label = "UART_0";
|
|
status = "disabled";
|
|
};
|
|
};
|
|
|
|
};
|