soc: st: stm32: stm32wbax: STM32WBA Cube 1.4.1 integration
Removed unnecessary pure HAL stm32 functions Headers cleanup Signed-off-by: Alessandro Manganaro <alessandro.manganaro@st.com>
This commit is contained in:
parent
13f1200e77
commit
4b4bba4fa4
4 changed files with 4 additions and 80 deletions
|
|
@ -14,5 +14,6 @@ config SOC_SERIES_STM32WBAX
|
|||
select CPU_CORTEX_M_HAS_DWT
|
||||
select HAS_STM32CUBE
|
||||
select USE_STM32_HAL_PWR_EX
|
||||
select USE_STM32_HAL_CORTEX
|
||||
select HAS_PM
|
||||
select SOC_EARLY_INIT_HOOK
|
||||
|
|
|
|||
|
|
@ -4,22 +4,14 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr/irq.h>
|
||||
#include <zephyr/kernel.h>
|
||||
#include <zephyr/arch/cpu.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/drivers/entropy.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
#include <cmsis_core.h>
|
||||
|
||||
#include <linklayer_plat_local.h>
|
||||
|
||||
#include <stm32_ll_pwr.h>
|
||||
|
||||
#include "scm.h"
|
||||
|
||||
#define LOG_LEVEL CONFIG_SOC_LOG_LEVEL
|
||||
LOG_MODULE_REGISTER(linklayer_plat);
|
||||
LOG_MODULE_REGISTER(linklayer_plat_adapt);
|
||||
|
||||
#define RADIO_INTR_PRIO_HIGH_Z (RADIO_INTR_PRIO_HIGH + _IRQ_PRIO_OFFSET)
|
||||
#define RADIO_INTR_PRIO_LOW_Z (RADIO_INTR_PRIO_LOW + _IRQ_PRIO_OFFSET)
|
||||
|
|
@ -36,52 +28,17 @@ extern const struct device *rng_dev;
|
|||
volatile int32_t prio_high_isr_counter;
|
||||
volatile int32_t prio_low_isr_counter;
|
||||
volatile int32_t prio_sys_isr_counter;
|
||||
volatile int32_t irq_counter;
|
||||
volatile uint32_t local_basepri_value;
|
||||
|
||||
/* Radio SW low ISR global variable */
|
||||
volatile uint8_t radio_sw_low_isr_is_running_high_prio;
|
||||
|
||||
void LINKLAYER_PLAT_ClockInit(void)
|
||||
{
|
||||
LL_PWR_EnableBkUpAccess();
|
||||
|
||||
/* Select LSE as Sleep CLK */
|
||||
__HAL_RCC_RADIOSLPTIM_CONFIG(RCC_RADIOSTCLKSOURCE_LSE);
|
||||
|
||||
LL_PWR_DisableBkUpAccess();
|
||||
|
||||
/* Enable AHB5ENR peripheral clock (bus CLK) */
|
||||
__HAL_RCC_RADIO_CLK_ENABLE();
|
||||
}
|
||||
|
||||
void LINKLAYER_PLAT_DelayUs(uint32_t delay)
|
||||
{
|
||||
k_busy_wait(delay);
|
||||
}
|
||||
|
||||
void LINKLAYER_PLAT_WaitHclkRdy(void)
|
||||
{
|
||||
while (HAL_RCCEx_GetRadioBusClockReadiness() != RCC_RADIO_BUS_CLOCK_READY) {
|
||||
}
|
||||
}
|
||||
|
||||
void LINKLAYER_PLAT_AclkCtrl(uint8_t enable)
|
||||
{
|
||||
LOG_DBG("enable: %d", enable);
|
||||
if (enable) {
|
||||
/* Enable RADIO baseband clock (active CLK) */
|
||||
HAL_RCCEx_EnableRadioBBClock();
|
||||
|
||||
/* Polling on HSE32 activation */
|
||||
while (LL_RCC_HSE_IsReady() == 0) {
|
||||
}
|
||||
} else {
|
||||
/* Disable RADIO baseband clock (active CLK) */
|
||||
HAL_RCCEx_DisableRadioBBClock();
|
||||
}
|
||||
}
|
||||
|
||||
void LINKLAYER_PLAT_GetRNG(uint8_t *ptr_rnd, uint32_t len)
|
||||
{
|
||||
int ret;
|
||||
|
|
@ -191,22 +148,6 @@ void LINKLAYER_PLAT_TriggerSwLowIT(uint8_t priority)
|
|||
NVIC_SetPendingIRQ((IRQn_Type)RADIO_SW_LOW_INTR_NUM);
|
||||
}
|
||||
|
||||
void LINKLAYER_PLAT_EnableIRQ(void)
|
||||
{
|
||||
irq_counter = MAX(0, irq_counter - 1);
|
||||
|
||||
if (irq_counter == 0) {
|
||||
__enable_irq();
|
||||
}
|
||||
}
|
||||
|
||||
void LINKLAYER_PLAT_DisableIRQ(void)
|
||||
{
|
||||
__disable_irq();
|
||||
|
||||
irq_counter++;
|
||||
}
|
||||
|
||||
void LINKLAYER_PLAT_Assert(uint8_t condition)
|
||||
{
|
||||
__ASSERT_NO_MSG(condition);
|
||||
|
|
@ -267,16 +208,6 @@ void LINKLAYER_PLAT_DisableSpecificIRQ(uint8_t isr_type)
|
|||
}
|
||||
}
|
||||
|
||||
void LINKLAYER_PLAT_EnableRadioIT(void)
|
||||
{
|
||||
irq_enable((IRQn_Type)RADIO_INTR_NUM);
|
||||
}
|
||||
|
||||
void LINKLAYER_PLAT_DisableRadioIT(void)
|
||||
{
|
||||
irq_disable((IRQn_Type)RADIO_INTR_NUM);
|
||||
}
|
||||
|
||||
void LINKLAYER_PLAT_StartRadioEvt(void)
|
||||
{
|
||||
__HAL_RCC_RADIO_CLK_SLEEP_ENABLE();
|
||||
|
|
|
|||
|
|
@ -8,12 +8,9 @@
|
|||
|
||||
#include <zephyr/logging/log.h>
|
||||
#define LOG_LEVEL CONFIG_SOC_LOG_LEVEL
|
||||
LOG_MODULE_REGISTER(ll_sys_if);
|
||||
LOG_MODULE_REGISTER(ll_sys_if_adapt);
|
||||
|
||||
#include "ll_intf.h"
|
||||
#include "ll_sys.h"
|
||||
#include "linklayer_plat.h"
|
||||
#include "app_conf.h"
|
||||
|
||||
extern struct k_mutex ble_ctlr_stack_mutex;
|
||||
extern struct k_work_q ll_work_q;
|
||||
|
|
@ -40,8 +37,3 @@ void ll_sys_bg_process_init(void)
|
|||
{
|
||||
k_work_init(&ll_sys_work, &ll_sys_bg_process_handler);
|
||||
}
|
||||
|
||||
void ll_sys_config_params(void)
|
||||
{
|
||||
ll_intf_config_ll_ctx_params(USE_RADIO_LOW_ISR, NEXT_EVENT_SCHEDULING_FROM_ISR);
|
||||
}
|
||||
|
|
|
|||
2
west.yml
2
west.yml
|
|
@ -233,7 +233,7 @@ manifest:
|
|||
groups:
|
||||
- hal
|
||||
- name: hal_stm32
|
||||
revision: 6f0e5f70cb540c487e3e3678af2e95d0937f9863
|
||||
revision: 019d8255333f96bdd47d26b44049bd3e7af8ef55
|
||||
path: modules/hal/stm32
|
||||
groups:
|
||||
- hal
|
||||
|
|
|
|||
Loading…
Reference in a new issue