tizen 2.4 release
[profile/mobile/platform/kernel/linux-3.10-sc7730.git] / drivers / net / wireless / bcmdhd / dhd_linux_wq.h
1 /*
2  * Broadcom Dongle Host Driver (DHD), Generic work queue framework
3  * Generic interface to handle dhd deferred work events
4  *
5  * Copyright (C) 1999-2015, Broadcom Corporation
6  * 
7  *      Unless you and Broadcom execute a separate written software license
8  * agreement governing use of this software, this software is licensed to you
9  * under the terms of the GNU General Public License version 2 (the "GPL"),
10  * available at http://www.broadcom.com/licenses/GPLv2.php, with the
11  * following added to such license:
12  * 
13  *      As a special exception, the copyright holders of this software give you
14  * permission to link this software with independent modules, and to copy and
15  * distribute the resulting executable under terms of your choice, provided that
16  * you also meet, for each linked independent module, the terms and conditions of
17  * the license of that module.  An independent module is a module which is not
18  * derived from this software.  The special exception does not apply to any
19  * modifications of the software.
20  * 
21  *      Notwithstanding the above, under no circumstances may you combine this
22  * software in any way with any other Broadcom software provided under a license
23  * other than the GPL, without Broadcom's express prior written consent.
24  *
25  * $Id: dhd_linux_wq.h 408802 2013-06-20 19:08:47Z $
26  */
27 #ifndef _dhd_linux_wq_h_
28 #define _dhd_linux_wq_h_
29 /*
30  *      Work event definitions
31  */
32 enum _wq_event {
33         DHD_WQ_WORK_IF_ADD = 1,
34         DHD_WQ_WORK_IF_DEL,
35         DHD_WQ_WORK_SET_MAC,
36         DHD_WQ_WORK_SET_MCAST_LIST,
37         DHD_WQ_WORK_IPV6_NDO,
38         DHD_WQ_WORK_HANG_MSG,
39
40         DHD_MAX_WQ_EVENTS
41 };
42
43 /*
44  *      Work event priority
45  */
46 #define DHD_WORK_PRIORITY_LOW   0
47 #define DHD_WORK_PRIORITY_HIGH  1
48
49 /*
50  *      Error definitions
51  */
52 #define DHD_WQ_STS_OK                    0
53 #define DHD_WQ_STS_FAILED               -1      /* General failure */
54 #define DHD_WQ_STS_UNINITIALIZED        -2
55 #define DHD_WQ_STS_SCHED_FAILED         -3
56 #define DHD_WQ_STS_UNKNOWN_EVENT        -4
57
58 typedef void (*event_handler_t)(void *handle, void *event_data, u8 event);
59
60 void *dhd_deferred_work_init(void *dhd);
61 void dhd_deferred_work_deinit(void *work);
62 int dhd_deferred_schedule_work(void *event_data, u8 event,
63         event_handler_t evt_handler, u8 priority);
64 #endif /* _dhd_linux_wq_h_ */