mirror of
https://github.com/espressif/esp-idf
synced 2025-03-11 10:09:08 -04:00
Merge branch 'bugfix/spi_slave_intr_iram_v4.2' into 'release/v4.2'
driver: spi_slave: make sure CS helpers are in IRAM if the ISR is (v4.2) See merge request espressif/esp-idf!17833
This commit is contained in:
commit
ed22f22632
@ -71,7 +71,7 @@ typedef struct {
|
||||
|
||||
static spi_slave_t *spihost[SOC_SPI_PERIPH_NUM];
|
||||
|
||||
static void IRAM_ATTR spi_intr(void *arg);
|
||||
static void SPI_SLAVE_ISR_ATTR spi_intr(void *arg);
|
||||
|
||||
static inline bool is_valid_host(spi_host_device_t host)
|
||||
{
|
||||
@ -83,19 +83,19 @@ static inline bool is_valid_host(spi_host_device_t host)
|
||||
#endif
|
||||
}
|
||||
|
||||
static inline bool bus_is_iomux(spi_slave_t *host)
|
||||
static inline bool SPI_SLAVE_ISR_ATTR bus_is_iomux(spi_slave_t *host)
|
||||
{
|
||||
return host->flags&SPICOMMON_BUSFLAG_IOMUX_PINS;
|
||||
}
|
||||
|
||||
static void freeze_cs(spi_slave_t *host)
|
||||
static void SPI_SLAVE_ISR_ATTR freeze_cs(spi_slave_t *host)
|
||||
{
|
||||
gpio_matrix_in(GPIO_FUNC_IN_HIGH, spi_periph_signal[host->id].spics_in, false);
|
||||
}
|
||||
|
||||
// Use this function instead of cs_initial to avoid overwrite the output config
|
||||
// This is used in test by internal gpio matrix connections
|
||||
static inline void restore_cs(spi_slave_t *host)
|
||||
static inline void SPI_SLAVE_ISR_ATTR restore_cs(spi_slave_t *host)
|
||||
{
|
||||
if (bus_is_iomux(host)) {
|
||||
gpio_iomux_in(host->cfg.spics_io_num, spi_periph_signal[host->id].spics_in);
|
||||
|
Loading…
x
Reference in New Issue
Block a user