1&pinctrl {
2	uart0_default: uart0_default {
3		group1 {
4			psels = <NRF_PSEL(UART_TX, 1, 8)>,
5				<NRF_PSEL(UART_RTS, 0, 11)>;
6		};
7		group2 {
8			psels = <NRF_PSEL(UART_RX, 1, 9)>,
9				<NRF_PSEL(UART_CTS, 0, 12)>;
10			bias-pull-up;
11		};
12	};
13
14	uart0_sleep: uart0_sleep {
15		group1 {
16			psels = <NRF_PSEL(UART_TX, 1, 8)>,
17				<NRF_PSEL(UART_RX, 1, 9)>,
18				<NRF_PSEL(UART_RTS, 0, 11)>,
19				<NRF_PSEL(UART_CTS, 0, 12)>;
20			low-power-enable;
21		};
22	};
23
24	i2c0_default: i2c0_default {
25		group1 {
26			psels = <NRF_PSEL(TWIM_SDA, 1, 9)>,
27				<NRF_PSEL(TWIM_SCL, 1, 8)>;
28		};
29	};
30
31	i2c0_sleep: i2c0_sleep {
32		group1 {
33			psels = <NRF_PSEL(TWIM_SDA, 1, 9)>,
34				<NRF_PSEL(TWIM_SCL, 1, 8)>;
35			low-power-enable;
36		};
37	};
38
39	spi0_default: spi0_default {
40		group1 {
41			psels = <NRF_PSEL(SPIM_SCK, 0, 12)>,
42				<NRF_PSEL(SPIM_MOSI, 1, 8)>,
43				<NRF_PSEL(SPIM_MISO, 1, 9)>;
44		};
45	};
46
47	spi0_sleep: spi0_sleep {
48		group1 {
49			psels = <NRF_PSEL(SPIM_SCK, 0, 12)>,
50				<NRF_PSEL(SPIM_MOSI, 1, 8)>,
51				<NRF_PSEL(SPIM_MISO, 1, 9)>;
52			low-power-enable;
53		};
54	};
55
56};
57