blob: 1425bf50ae99b4076e3e5e1f251237e14f480d6a [file] [log] [blame]
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -07001/*
2 *
3 * Bluetooth HCI UART driver for Broadcom devices
4 *
5 * Copyright (C) 2015 Intel Corporation
6 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
24#include <linux/kernel.h>
25#include <linux/errno.h>
26#include <linux/skbuff.h>
Frederic Danis18aeb442015-05-28 11:25:01 +020027#include <linux/firmware.h>
Frederic Danis0395ffc2015-08-11 16:35:35 +020028#include <linux/module.h>
29#include <linux/acpi.h>
30#include <linux/platform_device.h>
31#include <linux/clk.h>
32#include <linux/gpio/consumer.h>
33#include <linux/tty.h>
Frederic Danis6cc43962015-09-04 15:35:44 +020034#include <linux/interrupt.h>
Frederic Danis5cebdfe2015-09-23 18:18:08 +020035#include <linux/dmi.h>
Frederic Danise88ab302015-09-23 18:18:11 +020036#include <linux/pm_runtime.h>
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -070037
38#include <net/bluetooth/bluetooth.h>
39#include <net/bluetooth/hci_core.h>
40
Marcel Holtmannbdd88182015-04-05 22:52:18 -070041#include "btbcm.h"
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -070042#include "hci_uart.h"
Marcel Holtmannbdd88182015-04-05 22:52:18 -070043
Marcel Holtmann94c58132015-10-07 19:12:54 +020044#define BCM_LM_DIAG_PKT 0x07
45#define BCM_LM_DIAG_SIZE 63
46
Frederic Danise88ab302015-09-23 18:18:11 +020047#define BCM_AUTOSUSPEND_DELAY 5000 /* default autosleep delay */
48
Frederic Danis0395ffc2015-08-11 16:35:35 +020049struct bcm_device {
50 struct list_head list;
51
52 struct platform_device *pdev;
53
54 const char *name;
55 struct gpio_desc *device_wakeup;
56 struct gpio_desc *shutdown;
57
58 struct clk *clk;
59 bool clk_enabled;
Frederic Danisae056902015-08-11 16:35:37 +020060
61 u32 init_speed;
Frederic Danis6cc43962015-09-04 15:35:44 +020062 int irq;
63 u8 irq_polarity;
Frederic Danis118612f2015-08-11 16:35:38 +020064
Frederic Danisb7a622a2015-09-23 18:18:09 +020065#ifdef CONFIG_PM
Frederic Danis118612f2015-08-11 16:35:38 +020066 struct hci_uart *hu;
67 bool is_suspended; /* suspend/resume flag */
68#endif
Marcel Holtmannbdd88182015-04-05 22:52:18 -070069};
70
Frederic Danis0395ffc2015-08-11 16:35:35 +020071struct bcm_data {
72 struct sk_buff *rx_skb;
73 struct sk_buff_head txq;
74
75 struct bcm_device *dev;
76};
77
78/* List of BCM BT UART devices */
Frederic Danisbb3ea162015-09-01 12:13:35 +020079static DEFINE_MUTEX(bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +020080static LIST_HEAD(bcm_device_list);
81
Frederic Danis61b2fc22015-06-09 16:15:37 +020082static int bcm_set_baudrate(struct hci_uart *hu, unsigned int speed)
83{
84 struct hci_dev *hdev = hu->hdev;
85 struct sk_buff *skb;
86 struct bcm_update_uart_baud_rate param;
87
88 if (speed > 3000000) {
89 struct bcm_write_uart_clock_setting clock;
90
91 clock.type = BCM_UART_CLOCK_48MHZ;
92
Frederic Danis65ad07c2015-09-01 12:13:36 +020093 bt_dev_dbg(hdev, "Set Controller clock (%d)", clock.type);
Frederic Danis61b2fc22015-06-09 16:15:37 +020094
95 /* This Broadcom specific command changes the UART's controller
96 * clock for baud rate > 3000000.
97 */
98 skb = __hci_cmd_sync(hdev, 0xfc45, 1, &clock, HCI_INIT_TIMEOUT);
99 if (IS_ERR(skb)) {
100 int err = PTR_ERR(skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200101 bt_dev_err(hdev, "BCM: failed to write clock (%d)",
102 err);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200103 return err;
104 }
105
106 kfree_skb(skb);
107 }
108
Frederic Danis65ad07c2015-09-01 12:13:36 +0200109 bt_dev_dbg(hdev, "Set Controller UART speed to %d bit/s", speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200110
111 param.zero = cpu_to_le16(0);
112 param.baud_rate = cpu_to_le32(speed);
113
114 /* This Broadcom specific command changes the UART's controller baud
115 * rate.
116 */
117 skb = __hci_cmd_sync(hdev, 0xfc18, sizeof(param), &param,
118 HCI_INIT_TIMEOUT);
119 if (IS_ERR(skb)) {
120 int err = PTR_ERR(skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200121 bt_dev_err(hdev, "BCM: failed to write update baudrate (%d)",
122 err);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200123 return err;
124 }
125
126 kfree_skb(skb);
127
128 return 0;
129}
130
Frederic Danis917522a2015-08-28 15:44:00 +0200131/* bcm_device_exists should be protected by bcm_device_lock */
Frederic Danis0395ffc2015-08-11 16:35:35 +0200132static bool bcm_device_exists(struct bcm_device *device)
133{
134 struct list_head *p;
135
136 list_for_each(p, &bcm_device_list) {
137 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
138
139 if (device == dev)
140 return true;
141 }
142
143 return false;
144}
145
146static int bcm_gpio_set_power(struct bcm_device *dev, bool powered)
147{
148 if (powered && !IS_ERR(dev->clk) && !dev->clk_enabled)
149 clk_enable(dev->clk);
150
Loic Poulain2af0a702015-08-17 16:00:21 +0200151 gpiod_set_value(dev->shutdown, powered);
152 gpiod_set_value(dev->device_wakeup, powered);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200153
154 if (!powered && !IS_ERR(dev->clk) && dev->clk_enabled)
155 clk_disable(dev->clk);
156
157 dev->clk_enabled = powered;
158
159 return 0;
160}
161
Frederic Danisb7a622a2015-09-23 18:18:09 +0200162#ifdef CONFIG_PM
Frederic Danis6cc43962015-09-04 15:35:44 +0200163static irqreturn_t bcm_host_wake(int irq, void *data)
164{
165 struct bcm_device *bdev = data;
166
167 bt_dev_dbg(bdev, "Host wake IRQ");
168
Frederic Danise88ab302015-09-23 18:18:11 +0200169 pm_runtime_get(&bdev->pdev->dev);
170 pm_runtime_mark_last_busy(&bdev->pdev->dev);
171 pm_runtime_put_autosuspend(&bdev->pdev->dev);
172
Frederic Danis6cc43962015-09-04 15:35:44 +0200173 return IRQ_HANDLED;
174}
175
176static int bcm_request_irq(struct bcm_data *bcm)
177{
178 struct bcm_device *bdev = bcm->dev;
179 int err = 0;
180
181 /* If this is not a platform device, do not enable PM functionalities */
182 mutex_lock(&bcm_device_lock);
183 if (!bcm_device_exists(bdev)) {
184 err = -ENODEV;
185 goto unlock;
186 }
187
188 if (bdev->irq > 0) {
189 err = devm_request_irq(&bdev->pdev->dev, bdev->irq,
190 bcm_host_wake, IRQF_TRIGGER_RISING,
191 "host_wake", bdev);
192 if (err)
193 goto unlock;
194
195 device_init_wakeup(&bdev->pdev->dev, true);
Frederic Danise88ab302015-09-23 18:18:11 +0200196
197 pm_runtime_set_autosuspend_delay(&bdev->pdev->dev,
198 BCM_AUTOSUSPEND_DELAY);
199 pm_runtime_use_autosuspend(&bdev->pdev->dev);
200 pm_runtime_set_active(&bdev->pdev->dev);
201 pm_runtime_enable(&bdev->pdev->dev);
Frederic Danis6cc43962015-09-04 15:35:44 +0200202 }
203
204unlock:
205 mutex_unlock(&bcm_device_lock);
206
207 return err;
208}
209
210static const struct bcm_set_sleep_mode default_sleep_params = {
211 .sleep_mode = 1, /* 0=Disabled, 1=UART, 2=Reserved, 3=USB */
212 .idle_host = 2, /* idle threshold HOST, in 300ms */
213 .idle_dev = 2, /* idle threshold device, in 300ms */
214 .bt_wake_active = 1, /* BT_WAKE active mode: 1 = high, 0 = low */
215 .host_wake_active = 0, /* HOST_WAKE active mode: 1 = high, 0 = low */
216 .allow_host_sleep = 1, /* Allow host sleep in SCO flag */
Frederic Danise88ab302015-09-23 18:18:11 +0200217 .combine_modes = 1, /* Combine sleep and LPM flag */
Frederic Danis6cc43962015-09-04 15:35:44 +0200218 .tristate_control = 0, /* Allow tri-state control of UART tx flag */
219 /* Irrelevant USB flags */
220 .usb_auto_sleep = 0,
221 .usb_resume_timeout = 0,
222 .pulsed_host_wake = 0,
223 .break_to_host = 0
224};
225
226static int bcm_setup_sleep(struct hci_uart *hu)
227{
228 struct bcm_data *bcm = hu->priv;
229 struct sk_buff *skb;
230 struct bcm_set_sleep_mode sleep_params = default_sleep_params;
231
232 sleep_params.host_wake_active = !bcm->dev->irq_polarity;
233
234 skb = __hci_cmd_sync(hu->hdev, 0xfc27, sizeof(sleep_params),
235 &sleep_params, HCI_INIT_TIMEOUT);
236 if (IS_ERR(skb)) {
237 int err = PTR_ERR(skb);
238 bt_dev_err(hu->hdev, "Sleep VSC failed (%d)", err);
239 return err;
240 }
241 kfree_skb(skb);
242
243 bt_dev_dbg(hu->hdev, "Set Sleep Parameters VSC succeeded");
244
245 return 0;
246}
247#else
248static inline int bcm_request_irq(struct bcm_data *bcm) { return 0; }
249static inline int bcm_setup_sleep(struct hci_uart *hu) { return 0; }
250#endif
251
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700252static int bcm_open(struct hci_uart *hu)
253{
254 struct bcm_data *bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200255 struct list_head *p;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700256
Frederic Danis65ad07c2015-09-01 12:13:36 +0200257 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700258
259 bcm = kzalloc(sizeof(*bcm), GFP_KERNEL);
260 if (!bcm)
261 return -ENOMEM;
262
263 skb_queue_head_init(&bcm->txq);
264
265 hu->priv = bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200266
Frederic Danisbb3ea162015-09-01 12:13:35 +0200267 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200268 list_for_each(p, &bcm_device_list) {
269 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
270
271 /* Retrieve saved bcm_device based on parent of the
272 * platform device (saved during device probe) and
273 * parent of tty device used by hci_uart
274 */
275 if (hu->tty->dev->parent == dev->pdev->dev.parent) {
276 bcm->dev = dev;
Frederic Danisae056902015-08-11 16:35:37 +0200277 hu->init_speed = dev->init_speed;
Frederic Danisb7a622a2015-09-23 18:18:09 +0200278#ifdef CONFIG_PM
Frederic Danis118612f2015-08-11 16:35:38 +0200279 dev->hu = hu;
280#endif
Frederic Danis6cc43962015-09-04 15:35:44 +0200281 bcm_gpio_set_power(bcm->dev, true);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200282 break;
283 }
284 }
285
Frederic Danisbb3ea162015-09-01 12:13:35 +0200286 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200287
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700288 return 0;
289}
290
291static int bcm_close(struct hci_uart *hu)
292{
293 struct bcm_data *bcm = hu->priv;
Frederic Danis6cc43962015-09-04 15:35:44 +0200294 struct bcm_device *bdev = bcm->dev;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700295
Frederic Danis65ad07c2015-09-01 12:13:36 +0200296 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700297
Frederic Danis0395ffc2015-08-11 16:35:35 +0200298 /* Protect bcm->dev against removal of the device or driver */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200299 mutex_lock(&bcm_device_lock);
Frederic Danis6cc43962015-09-04 15:35:44 +0200300 if (bcm_device_exists(bdev)) {
301 bcm_gpio_set_power(bdev, false);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200302#ifdef CONFIG_PM
Frederic Danise88ab302015-09-23 18:18:11 +0200303 pm_runtime_disable(&bdev->pdev->dev);
304 pm_runtime_set_suspended(&bdev->pdev->dev);
305
Frederic Danis6cc43962015-09-04 15:35:44 +0200306 if (device_can_wakeup(&bdev->pdev->dev)) {
307 devm_free_irq(&bdev->pdev->dev, bdev->irq, bdev);
308 device_init_wakeup(&bdev->pdev->dev, false);
309 }
310
311 bdev->hu = NULL;
Frederic Danis118612f2015-08-11 16:35:38 +0200312#endif
313 }
Frederic Danisbb3ea162015-09-01 12:13:35 +0200314 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200315
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700316 skb_queue_purge(&bcm->txq);
317 kfree_skb(bcm->rx_skb);
318 kfree(bcm);
319
320 hu->priv = NULL;
321 return 0;
322}
323
324static int bcm_flush(struct hci_uart *hu)
325{
326 struct bcm_data *bcm = hu->priv;
327
Frederic Danis65ad07c2015-09-01 12:13:36 +0200328 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700329
330 skb_queue_purge(&bcm->txq);
331
332 return 0;
333}
334
335static int bcm_setup(struct hci_uart *hu)
336{
Frederic Danis6cc43962015-09-04 15:35:44 +0200337 struct bcm_data *bcm = hu->priv;
Frederic Danis6be09b42015-05-28 11:25:05 +0200338 char fw_name[64];
339 const struct firmware *fw;
Frederic Danis960ef1d2015-06-18 12:43:27 +0200340 unsigned int speed;
Frederic Danis6be09b42015-05-28 11:25:05 +0200341 int err;
342
Frederic Danis65ad07c2015-09-01 12:13:36 +0200343 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700344
345 hu->hdev->set_bdaddr = btbcm_set_bdaddr;
346
Frederic Danis6be09b42015-05-28 11:25:05 +0200347 err = btbcm_initialize(hu->hdev, fw_name, sizeof(fw_name));
348 if (err)
349 return err;
350
351 err = request_firmware(&fw, fw_name, &hu->hdev->dev);
352 if (err < 0) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200353 bt_dev_info(hu->hdev, "BCM: Patch %s not found", fw_name);
Frederic Danis6be09b42015-05-28 11:25:05 +0200354 return 0;
355 }
356
357 err = btbcm_patchram(hu->hdev, fw);
358 if (err) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200359 bt_dev_info(hu->hdev, "BCM: Patch failed (%d)", err);
Frederic Danis6be09b42015-05-28 11:25:05 +0200360 goto finalize;
361 }
362
Frederic Danis960ef1d2015-06-18 12:43:27 +0200363 /* Init speed if any */
364 if (hu->init_speed)
365 speed = hu->init_speed;
366 else if (hu->proto->init_speed)
367 speed = hu->proto->init_speed;
368 else
369 speed = 0;
Frederic Danis6be09b42015-05-28 11:25:05 +0200370
Frederic Danis960ef1d2015-06-18 12:43:27 +0200371 if (speed)
372 hci_uart_set_baudrate(hu, speed);
373
374 /* Operational speed if any */
375 if (hu->oper_speed)
376 speed = hu->oper_speed;
377 else if (hu->proto->oper_speed)
378 speed = hu->proto->oper_speed;
379 else
380 speed = 0;
381
382 if (speed) {
383 err = bcm_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200384 if (!err)
Frederic Danis960ef1d2015-06-18 12:43:27 +0200385 hci_uart_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200386 }
387
Frederic Danis6be09b42015-05-28 11:25:05 +0200388finalize:
389 release_firmware(fw);
390
391 err = btbcm_finalize(hu->hdev);
Frederic Danis6cc43962015-09-04 15:35:44 +0200392 if (err)
393 return err;
394
395 err = bcm_request_irq(bcm);
396 if (!err)
397 err = bcm_setup_sleep(hu);
Frederic Danis6be09b42015-05-28 11:25:05 +0200398
399 return err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700400}
401
Marcel Holtmann94c58132015-10-07 19:12:54 +0200402#define BCM_RECV_LM_DIAG \
403 .type = BCM_LM_DIAG_PKT, \
404 .hlen = BCM_LM_DIAG_SIZE, \
405 .loff = 0, \
406 .lsize = 0, \
407 .maxlen = BCM_LM_DIAG_SIZE
408
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700409static const struct h4_recv_pkt bcm_recv_pkts[] = {
Marcel Holtmann94c58132015-10-07 19:12:54 +0200410 { H4_RECV_ACL, .recv = hci_recv_frame },
411 { H4_RECV_SCO, .recv = hci_recv_frame },
412 { H4_RECV_EVENT, .recv = hci_recv_frame },
413 { BCM_RECV_LM_DIAG, .recv = hci_recv_diag },
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700414};
415
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700416static int bcm_recv(struct hci_uart *hu, const void *data, int count)
417{
418 struct bcm_data *bcm = hu->priv;
419
420 if (!test_bit(HCI_UART_REGISTERED, &hu->flags))
421 return -EUNATCH;
422
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700423 bcm->rx_skb = h4_recv_buf(hu->hdev, bcm->rx_skb, data, count,
424 bcm_recv_pkts, ARRAY_SIZE(bcm_recv_pkts));
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700425 if (IS_ERR(bcm->rx_skb)) {
426 int err = PTR_ERR(bcm->rx_skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200427 bt_dev_err(hu->hdev, "Frame reassembly failed (%d)", err);
Chan-yeol Park37134162015-06-17 21:10:39 +0900428 bcm->rx_skb = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700429 return err;
Frederic Danise88ab302015-09-23 18:18:11 +0200430 } else if (!bcm->rx_skb) {
431 /* Delay auto-suspend when receiving completed packet */
432 mutex_lock(&bcm_device_lock);
433 if (bcm->dev && bcm_device_exists(bcm->dev)) {
434 pm_runtime_get(&bcm->dev->pdev->dev);
435 pm_runtime_mark_last_busy(&bcm->dev->pdev->dev);
436 pm_runtime_put_autosuspend(&bcm->dev->pdev->dev);
437 }
438 mutex_unlock(&bcm_device_lock);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700439 }
440
441 return count;
442}
443
444static int bcm_enqueue(struct hci_uart *hu, struct sk_buff *skb)
445{
446 struct bcm_data *bcm = hu->priv;
447
Frederic Danis65ad07c2015-09-01 12:13:36 +0200448 bt_dev_dbg(hu->hdev, "hu %p skb %p", hu, skb);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700449
450 /* Prepend skb with frame type */
451 memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1);
452 skb_queue_tail(&bcm->txq, skb);
453
454 return 0;
455}
456
457static struct sk_buff *bcm_dequeue(struct hci_uart *hu)
458{
459 struct bcm_data *bcm = hu->priv;
Frederic Danise88ab302015-09-23 18:18:11 +0200460 struct sk_buff *skb = NULL;
461 struct bcm_device *bdev = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700462
Frederic Danise88ab302015-09-23 18:18:11 +0200463 mutex_lock(&bcm_device_lock);
464
465 if (bcm_device_exists(bcm->dev)) {
466 bdev = bcm->dev;
467 pm_runtime_get_sync(&bdev->pdev->dev);
468 /* Shall be resumed here */
469 }
470
471 skb = skb_dequeue(&bcm->txq);
472
473 if (bdev) {
474 pm_runtime_mark_last_busy(&bdev->pdev->dev);
475 pm_runtime_put_autosuspend(&bdev->pdev->dev);
476 }
477
478 mutex_unlock(&bcm_device_lock);
479
480 return skb;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700481}
482
Frederic Danisb7a622a2015-09-23 18:18:09 +0200483#ifdef CONFIG_PM
484static int bcm_suspend_device(struct device *dev)
Frederic Danis118612f2015-08-11 16:35:38 +0200485{
486 struct bcm_device *bdev = platform_get_drvdata(to_platform_device(dev));
487
Frederic Danisb7a622a2015-09-23 18:18:09 +0200488 bt_dev_dbg(bdev, "");
Frederic Danis118612f2015-08-11 16:35:38 +0200489
Frederic Danisb7a622a2015-09-23 18:18:09 +0200490 if (!bdev->is_suspended && bdev->hu) {
Frederic Danis118612f2015-08-11 16:35:38 +0200491 hci_uart_set_flow_control(bdev->hu, true);
492
Frederic Danisb7a622a2015-09-23 18:18:09 +0200493 /* Once this returns, driver suspends BT via GPIO */
Frederic Danis118612f2015-08-11 16:35:38 +0200494 bdev->is_suspended = true;
495 }
496
497 /* Suspend the device */
498 if (bdev->device_wakeup) {
499 gpiod_set_value(bdev->device_wakeup, false);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200500 bt_dev_dbg(bdev, "suspend, delaying 15 ms");
Frederic Danis118612f2015-08-11 16:35:38 +0200501 mdelay(15);
502 }
503
Frederic Danisb7a622a2015-09-23 18:18:09 +0200504 return 0;
505}
506
507static int bcm_resume_device(struct device *dev)
508{
509 struct bcm_device *bdev = platform_get_drvdata(to_platform_device(dev));
510
511 bt_dev_dbg(bdev, "");
512
513 if (bdev->device_wakeup) {
514 gpiod_set_value(bdev->device_wakeup, true);
515 bt_dev_dbg(bdev, "resume, delaying 15 ms");
516 mdelay(15);
517 }
518
519 /* When this executes, the device has woken up already */
520 if (bdev->is_suspended && bdev->hu) {
521 bdev->is_suspended = false;
522
523 hci_uart_set_flow_control(bdev->hu, false);
524 }
525
526 return 0;
527}
528#endif
529
530#ifdef CONFIG_PM_SLEEP
531/* Platform suspend callback */
532static int bcm_suspend(struct device *dev)
533{
534 struct bcm_device *bdev = platform_get_drvdata(to_platform_device(dev));
535 int error;
536
537 bt_dev_dbg(bdev, "suspend: is_suspended %d", bdev->is_suspended);
538
539 /* bcm_suspend can be called at any time as long as platform device is
540 * bound, so it should use bcm_device_lock to protect access to hci_uart
541 * and device_wake-up GPIO.
542 */
543 mutex_lock(&bcm_device_lock);
544
545 if (!bdev->hu)
546 goto unlock;
547
Frederic Danise88ab302015-09-23 18:18:11 +0200548 if (pm_runtime_active(dev))
549 bcm_suspend_device(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200550
Frederic Danis6cc43962015-09-04 15:35:44 +0200551 if (device_may_wakeup(&bdev->pdev->dev)) {
552 error = enable_irq_wake(bdev->irq);
553 if (!error)
554 bt_dev_dbg(bdev, "BCM irq: enabled");
555 }
556
Frederic Danis917522a2015-08-28 15:44:00 +0200557unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200558 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200559
Frederic Danis118612f2015-08-11 16:35:38 +0200560 return 0;
561}
562
563/* Platform resume callback */
564static int bcm_resume(struct device *dev)
565{
566 struct bcm_device *bdev = platform_get_drvdata(to_platform_device(dev));
567
Frederic Danis65ad07c2015-09-01 12:13:36 +0200568 bt_dev_dbg(bdev, "resume: is_suspended %d", bdev->is_suspended);
Frederic Danis118612f2015-08-11 16:35:38 +0200569
Frederic Danisb7a622a2015-09-23 18:18:09 +0200570 /* bcm_resume can be called at any time as long as platform device is
571 * bound, so it should use bcm_device_lock to protect access to hci_uart
572 * and device_wake-up GPIO.
573 */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200574 mutex_lock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200575
576 if (!bdev->hu)
577 goto unlock;
578
Frederic Danis6cc43962015-09-04 15:35:44 +0200579 if (device_may_wakeup(&bdev->pdev->dev)) {
580 disable_irq_wake(bdev->irq);
581 bt_dev_dbg(bdev, "BCM irq: disabled");
582 }
583
Frederic Danisb7a622a2015-09-23 18:18:09 +0200584 bcm_resume_device(dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200585
Frederic Danis917522a2015-08-28 15:44:00 +0200586unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200587 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200588
Frederic Danise88ab302015-09-23 18:18:11 +0200589 pm_runtime_disable(dev);
590 pm_runtime_set_active(dev);
591 pm_runtime_enable(dev);
592
Frederic Danis118612f2015-08-11 16:35:38 +0200593 return 0;
594}
595#endif
596
Frederic Danis0395ffc2015-08-11 16:35:35 +0200597static const struct acpi_gpio_params device_wakeup_gpios = { 0, 0, false };
598static const struct acpi_gpio_params shutdown_gpios = { 1, 0, false };
Frederic Danis6cc43962015-09-04 15:35:44 +0200599static const struct acpi_gpio_params host_wakeup_gpios = { 2, 0, false };
Frederic Danis0395ffc2015-08-11 16:35:35 +0200600
601static const struct acpi_gpio_mapping acpi_bcm_default_gpios[] = {
602 { "device-wakeup-gpios", &device_wakeup_gpios, 1 },
603 { "shutdown-gpios", &shutdown_gpios, 1 },
Frederic Danis6cc43962015-09-04 15:35:44 +0200604 { "host-wakeup-gpios", &host_wakeup_gpios, 1 },
Frederic Danis0395ffc2015-08-11 16:35:35 +0200605 { },
606};
607
Frederic Danis50d78bc2015-08-12 12:46:01 +0200608#ifdef CONFIG_ACPI
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200609static u8 acpi_active_low = ACPI_ACTIVE_LOW;
610
611/* IRQ polarity of some chipsets are not defined correctly in ACPI table. */
612static const struct dmi_system_id bcm_wrong_irq_dmi_table[] = {
613 {
614 .ident = "Asus T100TA",
615 .matches = {
616 DMI_EXACT_MATCH(DMI_SYS_VENDOR,
617 "ASUSTeK COMPUTER INC."),
618 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100TA"),
619 },
620 .driver_data = &acpi_active_low,
621 },
622 { }
623};
624
Frederic Danisae056902015-08-11 16:35:37 +0200625static int bcm_resource(struct acpi_resource *ares, void *data)
626{
627 struct bcm_device *dev = data;
Frederic Danis6cc43962015-09-04 15:35:44 +0200628 struct acpi_resource_extended_irq *irq;
629 struct acpi_resource_gpio *gpio;
630 struct acpi_resource_uart_serialbus *sb;
Frederic Danisae056902015-08-11 16:35:37 +0200631
Frederic Danis6cc43962015-09-04 15:35:44 +0200632 switch (ares->type) {
633 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
634 irq = &ares->data.extended_irq;
635 dev->irq_polarity = irq->polarity;
636 break;
Frederic Danisae056902015-08-11 16:35:37 +0200637
Frederic Danis6cc43962015-09-04 15:35:44 +0200638 case ACPI_RESOURCE_TYPE_GPIO:
639 gpio = &ares->data.gpio;
640 if (gpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT)
641 dev->irq_polarity = gpio->polarity;
642 break;
643
644 case ACPI_RESOURCE_TYPE_SERIAL_BUS:
Frederic Danisae056902015-08-11 16:35:37 +0200645 sb = &ares->data.uart_serial_bus;
646 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_UART)
647 dev->init_speed = sb->default_baud_rate;
Frederic Danis6cc43962015-09-04 15:35:44 +0200648 break;
649
650 default:
651 break;
Frederic Danisae056902015-08-11 16:35:37 +0200652 }
653
654 /* Always tell the ACPI core to skip this resource */
655 return 1;
656}
657
Frederic Danis0395ffc2015-08-11 16:35:35 +0200658static int bcm_acpi_probe(struct bcm_device *dev)
659{
660 struct platform_device *pdev = dev->pdev;
Frederic Danisae056902015-08-11 16:35:37 +0200661 LIST_HEAD(resources);
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200662 const struct dmi_system_id *dmi_id;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200663 int ret;
664
Frederic Danis0395ffc2015-08-11 16:35:35 +0200665 /* Retrieve GPIO data */
666 dev->name = dev_name(&pdev->dev);
667 ret = acpi_dev_add_driver_gpios(ACPI_COMPANION(&pdev->dev),
668 acpi_bcm_default_gpios);
669 if (ret)
670 return ret;
671
672 dev->clk = devm_clk_get(&pdev->dev, NULL);
673
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200674 dev->device_wakeup = devm_gpiod_get_optional(&pdev->dev,
675 "device-wakeup",
676 GPIOD_OUT_LOW);
677 if (IS_ERR(dev->device_wakeup))
678 return PTR_ERR(dev->device_wakeup);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200679
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200680 dev->shutdown = devm_gpiod_get_optional(&pdev->dev, "shutdown",
681 GPIOD_OUT_LOW);
682 if (IS_ERR(dev->shutdown))
683 return PTR_ERR(dev->shutdown);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200684
Frederic Danis6cc43962015-09-04 15:35:44 +0200685 /* IRQ can be declared in ACPI table as Interrupt or GpioInt */
686 dev->irq = platform_get_irq(pdev, 0);
687 if (dev->irq <= 0) {
688 struct gpio_desc *gpio;
689
690 gpio = devm_gpiod_get_optional(&pdev->dev, "host-wakeup",
691 GPIOD_IN);
692 if (IS_ERR(gpio))
693 return PTR_ERR(gpio);
694
695 dev->irq = gpiod_to_irq(gpio);
696 }
697
698 dev_info(&pdev->dev, "BCM irq: %d\n", dev->irq);
699
Frederic Danis0395ffc2015-08-11 16:35:35 +0200700 /* Make sure at-least one of the GPIO is defined and that
701 * a name is specified for this instance
702 */
703 if ((!dev->device_wakeup && !dev->shutdown) || !dev->name) {
704 dev_err(&pdev->dev, "invalid platform data\n");
705 return -EINVAL;
706 }
707
Frederic Danisae056902015-08-11 16:35:37 +0200708 /* Retrieve UART ACPI info */
Jarkko Nikulae98d6d62015-09-30 16:26:45 +0300709 ret = acpi_dev_get_resources(ACPI_COMPANION(&dev->pdev->dev),
710 &resources, bcm_resource, dev);
Jarkko Nikula5be00282015-09-30 16:26:42 +0300711 if (ret < 0)
712 return ret;
Jarkko Nikula09dbf1b2015-09-30 16:26:41 +0300713 acpi_dev_free_resource_list(&resources);
Frederic Danisae056902015-08-11 16:35:37 +0200714
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200715 dmi_id = dmi_first_match(bcm_wrong_irq_dmi_table);
716 if (dmi_id) {
717 bt_dev_warn(dev, "%s: Overwriting IRQ polarity to active low",
718 dmi_id->ident);
719 dev->irq_polarity = *(u8 *)dmi_id->driver_data;
720 }
721
Frederic Danis0395ffc2015-08-11 16:35:35 +0200722 return 0;
723}
Frederic Danis50d78bc2015-08-12 12:46:01 +0200724#else
725static int bcm_acpi_probe(struct bcm_device *dev)
726{
727 return -EINVAL;
728}
729#endif /* CONFIG_ACPI */
Frederic Danis0395ffc2015-08-11 16:35:35 +0200730
731static int bcm_probe(struct platform_device *pdev)
732{
733 struct bcm_device *dev;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200734 int ret;
735
736 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
737 if (!dev)
738 return -ENOMEM;
739
740 dev->pdev = pdev;
741
Jarkko Nikula4d1c4552015-09-30 16:26:44 +0300742 ret = bcm_acpi_probe(dev);
743 if (ret)
744 return ret;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200745
746 platform_set_drvdata(pdev, dev);
747
748 dev_info(&pdev->dev, "%s device registered.\n", dev->name);
749
750 /* Place this instance on the device list */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200751 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200752 list_add_tail(&dev->list, &bcm_device_list);
Frederic Danisbb3ea162015-09-01 12:13:35 +0200753 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200754
755 bcm_gpio_set_power(dev, false);
756
757 return 0;
758}
759
760static int bcm_remove(struct platform_device *pdev)
761{
762 struct bcm_device *dev = platform_get_drvdata(pdev);
763
Frederic Danisbb3ea162015-09-01 12:13:35 +0200764 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200765 list_del(&dev->list);
Frederic Danisbb3ea162015-09-01 12:13:35 +0200766 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200767
768 acpi_dev_remove_driver_gpios(ACPI_COMPANION(&pdev->dev));
769
770 dev_info(&pdev->dev, "%s device unregistered.\n", dev->name);
771
772 return 0;
773}
774
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700775static const struct hci_uart_proto bcm_proto = {
776 .id = HCI_UART_BCM,
777 .name = "BCM",
Frederic Danis61b2fc22015-06-09 16:15:37 +0200778 .init_speed = 115200,
779 .oper_speed = 4000000,
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700780 .open = bcm_open,
781 .close = bcm_close,
782 .flush = bcm_flush,
783 .setup = bcm_setup,
Frederic Danis61b2fc22015-06-09 16:15:37 +0200784 .set_baudrate = bcm_set_baudrate,
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700785 .recv = bcm_recv,
786 .enqueue = bcm_enqueue,
787 .dequeue = bcm_dequeue,
788};
789
Frederic Danis0395ffc2015-08-11 16:35:35 +0200790#ifdef CONFIG_ACPI
791static const struct acpi_device_id bcm_acpi_match[] = {
792 { "BCM2E39", 0 },
793 { "BCM2E67", 0 },
794 { },
795};
796MODULE_DEVICE_TABLE(acpi, bcm_acpi_match);
797#endif
798
Frederic Danis118612f2015-08-11 16:35:38 +0200799/* Platform suspend and resume callbacks */
Frederic Danise88ab302015-09-23 18:18:11 +0200800static const struct dev_pm_ops bcm_pm_ops = {
801 SET_SYSTEM_SLEEP_PM_OPS(bcm_suspend, bcm_resume)
802 SET_RUNTIME_PM_OPS(bcm_suspend_device, bcm_resume_device, NULL)
803};
Frederic Danis118612f2015-08-11 16:35:38 +0200804
Frederic Danis0395ffc2015-08-11 16:35:35 +0200805static struct platform_driver bcm_driver = {
806 .probe = bcm_probe,
807 .remove = bcm_remove,
808 .driver = {
809 .name = "hci_bcm",
810 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
Frederic Danis118612f2015-08-11 16:35:38 +0200811 .pm = &bcm_pm_ops,
Frederic Danis0395ffc2015-08-11 16:35:35 +0200812 },
813};
814
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700815int __init bcm_init(void)
816{
Frederic Danis0395ffc2015-08-11 16:35:35 +0200817 platform_driver_register(&bcm_driver);
818
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700819 return hci_uart_register_proto(&bcm_proto);
820}
821
822int __exit bcm_deinit(void)
823{
Frederic Danis0395ffc2015-08-11 16:35:35 +0200824 platform_driver_unregister(&bcm_driver);
825
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700826 return hci_uart_unregister_proto(&bcm_proto);
827}