blob: a80c3bc909042798e497f31b3f20ce19682aa035 [file] [log] [blame]
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001/*
2 * Bluetooth Software UART Qualcomm protocol
3 *
4 * HCI_IBS (HCI In-Band Sleep) is Qualcomm's power management
5 * protocol extension to H4.
6 *
7 * Copyright (C) 2007 Texas Instruments, Inc.
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05308 * Copyright (c) 2010, 2012, 2018 The Linux Foundation. All rights reserved.
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07009 *
10 * Acknowledgements:
11 * This file is based on hci_ll.c, which was...
12 * Written by Ohad Ben-Cohen <ohad@bencohen.org>
13 * which was in turn based on hci_h4.c, which was written
14 * by Maxim Krasnyansky and Marcel Holtmann.
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2
18 * as published by the Free Software Foundation
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 *
29 */
30
31#include <linux/kernel.h>
Thierry Escande05ba5332018-03-29 21:15:24 +020032#include <linux/clk.h>
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -070033#include <linux/debugfs.h>
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +053034#include <linux/delay.h>
35#include <linux/device.h>
Thierry Escande05ba5332018-03-29 21:15:24 +020036#include <linux/gpio/consumer.h>
37#include <linux/mod_devicetable.h>
38#include <linux/module.h>
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +053039#include <linux/of_device.h>
40#include <linux/platform_device.h>
41#include <linux/regulator/consumer.h>
Thierry Escande05ba5332018-03-29 21:15:24 +020042#include <linux/serdev.h>
Balakrishna Godavarthic614ca32018-10-16 19:51:35 +053043#include <asm/unaligned.h>
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -070044
45#include <net/bluetooth/bluetooth.h>
46#include <net/bluetooth/hci_core.h>
47
48#include "hci_uart.h"
49#include "btqca.h"
50
51/* HCI_IBS protocol messages */
52#define HCI_IBS_SLEEP_IND 0xFE
53#define HCI_IBS_WAKE_IND 0xFD
54#define HCI_IBS_WAKE_ACK 0xFC
Marcel Holtmannf81b0012015-08-30 23:05:32 +020055#define HCI_MAX_IBS_SIZE 10
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -070056
57/* Controller states */
58#define STATE_IN_BAND_SLEEP_ENABLED 1
59
Marcel Holtmannf81b0012015-08-30 23:05:32 +020060#define IBS_WAKE_RETRANS_TIMEOUT_MS 100
61#define IBS_TX_IDLE_TIMEOUT_MS 2000
Matthias Kaehlcke94d66712019-02-27 15:52:23 -080062#define CMD_TRANS_TIMEOUT_MS 100
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -070063
Thierry Escande05ba5332018-03-29 21:15:24 +020064/* susclk rate */
65#define SUSCLK_RATE_32KHZ 32768
66
Balakrishna Godavarthic614ca32018-10-16 19:51:35 +053067/* Controller debug log header */
68#define QCA_DEBUG_HANDLE 0x2EDC
69
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -070070/* HCI_IBS transmit side sleep protocol states */
71enum tx_ibs_states {
72 HCI_IBS_TX_ASLEEP,
73 HCI_IBS_TX_WAKING,
74 HCI_IBS_TX_AWAKE,
75};
76
77/* HCI_IBS receive side sleep protocol states */
78enum rx_states {
79 HCI_IBS_RX_ASLEEP,
80 HCI_IBS_RX_AWAKE,
81};
82
83/* HCI_IBS transmit and receive side clock state vote */
84enum hci_ibs_clock_state_vote {
85 HCI_IBS_VOTE_STATS_UPDATE,
86 HCI_IBS_TX_VOTE_CLOCK_ON,
87 HCI_IBS_TX_VOTE_CLOCK_OFF,
88 HCI_IBS_RX_VOTE_CLOCK_ON,
89 HCI_IBS_RX_VOTE_CLOCK_OFF,
90};
91
92struct qca_data {
93 struct hci_uart *hu;
94 struct sk_buff *rx_skb;
95 struct sk_buff_head txq;
96 struct sk_buff_head tx_wait_q; /* HCI_IBS wait queue */
97 spinlock_t hci_ibs_lock; /* HCI_IBS state lock */
98 u8 tx_ibs_state; /* HCI_IBS transmit side power state*/
99 u8 rx_ibs_state; /* HCI_IBS receive side power state */
Viresh Kumar621a5f72015-09-26 15:04:07 -0700100 bool tx_vote; /* Clock must be on for TX */
101 bool rx_vote; /* Clock must be on for RX */
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700102 struct timer_list tx_idle_timer;
103 u32 tx_idle_delay;
104 struct timer_list wake_retrans_timer;
105 u32 wake_retrans;
106 struct workqueue_struct *workqueue;
107 struct work_struct ws_awake_rx;
108 struct work_struct ws_awake_device;
109 struct work_struct ws_rx_vote_off;
110 struct work_struct ws_tx_vote_off;
111 unsigned long flags;
112
113 /* For debugging purpose */
114 u64 ibs_sent_wacks;
115 u64 ibs_sent_slps;
116 u64 ibs_sent_wakes;
117 u64 ibs_recv_wacks;
118 u64 ibs_recv_slps;
119 u64 ibs_recv_wakes;
120 u64 vote_last_jif;
121 u32 vote_on_ms;
122 u32 vote_off_ms;
123 u64 tx_votes_on;
124 u64 rx_votes_on;
125 u64 tx_votes_off;
126 u64 rx_votes_off;
127 u64 votes_on;
128 u64 votes_off;
129};
130
Balakrishna Godavarthi83d9c5e2018-08-03 17:46:29 +0530131enum qca_speed_type {
132 QCA_INIT_SPEED = 1,
133 QCA_OPER_SPEED
134};
135
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +0530136/*
137 * Voltage regulator information required for configuring the
138 * QCA Bluetooth chipset
139 */
140struct qca_vreg {
141 const char *name;
142 unsigned int min_uV;
143 unsigned int max_uV;
144 unsigned int load_uA;
145};
146
147struct qca_vreg_data {
148 enum qca_btsoc_type soc_type;
149 struct qca_vreg *vregs;
150 size_t num_vregs;
151};
152
153/*
154 * Platform data for the QCA Bluetooth power driver.
155 */
156struct qca_power {
157 struct device *dev;
158 const struct qca_vreg_data *vreg_data;
159 struct regulator_bulk_data *vreg_bulk;
160 bool vregs_on;
161};
162
Thierry Escande05ba5332018-03-29 21:15:24 +0200163struct qca_serdev {
164 struct hci_uart serdev_hu;
165 struct gpio_desc *bt_en;
166 struct clk *susclk;
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +0530167 enum qca_btsoc_type btsoc_type;
168 struct qca_power *bt_power;
169 u32 init_speed;
170 u32 oper_speed;
Thierry Escande05ba5332018-03-29 21:15:24 +0200171};
172
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +0530173static int qca_power_setup(struct hci_uart *hu, bool on);
Balakrishna Godavarthic2d78272018-08-22 17:50:05 +0530174static void qca_power_shutdown(struct hci_uart *hu);
Balakrishna Godavarthi3e4be652018-09-24 20:14:45 +0530175static int qca_power_off(struct hci_dev *hdev);
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +0530176
Matthias Kaehlcke4fdd5a42019-03-11 11:38:31 -0700177static enum qca_btsoc_type qca_soc_type(struct hci_uart *hu)
178{
179 enum qca_btsoc_type soc_type;
180
181 if (hu->serdev) {
182 struct qca_serdev *qsd = serdev_device_get_drvdata(hu->serdev);
183
184 soc_type = qsd->btsoc_type;
185 } else {
186 soc_type = QCA_ROME;
187 }
188
189 return soc_type;
190}
191
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700192static void __serial_clock_on(struct tty_struct *tty)
193{
194 /* TODO: Some chipset requires to enable UART clock on client
195 * side to save power consumption or manual work is required.
196 * Please put your code to control UART clock here if needed
197 */
198}
199
200static void __serial_clock_off(struct tty_struct *tty)
201{
202 /* TODO: Some chipset requires to disable UART clock on client
203 * side to save power consumption or manual work is required.
204 * Please put your code to control UART clock off here if needed
205 */
206}
207
208/* serial_clock_vote needs to be called with the ibs lock held */
209static void serial_clock_vote(unsigned long vote, struct hci_uart *hu)
210{
211 struct qca_data *qca = hu->priv;
212 unsigned int diff;
213
214 bool old_vote = (qca->tx_vote | qca->rx_vote);
215 bool new_vote;
216
217 switch (vote) {
218 case HCI_IBS_VOTE_STATS_UPDATE:
219 diff = jiffies_to_msecs(jiffies - qca->vote_last_jif);
220
221 if (old_vote)
222 qca->vote_off_ms += diff;
223 else
224 qca->vote_on_ms += diff;
225 return;
226
227 case HCI_IBS_TX_VOTE_CLOCK_ON:
228 qca->tx_vote = true;
229 qca->tx_votes_on++;
230 new_vote = true;
231 break;
232
233 case HCI_IBS_RX_VOTE_CLOCK_ON:
234 qca->rx_vote = true;
235 qca->rx_votes_on++;
236 new_vote = true;
237 break;
238
239 case HCI_IBS_TX_VOTE_CLOCK_OFF:
240 qca->tx_vote = false;
241 qca->tx_votes_off++;
242 new_vote = qca->rx_vote | qca->tx_vote;
243 break;
244
245 case HCI_IBS_RX_VOTE_CLOCK_OFF:
246 qca->rx_vote = false;
247 qca->rx_votes_off++;
248 new_vote = qca->rx_vote | qca->tx_vote;
249 break;
250
251 default:
252 BT_ERR("Voting irregularity");
253 return;
254 }
255
256 if (new_vote != old_vote) {
257 if (new_vote)
258 __serial_clock_on(hu->tty);
259 else
260 __serial_clock_off(hu->tty);
261
Prasanna Karthikce26d812015-09-15 12:19:45 +0000262 BT_DBG("Vote serial clock %s(%s)", new_vote ? "true" : "false",
263 vote ? "true" : "false");
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700264
265 diff = jiffies_to_msecs(jiffies - qca->vote_last_jif);
266
267 if (new_vote) {
268 qca->votes_on++;
269 qca->vote_off_ms += diff;
270 } else {
271 qca->votes_off++;
272 qca->vote_on_ms += diff;
273 }
274 qca->vote_last_jif = jiffies;
275 }
276}
277
278/* Builds and sends an HCI_IBS command packet.
279 * These are very simple packets with only 1 cmd byte.
280 */
281static int send_hci_ibs_cmd(u8 cmd, struct hci_uart *hu)
282{
283 int err = 0;
284 struct sk_buff *skb = NULL;
285 struct qca_data *qca = hu->priv;
286
287 BT_DBG("hu %p send hci ibs cmd 0x%x", hu, cmd);
288
289 skb = bt_skb_alloc(1, GFP_ATOMIC);
290 if (!skb) {
291 BT_ERR("Failed to allocate memory for HCI_IBS packet");
292 return -ENOMEM;
293 }
294
295 /* Assign HCI_IBS type */
Johannes Berg634fef62017-06-16 14:29:24 +0200296 skb_put_u8(skb, cmd);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700297
298 skb_queue_tail(&qca->txq, skb);
299
300 return err;
301}
302
303static void qca_wq_awake_device(struct work_struct *work)
304{
305 struct qca_data *qca = container_of(work, struct qca_data,
306 ws_awake_device);
307 struct hci_uart *hu = qca->hu;
308 unsigned long retrans_delay;
309
310 BT_DBG("hu %p wq awake device", hu);
311
312 /* Vote for serial clock */
313 serial_clock_vote(HCI_IBS_TX_VOTE_CLOCK_ON, hu);
314
315 spin_lock(&qca->hci_ibs_lock);
316
317 /* Send wake indication to device */
318 if (send_hci_ibs_cmd(HCI_IBS_WAKE_IND, hu) < 0)
319 BT_ERR("Failed to send WAKE to device");
320
321 qca->ibs_sent_wakes++;
322
323 /* Start retransmit timer */
324 retrans_delay = msecs_to_jiffies(qca->wake_retrans);
325 mod_timer(&qca->wake_retrans_timer, jiffies + retrans_delay);
326
327 spin_unlock(&qca->hci_ibs_lock);
328
329 /* Actually send the packets */
330 hci_uart_tx_wakeup(hu);
331}
332
333static void qca_wq_awake_rx(struct work_struct *work)
334{
335 struct qca_data *qca = container_of(work, struct qca_data,
336 ws_awake_rx);
337 struct hci_uart *hu = qca->hu;
338
339 BT_DBG("hu %p wq awake rx", hu);
340
341 serial_clock_vote(HCI_IBS_RX_VOTE_CLOCK_ON, hu);
342
343 spin_lock(&qca->hci_ibs_lock);
344 qca->rx_ibs_state = HCI_IBS_RX_AWAKE;
345
346 /* Always acknowledge device wake up,
347 * sending IBS message doesn't count as TX ON.
348 */
349 if (send_hci_ibs_cmd(HCI_IBS_WAKE_ACK, hu) < 0)
350 BT_ERR("Failed to acknowledge device wake up");
351
352 qca->ibs_sent_wacks++;
353
354 spin_unlock(&qca->hci_ibs_lock);
355
356 /* Actually send the packets */
357 hci_uart_tx_wakeup(hu);
358}
359
360static void qca_wq_serial_rx_clock_vote_off(struct work_struct *work)
361{
362 struct qca_data *qca = container_of(work, struct qca_data,
363 ws_rx_vote_off);
364 struct hci_uart *hu = qca->hu;
365
366 BT_DBG("hu %p rx clock vote off", hu);
367
368 serial_clock_vote(HCI_IBS_RX_VOTE_CLOCK_OFF, hu);
369}
370
371static void qca_wq_serial_tx_clock_vote_off(struct work_struct *work)
372{
373 struct qca_data *qca = container_of(work, struct qca_data,
374 ws_tx_vote_off);
375 struct hci_uart *hu = qca->hu;
376
377 BT_DBG("hu %p tx clock vote off", hu);
378
379 /* Run HCI tx handling unlocked */
380 hci_uart_tx_wakeup(hu);
381
382 /* Now that message queued to tty driver, vote for tty clocks off.
383 * It is up to the tty driver to pend the clocks off until tx done.
384 */
385 serial_clock_vote(HCI_IBS_TX_VOTE_CLOCK_OFF, hu);
386}
387
Kees Cook04356052017-10-04 17:54:29 -0700388static void hci_ibs_tx_idle_timeout(struct timer_list *t)
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700389{
Kees Cook04356052017-10-04 17:54:29 -0700390 struct qca_data *qca = from_timer(qca, t, tx_idle_timer);
391 struct hci_uart *hu = qca->hu;
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700392 unsigned long flags;
393
394 BT_DBG("hu %p idle timeout in %d state", hu, qca->tx_ibs_state);
395
396 spin_lock_irqsave_nested(&qca->hci_ibs_lock,
397 flags, SINGLE_DEPTH_NESTING);
398
399 switch (qca->tx_ibs_state) {
400 case HCI_IBS_TX_AWAKE:
401 /* TX_IDLE, go to SLEEP */
402 if (send_hci_ibs_cmd(HCI_IBS_SLEEP_IND, hu) < 0) {
403 BT_ERR("Failed to send SLEEP to device");
404 break;
405 }
406 qca->tx_ibs_state = HCI_IBS_TX_ASLEEP;
407 qca->ibs_sent_slps++;
408 queue_work(qca->workqueue, &qca->ws_tx_vote_off);
409 break;
410
411 case HCI_IBS_TX_ASLEEP:
412 case HCI_IBS_TX_WAKING:
413 /* Fall through */
414
415 default:
Colin Ian Kinge059a462017-02-17 19:58:10 +0000416 BT_ERR("Spurious timeout tx state %d", qca->tx_ibs_state);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700417 break;
418 }
419
420 spin_unlock_irqrestore(&qca->hci_ibs_lock, flags);
421}
422
Kees Cook04356052017-10-04 17:54:29 -0700423static void hci_ibs_wake_retrans_timeout(struct timer_list *t)
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700424{
Kees Cook04356052017-10-04 17:54:29 -0700425 struct qca_data *qca = from_timer(qca, t, wake_retrans_timer);
426 struct hci_uart *hu = qca->hu;
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700427 unsigned long flags, retrans_delay;
Prasanna Karthika9137182015-09-28 08:03:24 +0000428 bool retransmit = false;
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700429
430 BT_DBG("hu %p wake retransmit timeout in %d state",
431 hu, qca->tx_ibs_state);
432
433 spin_lock_irqsave_nested(&qca->hci_ibs_lock,
434 flags, SINGLE_DEPTH_NESTING);
435
436 switch (qca->tx_ibs_state) {
437 case HCI_IBS_TX_WAKING:
438 /* No WAKE_ACK, retransmit WAKE */
Prasanna Karthika9137182015-09-28 08:03:24 +0000439 retransmit = true;
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700440 if (send_hci_ibs_cmd(HCI_IBS_WAKE_IND, hu) < 0) {
441 BT_ERR("Failed to acknowledge device wake up");
442 break;
443 }
444 qca->ibs_sent_wakes++;
445 retrans_delay = msecs_to_jiffies(qca->wake_retrans);
446 mod_timer(&qca->wake_retrans_timer, jiffies + retrans_delay);
447 break;
448
449 case HCI_IBS_TX_ASLEEP:
450 case HCI_IBS_TX_AWAKE:
451 /* Fall through */
452
453 default:
Colin Ian Kinge059a462017-02-17 19:58:10 +0000454 BT_ERR("Spurious timeout tx state %d", qca->tx_ibs_state);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700455 break;
456 }
457
458 spin_unlock_irqrestore(&qca->hci_ibs_lock, flags);
459
460 if (retransmit)
461 hci_uart_tx_wakeup(hu);
462}
463
464/* Initialize protocol */
465static int qca_open(struct hci_uart *hu)
466{
Thierry Escande05ba5332018-03-29 21:15:24 +0200467 struct qca_serdev *qcadev;
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700468 struct qca_data *qca;
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +0530469 int ret;
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700470
471 BT_DBG("hu %p qca_open", hu);
472
Jia-Ju Bai25a13e382018-07-23 11:56:51 +0800473 qca = kzalloc(sizeof(struct qca_data), GFP_KERNEL);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700474 if (!qca)
475 return -ENOMEM;
476
477 skb_queue_head_init(&qca->txq);
478 skb_queue_head_init(&qca->tx_wait_q);
479 spin_lock_init(&qca->hci_ibs_lock);
Bhaktipriya Shridharfac9a602016-08-30 22:42:53 +0530480 qca->workqueue = alloc_ordered_workqueue("qca_wq", 0);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700481 if (!qca->workqueue) {
482 BT_ERR("QCA Workqueue not initialized properly");
483 kfree(qca);
484 return -ENOMEM;
485 }
486
487 INIT_WORK(&qca->ws_awake_rx, qca_wq_awake_rx);
488 INIT_WORK(&qca->ws_awake_device, qca_wq_awake_device);
489 INIT_WORK(&qca->ws_rx_vote_off, qca_wq_serial_rx_clock_vote_off);
490 INIT_WORK(&qca->ws_tx_vote_off, qca_wq_serial_tx_clock_vote_off);
491
492 qca->hu = hu;
493
494 /* Assume we start with both sides asleep -- extra wakes OK */
495 qca->tx_ibs_state = HCI_IBS_TX_ASLEEP;
496 qca->rx_ibs_state = HCI_IBS_RX_ASLEEP;
497
498 /* clocks actually on, but we start votes off */
499 qca->tx_vote = false;
500 qca->rx_vote = false;
501 qca->flags = 0;
502
503 qca->ibs_sent_wacks = 0;
504 qca->ibs_sent_slps = 0;
505 qca->ibs_sent_wakes = 0;
506 qca->ibs_recv_wacks = 0;
507 qca->ibs_recv_slps = 0;
508 qca->ibs_recv_wakes = 0;
509 qca->vote_last_jif = jiffies;
510 qca->vote_on_ms = 0;
511 qca->vote_off_ms = 0;
512 qca->votes_on = 0;
513 qca->votes_off = 0;
514 qca->tx_votes_on = 0;
515 qca->tx_votes_off = 0;
516 qca->rx_votes_on = 0;
517 qca->rx_votes_off = 0;
518
519 hu->priv = qca;
520
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +0530521 if (hu->serdev) {
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +0530522
523 qcadev = serdev_device_get_drvdata(hu->serdev);
524 if (qcadev->btsoc_type != QCA_WCN3990) {
525 gpiod_set_value_cansleep(qcadev->bt_en, 1);
Balakrishna Godavarthi7f09d5a2019-04-01 15:19:08 +0530526 /* Controller needs time to bootup. */
527 msleep(150);
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +0530528 } else {
529 hu->init_speed = qcadev->init_speed;
530 hu->oper_speed = qcadev->oper_speed;
531 ret = qca_power_setup(hu, true);
532 if (ret) {
533 destroy_workqueue(qca->workqueue);
534 kfree_skb(qca->rx_skb);
535 hu->priv = NULL;
536 kfree(qca);
537 return ret;
538 }
539 }
540 }
541
Kees Cook04356052017-10-04 17:54:29 -0700542 timer_setup(&qca->wake_retrans_timer, hci_ibs_wake_retrans_timeout, 0);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700543 qca->wake_retrans = IBS_WAKE_RETRANS_TIMEOUT_MS;
544
Kees Cook04356052017-10-04 17:54:29 -0700545 timer_setup(&qca->tx_idle_timer, hci_ibs_tx_idle_timeout, 0);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700546 qca->tx_idle_delay = IBS_TX_IDLE_TIMEOUT_MS;
547
548 BT_DBG("HCI_UART_QCA open, tx_idle_delay=%u, wake_retrans=%u",
549 qca->tx_idle_delay, qca->wake_retrans);
550
551 return 0;
552}
553
554static void qca_debugfs_init(struct hci_dev *hdev)
555{
556 struct hci_uart *hu = hci_get_drvdata(hdev);
557 struct qca_data *qca = hu->priv;
558 struct dentry *ibs_dir;
559 umode_t mode;
560
561 if (!hdev->debugfs)
562 return;
563
564 ibs_dir = debugfs_create_dir("ibs", hdev->debugfs);
565
566 /* read only */
567 mode = S_IRUGO;
568 debugfs_create_u8("tx_ibs_state", mode, ibs_dir, &qca->tx_ibs_state);
569 debugfs_create_u8("rx_ibs_state", mode, ibs_dir, &qca->rx_ibs_state);
570 debugfs_create_u64("ibs_sent_sleeps", mode, ibs_dir,
571 &qca->ibs_sent_slps);
572 debugfs_create_u64("ibs_sent_wakes", mode, ibs_dir,
573 &qca->ibs_sent_wakes);
574 debugfs_create_u64("ibs_sent_wake_acks", mode, ibs_dir,
575 &qca->ibs_sent_wacks);
576 debugfs_create_u64("ibs_recv_sleeps", mode, ibs_dir,
577 &qca->ibs_recv_slps);
578 debugfs_create_u64("ibs_recv_wakes", mode, ibs_dir,
579 &qca->ibs_recv_wakes);
580 debugfs_create_u64("ibs_recv_wake_acks", mode, ibs_dir,
581 &qca->ibs_recv_wacks);
Ben YoungTae Kim10be6c02015-08-13 22:09:42 -0700582 debugfs_create_bool("tx_vote", mode, ibs_dir, &qca->tx_vote);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700583 debugfs_create_u64("tx_votes_on", mode, ibs_dir, &qca->tx_votes_on);
584 debugfs_create_u64("tx_votes_off", mode, ibs_dir, &qca->tx_votes_off);
Ben YoungTae Kim10be6c02015-08-13 22:09:42 -0700585 debugfs_create_bool("rx_vote", mode, ibs_dir, &qca->rx_vote);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700586 debugfs_create_u64("rx_votes_on", mode, ibs_dir, &qca->rx_votes_on);
587 debugfs_create_u64("rx_votes_off", mode, ibs_dir, &qca->rx_votes_off);
588 debugfs_create_u64("votes_on", mode, ibs_dir, &qca->votes_on);
589 debugfs_create_u64("votes_off", mode, ibs_dir, &qca->votes_off);
590 debugfs_create_u32("vote_on_ms", mode, ibs_dir, &qca->vote_on_ms);
591 debugfs_create_u32("vote_off_ms", mode, ibs_dir, &qca->vote_off_ms);
592
593 /* read/write */
594 mode = S_IRUGO | S_IWUSR;
595 debugfs_create_u32("wake_retrans", mode, ibs_dir, &qca->wake_retrans);
596 debugfs_create_u32("tx_idle_delay", mode, ibs_dir,
597 &qca->tx_idle_delay);
598}
599
600/* Flush protocol data */
601static int qca_flush(struct hci_uart *hu)
602{
603 struct qca_data *qca = hu->priv;
604
605 BT_DBG("hu %p qca flush", hu);
606
607 skb_queue_purge(&qca->tx_wait_q);
608 skb_queue_purge(&qca->txq);
609
610 return 0;
611}
612
613/* Close protocol */
614static int qca_close(struct hci_uart *hu)
615{
Thierry Escande05ba5332018-03-29 21:15:24 +0200616 struct qca_serdev *qcadev;
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700617 struct qca_data *qca = hu->priv;
618
619 BT_DBG("hu %p qca close", hu);
620
621 serial_clock_vote(HCI_IBS_VOTE_STATS_UPDATE, hu);
622
623 skb_queue_purge(&qca->tx_wait_q);
624 skb_queue_purge(&qca->txq);
625 del_timer(&qca->tx_idle_timer);
626 del_timer(&qca->wake_retrans_timer);
627 destroy_workqueue(qca->workqueue);
628 qca->hu = NULL;
629
Thierry Escande05ba5332018-03-29 21:15:24 +0200630 if (hu->serdev) {
Thierry Escande05ba5332018-03-29 21:15:24 +0200631 qcadev = serdev_device_get_drvdata(hu->serdev);
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +0530632 if (qcadev->btsoc_type == QCA_WCN3990)
Balakrishna Godavarthic2d78272018-08-22 17:50:05 +0530633 qca_power_shutdown(hu);
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +0530634 else
635 gpiod_set_value_cansleep(qcadev->bt_en, 0);
636
Thierry Escande05ba5332018-03-29 21:15:24 +0200637 }
638
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700639 kfree_skb(qca->rx_skb);
640
641 hu->priv = NULL;
642
643 kfree(qca);
644
645 return 0;
646}
647
648/* Called upon a wake-up-indication from the device.
649 */
650static void device_want_to_wakeup(struct hci_uart *hu)
651{
652 unsigned long flags;
653 struct qca_data *qca = hu->priv;
654
655 BT_DBG("hu %p want to wake up", hu);
656
657 spin_lock_irqsave(&qca->hci_ibs_lock, flags);
658
659 qca->ibs_recv_wakes++;
660
661 switch (qca->rx_ibs_state) {
662 case HCI_IBS_RX_ASLEEP:
663 /* Make sure clock is on - we may have turned clock off since
664 * receiving the wake up indicator awake rx clock.
665 */
666 queue_work(qca->workqueue, &qca->ws_awake_rx);
667 spin_unlock_irqrestore(&qca->hci_ibs_lock, flags);
668 return;
669
670 case HCI_IBS_RX_AWAKE:
671 /* Always acknowledge device wake up,
672 * sending IBS message doesn't count as TX ON.
673 */
674 if (send_hci_ibs_cmd(HCI_IBS_WAKE_ACK, hu) < 0) {
675 BT_ERR("Failed to acknowledge device wake up");
676 break;
677 }
678 qca->ibs_sent_wacks++;
679 break;
680
681 default:
682 /* Any other state is illegal */
683 BT_ERR("Received HCI_IBS_WAKE_IND in rx state %d",
684 qca->rx_ibs_state);
685 break;
686 }
687
688 spin_unlock_irqrestore(&qca->hci_ibs_lock, flags);
689
690 /* Actually send the packets */
691 hci_uart_tx_wakeup(hu);
692}
693
694/* Called upon a sleep-indication from the device.
695 */
696static void device_want_to_sleep(struct hci_uart *hu)
697{
698 unsigned long flags;
699 struct qca_data *qca = hu->priv;
700
701 BT_DBG("hu %p want to sleep", hu);
702
703 spin_lock_irqsave(&qca->hci_ibs_lock, flags);
704
705 qca->ibs_recv_slps++;
706
707 switch (qca->rx_ibs_state) {
708 case HCI_IBS_RX_AWAKE:
709 /* Update state */
710 qca->rx_ibs_state = HCI_IBS_RX_ASLEEP;
711 /* Vote off rx clock under workqueue */
712 queue_work(qca->workqueue, &qca->ws_rx_vote_off);
713 break;
714
715 case HCI_IBS_RX_ASLEEP:
716 /* Fall through */
717
718 default:
719 /* Any other state is illegal */
720 BT_ERR("Received HCI_IBS_SLEEP_IND in rx state %d",
721 qca->rx_ibs_state);
722 break;
723 }
724
725 spin_unlock_irqrestore(&qca->hci_ibs_lock, flags);
726}
727
728/* Called upon wake-up-acknowledgement from the device
729 */
730static void device_woke_up(struct hci_uart *hu)
731{
732 unsigned long flags, idle_delay;
733 struct qca_data *qca = hu->priv;
734 struct sk_buff *skb = NULL;
735
736 BT_DBG("hu %p woke up", hu);
737
738 spin_lock_irqsave(&qca->hci_ibs_lock, flags);
739
740 qca->ibs_recv_wacks++;
741
742 switch (qca->tx_ibs_state) {
743 case HCI_IBS_TX_AWAKE:
744 /* Expect one if we send 2 WAKEs */
745 BT_DBG("Received HCI_IBS_WAKE_ACK in tx state %d",
746 qca->tx_ibs_state);
747 break;
748
749 case HCI_IBS_TX_WAKING:
750 /* Send pending packets */
751 while ((skb = skb_dequeue(&qca->tx_wait_q)))
752 skb_queue_tail(&qca->txq, skb);
753
754 /* Switch timers and change state to HCI_IBS_TX_AWAKE */
755 del_timer(&qca->wake_retrans_timer);
756 idle_delay = msecs_to_jiffies(qca->tx_idle_delay);
757 mod_timer(&qca->tx_idle_timer, jiffies + idle_delay);
758 qca->tx_ibs_state = HCI_IBS_TX_AWAKE;
759 break;
760
761 case HCI_IBS_TX_ASLEEP:
762 /* Fall through */
763
764 default:
765 BT_ERR("Received HCI_IBS_WAKE_ACK in tx state %d",
766 qca->tx_ibs_state);
767 break;
768 }
769
770 spin_unlock_irqrestore(&qca->hci_ibs_lock, flags);
771
772 /* Actually send the packets */
773 hci_uart_tx_wakeup(hu);
774}
775
776/* Enqueue frame for transmittion (padding, crc, etc) may be called from
777 * two simultaneous tasklets.
778 */
779static int qca_enqueue(struct hci_uart *hu, struct sk_buff *skb)
780{
781 unsigned long flags = 0, idle_delay;
782 struct qca_data *qca = hu->priv;
783
784 BT_DBG("hu %p qca enq skb %p tx_ibs_state %d", hu, skb,
785 qca->tx_ibs_state);
786
787 /* Prepend skb with frame type */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100788 memcpy(skb_push(skb, 1), &hci_skb_pkt_type(skb), 1);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700789
Balakrishna Godavarthi035a9602019-02-04 20:36:43 +0530790 spin_lock_irqsave(&qca->hci_ibs_lock, flags);
791
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700792 /* Don't go to sleep in middle of patch download or
793 * Out-Of-Band(GPIOs control) sleep is selected.
794 */
795 if (!test_bit(STATE_IN_BAND_SLEEP_ENABLED, &qca->flags)) {
796 skb_queue_tail(&qca->txq, skb);
Balakrishna Godavarthi035a9602019-02-04 20:36:43 +0530797 spin_unlock_irqrestore(&qca->hci_ibs_lock, flags);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700798 return 0;
799 }
800
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700801 /* Act according to current state */
802 switch (qca->tx_ibs_state) {
803 case HCI_IBS_TX_AWAKE:
804 BT_DBG("Device awake, sending normally");
805 skb_queue_tail(&qca->txq, skb);
806 idle_delay = msecs_to_jiffies(qca->tx_idle_delay);
807 mod_timer(&qca->tx_idle_timer, jiffies + idle_delay);
808 break;
809
810 case HCI_IBS_TX_ASLEEP:
811 BT_DBG("Device asleep, waking up and queueing packet");
812 /* Save packet for later */
813 skb_queue_tail(&qca->tx_wait_q, skb);
814
815 qca->tx_ibs_state = HCI_IBS_TX_WAKING;
816 /* Schedule a work queue to wake up device */
817 queue_work(qca->workqueue, &qca->ws_awake_device);
818 break;
819
820 case HCI_IBS_TX_WAKING:
821 BT_DBG("Device waking up, queueing packet");
822 /* Transient state; just keep packet for later */
823 skb_queue_tail(&qca->tx_wait_q, skb);
824 break;
825
826 default:
827 BT_ERR("Illegal tx state: %d (losing packet)",
828 qca->tx_ibs_state);
829 kfree_skb(skb);
830 break;
831 }
832
833 spin_unlock_irqrestore(&qca->hci_ibs_lock, flags);
834
835 return 0;
836}
837
838static int qca_ibs_sleep_ind(struct hci_dev *hdev, struct sk_buff *skb)
839{
840 struct hci_uart *hu = hci_get_drvdata(hdev);
841
842 BT_DBG("hu %p recv hci ibs cmd 0x%x", hu, HCI_IBS_SLEEP_IND);
843
844 device_want_to_sleep(hu);
845
846 kfree_skb(skb);
847 return 0;
848}
849
850static int qca_ibs_wake_ind(struct hci_dev *hdev, struct sk_buff *skb)
851{
852 struct hci_uart *hu = hci_get_drvdata(hdev);
853
854 BT_DBG("hu %p recv hci ibs cmd 0x%x", hu, HCI_IBS_WAKE_IND);
855
856 device_want_to_wakeup(hu);
857
858 kfree_skb(skb);
859 return 0;
860}
861
862static int qca_ibs_wake_ack(struct hci_dev *hdev, struct sk_buff *skb)
863{
864 struct hci_uart *hu = hci_get_drvdata(hdev);
865
866 BT_DBG("hu %p recv hci ibs cmd 0x%x", hu, HCI_IBS_WAKE_ACK);
867
868 device_woke_up(hu);
869
870 kfree_skb(skb);
871 return 0;
872}
873
Balakrishna Godavarthic614ca32018-10-16 19:51:35 +0530874static int qca_recv_acl_data(struct hci_dev *hdev, struct sk_buff *skb)
875{
876 /* We receive debug logs from chip as an ACL packets.
877 * Instead of sending the data to ACL to decode the
878 * received data, we are pushing them to the above layers
879 * as a diagnostic packet.
880 */
881 if (get_unaligned_le16(skb->data) == QCA_DEBUG_HANDLE)
882 return hci_recv_diag(hdev, skb);
883
884 return hci_recv_frame(hdev, skb);
885}
886
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700887#define QCA_IBS_SLEEP_IND_EVENT \
888 .type = HCI_IBS_SLEEP_IND, \
889 .hlen = 0, \
890 .loff = 0, \
891 .lsize = 0, \
892 .maxlen = HCI_MAX_IBS_SIZE
893
894#define QCA_IBS_WAKE_IND_EVENT \
895 .type = HCI_IBS_WAKE_IND, \
896 .hlen = 0, \
897 .loff = 0, \
898 .lsize = 0, \
899 .maxlen = HCI_MAX_IBS_SIZE
900
901#define QCA_IBS_WAKE_ACK_EVENT \
902 .type = HCI_IBS_WAKE_ACK, \
903 .hlen = 0, \
904 .loff = 0, \
905 .lsize = 0, \
906 .maxlen = HCI_MAX_IBS_SIZE
907
908static const struct h4_recv_pkt qca_recv_pkts[] = {
Balakrishna Godavarthic614ca32018-10-16 19:51:35 +0530909 { H4_RECV_ACL, .recv = qca_recv_acl_data },
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700910 { H4_RECV_SCO, .recv = hci_recv_frame },
911 { H4_RECV_EVENT, .recv = hci_recv_frame },
912 { QCA_IBS_WAKE_IND_EVENT, .recv = qca_ibs_wake_ind },
913 { QCA_IBS_WAKE_ACK_EVENT, .recv = qca_ibs_wake_ack },
914 { QCA_IBS_SLEEP_IND_EVENT, .recv = qca_ibs_sleep_ind },
915};
916
917static int qca_recv(struct hci_uart *hu, const void *data, int count)
918{
919 struct qca_data *qca = hu->priv;
920
921 if (!test_bit(HCI_UART_REGISTERED, &hu->flags))
922 return -EUNATCH;
923
924 qca->rx_skb = h4_recv_buf(hu->hdev, qca->rx_skb, data, count,
925 qca_recv_pkts, ARRAY_SIZE(qca_recv_pkts));
926 if (IS_ERR(qca->rx_skb)) {
927 int err = PTR_ERR(qca->rx_skb);
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100928 bt_dev_err(hu->hdev, "Frame reassembly failed (%d)", err);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700929 qca->rx_skb = NULL;
930 return err;
931 }
932
933 return count;
934}
935
936static struct sk_buff *qca_dequeue(struct hci_uart *hu)
937{
938 struct qca_data *qca = hu->priv;
939
940 return skb_dequeue(&qca->txq);
941}
942
943static uint8_t qca_get_baudrate_value(int speed)
944{
Prasanna Karthikce26d812015-09-15 12:19:45 +0000945 switch (speed) {
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700946 case 9600:
947 return QCA_BAUDRATE_9600;
948 case 19200:
949 return QCA_BAUDRATE_19200;
950 case 38400:
951 return QCA_BAUDRATE_38400;
952 case 57600:
953 return QCA_BAUDRATE_57600;
954 case 115200:
955 return QCA_BAUDRATE_115200;
956 case 230400:
957 return QCA_BAUDRATE_230400;
958 case 460800:
959 return QCA_BAUDRATE_460800;
960 case 500000:
961 return QCA_BAUDRATE_500000;
962 case 921600:
963 return QCA_BAUDRATE_921600;
964 case 1000000:
965 return QCA_BAUDRATE_1000000;
966 case 2000000:
967 return QCA_BAUDRATE_2000000;
968 case 3000000:
969 return QCA_BAUDRATE_3000000;
Balakrishna Godavarthibe93a492018-08-03 17:46:30 +0530970 case 3200000:
971 return QCA_BAUDRATE_3200000;
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700972 case 3500000:
973 return QCA_BAUDRATE_3500000;
974 default:
975 return QCA_BAUDRATE_115200;
976 }
977}
978
979static int qca_set_baudrate(struct hci_dev *hdev, uint8_t baudrate)
980{
981 struct hci_uart *hu = hci_get_drvdata(hdev);
982 struct qca_data *qca = hu->priv;
983 struct sk_buff *skb;
984 u8 cmd[] = { 0x01, 0x48, 0xFC, 0x01, 0x00 };
985
Balakrishna Godavarthibe93a492018-08-03 17:46:30 +0530986 if (baudrate > QCA_BAUDRATE_3200000)
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700987 return -EINVAL;
988
989 cmd[4] = baudrate;
990
Jia-Ju Bai25a13e382018-07-23 11:56:51 +0800991 skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700992 if (!skb) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +0100993 bt_dev_err(hdev, "Failed to allocate baudrate packet");
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700994 return -ENOMEM;
995 }
996
997 /* Assign commands to change baudrate and packet type. */
Johannes Berg59ae1d12017-06-16 14:29:20 +0200998 skb_put_data(skb, cmd, sizeof(cmd));
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100999 hci_skb_pkt_type(skb) = HCI_COMMAND_PKT;
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001000
1001 skb_queue_tail(&qca->txq, skb);
1002 hci_uart_tx_wakeup(hu);
1003
Matthias Kaehlcke94d66712019-02-27 15:52:23 -08001004 /* Wait for the baudrate change request to be sent */
1005
1006 while (!skb_queue_empty(&qca->txq))
1007 usleep_range(100, 200);
1008
1009 serdev_device_wait_until_sent(hu->serdev,
1010 msecs_to_jiffies(CMD_TRANS_TIMEOUT_MS));
1011
1012 /* Give the controller time to process the request */
Matthias Kaehlcke4fdd5a42019-03-11 11:38:31 -07001013 if (qca_soc_type(hu) == QCA_WCN3990)
Matthias Kaehlcke94d66712019-02-27 15:52:23 -08001014 msleep(10);
1015 else
1016 msleep(300);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001017
1018 return 0;
1019}
1020
Thierry Escande05ba5332018-03-29 21:15:24 +02001021static inline void host_set_baudrate(struct hci_uart *hu, unsigned int speed)
1022{
1023 if (hu->serdev)
1024 serdev_device_set_baudrate(hu->serdev, speed);
1025 else
1026 hci_uart_set_baudrate(hu, speed);
1027}
1028
Matthias Kaehlcke9836b802019-02-26 11:46:45 -08001029static int qca_send_power_pulse(struct hci_uart *hu, bool on)
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301030{
Balakrishna Godavarthif9558272019-02-04 20:36:41 +05301031 int ret;
Matthias Kaehlcke94d66712019-02-27 15:52:23 -08001032 int timeout = msecs_to_jiffies(CMD_TRANS_TIMEOUT_MS);
Matthias Kaehlcke9836b802019-02-26 11:46:45 -08001033 u8 cmd = on ? QCA_WCN3990_POWERON_PULSE : QCA_WCN3990_POWEROFF_PULSE;
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301034
1035 /* These power pulses are single byte command which are sent
1036 * at required baudrate to wcn3990. On wcn3990, we have an external
1037 * circuit at Tx pin which decodes the pulse sent at specific baudrate.
1038 * For example, wcn3990 supports RF COEX antenna for both Wi-Fi/BT
1039 * and also we use the same power inputs to turn on and off for
1040 * Wi-Fi/BT. Powering up the power sources will not enable BT, until
1041 * we send a power on pulse at 115200 bps. This algorithm will help to
1042 * save power. Disabling hardware flow control is mandatory while
1043 * sending power pulses to SoC.
1044 */
Balakrishna Godavarthif9558272019-02-04 20:36:41 +05301045 bt_dev_dbg(hu->hdev, "sending power pulse %02x to controller", cmd);
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301046
Balakrishna Godavarthif9558272019-02-04 20:36:41 +05301047 serdev_device_write_flush(hu->serdev);
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301048 hci_uart_set_flow_control(hu, true);
Balakrishna Godavarthif9558272019-02-04 20:36:41 +05301049 ret = serdev_device_write_buf(hu->serdev, &cmd, sizeof(cmd));
1050 if (ret < 0) {
1051 bt_dev_err(hu->hdev, "failed to send power pulse %02x", cmd);
1052 return ret;
1053 }
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301054
Balakrishna Godavarthif9558272019-02-04 20:36:41 +05301055 serdev_device_wait_until_sent(hu->serdev, timeout);
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301056 hci_uart_set_flow_control(hu, false);
1057
Matthias Kaehlcke0ebcddd2019-02-26 11:46:47 -08001058 /* Give to controller time to boot/shutdown */
Matthias Kaehlckead571d72019-02-26 11:46:46 -08001059 if (on)
1060 msleep(100);
Matthias Kaehlcke0ebcddd2019-02-26 11:46:47 -08001061 else
1062 msleep(10);
Matthias Kaehlckead571d72019-02-26 11:46:46 -08001063
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301064 return 0;
1065}
1066
Balakrishna Godavarthi83d9c5e2018-08-03 17:46:29 +05301067static unsigned int qca_get_speed(struct hci_uart *hu,
1068 enum qca_speed_type speed_type)
1069{
1070 unsigned int speed = 0;
1071
1072 if (speed_type == QCA_INIT_SPEED) {
1073 if (hu->init_speed)
1074 speed = hu->init_speed;
1075 else if (hu->proto->init_speed)
1076 speed = hu->proto->init_speed;
1077 } else {
1078 if (hu->oper_speed)
1079 speed = hu->oper_speed;
1080 else if (hu->proto->oper_speed)
1081 speed = hu->proto->oper_speed;
1082 }
1083
1084 return speed;
1085}
1086
1087static int qca_check_speeds(struct hci_uart *hu)
1088{
Matthias Kaehlcke4fdd5a42019-03-11 11:38:31 -07001089 if (qca_soc_type(hu) == QCA_WCN3990) {
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301090 if (!qca_get_speed(hu, QCA_INIT_SPEED) &&
1091 !qca_get_speed(hu, QCA_OPER_SPEED))
1092 return -EINVAL;
1093 } else {
1094 if (!qca_get_speed(hu, QCA_INIT_SPEED) ||
1095 !qca_get_speed(hu, QCA_OPER_SPEED))
1096 return -EINVAL;
1097 }
Balakrishna Godavarthi83d9c5e2018-08-03 17:46:29 +05301098
1099 return 0;
1100}
1101
1102static int qca_set_speed(struct hci_uart *hu, enum qca_speed_type speed_type)
1103{
1104 unsigned int speed, qca_baudrate;
Balakrishna Godavarthi78e8fa22019-02-04 20:36:42 +05301105 int ret = 0;
Balakrishna Godavarthi83d9c5e2018-08-03 17:46:29 +05301106
1107 if (speed_type == QCA_INIT_SPEED) {
1108 speed = qca_get_speed(hu, QCA_INIT_SPEED);
1109 if (speed)
1110 host_set_baudrate(hu, speed);
1111 } else {
Matthias Kaehlcke4fdd5a42019-03-11 11:38:31 -07001112 enum qca_btsoc_type soc_type = qca_soc_type(hu);
1113
Balakrishna Godavarthi83d9c5e2018-08-03 17:46:29 +05301114 speed = qca_get_speed(hu, QCA_OPER_SPEED);
1115 if (!speed)
1116 return 0;
1117
Balakrishna Godavarthi78e8fa22019-02-04 20:36:42 +05301118 /* Disable flow control for wcn3990 to deassert RTS while
1119 * changing the baudrate of chip and host.
1120 */
Matthias Kaehlcke4fdd5a42019-03-11 11:38:31 -07001121 if (soc_type == QCA_WCN3990)
Balakrishna Godavarthi78e8fa22019-02-04 20:36:42 +05301122 hci_uart_set_flow_control(hu, true);
1123
Balakrishna Godavarthi83d9c5e2018-08-03 17:46:29 +05301124 qca_baudrate = qca_get_baudrate_value(speed);
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301125 bt_dev_dbg(hu->hdev, "Set UART speed to %d", speed);
Balakrishna Godavarthi83d9c5e2018-08-03 17:46:29 +05301126 ret = qca_set_baudrate(hu->hdev, qca_baudrate);
1127 if (ret)
Balakrishna Godavarthi78e8fa22019-02-04 20:36:42 +05301128 goto error;
Balakrishna Godavarthi83d9c5e2018-08-03 17:46:29 +05301129
1130 host_set_baudrate(hu, speed);
Balakrishna Godavarthi78e8fa22019-02-04 20:36:42 +05301131
1132error:
Matthias Kaehlcke4fdd5a42019-03-11 11:38:31 -07001133 if (soc_type == QCA_WCN3990)
Balakrishna Godavarthi78e8fa22019-02-04 20:36:42 +05301134 hci_uart_set_flow_control(hu, false);
Balakrishna Godavarthi83d9c5e2018-08-03 17:46:29 +05301135 }
1136
Balakrishna Godavarthi78e8fa22019-02-04 20:36:42 +05301137 return ret;
Balakrishna Godavarthi83d9c5e2018-08-03 17:46:29 +05301138}
1139
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301140static int qca_wcn3990_init(struct hci_uart *hu)
1141{
Balakrishna Godavarthi3e4be652018-09-24 20:14:45 +05301142 struct qca_serdev *qcadev;
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301143 int ret;
1144
Balakrishna Godavarthi3e4be652018-09-24 20:14:45 +05301145 /* Check for vregs status, may be hci down has turned
1146 * off the voltage regulator.
1147 */
1148 qcadev = serdev_device_get_drvdata(hu->serdev);
1149 if (!qcadev->bt_power->vregs_on) {
1150 serdev_device_close(hu->serdev);
1151 ret = qca_power_setup(hu, true);
1152 if (ret)
1153 return ret;
1154
1155 ret = serdev_device_open(hu->serdev);
1156 if (ret) {
1157 bt_dev_err(hu->hdev, "failed to open port");
1158 return ret;
1159 }
1160 }
1161
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301162 /* Forcefully enable wcn3990 to enter in to boot mode. */
1163 host_set_baudrate(hu, 2400);
Matthias Kaehlcke9836b802019-02-26 11:46:45 -08001164 ret = qca_send_power_pulse(hu, false);
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301165 if (ret)
1166 return ret;
1167
1168 qca_set_speed(hu, QCA_INIT_SPEED);
Matthias Kaehlcke9836b802019-02-26 11:46:45 -08001169 ret = qca_send_power_pulse(hu, true);
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301170 if (ret)
1171 return ret;
1172
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301173 /* Now the device is in ready state to communicate with host.
1174 * To sync host with device we need to reopen port.
1175 * Without this, we will have RTS and CTS synchronization
1176 * issues.
1177 */
1178 serdev_device_close(hu->serdev);
1179 ret = serdev_device_open(hu->serdev);
1180 if (ret) {
1181 bt_dev_err(hu->hdev, "failed to open port");
1182 return ret;
1183 }
1184
1185 hci_uart_set_flow_control(hu, false);
1186
1187 return 0;
1188}
1189
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001190static int qca_setup(struct hci_uart *hu)
1191{
1192 struct hci_dev *hdev = hu->hdev;
1193 struct qca_data *qca = hu->priv;
1194 unsigned int speed, qca_baudrate = QCA_BAUDRATE_115200;
Matthias Kaehlcke4fdd5a42019-03-11 11:38:31 -07001195 enum qca_btsoc_type soc_type = qca_soc_type(hu);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001196 int ret;
Balakrishna Godavarthiaadebac2018-08-03 17:46:28 +05301197 int soc_ver = 0;
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001198
Balakrishna Godavarthi83d9c5e2018-08-03 17:46:29 +05301199 ret = qca_check_speeds(hu);
1200 if (ret)
1201 return ret;
1202
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001203 /* Patch downloading has to be done without IBS mode */
1204 clear_bit(STATE_IN_BAND_SLEEP_ENABLED, &qca->flags);
1205
Matthias Kaehlcke4fdd5a42019-03-11 11:38:31 -07001206 if (soc_type == QCA_WCN3990) {
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301207 bt_dev_info(hdev, "setting up wcn3990");
Balakrishna Godavarthi3e4be652018-09-24 20:14:45 +05301208
1209 /* Enable NON_PERSISTENT_SETUP QUIRK to ensure to execute
1210 * setup for every hci up.
1211 */
1212 set_bit(HCI_QUIRK_NON_PERSISTENT_SETUP, &hdev->quirks);
Matthias Kaehlcke5971752d2019-02-19 12:05:59 -08001213 set_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks);
Balakrishna Godavarthi3e4be652018-09-24 20:14:45 +05301214 hu->hdev->shutdown = qca_power_off;
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301215 ret = qca_wcn3990_init(hu);
1216 if (ret)
1217 return ret;
1218
1219 ret = qca_read_soc_version(hdev, &soc_ver);
1220 if (ret)
1221 return ret;
1222 } else {
1223 bt_dev_info(hdev, "ROME setup");
1224 qca_set_speed(hu, QCA_INIT_SPEED);
1225 }
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001226
1227 /* Setup user speed if needed */
Balakrishna Godavarthi83d9c5e2018-08-03 17:46:29 +05301228 speed = qca_get_speed(hu, QCA_OPER_SPEED);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001229 if (speed) {
Balakrishna Godavarthi83d9c5e2018-08-03 17:46:29 +05301230 ret = qca_set_speed(hu, QCA_OPER_SPEED);
1231 if (ret)
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001232 return ret;
Balakrishna Godavarthi83d9c5e2018-08-03 17:46:29 +05301233
1234 qca_baudrate = qca_get_baudrate_value(speed);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001235 }
1236
Matthias Kaehlcke4fdd5a42019-03-11 11:38:31 -07001237 if (soc_type != QCA_WCN3990) {
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301238 /* Get QCA version information */
1239 ret = qca_read_soc_version(hdev, &soc_ver);
1240 if (ret)
1241 return ret;
1242 }
Balakrishna Godavarthiaadebac2018-08-03 17:46:28 +05301243
1244 bt_dev_info(hdev, "QCA controller version 0x%08x", soc_ver);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001245 /* Setup patch / NVM configurations */
Matthias Kaehlcke4fdd5a42019-03-11 11:38:31 -07001246 ret = qca_uart_setup(hdev, qca_baudrate, soc_type, soc_ver);
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001247 if (!ret) {
1248 set_bit(STATE_IN_BAND_SLEEP_ENABLED, &qca->flags);
1249 qca_debugfs_init(hdev);
Loic Poulainba8f3592017-11-06 12:16:56 +01001250 } else if (ret == -ENOENT) {
1251 /* No patch/nvm-config found, run with original fw/config */
1252 ret = 0;
Amit Pundir7dc5fe02018-04-16 12:10:24 +05301253 } else if (ret == -EAGAIN) {
1254 /*
1255 * Userspace firmware loader will return -EAGAIN in case no
1256 * patch/nvm-config is found, so run with original fw/config.
1257 */
1258 ret = 0;
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001259 }
1260
1261 /* Setup bdaddr */
Matthias Kaehlcke4fdd5a42019-03-11 11:38:31 -07001262 if (soc_type == QCA_WCN3990)
Balakrishna Godavarthi5c0a10012019-01-16 18:01:15 +05301263 hu->hdev->set_bdaddr = qca_set_bdaddr;
1264 else
1265 hu->hdev->set_bdaddr = qca_set_bdaddr_rome;
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001266
1267 return ret;
1268}
1269
1270static struct hci_uart_proto qca_proto = {
1271 .id = HCI_UART_QCA,
1272 .name = "QCA",
Marcel Holtmannaee61f72015-10-20 21:30:45 +02001273 .manufacturer = 29,
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001274 .init_speed = 115200,
1275 .oper_speed = 3000000,
1276 .open = qca_open,
1277 .close = qca_close,
1278 .flush = qca_flush,
1279 .setup = qca_setup,
1280 .recv = qca_recv,
1281 .enqueue = qca_enqueue,
1282 .dequeue = qca_dequeue,
1283};
1284
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301285static const struct qca_vreg_data qca_soc_data = {
1286 .soc_type = QCA_WCN3990,
1287 .vregs = (struct qca_vreg []) {
1288 { "vddio", 1800000, 1900000, 15000 },
1289 { "vddxo", 1800000, 1900000, 80000 },
1290 { "vddrf", 1300000, 1350000, 300000 },
1291 { "vddch0", 3300000, 3400000, 450000 },
1292 },
1293 .num_vregs = 4,
1294};
1295
Balakrishna Godavarthic2d78272018-08-22 17:50:05 +05301296static void qca_power_shutdown(struct hci_uart *hu)
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301297{
Balakrishna Godavarthi035a9602019-02-04 20:36:43 +05301298 struct qca_data *qca = hu->priv;
1299 unsigned long flags;
1300
1301 /* From this point we go into power off state. But serial port is
1302 * still open, stop queueing the IBS data and flush all the buffered
1303 * data in skb's.
1304 */
1305 spin_lock_irqsave(&qca->hci_ibs_lock, flags);
1306 clear_bit(STATE_IN_BAND_SLEEP_ENABLED, &qca->flags);
1307 qca_flush(hu);
1308 spin_unlock_irqrestore(&qca->hci_ibs_lock, flags);
1309
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301310 host_set_baudrate(hu, 2400);
Matthias Kaehlcke9836b802019-02-26 11:46:45 -08001311 qca_send_power_pulse(hu, false);
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301312 qca_power_setup(hu, false);
1313}
1314
Balakrishna Godavarthi3e4be652018-09-24 20:14:45 +05301315static int qca_power_off(struct hci_dev *hdev)
1316{
1317 struct hci_uart *hu = hci_get_drvdata(hdev);
1318
1319 qca_power_shutdown(hu);
1320 return 0;
1321}
1322
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301323static int qca_enable_regulator(struct qca_vreg vregs,
1324 struct regulator *regulator)
1325{
1326 int ret;
1327
1328 ret = regulator_set_voltage(regulator, vregs.min_uV,
1329 vregs.max_uV);
1330 if (ret)
1331 return ret;
1332
1333 if (vregs.load_uA)
1334 ret = regulator_set_load(regulator,
1335 vregs.load_uA);
1336
1337 if (ret)
1338 return ret;
1339
1340 return regulator_enable(regulator);
1341
1342}
1343
1344static void qca_disable_regulator(struct qca_vreg vregs,
1345 struct regulator *regulator)
1346{
1347 regulator_disable(regulator);
1348 regulator_set_voltage(regulator, 0, vregs.max_uV);
1349 if (vregs.load_uA)
1350 regulator_set_load(regulator, 0);
1351
1352}
1353
1354static int qca_power_setup(struct hci_uart *hu, bool on)
1355{
1356 struct qca_vreg *vregs;
1357 struct regulator_bulk_data *vreg_bulk;
1358 struct qca_serdev *qcadev;
1359 int i, num_vregs, ret = 0;
1360
1361 qcadev = serdev_device_get_drvdata(hu->serdev);
1362 if (!qcadev || !qcadev->bt_power || !qcadev->bt_power->vreg_data ||
1363 !qcadev->bt_power->vreg_bulk)
1364 return -EINVAL;
1365
1366 vregs = qcadev->bt_power->vreg_data->vregs;
1367 vreg_bulk = qcadev->bt_power->vreg_bulk;
1368 num_vregs = qcadev->bt_power->vreg_data->num_vregs;
1369 BT_DBG("on: %d", on);
1370 if (on && !qcadev->bt_power->vregs_on) {
1371 for (i = 0; i < num_vregs; i++) {
1372 ret = qca_enable_regulator(vregs[i],
1373 vreg_bulk[i].consumer);
1374 if (ret)
1375 break;
1376 }
1377
1378 if (ret) {
1379 BT_ERR("failed to enable regulator:%s", vregs[i].name);
1380 /* turn off regulators which are enabled */
1381 for (i = i - 1; i >= 0; i--)
1382 qca_disable_regulator(vregs[i],
1383 vreg_bulk[i].consumer);
1384 } else {
1385 qcadev->bt_power->vregs_on = true;
1386 }
1387 } else if (!on && qcadev->bt_power->vregs_on) {
1388 /* turn off regulator in reverse order */
1389 i = qcadev->bt_power->vreg_data->num_vregs - 1;
1390 for ( ; i >= 0; i--)
1391 qca_disable_regulator(vregs[i], vreg_bulk[i].consumer);
1392
1393 qcadev->bt_power->vregs_on = false;
1394 }
1395
1396 return ret;
1397}
1398
1399static int qca_init_regulators(struct qca_power *qca,
1400 const struct qca_vreg *vregs, size_t num_vregs)
1401{
1402 int i;
1403
Kees Cook329e0982018-10-05 16:21:46 -07001404 qca->vreg_bulk = devm_kcalloc(qca->dev, num_vregs,
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301405 sizeof(struct regulator_bulk_data),
1406 GFP_KERNEL);
1407 if (!qca->vreg_bulk)
1408 return -ENOMEM;
1409
1410 for (i = 0; i < num_vregs; i++)
1411 qca->vreg_bulk[i].supply = vregs[i].name;
1412
1413 return devm_regulator_bulk_get(qca->dev, num_vregs, qca->vreg_bulk);
1414}
1415
Thierry Escande05ba5332018-03-29 21:15:24 +02001416static int qca_serdev_probe(struct serdev_device *serdev)
1417{
1418 struct qca_serdev *qcadev;
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301419 const struct qca_vreg_data *data;
Thierry Escande05ba5332018-03-29 21:15:24 +02001420 int err;
1421
1422 qcadev = devm_kzalloc(&serdev->dev, sizeof(*qcadev), GFP_KERNEL);
1423 if (!qcadev)
1424 return -ENOMEM;
1425
1426 qcadev->serdev_hu.serdev = serdev;
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301427 data = of_device_get_match_data(&serdev->dev);
Thierry Escande05ba5332018-03-29 21:15:24 +02001428 serdev_device_set_drvdata(serdev, qcadev);
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301429 if (data && data->soc_type == QCA_WCN3990) {
1430 qcadev->btsoc_type = QCA_WCN3990;
1431 qcadev->bt_power = devm_kzalloc(&serdev->dev,
1432 sizeof(struct qca_power),
1433 GFP_KERNEL);
1434 if (!qcadev->bt_power)
1435 return -ENOMEM;
Thierry Escande05ba5332018-03-29 21:15:24 +02001436
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301437 qcadev->bt_power->dev = &serdev->dev;
1438 qcadev->bt_power->vreg_data = data;
1439 err = qca_init_regulators(qcadev->bt_power, data->vregs,
1440 data->num_vregs);
1441 if (err) {
1442 BT_ERR("Failed to init regulators:%d", err);
1443 goto out;
1444 }
1445
1446 qcadev->bt_power->vregs_on = false;
1447
1448 device_property_read_u32(&serdev->dev, "max-speed",
1449 &qcadev->oper_speed);
1450 if (!qcadev->oper_speed)
1451 BT_DBG("UART will pick default operating speed");
1452
1453 err = hci_uart_register_device(&qcadev->serdev_hu, &qca_proto);
1454 if (err) {
1455 BT_ERR("wcn3990 serdev registration failed");
1456 goto out;
1457 }
1458 } else {
1459 qcadev->btsoc_type = QCA_ROME;
1460 qcadev->bt_en = devm_gpiod_get(&serdev->dev, "enable",
1461 GPIOD_OUT_LOW);
1462 if (IS_ERR(qcadev->bt_en)) {
1463 dev_err(&serdev->dev, "failed to acquire enable gpio\n");
1464 return PTR_ERR(qcadev->bt_en);
1465 }
1466
1467 qcadev->susclk = devm_clk_get(&serdev->dev, NULL);
1468 if (IS_ERR(qcadev->susclk)) {
1469 dev_err(&serdev->dev, "failed to acquire clk\n");
1470 return PTR_ERR(qcadev->susclk);
1471 }
1472
1473 err = clk_set_rate(qcadev->susclk, SUSCLK_RATE_32KHZ);
1474 if (err)
1475 return err;
1476
1477 err = clk_prepare_enable(qcadev->susclk);
1478 if (err)
1479 return err;
1480
1481 err = hci_uart_register_device(&qcadev->serdev_hu, &qca_proto);
1482 if (err)
1483 clk_disable_unprepare(qcadev->susclk);
Thierry Escande05ba5332018-03-29 21:15:24 +02001484 }
1485
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301486out: return err;
Thierry Escande05ba5332018-03-29 21:15:24 +02001487
Thierry Escande05ba5332018-03-29 21:15:24 +02001488}
1489
1490static void qca_serdev_remove(struct serdev_device *serdev)
1491{
1492 struct qca_serdev *qcadev = serdev_device_get_drvdata(serdev);
1493
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301494 if (qcadev->btsoc_type == QCA_WCN3990)
Balakrishna Godavarthic2d78272018-08-22 17:50:05 +05301495 qca_power_shutdown(&qcadev->serdev_hu);
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301496 else
1497 clk_disable_unprepare(qcadev->susclk);
Thierry Escande05ba5332018-03-29 21:15:24 +02001498
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301499 hci_uart_unregister_device(&qcadev->serdev_hu);
Thierry Escande05ba5332018-03-29 21:15:24 +02001500}
1501
1502static const struct of_device_id qca_bluetooth_of_match[] = {
1503 { .compatible = "qcom,qca6174-bt" },
Balakrishna Godavarthifa9ad872018-08-03 17:46:32 +05301504 { .compatible = "qcom,wcn3990-bt", .data = &qca_soc_data},
Thierry Escande05ba5332018-03-29 21:15:24 +02001505 { /* sentinel */ }
1506};
1507MODULE_DEVICE_TABLE(of, qca_bluetooth_of_match);
1508
1509static struct serdev_device_driver qca_serdev_driver = {
1510 .probe = qca_serdev_probe,
1511 .remove = qca_serdev_remove,
1512 .driver = {
1513 .name = "hci_uart_qca",
1514 .of_match_table = qca_bluetooth_of_match,
1515 },
1516};
1517
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001518int __init qca_init(void)
1519{
Thierry Escande05ba5332018-03-29 21:15:24 +02001520 serdev_device_driver_register(&qca_serdev_driver);
1521
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001522 return hci_uart_register_proto(&qca_proto);
1523}
1524
1525int __exit qca_deinit(void)
1526{
Thierry Escande05ba5332018-03-29 21:15:24 +02001527 serdev_device_driver_unregister(&qca_serdev_driver);
1528
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -07001529 return hci_uart_unregister_proto(&qca_proto);
1530}