| 1234567891011121314151617181920212223242526272829303132333435 |
- /*
- * SPDX-FileCopyrightText: 2015-2023 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- // HAL for
- // - GPSPI (SP2, SPI3) on ESP32-S2 and later
- // The common part is in spi_flash_hal_common.inc
- #define GPSPI_BUILD
- #define spi_flash_hal_common_command spi_flash_hal_gpspi_common_command
- #define spi_flash_hal_poll_cmd_done spi_flash_hal_gpspi_poll_cmd_done
- #define spi_flash_hal_device_config spi_flash_hal_gpspi_device_config
- #define spi_flash_hal_configure_host_io_mode spi_flash_hal_gpspi_configure_host_io_mode
- #define spi_flash_hal_read spi_flash_hal_gpspi_read
- #include "spi_flash_hal_common.inc"
- bool spi_flash_hal_gpspi_supports_direct_write(spi_flash_host_inst_t *host, const void *p)
- {
- return true;
- }
- bool spi_flash_hal_gpspi_supports_direct_read(spi_flash_host_inst_t *host, const void *p)
- {
- return true;
- }
- uint32_t spi_flash_hal_gpspi_check_status(spi_flash_host_inst_t *host)
- {
- spi_dev_t *dev = get_spi_dev(host);
- return spi_flash_ll_host_idle(dev);
- }
|