aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/bcmdhd/include/osl.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/bcmdhd/include/osl.h')
-rw-r--r--drivers/net/wireless/bcmdhd/include/osl.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/drivers/net/wireless/bcmdhd/include/osl.h b/drivers/net/wireless/bcmdhd/include/osl.h
new file mode 100644
index 00000000000..80248ee7604
--- /dev/null
+++ b/drivers/net/wireless/bcmdhd/include/osl.h
@@ -0,0 +1,66 @@
1/*
2 * OS Abstraction Layer
3 *
4 * Copyright (C) 1999-2011, Broadcom Corporation
5 *
6 * Unless you and Broadcom execute a separate written software license
7 * agreement governing use of this software, this software is licensed to you
8 * under the terms of the GNU General Public License version 2 (the "GPL"),
9 * available at http://www.broadcom.com/licenses/GPLv2.php, with the
10 * following added to such license:
11 *
12 * As a special exception, the copyright holders of this software give you
13 * permission to link this software with independent modules, and to copy and
14 * distribute the resulting executable under terms of your choice, provided that
15 * you also meet, for each linked independent module, the terms and conditions of
16 * the license of that module. An independent module is a module which is not
17 * derived from this software. The special exception does not apply to any
18 * modifications of the software.
19 *
20 * Notwithstanding the above, under no circumstances may you combine this
21 * software in any way with any other Broadcom software provided under a license
22 * other than the GPL, without Broadcom's express prior written consent.
23 *
24 * $Id: osl.h,v 13.44.96.1 2010-05-20 11:09:18 Exp $
25 */
26
27
28#ifndef _osl_h_
29#define _osl_h_
30
31
32typedef struct osl_info osl_t;
33typedef struct osl_dmainfo osldma_t;
34
35#define OSL_PKTTAG_SZ 32
36
37
38typedef void (*pktfree_cb_fn_t)(void *ctx, void *pkt, unsigned int status);
39
40
41#include <linux_osl.h>
42
43#ifndef PKTDBG_TRACE
44#define PKTDBG_TRACE(osh, pkt, bit)
45#endif
46
47
48
49#define SET_REG(osh, r, mask, val) W_REG((osh), (r), ((R_REG((osh), r) & ~(mask)) | (val)))
50
51#ifndef AND_REG
52#define AND_REG(osh, r, v) W_REG(osh, (r), R_REG(osh, r) & (v))
53#endif
54
55#ifndef OR_REG
56#define OR_REG(osh, r, v) W_REG(osh, (r), R_REG(osh, r) | (v))
57#endif
58
59#if !defined(OSL_SYSUPTIME)
60#define OSL_SYSUPTIME() (0)
61#define OSL_SYSUPTIME_SUPPORT FALSE
62#else
63#define OSL_SYSUPTIME_SUPPORT TRUE
64#endif
65
66#endif