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, 19)>,
10				<NRF_PSEL(UART_RX, 0, 15)>;
11		};
12	};
13
14	uart0_sleep: uart0_sleep {
15		group1 {
16			psels = <NRF_PSEL(UART_TX, 0, 19)>,
17				<NRF_PSEL(UART_RX, 0, 15)>;
18			low-power-enable;
19		};
20	};
21
22	i2c0_default: i2c0_default {
23		group1 {
24			psels = <NRF_PSEL(TWIM_SDA, 0, 24)>,
25				<NRF_PSEL(TWIM_SCL, 1, 04)>;
26			bias-pull-up;
27		};
28	};
29
30	i2c0_sleep: i2c0_sleep {
31		group1 {
32			psels = <NRF_PSEL(TWIM_SDA, 0, 24)>,
33				<NRF_PSEL(TWIM_SCL, 1, 04)>;
34			low-power-enable;
35		};
36	};
37
38	spi3_default: spi3_default {
39		group1 {
40			psels = <NRF_PSEL(SPIM_SCK, 0, 3)>,
41				<NRF_PSEL(SPIM_MOSI, 0, 8)>,
42				<NRF_PSEL(SPIM_MISO, 0, 29)>;
43		};
44	};
45
46	spi3_sleep: spi3_sleep {
47		group1 {
48			psels = <NRF_PSEL(SPIM_SCK, 0, 3)>,
49				<NRF_PSEL(SPIM_MOSI, 0, 8)>,
50				<NRF_PSEL(SPIM_MISO, 0, 29)>;
51			low-power-enable;
52		};
53	};
54};
55