dts: provide dts files for non st stm32 based boards

This commits provides dts files for non ST, STM32 based boards.

Change-Id: Ib324ba418fb27ddbce45a60fbe8e73c7b6896aa4
Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Erwan Gouriou 2017-04-05 09:32:49 +02:00 committed by Kumar Gala
commit 4ddf525418
2 changed files with 48 additions and 0 deletions

24
dts/arm/96b_carbon.dts Normal file
View file

@ -0,0 +1,24 @@
/*
* Copyright (c) 2017 Linaro Limited
*
* SPDX-License-Identifier: Apache-2.0
*/
/dts-v1/;
#include <st/stm32f401.dtsi>
/ {
model = "STMicroelectronics STM32F401RE-NUCLEO board";
compatible = "st,stm32f401re-nucleo", "st,stm32f401";
chosen {
zephyr,console = &usart1;
zephyr,sram = &sram0;
zephyr,flash = &flash0;
};
};
&usart1 {
baud-rate = <115200>;
status = "ok";
};

View file

@ -0,0 +1,24 @@
/*
* Copyright (c) 2017 Linaro Limited
*
* SPDX-License-Identifier: Apache-2.0
*/
/dts-v1/;
#include <st/stm32f103xe.dtsi>
/ {
model = "STM32 MINI A15 board";
compatible = "st,stm32_mini_a15", "st,stm32f103xe";
chosen {
zephyr,console = &usart1;
zephyr,sram = &sram0;
zephyr,flash = &flash0;
};
};
&usart1 {
baud-rate = <115200>;
status = "ok";
};