diff options
Diffstat (limited to 'drivers/net/wireless/bcm4329/include/osl.h')
-rw-r--r-- | drivers/net/wireless/bcm4329/include/osl.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/drivers/net/wireless/bcm4329/include/osl.h b/drivers/net/wireless/bcm4329/include/osl.h new file mode 100644 index 00000000000..5599e536eee --- /dev/null +++ b/drivers/net/wireless/bcm4329/include/osl.h | |||
@@ -0,0 +1,55 @@ | |||
1 | /* | ||
2 | * OS Abstraction Layer | ||
3 | * | ||
4 | * Copyright (C) 1999-2010, 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 | * $Id: osl.h,v 13.37.32.1 2008/11/20 00:51:15 Exp $ | ||
24 | */ | ||
25 | |||
26 | |||
27 | #ifndef _osl_h_ | ||
28 | #define _osl_h_ | ||
29 | |||
30 | |||
31 | typedef struct osl_info osl_t; | ||
32 | typedef struct osl_dmainfo osldma_t; | ||
33 | |||
34 | #define OSL_PKTTAG_SZ 32 | ||
35 | |||
36 | |||
37 | typedef void (*pktfree_cb_fn_t)(void *ctx, void *pkt, unsigned int status); | ||
38 | |||
39 | #include <linux_osl.h> | ||
40 | |||
41 | |||
42 | |||
43 | |||
44 | #define SET_REG(osh, r, mask, val) W_REG((osh), (r), ((R_REG((osh), r) & ~(mask)) | (val))) | ||
45 | |||
46 | #ifndef AND_REG | ||
47 | #define AND_REG(osh, r, v) W_REG(osh, (r), R_REG(osh, r) & (v)) | ||
48 | #endif | ||
49 | |||
50 | #ifndef OR_REG | ||
51 | #define OR_REG(osh, r, v) W_REG(osh, (r), R_REG(osh, r) | (v)) | ||
52 | #endif | ||
53 | |||
54 | |||
55 | #endif | ||