boards: silabs: add EK2703A support
Based on board files for DK2601B. The EFR32xG24 Explorer Kit (xG24-EK2703A) is similar to the DK2601B but does not have any sensors onboard. Signed-off-by: Daniel Fuchs <software@sagacioussuricata.com>
This commit is contained in:
parent
f0fee215ab
commit
32e39c164c
14 changed files with 546 additions and 0 deletions
5
boards/silabs/dev_kits/xg24_ek2703a/CMakeLists.txt
Normal file
5
boards/silabs/dev_kits/xg24_ek2703a/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Copyright (c) 2024 Norik Systems
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
zephyr_library()
|
||||
zephyr_library_sources(board.c)
|
||||
16
boards/silabs/dev_kits/xg24_ek2703a/Kconfig
Normal file
16
boards/silabs/dev_kits/xg24_ek2703a/Kconfig
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# EFR32XG24 EK2703A board
|
||||
|
||||
# Copyright (c) 2022, Silicon Labs
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_XG24_EK2703A
|
||||
|
||||
config BOARD_XG24_EK2703A
|
||||
select GPIO
|
||||
select BOARD_LATE_INIT_HOOK
|
||||
|
||||
module = BOARD_EFR32MG24
|
||||
module-str = Board Control
|
||||
source "subsys/logging/Kconfig.template.log_config"
|
||||
|
||||
endif # BOARD_XG24_EK2703A
|
||||
26
boards/silabs/dev_kits/xg24_ek2703a/Kconfig.defconfig
Normal file
26
boards/silabs/dev_kits/xg24_ek2703a/Kconfig.defconfig
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# Copyright (c) 2021, Sateesh Kotapati
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
if BOARD_XG24_EK2703A
|
||||
|
||||
config CMU_HFXO_FREQ
|
||||
default 39000000
|
||||
|
||||
config CMU_LFXO_FREQ
|
||||
default 32768
|
||||
|
||||
if SOC_GECKO_USE_RAIL
|
||||
|
||||
config FPU
|
||||
default y
|
||||
|
||||
endif # SOC_GECKO_USE_RAIL
|
||||
|
||||
if BT
|
||||
|
||||
config COMMON_LIBC_MALLOC_ARENA_SIZE
|
||||
default 8192
|
||||
|
||||
endif # BT
|
||||
|
||||
endif # BOARD_XG24_EK2703A
|
||||
5
boards/silabs/dev_kits/xg24_ek2703a/Kconfig.xg24_ek2703a
Normal file
5
boards/silabs/dev_kits/xg24_ek2703a/Kconfig.xg24_ek2703a
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Copyright (c) 2021, Sateesh Kotapati
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
config BOARD_XG24_EK2703A
|
||||
select SOC_PART_NUMBER_EFR32MG24B210F1536IM48
|
||||
28
boards/silabs/dev_kits/xg24_ek2703a/board.c
Normal file
28
boards/silabs/dev_kits/xg24_ek2703a/board.c
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
/*
|
||||
* Copyright (c) 2021 Sateesh Kotapati
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/drivers/gpio.h>
|
||||
#include <zephyr/sys/printk.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
|
||||
LOG_MODULE_REGISTER(efr32xg24_ek2703a, CONFIG_BOARD_EFR32MG24_LOG_LEVEL);
|
||||
|
||||
void board_late_init_hook(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
static struct gpio_dt_spec wake_up_gpio_dev =
|
||||
GPIO_DT_SPEC_GET(DT_NODELABEL(wake_up_trigger), gpios);
|
||||
|
||||
if (!gpio_is_ready_dt(&wake_up_gpio_dev)) {
|
||||
LOG_ERR("Wake-up GPIO device was not found!\n");
|
||||
}
|
||||
ret = gpio_pin_configure_dt(&wake_up_gpio_dev, GPIO_OUTPUT_ACTIVE);
|
||||
if (ret < 0) {
|
||||
LOG_ERR("Failed to configure wake-up GPIO!\n");
|
||||
}
|
||||
}
|
||||
8
boards/silabs/dev_kits/xg24_ek2703a/board.cmake
Normal file
8
boards/silabs/dev_kits/xg24_ek2703a/board.cmake
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# Copyright (c) 2021, Sateesh Kotapati
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
board_runner_args(jlink "--device=EFR32MG24BxxxF1536" "--reset-after-load")
|
||||
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
|
||||
|
||||
board_runner_args(silabs_commander "--device=EFR32MG24B210F1536IM48")
|
||||
include(${ZEPHYR_BASE}/boards/common/silabs_commander.board.cmake)
|
||||
6
boards/silabs/dev_kits/xg24_ek2703a/board.yml
Normal file
6
boards/silabs/dev_kits/xg24_ek2703a/board.yml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
board:
|
||||
name: xg24_ek2703a
|
||||
full_name: EFR32xG24 Explorer Kit (xG24-EK2703A)
|
||||
vendor: silabs
|
||||
socs:
|
||||
- name: efr32mg24b210f1536im48
|
||||
163
boards/silabs/dev_kits/xg24_ek2703a/doc/index.rst
Normal file
163
boards/silabs/dev_kits/xg24_ek2703a/doc/index.rst
Normal file
|
|
@ -0,0 +1,163 @@
|
|||
.. zephyr:board:: xg24_ek2703a
|
||||
|
||||
Overview
|
||||
********
|
||||
|
||||
The EFR32xG24 Explorer Kit (xG24-EK2703A) contains
|
||||
a Wireless System-On-Chip from the EFR32MG24 family built on an
|
||||
ARM Cortex®-M33 processor with excellent low power capabilities.
|
||||
|
||||
Hardware
|
||||
********
|
||||
|
||||
- EFR32MG24B210F1536IM48-B Mighty Gecko SoC
|
||||
- CPU core: ARM Cortex®-M33 with FPU
|
||||
- Flash memory: 1536 kB
|
||||
- RAM: 256 kB
|
||||
- Transmit power: up to +10 dBm
|
||||
- Operation frequency: 2.4 GHz
|
||||
- Crystals for LFXO (32.768 kHz) and HFXO (39 MHz).
|
||||
|
||||
For more information about the EFR32MG24 SoC and BRD2703A board, refer to these
|
||||
documents:
|
||||
|
||||
- `EFR32MG24 Website`_
|
||||
- `EFR32MG24 Datasheet`_
|
||||
- `EFR32xG24 Reference Manual`_
|
||||
- `BRD2703A User Guide`_
|
||||
|
||||
Supported Features
|
||||
==================
|
||||
|
||||
The ``xg24_ek2703a`` board supports the following hardware features:
|
||||
|
||||
+-----------+------------+-------------------------------------+
|
||||
| Interface | Controller | Driver/Component |
|
||||
+===========+============+=====================================+
|
||||
| MPU | on-chip | memory protection unit |
|
||||
+-----------+------------+-------------------------------------+
|
||||
| NVIC | on-chip | nested vector interrupt controller |
|
||||
+-----------+------------+-------------------------------------+
|
||||
| SYSTICK | on-chip | systick |
|
||||
+-----------+------------+-------------------------------------+
|
||||
| COUNTER | on-chip | stimer |
|
||||
+-----------+------------+-------------------------------------+
|
||||
| FLASH | on-chip | flash memory |
|
||||
+-----------+------------+-------------------------------------+
|
||||
| GPIO | on-chip | gpio |
|
||||
+-----------+------------+-------------------------------------+
|
||||
| UART | on-chip | serial |
|
||||
+-----------+------------+-------------------------------------+
|
||||
| TRNG | on-chip | semailbox |
|
||||
+-----------+------------+-------------------------------------+
|
||||
| WATCHDOG | on-chip | watchdog |
|
||||
+-----------+------------+-------------------------------------+
|
||||
| I2C(M/S) | on-chip | i2c |
|
||||
+-----------+------------+-------------------------------------+
|
||||
| RADIO | on-chip | bluetooth |
|
||||
+-----------+------------+-------------------------------------+
|
||||
|
||||
Other hardware features are currently not supported by the port.
|
||||
|
||||
Connections and IOs
|
||||
===================
|
||||
|
||||
In the following table, the column **Name** contains Pin names. For example, PA2
|
||||
means Pin number 2 on PORTA, as used in the board's datasheets and manuals.
|
||||
|
||||
+-------+-------------+-------------------------------------+
|
||||
| Name | Function | Usage |
|
||||
+=======+=============+=====================================+
|
||||
| PA4 | GPIO | LED0 |
|
||||
+-------+-------------+-------------------------------------+
|
||||
| PA7 | GPIO | LED1 |
|
||||
+-------+-------------+-------------------------------------+
|
||||
| PB2 | GPIO | Push Button 0 |
|
||||
+-------+-------------+-------------------------------------+
|
||||
| PB3 | GPIO | Push Button 1 |
|
||||
+-------+-------------+-------------------------------------+
|
||||
| PA5 | USART0_TX | UART Console VCOM_TX US0_TX |
|
||||
+-------+-------------+-------------------------------------+
|
||||
| PA6 | USART0_RX | UART Console VCOM_RX US0_RX |
|
||||
+-------+-------------+-------------------------------------+
|
||||
|
||||
The default configuration can be found in
|
||||
:zephyr_file:`boards/silabs/dev_kits/xg24_ek2703a/xg24_ek2703a_defconfig`
|
||||
|
||||
System Clock
|
||||
============
|
||||
|
||||
The EFR32MG24 SoC is configured to use the 39 MHz external oscillator on the
|
||||
board.
|
||||
|
||||
Serial Port
|
||||
===========
|
||||
|
||||
The EFR32MG24 SoC has one USART and two EUSARTs.
|
||||
USART0 is connected to the board controller and is used for the console.
|
||||
|
||||
Programming and Debugging
|
||||
*************************
|
||||
|
||||
.. note::
|
||||
Before using the kit the first time, you should update the J-Link firmware
|
||||
in Simplicity Studio.
|
||||
|
||||
Flashing
|
||||
========
|
||||
|
||||
The sample application :zephyr:code-sample:`hello_world` is used for this example.
|
||||
Build the Zephyr kernel and application:
|
||||
|
||||
.. zephyr-app-commands::
|
||||
:zephyr-app: samples/hello_world
|
||||
:board: xg24_ek2703a
|
||||
:goals: build
|
||||
|
||||
Connect the xg24_ek2703a to your host computer using the USB port and you
|
||||
should see a USB connection.
|
||||
|
||||
Open a serial terminal (minicom, putty, etc.) with the following settings:
|
||||
|
||||
- Speed: 115200
|
||||
- Data: 8 bits
|
||||
- Parity: None
|
||||
- Stop bits: 1
|
||||
|
||||
Reset the board and you'll see the following message on the corresponding serial port
|
||||
terminal session:
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
Hello World! xg24_ek2703a
|
||||
|
||||
Bluetooth
|
||||
=========
|
||||
|
||||
To use the BLE function, run the command below to retrieve necessary binary
|
||||
blobs from the SiLabs HAL repository.
|
||||
|
||||
.. code-block:: console
|
||||
|
||||
west blobs fetch hal_silabs
|
||||
|
||||
Then build the Zephyr kernel and a Bluetooth sample with the following
|
||||
command. The :zephyr:code-sample:`bluetooth_observer` sample application is used in
|
||||
this example.
|
||||
|
||||
.. zephyr-app-commands::
|
||||
:zephyr-app: samples/bluetooth/observer
|
||||
:board: xg24_ek2703a
|
||||
:goals: build
|
||||
|
||||
.. _EFR32MG24 Website:
|
||||
https://www.silabs.com/wireless/zigbee/efr32mg24-series-2-socs#
|
||||
|
||||
.. _EFR32MG24 Datasheet:
|
||||
https://www.silabs.com/documents/public/data-sheets/efr32mg24-datasheet.pdf
|
||||
|
||||
.. _EFR32xG24 Reference Manual:
|
||||
https://www.silabs.com/documents/public/reference-manuals/efr32xg24-rm.pdf
|
||||
|
||||
.. _BRD2703A User Guide:
|
||||
https://www.silabs.com/documents/public/user-guides/ug533-xg24-ek2703a.pdf
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
# Copyright (c) 2022, Antmicro
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
description: GPIO Wake Up Trigger for EFR32MG24
|
||||
|
||||
compatible: "silabs,gecko-wake-up-trigger"
|
||||
|
||||
include: base.yaml
|
||||
|
||||
properties:
|
||||
gpios:
|
||||
type: phandle-array
|
||||
required: true
|
||||
description: |
|
||||
GPIO used as wake up trigger from EM4 sleep
|
||||
5
boards/silabs/dev_kits/xg24_ek2703a/pre_dt_board.cmake
Normal file
5
boards/silabs/dev_kits/xg24_ek2703a/pre_dt_board.cmake
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Copyright (c) 2021 Linaro Limited
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
# SPI is implemented via usart so node name isn't spi@...
|
||||
list(APPEND EXTRA_DTC_FLAGS "-Wno-spi_bus_bridge")
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* Copyright (c) 2024 Silicon Laboratories Inc.
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <dt-bindings/pinctrl/silabs/xg24-pinctrl.h>
|
||||
|
||||
&pinctrl {
|
||||
usart0_default: usart0_default {
|
||||
group0 {
|
||||
pins = <USART0_TX_PA5>;
|
||||
drive-push-pull;
|
||||
output-high;
|
||||
};
|
||||
group1 {
|
||||
pins = <USART0_RX_PA6>;
|
||||
input-enable;
|
||||
silabs,input-filter;
|
||||
};
|
||||
};
|
||||
|
||||
i2c0_default: i2c0_default {
|
||||
group0 {
|
||||
pins = <I2C0_SCL_PC4>, <I2C0_SDA_PC5>;
|
||||
drive-open-drain;
|
||||
bias-pull-up;
|
||||
};
|
||||
};
|
||||
};
|
||||
206
boards/silabs/dev_kits/xg24_ek2703a/xg24_ek2703a.dts
Normal file
206
boards/silabs/dev_kits/xg24_ek2703a/xg24_ek2703a.dts
Normal file
|
|
@ -0,0 +1,206 @@
|
|||
/*
|
||||
* Copyright (c) 2020 TriaGnoSys GmbH
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/dts-v1/;
|
||||
#include <silabs/efr32mg24b210f1536im48.dtsi>
|
||||
#include <zephyr/dt-bindings/input/input-event-codes.h>
|
||||
#include <zephyr/dt-bindings/regulator/silabs_dcdc.h>
|
||||
#include "xg24_ek2703a-pinctrl.dtsi"
|
||||
|
||||
/ {
|
||||
model = "Silicon Labs BRD2703A (xG24 Explorer Kit)";
|
||||
compatible = "silabs,xg24_ek2703a", "silabs,efr32mg24";
|
||||
|
||||
chosen {
|
||||
zephyr,console = &usart0;
|
||||
zephyr,shell-uart = &usart0;
|
||||
zephyr,uart-pipe = &usart0;
|
||||
zephyr,sram = &sram0;
|
||||
zephyr,flash = &flash0;
|
||||
zephyr,code-partition = &slot0_partition;
|
||||
zephyr,bt-hci = &bt_hci_silabs;
|
||||
};
|
||||
|
||||
aliases {
|
||||
led0 = &led0;
|
||||
led1 = &led1;
|
||||
sw0 = &button0;
|
||||
sw1 = &button1;
|
||||
watchdog0 = &wdog0;
|
||||
};
|
||||
|
||||
leds {
|
||||
compatible = "gpio-leds";
|
||||
led0: led_0 {
|
||||
gpios = <&gpioa 4 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
led1: led_1 {
|
||||
gpios = <&gpioa 7 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
};
|
||||
|
||||
buttons {
|
||||
compatible = "gpio-keys";
|
||||
button0: button_0 {
|
||||
gpios = <&gpiob 2 GPIO_ACTIVE_LOW>;
|
||||
zephyr,code = <INPUT_KEY_0>;
|
||||
};
|
||||
button1: button_1 {
|
||||
gpios = <&gpiob 3 GPIO_ACTIVE_LOW>;
|
||||
zephyr,code = <INPUT_KEY_1>;
|
||||
};
|
||||
};
|
||||
|
||||
wake_up_trigger: gpio-wake-up {
|
||||
compatible = "silabs,gecko-wake-up-trigger";
|
||||
gpios = <&gpioa 5 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
};
|
||||
|
||||
&cpu0 {
|
||||
clock-frequency = <78000000>;
|
||||
};
|
||||
|
||||
&hfxo {
|
||||
status = "okay";
|
||||
ctune = <140>;
|
||||
precision = <50>;
|
||||
};
|
||||
|
||||
&lfxo {
|
||||
status = "okay";
|
||||
ctune = <63>;
|
||||
precision = <50>;
|
||||
};
|
||||
|
||||
&hfrcodpll {
|
||||
clock-frequency = <DT_FREQ_M(78)>;
|
||||
clocks = <&hfxo>;
|
||||
dpll-n = <3839>;
|
||||
dpll-m = <1919>;
|
||||
dpll-edge = "fall";
|
||||
dpll-lock = "phase";
|
||||
dpll-autorecover;
|
||||
};
|
||||
|
||||
&em23grpaclk {
|
||||
clocks = <&lfxo>;
|
||||
};
|
||||
|
||||
&em4grpaclk {
|
||||
clocks = <&lfxo>;
|
||||
};
|
||||
|
||||
&sysrtcclk {
|
||||
clocks = <&lfxo>;
|
||||
};
|
||||
|
||||
&wdog0clk {
|
||||
clocks = <&lfxo>;
|
||||
};
|
||||
|
||||
&wdog1clk {
|
||||
clocks = <&lfxo>;
|
||||
};
|
||||
|
||||
&usart0 {
|
||||
current-speed = <115200>;
|
||||
pinctrl-0 = <&usart0_default>;
|
||||
pinctrl-names = "default";
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&i2c0 {
|
||||
pinctrl-0 = <&i2c0_default>;
|
||||
pinctrl-names = "default";
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&gpio {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&gpioa {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&gpiob {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&gpioc {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&gpiod {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&wdog0 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&se {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&dcdc {
|
||||
status = "okay";
|
||||
regulator-boot-on;
|
||||
regulator-initial-mode = <SILABS_DCDC_MODE_BUCK>;
|
||||
silabs,pfmx-peak-current-milliamp = <120>;
|
||||
};
|
||||
|
||||
&flash0 {
|
||||
partitions {
|
||||
compatible = "fixed-partitions";
|
||||
#address-cells = <1>;
|
||||
#size-cells = <1>;
|
||||
|
||||
/* Reserve 48 kB for the bootloader */
|
||||
boot_partition: partition@0 {
|
||||
label = "mcuboot";
|
||||
reg = <0x0 0x0000c000>;
|
||||
read-only;
|
||||
};
|
||||
|
||||
/* Reserve 464 kB for the application in slot 0 */
|
||||
slot0_partition: partition@c000 {
|
||||
label = "image-0";
|
||||
reg = <0x0000c000 0x00074000>;
|
||||
};
|
||||
|
||||
/* Reserve 464 kB for the application in slot 1 */
|
||||
slot1_partition: partition@80000 {
|
||||
label = "image-1";
|
||||
reg = <0x00080000 0x00074000>;
|
||||
};
|
||||
|
||||
/* Reserve 32 kB for the scratch partition */
|
||||
scratch_partition: partition@f4000 {
|
||||
label = "image-scratch";
|
||||
reg = <0x000f4000 0x00008000>;
|
||||
};
|
||||
|
||||
/* Set 528Kb of storage at the end of the 1024Kb of flash */
|
||||
storage_partition: partition@fc000 {
|
||||
label = "storage";
|
||||
reg = <0x000fc000 0x00084000>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
&adc0 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&sysrtc0 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&bt_hci_silabs {
|
||||
status = "okay";
|
||||
};
|
||||
21
boards/silabs/dev_kits/xg24_ek2703a/xg24_ek2703a.yaml
Normal file
21
boards/silabs/dev_kits/xg24_ek2703a/xg24_ek2703a.yaml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
identifier: xg24_ek2703a
|
||||
name: EFR32xG24 Explorer Kit (xG24-EK2703A, BRD2703A)
|
||||
type: mcu
|
||||
arch: arm
|
||||
ram: 256
|
||||
flash: 1536
|
||||
toolchain:
|
||||
- zephyr
|
||||
- gnuarmemb
|
||||
supported:
|
||||
- bluetooth
|
||||
- counter
|
||||
- gpio
|
||||
- uart
|
||||
- watchdog
|
||||
- clock_control
|
||||
testing:
|
||||
ignore_tags:
|
||||
- pm
|
||||
- hwinfo
|
||||
vendor: silabs
|
||||
12
boards/silabs/dev_kits/xg24_ek2703a/xg24_ek2703a_defconfig
Normal file
12
boards/silabs/dev_kits/xg24_ek2703a/xg24_ek2703a_defconfig
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# Copyright (c) 2022 Silicon Labs
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
CONFIG_ARM_MPU=y
|
||||
CONFIG_CONSOLE=y
|
||||
CONFIG_UART_CONSOLE=y
|
||||
CONFIG_SERIAL=y
|
||||
CONFIG_GPIO=y
|
||||
CONFIG_HW_STACK_PROTECTION=y
|
||||
CONFIG_REGULATOR=y
|
||||
CONFIG_SOC_GECKO_EMU_DCDC=y
|
||||
CONFIG_SOC_GECKO_EMU_DCDC_MODE_ON=y
|
||||
Loading…
Reference in a new issue