Blame view

drivers/bluetooth/btmrvl_main.c 15 KB
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  /**
   * Marvell Bluetooth driver
   *
   * Copyright (C) 2009, Marvell International Ltd.
   *
   * This software file (the "File") is distributed by Marvell International
   * Ltd. under the terms of the GNU General Public License Version 2, June 1991
   * (the "License").  You may use, redistribute and/or modify this File in
   * accordance with the terms and conditions of the License, a copy of which
   * is available by writing to the Free Software Foundation, Inc.,
   * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
   * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
   *
   *
   * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
   * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
   * ARE EXPRESSLY DISCLAIMED.  The License provides additional details about
   * this warranty disclaimer.
   **/
a59b968ee   Paul Gortmaker   bluetooth: add mo...
20
  #include <linux/module.h>
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  #include <net/bluetooth/bluetooth.h>
  #include <net/bluetooth/hci_core.h>
  
  #include "btmrvl_drv.h"
  
  #define VERSION "1.0"
  
  /*
   * This function is called by interface specific interrupt handler.
   * It updates Power Save & Host Sleep states, and wakes up the main
   * thread.
   */
  void btmrvl_interrupt(struct btmrvl_private *priv)
  {
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
35
36
37
38
39
40
41
  	priv->adapter->ps_state = PS_AWAKE;
  
  	priv->adapter->wakeup_tries = 0;
  
  	priv->adapter->int_count++;
  
  	wake_up_interruptible(&priv->main_thread.wait_q);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
42
43
  }
  EXPORT_SYMBOL_GPL(btmrvl_interrupt);
