Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_private/spi_share_hw_ctrl.h"
#include <stdatomic.h>
#include "sdkconfig.h"
#include "soc/soc_caps.h"
#include "hal/spi_ll.h"
#include "esp_log.h"
SPI_TAG
spi_periph_claimed
spi_claiming_func
spicommon_periph_claim(spi_host_device_t, const char *)
spicommon_periph_in_use(spi_host_device_t)
spicommon_periph_free(spi_host_device_t)
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_hw_support/spi_share_hw_ctrl.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include "esp_private/spi_share_hw_ctrl.h" #include <stdatomic.h> #include "sdkconfig.h" #include "soc/soc_caps.h" #include "hal/spi_ll.h" #include "esp_log.h"6 includes static const char* SPI_TAG = "spi_share_hw_ctrl"; //Periph 1 is 'claimed' by SPI flash code. static atomic_bool spi_periph_claimed[SOC_SPI_PERIPH_NUM] = { ATOMIC_VAR_INIT(true), ATOMIC_VAR_INIT(false), #if (SOC_SPI_PERIPH_NUM >= 3) ATOMIC_VAR_INIT(false), #endif #if (SOC_SPI_PERIPH_NUM >= 4) ATOMIC_VAR_INIT(false), #endif }{...}; static const char* spi_claiming_func[3] = {NULL, NULL, NULL}; //----------------------------------------------------------alloc spi periph-------------------------------------------------------// //Returns true if this peripheral is successfully claimed, false if otherwise. bool spicommon_periph_claim(spi_host_device_t host, const char* source) { bool false_var = false; bool ret = atomic_compare_exchange_strong(&spi_periph_claimed[host], &false_var, true); if (ret) { spi_claiming_func[host] = source; SPI_COMMON_RCC_CLOCK_ATOMIC() { spi_ll_enable_bus_clock(host, true); spi_ll_reset_register(host); }{...} }{...} else { ESP_EARLY_LOGE(SPI_TAG, "SPI%d already claimed by %s.", host + 1, spi_claiming_func[host]); }{...} return ret; }{ ... } bool spicommon_periph_in_use(spi_host_device_t host) { return atomic_load(&spi_periph_claimed[host]); }{ ... } //Returns true if this peripheral is successfully freed, false if otherwise. bool spicommon_periph_free(spi_host_device_t host) { bool true_var = true; bool ret = atomic_compare_exchange_strong(&spi_periph_claimed[host], &true_var, false); if (ret) { SPI_COMMON_RCC_CLOCK_ATOMIC() { spi_ll_enable_bus_clock(host, false); }{...} }{...} return ret; }{ ... }
Details