1/*
2 * Copyright (c) 2023 David Ullmann
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/dts-v1/;
7#include <infineon/psoc6/mpns/CY8C6244LQI_S4D92.dtsi>
8
9/ {
10	model = "Infineon PSoC 62S4 Pioneer Kit";
11	compatible ="cypress,psoc6";
12	chosen {
13		zephyr,sram = &sram0;
14		zephyr,flash = &flash0;
15		zephyr,console = &uart2;
16		zephyr,shell-uart = &uart2;
17	};
18
19	aliases {
20		led0 = &user_led;
21	};
22
23	leds {
24		compatible = "gpio-leds";
25		user_led: led_0 {
26			label = "LED_0";
27			gpios = <&gpio_prt2 5 GPIO_ACTIVE_HIGH>;
28		};
29
30	};
31
32};
33
34&p3_1_scb2_uart_tx {
35	drive-push-pull;
36};
37
38&p3_0_scb2_uart_rx {
39	input-enable;
40};
41
42
43uart2: &scb2 {
44	compatible = "infineon,cat1-uart";
45	status = "okay";
46	current-speed = <115200>;
47	pinctrl-0 = <&p3_0_scb2_uart_rx &p3_1_scb2_uart_tx>;
48	pinctrl-names = "default";
49};
50
51&gpio_prt3 {
52	status = "okay";
53};
54
55&gpio_prt2 {
56	status = "okay";
57};
58