Move the dts files into the board dir so that board ports can be more standalone. This will allow us at some point to have board ports outside of the tree. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
37 lines
548 B
Plaintext
37 lines
548 B
Plaintext
/dts-v1/;
|
|
|
|
#include "intel_curie.dtsi"
|
|
|
|
/ {
|
|
model = "tinytile board";
|
|
compatible = "intel,tinytile", "intel,quark_se_c100";
|
|
|
|
aliases {
|
|
uart_0 = &uart0;
|
|
uart_1 = &uart1;
|
|
};
|
|
|
|
chosen {
|
|
zephyr,sram = &sram0;
|
|
zephyr,flash = &flash0;
|
|
#ifdef CONFIG_USB_UART_CONSOLE
|
|
zephyr,console = &usb_cdc;
|
|
#else
|
|
zephyr,console = &uart1;
|
|
#endif
|
|
zephyr,bt-uart = &uart0;
|
|
zephyr,uart-pipe = &uart1;
|
|
zephyr,bt-mon-uart = &uart1;
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
status = "ok";
|
|
current-speed = <1000000>;
|
|
};
|
|
|
|
&uart1 {
|
|
status = "ok";
|
|
current-speed = <115200>;
|
|
};
|