| Nicolas Pitre | 55fe77a | 2007-06-16 21:40:07 -0400 | [diff] [blame] | 1 | /* | 
 | 2 |  * SDIO Classes, Interface Types, Manufacturer IDs, etc. | 
 | 3 |  */ | 
 | 4 |  | 
 | 5 | #ifndef MMC_SDIO_IDS_H | 
 | 6 | #define MMC_SDIO_IDS_H | 
 | 7 |  | 
 | 8 | /* | 
 | 9 |  * Standard SDIO Function Interfaces | 
 | 10 |  */ | 
 | 11 |  | 
 | 12 | #define SDIO_CLASS_NONE		0x00	/* Not a SDIO standard interface */ | 
 | 13 | #define SDIO_CLASS_UART		0x01	/* standard UART interface */ | 
 | 14 | #define SDIO_CLASS_BT_A		0x02	/* Type-A BlueTooth std interface */ | 
 | 15 | #define SDIO_CLASS_BT_B		0x03	/* Type-B BlueTooth std interface */ | 
 | 16 | #define SDIO_CLASS_GPS		0x04	/* GPS standard interface */ | 
 | 17 | #define SDIO_CLASS_CAMERA	0x05	/* Camera standard interface */ | 
 | 18 | #define SDIO_CLASS_PHS		0x06	/* PHS standard interface */ | 
 | 19 | #define SDIO_CLASS_WLAN		0x07	/* WLAN interface */ | 
 | 20 | #define SDIO_CLASS_ATA		0x08	/* Embedded SDIO-ATA std interface */ | 
 | 21 |  | 
| Pierre Ossman | 727c26e | 2007-10-17 22:24:24 +0200 | [diff] [blame] | 22 | /* | 
 | 23 |  * Vendors and devices.  Sort key: vendor first, device next. | 
 | 24 |  */ | 
| Tomas Winkler | 51def0b | 2009-07-22 14:06:56 +0000 | [diff] [blame] | 25 | #define SDIO_VENDOR_ID_INTEL			0x0089 | 
 | 26 | #define SDIO_DEVICE_ID_INTEL_IWMC3200WIMAX	0x1402 | 
 | 27 | #define SDIO_DEVICE_ID_INTEL_IWMC3200WIFI	0x1403 | 
 | 28 | #define SDIO_DEVICE_ID_INTEL_IWMC3200TOP	0x1404 | 
 | 29 | #define SDIO_DEVICE_ID_INTEL_IWMC3200GPS	0x1405 | 
 | 30 | #define SDIO_DEVICE_ID_INTEL_IWMC3200BT		0x1406 | 
| Pierre Ossman | 727c26e | 2007-10-17 22:24:24 +0200 | [diff] [blame] | 31 |  | 
 | 32 | #define SDIO_VENDOR_ID_MARVELL			0x02df | 
 | 33 | #define SDIO_DEVICE_ID_MARVELL_LIBERTAS		0x9103 | 
| Bing Zhao | e45d8e5 | 2009-04-06 15:50:56 -0700 | [diff] [blame] | 34 | #define SDIO_DEVICE_ID_MARVELL_8688WLAN		0x9104 | 
 | 35 | #define SDIO_DEVICE_ID_MARVELL_8688BT		0x9105 | 
| Nicolas Pitre | 55fe77a | 2007-06-16 21:40:07 -0400 | [diff] [blame] | 36 |  | 
| Uri Shkolnik | ecfe0cf | 2009-03-12 10:10:40 -0300 | [diff] [blame] | 37 | #define SDIO_VENDOR_ID_SIANO			0x039a | 
 | 38 | #define SDIO_DEVICE_ID_SIANO_NOVA_B0		0x0201 | 
 | 39 | #define SDIO_DEVICE_ID_SIANO_NICE		0x0202 | 
 | 40 | #define SDIO_DEVICE_ID_SIANO_VEGA_A0		0x0300 | 
 | 41 | #define SDIO_DEVICE_ID_SIANO_VENICE		0x0301 | 
 | 42 | #define SDIO_DEVICE_ID_SIANO_NOVA_A0		0x1100 | 
 | 43 | #define SDIO_DEVICE_ID_SIANO_STELLAR 		0x5347 | 
 | 44 |  | 
| Nicolas Pitre | 55fe77a | 2007-06-16 21:40:07 -0400 | [diff] [blame] | 45 | #endif |