Browse Source

icnss2: Add two vectors for DP in wcn6450 msi config

Add two vectors for DP in wcn6450 msi config which will
be used in monitor mode and increase number of ce interrupts
to 12 for wcn6450.

Change-Id: I386c98310441fd7c4f9dc8b4cfc7f2da727fe35e
CRs-Fixed: 3629007
Sandeep Singh 1 year ago
parent
commit
41022800bc
1 changed files with 4 additions and 3 deletions
  1. 4 3
      icnss2/main.c

+ 4 - 3
icnss2/main.c

@@ -3129,10 +3129,11 @@ static struct icnss_msi_config msi_config_wcn6750 = {
 };
 
 static struct icnss_msi_config msi_config_wcn6450 = {
-	.total_vectors = 10,
-	.total_users = 1,
+	.total_vectors = 14,
+	.total_users = 2,
 	.users = (struct icnss_msi_user[]) {
-		{ .name = "CE", .num_vectors = 10, .base_vector = 0 },
+		{ .name = "CE", .num_vectors = 12, .base_vector = 0 },
+		{ .name = "DP", .num_vectors = 2, .base_vector = 12 },
 	},
 };