1/*
2 * Copyright (c) 2022 Nordic Semiconductor
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6&pinctrl {
7	uart0_default: uart0_default {
8		group1 {
9			psels = <NRF_PSEL(UART_TX, 0, 6)>,
10				<NRF_PSEL(UART_RX, 0, 8)>,
11				<NRF_PSEL(UART_RTS, 0, 5)>,
12				<NRF_PSEL(UART_CTS, 0, 7)>;
13		};
14	};
15
16	uart0_sleep: uart0_sleep {
17		group1 {
18			psels = <NRF_PSEL(UART_TX, 0, 6)>,
19				<NRF_PSEL(UART_RX, 0, 8)>,
20				<NRF_PSEL(UART_RTS, 0, 5)>,
21				<NRF_PSEL(UART_CTS, 0, 7)>;
22			low-power-enable;
23		};
24	};
25
26	i2c0_default: i2c0_default {
27		group1 {
28			psels = <NRF_PSEL(TWIM_SDA, 0, 12)>,
29				<NRF_PSEL(TWIM_SCL, 0, 11)>;
30		};
31	};
32
33	i2c0_sleep: i2c0_sleep {
34		group1 {
35			psels = <NRF_PSEL(TWIM_SDA, 0, 12)>,
36				<NRF_PSEL(TWIM_SCL, 0, 11)>;
37			low-power-enable;
38		};
39	};
40
41	i2c1_default: i2c1_default {
42		group1 {
43			psels = <NRF_PSEL(TWIM_SDA, 0, 2)>,
44				<NRF_PSEL(TWIM_SCL, 0, 3)>;
45		};
46	};
47
48	i2c1_sleep: i2c1_sleep {
49		group1 {
50			psels = <NRF_PSEL(TWIM_SDA, 0, 2)>,
51				<NRF_PSEL(TWIM_SCL, 0, 3)>;
52			low-power-enable;
53		};
54	};
55
56	spi0_default: spi0_default {
57		group1 {
58			psels = <NRF_PSEL(SPIM_SCK, 0, 19)>,
59				<NRF_PSEL(SPIM_MOSI, 0, 20)>,
60				<NRF_PSEL(SPIM_MISO, 0, 21)>;
61		};
62	};
63
64	spi0_sleep: spi0_sleep {
65		group1 {
66			psels = <NRF_PSEL(SPIM_SCK, 0, 19)>,
67				<NRF_PSEL(SPIM_MOSI, 0, 20)>,
68				<NRF_PSEL(SPIM_MISO, 0, 21)>;
69			low-power-enable;
70		};
71	};
72
73	spi1_default: spi1_default {
74		group1 {
75			psels = <NRF_PSEL(SPIM_SCK, 0, 25)>,
76				<NRF_PSEL(SPIM_MOSI, 1, 2)>,
77				<NRF_PSEL(SPIM_MISO, 0, 24)>;
78		};
79	};
80
81	spi1_sleep: spi1_sleep {
82		group1 {
83			psels = <NRF_PSEL(SPIM_SCK, 0, 25)>,
84				<NRF_PSEL(SPIM_MOSI, 1, 2)>,
85				<NRF_PSEL(SPIM_MISO, 0, 24)>;
86			low-power-enable;
87		};
88	};
89
90	spi2_default: spi2_default {
91		group1 {
92			psels = <NRF_PSEL(SPIM_SCK, 0, 26)>,
93				<NRF_PSEL(SPIM_MOSI, 0, 23)>,
94				<NRF_PSEL(SPIM_MISO, 0, 27)>;
95		};
96	};
97
98	spi2_sleep: spi2_sleep {
99		group1 {
100			psels = <NRF_PSEL(SPIM_SCK, 0, 26)>,
101				<NRF_PSEL(SPIM_MOSI, 0, 23)>,
102				<NRF_PSEL(SPIM_MISO, 0, 27)>;
103			low-power-enable;
104		};
105	};
106
107	spi3_default: spi3_default {
108		group1 {
109			psels = <NRF_PSEL(SPIM_SCK, 0, 29)>,
110				<NRF_PSEL(SPIM_MOSI, 0, 30)>,
111				<NRF_PSEL(SPIM_MISO, 0, 31)>;
112		};
113	};
114
115	spi3_sleep: spi3_sleep {
116		group1 {
117			psels = <NRF_PSEL(SPIM_SCK, 0, 29)>,
118				<NRF_PSEL(SPIM_MOSI, 0, 30)>,
119				<NRF_PSEL(SPIM_MISO, 0, 31)>;
120			low-power-enable;
121		};
122	};
123
124};
125