block: fix warning with calling smp_processor_id() in preemptible section
[pandora-kernel.git] / drivers / staging / brcm80211 / brcmsmac / mac80211_if.h
1 /*
2  * Copyright (c) 2010 Broadcom Corporation
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 #ifndef _BRCM_MAC80211_IF_H_
18 #define _BRCM_MAC80211_IF_H_
19
20 #include <linux/timer.h>
21 #include <linux/interrupt.h>
22
23 /* softmac ioctl definitions */
24 #define BRCMS_SET_SHORTSLOT_OVERRIDE            146
25
26
27 #include <linux/interrupt.h>
28
29 /* BMAC Note: High-only driver is no longer working in softirq context as it needs to block and
30  * sleep so perimeter lock has to be a semaphore instead of spinlock. This requires timers to be
31  * submitted to workqueue instead of being on kernel timer
32  */
33 struct brcms_timer {
34         struct timer_list timer;
35         struct brcms_info *wl;
36         void (*fn) (void *);
37         void *arg;              /* argument to fn */
38         uint ms;
39         bool periodic;
40         bool set;
41         struct brcms_timer *next;
42 #ifdef BCMDBG
43         char *name;             /* Description of the timer */
44 #endif
45 };
46
47 struct brcms_if {
48         uint subunit;           /* WDS/BSS unit */
49         struct pci_dev *pci_dev;
50 };
51
52 #define MAX_FW_IMAGES           4
53 struct brcms_firmware {
54         u32 fw_cnt;
55         const struct firmware *fw_bin[MAX_FW_IMAGES];
56         const struct firmware *fw_hdr[MAX_FW_IMAGES];
57         u32 hdr_num_entries[MAX_FW_IMAGES];
58 };
59
60 struct brcms_info {
61         struct brcms_pub *pub;          /* pointer to public wlc state */
62         void *wlc;              /* pointer to private common os-independent data */
63         u32 magic;
64
65         int irq;
66
67         spinlock_t lock;        /* per-device perimeter lock */
68         spinlock_t isr_lock;    /* per-device ISR synchronization lock */
69
70         /* bus type and regsva for unmap in brcms_free() */
71         uint bcm_bustype;       /* bus type */
72         void *regsva;           /* opaque chip registers virtual address */
73
74         /* timer related fields */
75         atomic_t callbacks;     /* # outstanding callback functions */
76         struct brcms_timer *timers;     /* timer cleanup queue */
77
78         struct tasklet_struct tasklet;  /* dpc tasklet */
79         bool resched;           /* dpc needs to be and is rescheduled */
80 #ifdef LINUXSTA_PS
81         u32 pci_psstate[16];    /* pci ps-state save/restore */
82 #endif
83         struct brcms_firmware fw;
84         struct wiphy *wiphy;
85 };
86
87 /* misc callbacks */
88 extern void brcms_init(struct brcms_info *wl);
89 extern uint brcms_reset(struct brcms_info *wl);
90 extern void brcms_intrson(struct brcms_info *wl);
91 extern u32 brcms_intrsoff(struct brcms_info *wl);
92 extern void brcms_intrsrestore(struct brcms_info *wl, u32 macintmask);
93 extern int brcms_up(struct brcms_info *wl);
94 extern void brcms_down(struct brcms_info *wl);
95 extern void brcms_txflowcontrol(struct brcms_info *wl, struct brcms_if *wlif,
96                                 bool state, int prio);
97 extern bool wl_alloc_dma_resources(struct brcms_info *wl, uint dmaddrwidth);
98 extern bool brcms_rfkill_set_hw_state(struct brcms_info *wl);
99
100 /* timer functions */
101 extern struct brcms_timer *brcms_init_timer(struct brcms_info *wl,
102                                       void (*fn) (void *arg), void *arg,
103                                       const char *name);
104 extern void brcms_free_timer(struct brcms_info *wl, struct brcms_timer *timer);
105 extern void brcms_add_timer(struct brcms_info *wl, struct brcms_timer *timer,
106                             uint ms, int periodic);
107 extern bool brcms_del_timer(struct brcms_info *wl, struct brcms_timer *timer);
108 extern void brcms_msleep(struct brcms_info *wl, uint ms);
109
110 #endif                          /* _BRCM_MAC80211_IF_H_ */