mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
631 lines
18 KiB
C
631 lines
18 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
// The LL layer for ESP32-C5 MODEM SYSCON register operations
|
|
|
|
#pragma once
|
|
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
#include "soc/soc.h"
|
|
#include "hal/assert.h"
|
|
#include "modem/modem_syscon_struct.h"
|
|
#include "hal/modem_clock_types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_test_clk(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->test_conf.clk_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_data_dump_mux_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf.clk_data_dump_mux = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_etm_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf.clk_etm_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_ieee802154_apb_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf.clk_zb_apb_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_ieee802154_mac_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf.clk_zbmac_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_modem_sec_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf.clk_modem_sec_en = en;
|
|
hw->clk_conf.clk_modem_sec_ecb_en = en;
|
|
hw->clk_conf.clk_modem_sec_ccm_en = en;
|
|
hw->clk_conf.clk_modem_sec_bah_en = en;
|
|
hw->clk_conf.clk_modem_sec_apb_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_ble_timer_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf.clk_ble_timer_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_data_dump_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf.clk_data_dump_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_etm_force_clock(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->clk_conf_force_on.clk_etm_fo = 1;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_ieee802154_apb_clock_force(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->clk_conf_force_on.clk_zbmac_apb_fo = 1;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_ieee802154_mac_clock_force(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->clk_conf_force_on.clk_zbmac_fo = 1;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_modem_sec_force_clock(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->clk_conf_force_on.clk_modem_sec_fo = 1;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_ble_timer_force_clock(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->clk_conf_force_on.clk_ble_timer_fo = 1;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_data_dump_force_clock(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->clk_conf_force_on.clk_data_dump_fo = 1;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline uint32_t modem_syscon_ll_get_ieee802154_icg_bitmap(modem_syscon_dev_t *hw)
|
|
{
|
|
return hw->clk_conf_power_st.clk_zb_st_map;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_set_ieee802154_icg_bitmap(modem_syscon_dev_t *hw, uint32_t bitmap)
|
|
{
|
|
hw->clk_conf_power_st.clk_zb_st_map = bitmap;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline uint32_t modem_syscon_ll_get_fe_icg_bitmap(modem_syscon_dev_t *hw)
|
|
{
|
|
return hw->clk_conf_power_st.clk_fe_st_map;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_set_fe_icg_bitmap(modem_syscon_dev_t *hw, uint32_t bitmap)
|
|
{
|
|
hw->clk_conf_power_st.clk_fe_st_map = bitmap;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline uint32_t modem_syscon_ll_get_bt_icg_bitmap(modem_syscon_dev_t *hw)
|
|
{
|
|
return hw->clk_conf_power_st.clk_bt_st_map;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_set_bt_icg_bitmap(modem_syscon_dev_t *hw, uint32_t bitmap)
|
|
{
|
|
hw->clk_conf_power_st.clk_bt_st_map = bitmap;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline uint32_t modem_syscon_ll_get_wifi_icg_bitmap(modem_syscon_dev_t *hw)
|
|
{
|
|
return hw->clk_conf_power_st.clk_wifi_st_map;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_set_wifi_icg_bitmap(modem_syscon_dev_t *hw, uint32_t bitmap)
|
|
{
|
|
hw->clk_conf_power_st.clk_wifi_st_map = bitmap;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline uint32_t modem_syscon_ll_get_modem_periph_icg_bitmap(modem_syscon_dev_t *hw)
|
|
{
|
|
return hw->clk_conf_power_st.clk_modem_peri_st_map;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_set_modem_periph_icg_bitmap(modem_syscon_dev_t *hw, uint32_t bitmap)
|
|
{
|
|
hw->clk_conf_power_st.clk_modem_peri_st_map = bitmap;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline uint32_t modem_syscon_ll_get_modem_apb_icg_bitmap(modem_syscon_dev_t *hw)
|
|
{
|
|
return hw->clk_conf_power_st.clk_modem_apb_st_map;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_set_modem_apb_icg_bitmap(modem_syscon_dev_t *hw, uint32_t bitmap)
|
|
{
|
|
hw->clk_conf_power_st.clk_modem_apb_st_map = bitmap;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_reset_wifibb(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->modem_rst_conf.rst_wifibb = 1;
|
|
hw->modem_rst_conf.rst_wifibb = 0;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_reset_wifimac(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->modem_rst_conf.rst_wifimac = 1;
|
|
hw->modem_rst_conf.rst_wifimac = 0;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_reset_fe(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->modem_rst_conf.rst_fe = 1;
|
|
hw->modem_rst_conf.rst_fe = 0;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_reset_btmac_apb(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->modem_rst_conf.rst_btmac_apb = 1;
|
|
hw->modem_rst_conf.rst_btmac_apb = 0;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_reset_btmac(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->modem_rst_conf.rst_btmac = 1;
|
|
hw->modem_rst_conf.rst_btmac = 0;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_reset_btbb_apb(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->modem_rst_conf.rst_btbb_apb = 1;
|
|
hw->modem_rst_conf.rst_btbb_apb = 0;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_reset_btbb(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->modem_rst_conf.rst_btbb = 1;
|
|
hw->modem_rst_conf.rst_btbb = 0;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_reset_etm(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->modem_rst_conf.rst_etm = 1;
|
|
hw->modem_rst_conf.rst_etm = 0;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_reset_zbmac(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->modem_rst_conf.rst_zbmac = 1;
|
|
hw->modem_rst_conf.rst_zbmac = 0;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_reset_modem_sec(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->modem_rst_conf.rst_modem_ecb = 1;
|
|
hw->modem_rst_conf.rst_modem_ccm = 1;
|
|
hw->modem_rst_conf.rst_modem_bah = 1;
|
|
hw->modem_rst_conf.rst_modem_sec = 1;
|
|
hw->modem_rst_conf.rst_modem_ecb = 0;
|
|
hw->modem_rst_conf.rst_modem_ccm = 0;
|
|
hw->modem_rst_conf.rst_modem_bah = 0;
|
|
hw->modem_rst_conf.rst_modem_sec = 0;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_reset_ble_timer(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->modem_rst_conf.rst_ble_timer = 1;
|
|
hw->modem_rst_conf.rst_ble_timer = 0;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_reset_data_dump(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->modem_rst_conf.rst_data_dump = 1;
|
|
hw->modem_rst_conf.rst_data_dump = 0;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_reset_all(modem_syscon_dev_t *hw)
|
|
{
|
|
hw->modem_rst_conf.val = 0xffffffff;
|
|
hw->modem_rst_conf.val = 0;
|
|
}
|
|
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_clk_conf1_configure(modem_syscon_dev_t *hw, bool en, uint32_t mask)
|
|
{
|
|
if(en){
|
|
hw->clk_conf1.val = hw->clk_conf1.val | mask;
|
|
} else {
|
|
hw->clk_conf1.val = hw->clk_conf1.val & ~mask;
|
|
}
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_clk_wifibb_configure(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
/* Configure
|
|
clk_wifibb_22m / clk_wifibb_40m / clk_wifibb_44m / clk_wifibb_80m
|
|
clk_wifibb_40x / clk_wifibb_80x / clk_wifibb_40x1 / clk_wifibb_80x1
|
|
clk_wifibb_160x1
|
|
*/
|
|
modem_syscon_ll_clk_conf1_configure(hw, en, 0x1ff);
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_22m_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_wifibb_22m_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_40m_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_wifibb_40m_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_44m_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_wifibb_44m_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_80m_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_wifibb_80m_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_40x_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_wifibb_40x_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_80x_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_wifibb_80x_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_40x1_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_wifibb_40x1_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_80x1_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_wifibb_80x1_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_160x1_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_wifibb_160x1_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_480m_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1.clk_wifibb_480m_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifi_mac_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_wifimac_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifi_apb_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_wifi_apb_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_20m_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_fe_20m_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_40m_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_fe_40m_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_80m_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_fe_80m_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_160m_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_fe_160m_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_cal_160m_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1.clk_fe_cal_160m_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_apb_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_fe_apb_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_bt_apb_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_bt_apb_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_bt_mac_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_btmac_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_bt_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf1.clk_btbb_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_480m_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1.clk_fe_480m_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_anamode_40m_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1.clk_fe_anamode_40m_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_anamode_80m_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1.clk_fe_anamode_80m_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_anamode_160m_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1.clk_fe_anamode_160m_en = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_22m_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_wifibb_22m_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_40m_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_wifibb_40m_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_44m_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_wifibb_44m_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_80m_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_wifibb_80m_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_40x_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_wifibb_40x_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_80x_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_wifibb_80x_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_40x1_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_wifibb_40x1_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_80x1_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_wifibb_80x1_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_160x1_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_wifibb_160x1_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifibb_480m_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifi_mac_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf_force_on.clk_wifimac_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_wifi_apb_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
hw->clk_conf_force_on.clk_wifi_apb_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_20m_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_fe_20m_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_40m_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_fe_40m_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_80m_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_fe_80m_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_160m_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_fe_160m_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_cal_160m_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_fe_cal_160m_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_apb_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_fe_apb_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_bt_apb_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_bt_apb_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_bt_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_bt_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_480m_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_fe_480m_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_anamode_40m_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_fe_anamode_40m_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_anamode_80m_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_fe_anamode_80m_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline void modem_syscon_ll_enable_fe_anamode_160m_force_clock(modem_syscon_dev_t *hw, bool en)
|
|
{
|
|
HAL_ASSERT(0 && "not implemented yet");
|
|
// hw->clk_conf1_force_on.clk_fe_anamode_160m_fo = en;
|
|
}
|
|
|
|
__attribute__((always_inline))
|
|
static inline uint32_t modem_syscon_ll_get_date(modem_syscon_dev_t *hw)
|
|
{
|
|
return hw->date.val;
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|