zephyr/boards/riscv/esp32c3_devkitm/esp32c3_devkitm.dts
Felipe Neves 0a0fed7879 drivers: spi: esp32: add esp32c3 support
to the esp32 spi unified driver

Signed-off-by: Felipe Neves <felipe.neves@espressif.com>
2021-11-01 21:47:26 -04:00

70 lines
1 KiB
Text

/*
* Copyright (c) 2021 Espressif Systems (Shanghai) Co., Ltd.
*
* SPDX-License-Identifier: Apache-2.0
*/
/dts-v1/;
#include <espressif/esp32c3.dtsi>
/ {
model = "esp32c3_devkitm";
compatible = "espressif,esp32c3";
chosen {
zephyr,sram = &sram0;
zephyr,console = &uart0;
zephyr,shell-uart = &uart0;
zephyr,flash = &flash0;
};
aliases {
sw0 = &user_button1;
};
gpio_keys {
compatible = "gpio-keys";
user_button1: button_1 {
label = "User SW1";
gpios = <&gpio0 9 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
};
};
};
&uart0 {
status = "okay";
current-speed = <115200>;
};
&trng0 {
status = "okay";
};
&spi2 {
#address-cells = <1>;
#size-cells = <0>;
status = "okay";
miso-pin = <2>;
mosi-pin = <7>;
sclk-pin = <6>;
csel-pin = <10>;
};
&gpio0 {
status = "okay";
};
&flash0 {
status = "okay";
partitions {
compatible = "fixed-partitions";
#address-cells = <1>;
#size-cells = <1>;
storage_partition: partition@9000 {
label = "storage";
reg = <0x00009000 0x00006000>;
};
};
};