sdio_func_ids.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Copyright (c) 2006-2023, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2012-02-26 weety first version
  9. */
  10. #ifndef __SDIO_FUNC_IDS_H__
  11. #define __SDIO_FUNC_IDS_H__
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /* Standard SDIO Function Interfaces */
  16. #define SDIO_FUNC_CODE_NONE 0x00 /* Not a SDIO standard interface */
  17. #define SDIO_FUNC_CODE_UART 0x01 /* SDIO Standard UART */
  18. #define SDIO_FUNC_CODE_BT_A 0x02 /* SDIO Type-A for Bluetooth standard interface */
  19. #define SDIO_FUNC_CODE_BT_B 0x03 /* SDIO Type-B for Bluetooth standard interface */
  20. #define SDIO_FUNC_CODE_GPS 0x04 /* SDIO GPS standard interface */
  21. #define SDIO_FUNC_CODE_CAMERA 0x05 /* SDIO Camera standard interface */
  22. #define SDIO_FUNC_CODE_PHS 0x06 /* SDIO PHS standard interface */
  23. #define SDIO_FUNC_CODE_WLAN 0x07 /* SDIO WLAN interface */
  24. #define SDIO_FUNC_CODE_ATA 0x08 /* Embedded SDIO-ATA standard interface */
  25. /* manufacturer id, product io */
  26. #define SDIO_MANUFACTURER_ID_MARVELL 0x02df
  27. #define SDIO_PRODUCT_ID_MARVELL_88W8686 0x9103
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif