1/* 2 * Copyright (c) 2023 Efinix Inc. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/dts-v1/; 8 9#include <efinix/sapphire_soc.dtsi> 10 11/ { 12 model = "Efinix Titanium Ti60 F225"; 13 compatible = "efinix,titanium-ti60-f225"; 14 15 chosen { 16 zephyr,console = &uart0; 17 zephyr,shell-uart = &uart0; 18 zephyr,sram = &ram0; 19 }; 20 21 aliases { 22 led0 = &green_led; 23 }; 24 25 leds { 26 compatible = "gpio-leds"; 27 28 green_led: led_0 { 29 gpios = <&gpio0 3 GPIO_ACTIVE_LOW>; 30 label = "Green LED 3"; 31 }; 32 33 34 red_led: led_1 { 35 gpios = <&gpio0 2 GPIO_ACTIVE_LOW>; 36 label = "Red LED 2"; 37 }; 38 39 blue_led: led_2 { 40 gpios = <&gpio0 1 GPIO_ACTIVE_LOW>; 41 label = "Blue LED 1"; 42 }; 43 44 }; 45 46}; 47 48&uart0 { 49 status = "okay"; 50 current-speed = <115200>; 51}; 52 53&gpio0 { 54 status = "okay"; 55}; 56