qcacld-3.0: Add QDF osdep changes
Replace CDF osdep with QDF osdep Change-Id: Id2ba89c75df1fb8c4973a87219785353c3c2ff3c CRs-Fixed: 981188
This commit is contained in:

committed by
Gerrit - the friendly Code Review server

parent
c554842327
commit
2ed1fced92
@@ -835,7 +835,7 @@ static inline qdf_nbuf_tx_cksum_t cdf_nbuf_get_tx_cksum(cdf_nbuf_t buf)
|
||||
}
|
||||
|
||||
/**
|
||||
* qdf_nbuf_set_rx_cksum() - drivers that support hw checksumming use this to
|
||||
* cdf_nbuf_set_rx_cksum() - drivers that support hw checksumming use this to
|
||||
* indicate checksum info to the stack.
|
||||
* @buf: Network buffer
|
||||
* @cksum: Checksum
|
||||
@@ -843,7 +843,7 @@ static inline qdf_nbuf_tx_cksum_t cdf_nbuf_get_tx_cksum(cdf_nbuf_t buf)
|
||||
* Return: none
|
||||
*/
|
||||
static inline void
|
||||
qdf_nbuf_set_rx_cksum(cdf_nbuf_t buf, qdf_nbuf_rx_cksum_t *cksum)
|
||||
cdf_nbuf_set_rx_cksum(cdf_nbuf_t buf, qdf_nbuf_rx_cksum_t *cksum)
|
||||
{
|
||||
__cdf_nbuf_set_rx_cksum(buf, cksum);
|
||||
}
|
||||
|
@@ -1,300 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2013-2015 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.
|
||||
*/
|
||||
|
||||
#ifndef _OSDEP_H
|
||||
#define _OSDEP_H
|
||||
|
||||
#include <qdf_types.h>
|
||||
#include <cdf_memory.h>
|
||||
#include <qdf_lock.h>
|
||||
#include <qdf_time.h>
|
||||
#include <qdf_timer.h>
|
||||
#include <qdf_defer.h>
|
||||
#include <cdf_nbuf.h>
|
||||
#include <cds_if_upperproto.h>
|
||||
|
||||
#include <cds_queue.h>
|
||||
|
||||
/**
|
||||
* enum ath_hal_bus_type - Supported Bus types
|
||||
* @HAL_BUS_TYPE_PCI: PCI Bus
|
||||
* @HAL_BUS_TYPE_AHB: AHB Bus
|
||||
* @HAL_BUS_TYPE_SNOC: SNOC Bus
|
||||
* @HAL_BUS_TYPE_SIM: Simulator
|
||||
*/
|
||||
enum ath_hal_bus_type {
|
||||
HAL_BUS_TYPE_PCI,
|
||||
HAL_BUS_TYPE_AHB,
|
||||
HAL_BUS_TYPE_SNOC,
|
||||
HAL_BUS_TYPE_SIM
|
||||
};
|
||||
|
||||
/**
|
||||
* sturct hal_bus_context - Bus to hal context handoff
|
||||
* @bc_tag: bus context tag
|
||||
* @bc_handle: bus context handle
|
||||
* @bc_bustype: bus type
|
||||
*/
|
||||
typedef struct hal_bus_context {
|
||||
int bc_tag;
|
||||
char *bc_handle;
|
||||
enum ath_hal_bus_type bc_bustype;
|
||||
} HAL_BUS_CONTEXT;
|
||||
|
||||
#define INLINE inline
|
||||
|
||||
/* ATH_DEBUG -
|
||||
* Control whether debug features (printouts, assertions) are compiled
|
||||
* into the driver.
|
||||
*/
|
||||
#ifndef ATH_DEBUG
|
||||
#define ATH_DEBUG 1 /* default: include debug code */
|
||||
#endif
|
||||
|
||||
#if ATH_DEBUG
|
||||
#ifndef ASSERT
|
||||
#define ASSERT(expr) qdf_assert(expr)
|
||||
#endif
|
||||
#else
|
||||
#define ASSERT(expr)
|
||||
#endif /* ATH_DEBUG */
|
||||
|
||||
/*
|
||||
* Need to define byte order based on the CPU configuration.
|
||||
*/
|
||||
#ifndef _LITTLE_ENDIAN
|
||||
#define _LITTLE_ENDIAN 1234
|
||||
#endif
|
||||
#ifndef _BIG_ENDIAN
|
||||
#define _BIG_ENDIAN 4321
|
||||
#endif
|
||||
#ifdef __BIG_ENDIAN
|
||||
#define _BYTE_ORDER _BIG_ENDIAN
|
||||
#else
|
||||
#define _BYTE_ORDER _LITTLE_ENDIAN
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Deduce if tasklets are available. If not then
|
||||
* fall back to using the immediate work queue.
|
||||
*/
|
||||
#define ath_sysctl_decl(f, ctl, write, filp, buffer, lenp, ppos) \
|
||||
f(struct ctl_table *ctl, int write, void *buffer, \
|
||||
size_t *lenp, loff_t *ppos)
|
||||
#define ATH_SYSCTL_PROC_DOINTVEC(ctl, write, filp, buffer, lenp, ppos) \
|
||||
proc_dointvec(ctl, write, buffer, lenp, ppos)
|
||||
#define ATH_SYSCTL_PROC_DOSTRING(ctl, write, filp, buffer, lenp, ppos) \
|
||||
proc_dostring(ctl, write, filp, buffer, lenp, ppos)
|
||||
|
||||
/*
|
||||
* Byte Order stuff
|
||||
*/
|
||||
#define le16toh(_x) le16_to_cpu(_x)
|
||||
#define htole16(_x) cpu_to_le16(_x)
|
||||
#define htobe16(_x) cpu_to_be16(_x)
|
||||
#define le32toh(_x) le32_to_cpu(_x)
|
||||
#define htole32(_x) cpu_to_le32(_x)
|
||||
#define be16toh(_x) be16_to_cpu(_x)
|
||||
#define be32toh(_x) be32_to_cpu(_x)
|
||||
#define htobe32(_x) cpu_to_be32(_x)
|
||||
|
||||
#define EOK (0)
|
||||
|
||||
#ifndef false
|
||||
#define false 0
|
||||
#endif
|
||||
#ifndef true
|
||||
#define true 1
|
||||
#endif
|
||||
|
||||
#ifndef ARPHRD_IEEE80211
|
||||
#define ARPHRD_IEEE80211 801 /* IEEE 802.11. */
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Normal Delay functions. Time specified in microseconds.
|
||||
*/
|
||||
#define OS_DELAY(_us) qdf_udelay(_us)
|
||||
|
||||
/*
|
||||
* memory data manipulation functions.
|
||||
*/
|
||||
#define OS_MEMCPY(_dst, _src, _len) cdf_mem_copy(_dst, _src, _len)
|
||||
#define OS_MEMMOVE(_dst, _src, _len) cdf_mem_move(_dst, _src, _len)
|
||||
#define OS_MEMZERO(_buf, _len) cdf_mem_zero(_buf, _len)
|
||||
#define OS_MEMSET(_buf, _ch, _len) cdf_mem_set(_buf, _len, _ch)
|
||||
#define OS_MEMCMP(_mem1, _mem2, _len) cdf_mem_compare(_mem1, _mem2, _len)
|
||||
|
||||
#ifdef CONFIG_SMP
|
||||
/* Undo the one provided by the kernel to debug spin locks */
|
||||
#undef spin_lock
|
||||
#undef spin_unlock
|
||||
#undef spin_trylock
|
||||
|
||||
#define spin_lock(x) \
|
||||
do { \
|
||||
spin_lock_bh(x); \
|
||||
} while (0)
|
||||
|
||||
#define spin_unlock(x) \
|
||||
do { \
|
||||
if (!spin_is_locked(x)) { \
|
||||
WARN_ON(1); \
|
||||
printk(KERN_EMERG " %s:%d unlock addr=%p, %s \n", __func__, __LINE__, x, \
|
||||
!spin_is_locked(x) ? "Not locked" : ""); \
|
||||
} \
|
||||
spin_unlock_bh(x); \
|
||||
} while (0)
|
||||
|
||||
#define spin_trylock(x) spin_trylock_bh(x)
|
||||
|
||||
#define OS_SUPPORT_ASYNC_Q 1 /* support for handling asyn function calls */
|
||||
|
||||
#else
|
||||
#define OS_SUPPORT_ASYNC_Q 0
|
||||
#endif /* ifdef CONFIG_SMP */
|
||||
|
||||
|
||||
/*
|
||||
* System time interface
|
||||
*/
|
||||
typedef qdf_time_t systime_t;
|
||||
typedef qdf_time_t systick_t;
|
||||
|
||||
static INLINE qdf_time_t os_get_timestamp(void)
|
||||
{
|
||||
return qdf_system_ticks(); /* Fix double conversion from jiffies to ms */
|
||||
}
|
||||
|
||||
struct _NIC_DEV;
|
||||
|
||||
typedef struct _NIC_DEV *osdev_t;
|
||||
|
||||
typedef struct timer_list os_timer_t;
|
||||
|
||||
typedef struct _os_mesg_t {
|
||||
STAILQ_ENTRY(_os_mesg_t) mesg_next;
|
||||
uint16_t mesg_type;
|
||||
uint16_t mesg_len;
|
||||
/* followed by mesg_len bytes */
|
||||
} os_mesg_t;
|
||||
|
||||
typedef void (*os_mesg_handler_t)(void *ctx,
|
||||
uint16_t mesg_type,
|
||||
uint16_t mesg_len, void *mesg);
|
||||
|
||||
typedef struct {
|
||||
osdev_t dev_handle;
|
||||
int32_t num_queued;
|
||||
int32_t mesg_len;
|
||||
uint8_t *mesg_queue_buf;
|
||||
STAILQ_HEAD(, _os_mesg_t) mesg_head; /* queued mesg buffers */
|
||||
STAILQ_HEAD(, _os_mesg_t) mesg_free_head; /* free mesg buffers */
|
||||
spinlock_t lock;
|
||||
spinlock_t ev_handler_lock;
|
||||
#ifdef USE_SOFTINTR
|
||||
void *_task;
|
||||
#else
|
||||
os_timer_t _timer;
|
||||
#endif
|
||||
os_mesg_handler_t handler;
|
||||
void *ctx;
|
||||
uint8_t is_synchronous : 1;
|
||||
} os_mesg_queue_t;
|
||||
|
||||
/*
|
||||
* Definition of OS-dependent device structure.
|
||||
* It'll be opaque to the actual ATH layer.
|
||||
*/
|
||||
struct _NIC_DEV {
|
||||
void *bdev; /* bus device handle */
|
||||
struct net_device *netdev; /* net device handle (wifi%d) */
|
||||
qdf_bh_t intr_tq; /* tasklet */
|
||||
struct net_device_stats devstats; /* net device statisitics */
|
||||
HAL_BUS_CONTEXT bc;
|
||||
#ifdef ATH_PERF_PWR_OFFLOAD
|
||||
struct device *device; /* generic device */
|
||||
wait_queue_head_t event_queue;
|
||||
#endif /* PERF_PWR_OFFLOAD */
|
||||
#if OS_SUPPORT_ASYNC_Q
|
||||
os_mesg_queue_t async_q; /* mesgq to handle async calls */
|
||||
#endif
|
||||
#ifdef ATH_BUS_PM
|
||||
uint8_t isDeviceAsleep;
|
||||
#endif /* ATH_BUS_PM */
|
||||
};
|
||||
|
||||
static INLINE unsigned char *os_malloc(osdev_t pNicDev,
|
||||
unsigned long ulSizeInBytes, int gfp)
|
||||
{
|
||||
return cdf_mem_malloc(ulSizeInBytes);
|
||||
}
|
||||
|
||||
#define OS_FREE(_p) cdf_mem_free(_p)
|
||||
|
||||
#define OS_DMA_MEM_CONTEXT(context) \
|
||||
dma_addr_t context;
|
||||
|
||||
#define OS_GET_DMA_MEM_CONTEXT(var, field) \
|
||||
&(var->field)
|
||||
|
||||
#define OS_COPY_DMA_MEM_CONTEXT(dst, src) \
|
||||
*dst = *src
|
||||
|
||||
#define OS_ZERO_DMA_MEM_CONTEXT(context) \
|
||||
*context = 0
|
||||
|
||||
/*
|
||||
* Timer Interfaces. Use these macros to declare timer
|
||||
* and retrieve timer argument. This is mainly for resolving
|
||||
* different argument types for timer function in different OS.
|
||||
*/
|
||||
#define OS_DECLARE_TIMER(_fn) void _fn(void *)
|
||||
|
||||
#define os_timer_func(_fn) \
|
||||
void _fn(void *timer_arg)
|
||||
|
||||
#define OS_GET_TIMER_ARG(_arg, _type) \
|
||||
(_arg) = (_type)(timer_arg)
|
||||
|
||||
#define OS_INIT_TIMER(_osdev, _timer, _fn, _ctx, type) \
|
||||
qdf_timer_init(_osdev, _timer, _fn, _ctx, type)
|
||||
|
||||
#define OS_SET_TIMER(_timer, _ms) qdf_timer_mod(_timer, _ms)
|
||||
|
||||
#define OS_CANCEL_TIMER(_timer) qdf_timer_stop(_timer)
|
||||
|
||||
#define OS_FREE_TIMER(_timer) qdf_timer_stop(_timer)
|
||||
|
||||
/*
|
||||
* These are required for network manager support
|
||||
*/
|
||||
#ifndef SET_NETDEV_DEV
|
||||
#define SET_NETDEV_DEV(ndev, pdev)
|
||||
#endif
|
||||
|
||||
#endif /* end of _OSDEP_H */
|
@@ -704,7 +704,7 @@ htt_set_checksum_result_ll(htt_pdev_handle pdev, cdf_nbuf_t msdu,
|
||||
QDF_NBUF_RX_CKSUM_NONE :
|
||||
QDF_NBUF_RX_CKSUM_TCP_UDP_UNNECESSARY;
|
||||
}
|
||||
qdf_nbuf_set_rx_cksum(msdu, &cksum);
|
||||
cdf_nbuf_set_rx_cksum(msdu, &cksum);
|
||||
#undef MAX_IP_VER
|
||||
#undef MAX_PROTO_VAL
|
||||
}
|
||||
|
@@ -525,7 +525,7 @@ void htt_tx_desc_frags_table_set(htt_pdev_handle pdev,
|
||||
}
|
||||
}
|
||||
|
||||
/* PUT THESE AS INLINE IN ol_htt_tx_api.h */
|
||||
/* PUT THESE AS inline IN ol_htt_tx_api.h */
|
||||
|
||||
void htt_tx_desc_flag_postponed(htt_pdev_handle pdev, void *desc)
|
||||
{
|
||||
|
@@ -221,7 +221,7 @@ static void hdd_deinit_cds_hif_context(void)
|
||||
* Return: 0 on success and errno on failure.
|
||||
*/
|
||||
static int hdd_hif_open(struct device *dev, void *bdev, const hif_bus_id *bid,
|
||||
enum ath_hal_bus_type bus_type, bool reinit)
|
||||
enum qdf_bus_type bus_type, bool reinit)
|
||||
{
|
||||
QDF_STATUS status;
|
||||
int ret = 0;
|
||||
@@ -324,7 +324,7 @@ void hdd_init_cdf_ctx(struct device *dev, void *bdev)
|
||||
* Return: 0 on successfull probe
|
||||
*/
|
||||
static int wlan_hdd_probe(struct device *dev, void *bdev, const hif_bus_id *bid,
|
||||
enum ath_hal_bus_type bus_type, bool reinit)
|
||||
enum qdf_bus_type bus_type, bool reinit)
|
||||
{
|
||||
void *hif_ctx;
|
||||
QDF_STATUS status;
|
||||
@@ -792,7 +792,7 @@ static int wlan_hdd_pci_probe(struct pci_dev *pdev,
|
||||
const struct pci_device_id *id)
|
||||
{
|
||||
return wlan_hdd_probe(&pdev->dev, pdev, (void *)id,
|
||||
HAL_BUS_TYPE_PCI, false);
|
||||
QDF_BUS_TYPE_PCI, false);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -816,7 +816,7 @@ int wlan_hdd_pci_reinit(struct pci_dev *pdev,
|
||||
const struct pci_device_id *id)
|
||||
{
|
||||
return wlan_hdd_probe(&pdev->dev, pdev, id,
|
||||
HAL_BUS_TYPE_PCI, true);
|
||||
QDF_BUS_TYPE_PCI, true);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -910,7 +910,7 @@ static int wlan_hdd_pci_runtime_resume(struct pci_dev *pdev)
|
||||
*/
|
||||
static int wlan_hdd_snoc_probe(struct device *dev)
|
||||
{
|
||||
return wlan_hdd_probe(dev, NULL, NULL, HAL_BUS_TYPE_SNOC, false);
|
||||
return wlan_hdd_probe(dev, NULL, NULL, QDF_BUS_TYPE_SNOC, false);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -943,7 +943,7 @@ void wlan_hdd_snoc_shutdown(struct device *dev)
|
||||
*/
|
||||
int wlan_hdd_snoc_reinit(struct device *dev)
|
||||
{
|
||||
return wlan_hdd_probe(dev, NULL, NULL, HAL_BUS_TYPE_SNOC, true);
|
||||
return wlan_hdd_probe(dev, NULL, NULL, QDF_BUS_TYPE_SNOC, true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -229,8 +229,7 @@ int dfs_attach(struct ieee80211com *ic)
|
||||
return 1;
|
||||
}
|
||||
|
||||
dfs =
|
||||
(struct ath_dfs *)os_malloc(NULL, sizeof(struct ath_dfs),
|
||||
dfs = (struct ath_dfs *)os_malloc(NULL, sizeof(struct ath_dfs),
|
||||
GFP_ATOMIC);
|
||||
|
||||
if (dfs == NULL) {
|
||||
|
@@ -201,7 +201,7 @@ void pktlog_cleanup(struct ath_pktlog_info *pl_info)
|
||||
|
||||
/* sysctl procfs handler to enable pktlog */
|
||||
static int
|
||||
ath_sysctl_decl(ath_sysctl_pktlog_enable, ctl, write, filp, buffer, lenp, ppos)
|
||||
qdf_sysctl_decl(ath_sysctl_pktlog_enable, ctl, write, filp, buffer, lenp, ppos)
|
||||
{
|
||||
int ret, enable;
|
||||
ol_ath_generic_softc_handle scn;
|
||||
@@ -227,7 +227,7 @@ ath_sysctl_decl(ath_sysctl_pktlog_enable, ctl, write, filp, buffer, lenp, ppos)
|
||||
ctl->maxlen = sizeof(enable);
|
||||
|
||||
if (write) {
|
||||
ret = ATH_SYSCTL_PROC_DOINTVEC(ctl, write, filp, buffer,
|
||||
ret = QDF_SYSCTL_PROC_DOINTVEC(ctl, write, filp, buffer,
|
||||
lenp, ppos);
|
||||
if (ret == 0)
|
||||
ret = pl_dev->pl_funcs->pktlog_enable(
|
||||
@@ -236,7 +236,7 @@ ath_sysctl_decl(ath_sysctl_pktlog_enable, ctl, write, filp, buffer, lenp, ppos)
|
||||
printk(PKTLOG_TAG "%s:proc_dointvec failed\n",
|
||||
__func__);
|
||||
} else {
|
||||
ret = ATH_SYSCTL_PROC_DOINTVEC(ctl, write, filp, buffer,
|
||||
ret = QDF_SYSCTL_PROC_DOINTVEC(ctl, write, filp, buffer,
|
||||
lenp, ppos);
|
||||
if (ret)
|
||||
printk(PKTLOG_TAG "%s:proc_dointvec failed\n",
|
||||
@@ -256,7 +256,7 @@ static int get_pktlog_bufsize(struct ol_pktlog_dev_t *pl_dev)
|
||||
|
||||
/* sysctl procfs handler to set/get pktlog size */
|
||||
static int
|
||||
ath_sysctl_decl(ath_sysctl_pktlog_size, ctl, write, filp, buffer, lenp, ppos)
|
||||
qdf_sysctl_decl(ath_sysctl_pktlog_size, ctl, write, filp, buffer, lenp, ppos)
|
||||
{
|
||||
int ret, size;
|
||||
ol_ath_generic_softc_handle scn;
|
||||
@@ -282,14 +282,14 @@ ath_sysctl_decl(ath_sysctl_pktlog_size, ctl, write, filp, buffer, lenp, ppos)
|
||||
ctl->maxlen = sizeof(size);
|
||||
|
||||
if (write) {
|
||||
ret = ATH_SYSCTL_PROC_DOINTVEC(ctl, write, filp, buffer,
|
||||
ret = QDF_SYSCTL_PROC_DOINTVEC(ctl, write, filp, buffer,
|
||||
lenp, ppos);
|
||||
if (ret == 0)
|
||||
ret = pl_dev->pl_funcs->pktlog_setsize(
|
||||
(struct hif_opaque_softc *)scn, size);
|
||||
} else {
|
||||
size = get_pktlog_bufsize(pl_dev);
|
||||
ret = ATH_SYSCTL_PROC_DOINTVEC(ctl, write, filp, buffer,
|
||||
ret = QDF_SYSCTL_PROC_DOINTVEC(ctl, write, filp, buffer,
|
||||
lenp, ppos);
|
||||
}
|
||||
|
||||
|
@@ -274,7 +274,7 @@ typedef struct ieee80211com {
|
||||
*
|
||||
* Return: freqency in MHz
|
||||
*/
|
||||
static INLINE u_int
|
||||
static inline u_int
|
||||
ieee80211_chan2freq(struct ieee80211com *ic,
|
||||
const struct dfs_ieee80211_channel *c)
|
||||
{
|
||||
|
@@ -90,13 +90,13 @@ typedef enum htt_isoc_t2h_msg_type {
|
||||
#define HTT_ISOC_T2H_MSG_TYPE_GET(msg_addr) \
|
||||
(*((A_UINT8 *) msg_addr))
|
||||
|
||||
#ifndef INLINE
|
||||
#ifndef inline
|
||||
/* target FW */
|
||||
#define INLINE __inline
|
||||
#define inline __inline
|
||||
#define HTT_ISOC_INLINE_DEF
|
||||
#endif /* INLINE */
|
||||
#endif /* inline */
|
||||
|
||||
static INLINE void
|
||||
static inline void
|
||||
htt_isoc_t2h_field_set(A_UINT32 *msg_addr32,
|
||||
unsigned offset32,
|
||||
unsigned mask, unsigned shift, unsigned value)
|
||||
@@ -113,7 +113,7 @@ htt_isoc_t2h_field_set(A_UINT32 *msg_addr32,
|
||||
|
||||
#ifdef HTT_ISOC_INLINE_DEF
|
||||
#undef HTT_ISOC_INLINE_DEF
|
||||
#undef INLINE
|
||||
#undef inline
|
||||
#endif
|
||||
|
||||
#define HTT_ISOC_T2H_FIELD_GET(msg_addr32, offset32, mask, shift) \
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2013-2015 The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2013-2016 The Linux Foundation. All rights reserved.
|
||||
*
|
||||
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
|
||||
*
|
||||
@@ -121,7 +121,7 @@ extern "C" {
|
||||
(((num_entries) / (32 / (bits_per_entry))) + \
|
||||
(((num_entries) % (32 / (bits_per_entry))) ? 1 : 0))
|
||||
|
||||
static INLINE A_UINT32 wmi_packed_arr_get_bits(A_UINT32 * arr,
|
||||
static inline A_UINT32 wmi_packed_arr_get_bits(A_UINT32 *arr,
|
||||
A_UINT32 entry_index, A_UINT32 bits_per_entry)
|
||||
{
|
||||
A_UINT32 entries_per_uint = (32 / bits_per_entry);
|
||||
@@ -129,11 +129,11 @@ static INLINE A_UINT32 wmi_packed_arr_get_bits(A_UINT32 * arr,
|
||||
A_UINT32 num_entries_in_prev_uints = (uint_index * entries_per_uint);
|
||||
A_UINT32 index_in_uint = (entry_index - num_entries_in_prev_uints);
|
||||
A_UINT32 start_bit_in_uint = (index_in_uint * bits_per_entry);
|
||||
return ((arr[uint_index] >> start_bit_in_uint) &
|
||||
((1 << bits_per_entry) - 1));
|
||||
return (arr[uint_index] >> start_bit_in_uint) &
|
||||
((1 << bits_per_entry) - 1);
|
||||
}
|
||||
|
||||
static INLINE void wmi_packed_arr_set_bits(A_UINT32 *arr, A_UINT32 entry_index,
|
||||
static inline void wmi_packed_arr_set_bits(A_UINT32 *arr, A_UINT32 entry_index,
|
||||
A_UINT32 bits_per_entry, A_UINT32 val)
|
||||
{
|
||||
A_UINT32 entries_per_uint = (32 / bits_per_entry);
|
||||
@@ -4956,7 +4956,11 @@ enum wmi_sta_ps_param_pspoll_count {
|
||||
#define WMI_UAPSD_AC_TYPE_DELI 0
|
||||
#define WMI_UAPSD_AC_TYPE_TRIG 1
|
||||
|
||||
#define WMI_UAPSD_AC_BIT_MASK(ac,type) (type == WMI_UAPSD_AC_TYPE_DELI) ? (1<<(ac<<1)) : (1<<((ac<<1)+1))
|
||||
#define WMI_UAPSD_AC_BIT_MASK(ac, type) \
|
||||
do { \
|
||||
(type == WMI_UAPSD_AC_TYPE_DELI) ? (1<<(ac<<1)) : \
|
||||
(1<<((ac<<1)+1)) \
|
||||
} while (0)
|
||||
|
||||
enum wmi_sta_ps_param_uapsd {
|
||||
WMI_STA_PS_UAPSD_AC0_DELIVERY_EN = (1 << 0),
|
||||
@@ -10380,7 +10384,7 @@ typedef struct {
|
||||
/** table ID - to allow support for multiple simultaneous tables */
|
||||
A_UINT32 table_id;
|
||||
/** operation mode: start/stop */
|
||||
A_UINT32 mode; // wmi_extscan_operation_mode
|
||||
A_UINT32 mode; /* wmi_extscan_operation_mode */
|
||||
/**total number of ssids (in all pages) */
|
||||
A_UINT32 total_entries;
|
||||
/**index of the first ssid entry found in the TLV extscan_hotlist_ssid_entry*/
|
||||
@@ -12614,8 +12618,7 @@ typedef struct wmi_bpf_del_vdev_instructions_cmd_s {
|
||||
/* NOTE: Make sure these data structures are identical to those 9235
|
||||
* defined in sirApi.h */
|
||||
|
||||
typedef struct
|
||||
{
|
||||
typedef struct {
|
||||
/** Arbitration Inter-Frame Spacing. Range: 2-15 */
|
||||
A_UINT32 aifsn;
|
||||
/** Contention Window minimum. Range: 1 - 10 */
|
||||
@@ -12624,8 +12627,7 @@ typedef struct
|
||||
A_UINT32 cwmax;
|
||||
} wmi_qos_params_t;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
typedef struct {
|
||||
/** Channel frequency in MHz */
|
||||
A_UINT32 chan_freq;
|
||||
/** Channel duration in ms */
|
||||
@@ -12655,7 +12657,7 @@ typedef struct {
|
||||
/** The array of channels */
|
||||
wmi_ocb_channel_t channels[OCB_CHANNEL_MAX];
|
||||
/** 1 to allow off-channel tx, 0 otherwise */
|
||||
A_UINT32 off_channel_tx; // Not supported
|
||||
A_UINT32 off_channel_tx; /* Not supported */
|
||||
} wmi_ocb_set_sched_cmd_fixed_param;
|
||||
|
||||
typedef struct {
|
||||
|
@@ -237,15 +237,15 @@ void a_netbuf_queue_init(A_NETBUF_QUEUE_T *q);
|
||||
#define __ATTRIB_PACK __attribute__ ((packed))
|
||||
#define __ATTRIB_PRINTF __attribute__ ((format (printf, 1, 2)))
|
||||
#define __ATTRIB_NORETURN __attribute__ ((noreturn))
|
||||
#ifndef INLINE
|
||||
#define INLINE __inline__
|
||||
#ifndef inline
|
||||
#define inline __inline__
|
||||
#endif
|
||||
#else /* Not GCC */
|
||||
#define __ATTRIB_PACK
|
||||
#define __ATTRIB_PRINTF
|
||||
#define __ATTRIB_NORETURN
|
||||
#ifndef INLINE
|
||||
#define INLINE __inline
|
||||
#ifndef inline
|
||||
#define inline __inline
|
||||
#endif
|
||||
#endif /* End __GNUC__ */
|
||||
|
||||
|
Reference in New Issue
Block a user