xref: /linux/include/linux/mmc/sdio_ids.h (revision 55fe77a0a24e05c9aaf1a13550dde5efad8b49f2)
1*55fe77a0SNicolas Pitre /*
2*55fe77a0SNicolas Pitre  * SDIO Classes, Interface Types, Manufacturer IDs, etc.
3*55fe77a0SNicolas Pitre  */
4*55fe77a0SNicolas Pitre 
5*55fe77a0SNicolas Pitre #ifndef MMC_SDIO_IDS_H
6*55fe77a0SNicolas Pitre #define MMC_SDIO_IDS_H
7*55fe77a0SNicolas Pitre 
8*55fe77a0SNicolas Pitre /*
9*55fe77a0SNicolas Pitre  * Standard SDIO Function Interfaces
10*55fe77a0SNicolas Pitre  */
11*55fe77a0SNicolas Pitre 
12*55fe77a0SNicolas Pitre #define SDIO_CLASS_NONE		0x00	/* Not a SDIO standard interface */
13*55fe77a0SNicolas Pitre #define SDIO_CLASS_UART		0x01	/* standard UART interface */
14*55fe77a0SNicolas Pitre #define SDIO_CLASS_BT_A		0x02	/* Type-A BlueTooth std interface */
15*55fe77a0SNicolas Pitre #define SDIO_CLASS_BT_B		0x03	/* Type-B BlueTooth std interface */
16*55fe77a0SNicolas Pitre #define SDIO_CLASS_GPS		0x04	/* GPS standard interface */
17*55fe77a0SNicolas Pitre #define SDIO_CLASS_CAMERA	0x05	/* Camera standard interface */
18*55fe77a0SNicolas Pitre #define SDIO_CLASS_PHS		0x06	/* PHS standard interface */
19*55fe77a0SNicolas Pitre #define SDIO_CLASS_WLAN		0x07	/* WLAN interface */
20*55fe77a0SNicolas Pitre #define SDIO_CLASS_ATA		0x08	/* Embedded SDIO-ATA std interface */
21*55fe77a0SNicolas Pitre 
22*55fe77a0SNicolas Pitre 
23*55fe77a0SNicolas Pitre #endif
24