1 /* 2 * Copyright (c) 2018-2019 The Linux Foundation. All rights reserved. 3 * 4 * Permission to use, copy, modify, and/or distribute this software for 5 * any purpose with or without fee is hereby granted, provided that the 6 * above copyright notice and this permission notice appear in all 7 * copies. 8 * 9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL 10 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED 11 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE 12 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL 13 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR 14 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 15 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 16 * PERFORMANCE OF THIS SOFTWARE. 17 */ 18 19 /* 20 * This file contains the API definitions for the Unified Wireless 21 * Module Interface (WMI). 22 */ 23 #ifndef _FW_DBGLOG_PRIV_H_ 24 #define _FW_DBGLOG_PRIV_H_ 25 26 #include <wmi_unified_api.h> 27 28 struct dbglog_ops { 29 30 void (*dbglog_set_log_lvl)(ol_scn_t scn, uint32_t log_lvl); 31 int (*dbglog_fw_handler)(ol_scn_t soc, uint8_t *data, uint32_t datalen); 32 int (*dbglog_parse_debug_logs)(ol_scn_t scn, 33 u_int8_t *datap, uint16_t len, void *context); 34 void (*dbglog_ratelimit_set)(uint32_t burst_limit); 35 void (*dbglog_vap_log_enable)(ol_scn_t soc, uint16_t vap_id, 36 bool isenable); 37 void (*dbglog_set_timestamp_resolution)(ol_scn_t soc, uint16_t tsr); 38 void (*dbglog_reporting_enable)(ol_scn_t soc, bool isenable); 39 void (*dbglog_module_log_enable)(ol_scn_t scn, 40 uint32_t mod_id, bool isenable); 41 void (*dbglog_init)(void *scn); 42 void (*dbglog_set_report_size)(ol_scn_t scn, uint16_t size); 43 void (*dbglog_free)(void *soc); 44 int (*smartlog_init)(void *icp); 45 void (*smartlog_deinit)(void *sc); 46 ssize_t (*smartlog_dump)(struct device *dev, 47 struct device_attribute *attr, char *buf); 48 49 }; 50 51 struct dbglog_info { 52 struct dbglog_ops *ops; 53 }; 54 #endif /*_FW_DBGLOG_PRIV_H_ */ 55