155fe77a0SNicolas Pitre /* 255fe77a0SNicolas Pitre * SDIO Classes, Interface Types, Manufacturer IDs, etc. 355fe77a0SNicolas Pitre */ 455fe77a0SNicolas Pitre 555fe77a0SNicolas Pitre #ifndef MMC_SDIO_IDS_H 655fe77a0SNicolas Pitre #define MMC_SDIO_IDS_H 755fe77a0SNicolas Pitre 855fe77a0SNicolas Pitre /* 955fe77a0SNicolas Pitre * Standard SDIO Function Interfaces 1055fe77a0SNicolas Pitre */ 1155fe77a0SNicolas Pitre 1255fe77a0SNicolas Pitre #define SDIO_CLASS_NONE 0x00 /* Not a SDIO standard interface */ 1355fe77a0SNicolas Pitre #define SDIO_CLASS_UART 0x01 /* standard UART interface */ 1455fe77a0SNicolas Pitre #define SDIO_CLASS_BT_A 0x02 /* Type-A BlueTooth std interface */ 1555fe77a0SNicolas Pitre #define SDIO_CLASS_BT_B 0x03 /* Type-B BlueTooth std interface */ 1655fe77a0SNicolas Pitre #define SDIO_CLASS_GPS 0x04 /* GPS standard interface */ 1755fe77a0SNicolas Pitre #define SDIO_CLASS_CAMERA 0x05 /* Camera standard interface */ 1855fe77a0SNicolas Pitre #define SDIO_CLASS_PHS 0x06 /* PHS standard interface */ 1955fe77a0SNicolas Pitre #define SDIO_CLASS_WLAN 0x07 /* WLAN interface */ 2055fe77a0SNicolas Pitre #define SDIO_CLASS_ATA 0x08 /* Embedded SDIO-ATA std interface */ 2155fe77a0SNicolas Pitre 22*727c26edSPierre Ossman /* 23*727c26edSPierre Ossman * Vendors and devices. Sort key: vendor first, device next. 24*727c26edSPierre Ossman */ 25*727c26edSPierre Ossman 26*727c26edSPierre Ossman #define SDIO_VENDOR_ID_MARVELL 0x02df 27*727c26edSPierre Ossman #define SDIO_DEVICE_ID_MARVELL_LIBERTAS 0x9103 2855fe77a0SNicolas Pitre 2955fe77a0SNicolas Pitre #endif 30