| 1234567891011121314151617181920212223242526272829 |
- #ifndef _SDIO_FUNC_IDS_H
- #define _SDIO_FUNC_IDS_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* Standard SDIO Function Interfaces */
- #define SDIO_FUNC_CODE_NONE 0x00 /* Not a SDIO standard interface */
- #define SDIO_FUNC_CODE_UART 0x01 /* SDIO Standard UART */
- #define SDIO_FUNC_CODE_BT_A 0x02 /* SDIO Type-A for Bluetooth standard interface */
- #define SDIO_FUNC_CODE_BT_B 0x03 /* SDIO Type-B for Bluetooth standard interface */
- #define SDIO_FUNC_CODE_GPS 0x04 /* SDIO GPS standard interface */
- #define SDIO_FUNC_CODE_CAMERA 0x05 /* SDIO Camera standard interface */
- #define SDIO_FUNC_CODE_PHS 0x06 /* SDIO PHS standard interface */
- #define SDIO_FUNC_CODE_WLAN 0x07 /* SDIO WLAN interface */
- #define SDIO_FUNC_CODE_ATA 0x08 /* Embedded SDIO-ATA standard interface */
- /* manufacturer id, product io */
- #define SDIO_MANUFACTURER_ID_MARVELL 0x02df
- #define SDIO_PRODUCT_ID_MARVELL_88W8686 0x9103
- #ifdef __cplusplus
- }
- #endif
- #endif
|