Bläddra i källkod

qcacld-3.0: Abstract delta code of fw common to respective layer

FW common files needs to be in sync with host and fw.
Abstract extra definition of hia map internal to hif layer.
MSI_NUM_REQUEST is incorrectly overwritten, keep the original
change as MSI_ENABLE is false across all target versions.
These changes are incorrectly added in following change id.
Iced029073c2db9eb175adcebcad9163ab39443a9.

Change-Id: Ie38666f315067ae40676e3bdac9238e4b52e6be1
CRs-Fixed: 1012542
Govind Singh 9 år sedan
förälder
incheckning
df35f3ef5e
1 ändrade filer med 3 tillägg och 23 borttagningar
  1. 3 23
      target/inc/cepci.h

+ 3 - 23
target/inc/cepci.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013-2014 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2013-2014, 2016 The Linux Foundation. All rights reserved.
  *
  * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  *
@@ -40,8 +40,8 @@
  * so for now we abide by this limit and avoid requesting more
  * than that.
  */
-#define MSI_NUM_REQUEST_LOG2  4
-#define MSI_NUM_REQUEST       1 /* (1<<MSI_NUM_REQUEST_LOG2) */
+#define MSI_NUM_REQUEST_LOG2  3
+#define MSI_NUM_REQUEST       (1<<MSI_NUM_REQUEST_LOG2)
 
 /*
  * Granted MSIs are assigned as follows:
@@ -102,24 +102,4 @@ struct CE_pipe_config {
 	uint32_t reserved;
 };
 
-/*
- * HIA Map Definition
- */
-struct host_interest_area_t {
-	uint32_t hi_interconnect_state;
-	uint32_t hi_early_alloc;
-	uint32_t hi_option_flag2;
-	uint32_t hi_board_data;
-	uint32_t hi_board_data_initialized;
-	uint32_t hi_failure_state;
-	uint32_t hi_rddi_msi_num;
-	uint32_t hi_pcie_perst_couple_en;
-	uint32_t hi_sw_protocol_version;
-};
-
-struct shadow_reg_cfg {
-	uint16_t ce_id;
-	uint16_t reg_offset;
-};
-
 #endif /* __CEPCI_H__ */