Daniel Vizcaya / Mbed OS 04_RTOS_Embebidos
Revision:
0:6ad07c9019fd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/sw_mac.c	Wed May 30 00:01:50 2018 +0000
@@ -0,0 +1,627 @@
+/*
+ * Copyright (c) 2016-2017, Arm Limited and affiliates.
+ * SPDX-License-Identifier: Apache-2.0
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+#include "nsconfig.h"
+#include <string.h>
+#include "nsdynmemLIB.h"
+#include "mac_api.h"
+#include "fhss_api.h"
+#include "sw_mac.h"
+#include "MAC/IEEE802_15_4/sw_mac_internal.h"
+#include "MAC/IEEE802_15_4/mac_mlme.h"
+#include "MAC/IEEE802_15_4/mac_defines.h"
+#include "MAC/IEEE802_15_4/mac_mcps_sap.h"
+#include "MAC/IEEE802_15_4/mac_pd_sap.h"
+#include "MAC/rf_driver_storage.h"
+#include "MAC/virtual_rf/virtual_rf_defines.h"
+#include "mac_fhss_callbacks.h"
+#include "eventOS_callback_timer.h"
+#include "common_functions.h"
+
+//TODO: create linked list of created MACs
+
+typedef struct mac_internal_s {
+    mac_api_t *mac_api;
+    arm_device_driver_list_s *dev_driver;
+    arm_device_driver_list_s *virtual_driver;
+    //Move define inside MAC (now in protocol_abstract.h)
+    struct protocol_interface_rf_mac_setup *setup;
+    uint8_t device_table_size;
+    uint8_t key_description_size;
+    //linked list link
+}mac_internal_t;
+
+static mac_internal_t mac_store; //Hack only at this point, later put into linked list
+
+static int8_t ns_sw_mac_initialize(mac_api_t *api, mcps_data_confirm *mcps_data_conf_cb,
+                                   mcps_data_indication *mcps_data_ind_cb, mcps_purge_confirm *purge_conf_cb,
+                                   mlme_confirm *mlme_conf_callback, mlme_indication *mlme_ind_callback, int8_t parent_id);
+
+static void mlme_req(const mac_api_t* api, mlme_primitive id, const void *data);
+static void mcps_req(const mac_api_t* api, const mcps_data_req_t *data);
+static void purge_req(const mac_api_t* api, const mcps_purge_t *data);
+static int8_t macext_mac64_address_set( const mac_api_t* api, const uint8_t *mac64);
+static int8_t macext_mac64_address_get( const mac_api_t* api, mac_extended_address_type type, uint8_t *mac64_buf);
+
+static int8_t sw_mac_net_phy_rx(const uint8_t *data_ptr, uint16_t data_len, uint8_t link_quality, int8_t dbm, int8_t driver_id);
+static int8_t sw_mac_net_phy_tx_done(int8_t driver_id, uint8_t tx_handle, phy_link_tx_status_e status, uint8_t cca_retry, uint8_t tx_retry);
+static int8_t sw_mac_net_phy_config_parser(int8_t driver_id, const uint8_t *data, uint16_t length);
+static int8_t sw_mac_storage_decription_sizes_get(const mac_api_t* api, mac_description_storage_size_t *buffer);
+
+static int8_t sw_mac_storage_decription_sizes_get(const mac_api_t* api, mac_description_storage_size_t *buffer)
+{
+    if( !api || !buffer || api != mac_store.mac_api ){
+        return -1;
+    }
+
+    buffer->device_decription_table_size = mac_store.setup->device_description_table_size;
+    buffer->key_description_table_size = mac_store.setup->key_description_table_size;
+    buffer->key_lookup_size = mac_store.setup->key_lookup_list_size;
+    buffer->key_usage_size = mac_store.setup->key_usage_list_size;
+    return 0;
+}
+
+mac_api_t *ns_sw_mac_create(int8_t rf_driver_id, mac_description_storage_size_t *storage_sizes)
+{
+    //TODO: Refactor this away, Drivers should be stored in MAC layer in future
+    if (!storage_sizes || !storage_sizes->device_decription_table_size || !storage_sizes->key_description_table_size || !storage_sizes->key_lookup_size || !storage_sizes->key_usage_size) {
+        return NULL;
+    }
+
+    arm_device_driver_list_s *driver = arm_net_phy_driver_pointer(rf_driver_id);
+
+    if( !driver || !driver->phy_driver){
+        return NULL;
+    }
+    mac_api_t *this = ns_dyn_mem_alloc(sizeof(mac_api_t));
+    if( !this ){
+        return NULL;
+    }
+    memset(this, 0, sizeof(mac_api_t));
+    this->parent_id = -1;
+    mac_store.dev_driver = driver;
+    mac_store.setup = mac_mlme_data_base_allocate(mac_store.dev_driver->phy_driver->PHY_MAC, mac_store.dev_driver, storage_sizes);
+
+    if( !mac_store.setup ){
+        ns_dyn_mem_free(this);
+        return NULL;
+    }
+
+    arm_net_phy_init(driver->phy_driver, &sw_mac_net_phy_rx, &sw_mac_net_phy_tx_done);
+    arm_net_virtual_config_rx_cb_set(driver->phy_driver, &sw_mac_net_phy_config_parser);
+    arm_net_virtual_confirmation_rx_cb_set(driver->phy_driver, &mac_mlme_virtual_confirmation_handle);
+
+    this->mac_initialize = &ns_sw_mac_initialize;
+    this->mlme_req = &mlme_req;
+    this->mcps_data_req = &mcps_req;
+    this->mcps_purge_req = &purge_req;
+    this->mac64_get = &macext_mac64_address_get;
+    this->mac64_set = &macext_mac64_address_set;
+    this->mac_storage_sizes_get =&sw_mac_storage_decription_sizes_get;
+    this->phyMTU = driver->phy_driver->phy_MTU;
+
+    mac_store.mac_api = this;
+
+    mac_store.virtual_driver = NULL;
+    return this;
+}
+
+int8_t ns_sw_mac_virtual_client_register(mac_api_t *api, int8_t virtual_driver_id)
+{
+    if( !api || api != mac_store.mac_api ){
+        return -1;
+    }
+    arm_device_driver_list_s *virtual_driver = arm_net_phy_driver_pointer(virtual_driver_id);
+    if (!virtual_driver) {
+        return -1;
+    }
+    mac_store.virtual_driver = virtual_driver;
+    mac_store.setup->tun_extension_rf_driver = virtual_driver;
+    //Driver setup
+    virtual_driver->phy_sap_identifier = mac_store.setup;
+    virtual_driver->phy_sap_upper_cb = mac_virtual_sap_data_cb;
+    return 0;
+}
+
+int8_t ns_sw_mac_virtual_client_unregister(mac_api_t *api)
+{
+    if(!api || api != mac_store.mac_api ){
+        return -1;
+    }
+
+    if (mac_store.virtual_driver) {
+        mac_store.setup->tun_extension_rf_driver = NULL;
+        mac_store.virtual_driver->phy_sap_identifier = NULL;
+        mac_store.virtual_driver->phy_sap_upper_cb = NULL;
+        mac_store.virtual_driver = NULL;
+    }
+    return 0;
+}
+
+int ns_sw_mac_fhss_register(mac_api_t *mac_api, fhss_api_t *fhss_api)
+{
+    if (!mac_api || !fhss_api) {
+        return -1;
+    }
+    // Get a pointer to MAC setup structure
+    protocol_interface_rf_mac_setup_s *mac_setup = get_sw_mac_ptr_by_mac_api(mac_api);
+    if (!mac_setup) {
+        return -2;
+    }
+    // Assign FHSS API
+    mac_setup->fhss_api = fhss_api;
+    // Pass MAC functions to FHSS
+    fhss_callback_t callbacks;
+    callbacks.read_tx_queue_size = &mac_read_tx_queue_sizes;
+    callbacks.read_datarate = &mac_read_phy_datarate;
+    callbacks.read_mac_address = &mac_read_64bit_mac_address;
+    callbacks.change_channel = &mac_set_channel;
+    callbacks.send_fhss_frame = &mac_fhss_frame_tx;
+    callbacks.synch_lost_notification = &mac_synch_lost;
+    callbacks.tx_poll = &mac_poll_tx_queue;
+    callbacks.broadcast_notify = &mac_broadcast_notification;
+    callbacks.read_coord_mac_address = &mac_get_coordinator_mac_address;
+    mac_setup->fhss_api->init_callbacks(mac_setup->fhss_api, &callbacks);
+    return 0;
+}
+
+int ns_sw_mac_statistics_start(struct mac_api_s *mac_api, struct mac_statistics_s *mac_statistics)
+{
+    if (!mac_api || !mac_statistics) {
+        return -1;
+    }
+    protocol_interface_rf_mac_setup_s *mac_setup = get_sw_mac_ptr_by_mac_api(mac_api);
+    if (!mac_setup) {
+        return -1;
+    }
+    mac_setup->mac_statistics = mac_statistics;
+    return 0;
+}
+
+static int8_t ns_sw_mac_initialize(mac_api_t *api, mcps_data_confirm *mcps_data_conf_cb,
+                                   mcps_data_indication *mcps_data_ind_cb, mcps_purge_confirm *mcps_purge_conf_cb,
+                                   mlme_confirm *mlme_conf_callback, mlme_indication *mlme_ind_callback, int8_t parent_id)
+{
+    //TODO: Find from linked list instead
+    if(api != mac_store.mac_api ){
+        return -1;
+    }
+    mac_api_t *cur = mac_store.mac_api;
+    //TODO: Check validity of callbacks
+    cur->data_conf_cb = mcps_data_conf_cb;
+    cur->data_ind_cb = mcps_data_ind_cb;
+    cur->purge_conf_cb = mcps_purge_conf_cb;
+    cur->mlme_conf_cb = mlme_conf_callback;
+    cur->mlme_ind_cb = mlme_ind_callback;
+    cur->parent_id = parent_id;
+
+    mac_store.setup->mac_interface_id = parent_id;
+
+    return 0;
+}
+
+mac_api_t *get_sw_mac_api(protocol_interface_rf_mac_setup_s *setup)
+{
+    if (!mac_store.mac_api || mac_store.mac_api->parent_id == -1 || mac_store.setup != setup) {
+        return NULL;
+    }
+    return mac_store.mac_api;
+
+}
+
+protocol_interface_rf_mac_setup_s *get_sw_mac_ptr_by_mac_api(mac_api_t *api)
+{
+    if (mac_store.mac_api == api) {
+        return mac_store.setup;
+    }
+    return NULL;
+}
+
+protocol_interface_rf_mac_setup_s *get_sw_mac_ptr_by_fhss_api(const fhss_api_t *api)
+{
+    if (mac_store.setup->fhss_api == api) {
+        return mac_store.setup;
+    }
+    return NULL;
+}
+
+protocol_interface_rf_mac_setup_s *get_sw_mac_ptr_by_timer(int8_t id, arm_nwk_timer_id_e type)
+{
+
+    if (!mac_store.mac_api || mac_store.mac_api->parent_id == -1 ) {
+        return NULL;
+    }
+    protocol_interface_rf_mac_setup_s *rf_ptr = mac_store.setup;
+
+    switch (type) {
+        case ARM_NWK_MLME_TIMER:
+            if (rf_ptr->mlme_timer_id == id) {
+                return rf_ptr;
+            }
+            break;
+        case ARM_NWK_MAC_TIMER:
+            if (rf_ptr->mac_timer_id == id) {
+                return rf_ptr;
+            }
+            break;
+        case ARM_NWK_CCA_TIMER:
+            if (rf_ptr->cca_timer_id == id) {
+                return rf_ptr;
+            }
+            break;
+        case ARM_NWK_BC_TIMER:
+            if (rf_ptr->bc_timer_id == id) {
+                return rf_ptr;
+            }
+            break;
+        case ARM_MCPS_TIMER:
+            if (rf_ptr->mac_mcps_timer == id) {
+                return rf_ptr;
+            }
+            break;
+        default: /* ARM_NWK_IFS_TIMER */
+        if (rf_ptr->ifs_timer_id == id) {
+            return rf_ptr;
+        }
+        break;
+    }
+
+    return NULL;
+}
+
+protocol_interface_rf_mac_setup_s *get_sw_mac_ptr_by_driver_id(int8_t id)
+{
+    if (mac_store.mac_api && mac_store.setup) {
+        if (mac_store.setup->dev_driver && mac_store.setup->dev_driver->id == id) {
+            return mac_store.setup;
+        }
+    }
+    return NULL;
+}
+
+static int8_t build_virtual_scan_request(const mlme_scan_t *scan_request, uint8_t *scan_req_ptr)
+{
+    if (scan_request && scan_req_ptr) {
+        *scan_req_ptr++ = scan_request->ScanType;
+        *scan_req_ptr++ = scan_request->ScanChannels.channel_page;
+        memcpy(scan_req_ptr, scan_request->ScanChannels.channel_mask, 32);
+        scan_req_ptr += 32;
+        *scan_req_ptr++ = scan_request->ScanDuration;
+        *scan_req_ptr++ = scan_request->ChannelPage;
+        *scan_req_ptr++ = scan_request->Key.SecurityLevel;
+        *scan_req_ptr++ = scan_request->Key.KeyIdMode;
+        *scan_req_ptr++ = scan_request->Key.KeyIndex;
+        memcpy(scan_req_ptr, scan_request->Key.Keysource, 8);
+        scan_req_ptr += 8;
+        return 0;
+    }
+    return -1;
+}
+
+static int8_t build_virtual_start_request(const mlme_start_t *start_request, uint8_t *start_req_ptr)
+{
+    if (start_request && start_req_ptr) {
+        start_req_ptr = common_write_16_bit(start_request->PANId, start_req_ptr);
+        *start_req_ptr++ = start_request->LogicalChannel;
+        start_req_ptr = common_write_32_bit(start_request->StartTime, start_req_ptr);
+        *start_req_ptr++ = start_request->BeaconOrder;
+        *start_req_ptr++ = start_request->SuperframeOrder;
+        *start_req_ptr++ = start_request->PANCoordinator;
+        *start_req_ptr++ = start_request->BatteryLifeExtension;
+        *start_req_ptr++ = start_request->CoordRealignment;
+        *start_req_ptr++ = start_request->CoordRealignKey.SecurityLevel;
+        *start_req_ptr++ = start_request->CoordRealignKey.KeyIdMode;
+        *start_req_ptr++ = start_request->CoordRealignKey.KeyIndex;
+        memcpy(start_req_ptr, start_request->CoordRealignKey.Keysource, 8);
+        start_req_ptr += 8;
+        *start_req_ptr++ = start_request->BeaconRealignKey.SecurityLevel;
+        *start_req_ptr++ = start_request->BeaconRealignKey.KeyIdMode;
+        *start_req_ptr++ = start_request->BeaconRealignKey.KeyIndex;
+        memcpy(start_req_ptr, start_request->BeaconRealignKey.Keysource, 8);
+        start_req_ptr += 8;
+        return 0;
+    }
+    return -1;
+}
+
+void mlme_req(const mac_api_t* api, mlme_primitive id, const void *data)
+{
+    if( mac_store.mac_api != api ){
+        return;
+    }
+    //TODO: cast & handle
+    switch(id){
+        case MLME_ASSOCIATE:{
+            break;
+        }
+        case MLME_DISASSOCIATE:{
+            break;
+        }
+        case MLME_GET:{
+            mlme_get_conf_t get_confirm;
+            const mlme_get_t *dat = (const mlme_get_t *)data;
+            memset(&get_confirm, 0, sizeof(mlme_get_conf_t));
+            get_confirm.attr = dat->attr;
+            get_confirm.attr_index = dat->attr_index;
+
+            if (mac_mlme_get_req(mac_store.setup, &get_confirm) == 0) {
+                //call configured confirmation
+                api->mlme_conf_cb(api, MLME_GET, &get_confirm);
+            }
+
+            break;
+        }
+        case MLME_GTS:{
+            //Unsupported
+            break;
+        }
+        case MLME_RESET:{
+            const mlme_reset_t *dat = (const mlme_reset_t*)data;
+            mac_mlme_reset(mac_store.setup, dat);
+            break;
+        }
+        case MLME_RX_ENABLE:{
+            break;
+        }
+        case MLME_SCAN:{
+            const mlme_scan_t *dat = (const mlme_scan_t*)data;
+            if (mac_store.dev_driver->phy_driver->arm_net_virtual_tx_cb) {
+                virtual_data_req_t scan_req;
+                uint8_t buf_temp[2];
+                uint8_t scan_req_temp[47];
+
+                build_virtual_scan_request(dat, scan_req_temp);
+                memset(&scan_req, 0, sizeof(virtual_data_req_t));
+                buf_temp[0] = NAP_MLME_REQUEST;
+                buf_temp[1] = MLME_SCAN;
+                scan_req.parameters = buf_temp;
+                scan_req.parameter_length = sizeof(buf_temp);
+                scan_req.msdu = scan_req_temp;
+                scan_req.msduLength = sizeof(scan_req_temp);
+                mac_store.dev_driver->phy_driver->arm_net_virtual_tx_cb(&scan_req, mac_store.dev_driver->id);
+            } else {
+                mac_mlme_scan_request(dat, mac_store.setup);
+            }
+            break;
+        }
+        case MLME_SET:{
+            const mlme_set_t *dat = (const mlme_set_t*)data;
+            if (dat->attr == macLoadBalancingBeaconTx && mac_store.dev_driver->mlme_observer_cb) {
+                mac_store.dev_driver->mlme_observer_cb(dat);
+            } else {
+                if (mac_mlme_set_req(mac_store.setup, dat) == 0) {
+                    if (mac_store.dev_driver->mlme_observer_cb) {
+                        mac_store.dev_driver->mlme_observer_cb(dat);
+                    }
+                }
+            }
+            break;
+        }
+        case MLME_START:{
+            const mlme_start_t *dat = (mlme_start_t*)data;
+            //TODO: Populate linked list when present
+            mac_mlme_start_req(dat, mac_store.setup);
+            if (mac_store.dev_driver->phy_driver->arm_net_virtual_tx_cb) {
+                virtual_data_req_t start_req;
+                uint8_t buf_temp[2];
+                uint8_t start_req_temp[34];
+
+                build_virtual_start_request(dat, start_req_temp);
+                memset(&start_req, 0, sizeof(virtual_data_req_t));
+                buf_temp[0] = NAP_MLME_REQUEST;
+                buf_temp[1] = MLME_START;
+                start_req.parameters = buf_temp;
+                start_req.parameter_length = sizeof(buf_temp);
+                start_req.msdu = start_req_temp;
+                start_req.msduLength = sizeof(start_req_temp);
+                mac_store.dev_driver->phy_driver->arm_net_virtual_tx_cb(&start_req, mac_store.dev_driver->id);
+            }
+            break;
+        }
+        case MLME_SYNC:{
+            break;
+        }
+        case MLME_POLL:{
+            const mlme_poll_t *dat = (mlme_poll_t*)data;
+            mac_mlme_poll_req(mac_store.setup, dat);
+            break;
+        }
+        default:
+            break;
+    }
+}
+
+void mcps_req(const mac_api_t* api, const mcps_data_req_t *data)
+{
+    //TODO: Populate linked list when present
+    if (mac_store.mac_api == api) {
+        mcps_sap_data_req_handler(mac_store.setup , data );
+    }
+}
+
+static void purge_req(const mac_api_t* api, const mcps_purge_t *data)
+{
+    if (mac_store.mac_api == api) {
+        mcps_sap_purge_reg_handler(mac_store.setup , data );
+    }
+}
+
+static int8_t macext_mac64_address_set( const mac_api_t* api, const uint8_t *mac64)
+{
+    if(!mac64 || !api || mac_store.mac_api != api ){
+        return -1;
+    }
+
+    mac_extended_mac_set(mac_store.setup, mac64);
+    return 0;
+
+}
+
+
+static int8_t macext_mac64_address_get( const mac_api_t* api, mac_extended_address_type type, uint8_t *mac64_buf)
+{
+    if(!mac64_buf || !api || mac_store.mac_api != api ){
+        return -1;
+    }
+    uint8_t *ptr;
+    switch (type) {
+        case MAC_EXTENDED_READ_ONLY:
+            ptr = mac_store.setup->dev_driver->phy_driver->PHY_MAC;
+            break;
+        case MAC_EXTENDED_DYNAMIC:
+            ptr = mac_store.setup->mac64;
+            break;
+        default:
+            return -1;
+    }
+    memcpy(mac64_buf, ptr, 8);
+    return 0;
+}
+
+//void mlme_assoc_resp(const mac_api_t* api, mlme_associate_resp_t *data)
+//{
+//    //TODO:
+//}
+
+static int8_t sw_mac_net_phy_rx(const uint8_t *data_ptr, uint16_t data_len, uint8_t link_quality, int8_t dbm, int8_t driver_id)
+{
+    arm_phy_sap_msg_t phy_msg;
+    arm_device_driver_list_s *driver = arm_net_phy_driver_pointer(driver_id);
+    if (!driver || driver != mac_store.dev_driver) {
+        return -1;
+    }
+
+    //TODO: event might need mac_api if we ever decide to support more than 1 ethernet MAC!
+
+    phy_msg.message.generic_data_ind.data_len = data_len;
+    phy_msg.message.generic_data_ind.data_ptr = data_ptr;
+    phy_msg.message.generic_data_ind.dbm = dbm;
+    phy_msg.message.generic_data_ind.link_quality = link_quality;
+
+    phy_msg.id = MAC15_4_PD_SAP_DATA_IND;
+    mac_pd_sap_data_cb(driver->phy_sap_identifier, &phy_msg);
+
+    return 0;
+}
+
+static int8_t sw_mac_net_phy_tx_done(int8_t driver_id, uint8_t tx_handle, phy_link_tx_status_e status, uint8_t cca_retry, uint8_t tx_retry)
+{
+    arm_phy_sap_msg_t phy_msg;
+    (void)tx_handle;
+    arm_device_driver_list_s *driver = arm_net_phy_driver_pointer(driver_id);
+    if (!driver) {
+        return -1;
+    }
+    phy_msg.id = MAC15_4_PD_SAP_DATA_TX_CONFIRM;
+    phy_msg.message.mac15_4_pd_sap_confirm.status = status;
+    phy_msg.message.mac15_4_pd_sap_confirm.cca_retry = cca_retry;
+    phy_msg.message.mac15_4_pd_sap_confirm.tx_retry = tx_retry;
+
+    mac_pd_sap_data_cb(driver->phy_sap_identifier, &phy_msg);
+    return 0;
+}
+
+static void bc_enable_timer_cb(int8_t timer_id, uint16_t slots)
+{
+    (void)slots;
+    protocol_interface_rf_mac_setup_s *mac_setup = get_sw_mac_ptr_by_timer(timer_id, ARM_NWK_BC_TIMER);
+    if (mac_setup) {
+        mac_setup->macBroadcastDisabled = true;
+    }
+}
+
+static int8_t sw_mac_net_phy_config_parser(int8_t driver_id, const uint8_t *data, uint16_t length)
+{
+    (void)length;
+    arm_device_driver_list_s *driver = arm_net_phy_driver_pointer(driver_id);
+    if (!driver) {
+        return -1;
+    }
+    protocol_interface_rf_mac_setup_s *mac_setup = (protocol_interface_rf_mac_setup_s*)driver->phy_sap_identifier;
+    if (!mac_setup) {
+        return -2;
+    }
+    uint8_t config_type = *data++;
+    switch (config_type) {
+        case MAC_BROADCAST_EVENT:
+            // If timer is not registered do it here
+            if (mac_setup->bc_timer_id == -1) {
+                mac_setup->bc_timer_id = eventOS_callback_timer_register(bc_enable_timer_cb);
+            }
+            if (mac_setup->bc_timer_id != -1) {
+                uint32_t broadcast_time = common_read_32_bit(data);
+                // Time is given as 50us slots
+                eventOS_callback_timer_start(mac_setup->bc_timer_id, broadcast_time/50);
+                mac_setup->macBroadcastDisabled = false;
+                // Trig TX queue poll to send queued broadcast frames
+                mcps_sap_trig_tx(mac_setup);
+            }
+            break;
+        default:
+            break;
+    }
+    return 0;
+}
+
+
+void sw_mac_stats_update(protocol_interface_rf_mac_setup_s *setup, mac_stats_type_t type, uint32_t update_val)
+{
+    if (setup->mac_statistics) {
+        switch (type) {
+            case STAT_MAC_TX_QUEUE:
+                setup->mac_statistics->mac_tx_queue_size = update_val;
+                if (setup->mac_statistics->mac_tx_queue_size > setup->mac_statistics->mac_tx_queue_peak) {
+                    setup->mac_statistics->mac_tx_queue_peak = setup->mac_statistics->mac_tx_queue_size;
+                }
+                break;
+            case STAT_MAC_RX_COUNT:
+                setup->mac_statistics->mac_rx_count++;
+                setup->mac_statistics->mac_rx_bytes += update_val;
+                break;
+            case STAT_MAC_TX_COUNT:
+                setup->mac_statistics->mac_tx_count++;
+                setup->mac_statistics->mac_tx_bytes += update_val;
+                break;
+            case STAT_MAC_BC_RX_COUNT:
+                setup->mac_statistics->mac_bc_rx_count++;
+                break;
+            case STAT_MAC_BC_TX_COUNT:
+                setup->mac_statistics->mac_bc_tx_count++;
+                break;
+            case STAT_MAC_BEA_RX_COUNT:
+                setup->mac_statistics->mac_beacon_rx_count++;
+                break;
+            case STAT_MAC_BEA_TX_COUNT:
+                setup->mac_statistics->mac_beacon_tx_count++;
+                break;
+            case STAT_MAC_RX_DROP:
+                setup->mac_statistics->mac_rx_drop_count++;
+                break;
+            case STAT_MAC_TX_FAIL:
+                setup->mac_statistics->mac_tx_failed_count++;
+                break;
+            case STAT_MAC_TX_RETRY:
+                setup->mac_statistics->mac_retry_count += update_val;
+                break;
+            case STAT_MAC_TX_CCA_ATT:
+                setup->mac_statistics->mac_cca_attempts_count += update_val;
+                break;
+            case STAT_MAC_TX_CCA_FAIL:
+                setup->mac_statistics->mac_failed_cca_count++;
+                break;
+        }
+    }
+}