1/* Copyright (c) 2016 Zephyr Contributors */
2/* SPDX-License-Identifier: Apache-2.0 */
3
4/dts-v1/;
5
6#include <ti/lm3s6965.dtsi>
7
8/ {
9	model = "QEMU Cortex-M3";
10	compatible = "ti,lm3s6965evb-qemu", "ti,lm3s6965";
11
12	aliases {
13		uart-0 = &uart0;
14		uart-1 = &uart1;
15		uart-2 = &uart2;
16	};
17
18	chosen {
19		zephyr,sram = &sram0;
20		zephyr,flash = &flash0;
21		zephyr,console = &uart0;
22		zephyr,shell-uart = &uart0;
23		zephyr,bt-hci = &bt_hci_uart;
24		zephyr,uart-pipe = &uart1;
25		zephyr,bt-mon-uart = &uart2;
26	};
27};
28
29&uart0 {
30	status = "okay";
31	current-speed = <115200>;
32};
33
34&uart1 {
35	status = "okay";
36	current-speed = <115200>;
37};
38
39&uart2 {
40	status = "okay";
41	current-speed = <115200>;
42
43	bt_hci_uart: bt_hci_uart {
44		compatible = "zephyr,bt-hci-uart";
45		status = "okay";
46	};
47};
48
49&eth {
50	status = "okay";
51};
52
53&gpio0 {
54	status = "okay";
55};
56
57&gpio1 {
58	status = "okay";
59};
60
61&gpio2 {
62	status = "okay";
63};
64
65&gpio3 {
66	status = "okay";
67};
68
69&gpio4 {
70	status = "okay";
71};
72
73&gpio5 {
74	status = "okay";
75};
76
77&gpio6 {
78	status = "okay";
79};
80