Skip to content

Commit bd1fb9c

Browse files
committed
ieee802154: update files for Zephyr support
FreeRTOS-related code (e.g. locks) are replaced with Zephyr-specific equivalents. Signed-off-by: Martin Jäger <[email protected]>
1 parent 3efa906 commit bd1fb9c

File tree

3 files changed

+46
-21
lines changed

3 files changed

+46
-21
lines changed

components/esp_phy/src/btbb_init.c

+7-6
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@
77
#include <stdint.h>
88
#include "esp_check.h"
99
#include "esp_log.h"
10-
#include "freertos/FreeRTOS.h"
1110
#include "esp_private/btbb.h"
1211

12+
#include <zephyr/kernel.h>
13+
1314
#define BTBB_ENABLE_VERSION_PRINT 1
1415

15-
static _lock_t s_btbb_access_lock;
16+
static struct k_spinlock s_btbb_access_lock;
1617
/* Reference count of enabling BT BB */
1718
static uint8_t s_btbb_access_ref = 0;
1819

@@ -57,7 +58,7 @@ static void btbb_sleep_retention_deinit(void)
5758

5859
void esp_btbb_enable(void)
5960
{
60-
_lock_acquire(&s_btbb_access_lock);
61+
k_spinlock_key_t key = k_spin_lock(&s_btbb_access_lock);
6162
if (s_btbb_access_ref == 0) {
6263
bt_bb_v2_init_cmplx(BTBB_ENABLE_VERSION_PRINT);
6364
#if SOC_PM_MODEM_RETENTION_BY_REGDMA && CONFIG_FREERTOS_USE_TICKLESS_IDLE
@@ -77,16 +78,16 @@ void esp_btbb_enable(void)
7778
#endif // SOC_PM_MODEM_RETENTION_BY_REGDMA && CONFIG_FREERTOS_USE_TICKLESS_IDLE
7879
}
7980
s_btbb_access_ref++;
80-
_lock_release(&s_btbb_access_lock);
81+
k_spin_unlock(&s_btbb_access_lock, key);
8182
}
8283

8384
void esp_btbb_disable(void)
8485
{
85-
_lock_acquire(&s_btbb_access_lock);
86+
k_spinlock_key_t key = k_spin_lock(&s_btbb_access_lock);
8687
if (s_btbb_access_ref && (--s_btbb_access_ref == 0)) {
8788
#if SOC_PM_MODEM_RETENTION_BY_REGDMA && CONFIG_FREERTOS_USE_TICKLESS_IDLE
8889
btbb_sleep_retention_deinit();
8990
#endif // SOC_PM_MODEM_RETENTION_BY_REGDMA && CONFIG_FREERTOS_USE_TICKLESS_IDLE
9091
}
91-
_lock_release(&s_btbb_access_lock);
92+
k_spin_unlock(&s_btbb_access_lock, key);
9293
}

components/ieee802154/driver/esp_ieee802154_dev.c

+11-13
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
#include <string.h>
88
#include "sdkconfig.h"
9-
#include "freertos/portmacro.h"
109
#include "soc/periph_defs.h"
1110
#include "soc/soc.h"
1211
#include "soc/ieee802154_periph.h"
@@ -39,6 +38,9 @@
3938
#endif // SOC_PM_RETENTION_HAS_CLOCK_BUG
4039
#endif // CONFIG_PM_ENABLE
4140

41+
#include <zephyr/kernel.h>
42+
#include <zephyr/drivers/interrupt_controller/intc_esp32c3.h>
43+
4244
static bool s_rf_closed = true;
4345
#define CCA_DETECTION_TIME 8
4446

@@ -68,8 +70,8 @@ static bool s_needs_next_operation = false;
6870
static uint8_t s_rx_index = 0;
6971
static uint8_t s_enh_ack_frame[128];
7072
static uint8_t s_recent_rx_frame_info_index;
71-
static portMUX_TYPE s_ieee802154_spinlock = portMUX_INITIALIZER_UNLOCKED;
72-
static intr_handle_t s_ieee802154_isr_handle = NULL;
73+
static struct k_spinlock s_ieee802154_spinlock;
74+
static k_spinlock_key_t s_ieee802154_key;
7375

7476
static esp_err_t ieee802154_sleep_init(void);
7577
static esp_err_t ieee802154_sleep_deinit(void);
@@ -640,15 +642,15 @@ static IRAM_ATTR void isr_handle_ed_done(void)
640642

641643
IEEE802154_STATIC IRAM_ATTR void ieee802154_enter_critical(void)
642644
{
643-
portENTER_CRITICAL(&s_ieee802154_spinlock);
645+
s_ieee802154_key = k_spin_lock(&s_ieee802154_spinlock);
644646
}
645647

646648
IEEE802154_STATIC IRAM_ATTR void ieee802154_exit_critical(void)
647649
{
648-
portEXIT_CRITICAL(&s_ieee802154_spinlock);
650+
k_spin_unlock(&s_ieee802154_spinlock, s_ieee802154_key);
649651
}
650652

