/hal_espressif-latest/components/xtensa/esp32/include/xtensa/config/ |
D | tie.h | 114 XCHAL_SA_REG(s,1,0,0,1, acclo, 4, 4, 4,0x0210, sr,16 , 32,0,0,0) \ 115 XCHAL_SA_REG(s,1,0,0,1, acchi, 4, 4, 4,0x0211, sr,17 , 8,0,0,0) \ 116 XCHAL_SA_REG(s,0,0,0,1, br, 4, 4, 4,0x0204, sr,4 , 16,0,0,0) \ 117 XCHAL_SA_REG(s,0,0,0,1, scompare1, 4, 4, 4,0x020C, sr,12 , 32,0,0,0) \ 118 XCHAL_SA_REG(s,0,0,0,1, m0, 4, 4, 4,0x0220, sr,32 , 32,0,0,0) \ 119 XCHAL_SA_REG(s,0,0,0,1, m1, 4, 4, 4,0x0221, sr,33 , 32,0,0,0) \ 120 XCHAL_SA_REG(s,0,0,0,1, m2, 4, 4, 4,0x0222, sr,34 , 32,0,0,0) \ 121 XCHAL_SA_REG(s,0,0,0,1, m3, 4, 4, 4,0x0223, sr,35 , 32,0,0,0) \
|
/hal_espressif-latest/components/xtensa/esp32s3/include/xtensa/config/ |
D | tie.h | 117 XCHAL_SA_REG(s,1,0,0,1, acclo, 4, 4, 4,0x0210, sr,16 , 32,0,0,0) \ 118 XCHAL_SA_REG(s,1,0,0,1, acchi, 4, 4, 4,0x0211, sr,17 , 8,0,0,0) \ 119 XCHAL_SA_REG(s,0,0,0,1, br, 4, 4, 4,0x0204, sr,4 , 16,0,0,0) \ 120 XCHAL_SA_REG(s,0,0,0,1, scompare1, 4, 4, 4,0x020C, sr,12 , 32,0,0,0) \ 121 XCHAL_SA_REG(s,0,0,0,1, m0, 4, 4, 4,0x0220, sr,32 , 32,0,0,0) \ 122 XCHAL_SA_REG(s,0,0,0,1, m1, 4, 4, 4,0x0221, sr,33 , 32,0,0,0) \ 123 XCHAL_SA_REG(s,0,0,0,1, m2, 4, 4, 4,0x0222, sr,34 , 32,0,0,0) \ 124 XCHAL_SA_REG(s,0,0,0,1, m3, 4, 4, 4,0x0223, sr,35 , 32,0,0,0)
|
/hal_espressif-latest/components/bt/porting/transport/driver/common/ |
D | hci_driver_util.c | 95 os_sr_t sr; in hci_driver_util_tx_list_enqueue() local 107 OS_ENTER_CRITICAL(sr); in hci_driver_util_tx_list_enqueue() 109 OS_EXIT_CRITICAL(sr); in hci_driver_util_tx_list_enqueue() 111 OS_ENTER_CRITICAL(sr); in hci_driver_util_tx_list_enqueue() 113 OS_EXIT_CRITICAL(sr); in hci_driver_util_tx_list_enqueue() 120 os_sr_t sr; in hci_driver_util_tx_list_dequeue() local 173 OS_ENTER_CRITICAL(sr); in hci_driver_util_tx_list_dequeue() 176 OS_EXIT_CRITICAL(sr); in hci_driver_util_tx_list_dequeue()
|
/hal_espressif-latest/components/spi_flash/ |
D | spi_flash_chip_generic.c | 483 uint32_t sr; in spi_flash_chip_generic_get_io_mode() local 484 esp_err_t ret = spi_flash_common_read_status_8b_rdsr2(chip, &sr); in spi_flash_chip_generic_get_io_mode() 486 *out_io_mode = ((sr & BIT_QE)? SPI_FLASH_QOUT: 0); in spi_flash_chip_generic_get_io_mode() 690 …common_read_qe_sr(esp_flash_t *chip, uint8_t qe_rdsr_command, uint8_t qe_sr_bitwidth, uint32_t *sr) in spi_flash_common_read_qe_sr() argument 699 *sr = sr_buf; in spi_flash_common_read_qe_sr() 716 uint32_t sr, sr2; in spi_flash_common_read_status_16b_rdsr_rdsr2() local 719 ret = spi_flash_common_read_qe_sr(chip, CMD_RDSR, 8, &sr); in spi_flash_common_read_status_16b_rdsr_rdsr2() 722 *out_sr = (sr & 0xff) | ((sr2 & 0xff) << 8); in spi_flash_common_read_status_16b_rdsr_rdsr2() 737 esp_err_t spi_flash_common_write_status_16b_wrsr(esp_flash_t* chip, uint32_t sr) in spi_flash_common_write_status_16b_wrsr() argument 739 return spi_flash_common_write_qe_sr(chip, CMD_WRSR, 16, sr); in spi_flash_common_write_status_16b_wrsr() [all …]
|
D | spi_flash_chip_issi.c | 53 uint32_t sr; in spi_flash_chip_issi_get_io_mode() local 54 esp_err_t ret = spi_flash_common_read_status_8b_rdsr(chip, &sr); in spi_flash_chip_issi_get_io_mode() 56 *out_io_mode = ((sr & BIT_QE)? SPI_FLASH_QOUT: 0); in spi_flash_chip_issi_get_io_mode()
|
D | spi_flash_chip_gd.c | 106 uint32_t sr; in spi_flash_chip_gd_get_io_mode() local 107 esp_err_t ret = spi_flash_common_read_status_8b_rdsr2(chip, &sr); in spi_flash_chip_gd_get_io_mode() 109 *out_io_mode = ((sr & BIT_QE)? SPI_FLASH_QOUT: 0); in spi_flash_chip_gd_get_io_mode()
|
/hal_espressif-latest/components/bt/porting/transport/driver/uart/ |
D | hci_driver_uart_dma.c | 268 os_sr_t sr; in hci_driver_uart_dma_cache_rxinfo() local 270 OS_ENTER_CRITICAL(sr); in hci_driver_uart_dma_cache_rxinfo() 272 OS_EXIT_CRITICAL(sr); in hci_driver_uart_dma_cache_rxinfo() 277 os_sr_t sr; in hci_driver_uart_dma_continue_rx_enable() local 278 OS_ENTER_CRITICAL(sr); in hci_driver_uart_dma_continue_rx_enable() 280 OS_EXIT_CRITICAL(sr); in hci_driver_uart_dma_continue_rx_enable() 285 os_sr_t sr; in hci_driver_uart_dma_rxinfo_mem_exhausted_set() local 286 OS_ENTER_CRITICAL(sr); in hci_driver_uart_dma_rxinfo_mem_exhausted_set() 288 OS_EXIT_CRITICAL(sr); in hci_driver_uart_dma_rxinfo_mem_exhausted_set() 324 os_sr_t sr; in hci_driver_uart_dma_txstate_set() local [all …]
|
/hal_espressif-latest/components/spi_flash/include/ |
D | spi_flash_chip_generic.h | 307 typedef esp_err_t (*esp_flash_wrsr_func_t)(esp_flash_t* chip, uint32_t sr); 318 esp_err_t spi_flash_common_write_status_8b_wrsr(esp_flash_t* chip, uint32_t sr); 329 esp_err_t spi_flash_common_write_status_16b_wrsr(esp_flash_t* chip, uint32_t sr); 340 esp_err_t spi_flash_common_write_status_8b_wrsr2(esp_flash_t* chip, uint32_t sr);
|
/hal_espressif-latest/components/bt/host/nimble/esp-hci/src/ |
D | esp_nimble_hci.c | 157 int sr; in ble_hci_rx_acl() local 177 OS_ENTER_CRITICAL(sr); in ble_hci_rx_acl() 179 OS_EXIT_CRITICAL(sr); in ble_hci_rx_acl()
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/avdt/ |
D | avdt_api.c | 1183 UINT32_TO_BE_STREAM(p, p_data->sr.ntp_sec); in AVDT_SendReport() 1184 UINT32_TO_BE_STREAM(p, p_data->sr.ntp_frac); in AVDT_SendReport() 1185 UINT32_TO_BE_STREAM(p, p_data->sr.rtp_time); in AVDT_SendReport() 1186 UINT32_TO_BE_STREAM(p, p_data->sr.pkt_count); in AVDT_SendReport() 1187 UINT32_TO_BE_STREAM(p, p_data->sr.octet_count); in AVDT_SendReport()
|
D | avdt_scb_act.c | 355 BE_STREAM_TO_UINT32(report.sr.ntp_sec, p); in avdt_scb_hdl_report() 356 BE_STREAM_TO_UINT32(report.sr.ntp_frac, p); in avdt_scb_hdl_report() 357 BE_STREAM_TO_UINT32(report.sr.rtp_time, p); in avdt_scb_hdl_report() 358 BE_STREAM_TO_UINT32(report.sr.pkt_count, p); in avdt_scb_hdl_report() 359 BE_STREAM_TO_UINT32(report.sr.octet_count, p); in avdt_scb_hdl_report()
|
/hal_espressif-latest/components/hal/esp32c2/include/hal/ |
D | i2c_ll.h | 427 return hw->sr.bus_busy; in i2c_ll_is_bus_busy() 452 *length = hw->sr.rxfifo_cnt; in i2c_ll_get_rxfifo_cnt() 465 *length = SOC_I2C_FIFO_LEN - hw->sr.txfifo_cnt; in i2c_ll_get_txfifo_len()
|
/hal_espressif-latest/components/hal/esp32s3/include/hal/ |
D | i2c_ll.h | 443 return hw->sr.bus_busy; in i2c_ll_is_bus_busy() 468 *length = hw->sr.rxfifo_cnt; in i2c_ll_get_rxfifo_cnt() 481 *length = SOC_I2C_FIFO_LEN - hw->sr.txfifo_cnt; in i2c_ll_get_txfifo_len()
|
/hal_espressif-latest/components/hal/esp32c6/include/hal/ |
D | i2c_ll.h | 446 return hw->sr.bus_busy; in i2c_ll_is_bus_busy() 471 *length = hw->sr.rxfifo_cnt; in i2c_ll_get_rxfifo_cnt() 484 *length = SOC_I2C_FIFO_LEN - hw->sr.txfifo_cnt; in i2c_ll_get_txfifo_len()
|
/hal_espressif-latest/components/hal/esp32c3/include/hal/ |
D | i2c_ll.h | 443 return hw->sr.bus_busy; in i2c_ll_is_bus_busy() 468 *length = hw->sr.rx_fifo_cnt; in i2c_ll_get_rxfifo_cnt() 481 *length = SOC_I2C_FIFO_LEN - hw->sr.tx_fifo_cnt; in i2c_ll_get_txfifo_len()
|
/hal_espressif-latest/components/hal/esp32h2/include/hal/ |
D | i2c_ll.h | 446 return hw->sr.bus_busy; in i2c_ll_is_bus_busy() 471 *length = hw->sr.rxfifo_cnt; in i2c_ll_get_rxfifo_cnt() 484 *length = SOC_I2C_FIFO_LEN - hw->sr.txfifo_cnt; in i2c_ll_get_txfifo_len()
|
/hal_espressif-latest/components/soc/esp32c6/include/soc/ |
D | lp_i2c_struct.h | 852 volatile lp_i2c_sr_reg_t sr; member
|
D | i2c_struct.h | 982 volatile i2c_sr_reg_t sr; member
|
/hal_espressif-latest/components/soc/esp32c2/include/soc/ |
D | i2c_struct.h | 857 volatile i2c_sr_reg_t sr; member
|
/hal_espressif-latest/components/soc/esp32s3/include/soc/ |
D | i2c_struct.h | 976 volatile i2c_sr_reg_t sr; member
|
/hal_espressif-latest/components/soc/esp32h2/include/soc/ |
D | i2c_struct.h | 982 volatile i2c_sr_reg_t sr; member
|
/hal_espressif-latest/components/soc/esp32c3/include/soc/ |
D | i2c_struct.h | 72 } sr; member
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/include/stack/ |
D | avdt_api.h | 238 tAVDT_SENDER_INFO sr; member
|
/hal_espressif-latest/components/mbedtls/esp_crt_bundle/ |
D | cacrt_all.pem | 1854 bTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+eh
|