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
12dut: &scb4 {
13	compatible = "infineon,uart";
14	status = "okay";
15	current-speed = <115200>;
16
17	clocks = <&peri0_group4_8bit_1>;
18
19	pinctrl-0 = <&p4_3_scb4_uart_tx &p4_2_scb4_uart_rx>;
20	pinctrl-names = "default";
21
22	dmas = <&dma0 0>, <&dma0 1>;
23	dma-names = "tx", "rx";
24};
25
26&p4_3_scb4_uart_tx {
27	drive-push-pull;
28};
29
30&p4_2_scb4_uart_rx {
31	input-enable;
32};
33
34&peri0_group4_8bit_1 {
35	status = "okay";
36	resource-type = <IFX_RSC_SCB>;
37	resource-instance = <4>;
38	clock-div = <109>;
39};
40