ea1e76a3f   Andrei Emeltchenko   Bluetooth: btmrvl...
44
  bool btmrvl_check_evtpkt(struct btmrvl_private *priv, struct sk_buff *skb)
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
45
  {
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
46
  	struct hci_event_hdr *hdr = (void *) skb->data;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
47

132ff4e5f   Bing Zhao   Bluetooth: Add bt...
48
  	if (hdr->evt == HCI_EV_CMD_COMPLETE) {
2c2453f3e   Andrei Emeltchenko   Bluetooth: btmrvl...
49
50
  		struct hci_ev_cmd_complete *ec;
  		u16 opcode, ocf, ogf;
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
51
  		ec = (void *) (skb->data + HCI_EVENT_HDR_SIZE);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
52
53
  		opcode = __le16_to_cpu(ec->opcode);
  		ocf = hci_opcode_ocf(opcode);
ea1e76a3f   Andrei Emeltchenko   Bluetooth: btmrvl...
54
  		ogf = hci_opcode_ogf(opcode);
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
55
56
  		if (ocf == BT_CMD_MODULE_CFG_REQ &&
  					priv->btmrvl_dev.sendcmdflag) {
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
57
58
59
60
  			priv->btmrvl_dev.sendcmdflag = false;
  			priv->adapter->cmd_complete = true;
  			wake_up_interruptible(&priv->adapter->cmd_wait_q);
  		}
ea1e76a3f   Andrei Emeltchenko   Bluetooth: btmrvl...
61
62
  
  		if (ogf == OGF) {
2c2453f3e   Andrei Emeltchenko   Bluetooth: btmrvl...
63
64
  			BT_DBG("vendor event skipped: ogf 0x%4.4x ocf 0x%4.4x",
  			       ogf, ocf);
ea1e76a3f   Andrei Emeltchenko   Bluetooth: btmrvl...
65
66
67
  			kfree_skb(skb);
  			return false;
  		}
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
68
  	}
ea1e76a3f   Andrei Emeltchenko   Bluetooth: btmrvl...
69
70
  
  	return true;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
71
72
73
74
75
76
  }
  EXPORT_SYMBOL_GPL(btmrvl_check_evtpkt);
  
  int btmrvl_process_event(struct btmrvl_private *priv, struct sk_buff *skb)
  {
  	struct btmrvl_adapter *adapter = priv->adapter;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
77
  	struct btmrvl_event *event;
31f085fea   Dan Carpenter   Bluetooth: Fix st...
78
  	int ret = 0;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
79

132ff4e5f   Bing Zhao   Bluetooth: Add bt...
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
  	event = (struct btmrvl_event *) skb->data;
  	if (event->ec != 0xff) {
  		BT_DBG("Not Marvell Event=%x", event->ec);
  		ret = -EINVAL;
  		goto exit;
  	}
  
  	switch (event->data[0]) {
  	case BT_CMD_AUTO_SLEEP_MODE:
  		if (!event->data[2]) {
  			if (event->data[1] == BT_PS_ENABLE)
  				adapter->psmode = 1;
  			else
  				adapter->psmode = 0;
  			BT_DBG("PS Mode:%s",
  				(adapter->psmode) ? "Enable" : "Disable");
  		} else {
  			BT_DBG("PS Mode command failed");
  		}
  		break;
  
  	case BT_CMD_HOST_SLEEP_CONFIG:
  		if (!event->data[3])
  			BT_DBG("gpio=%x, gap=%x", event->data[1],
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
104
  							event->data[2]);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
  		else
  			BT_DBG("HSCFG command failed");
  		break;
  
  	case BT_CMD_HOST_SLEEP_ENABLE:
  		if (!event->data[1]) {
  			adapter->hs_state = HS_ACTIVATED;
  			if (adapter->psmode)
  				adapter->ps_state = PS_SLEEP;
  			wake_up_interruptible(&adapter->cmd_wait_q);
  			BT_DBG("HS ACTIVATED!");
  		} else {
  			BT_DBG("HS Enable failed");
  		}
  		break;
  
  	case BT_CMD_MODULE_CFG_REQ:
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
122
123
  		if (priv->btmrvl_dev.sendcmdflag &&
  				event->data[1] == MODULE_BRINGUP_REQ) {
903c84377   Bing Zhao   Bluetooth: Decode...
124
125
126
127
  			BT_DBG("EVENT:%s",
  				((event->data[2] == MODULE_BROUGHT_UP) ||
  				(event->data[2] == MODULE_ALREADY_UP)) ?
  				"Bring-up succeed" : "Bring-up failed");
f120c6b63   Bing Zhao   Bluetooth: Set hd...
128

8f1e17422   David Vrabel   Bluetooth: HCI de...
129
130
  			if (event->length > 3 && event->data[3])
  				priv->btmrvl_dev.dev_type = HCI_AMP;
f120c6b63   Bing Zhao   Bluetooth: Set hd...
131
132
133
134
  			else
  				priv->btmrvl_dev.dev_type = HCI_BREDR;
  
  			BT_DBG("dev_type: %d", priv->btmrvl_dev.dev_type);
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
135
136
  		} else if (priv->btmrvl_dev.sendcmdflag &&
  				event->data[1] == MODULE_SHUTDOWN_REQ) {
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
  			BT_DBG("EVENT:%s", (event->data[2]) ?
  				"Shutdown failed" : "Shutdown succeed");
  		} else {
  			BT_DBG("BT_CMD_MODULE_CFG_REQ resp for APP");
  			ret = -EINVAL;
  		}
  		break;
  
  	case BT_EVENT_POWER_STATE:
  		if (event->data[1] == BT_PS_SLEEP)
  			adapter->ps_state = PS_SLEEP;
  		BT_DBG("EVENT:%s",
  			(adapter->ps_state) ? "PS_SLEEP" : "PS_AWAKE");
  		break;
  
  	default:
  		BT_DBG("Unknown Event=%d", event->data[0]);
  		ret = -EINVAL;
  		break;
  	}
  
  exit:
  	if (!ret)
  		kfree_skb(skb);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
161
162
163
164
165
166
  	return ret;
  }
  EXPORT_SYMBOL_GPL(btmrvl_process_event);
  
  int btmrvl_send_module_cfg_cmd(struct btmrvl_private *priv, int subcmd)
  {
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
167
  	struct sk_buff *skb;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
168
  	struct btmrvl_cmd *cmd;
9374253ff   Marcel Holtmann   Bluetooth: Remove...
169
  	int ret = 0;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
170
171
172
173
  
  	skb = bt_skb_alloc(sizeof(*cmd), GFP_ATOMIC);
  	if (skb == NULL) {
  		BT_ERR("No free skb");
9374253ff   Marcel Holtmann   Bluetooth: Remove...
174
  		return -ENOMEM;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
175
  	}
e0721f99b   Marcel Holtmann   Bluetooth: Fix la...
176
  	cmd = (struct btmrvl_cmd *) skb_put(skb, sizeof(*cmd));
91d697302   Marcel Holtmann   Bluetooth: Fix Ma...
177
  	cmd->ocf_ogf = cpu_to_le16(hci_opcode_pack(OGF, BT_CMD_MODULE_CFG_REQ));
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
178
179
180
181
  	cmd->length = 1;
  	cmd->data[0] = subcmd;
  
  	bt_cb(skb)->pkt_type = MRVL_VENDOR_PKT;
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
182
  	skb->dev = (void *) priv->btmrvl_dev.hcidev;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
183
184
185
186
187
188
189
190
191
  	skb_queue_head(&priv->adapter->tx_queue, skb);
  
  	priv->btmrvl_dev.sendcmdflag = true;
  
  	priv->adapter->cmd_complete = false;
  
  	BT_DBG("Queue module cfg Command");
  
  	wake_up_interruptible(&priv->main_thread.wait_q);
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
192
193
194
  	if (!wait_event_interruptible_timeout(priv->adapter->cmd_wait_q,
  				priv->adapter->cmd_complete,
  				msecs_to_jiffies(WAIT_UNTIL_CMD_RESP))) {
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
195
196
  		ret = -ETIMEDOUT;
  		BT_ERR("module_cfg_cmd(%x): timeout: %d",
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
197
  					subcmd, priv->btmrvl_dev.sendcmdflag);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
198
199
200
  	}
  
  	BT_DBG("module cfg Command done");
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
201
202
203
  	return ret;
  }
  EXPORT_SYMBOL_GPL(btmrvl_send_module_cfg_cmd);
