6
6
7
7
#include <string.h>
8
8
#include "sdkconfig.h"
9
- #include "freertos/portmacro.h"
10
9
#include "soc/periph_defs.h"
11
10
#include "soc/soc.h"
12
11
#include "soc/ieee802154_periph.h"
39
38
#endif // SOC_PM_RETENTION_HAS_CLOCK_BUG
40
39
#endif // CONFIG_PM_ENABLE
41
40
41
+ #include <zephyr/kernel.h>
42
+ #include <zephyr/drivers/interrupt_controller/intc_esp32c3.h>
43
+
42
44
static bool s_rf_closed = true;
43
45
#define CCA_DETECTION_TIME 8
44
46
@@ -68,8 +70,8 @@ static bool s_needs_next_operation = false;
68
70
static uint8_t s_rx_index = 0 ;
69
71
static uint8_t s_enh_ack_frame [128 ];
70
72
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 ;
73
75
74
76
static esp_err_t ieee802154_sleep_init (void );
75
77
static esp_err_t ieee802154_sleep_deinit (void );
@@ -640,15 +642,15 @@ static IRAM_ATTR void isr_handle_ed_done(void)
640
642
641
643
IEEE802154_STATIC IRAM_ATTR void ieee802154_enter_critical (void )
642
644
{
643
- portENTER_CRITICAL (& s_ieee802154_spinlock );
645
+ s_ieee802154_key = k_spin_lock (& s_ieee802154_spinlock );
644
646
}
645
647
646
648
IEEE802154_STATIC IRAM_ATTR void ieee802154_exit_critical (void )
647
649
{
648
- portEXIT_CRITICAL (& s_ieee802154_spinlock );
650
+ k_spin_unlock (& s_ieee802154_spinlock , s_ieee802154_key );
649
651
}
650
652
651
- IEEE802154_NOINLINE static void ieee802154_isr (void * arg )
653
+ IEEE802154_NOINLINE static void ieee802154_isr (const void * arg )
652
654
{
653
655
ieee802154_enter_critical ();
654
656
ieee802154_ll_events events = ieee802154_ll_get_events ();
@@ -810,7 +812,7 @@ esp_err_t ieee802154_mac_init(void)
810
812
ieee802154_set_state (IEEE802154_STATE_IDLE );
811
813
812
814
// 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 );
814
816
ESP_RETURN_ON_FALSE (ret == ESP_OK , ESP_FAIL , IEEE802154_TAG , "IEEE802154 MAC init failed" );
815
817
816
818
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)
820
822
821
823
esp_err_t ieee802154_mac_deinit (void )
822
824
{
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" );
829
827
ESP_RETURN_ON_FALSE (ieee802154_sleep_deinit () == ESP_OK , ESP_FAIL , IEEE802154_TAG , "IEEE802154 MAC sleep deinit failed" );
830
828
return ret ;
831
829
}
0 commit comments