Browse Source

qcacmn: Add missing hardware info

Define and update missing Helium based target
mappings in qwlan_hw_list.

Change-Id: I9c1aa3d7ce492397e555e59b361f6855bc431183
CRs-Fixed: 3317892
Asutosh Mohapatra 2 years ago
parent
commit
1ca035fa80
2 changed files with 60 additions and 0 deletions
  1. 10 0
      hif/src/hif_hw_version.h
  2. 50 0
      hif/src/hif_main.c

+ 10 - 0
hif/src/hif_hw_version.h

@@ -46,6 +46,16 @@
 #define QCA6490_v2                      0x400c0200
 #define QCA6490_v2                      0x400c0200
 #define WCN3990_v2_2                    0x400f0000
 #define WCN3990_v2_2                    0x400f0000
 #define WCN6750_V1                      0x40140110
 #define WCN6750_V1                      0x40140110
+#define WCN3990_TALOS                   0x40670000
+#define WCN3990_MOOREA                  0x40090000
+#define WCN3990_SAIPAN                  0x400B0000
+#define WCN3990_RENNELL                 0x400C0000
+#define WCN3990_BITRA                   0x400D0000
+#define WCN3990_DIVAR                   0x40690000
+#define WCN3990_ATHERTON                0x40680000
+#define WCN3990_STRAIT                  0x400E0000
+#define WCN3990_NETRANI                 0x400F0000
+#define WCN3990_CLARENCE                0x406A0000
 
 
 struct qwlan_hw {
 struct qwlan_hw {
 	u32 id;
 	u32 id;

+ 50 - 0
hif/src/hif_main.c

@@ -391,6 +391,56 @@ static const struct qwlan_hw qwlan_hw_list[] = {
 		.id = WCN3990_v2_2,
 		.id = WCN3990_v2_2,
 		.subid = 0,
 		.subid = 0,
 		.name = "WCN3990_v2_2",
 		.name = "WCN3990_v2_2",
+	},
+	{
+		.id = WCN3990_TALOS,
+		.subid = 0,
+		.name = "WCN3990",
+	},
+	{
+		.id = WCN3990_MOOREA,
+		.subid = 0,
+		.name = "WCN3990",
+	},
+	{
+		.id = WCN3990_SAIPAN,
+		.subid = 0,
+		.name = "WCN3990",
+	},
+	{
+		.id = WCN3990_RENNELL,
+		.subid = 0,
+		.name = "WCN3990",
+	},
+	{
+		.id = WCN3990_BITRA,
+		.subid = 0,
+		.name = "WCN3990",
+	},
+	{
+		.id = WCN3990_DIVAR,
+		.subid = 0,
+		.name = "WCN3990",
+	},
+	{
+		.id = WCN3990_ATHERTON,
+		.subid = 0,
+		.name = "WCN3990",
+	},
+	{
+		.id = WCN3990_STRAIT,
+		.subid = 0,
+		.name = "WCN3990",
+	},
+	{
+		.id = WCN3990_NETRANI,
+		.subid = 0,
+		.name = "WCN3990",
+	},
+	{
+		.id = WCN3990_CLARENCE,
+		.subid = 0,
+		.name = "WCN3990",
 	}
 	}
 };
 };