1 /* 2 * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /** 8 * This file records the flash vendor that we offically supported. 9 * we have many chip-specific files, like ``spi_flash_chip_gd.c``, 10 * which means that this file is used for GD flash chips. 11 * 12 * The following definations illustrate what flash vendor is officially 13 * supported by ESP chips. If a flash vendor is officially supported, the chip 14 * specific file will be linked by default, vice versa. You can also adjust this 15 * manually in Kconfig options. 16 * 17 * For example: 18 * Following `SPI_FLASH_VENDOR_ISSI_SUPPORTED` is (1), which means file `spi_flash_chip_issi.c` 19 * will be linked. 20 * 21 */ 22 23 #pragma once 24 25 #define SPI_FLASH_VENDOR_XMC_SUPPORTED (1) 26 #define SPI_FLASH_VENDOR_GD_SUPPORTED (1) 27 #define SPI_FLASH_VENDOR_ISSI_SUPPORTED (1) 28 #define SPI_FLASH_VENDOR_MXIC_SUPPORTED (1) 29 #define SPI_FLASH_VENDOR_WINBOND_SUPPORTED (1) 30