| /* |
| * 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 = "riscv"; |
| reg = <0>; |
| }; |
| }; |
| |
| soc { |
| #address-cells = <1>; |
| #size-cells = <1>; |
| compatible = "simple-bus"; |
| ranges; |
| |
| sram0: memory@3fc7c000 { |
| compatible = "mmio-sram"; |
| reg = <0x3fc7c000 0x50000>; |
| }; |
| |
| uart0: uart@60000000 { |
| compatible = "espressif,esp32c3-uart"; |
| reg = <0x60000000 0x400>; |
| label = "UART_0"; |
| status = "disabled"; |
| }; |
| }; |
| |
| }; |