소스 검색

qcacld-3.0: Add USB bus support (CDS, Utils, SAP)

Add Module specific changes for USB bus support for qcacld3.0.

Change-Id: Idb9fe1232d451e4f88a001fbd6591ba13b0c859a
CRs-Fixed: 1023663
Mohit Khanna 9 년 전
부모
커밋
43f433d719
3개의 변경된 파일23개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 0
      core/sap/dfs/src/dfs_phyerr_tlv.c
  2. 5 0
      core/utils/fwlog/dbglog_host.h
  3. 17 3
      core/utils/logging/inc/wlan_logging_sock_svc.h

+ 1 - 0
core/sap/dfs/src/dfs_phyerr_tlv.c

@@ -839,6 +839,7 @@ dfs_process_phyerr_bb_tlv(struct ath_dfs *dfs, void *buf, uint16_t datalen,
 	/*
 	 * Try parsing the TLV set.
 	 */
+	qdf_mem_zero(&rsfr, sizeof(rsfr));
 	if (!tlv_parse_frame(dfs, &rs, &rsfr, buf, datalen, rssi)) {
 		invalid_phyerr_count++;
 		/*

+ 5 - 0
core/utils/fwlog/dbglog_host.h

@@ -116,6 +116,11 @@ dbglog_set_mod_enable_bitmap(wmi_unified_t wmi_handle,
 			     A_UINT32 *mod_enable_bitmap,
 			     A_UINT32 bitmap_len);
 
+int
+dbglog_parse_debug_logs(ol_scn_t scn, u_int8_t *datap,
+					u_int32_t len);
+
+
 /** Register the cnss_diag activate with the wlan driver */
 int cnss_diag_activate_service(void);
 

+ 17 - 3
core/utils/logging/inc/wlan_logging_sock_svc.h

@@ -43,10 +43,27 @@ int wlan_logging_sock_deinit_svc(void);
 int wlan_logging_sock_activate_svc(int log_fe_to_console, int num_buf);
 int wlan_logging_sock_deactivate_svc(void);
 int wlan_log_to_user(QDF_TRACE_LEVEL log_level, char *to_be_sent, int length);
+
+#ifdef WLAN_LOGGING_SOCK_SVC_ENABLE
 void wlan_logging_set_per_pkt_stats(void);
 void wlan_logging_set_log_level(void);
 void wlan_logging_set_fw_flush_complete(void);
 void wlan_flush_host_logs_for_fatal(void);
+#else
+static inline void wlan_flush_host_logs_for_fatal(void)
+{
+}
+static inline void wlan_logging_set_log_level(void)
+{
+}
+static inline void wlan_logging_set_per_pkt_stats(void)
+{
+}
+static inline void wlan_logging_set_fw_flush_complete(void)
+{
+}
+#endif /* WLAN_LOGGING_SOCK_SVC_ENABLE */
+
 #ifdef FEATURE_WLAN_DIAG_SUPPORT
 void wlan_report_log_completion(uint32_t is_fatal,
 		uint32_t indicator,
@@ -58,9 +75,6 @@ static inline void wlan_report_log_completion(uint32_t is_fatal,
 {
 	return;
 }
-static inline void wlan_flush_host_logs_for_fatal(void)
-{
-}
 
 #endif /* FEATURE_WLAN_DIAG_SUPPORT */
 #endif /* WLAN_LOGGING_SOCK_SVC_H */