651-
IEEE802154_NOINLINE static void ieee802154_isr(void *arg)
653+
IEEE802154_NOINLINE static void ieee802154_isr(const void *arg)
652654
{
653655
ieee802154_enter_critical();
654656
ieee802154_ll_events events = ieee802154_ll_get_events();
@@ -810,7 +812,7 @@ esp_err_t ieee802154_mac_init(void)
810812
ieee802154_set_state(IEEE802154_STATE_IDLE);
811813

812814
// TODO: Add flags for IEEE802154 ISR allocating. TZ-102
813-
ret = esp_intr_alloc(ieee802154_periph.irq_id, 0, ieee802154_isr, NULL, &s_ieee802154_isr_handle);
815+
ret = esp_intr_alloc(ieee802154_periph.irq_id, 0, ieee802154_isr, NULL, NULL);
814816
ESP_RETURN_ON_FALSE(ret == ESP_OK, ESP_FAIL, IEEE802154_TAG, "IEEE802154 MAC init failed");
815817

816818
ESP_RETURN_ON_FALSE(ieee802154_sleep_init() == ESP_OK, ESP_FAIL, IEEE802154_TAG, "IEEE802154 MAC sleep init failed");
@@ -820,12 +822,8 @@ esp_err_t ieee802154_mac_init(void)
820822

821823
esp_err_t ieee802154_mac_deinit(void)
822824
{
823-
esp_err_t ret = ESP_OK;
824-
if (s_ieee802154_isr_handle) {
825-
ret = esp_intr_free(s_ieee802154_isr_handle);
826-
s_ieee802154_isr_handle = NULL;
827-
ESP_RETURN_ON_FALSE(ret == ESP_OK, ESP_FAIL, IEEE802154_TAG, "IEEE802154 MAC ISR deinit failed");
828-
}
825+
esp_err_t ret = esp_intr_disable(ieee802154_periph.irq_id);
826+
ESP_RETURN_ON_FALSE(ret == ESP_OK, ESP_FAIL, IEEE802154_TAG, "IEEE802154 MAC ISR deinit failed");
829827
ESP_RETURN_ON_FALSE(ieee802154_sleep_deinit() == ESP_OK, ESP_FAIL, IEEE802154_TAG, "IEEE802154 MAC sleep deinit failed");
830828
return ret;
831829
}

zephyr/esp32c6/CMakeLists.txt

+28-2
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,9 @@ if(CONFIG_SOC_SERIES_ESP32C6)
109109
../../components/wpa_supplicant/src/eap_peer
110110
../../components/mbedtls/port/include
111111

112+
../../components/ieee802154/include
113+
../../components/ieee802154/private_include
114+
112115
../port/include/boot
113116
)
114117

@@ -304,8 +307,8 @@ if(CONFIG_SOC_SERIES_ESP32C6)
304307
../../components/hal/ledc_hal.c
305308
)
306309

307-
## shared WIFI/BT resources
308-
if (CONFIG_BT OR CONFIG_WIFI_ESP32)
310+
## shared WIFI/BT/IEEE802154 resources
311+
if (CONFIG_BT OR CONFIG_WIFI_ESP32 OR CONFIG_IEEE802154)
309312
zephyr_sources(
310313
../../components/esp_phy/src/phy_init.c
311314
../../components/esp_phy/src/lib_printf.c
@@ -556,6 +559,29 @@ if(CONFIG_SOC_SERIES_ESP32C6)
556559

557560
endif()
558561

562+
## IEEE 802.15.4 definitions
563+
if (CONFIG_IEEE802154)
564+
zephyr_sources(
565+
../../components/esp_phy/src/btbb_init.c
566+
../../components/soc/${CONFIG_SOC_SERIES}/ieee802154_periph.c
567+
../../components/ieee802154/esp_ieee802154.c
568+
../../components/ieee802154/driver/esp_ieee802154_ack.c
569+
../../components/ieee802154/driver/esp_ieee802154_dev.c
570+
../../components/ieee802154/driver/esp_ieee802154_frame.c
571+
../../components/ieee802154/driver/esp_ieee802154_pib.c
572+
../../components/ieee802154/driver/esp_ieee802154_util.c
573+
../../components/ieee802154/driver/esp_ieee802154_sec.c
574+
../../components/ieee802154/driver/esp_ieee802154_timer.c
575+
)
576+
577+
zephyr_compile_definitions(CONFIG_IEEE802154_ENABLED)
578+
579+
zephyr_link_libraries(
580+
btbb
581+
-L${CMAKE_CURRENT_SOURCE_DIR}/../blobs/lib/${CONFIG_SOC_SERIES}
582+
)
583+
endif()
584+
559585
zephyr_link_libraries_ifdef(CONFIG_NEWLIB_LIBC c)
560586

561587
endif()

0 commit comments

Comments
 (0)