sdio_func_ids.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * File : sdio_func_ids.h
  3. * This file is part of RT-Thread RTOS
  4. * COPYRIGHT (C) 2006, RT-Thread Development Team
  5. *
  6. * The license and distribution terms for this file may be
  7. * found in the file LICENSE in this distribution or at
  8. * http://www.rt-thread.org/license/LICENSE
  9. *
  10. * Change Logs:
  11. * Date Author Notes
  12. * 2012-02-26 weety first version
  13. */
  14. #ifndef __SDIO_FUNC_IDS_H__
  15. #define __SDIO_FUNC_IDS_H__
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. /* Standard SDIO Function Interfaces */
  20. #define SDIO_FUNC_CODE_NONE 0x00 /* Not a SDIO standard interface */
  21. #define SDIO_FUNC_CODE_UART 0x01 /* SDIO Standard UART */
  22. #define SDIO_FUNC_CODE_BT_A 0x02 /* SDIO Type-A for Bluetooth standard interface */
  23. #define SDIO_FUNC_CODE_BT_B 0x03 /* SDIO Type-B for Bluetooth standard interface */
  24. #define SDIO_FUNC_CODE_GPS 0x04 /* SDIO GPS standard interface */
  25. #define SDIO_FUNC_CODE_CAMERA 0x05 /* SDIO Camera standard interface */
  26. #define SDIO_FUNC_CODE_PHS 0x06 /* SDIO PHS standard interface */
  27. #define SDIO_FUNC_CODE_WLAN 0x07 /* SDIO WLAN interface */
  28. #define SDIO_FUNC_CODE_ATA 0x08 /* Embedded SDIO-ATA standard interface */
  29. /* manufacturer id, product io */
  30. #define SDIO_MANUFACTURER_ID_MARVELL 0x02df
  31. #define SDIO_PRODUCT_ID_MARVELL_LIBERTAS 0x9103
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35. #endif