aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/ti-st/bt_drv.h
blob: a0beebec84656e5b59b8a4c2ab4da8c99f7c9907 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
 *  Texas Instrument's Bluetooth Driver For Shared Transport.
 *
 *  Bluetooth Driver acts as interface between HCI CORE and
 *  TI Shared Transport Layer.
 *
 *  Copyright (C) 2009 Texas Instruments
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */

#ifndef _BT_DRV_H
#define _BT_DRV_H

/* Bluetooth Driver Version */
#define VERSION               "1.0"

/* Defines number of seconds to wait for reg completion
 * callback getting called from ST (in case,registration
 * with ST returns PENDING status)
 */
#define BT_REGISTER_TIMEOUT   msecs_to_jiffies(6000)	/* 6 sec */

/* BT driver's local status */
#define BT_DRV_RUNNING        0
#define BT_ST_REGISTERED      1

/* BT driver operation structure */
struct hci_st {

	/* hci device pointer which binds to bt driver */
	struct hci_dev *hdev;

	/* used locally,to maintain various BT driver status */
	unsigned long flags;

	/* to hold ST registration callback  status */
	char streg_cbdata;

	/* write function pointer of ST driver */
	long (*st_write) (struct sk_buff *);

	/* Wait on comepletion handler needed to synchronize
	 * hci_st_open() and hci_st_registration_completion_cb()
	 * functions.*/
	struct completion wait_for_btdrv_reg_completion;
};

#endif