sdio_func_ids.h 1004 B

1234567891011121314151617181920212223242526272829
  1. #ifndef _SDIO_FUNC_IDS_H
  2. #define _SDIO_FUNC_IDS_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. /* Standard SDIO Function Interfaces */
  7. #define SDIO_FUNC_CODE_NONE 0x00 /* Not a SDIO standard interface */
  8. #define SDIO_FUNC_CODE_UART 0x01 /* SDIO Standard UART */
  9. #define SDIO_FUNC_CODE_BT_A 0x02 /* SDIO Type-A for Bluetooth standard interface */
  10. #define SDIO_FUNC_CODE_BT_B 0x03 /* SDIO Type-B for Bluetooth standard interface */
  11. #define SDIO_FUNC_CODE_GPS 0x04 /* SDIO GPS standard interface */
  12. #define SDIO_FUNC_CODE_CAMERA 0x05 /* SDIO Camera standard interface */
  13. #define SDIO_FUNC_CODE_PHS 0x06 /* SDIO PHS standard interface */
  14. #define SDIO_FUNC_CODE_WLAN 0x07 /* SDIO WLAN interface */
  15. #define SDIO_FUNC_CODE_ATA 0x08 /* Embedded SDIO-ATA standard interface */
  16. /* manufacturer id, product io */
  17. #define SDIO_MANUFACTURER_ID_MARVELL 0x02df
  18. #define SDIO_PRODUCT_ID_MARVELL_88W8686 0x9103
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22. #endif