qcacmn: Add core\utils directory and files to qcacmn
As a part of UMAC convergence, move the core\utils logging to qcacmn. CRs-Fixed: 1109855 Change-Id: I499a392f74f3e52e99df4d03e4a27bce6cf5be7c
This commit is contained in:

committed by
qcabuildsw

parent
6195152790
commit
60644c29e6
114
utils/pktlog/include/pktlog_ac_api.h
Normal file
114
utils/pktlog/include/pktlog_ac_api.h
Normal file
@@ -0,0 +1,114 @@
|
||||
/*
|
||||
* Copyright (c) 2012-2014, 2016-2017 The Linux Foundation. All rights reserved.
|
||||
*
|
||||
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
|
||||
*
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for
|
||||
* any purpose with or without fee is hereby granted, provided that the
|
||||
* above copyright notice and this permission notice appear in all
|
||||
* copies.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
||||
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
||||
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
|
||||
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
||||
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
||||
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/*
|
||||
* This file was originally distributed by Qualcomm Atheros, Inc.
|
||||
* under proprietary terms before Copyright ownership was assigned
|
||||
* to the Linux Foundation.
|
||||
*/
|
||||
|
||||
/*
|
||||
* The file is used to define structures that are shared between
|
||||
* kernel space and user space pktlog application.
|
||||
*/
|
||||
|
||||
#ifndef _PKTLOG_AC_API_
|
||||
#define _PKTLOG_AC_API_
|
||||
#ifndef REMOVE_PKT_LOG
|
||||
|
||||
/**
|
||||
* @typedef ol_pktlog_dev_handle
|
||||
* @brief opaque handle for pktlog device object
|
||||
*/
|
||||
struct ol_pktlog_dev_t;
|
||||
typedef struct ol_pktlog_dev_t *ol_pktlog_dev_handle;
|
||||
|
||||
/**
|
||||
* @typedef hif_opaque_softc_handle
|
||||
* @brief opaque handle for hif_opaque_softc
|
||||
*/
|
||||
struct hif_opaque_softc;
|
||||
typedef struct hif_opaque_softc *hif_opaque_softc_handle;
|
||||
|
||||
/**
|
||||
* @typedef net_device_handle
|
||||
* @brief opaque handle linux phy device object
|
||||
*/
|
||||
struct net_device;
|
||||
typedef struct net_device *net_device_handle;
|
||||
|
||||
void ol_pl_sethandle(ol_pktlog_dev_handle *pl_handle,
|
||||
hif_opaque_softc_handle scn);
|
||||
|
||||
/* Packet log state information */
|
||||
#ifndef _PKTLOG_INFO
|
||||
#define _PKTLOG_INFO
|
||||
struct ath_pktlog_info {
|
||||
struct ath_pktlog_buf *buf;
|
||||
uint32_t log_state;
|
||||
uint32_t saved_state;
|
||||
uint32_t options;
|
||||
|
||||
/* Size of buffer in bytes */
|
||||
int32_t buf_size;
|
||||
spinlock_t log_lock;
|
||||
|
||||
/* Threshold of TCP SACK packets for triggered stop */
|
||||
int sack_thr;
|
||||
|
||||
/* # of tail packets to log after triggered stop */
|
||||
int tail_length;
|
||||
|
||||
/* throuput threshold in bytes for triggered stop */
|
||||
uint32_t thruput_thresh;
|
||||
|
||||
/* (aggregated or single) packet size in bytes */
|
||||
uint32_t pktlen;
|
||||
|
||||
/* a temporary variable for counting TX throughput only */
|
||||
/* PER threshold for triggered stop, 10 for 10%, range [1, 99] */
|
||||
uint32_t per_thresh;
|
||||
|
||||
/* Phyerr threshold for triggered stop */
|
||||
uint32_t phyerr_thresh;
|
||||
|
||||
/* time period for counting trigger parameters, in milisecond */
|
||||
uint32_t trigger_interval;
|
||||
uint32_t start_time_thruput;
|
||||
uint32_t start_time_per;
|
||||
};
|
||||
#endif /* _PKTLOG_INFO */
|
||||
#else /* REMOVE_PKT_LOG */
|
||||
typedef void *ol_pktlog_dev_handle;
|
||||
#define ol_pl_sethandle(pl_handle, scn) \
|
||||
do { \
|
||||
(void)pl_handle; \
|
||||
(void)scn; \
|
||||
} while (0)
|
||||
|
||||
#define ol_pl_set_name(dev) \
|
||||
do { \
|
||||
(void)scn; \
|
||||
(void)dev; \
|
||||
} while (0)
|
||||
|
||||
#endif /* REMOVE_PKT_LOG */
|
||||
#endif /* _PKTLOG_AC_API_ */
|
Reference in New Issue
Block a user