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 22727c26edSPierre Ossman /* 23727c26edSPierre Ossman * Vendors and devices. Sort key: vendor first, device next. 24727c26edSPierre Ossman */ 25727c26edSPierre Ossman 26727c26edSPierre Ossman #define SDIO_VENDOR_ID_MARVELL 0x02df 27727c26edSPierre Ossman #define SDIO_DEVICE_ID_MARVELL_LIBERTAS 0x9103 28e45d8e53SBing Zhao #define SDIO_DEVICE_ID_MARVELL_8688WLAN 0x9104 29e45d8e53SBing Zhao #define SDIO_DEVICE_ID_MARVELL_8688BT 0x9105 3055fe77a0SNicolas Pitre 31*ecfe0cfaSUri Shkolnik #define SDIO_VENDOR_ID_SIANO 0x039a 32*ecfe0cfaSUri Shkolnik #define SDIO_DEVICE_ID_SIANO_NOVA_B0 0x0201 33*ecfe0cfaSUri Shkolnik #define SDIO_DEVICE_ID_SIANO_NICE 0x0202 34*ecfe0cfaSUri Shkolnik #define SDIO_DEVICE_ID_SIANO_VEGA_A0 0x0300 35*ecfe0cfaSUri Shkolnik #define SDIO_DEVICE_ID_SIANO_VENICE 0x0301 36*ecfe0cfaSUri Shkolnik #define SDIO_DEVICE_ID_SIANO_NOVA_A0 0x1100 37*ecfe0cfaSUri Shkolnik #define SDIO_DEVICE_ID_SIANO_STELLAR 0x5347 38*ecfe0cfaSUri Shkolnik 3955fe77a0SNicolas Pitre #endif 40