blob: 1f43871eeb64fb0f8498e81b591d0624ba140c93 [file] [log] [blame]
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001/*
2 * Copyright (c) 2012, 2014 The Linux Foundation. All rights reserved.
3 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21
22/*
23 * This file was originally distributed by Qualcomm Atheros, Inc.
24 * under proprietary terms before Copyright ownership was assigned
25 * to the Linux Foundation.
26 */
27
28#ifndef _OL_RX_REORDER_TIMEOUT__H_
29#define _OL_RX_REORDER_TIMEOUT__H_
30
31#include <ol_txrx_types.h> /* ol_txrx_pdev_t, etc. */
32
33#ifdef QCA_SUPPORT_OL_RX_REORDER_TIMEOUT
34
35void ol_rx_reorder_timeout_init(struct ol_txrx_pdev_t *pdev);
36void ol_rx_reorder_timeout_cleanup(struct ol_txrx_pdev_t *pdev);
37void ol_rx_reorder_timeout_remove(struct ol_txrx_peer_t *peer, unsigned tid);
38void ol_rx_reorder_timeout_update(struct ol_txrx_peer_t *peer, uint8_t tid);
39void ol_rx_reorder_timeout_peer_cleanup(struct ol_txrx_peer_t *peer);
40
41#define OL_RX_REORDER_TIMEOUT_INIT ol_rx_reorder_timeout_init
42#define OL_RX_REORDER_TIMEOUT_PEER_CLEANUP ol_rx_reorder_timeout_peer_cleanup
43#define OL_RX_REORDER_TIMEOUT_CLEANUP ol_rx_reorder_timeout_cleanup
44#define OL_RX_REORDER_TIMEOUT_REMOVE ol_rx_reorder_timeout_remove
45#define OL_RX_REORDER_TIMEOUT_UPDATE ol_rx_reorder_timeout_update
46#define OL_RX_REORDER_TIMEOUT_PEER_TID_INIT(peer, tid) \
47 (peer)->tids_rx_reorder[(tid)].timeout.active = 0
48#define OL_RX_REORDER_TIMEOUT_MUTEX_LOCK(pdev) \
49 cdf_spin_lock(&(pdev)->rx.mutex)
50#define OL_RX_REORDER_TIMEOUT_MUTEX_UNLOCK(pdev) \
51 cdf_spin_unlock(&(pdev)->rx.mutex)
52
53#else
54
55#define OL_RX_REORDER_TIMEOUT_INIT(pdev) /* no-op */
56#define OL_RX_REORDER_TIMEOUT_PEER_CLEANUP(peer) /* no-op */
57#define OL_RX_REORDER_TIMEOUT_CLEANUP(pdev) /* no-op */
58#define OL_RX_REORDER_TIMEOUT_REMOVE(peer, tid) /* no-op */
59#define OL_RX_REORDER_TIMEOUT_UPDATE(peer, tid) /* no-op */
60#define OL_RX_REORDER_TIMEOUT_PEER_TID_INIT(peer, tid) /* no-op */
61#define OL_RX_REORDER_TIMEOUT_MUTEX_LOCK(pdev) /* no-op */
62#define OL_RX_REORDER_TIMEOUT_MUTEX_UNLOCK(pdev) /* no-op */
63
64#endif /* QCA_SUPPORT_OL_RX_REORDER_TIMEOUT */
65
66#endif /* _OL_RX_REORDER_TIMEOUT__H_ */