Simplified critical_section_api.c for NRF52 series

Critical section enter/exit is now delegated to Nordic SDK's

sd_nvic_critical_region_enter
sd_nvic_critical_region_exit

When the SoftDevice is not included these functions map to

__disable_irq
__enable_irq
pull/6547/head
Marcus Chang 2018-01-30 22:06:48 -08:00
parent 60397c527e
commit 770b1a326e
2 changed files with 43 additions and 107 deletions

View File

@ -0,0 +1,43 @@
/*
* Copyright (c) 2015-2016, ARM Limited, All Rights Reserved
* 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 "hal/critical_section_api.h"
#include "nrf_nvic.h"
#include <stdint.h>
static uint8_t outside_critical_region = 1;
void hal_critical_section_enter()
{
/* expect 1 or N calls but only lock on the first one */
if (outside_critical_region) {
sd_nvic_critical_region_enter(&outside_critical_region);
}
}
void hal_critical_section_exit()
{
/* unlock on first call */
outside_critical_region = 1;
sd_nvic_critical_region_exit(0);
}
bool hal_in_critical_section(void)
{
return !outside_critical_region;
}

View File

@ -1,107 +0,0 @@
/*
* Copyright (c) 2015-2016, ARM Limited, All Rights Reserved
* 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 <stdint.h>
#include "app_util_platform.h"
#if defined(SOFTDEVICE_PRESENT)
static volatile bool state_saved = false;
static void nordic_nvic_critical_region_enter(void);
static void nordic_nvic_critical_region_exit(void);
#endif
void hal_critical_section_enter()
{
#ifdef NRF52
ASSERT(APP_LEVEL_PRIVILEGED == privilege_level_get())
#endif
#if defined(SOFTDEVICE_PRESENT)
/* return value can be safely ignored */
nordic_nvic_critical_region_enter();
#else
app_util_disable_irq();
#endif
}
void hal_critical_section_exit()
{
#ifdef NRF52
ASSERT(APP_LEVEL_PRIVILEGED == privilege_level_get())
#endif
#if defined(SOFTDEVICE_PRESENT)
/* return value can be safely ignored */
nordic_nvic_critical_region_exit();
#else
app_util_enable_irq();
#endif
}
bool hal_in_critical_section(void)
{
return (state_saved != 0);
}
#if defined(SOFTDEVICE_PRESENT)
/**@brief Enters critical region.
*
* @post Application interrupts will be disabled.
* @sa nordic_nvic_critical_region_exit
*/
static inline void nordic_nvic_critical_region_enter(void)
{
int was_masked = __sd_nvic_irq_disable();
if (state_saved == false) {
nrf_nvic_state.__irq_masks[0] = ( NVIC->ICER[0] & __NRF_NVIC_APP_IRQS_0 );
NVIC->ICER[0] = __NRF_NVIC_APP_IRQS_0;
#ifdef NRF52
nrf_nvic_state.__irq_masks[1] = ( NVIC->ICER[1] & __NRF_NVIC_APP_IRQS_1 );
NVIC->ICER[1] = __NRF_NVIC_APP_IRQS_1;
#endif
}
state_saved = true;
if (!was_masked) {
__sd_nvic_irq_enable();
}
}
/**@brief Exit critical region.
*
* @pre Application has entered a critical region using ::nordic_nvic_critical_region_enter.
* @post If not in a nested critical region, the application interrupts will restored to the state before ::nordic_nvic_critical_region_enter was called.
*/
static inline void nordic_nvic_critical_region_exit(void)
{
state_saved = false;
int was_masked = __sd_nvic_irq_disable();
NVIC->ISER[0] = nrf_nvic_state.__irq_masks[0];
#ifdef NRF52
NVIC->ISER[1] = nrf_nvic_state.__irq_masks[1];
#endif
if (!was_masked) {
__sd_nvic_irq_enable();
}
}
#endif