2a8ff6112   Amitkumar Karwar   Bluetooth: btmrvl...
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
  int btmrvl_send_hscfg_cmd(struct btmrvl_private *priv)
  {
  	struct sk_buff *skb;
  	struct btmrvl_cmd *cmd;
  
  	skb = bt_skb_alloc(sizeof(*cmd), GFP_ATOMIC);
  	if (!skb) {
  		BT_ERR("No free skb");
  		return -ENOMEM;
  	}
  
  	cmd = (struct btmrvl_cmd *) skb_put(skb, sizeof(*cmd));
  	cmd->ocf_ogf = cpu_to_le16(hci_opcode_pack(OGF,
  						   BT_CMD_HOST_SLEEP_CONFIG));
  	cmd->length = 2;
  	cmd->data[0] = (priv->btmrvl_dev.gpio_gap & 0xff00) >> 8;
  	cmd->data[1] = (u8) (priv->btmrvl_dev.gpio_gap & 0x00ff);
  
  	bt_cb(skb)->pkt_type = MRVL_VENDOR_PKT;
  
  	skb->dev = (void *) priv->btmrvl_dev.hcidev;
  	skb_queue_head(&priv->adapter->tx_queue, skb);
  
  	BT_DBG("Queue HSCFG Command, gpio=0x%x, gap=0x%x", cmd->data[0],
  	       cmd->data[1]);
  
  	return 0;
  }
  EXPORT_SYMBOL_GPL(btmrvl_send_hscfg_cmd);
32fd63981   Amitkumar Karwar   Bluetooth: Enable...
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
  int btmrvl_enable_ps(struct btmrvl_private *priv)
  {
  	struct sk_buff *skb;
  	struct btmrvl_cmd *cmd;
  
  	skb = bt_skb_alloc(sizeof(*cmd), GFP_ATOMIC);
  	if (skb == NULL) {
  		BT_ERR("No free skb");
  		return -ENOMEM;
  	}
  
  	cmd = (struct btmrvl_cmd *) skb_put(skb, sizeof(*cmd));
  	cmd->ocf_ogf = cpu_to_le16(hci_opcode_pack(OGF,
  					BT_CMD_AUTO_SLEEP_MODE));
  	cmd->length = 1;
  
  	if (priv->btmrvl_dev.psmode)
  		cmd->data[0] = BT_PS_ENABLE;
  	else
  		cmd->data[0] = BT_PS_DISABLE;
  
  	bt_cb(skb)->pkt_type = MRVL_VENDOR_PKT;
  
  	skb->dev = (void *) priv->btmrvl_dev.hcidev;
  	skb_queue_head(&priv->adapter->tx_queue, skb);
  
  	BT_DBG("Queue PSMODE Command:%d", cmd->data[0]);
  
  	return 0;
  }
  EXPORT_SYMBOL_GPL(btmrvl_enable_ps);
