mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-18 01:41:55 +00:00
To move forward and remove use of Kconfig in dts files lets just create SoC specific dtsi files that the boards can include. We also seperate out the F7 dtsi files into their own dir. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
80 lines
1.2 KiB
Plaintext
80 lines
1.2 KiB
Plaintext
/*
|
|
* Copyright (c) 2018 Aurelien Jarno
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/dts-v1/;
|
|
#include <st/f7/stm32f723Xe.dtsi>
|
|
|
|
/ {
|
|
model = "STMicroelectronics STM32F723E DISCOVERY board";
|
|
compatible = "st,stm32f723e-disco", "st,stm32f723";
|
|
|
|
chosen {
|
|
zephyr,console = &usart6;
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
};
|
|
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
blue_led: led_1 {
|
|
gpios = <&gpioa 5 GPIO_INT_ACTIVE_HIGH>;
|
|
label = "User LD1";
|
|
};
|
|
red_led: led_2 {
|
|
gpios = <&gpioa 7 GPIO_INT_ACTIVE_HIGH>;
|
|
label = "User LD5";
|
|
};
|
|
green_led: led_3 {
|
|
gpios = <&gpiob 1 GPIO_INT_ACTIVE_HIGH>;
|
|
label = "User LD6";
|
|
};
|
|
};
|
|
|
|
gpio_keys {
|
|
compatible = "gpio-keys";
|
|
user_button: button {
|
|
label = "User";
|
|
gpios = <&gpioa 0 GPIO_INT_ACTIVE_HIGH>;
|
|
};
|
|
};
|
|
|
|
aliases {
|
|
led0 = &blue_led;
|
|
led1 = &red_led;
|
|
led2 = &green_led;
|
|
sw0 = &user_button;
|
|
};
|
|
};
|
|
|
|
&usart2 {
|
|
current-speed = <115200>;
|
|
pinctrl-names = "default";
|
|
status = "ok";
|
|
};
|
|
|
|
&usart6 {
|
|
current-speed = <115200>;
|
|
pinctrl-names = "default";
|
|
status = "ok";
|
|
};
|
|
|
|
|
|
&i2c1 {
|
|
status = "ok";
|
|
};
|
|
|
|
&i2c2 {
|
|
status = "ok";
|
|
};
|
|
|
|
&i2c3 {
|
|
status = "ok";
|
|
};
|
|
|
|
&usbotg_fs {
|
|
status = "ok";
|
|
};
|