| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479 |
- /* Copyright (c) 2015 Nordic Semiconductor. All Rights Reserved.
- *
- * The information contained herein is property of Nordic Semiconductor ASA.
- * Terms and conditions of usage are described in detail in NORDIC
- * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
- *
- * Licensees are granted free, non-transferable use of the information. NO
- * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
- * the file.
- *
- */
- #include "nrf_drv_clock.h"
- #include "nrf_error.h"
- #include "nordic_common.h"
- #ifdef SOFTDEVICE_PRESENT
- #include "nrf_sdm.h"
- #include "nrf_soc.h"
- #include "app_util_platform.h"
- #else
- #include "app_util_platform.h"
- #endif // SOFTDEVICE_PRESENT
- /*lint -save -e652 */
- #define NRF_CLOCK_LFCLK_RC CLOCK_LFCLKSRC_SRC_RC
- #define NRF_CLOCK_LFCLK_Xtal CLOCK_LFCLKSRC_SRC_Xtal
- #define NRF_CLOCK_LFCLK_Synth CLOCK_LFCLKSRC_SRC_Synth
- /*lint -restore */
- #define INT_MAX 0xFFFFFFFF
- #if (CLOCK_CONFIG_LF_SRC == NRF_CLOCK_LFCLK_RC) && !defined(SOFTDEVICE_PRESENT)
- #define CALIBRATION_SUPPORT 1
- #else
- #define CALIBRATION_SUPPORT 0
- #endif
- typedef enum
- {
- CAL_STATE_IDLE,
- CAL_STATE_CT,
- CAL_STATE_HFCLK_REQ,
- CAL_STATE_CAL,
- CAL_STATE_ABORT,
- } nrf_drv_clock_cal_state_t;
- /**@brief CLOCK control block. */
- typedef struct
- {
- volatile uint32_t hfclk_requests; /*< High-frequency clock request counter. */
- volatile nrf_drv_clock_handler_item_t * p_hf_head;
- bool module_initialized; /*< Indicate the state of module */
- volatile bool hfclk_on; /*< High-frequency clock state. */
- #ifndef SOFTDEVICE_PRESENT
- volatile bool lfclk_on; /*< Low-frequency clock state. */
- uint32_t lfclk_requests; /*< Low-frequency clock request counter. */
- volatile nrf_drv_clock_handler_item_t * p_lf_head;
- #if CALIBRATION_SUPPORT
- nrf_drv_clock_handler_item_t cal_hfclk_started_handler_item;
- nrf_drv_clock_event_handler_t cal_done_handler;
- volatile nrf_drv_clock_cal_state_t cal_state;
- #endif //CALIBRATION_SUPPORT
- #endif //SOFTDEVICE_PRESENT
- }nrf_drv_clock_cb_t;
- static nrf_drv_clock_cb_t m_clock_cb;
- #ifndef SOFTDEVICE_PRESENT
- /**@brief Function for starting LFCLK. This function will return immediately without waiting for start.
- */
- static void lfclk_start(void)
- {
- nrf_clock_event_clear(NRF_CLOCK_EVENT_LFCLKSTARTED);
- nrf_clock_int_enable(NRF_CLOCK_INT_LF_STARTED_MASK);
- nrf_clock_task_trigger(NRF_CLOCK_TASK_LFCLKSTART);
- }
- /**@brief Function for stopping LFCLK and calibration (if it was set up).
- */
- static void lfclk_stop(void)
- {
- #if CALIBRATION_SUPPORT
- (void)nrf_drv_clock_calibration_abort();
- #endif //CALIBRATION_SUPPORT
- nrf_clock_task_trigger(NRF_CLOCK_TASK_LFCLKSTOP);
- while (nrf_clock_lf_is_running())
- {}
- }
- #endif
- static void hfclk_start(void)
- {
- #ifndef SOFTDEVICE_PRESENT
- nrf_clock_event_clear(NRF_CLOCK_EVENT_HFCLKSTARTED);
- nrf_clock_int_enable(NRF_CLOCK_INT_HF_STARTED_MASK);
- nrf_clock_task_trigger(NRF_CLOCK_TASK_HFCLKSTART);
- #else
- UNUSED_VARIABLE(sd_clock_hfclk_request());
- #endif
- }
- static void hfclk_stop(void)
- {
- #ifndef SOFTDEVICE_PRESENT
- nrf_clock_task_trigger(NRF_CLOCK_TASK_HFCLKSTOP);
- while (nrf_clock_hf_is_running(NRF_CLOCK_HFCLK_HIGH_ACCURACY))
- {}
- #else
- UNUSED_VARIABLE(sd_clock_hfclk_release());
- #endif
- }
- ret_code_t nrf_drv_clock_init(void)
- {
- uint32_t result = NRF_SUCCESS;
- if (m_clock_cb.module_initialized)
- {
- return MODULE_ALREADY_INITIALIZED;
- }
- m_clock_cb.p_hf_head = NULL;
- m_clock_cb.hfclk_requests = 0;
- #ifndef SOFTDEVICE_PRESENT
- m_clock_cb.p_lf_head = NULL;
- m_clock_cb.lfclk_requests = 0;
- nrf_clock_xtalfreq_set(CLOCK_CONFIG_XTAL_FREQ);
- nrf_clock_lf_src_set((nrf_clock_lfclk_t)CLOCK_CONFIG_LF_SRC);
- nrf_drv_common_irq_enable(POWER_CLOCK_IRQn, CLOCK_CONFIG_IRQ_PRIORITY);
- #if CALIBRATION_SUPPORT
- m_clock_cb.cal_state = CAL_STATE_IDLE;
- #endif // CALIBRATION_SUPPORT
- #else // SOFTDEVICE_PRESENT
- uint8_t is_enabled;
- result = sd_softdevice_is_enabled(&is_enabled);
- if((result == NRF_SUCCESS) && !is_enabled)
- {
- result = NRF_ERROR_SOFTDEVICE_NOT_ENABLED;
- }
- #endif // SOFTDEVICE_PRESENT
- m_clock_cb.module_initialized = true;
- return result;
- }
- void nrf_drv_clock_uninit(void)
- {
- ASSERT(m_clock_cb.module_initialized);
- #ifndef SOFTDEVICE_PRESENT
- nrf_drv_common_irq_disable(POWER_CLOCK_IRQn);
- nrf_clock_int_disable(0xFFFFFFFF);
- lfclk_stop();
- #endif
- hfclk_stop();
- m_clock_cb.module_initialized = false;
- }
- static void item_enqueue(nrf_drv_clock_handler_item_t ** p_head,
- nrf_drv_clock_handler_item_t * p_item)
- {
- if (*p_head)
- {
- p_item->p_next = *p_head;
- *p_head = p_item;
- }
- else
- {
- p_item->p_next = NULL;
- *p_head = p_item;
- }
- }
- static nrf_drv_clock_handler_item_t * item_dequeue(nrf_drv_clock_handler_item_t ** p_head)
- {
- nrf_drv_clock_handler_item_t * p_item = *p_head;
- if (p_item)
- {
- *p_head = p_item->p_next;
- }
- return p_item;
- }
- void nrf_drv_clock_lfclk_request(nrf_drv_clock_handler_item_t * p_handler_item)
- {
- ASSERT(m_clock_cb.module_initialized);
- #ifndef SOFTDEVICE_PRESENT
- ASSERT(m_clock_cb.lfclk_requests != INT_MAX);
- CRITICAL_REGION_ENTER();
- if (m_clock_cb.lfclk_on)
- {
- if (p_handler_item)
- {
- p_handler_item->event_handler(NRF_DRV_CLOCK_EVT_LFCLK_STARTED);
- }
- }
- else
- {
- if (p_handler_item)
- {
- item_enqueue((nrf_drv_clock_handler_item_t **)&m_clock_cb.p_lf_head, p_handler_item);
- }
- if (m_clock_cb.lfclk_requests == 0)
- {
- lfclk_start();
- }
- }
- m_clock_cb.lfclk_requests++;
- CRITICAL_REGION_EXIT();
- #else
- if (p_handler_item)
- {
- p_handler_item->event_handler(NRF_DRV_CLOCK_EVT_LFCLK_STARTED);
- }
- #endif // SOFTDEVICE_PRESENT
- }
- void nrf_drv_clock_lfclk_release(void)
- {
- ASSERT(m_clock_cb.module_initialized);
- #ifndef SOFTDEVICE_PRESENT
- ASSERT(m_clock_cb.lfclk_requests > 0);
- CRITICAL_REGION_ENTER();
- m_clock_cb.lfclk_requests--;
- if (m_clock_cb.lfclk_requests == 0)
- {
- lfclk_stop();
- m_clock_cb.lfclk_on = false;
- m_clock_cb.p_lf_head = NULL;
- }
- CRITICAL_REGION_EXIT();
- #endif // SOFTDEVICE_PRESENT
- }
- bool nrf_drv_clock_lfclk_is_running(void)
- {
- ASSERT(m_clock_cb.module_initialized);
- bool result;
- #ifndef SOFTDEVICE_PRESENT
- result = nrf_clock_lf_is_running();
- #else
- result = true;
- #endif
- return result;
- }
- void nrf_drv_clock_hfclk_request(nrf_drv_clock_handler_item_t * p_handler_item)
- {
- ASSERT(m_clock_cb.module_initialized);
- ASSERT(m_clock_cb.hfclk_requests != INT_MAX);
- CRITICAL_REGION_ENTER();
- if (m_clock_cb.hfclk_on)
- {
- if (p_handler_item)
- {
- p_handler_item->event_handler(NRF_DRV_CLOCK_EVT_HFCLK_STARTED);
- }
- }
- else
- {
- if (p_handler_item)
- {
- item_enqueue((nrf_drv_clock_handler_item_t **)&m_clock_cb.p_hf_head, p_handler_item);
- }
- if (m_clock_cb.hfclk_requests == 0)
- {
- hfclk_start();
- }
- }
- m_clock_cb.hfclk_requests++;
- CRITICAL_REGION_EXIT();
- }
- void nrf_drv_clock_hfclk_release(void)
- {
- ASSERT(m_clock_cb.module_initialized);
- ASSERT(m_clock_cb.hfclk_requests > 0);
- //disable interrupts CLOCK or SoftDevice events
- CRITICAL_REGION_ENTER();
- m_clock_cb.hfclk_requests--;
- if (m_clock_cb.hfclk_requests == 0)
- {
- hfclk_stop();
- m_clock_cb.hfclk_on = false;
- m_clock_cb.p_hf_head = NULL;
- }
- CRITICAL_REGION_EXIT();
- //enable interrupts CLOCK or SoftDevice events
- }
- bool nrf_drv_clock_hfclk_is_running(void)
- {
- bool result;
- ASSERT(m_clock_cb.module_initialized);
- #ifndef SOFTDEVICE_PRESENT
- result = nrf_clock_hf_is_running(NRF_CLOCK_HFCLK_HIGH_ACCURACY);
- #else
- uint32_t is_running;
- UNUSED_VARIABLE(sd_clock_hfclk_is_running(&is_running));
- result = is_running ? true : false;
- #endif
- return result;
- }
- #if CALIBRATION_SUPPORT
- static void clock_calibration_hf_started(nrf_drv_clock_evt_type_t event)
- {
- if (m_clock_cb.cal_state == CAL_STATE_ABORT)
- {
- nrf_drv_clock_hfclk_release();
- m_clock_cb.cal_state = CAL_STATE_IDLE;
- if (m_clock_cb.cal_done_handler)
- {
- m_clock_cb.cal_done_handler(NRF_DRV_CLOCK_EVT_CAL_ABORTED);
- }
- }
- else
- {
- nrf_clock_int_enable(NRF_CLOCK_INT_DONE_MASK);
- m_clock_cb.cal_state = CAL_STATE_CAL;
- nrf_clock_task_trigger(NRF_CLOCK_TASK_CAL);
- }
- }
- #endif
- ret_code_t nrf_drv_clock_calibration_start(uint8_t interval, nrf_drv_clock_event_handler_t handler)
- {
- #if CALIBRATION_SUPPORT
- ASSERT(m_clock_cb.cal_state == CAL_STATE_IDLE);
- ret_code_t ret = NRF_SUCCESS;
- if (m_clock_cb.lfclk_on == false)
- {
- ret = NRF_ERROR_INVALID_STATE;
- }
- else if (m_clock_cb.cal_state == CAL_STATE_IDLE)
- {
- m_clock_cb.cal_done_handler = handler;
- m_clock_cb.cal_hfclk_started_handler_item.event_handler = clock_calibration_hf_started;
- if (interval == 0)
- {
- m_clock_cb.cal_state = CAL_STATE_HFCLK_REQ;
- nrf_drv_clock_hfclk_request(&m_clock_cb.cal_hfclk_started_handler_item);
- }
- else
- {
- m_clock_cb.cal_state = CAL_STATE_CT;
- nrf_clock_cal_timer_timeout_set(interval);
- nrf_clock_int_enable(NRF_CLOCK_INT_CTTO_MASK);
- nrf_clock_task_trigger(NRF_CLOCK_TASK_CTSTART);
- }
- }
- else
- {
- ret = NRF_ERROR_BUSY;
- }
- return ret;
- #else //CALIBRATION_SUPPORT
- return NRF_ERROR_FORBIDDEN;
- #endif
- }
- ret_code_t nrf_drv_clock_calibration_abort(void)
- {
- #if CALIBRATION_SUPPORT
- CRITICAL_REGION_ENTER();
- switch(m_clock_cb.cal_state)
- {
- case CAL_STATE_CT:
- nrf_clock_int_disable(NRF_CLOCK_INT_CTTO_MASK);
- nrf_clock_task_trigger(NRF_CLOCK_TASK_CTSTOP);
- m_clock_cb.cal_state = CAL_STATE_IDLE;
- if (m_clock_cb.cal_done_handler)
- {
- m_clock_cb.cal_done_handler(NRF_DRV_CLOCK_EVT_CAL_ABORTED);
- }
- break;
- case CAL_STATE_HFCLK_REQ:
- /* fall through. */
- case CAL_STATE_CAL:
- m_clock_cb.cal_state = CAL_STATE_ABORT;
- break;
- default:
- break;
- }
- CRITICAL_REGION_EXIT();
- return NRF_SUCCESS;
- #else //CALIBRATION_SUPPORT
- return NRF_ERROR_FORBIDDEN;
- #endif
- }
- ret_code_t nrf_drv_clock_is_calibrating(bool * p_is_calibrating)
- {
- #if CALIBRATION_SUPPORT
- ASSERT(m_clock_cb.module_initialized);
- *p_is_calibrating = (m_clock_cb.cal_state != CAL_STATE_IDLE);
- return NRF_SUCCESS;
- #else //CALIBRATION_SUPPORT
- return NRF_ERROR_FORBIDDEN;
- #endif
- }
- static __INLINE void clock_clk_started_notify(nrf_drv_clock_handler_item_t **p_head,
- nrf_drv_clock_evt_type_t evt_type)
- {
- while(1)
- {
- nrf_drv_clock_handler_item_t * p_item = item_dequeue(p_head);
- if (p_item)
- {
- p_item->event_handler(evt_type);
- }
- else
- {
- break;
- }
- }
- }
- #ifndef SOFTDEVICE_PRESENT
- void POWER_CLOCK_IRQHandler(void)
- {
- if (nrf_clock_event_check(NRF_CLOCK_EVENT_HFCLKSTARTED))
- {
- nrf_clock_event_clear(NRF_CLOCK_EVENT_HFCLKSTARTED);
- nrf_clock_int_disable(NRF_CLOCK_INT_HF_STARTED_MASK);
- m_clock_cb.hfclk_on = true;
- clock_clk_started_notify((nrf_drv_clock_handler_item_t **)&m_clock_cb.p_hf_head, NRF_DRV_CLOCK_EVT_HFCLK_STARTED);
- }
- if (nrf_clock_event_check(NRF_CLOCK_EVENT_LFCLKSTARTED))
- {
- nrf_clock_event_clear(NRF_CLOCK_EVENT_LFCLKSTARTED);
- nrf_clock_int_disable(NRF_CLOCK_INT_LF_STARTED_MASK);
- m_clock_cb.lfclk_on = true;
- clock_clk_started_notify((nrf_drv_clock_handler_item_t **)&m_clock_cb.p_lf_head, NRF_DRV_CLOCK_EVT_LFCLK_STARTED);
- }
- #if CALIBRATION_SUPPORT
- if (nrf_clock_event_check(NRF_CLOCK_EVENT_CTTO))
- {
- nrf_clock_event_clear(NRF_CLOCK_EVENT_CTTO);
- nrf_clock_int_disable(NRF_CLOCK_INT_CTTO_MASK);
- nrf_drv_clock_hfclk_request(&m_clock_cb.cal_hfclk_started_handler_item);
- }
- if (nrf_clock_event_check(NRF_CLOCK_EVENT_DONE))
- {
- nrf_clock_event_clear(NRF_CLOCK_EVENT_DONE);
- nrf_clock_int_disable(NRF_CLOCK_INT_DONE_MASK);
- nrf_drv_clock_hfclk_release();
- nrf_drv_clock_evt_type_t evt_type = (m_clock_cb.cal_state == CAL_STATE_ABORT) ?
- NRF_DRV_CLOCK_EVT_CAL_ABORTED : NRF_DRV_CLOCK_EVT_CAL_DONE;
- m_clock_cb.cal_state = CAL_STATE_IDLE;
- if (m_clock_cb.cal_done_handler)
- {
- m_clock_cb.cal_done_handler(evt_type);
- }
- }
- #endif //CALIBRATION_SUPPORT
- }
- #else
- void nrf_drv_clock_on_soc_event(uint32_t evt_id)
- {
- if (evt_id == NRF_EVT_HFCLKSTARTED)
- {
- clock_clk_started_notify((nrf_drv_clock_handler_item_t **)&m_clock_cb.p_hf_head, NRF_DRV_CLOCK_EVT_HFCLK_STARTED);
- }
- }
- #endif // SOFTDEVICE_PRESENT
- #undef NRF_CLOCK_LFCLK_RC
- #undef NRF_CLOCK_LFCLK_Xtal
- #undef NRF_CLOCK_LFCLK_Synth
|