ba54a16ff   Amitkumar Karwar   Bluetooth: btmrvl...
264
  int btmrvl_enable_hs(struct btmrvl_private *priv)
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
265
  {
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
266
  	struct sk_buff *skb;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
267
  	struct btmrvl_cmd *cmd;
9374253ff   Marcel Holtmann   Bluetooth: Remove...
268
  	int ret = 0;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
269
270
271
272
  
  	skb = bt_skb_alloc(sizeof(*cmd), GFP_ATOMIC);
  	if (skb == NULL) {
  		BT_ERR("No free skb");
9374253ff   Marcel Holtmann   Bluetooth: Remove...
273
  		return -ENOMEM;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
274
  	}
e0721f99b   Marcel Holtmann   Bluetooth: Fix la...
275
  	cmd = (struct btmrvl_cmd *) skb_put(skb, sizeof(*cmd));
91d697302   Marcel Holtmann   Bluetooth: Fix Ma...
276
  	cmd->ocf_ogf = cpu_to_le16(hci_opcode_pack(OGF, BT_CMD_HOST_SLEEP_ENABLE));
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
277
278
279
  	cmd->length = 0;
  
  	bt_cb(skb)->pkt_type = MRVL_VENDOR_PKT;
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
280
  	skb->dev = (void *) priv->btmrvl_dev.hcidev;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
281
282
283
284
285
  	skb_queue_head(&priv->adapter->tx_queue, skb);
  
  	BT_DBG("Queue hs enable Command");
  
  	wake_up_interruptible(&priv->main_thread.wait_q);
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
286
  	if (!wait_event_interruptible_timeout(priv->adapter->cmd_wait_q,
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
287
288
289
  			priv->adapter->hs_state,
  			msecs_to_jiffies(WAIT_UNTIL_HS_STATE_CHANGED))) {
  		ret = -ETIMEDOUT;
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
290
291
292
  		BT_ERR("timeout: %d, %d,%d", priv->adapter->hs_state,
  						priv->adapter->ps_state,
  						priv->adapter->wakeup_tries);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
293
  	}
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
294
295
  	return ret;
  }
ba54a16ff   Amitkumar Karwar   Bluetooth: btmrvl...
296
  EXPORT_SYMBOL_GPL(btmrvl_enable_hs);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
