2020-02-21 04:06:35 +00:00
|
|
|
// Copyright 2015-2020 Espressif Systems (Shanghai) PTE LTD
|
2016-09-28 15:20:34 +00:00
|
|
|
//
|
|
|
|
// 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
|
2020-02-21 04:06:35 +00:00
|
|
|
//
|
2016-09-28 15:20:34 +00:00
|
|
|
// 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 "freertos/FreeRTOS.h"
|
2020-02-21 04:06:35 +00:00
|
|
|
#include "hal/clk_gate_ll.h"
|
2016-09-28 15:20:34 +00:00
|
|
|
#include "driver/periph_ctrl.h"
|
|
|
|
|
|
|
|
static portMUX_TYPE periph_spinlock = portMUX_INITIALIZER_UNLOCKED;
|
|
|
|
|
2020-04-10 08:09:07 +00:00
|
|
|
static uint8_t ref_counts[PERIPH_MODULE_MAX] = {0};
|
|
|
|
|
2016-09-28 15:20:34 +00:00
|
|
|
void periph_module_enable(periph_module_t periph)
|
|
|
|
{
|
2020-04-10 08:09:07 +00:00
|
|
|
assert(periph < PERIPH_MODULE_MAX);
|
2019-03-25 10:32:15 +00:00
|
|
|
portENTER_CRITICAL_SAFE(&periph_spinlock);
|
2020-04-10 08:09:07 +00:00
|
|
|
if (ref_counts[periph] == 0) {
|
|
|
|
periph_ll_enable_clk_clear_rst(periph);
|
|
|
|
}
|
|
|
|
ref_counts[periph]++;
|
2019-03-25 10:32:15 +00:00
|
|
|
portEXIT_CRITICAL_SAFE(&periph_spinlock);
|
2017-10-02 06:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void periph_module_disable(periph_module_t periph)
|
|
|
|
{
|
2020-04-10 08:09:07 +00:00
|
|
|
assert(periph < PERIPH_MODULE_MAX);
|
2019-03-25 10:32:15 +00:00
|
|
|
portENTER_CRITICAL_SAFE(&periph_spinlock);
|
2020-04-10 08:09:07 +00:00
|
|
|
ref_counts[periph]--;
|
|
|
|
if (ref_counts[periph] == 0) {
|
|
|
|
periph_ll_disable_clk_set_rst(periph);
|
|
|
|
}
|
2019-03-25 10:32:15 +00:00
|
|
|
portEXIT_CRITICAL_SAFE(&periph_spinlock);
|
2017-10-02 06:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void periph_module_reset(periph_module_t periph)
|
|
|
|
{
|
2020-04-10 08:09:07 +00:00
|
|
|
assert(periph < PERIPH_MODULE_MAX);
|
2019-03-25 10:32:15 +00:00
|
|
|
portENTER_CRITICAL_SAFE(&periph_spinlock);
|
2020-02-21 04:06:35 +00:00
|
|
|
periph_ll_reset(periph);
|
2019-03-25 10:32:15 +00:00
|
|
|
portEXIT_CRITICAL_SAFE(&periph_spinlock);
|
2017-10-02 06:48:16 +00:00
|
|
|
}
|