1/*
2 * Copyright (c) 2022 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&radio {
8	status = "okay";
9	/* This is a number of antennas that are available on antenna matrix
10	 * designed by Nordic. For more information see README.rst.
11	 */
12	dfe-antenna-num = <12>;
13	/* This is a setting that enables antenna 12 (in antenna matrix designed
14	 * by Nordic) for Rx PDU. For more information see README.rst.
15	 */
16	dfe-pdu-antenna = <0x0>;
17
18	/* These are GPIO pin numbers that are provided to
19	 * Radio peripheral. The pins will be acquired by Radio to
20	 * drive antenna switching when AoA is enabled.
21	 * Pin numbers are selected to drive switches on antenna matrix
22	 * designed by Nordic. For more information see README.rst.
23	 */
24	dfegpio0-gpios = <&gpio0 3 0>;
25	dfegpio1-gpios = <&gpio0 4 0>;
26	dfegpio2-gpios = <&gpio0 28 0>;
27	dfegpio3-gpios = <&gpio0 29 0>;
28};
29