1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*
- * File : sdio_func_ids.h
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 2006, RT-Thread Development Team
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rt-thread.org/license/LICENSE
- *
- * Change Logs:
- * Date Author Notes
- * 2012-02-26 weety first version
- */
-
- #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_LIBERTAS 0x9103
- #ifdef __cplusplus
- }
- #endif
- #endif
|