1 /* 2 * Copyright (c) 2023 Cypress Semiconductor Corporation (an Infineon company) or 3 * an affiliate of Cypress Semiconductor Corporation 4 * 5 * SPDX-License-Identifier: Apache-2.0 6 */ 7 8 /* required by whd_* header files. */ 9 10 /* See cybsp_types.h, which is usually required by this file, but not available */ 11 /* here unless we pull in board-specific headers from the upstream driver. */ 12 #define CYBSP_SDIO_INTERFACE (0) 13 #define CYBSP_SPI_INTERFACE (1) 14 15 #ifdef CONFIG_AIROC_WIFI_BUS_SDIO 16 #define CYBSP_WIFI_INTERFACE_TYPE CYBSP_SDIO_INTERFACE 17 #elif CONFIG_AIROC_WIFI_BUS_SPI 18 #define CYBSP_WIFI_INTERFACE_TYPE CYBSP_SPI_INTERFACE 19 #endif 20