1/*
2 * Copyright (c) 2025 Infineon Technologies AG,
3 * or an affiliate of Infineon Technologies AG.
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
8&dma0 {
9	status = "okay";
10};
11
12&scb3 {
13	compatible = "infineon,uart";
14	status = "okay";
15	current-speed = <115200>;
16
17	clocks = <&peri0_group4_8bit_0>;
18
19	pinctrl-0 = <&p6_3_scb3_uart_tx &p6_2_scb3_uart_rx>;
20	pinctrl-names = "default";
21
22	dmas = <&dma0 0>, <&dma0 1>;
23	dma-names = "tx", "rx";
24};
25