1/* SPDX-License-Identifier: Apache-2.0 */
2
3&pinctrl {
4	uart135_default_alt: uart135_default_alt {
5		group1 {
6			psels = <NRF_PSEL(UART_RX, 0, 6)>;
7			bias-pull-up;
8		};
9		group2 {
10			psels = <NRF_PSEL(UART_RTS, 0, 8)>;
11		};
12	};
13
14	uart135_sleep_alt: uart135_sleep_alt {
15		group1 {
16			psels = <NRF_PSEL(UART_RX, 0, 6)>,
17				<NRF_PSEL(UART_RTS, 0, 8)>;
18			low-power-enable;
19		};
20	};
21};
22
23&pinctrl {
24	uart137_default_alt: uart137_default_alt {
25		group1 {
26			psels = <NRF_PSEL(UART_TX, 0, 7)>;
27		};
28		group2 {
29			psels =
30				<NRF_PSEL(UART_CTS, 0, 9)>;
31				bias-pull-up;
32		};
33	};
34
35	uart137_sleep_alt: uart137_sleep_alt {
36		group1 {
37			psels = <NRF_PSEL(UART_TX, 0, 7)>,
38				<NRF_PSEL(UART_CTS, 0, 9)>;
39			low-power-enable;
40		};
41	};
42};
43
44&gpio0 {
45	status = "okay";
46};
47
48dut: &uart135 {
49	status = "okay";
50	memory-regions = <&cpuapp_dma_region>;
51	pinctrl-0 = <&uart135_default_alt>;
52	pinctrl-1 = <&uart135_sleep_alt>;
53	pinctrl-names = "default", "sleep";
54	current-speed = <115200>;
55};
56
57dut_aux: &uart137 {
58	status = "okay";
59	memory-regions = <&cpuapp_dma_region>;
60	pinctrl-0 = <&uart137_default_alt>;
61	pinctrl-1 = <&uart137_sleep_alt>;
62	pinctrl-names = "default", "sleep";
63	current-speed = <115200>;
64	disable-rx;
65};
66