Enabling support for front-end modules using Simple GPIO interface
You can use the Skyworks range extenders with nRF52 and nRF53 Series devices. SKY66112-11 is one of many FEM devices that support the 2-pin PA/LNA interface. You can use SKY66112-11 as an example on how to create bindings for different devices that support the 2-pin PA/LNA interface.
The nRF Connect SDK provides code that configures FEM based on devicetree (DTS) and Kconfig information using the Multiprotocol Service Layer (MPSL) library.
The FEM hardware description in the application’s devicetree file is an essential part of the configuration.
To enable FEM support, an nrf_radio_fem
node must be present in the application’s devicetree file.
The node can be provided by the devicetree file of the target board, by an overlay file, or through the SHIELD CMake variable (see Providing CMake options).
See Devicetree Guide for more information about the DTS data structure, and Devicetree versus Kconfig for information about differences between DTS and Kconfig.
The nRF Connect SDK provides also devicetree bindings for the SKY66114-11 and SKY66403-11. For more details about devicetree binding, see: Zephyr documentation.
Note
In the naming convention used in the API of the MPSL library, the functionalities designated as PA
and LNA
apply to the ctx-gpios
and crx-gpios
pins listed below, respectively.
To use the Simple GPIO implementation of FEM with SKY66112-11, complete the following steps:
Add the following node in the devicetree file:
/ { nrf_radio_fem: name_of_fem_node { compatible = "skyworks,sky66112-11", "generic-fem-two-ctrl-pins"; ctx-gpios = <&gpio0 13 GPIO_ACTIVE_HIGH>; crx-gpios = <&gpio0 14 GPIO_ACTIVE_HIGH>; }; };
Optionally replace the node name
name_of_fem_node
.Replace the pin numbers provided for each of the required properties:
ctx-gpios
- GPIO characteristic of the device that controls theCTX
signal of SKY66112-11.crx-gpios
- GPIO characteristic of the device that controls theCRX
signal of SKY66112-11.
These properties correspond to
CTX
andCRX
pins of SKY66112-11 that are supported by software FEM.Type
phandle-array
is used here, which is common in Zephyr’s devicetree to describe GPIO signals. The first element&gpio0
refers to the GPIO port (“port 0” has been selected in the example shown). The second element is the pin number on that port. The last element must beGPIO_ACTIVE_HIGH
for SKY66112-11, but for a different FEM module you can useGPIO_ACTIVE_LOW
.The state of the other control pins should be set according to the SKY66112-11 documentation. See the official SKY66112-11 page for more information.
On nRF53 devices, you must also apply the same devicetree node mentioned in Step 1 to the network core using sysbuild. To apply the overlay to the correct network core child image, create an overlay file named
sysbuild/*childImageName*/boards/nrf5340dk_nrf5340_cpunet.overlay
in your application directory, for examplesysbuild/ipc_radio/boards/nrf5340dk_nrf5340_cpunet.overlay
. For more information, see the Migrating to sysbuild page.The childImageName default value is set to
ipc_radio
:ipc_radio
represents all applications with support for the combination of both 802.15.4 and Bluetooth. You can configure your application using the following sysbuild configurations:SB_CONFIG_NETCORE_IPC_RADIO=y
for applications having support for 802.15.4, but not for Bluetooth.SB_CONFIG_NETCORE_IPC_RADIO_BT_HCI_IPC=y
for application having support for Bluetooth, but not for 802.15.4.SB_CONFIG_NETCORE_IPC_RADIO=y
andSB_CONFIG_NETCORE_IPC_RADIO_BT_HCI_IPC=y
for multiprotocol applications having support for both 802.15.4 and Bluetooth.
Note
This step is not needed when testing with the Bluetooth: Direct Test Mode or Radio test (short-range) samples on nRF53 Series devices.
Optional FEM properties for simple GPIO
The following properties are optional for use with the simple GPIO implementation:
Properties that control the other pins:
csd-gpios - GPIO characteristic of the device that controls the CSD signal of SKY66112-11.
cps-gpios - GPIO characteristic of the device that controls the CPS signal of SKY66112-11.
chl-gpios - GPIO characteristic of the device that controls the CHL signal of SKY66112-11.
ant-sel-gpios - GPIO characteristic of the device that controls the ANT_SEL signal of devices that support antenna diversity, for example SKY66403-11.
Properties that control the timing of interface signals:
ctx-settle-time-us
- Minimal time interval between asserting theCTX
signal and starting the radio transmission, in microseconds.crx-settle-time-us
- Minimal time interval between asserting theCRX
signal and starting the radio transmission, in microseconds.
The default values of these properties are appropriate for default hardware and most use cases. You can override them if you need additional capacitors, for example when using custom hardware. In such cases, add the property name under the required properties in the devicetree node and set a new custom value.
Note
These values have some constraints. For details, see the official documentation at the SKY66112-11 page.
Properties that inform protocol drivers about gains provided by SKY66112-11:
tx-gain-db
- Transmission gain value in dB.rx-gain-db
- Reception gain value in dB.
The default values are accurate for SKY66112-11 but can be overridden when using a similar device with a different gain.
Setting the FEM output power for simple GPIO
The tx_gain_db
property in devicetree provides the FEM gain value to use with the simple GPIO FEM implementation.
The property must represent the real gain of the FEM.
This implementation does not support controlling the gain value during runtime.