297
298
299
  
  int btmrvl_prepare_command(struct btmrvl_private *priv)
  {
9374253ff   Marcel Holtmann   Bluetooth: Remove...
300
  	int ret = 0;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
301
302
303
  
  	if (priv->btmrvl_dev.hscfgcmd) {
  		priv->btmrvl_dev.hscfgcmd = 0;
2a8ff6112   Amitkumar Karwar   Bluetooth: btmrvl...
304
  		btmrvl_send_hscfg_cmd(priv);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
305
306
307
308
  	}
  
  	if (priv->btmrvl_dev.pscmd) {
  		priv->btmrvl_dev.pscmd = 0;
32fd63981   Amitkumar Karwar   Bluetooth: Enable...
309
  		btmrvl_enable_ps(priv);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
310
311
312
313
314
315
316
317
318
319
320
321
  	}
  
  	if (priv->btmrvl_dev.hscmd) {
  		priv->btmrvl_dev.hscmd = 0;
  
  		if (priv->btmrvl_dev.hsmode) {
  			ret = btmrvl_enable_hs(priv);
  		} else {
  			ret = priv->hw_wakeup_firmware(priv);
  			priv->adapter->hs_state = HS_DEACTIVATED;
  		}
  	}
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
322
323
324
325
326
  	return ret;
  }
  
  static int btmrvl_tx_pkt(struct btmrvl_private *priv, struct sk_buff *skb)
  {
9374253ff   Marcel Holtmann   Bluetooth: Remove...
327
  	int ret = 0;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
328

9374253ff   Marcel Holtmann   Bluetooth: Remove...
329
  	if (!skb || !skb->data)
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
330
  		return -EINVAL;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
331
332
333
  
  	if (!skb->len || ((skb->len + BTM_HEADER_LEN) > BTM_UPLD_SIZE)) {
  		BT_ERR("Tx Error: Bad skb length %d : %d",
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
334
  						skb->len, BTM_UPLD_SIZE);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
335
336
337
338
339
340
341
342
343
344
345
  		return -EINVAL;
  	}
  
  	if (skb_headroom(skb) < BTM_HEADER_LEN) {
  		struct sk_buff *tmp = skb;
  
  		skb = skb_realloc_headroom(skb, BTM_HEADER_LEN);
  		if (!skb) {
  			BT_ERR("Tx Error: realloc_headroom failed %d",
  				BTM_HEADER_LEN);
  			skb = tmp;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
  			return -EINVAL;
  		}
  
  		kfree_skb(tmp);
  	}
  
  	skb_push(skb, BTM_HEADER_LEN);
  
  	/* header type: byte[3]
  	 * HCI_COMMAND = 1, ACL_DATA = 2, SCO_DATA = 3, 0xFE = Vendor
  	 * header length: byte[2][1][0]
  	 */
  
  	skb->data[0] = (skb->len & 0x0000ff);
  	skb->data[1] = (skb->len & 0x00ff00) >> 8;
  	skb->data[2] = (skb->len & 0xff0000) >> 16;
  	skb->data[3] = bt_cb(skb)->pkt_type;
  
  	if (priv->hw_host_to_card)
  		ret = priv->hw_host_to_card(priv, skb->data, skb->len);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
366
367
368
369
370
  	return ret;
  }
  
  static void btmrvl_init_adapter(struct btmrvl_private *priv)
  {
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
371
372
373
374
375
  	skb_queue_head_init(&priv->adapter->tx_queue);
  
  	priv->adapter->ps_state = PS_AWAKE;
  
  	init_waitqueue_head(&priv->adapter->cmd_wait_q);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
376
377
378
379
  }
  
  static void btmrvl_free_adapter(struct btmrvl_private *priv)
  {
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
380
381
382
383
384
  	skb_queue_purge(&priv->adapter->tx_queue);
  
  	kfree(priv->adapter);
  
  	priv->adapter = NULL;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
385
  }
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
386
387
  static int btmrvl_ioctl(struct hci_dev *hdev,
  				unsigned int cmd, unsigned long arg)
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
388
  {
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
389
390
  	return -ENOIOCTLCMD;
  }
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
391
392
  static int btmrvl_send_frame(struct sk_buff *skb)
  {
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
393
  	struct hci_dev *hdev = (struct hci_dev *) skb->dev;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
394
  	struct btmrvl_private *priv = NULL;
9374253ff   Marcel Holtmann   Bluetooth: Remove...
395
  	BT_DBG("type=%d, len=%d", skb->pkt_type, skb->len);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
396

155961e80   David Herrmann   Bluetooth: Remove...
397
  	if (!hdev) {
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
398
  		BT_ERR("Frame for unknown HCI device");
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
399
400
  		return -ENODEV;
  	}
155961e80   David Herrmann   Bluetooth: Remove...
401
  	priv = hci_get_drvdata(hdev);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
402
403
404
  	if (!test_bit(HCI_RUNNING, &hdev->flags)) {
  		BT_ERR("Failed testing HCI_RUNING, flags=%lx", hdev->flags);
  		print_hex_dump_bytes("data: ", DUMP_PREFIX_OFFSET,
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
405
  							skb->data, skb->len);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
  		return -EBUSY;
  	}
  
  	switch (bt_cb(skb)->pkt_type) {
  	case HCI_COMMAND_PKT:
  		hdev->stat.cmd_tx++;
  		break;
  
  	case HCI_ACLDATA_PKT:
  		hdev->stat.acl_tx++;
  		break;
  
  	case HCI_SCODATA_PKT:
  		hdev->stat.sco_tx++;
  		break;
  	}
  
  	skb_queue_tail(&priv->adapter->tx_queue, skb);
  
  	wake_up_interruptible(&priv->main_thread.wait_q);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
426
427
428
429
430
  	return 0;
  }
  
  static int btmrvl_flush(struct hci_dev *hdev)
  {
155961e80   David Herrmann   Bluetooth: Remove...
431
  	struct btmrvl_private *priv = hci_get_drvdata(hdev);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
432

132ff4e5f   Bing Zhao   Bluetooth: Add bt...
433
  	skb_queue_purge(&priv->adapter->tx_queue);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
434
435
436
437
438
  	return 0;
  }
  
  static int btmrvl_close(struct hci_dev *hdev)
  {
155961e80   David Herrmann   Bluetooth: Remove...
439
  	struct btmrvl_private *priv = hci_get_drvdata(hdev);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
440

9374253ff   Marcel Holtmann   Bluetooth: Remove...
441
  	if (!test_and_clear_bit(HCI_RUNNING, &hdev->flags))
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
442
  		return 0;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
443
444
  
  	skb_queue_purge(&priv->adapter->tx_queue);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
445
446
447
448
449
  	return 0;
  }
  
  static int btmrvl_open(struct hci_dev *hdev)
  {
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
450
  	set_bit(HCI_RUNNING, &hdev->flags);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
  	return 0;
  }
  
  /*
   * This function handles the event generated by firmware, rx data
   * received from firmware, and tx data sent from kernel.
   */
  static int btmrvl_service_main_thread(void *data)
  {
  	struct btmrvl_thread *thread = data;
  	struct btmrvl_private *priv = thread->priv;
  	struct btmrvl_adapter *adapter = priv->adapter;
  	wait_queue_t wait;
  	struct sk_buff *skb;
  	ulong flags;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
466
  	init_waitqueue_entry(&wait, current);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
467
468
469
470
471
472
  	for (;;) {
  		add_wait_queue(&thread->wait_q, &wait);
  
  		set_current_state(TASK_INTERRUPTIBLE);
  
  		if (adapter->wakeup_tries ||
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
473
474
475
  				((!adapter->int_count) &&
  				(!priv->btmrvl_dev.tx_dnld_rdy ||
  				skb_queue_empty(&adapter->tx_queue)))) {
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
  			BT_DBG("main_thread is sleeping...");
  			schedule();
  		}
  
  		set_current_state(TASK_RUNNING);
  
  		remove_wait_queue(&thread->wait_q, &wait);
  
  		BT_DBG("main_thread woke up");
  
  		if (kthread_should_stop()) {
  			BT_DBG("main_thread: break from main thread");
  			break;
  		}
  
  		spin_lock_irqsave(&priv->driver_lock, flags);
  		if (adapter->int_count) {
  			adapter->int_count = 0;
d1d10d783   Amitkumar Karwar   Bluetooth: Proces...
494
495
  			spin_unlock_irqrestore(&priv->driver_lock, flags);
  			priv->hw_process_int_status(priv);
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
496
497
  		} else if (adapter->ps_state == PS_SLEEP &&
  					!skb_queue_empty(&adapter->tx_queue)) {
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
498
499
500
501
  			spin_unlock_irqrestore(&priv->driver_lock, flags);
  			adapter->wakeup_tries++;
  			priv->hw_wakeup_firmware(priv);
  			continue;
d1d10d783   Amitkumar Karwar   Bluetooth: Proces...
502
503
  		} else {
  			spin_unlock_irqrestore(&priv->driver_lock, flags);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
504
  		}
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
505
506
507
508
509
510
511
512
513
514
515
516
  
  		if (adapter->ps_state == PS_SLEEP)
  			continue;
  
  		if (!priv->btmrvl_dev.tx_dnld_rdy)
  			continue;
  
  		skb = skb_dequeue(&adapter->tx_queue);
  		if (skb) {
  			if (btmrvl_tx_pkt(priv, skb))
  				priv->btmrvl_dev.hcidev->stat.err_tx++;
  			else
4271e08d8   Marcel Holtmann   Bluetooth: Some c...
517
  				priv->btmrvl_dev.hcidev->stat.byte_tx += skb->len;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
518
519
520
521
  
  			kfree_skb(skb);
  		}
  	}
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
522
523
  	return 0;
  }
