Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_check.h"
#include "i2s_private.h"
#include "esp_private/i2s_platform.h"
TAG
g_i2s
i2s_platform_acquire_occupation(i2s_ctlr_t, int, const char *)
i2s_platform_release_occupation(i2s_ctlr_t, int)
i2s_platform_get_dma_buffer_offset()
Files
ESP-IDF
components
app_trace
app_update
bootloader_support
bt
cmock
console
cxx
driver
efuse
esp_adc
esp_app_format
esp_bootloader_format
esp_coex
esp_common
esp_driver_ana_cmpr
esp_driver_cam
esp_driver_dac
esp_driver_gpio
esp_driver_gptimer
esp_driver_i2c
esp_driver_i2s
include
esp_driver_jpeg
esp_driver_ledc
esp_driver_mcpwm
esp_driver_parlio
esp_driver_pcnt
esp_driver_rmt
esp_driver_sdio
esp_driver_sdm
esp_driver_sdmmc
esp_driver_sdspi
esp_driver_spi
esp_driver_tsens
esp_driver_uart
esp_driver_usb_serial_jtag
esp_eth
esp_event
esp_gdbstub
esp_hid
esp_http_client
esp_http_server
esp_https_ota
esp_https_server
esp_hw_support
esp_lcd
esp_local_ctrl
esp_mm
esp_netif
esp_partition
esp_phy
esp_pm
esp_psram
esp_ringbuf
esp_rom
esp_security
esp_system
esp_timer
esp_vfs_console
esp_wifi
esp-tls
espcoredump
hal
heap
http_parser
ieee802154
log
mqtt
newlib
nvs_flash
nvs_sec_provider
openthread
perfmon
protobuf-c
protocomm
pthread
rt
sdmmc
soc
spi_flash
spiffs
tcp_transport
ulp
unity
vfs
wear_levelling
wifi_provisioning
wpa_supplicant
xtensa
examples
lwIP
FreeRTOS
cJSON
mbedTLS
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_driver_i2s/i2s_platform.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include "esp_check.h" #include "i2s_private.h" #include "esp_private/i2s_platform.h" static const char *TAG = "i2s_platform"; /** * @brief Global i2s platform object * @note For saving all the I2S related information *//* ... */ i2s_platform_t g_i2s = { .spinlock = (portMUX_TYPE)portMUX_INITIALIZER_UNLOCKED, .controller[0 ...(SOC_I2S_NUM - 1)] = NULL, // groups will be lazy installed .comp_name[0 ...(SOC_I2S_NUM - 1)] = NULL, #if SOC_LP_I2S_SUPPORTED .lp_controller[0 ...(SOC_LP_I2S_NUM - 1)] = NULL, .lp_comp_name[0 ...(SOC_LP_I2S_NUM - 1)] = NULL,/* ... */ #endif }{...}; /*--------------------------------------------------------------------------- I2S Platform APIs ---------------------------------------------------------------------------- Scope: This file and ADC/DAC/LCD driver ----------------------------------------------------------------------------*//* ... */ esp_err_t i2s_platform_acquire_occupation(i2s_ctlr_t type, int id, const char *comp_name) { esp_err_t ret = ESP_OK; const char *occupied_comp = NULL; ESP_RETURN_ON_FALSE(id < SOC_I2S_NUM, ESP_ERR_INVALID_ARG, TAG, "invalid i2s port id"); if (type == I2S_CTLR_HP) { portENTER_CRITICAL(&g_i2s.spinlock); if ((!g_i2s.controller[id]) && (g_i2s.comp_name[id] == NULL)) { g_i2s.comp_name[id] = comp_name; /* Enable module clock */ I2S_RCC_ATOMIC() { i2s_ll_enable_bus_clock(id, true); i2s_ll_reset_register(id); i2s_ll_enable_core_clock(I2S_LL_GET_HW(id), true); }{...} }{...} else { occupied_comp = g_i2s.comp_name[id]; ret = ESP_ERR_NOT_FOUND; }{...} portEXIT_CRITICAL(&g_i2s.spinlock); }{...} #if SOC_LP_I2S_SUPPORTED else { portENTER_CRITICAL(&g_i2s.spinlock); if ((!g_i2s.lp_controller[id]) && (g_i2s.lp_comp_name[id] == NULL)) { g_i2s.lp_comp_name[id] = comp_name; /* Enable module clock */ I2S_RCC_ATOMIC() { lp_i2s_ll_enable_module_clock(id, true); lp_i2s_ll_reset_module_clock(id); lp_i2s_ll_enable_rx_module_clock(id, true); }{...} }{...} else { occupied_comp = g_i2s.lp_comp_name[id]; ret = ESP_ERR_NOT_FOUND; }{...} portEXIT_CRITICAL(&g_i2s.spinlock); }{...} #endif/* ... */ if (occupied_comp != NULL) { ESP_LOGW(TAG, "i2s controller %d has been occupied by %s", id, occupied_comp); }{...} return ret; }{ ... } esp_err_t i2s_platform_release_occupation(i2s_ctlr_t type, int id) { esp_err_t ret = ESP_OK; ESP_RETURN_ON_FALSE(id < SOC_I2S_NUM, ESP_ERR_INVALID_ARG, TAG, "invalid i2s port id"); if (type == I2S_CTLR_HP) { portENTER_CRITICAL(&g_i2s.spinlock); if (!g_i2s.controller[id]) { g_i2s.comp_name[id] = NULL; /* Disable module clock */ I2S_RCC_ATOMIC() { i2s_ll_enable_bus_clock(id, false); i2s_ll_enable_core_clock(I2S_LL_GET_HW(id), false); }{...} }{...} else { ret = ESP_ERR_INVALID_STATE; }{...} portEXIT_CRITICAL(&g_i2s.spinlock); }{...} #if SOC_LP_I2S_SUPPORTED else { portENTER_CRITICAL(&g_i2s.spinlock); if (!g_i2s.lp_controller[id]) { g_i2s.lp_comp_name[id] = NULL; /* Disable module clock */ I2S_RCC_ATOMIC() { lp_i2s_ll_enable_module_clock(id, false); lp_i2s_ll_enable_rx_module_clock(id, false); }{...} }{...} else { ret = ESP_ERR_INVALID_STATE; }{...} portEXIT_CRITICAL(&g_i2s.spinlock); }{...} #endif/* ... */ return ret; }{ ... } // Only used in `test_i2s_iram.c` to write DMA buffer directly size_t i2s_platform_get_dma_buffer_offset(void) { /* Force to transfer address '0' into 'i2s_chan_handle_t' type, * then find the corresponding field , the address of this field is the offset of this type *//* ... */ return (size_t) & (((i2s_chan_handle_t)0)->dma.bufs); }{ ... }
Details