Add support for TI's SensorTag board, which uses a CC2650 SoC. Signed-off-by: Geoffrey Le Gourriérec <geoffrey.legourrierec@smile.fr>
67 lines
1.1 KiB
Text
67 lines
1.1 KiB
Text
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Device Tree include file for CC2650 SoC from Texas Instruments.
|
|
*/
|
|
|
|
#include "armv7-m.dtsi"
|
|
|
|
/ {
|
|
soc {
|
|
cpus {
|
|
cpu@0 {
|
|
compatible = "arm,cortex-m3";
|
|
};
|
|
};
|
|
|
|
sram0: memory {
|
|
compatible = "sram";
|
|
reg = <0x20000000 0x5000>;
|
|
};
|
|
|
|
flash0: serial-flash {
|
|
compatible = "serial-flash";
|
|
reg = <0x0 0x20000>;
|
|
};
|
|
|
|
gpioa: gpio@40022000 {
|
|
compatible = "ti,cc2650-gpio";
|
|
reg = <0x40022000 0xE4>;
|
|
interrupts = <0 0>;
|
|
zephyr,irq-prio = <0>;
|
|
status = "disabled";
|
|
|
|
gpio-controller;
|
|
#gpio-cells = <1>;
|
|
};
|
|
|
|
pinmux_a: pinmux@40081000 {
|
|
compatible = "ti,cc2650-pinmux";
|
|
reg = <0x40081000 0x80>;
|
|
};
|
|
|
|
prcm0: prcm@40082000 {
|
|
compatible = "ti,cc2650-prcm";
|
|
reg = <0x40082000 0x228>;
|
|
};
|
|
|
|
trng0: trng@40028000 {
|
|
compatible = "ti,cc2650-trng";
|
|
reg = <0x40028000 0x1FFC>;
|
|
interrupts = <33 0>;
|
|
status = "disabled";
|
|
};
|
|
|
|
uart0: uart@40001000 {
|
|
compatible = "ti,stellaris-uart";
|
|
reg = <0x40001000 0x4C>;
|
|
interrupts = <5 0>, <6 0>;
|
|
status = "disabled";
|
|
label = "UART_0";
|
|
};
|
|
};
|
|
};
|
|
|
|
&nvic {
|
|
arm,num-irq-priority-bits = <3>;
|
|
};
|