qcacmn: usb: Add support for QCN7605 v2

Add device IDs for QCN7605v2 USB variant.

Change-Id: I5d9d2731068c0d31b78197f3732fb253bf440ea2
CRs-Fixed: 2474407
This commit is contained in:
Ajit Pal Singh
2019-03-05 14:43:17 +05:30
committed by nshrivas
parent 43a7ab4549
commit a1378a3d27
2 changed files with 6 additions and 2 deletions

View File

@@ -816,6 +816,8 @@ int hif_get_device_type(uint32_t device_id,
case QCN7605_DEVICE_ID: case QCN7605_DEVICE_ID:
case QCN7605_COMPOSITE: case QCN7605_COMPOSITE:
case QCN7605_STANDALONE: case QCN7605_STANDALONE:
case QCN7605_STANDALONE_V2:
case QCN7605_COMPOSITE_V2:
*hif_type = HIF_TYPE_QCN7605; *hif_type = HIF_TYPE_QCN7605;
*target_type = TARGET_TYPE_QCN7605; *target_type = TARGET_TYPE_QCN7605;
HIF_INFO(" *********** QCN7605 *************\n"); HIF_INFO(" *********** QCN7605 *************\n");

View File

@@ -98,8 +98,10 @@
#define QCA6018_DEVICE_ID (0xfffd) /* Todo: replace this with actual number */ #define QCA6018_DEVICE_ID (0xfffd) /* Todo: replace this with actual number */
/* Genoa */ /* Genoa */
#define QCN7605_DEVICE_ID (0x1102) /* Genoa PCIe device ID*/ #define QCN7605_DEVICE_ID (0x1102) /* Genoa PCIe device ID*/
#define QCN7605_COMPOSITE (0x9900) #define QCN7605_COMPOSITE (0x9901)
#define QCN7605_STANDALONE (0x9901) #define QCN7605_STANDALONE (0x9900)
#define QCN7605_STANDALONE_V2 (0x9902)
#define QCN7605_COMPOSITE_V2 (0x9903)
#define RUMIM2M_DEVICE_ID_NODE0 0xabc0 #define RUMIM2M_DEVICE_ID_NODE0 0xabc0
#define RUMIM2M_DEVICE_ID_NODE1 0xabc1 #define RUMIM2M_DEVICE_ID_NODE1 0xabc1