2017-07-10 22:04:15 +08:00
|
|
|
/dts-v1/;
|
|
|
|
|
2018-09-15 12:21:56 +08:00
|
|
|
#include <mem.h>
|
|
|
|
|
|
|
|
#define DT_FLASH_SIZE DT_SIZE_K(192)
|
|
|
|
#define DT_SRAM_SIZE DT_SIZE_K(52)
|
2017-11-07 01:32:33 +08:00
|
|
|
|
2017-07-10 22:04:15 +08:00
|
|
|
#include "intel_curie.dtsi"
|
|
|
|
|
|
|
|
/ {
|
|
|
|
model = "tinytile board";
|
|
|
|
compatible = "intel,tinytile", "intel,quark_se_c100";
|
|
|
|
|
|
|
|
aliases {
|
2018-04-11 00:56:14 +08:00
|
|
|
uart-0 = &uart0;
|
|
|
|
uart-1 = &uart1;
|
2017-07-10 22:04:15 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
chosen {
|
|
|
|
zephyr,sram = &sram0;
|
|
|
|
zephyr,flash = &flash0;
|
2017-08-24 23:08:45 +08:00
|
|
|
#ifdef CONFIG_USB_UART_CONSOLE
|
|
|
|
zephyr,console = &usb_cdc;
|
|
|
|
#else
|
2017-07-10 22:04:15 +08:00
|
|
|
zephyr,console = &uart1;
|
2017-08-24 23:08:45 +08:00
|
|
|
#endif
|
2017-07-10 22:04:15 +08:00
|
|
|
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>;
|
|
|
|
};
|
2018-03-25 07:47:36 +08:00
|
|
|
|
|
|
|
&i2c0 {
|
|
|
|
status = "ok";
|
|
|
|
clock-frequency = <I2C_BITRATE_FAST>;
|
|
|
|
};
|
|
|
|
|
|
|
|
&i2c1 {
|
|
|
|
status = "ok";
|
|
|
|
clock-frequency = <I2C_BITRATE_FAST>;
|
|
|
|
};
|