64061607e   Bing Zhao   Bluetooth: Separa...
524
  int btmrvl_register_hdev(struct btmrvl_private *priv)
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
525
526
  {
  	struct hci_dev *hdev = NULL;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
527
  	int ret;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
528
529
530
531
532
  	hdev = hci_alloc_dev();
  	if (!hdev) {
  		BT_ERR("Can not allocate HCI device");
  		goto err_hdev;
  	}
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
533
  	priv->btmrvl_dev.hcidev = hdev;
155961e80   David Herrmann   Bluetooth: Remove...
534
  	hci_set_drvdata(hdev, priv);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
535

c13854cef   Marcel Holtmann   Bluetooth: Conver...
536
  	hdev->bus = HCI_SDIO;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
537
538
539
540
  	hdev->open = btmrvl_open;
  	hdev->close = btmrvl_close;
  	hdev->flush = btmrvl_flush;
  	hdev->send = btmrvl_send_frame;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
541
  	hdev->ioctl = btmrvl_ioctl;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
542

64061607e   Bing Zhao   Bluetooth: Separa...
543
  	btmrvl_send_module_cfg_cmd(priv, MODULE_BRINGUP_REQ);
f120c6b63   Bing Zhao   Bluetooth: Set hd...
544
  	hdev->dev_type = priv->btmrvl_dev.dev_type;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
545
546
547
548
549
  	ret = hci_register_dev(hdev);
  	if (ret < 0) {
  		BT_ERR("Can not register HCI device");
  		goto err_hci_register_dev;
  	}
fb784f050   Bing Zhao   Bluetooth: Add de...
550
551
552
  #ifdef CONFIG_DEBUG_FS
  	btmrvl_debugfs_init(hdev);
  #endif
64061607e   Bing Zhao   Bluetooth: Separa...
553
  	return 0;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
554
555
  
  err_hci_register_dev:
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
556
557
558
  	hci_free_dev(hdev);
  
  err_hdev:
64061607e   Bing Zhao   Bluetooth: Separa...
559
560
  	/* Stop the thread servicing the interrupts */
  	kthread_stop(priv->main_thread.task);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
561
  	btmrvl_free_adapter(priv);
64061607e   Bing Zhao   Bluetooth: Separa...
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
  	kfree(priv);
  
  	return -ENOMEM;
  }
  EXPORT_SYMBOL_GPL(btmrvl_register_hdev);
  
  struct btmrvl_private *btmrvl_add_card(void *card)
  {
  	struct btmrvl_private *priv;
  
  	priv = kzalloc(sizeof(*priv), GFP_KERNEL);
  	if (!priv) {
  		BT_ERR("Can not allocate priv");
  		goto err_priv;
  	}
  
  	priv->adapter = kzalloc(sizeof(*priv->adapter), GFP_KERNEL);
  	if (!priv->adapter) {
  		BT_ERR("Allocate buffer for btmrvl_adapter failed!");
  		goto err_adapter;
  	}
  
  	btmrvl_init_adapter(priv);
  
  	BT_DBG("Starting kthread...");
  	priv->main_thread.priv = priv;
  	spin_lock_init(&priv->driver_lock);
  
  	init_waitqueue_head(&priv->main_thread.wait_q);
  	priv->main_thread.task = kthread_run(btmrvl_service_main_thread,
  				&priv->main_thread, "btmrvl_main_service");
  
  	priv->btmrvl_dev.card = card;
  	priv->btmrvl_dev.tx_dnld_rdy = true;
  
  	return priv;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
598
599
600
601
602
  
  err_adapter:
  	kfree(priv);
  
  err_priv:
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
603
604
605
606
607
608
609
  	return NULL;
  }
  EXPORT_SYMBOL_GPL(btmrvl_add_card);
  
  int btmrvl_remove_card(struct btmrvl_private *priv)
  {
  	struct hci_dev *hdev;
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
610
611
612
613
614
  	hdev = priv->btmrvl_dev.hcidev;
  
  	wake_up_interruptible(&priv->adapter->cmd_wait_q);
  
  	kthread_stop(priv->main_thread.task);
fb784f050   Bing Zhao   Bluetooth: Add de...
615
616
617
  #ifdef CONFIG_DEBUG_FS
  	btmrvl_debugfs_remove(hdev);
  #endif
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
618
619
620
621
622
623
624
625
626
  	hci_unregister_dev(hdev);
  
  	hci_free_dev(hdev);
  
  	priv->btmrvl_dev.hcidev = NULL;
  
  	btmrvl_free_adapter(priv);
  
  	kfree(priv);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
627
628
629
630
631
  	return 0;
  }
  EXPORT_SYMBOL_GPL(btmrvl_remove_card);
  
  MODULE_AUTHOR("Marvell International Ltd.");
9666fb356   Marcel Holtmann   Bluetooth: Fix mo...
632
  MODULE_DESCRIPTION("Marvell Bluetooth driver ver " VERSION);
132ff4e5f   Bing Zhao   Bluetooth: Add bt...
633
634
  MODULE_VERSION(VERSION);
  MODULE_LICENSE("GPL v2");