1/* SPDX-License-Identifier: Apache-2.0 */
2
3&cpuapp_dma_region {
4	status="okay";
5};
6
7&pinctrl {
8	uart135_default_alt: uart135_default_alt {
9		group1 {
10			psels = <NRF_PSEL(UART_TX, 0, 6)>,
11				<NRF_PSEL(UART_RX, 0, 7)>,
12				<NRF_PSEL(UART_RTS, 0, 8)>,
13				<NRF_PSEL(UART_CTS, 0, 9)>;
14		};
15	};
16
17	uart135_sleep_alt: uart135_sleep_alt {
18		group1 {
19			psels = <NRF_PSEL(UART_TX, 0, 6)>,
20				<NRF_PSEL(UART_RX, 0, 7)>,
21				<NRF_PSEL(UART_RTS, 0, 8)>,
22				<NRF_PSEL(UART_CTS, 0, 9)>;
23			low-power-enable;
24		};
25	};
26};
27
28dut: &uart135 {
29	status = "okay";
30	memory-regions = <&cpuapp_dma_region>;
31	pinctrl-0 = <&uart135_default_alt>;
32	pinctrl-1 = <&uart135_sleep_alt>;
33	pinctrl-names = "default", "sleep";
34	current-speed = <115200>;
35	hw-flow-control;
36
37};
38