Revert "Bluetooth: hci_bcm: Streamline runtime PM code"
[linux-block.git] / drivers / bluetooth / hci_bcm.c
CommitLineData
e9a2dd26
MH
1/*
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>
18aeb444 27#include <linux/firmware.h>
0395ffc1
FD
28#include <linux/module.h>
29#include <linux/acpi.h>
33cd149e
LP
30#include <linux/of.h>
31#include <linux/property.h>
4c33162c 32#include <linux/platform_data/x86/apple.h>
0395ffc1
FD
33#include <linux/platform_device.h>
34#include <linux/clk.h>
35#include <linux/gpio/consumer.h>
36#include <linux/tty.h>
6cc4396c 37#include <linux/interrupt.h>
5cebdfea 38#include <linux/dmi.h>
e88ab30d 39#include <linux/pm_runtime.h>
33cd149e 40#include <linux/serdev.h>
e9a2dd26
MH
41
42#include <net/bluetooth/bluetooth.h>
43#include <net/bluetooth/hci_core.h>
44
bdd8818e 45#include "btbcm.h"
e9a2dd26 46#include "hci_uart.h"
bdd8818e 47
01d5e44a
MH
48#define BCM_NULL_PKT 0x00
49#define BCM_NULL_SIZE 0
50
94c58132
MH
51#define BCM_LM_DIAG_PKT 0x07
52#define BCM_LM_DIAG_SIZE 63
53
e88ab30d
FD
54#define BCM_AUTOSUSPEND_DELAY 5000 /* default autosleep delay */
55
b7c2abac
LW
56/**
57 * struct bcm_device - device driver resources
58 * @serdev_hu: HCI UART controller struct
59 * @list: bcm_device_list node
60 * @dev: physical UART slave
61 * @name: device name logged by bt_dev_*() functions
62 * @device_wakeup: BT_WAKE pin,
63 * assert = Bluetooth device must wake up or remain awake,
64 * deassert = Bluetooth device may sleep when sleep criteria are met
65 * @shutdown: BT_REG_ON pin,
66 * power up or power down Bluetooth device internal regulators
8353b4a6 67 * @set_device_wakeup: callback to toggle BT_WAKE pin
4c33162c 68 * either by accessing @device_wakeup or by calling @btlp
8353b4a6 69 * @set_shutdown: callback to toggle BT_REG_ON pin
4c33162c
LW
70 * either by accessing @shutdown or by calling @btpu/@btpd
71 * @btlp: Apple ACPI method to toggle BT_WAKE pin ("Bluetooth Low Power")
72 * @btpu: Apple ACPI method to drive BT_REG_ON pin high ("Bluetooth Power Up")
73 * @btpd: Apple ACPI method to drive BT_REG_ON pin low ("Bluetooth Power Down")
b7c2abac
LW
74 * @clk: clock used by Bluetooth device
75 * @clk_enabled: whether @clk is prepared and enabled
76 * @init_speed: default baudrate of Bluetooth device;
77 * the host UART is initially set to this baudrate so that
78 * it can configure the Bluetooth device for @oper_speed
79 * @oper_speed: preferred baudrate of Bluetooth device;
80 * set to 0 if @init_speed is already the preferred baudrate
81 * @irq: interrupt triggered by HOST_WAKE_BT pin
82 * @irq_active_low: whether @irq is active low
83 * @hu: pointer to HCI UART controller struct,
84 * used to disable flow control during runtime suspend and system sleep
85 * @is_suspended: whether flow control is currently disabled
86 */
0395ffc1 87struct bcm_device {
8a920568
HG
88 /* Must be the first member, hci_serdev.c expects this. */
89 struct hci_uart serdev_hu;
0395ffc1
FD
90 struct list_head list;
91
c0d3ce58 92 struct device *dev;
0395ffc1
FD
93
94 const char *name;
95 struct gpio_desc *device_wakeup;
96 struct gpio_desc *shutdown;
8353b4a6
LW
97 int (*set_device_wakeup)(struct bcm_device *, bool);
98 int (*set_shutdown)(struct bcm_device *, bool);
4c33162c
LW
99#ifdef CONFIG_ACPI
100 acpi_handle btlp, btpu, btpd;
101#endif
0395ffc1
FD
102
103 struct clk *clk;
104 bool clk_enabled;
ae056908
FD
105
106 u32 init_speed;
74183a1c 107 u32 oper_speed;
6cc4396c 108 int irq;
227630cc 109 bool irq_active_low;
118612fb 110
b7a622a2 111#ifdef CONFIG_PM
118612fb 112 struct hci_uart *hu;
b7c2abac 113 bool is_suspended;
118612fb 114#endif
0395ffc1
FD
115};
116
33cd149e 117/* generic bcm uart resources */
bdd8818e 118struct bcm_data {
0395ffc1
FD
119 struct sk_buff *rx_skb;
120 struct sk_buff_head txq;
121
122 struct bcm_device *dev;
bdd8818e
MH
123};
124
0395ffc1 125/* List of BCM BT UART devices */
bb3ea16a 126static DEFINE_MUTEX(bcm_device_lock);
0395ffc1
FD
127static LIST_HEAD(bcm_device_list);
128
33cd149e
LP
129static inline void host_set_baudrate(struct hci_uart *hu, unsigned int speed)
130{
131 if (hu->serdev)
132 serdev_device_set_baudrate(hu->serdev, speed);
133 else
134 hci_uart_set_baudrate(hu, speed);
135}
136
61b2fc2b
FD
137static int bcm_set_baudrate(struct hci_uart *hu, unsigned int speed)
138{
139 struct hci_dev *hdev = hu->hdev;
140 struct sk_buff *skb;
141 struct bcm_update_uart_baud_rate param;
142
143 if (speed > 3000000) {
144 struct bcm_write_uart_clock_setting clock;
145
146 clock.type = BCM_UART_CLOCK_48MHZ;
147
65ad07c9 148 bt_dev_dbg(hdev, "Set Controller clock (%d)", clock.type);
61b2fc2b
FD
149
150 /* This Broadcom specific command changes the UART's controller
151 * clock for baud rate > 3000000.
152 */
153 skb = __hci_cmd_sync(hdev, 0xfc45, 1, &clock, HCI_INIT_TIMEOUT);
154 if (IS_ERR(skb)) {
155 int err = PTR_ERR(skb);
65ad07c9
FD
156 bt_dev_err(hdev, "BCM: failed to write clock (%d)",
157 err);
61b2fc2b
FD
158 return err;
159 }
160
161 kfree_skb(skb);
162 }
163
65ad07c9 164 bt_dev_dbg(hdev, "Set Controller UART speed to %d bit/s", speed);
61b2fc2b
FD
165
166 param.zero = cpu_to_le16(0);
167 param.baud_rate = cpu_to_le32(speed);
168
169 /* This Broadcom specific command changes the UART's controller baud
170 * rate.
171 */
172 skb = __hci_cmd_sync(hdev, 0xfc18, sizeof(param), &param,
173 HCI_INIT_TIMEOUT);
174 if (IS_ERR(skb)) {
175 int err = PTR_ERR(skb);
65ad07c9
FD
176 bt_dev_err(hdev, "BCM: failed to write update baudrate (%d)",
177 err);
61b2fc2b
FD
178 return err;
179 }
180
181 kfree_skb(skb);
182
183 return 0;
184}
185
917522aa 186/* bcm_device_exists should be protected by bcm_device_lock */
0395ffc1
FD
187static bool bcm_device_exists(struct bcm_device *device)
188{
189 struct list_head *p;
190
81a19053 191#ifdef CONFIG_PM
8a920568
HG
192 /* Devices using serdev always exist */
193 if (device && device->hu && device->hu->serdev)
194 return true;
81a19053 195#endif
8a920568 196
0395ffc1
FD
197 list_for_each(p, &bcm_device_list) {
198 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
199
200 if (device == dev)
201 return true;
202 }
203
204 return false;
205}
206
207static int bcm_gpio_set_power(struct bcm_device *dev, bool powered)
208{
8bfa7e1e 209 int err;
0395ffc1 210
8bfa7e1e
LW
211 if (powered && !IS_ERR(dev->clk) && !dev->clk_enabled) {
212 err = clk_prepare_enable(dev->clk);
213 if (err)
214 return err;
215 }
216
217 err = dev->set_shutdown(dev, powered);
218 if (err)
219 goto err_clk_disable;
220
221 err = dev->set_device_wakeup(dev, powered);
222 if (err)
223 goto err_revert_shutdown;
0395ffc1
FD
224
225 if (!powered && !IS_ERR(dev->clk) && dev->clk_enabled)
730ce397 226 clk_disable_unprepare(dev->clk);
0395ffc1
FD
227
228 dev->clk_enabled = powered;
229
230 return 0;
8bfa7e1e
LW
231
232err_revert_shutdown:
233 dev->set_shutdown(dev, !powered);
234err_clk_disable:
235 if (powered && !IS_ERR(dev->clk) && !dev->clk_enabled)
236 clk_disable_unprepare(dev->clk);
237 return err;
0395ffc1
FD
238}
239
b7a622a2 240#ifdef CONFIG_PM
6cc4396c
FD
241static irqreturn_t bcm_host_wake(int irq, void *data)
242{
243 struct bcm_device *bdev = data;
244
245 bt_dev_dbg(bdev, "Host wake IRQ");
246
b09c6152
HG
247 pm_runtime_get(bdev->dev);
248 pm_runtime_mark_last_busy(bdev->dev);
249 pm_runtime_put_autosuspend(bdev->dev);
e88ab30d 250
6cc4396c
FD
251 return IRQ_HANDLED;
252}
253
254static int bcm_request_irq(struct bcm_data *bcm)
255{
256 struct bcm_device *bdev = bcm->dev;
98dc77d5 257 int err;
6cc4396c 258
6cc4396c
FD
259 mutex_lock(&bcm_device_lock);
260 if (!bcm_device_exists(bdev)) {
261 err = -ENODEV;
262 goto unlock;
263 }
264
98dc77d5
LP
265 if (bdev->irq <= 0) {
266 err = -EOPNOTSUPP;
267 goto unlock;
268 }
6cc4396c 269
c0d3ce58 270 err = devm_request_irq(bdev->dev, bdev->irq, bcm_host_wake,
227630cc
HG
271 bdev->irq_active_low ? IRQF_TRIGGER_FALLING :
272 IRQF_TRIGGER_RISING,
273 "host_wake", bdev);
4dc27330
LW
274 if (err) {
275 bdev->irq = err;
98dc77d5 276 goto unlock;
4dc27330 277 }
e88ab30d 278
c0d3ce58 279 device_init_wakeup(bdev->dev, true);
98dc77d5 280
c0d3ce58 281 pm_runtime_set_autosuspend_delay(bdev->dev,
98dc77d5 282 BCM_AUTOSUSPEND_DELAY);
c0d3ce58
HG
283 pm_runtime_use_autosuspend(bdev->dev);
284 pm_runtime_set_active(bdev->dev);
285 pm_runtime_enable(bdev->dev);
6cc4396c
FD
286
287unlock:
288 mutex_unlock(&bcm_device_lock);
289
290 return err;
291}
292
293static const struct bcm_set_sleep_mode default_sleep_params = {
294 .sleep_mode = 1, /* 0=Disabled, 1=UART, 2=Reserved, 3=USB */
295 .idle_host = 2, /* idle threshold HOST, in 300ms */
296 .idle_dev = 2, /* idle threshold device, in 300ms */
297 .bt_wake_active = 1, /* BT_WAKE active mode: 1 = high, 0 = low */
298 .host_wake_active = 0, /* HOST_WAKE active mode: 1 = high, 0 = low */
299 .allow_host_sleep = 1, /* Allow host sleep in SCO flag */
e88ab30d 300 .combine_modes = 1, /* Combine sleep and LPM flag */
6cc4396c
FD
301 .tristate_control = 0, /* Allow tri-state control of UART tx flag */
302 /* Irrelevant USB flags */
303 .usb_auto_sleep = 0,
304 .usb_resume_timeout = 0,
ff875960 305 .break_to_host = 0,
6cc4396c 306 .pulsed_host_wake = 0,
6cc4396c
FD
307};
308
309static int bcm_setup_sleep(struct hci_uart *hu)
310{
311 struct bcm_data *bcm = hu->priv;
312 struct sk_buff *skb;
313 struct bcm_set_sleep_mode sleep_params = default_sleep_params;
314
227630cc 315 sleep_params.host_wake_active = !bcm->dev->irq_active_low;
6cc4396c
FD
316
317 skb = __hci_cmd_sync(hu->hdev, 0xfc27, sizeof(sleep_params),
318 &sleep_params, HCI_INIT_TIMEOUT);
319 if (IS_ERR(skb)) {
320 int err = PTR_ERR(skb);
321 bt_dev_err(hu->hdev, "Sleep VSC failed (%d)", err);
322 return err;
323 }
324 kfree_skb(skb);
325
326 bt_dev_dbg(hu->hdev, "Set Sleep Parameters VSC succeeded");
327
328 return 0;
329}
330#else
331static inline int bcm_request_irq(struct bcm_data *bcm) { return 0; }
332static inline int bcm_setup_sleep(struct hci_uart *hu) { return 0; }
333#endif
334
075e1f5e
MH
335static int bcm_set_diag(struct hci_dev *hdev, bool enable)
336{
337 struct hci_uart *hu = hci_get_drvdata(hdev);
338 struct bcm_data *bcm = hu->priv;
339 struct sk_buff *skb;
340
341 if (!test_bit(HCI_RUNNING, &hdev->flags))
342 return -ENETDOWN;
343
344 skb = bt_skb_alloc(3, GFP_KERNEL);
a1857390
DC
345 if (!skb)
346 return -ENOMEM;
075e1f5e 347
634fef61
JB
348 skb_put_u8(skb, BCM_LM_DIAG_PKT);
349 skb_put_u8(skb, 0xf0);
350 skb_put_u8(skb, enable);
075e1f5e
MH
351
352 skb_queue_tail(&bcm->txq, skb);
353 hci_uart_tx_wakeup(hu);
354
355 return 0;
356}
357
bdd8818e
MH
358static int bcm_open(struct hci_uart *hu)
359{
360 struct bcm_data *bcm;
0395ffc1 361 struct list_head *p;
8bfa7e1e 362 int err;
bdd8818e 363
65ad07c9 364 bt_dev_dbg(hu->hdev, "hu %p", hu);
bdd8818e
MH
365
366 bcm = kzalloc(sizeof(*bcm), GFP_KERNEL);
367 if (!bcm)
368 return -ENOMEM;
369
370 skb_queue_head_init(&bcm->txq);
371
372 hu->priv = bcm;
0395ffc1 373
8a920568
HG
374 mutex_lock(&bcm_device_lock);
375
33cd149e 376 if (hu->serdev) {
8bfa7e1e
LW
377 err = serdev_device_open(hu->serdev);
378 if (err)
379 goto err_free;
380
8a920568 381 bcm->dev = serdev_device_get_drvdata(hu->serdev);
33cd149e
LP
382 goto out;
383 }
384
95065a61
JH
385 if (!hu->tty->dev)
386 goto out;
387
0395ffc1
FD
388 list_for_each(p, &bcm_device_list) {
389 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
390
391 /* Retrieve saved bcm_device based on parent of the
392 * platform device (saved during device probe) and
393 * parent of tty device used by hci_uart
394 */
c0d3ce58 395 if (hu->tty->dev->parent == dev->dev->parent) {
0395ffc1 396 bcm->dev = dev;
b7a622a2 397#ifdef CONFIG_PM
118612fb
FD
398 dev->hu = hu;
399#endif
0395ffc1
FD
400 break;
401 }
402 }
403
95065a61 404out:
8a920568
HG
405 if (bcm->dev) {
406 hu->init_speed = bcm->dev->init_speed;
407 hu->oper_speed = bcm->dev->oper_speed;
8bfa7e1e
LW
408 err = bcm_gpio_set_power(bcm->dev, true);
409 if (err)
410 goto err_unset_hu;
8a920568
HG
411 }
412
413 mutex_unlock(&bcm_device_lock);
bdd8818e 414 return 0;
8bfa7e1e
LW
415
416err_unset_hu:
8c6b8eda
HG
417 if (hu->serdev)
418 serdev_device_close(hu->serdev);
8bfa7e1e 419#ifdef CONFIG_PM
8c6b8eda
HG
420 else
421 bcm->dev->hu = NULL;
8bfa7e1e
LW
422#endif
423err_free:
424 mutex_unlock(&bcm_device_lock);
425 hu->priv = NULL;
426 kfree(bcm);
427 return err;
bdd8818e
MH
428}
429
430static int bcm_close(struct hci_uart *hu)
431{
432 struct bcm_data *bcm = hu->priv;
8a920568 433 struct bcm_device *bdev = NULL;
8bfa7e1e 434 int err;
bdd8818e 435
65ad07c9 436 bt_dev_dbg(hu->hdev, "hu %p", hu);
bdd8818e 437
0395ffc1 438 /* Protect bcm->dev against removal of the device or driver */
bb3ea16a 439 mutex_lock(&bcm_device_lock);
8a920568
HG
440
441 if (hu->serdev) {
442 serdev_device_close(hu->serdev);
443 bdev = serdev_device_get_drvdata(hu->serdev);
444 } else if (bcm_device_exists(bcm->dev)) {
445 bdev = bcm->dev;
446#ifdef CONFIG_PM
447 bdev->hu = NULL;
448#endif
449 }
450
451 if (bdev) {
6d83f1ee 452 if (IS_ENABLED(CONFIG_PM) && bdev->irq > 0) {
c0d3ce58
HG
453 devm_free_irq(bdev->dev, bdev->irq, bdev);
454 device_init_wakeup(bdev->dev, false);
f4cf6b7e 455 pm_runtime_disable(bdev->dev);
6cc4396c 456 }
54ba69f9 457
8bfa7e1e
LW
458 err = bcm_gpio_set_power(bdev, false);
459 if (err)
460 bt_dev_err(hu->hdev, "Failed to power down");
461 else
462 pm_runtime_set_suspended(bdev->dev);
118612fb 463 }
bb3ea16a 464 mutex_unlock(&bcm_device_lock);
0395ffc1 465
bdd8818e
MH
466 skb_queue_purge(&bcm->txq);
467 kfree_skb(bcm->rx_skb);
468 kfree(bcm);
469
470 hu->priv = NULL;
471 return 0;
472}
473
474static int bcm_flush(struct hci_uart *hu)
475{
476 struct bcm_data *bcm = hu->priv;
477
65ad07c9 478 bt_dev_dbg(hu->hdev, "hu %p", hu);
bdd8818e
MH
479
480 skb_queue_purge(&bcm->txq);
481
482 return 0;
483}
484
485static int bcm_setup(struct hci_uart *hu)
486{
6cc4396c 487 struct bcm_data *bcm = hu->priv;
6be09b48
FD
488 char fw_name[64];
489 const struct firmware *fw;
960ef1d7 490 unsigned int speed;
6be09b48
FD
491 int err;
492
65ad07c9 493 bt_dev_dbg(hu->hdev, "hu %p", hu);
bdd8818e 494
075e1f5e 495 hu->hdev->set_diag = bcm_set_diag;
bdd8818e
MH
496 hu->hdev->set_bdaddr = btbcm_set_bdaddr;
497
6be09b48
FD
498 err = btbcm_initialize(hu->hdev, fw_name, sizeof(fw_name));
499 if (err)
500 return err;
501
502 err = request_firmware(&fw, fw_name, &hu->hdev->dev);
503 if (err < 0) {
65ad07c9 504 bt_dev_info(hu->hdev, "BCM: Patch %s not found", fw_name);
6be09b48
FD
505 return 0;
506 }
507
508 err = btbcm_patchram(hu->hdev, fw);
509 if (err) {
65ad07c9 510 bt_dev_info(hu->hdev, "BCM: Patch failed (%d)", err);
6be09b48
FD
511 goto finalize;
512 }
513
960ef1d7
FD
514 /* Init speed if any */
515 if (hu->init_speed)
516 speed = hu->init_speed;
517 else if (hu->proto->init_speed)
518 speed = hu->proto->init_speed;
519 else
520 speed = 0;
521
522 if (speed)
33cd149e 523 host_set_baudrate(hu, speed);
960ef1d7
FD
524
525 /* Operational speed if any */
526 if (hu->oper_speed)
527 speed = hu->oper_speed;
528 else if (hu->proto->oper_speed)
529 speed = hu->proto->oper_speed;
530 else
531 speed = 0;
532
533 if (speed) {
534 err = bcm_set_baudrate(hu, speed);
61b2fc2b 535 if (!err)
33cd149e 536 host_set_baudrate(hu, speed);
61b2fc2b
FD
537 }
538
6be09b48
FD
539finalize:
540 release_firmware(fw);
541
542 err = btbcm_finalize(hu->hdev);
6cc4396c
FD
543 if (err)
544 return err;
545
cdd24a20 546 if (!bcm_request_irq(bcm))
6cc4396c 547 err = bcm_setup_sleep(hu);
6be09b48
FD
548
549 return err;
bdd8818e
MH
550}
551
94c58132
MH
552#define BCM_RECV_LM_DIAG \
553 .type = BCM_LM_DIAG_PKT, \
554 .hlen = BCM_LM_DIAG_SIZE, \
555 .loff = 0, \
556 .lsize = 0, \
557 .maxlen = BCM_LM_DIAG_SIZE
558
01d5e44a
MH
559#define BCM_RECV_NULL \
560 .type = BCM_NULL_PKT, \
561 .hlen = BCM_NULL_SIZE, \
562 .loff = 0, \
563 .lsize = 0, \
564 .maxlen = BCM_NULL_SIZE
565
79b8df93 566static const struct h4_recv_pkt bcm_recv_pkts[] = {
94c58132
MH
567 { H4_RECV_ACL, .recv = hci_recv_frame },
568 { H4_RECV_SCO, .recv = hci_recv_frame },
569 { H4_RECV_EVENT, .recv = hci_recv_frame },
570 { BCM_RECV_LM_DIAG, .recv = hci_recv_diag },
01d5e44a 571 { BCM_RECV_NULL, .recv = hci_recv_diag },
79b8df93
MH
572};
573
bdd8818e
MH
574static int bcm_recv(struct hci_uart *hu, const void *data, int count)
575{
576 struct bcm_data *bcm = hu->priv;
577
578 if (!test_bit(HCI_UART_REGISTERED, &hu->flags))
579 return -EUNATCH;
580
79b8df93
MH
581 bcm->rx_skb = h4_recv_buf(hu->hdev, bcm->rx_skb, data, count,
582 bcm_recv_pkts, ARRAY_SIZE(bcm_recv_pkts));
bdd8818e
MH
583 if (IS_ERR(bcm->rx_skb)) {
584 int err = PTR_ERR(bcm->rx_skb);
65ad07c9 585 bt_dev_err(hu->hdev, "Frame reassembly failed (%d)", err);
37134167 586 bcm->rx_skb = NULL;
bdd8818e 587 return err;
e88ab30d
FD
588 } else if (!bcm->rx_skb) {
589 /* Delay auto-suspend when receiving completed packet */
590 mutex_lock(&bcm_device_lock);
b09c6152
HG
591 if (bcm->dev && bcm_device_exists(bcm->dev)) {
592 pm_runtime_get(bcm->dev->dev);
593 pm_runtime_mark_last_busy(bcm->dev->dev);
594 pm_runtime_put_autosuspend(bcm->dev->dev);
595 }
e88ab30d 596 mutex_unlock(&bcm_device_lock);
bdd8818e
MH
597 }
598
599 return count;
600}
601
602static int bcm_enqueue(struct hci_uart *hu, struct sk_buff *skb)
603{
604 struct bcm_data *bcm = hu->priv;
605
65ad07c9 606 bt_dev_dbg(hu->hdev, "hu %p skb %p", hu, skb);
bdd8818e
MH
607
608 /* Prepend skb with frame type */
618e8bc2 609 memcpy(skb_push(skb, 1), &hci_skb_pkt_type(skb), 1);
bdd8818e
MH
610 skb_queue_tail(&bcm->txq, skb);
611
612 return 0;
613}
614
615static struct sk_buff *bcm_dequeue(struct hci_uart *hu)
616{
617 struct bcm_data *bcm = hu->priv;
e88ab30d
FD
618 struct sk_buff *skb = NULL;
619 struct bcm_device *bdev = NULL;
620
621 mutex_lock(&bcm_device_lock);
622
623 if (bcm_device_exists(bcm->dev)) {
624 bdev = bcm->dev;
c0d3ce58 625 pm_runtime_get_sync(bdev->dev);
e88ab30d
FD
626 /* Shall be resumed here */
627 }
628
629 skb = skb_dequeue(&bcm->txq);
630
631 if (bdev) {
c0d3ce58
HG
632 pm_runtime_mark_last_busy(bdev->dev);
633 pm_runtime_put_autosuspend(bdev->dev);
e88ab30d 634 }
bdd8818e 635
e88ab30d
FD
636 mutex_unlock(&bcm_device_lock);
637
638 return skb;
bdd8818e
MH
639}
640
b7a622a2
FD
641#ifdef CONFIG_PM
642static int bcm_suspend_device(struct device *dev)
118612fb 643{
78277d73 644 struct bcm_device *bdev = dev_get_drvdata(dev);
8bfa7e1e 645 int err;
118612fb 646
b7a622a2 647 bt_dev_dbg(bdev, "");
917522aa 648
b7a622a2 649 if (!bdev->is_suspended && bdev->hu) {
118612fb
FD
650 hci_uart_set_flow_control(bdev->hu, true);
651
b7a622a2 652 /* Once this returns, driver suspends BT via GPIO */
118612fb
FD
653 bdev->is_suspended = true;
654 }
655
656 /* Suspend the device */
8bfa7e1e
LW
657 err = bdev->set_device_wakeup(bdev, false);
658 if (err) {
659 if (bdev->is_suspended && bdev->hu) {
660 bdev->is_suspended = false;
661 hci_uart_set_flow_control(bdev->hu, false);
662 }
663 return -EBUSY;
664 }
665
3e81a4ca 666 bt_dev_dbg(bdev, "suspend, delaying 15 ms");
e4b9e5b8 667 msleep(15);
118612fb 668
b7a622a2
FD
669 return 0;
670}
671
672static int bcm_resume_device(struct device *dev)
673{
78277d73 674 struct bcm_device *bdev = dev_get_drvdata(dev);
8bfa7e1e 675 int err;
b7a622a2
FD
676
677 bt_dev_dbg(bdev, "");
678
8bfa7e1e
LW
679 err = bdev->set_device_wakeup(bdev, true);
680 if (err) {
681 dev_err(dev, "Failed to power up\n");
682 return err;
683 }
684
3e81a4ca 685 bt_dev_dbg(bdev, "resume, delaying 15 ms");
e4b9e5b8 686 msleep(15);
b7a622a2
FD
687
688 /* When this executes, the device has woken up already */
689 if (bdev->is_suspended && bdev->hu) {
690 bdev->is_suspended = false;
691
692 hci_uart_set_flow_control(bdev->hu, false);
693 }
694
695 return 0;
696}
697#endif
698
699#ifdef CONFIG_PM_SLEEP
8a920568 700/* suspend callback */
b7a622a2
FD
701static int bcm_suspend(struct device *dev)
702{
78277d73 703 struct bcm_device *bdev = dev_get_drvdata(dev);
b7a622a2
FD
704 int error;
705
706 bt_dev_dbg(bdev, "suspend: is_suspended %d", bdev->is_suspended);
707
8a920568
HG
708 /*
709 * When used with a device instantiated as platform_device, bcm_suspend
710 * can be called at any time as long as the platform device is bound,
711 * so it should use bcm_device_lock to protect access to hci_uart
b7a622a2
FD
712 * and device_wake-up GPIO.
713 */
714 mutex_lock(&bcm_device_lock);
715
716 if (!bdev->hu)
717 goto unlock;
718
e88ab30d
FD
719 if (pm_runtime_active(dev))
720 bcm_suspend_device(dev);
b7a622a2 721
4a59f1fa 722 if (device_may_wakeup(dev) && bdev->irq > 0) {
6cc4396c
FD
723 error = enable_irq_wake(bdev->irq);
724 if (!error)
725 bt_dev_dbg(bdev, "BCM irq: enabled");
726 }
727
917522aa 728unlock:
bb3ea16a 729 mutex_unlock(&bcm_device_lock);
917522aa 730
118612fb
FD
731 return 0;
732}
733
8a920568 734/* resume callback */
118612fb
FD
735static int bcm_resume(struct device *dev)
736{
78277d73 737 struct bcm_device *bdev = dev_get_drvdata(dev);
8bfa7e1e 738 int err = 0;
118612fb 739
65ad07c9 740 bt_dev_dbg(bdev, "resume: is_suspended %d", bdev->is_suspended);
118612fb 741
8a920568
HG
742 /*
743 * When used with a device instantiated as platform_device, bcm_resume
744 * can be called at any time as long as platform device is bound,
745 * so it should use bcm_device_lock to protect access to hci_uart
b7a622a2
FD
746 * and device_wake-up GPIO.
747 */
bb3ea16a 748 mutex_lock(&bcm_device_lock);
917522aa
FD
749
750 if (!bdev->hu)
751 goto unlock;
752
4a59f1fa 753 if (device_may_wakeup(dev) && bdev->irq > 0) {
6cc4396c
FD
754 disable_irq_wake(bdev->irq);
755 bt_dev_dbg(bdev, "BCM irq: disabled");
756 }
757
8bfa7e1e 758 err = bcm_resume_device(dev);
118612fb 759
917522aa 760unlock:
bb3ea16a 761 mutex_unlock(&bcm_device_lock);
917522aa 762
8bfa7e1e
LW
763 if (!err) {
764 pm_runtime_disable(dev);
765 pm_runtime_set_active(dev);
766 pm_runtime_enable(dev);
767 }
e88ab30d 768
118612fb
FD
769 return 0;
770}
771#endif
772
89ab37b4
DD
773static const struct acpi_gpio_params int_last_device_wakeup_gpios = { 0, 0, false };
774static const struct acpi_gpio_params int_last_shutdown_gpios = { 1, 0, false };
775static const struct acpi_gpio_params int_last_host_wakeup_gpios = { 2, 0, false };
776
777static const struct acpi_gpio_mapping acpi_bcm_int_last_gpios[] = {
778 { "device-wakeup-gpios", &int_last_device_wakeup_gpios, 1 },
779 { "shutdown-gpios", &int_last_shutdown_gpios, 1 },
780 { "host-wakeup-gpios", &int_last_host_wakeup_gpios, 1 },
781 { },
782};
783
784static const struct acpi_gpio_params int_first_host_wakeup_gpios = { 0, 0, false };
785static const struct acpi_gpio_params int_first_device_wakeup_gpios = { 1, 0, false };
786static const struct acpi_gpio_params int_first_shutdown_gpios = { 2, 0, false };
787
788static const struct acpi_gpio_mapping acpi_bcm_int_first_gpios[] = {
789 { "device-wakeup-gpios", &int_first_device_wakeup_gpios, 1 },
790 { "shutdown-gpios", &int_first_shutdown_gpios, 1 },
791 { "host-wakeup-gpios", &int_first_host_wakeup_gpios, 1 },
0395ffc1
FD
792 { },
793};
794
50d78bcf 795#ifdef CONFIG_ACPI
5cebdfea 796/* IRQ polarity of some chipsets are not defined correctly in ACPI table. */
227630cc 797static const struct dmi_system_id bcm_active_low_irq_dmi_table[] = {
5cebdfea
FD
798 {
799 .ident = "Asus T100TA",
800 .matches = {
801 DMI_EXACT_MATCH(DMI_SYS_VENDOR,
802 "ASUSTeK COMPUTER INC."),
803 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100TA"),
804 },
5cebdfea 805 },
c4c285da
HG
806 {
807 .ident = "Asus T100CHI",
808 .matches = {
809 DMI_EXACT_MATCH(DMI_SYS_VENDOR,
810 "ASUSTeK COMPUTER INC."),
811 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100CHI"),
812 },
c4c285da 813 },
5e2bd93b
JB
814 { /* Handle ThinkPad 8 tablets with BCM2E55 chipset ACPI ID */
815 .ident = "Lenovo ThinkPad 8",
816 .matches = {
817 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
818 DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "ThinkPad 8"),
819 },
5e2bd93b 820 },
1bdb68b2
IM
821 {
822 .ident = "MINIX Z83-4",
823 .matches = {
824 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "MINIX"),
825 DMI_MATCH(DMI_PRODUCT_NAME, "Z83-4"),
826 },
827 },
5cebdfea
FD
828 { }
829};
830
ae056908
FD
831static int bcm_resource(struct acpi_resource *ares, void *data)
832{
833 struct bcm_device *dev = data;
6cc4396c
FD
834 struct acpi_resource_extended_irq *irq;
835 struct acpi_resource_gpio *gpio;
836 struct acpi_resource_uart_serialbus *sb;
837
838 switch (ares->type) {
839 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
840 irq = &ares->data.extended_irq;
227630cc 841 dev->irq_active_low = irq->polarity == ACPI_ACTIVE_LOW;
6cc4396c
FD
842 break;
843
844 case ACPI_RESOURCE_TYPE_GPIO:
845 gpio = &ares->data.gpio;
846 if (gpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT)
227630cc 847 dev->irq_active_low = gpio->polarity == ACPI_ACTIVE_LOW;
6cc4396c
FD
848 break;
849
850 case ACPI_RESOURCE_TYPE_SERIAL_BUS:
ae056908 851 sb = &ares->data.uart_serial_bus;
74183a1c 852 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_UART) {
ae056908 853 dev->init_speed = sb->default_baud_rate;
74183a1c
MH
854 dev->oper_speed = 4000000;
855 }
6cc4396c
FD
856 break;
857
858 default:
859 break;
ae056908
FD
860 }
861
9d54fd6a 862 return 0;
ae056908 863}
4c33162c
LW
864
865static int bcm_apple_set_device_wakeup(struct bcm_device *dev, bool awake)
866{
867 if (ACPI_FAILURE(acpi_execute_simple_method(dev->btlp, NULL, !awake)))
868 return -EIO;
869
870 return 0;
871}
872
873static int bcm_apple_set_shutdown(struct bcm_device *dev, bool powered)
874{
875 if (ACPI_FAILURE(acpi_evaluate_object(powered ? dev->btpu : dev->btpd,
876 NULL, NULL, NULL)))
877 return -EIO;
878
879 return 0;
880}
881
882static int bcm_apple_get_resources(struct bcm_device *dev)
883{
884 struct acpi_device *adev = ACPI_COMPANION(dev->dev);
885 const union acpi_object *obj;
886
887 if (!adev ||
888 ACPI_FAILURE(acpi_get_handle(adev->handle, "BTLP", &dev->btlp)) ||
889 ACPI_FAILURE(acpi_get_handle(adev->handle, "BTPU", &dev->btpu)) ||
890 ACPI_FAILURE(acpi_get_handle(adev->handle, "BTPD", &dev->btpd)))
891 return -ENODEV;
892
893 if (!acpi_dev_get_property(adev, "baud", ACPI_TYPE_BUFFER, &obj) &&
894 obj->buffer.length == 8)
895 dev->init_speed = *(u64 *)obj->buffer.pointer;
896
897 dev->set_device_wakeup = bcm_apple_set_device_wakeup;
898 dev->set_shutdown = bcm_apple_set_shutdown;
899
900 return 0;
901}
902#else
903static inline int bcm_apple_get_resources(struct bcm_device *dev)
904{
905 return -EOPNOTSUPP;
906}
212d7183 907#endif /* CONFIG_ACPI */
ae056908 908
8353b4a6
LW
909static int bcm_gpio_set_device_wakeup(struct bcm_device *dev, bool awake)
910{
911 gpiod_set_value(dev->device_wakeup, awake);
912 return 0;
913}
914
915static int bcm_gpio_set_shutdown(struct bcm_device *dev, bool powered)
916{
917 gpiod_set_value(dev->shutdown, powered);
918 return 0;
919}
920
42ef18f0 921static int bcm_get_resources(struct bcm_device *dev)
0395ffc1 922{
c0d3ce58 923 dev->name = dev_name(dev->dev);
0395ffc1 924
4c33162c
LW
925 if (x86_apple_machine && !bcm_apple_get_resources(dev))
926 return 0;
927
c0d3ce58 928 dev->clk = devm_clk_get(dev->dev, NULL);
89ab37b4 929
ab2f336c
SW
930 dev->device_wakeup = devm_gpiod_get_optional(dev->dev, "device-wakeup",
931 GPIOD_OUT_LOW);
62aaefa7
UKK
932 if (IS_ERR(dev->device_wakeup))
933 return PTR_ERR(dev->device_wakeup);
0395ffc1 934
ab2f336c
SW
935 dev->shutdown = devm_gpiod_get_optional(dev->dev, "shutdown",
936 GPIOD_OUT_LOW);
62aaefa7
UKK
937 if (IS_ERR(dev->shutdown))
938 return PTR_ERR(dev->shutdown);
0395ffc1 939
8353b4a6
LW
940 dev->set_device_wakeup = bcm_gpio_set_device_wakeup;
941 dev->set_shutdown = bcm_gpio_set_shutdown;
942
6cc4396c 943 /* IRQ can be declared in ACPI table as Interrupt or GpioInt */
6cc4396c
FD
944 if (dev->irq <= 0) {
945 struct gpio_desc *gpio;
946
c0d3ce58 947 gpio = devm_gpiod_get_optional(dev->dev, "host-wakeup",
6cc4396c
FD
948 GPIOD_IN);
949 if (IS_ERR(gpio))
950 return PTR_ERR(gpio);
951
952 dev->irq = gpiod_to_irq(gpio);
953 }
954
5954cdf1 955 dev_dbg(dev->dev, "BCM irq: %d\n", dev->irq);
212d7183
AS
956 return 0;
957}
958
959#ifdef CONFIG_ACPI
960static int bcm_acpi_probe(struct bcm_device *dev)
961{
212d7183
AS
962 LIST_HEAD(resources);
963 const struct dmi_system_id *dmi_id;
964 const struct acpi_gpio_mapping *gpio_mapping = acpi_bcm_int_last_gpios;
965 const struct acpi_device_id *id;
9d54fd6a 966 struct resource_entry *entry;
212d7183
AS
967 int ret;
968
969 /* Retrieve GPIO data */
c0d3ce58 970 id = acpi_match_device(dev->dev->driver->acpi_match_table, dev->dev);
212d7183
AS
971 if (id)
972 gpio_mapping = (const struct acpi_gpio_mapping *) id->driver_data;
973
c0d3ce58 974 ret = devm_acpi_dev_add_driver_gpios(dev->dev, gpio_mapping);
212d7183
AS
975 if (ret)
976 return ret;
977
ae056908 978 /* Retrieve UART ACPI info */
c0d3ce58 979 ret = acpi_dev_get_resources(ACPI_COMPANION(dev->dev),
e98d6d62 980 &resources, bcm_resource, dev);
5be00284
JN
981 if (ret < 0)
982 return ret;
9d54fd6a
HG
983
984 resource_list_for_each_entry(entry, &resources) {
985 if (resource_type(entry->res) == IORESOURCE_IRQ) {
986 dev->irq = entry->res->start;
987 break;
988 }
989 }
09dbf1b7 990 acpi_dev_free_resource_list(&resources);
ae056908 991
227630cc 992 dmi_id = dmi_first_match(bcm_active_low_irq_dmi_table);
5cebdfea 993 if (dmi_id) {
e8bfe868 994 dev_warn(dev->dev, "%s: Overwriting IRQ polarity to active low",
5cebdfea 995 dmi_id->ident);
227630cc 996 dev->irq_active_low = true;
5cebdfea
FD
997 }
998
0395ffc1
FD
999 return 0;
1000}
50d78bcf
FD
1001#else
1002static int bcm_acpi_probe(struct bcm_device *dev)
1003{
1004 return -EINVAL;
1005}
1006#endif /* CONFIG_ACPI */
0395ffc1 1007
8a920568
HG
1008static int bcm_of_probe(struct bcm_device *bdev)
1009{
1010 device_property_read_u32(bdev->dev, "max-speed", &bdev->oper_speed);
1011 return 0;
1012}
1013
0395ffc1
FD
1014static int bcm_probe(struct platform_device *pdev)
1015{
1016 struct bcm_device *dev;
0395ffc1
FD
1017 int ret;
1018
1019 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
1020 if (!dev)
1021 return -ENOMEM;
1022
c0d3ce58 1023 dev->dev = &pdev->dev;
4a56f891 1024 dev->irq = platform_get_irq(pdev, 0);
0395ffc1 1025
201762e2 1026 if (has_acpi_companion(&pdev->dev)) {
212d7183 1027 ret = bcm_acpi_probe(dev);
201762e2
HG
1028 if (ret)
1029 return ret;
1030 }
1031
42ef18f0 1032 ret = bcm_get_resources(dev);
4d1c4558
JN
1033 if (ret)
1034 return ret;
0395ffc1
FD
1035
1036 platform_set_drvdata(pdev, dev);
1037
1038 dev_info(&pdev->dev, "%s device registered.\n", dev->name);
1039
1040 /* Place this instance on the device list */
bb3ea16a 1041 mutex_lock(&bcm_device_lock);
0395ffc1 1042 list_add_tail(&dev->list, &bcm_device_list);
bb3ea16a 1043 mutex_unlock(&bcm_device_lock);
0395ffc1 1044
8bfa7e1e
LW
1045 ret = bcm_gpio_set_power(dev, false);
1046 if (ret)
1047 dev_err(&pdev->dev, "Failed to power down\n");
0395ffc1
FD
1048
1049 return 0;
1050}
1051
1052static int bcm_remove(struct platform_device *pdev)
1053{
1054 struct bcm_device *dev = platform_get_drvdata(pdev);
1055
bb3ea16a 1056 mutex_lock(&bcm_device_lock);
0395ffc1 1057 list_del(&dev->list);
bb3ea16a 1058 mutex_unlock(&bcm_device_lock);
0395ffc1 1059
0395ffc1
FD
1060 dev_info(&pdev->dev, "%s device unregistered.\n", dev->name);
1061
1062 return 0;
1063}
1064
bdd8818e
MH
1065static const struct hci_uart_proto bcm_proto = {
1066 .id = HCI_UART_BCM,
143f0a28 1067 .name = "Broadcom",
aee61f7a 1068 .manufacturer = 15,
61b2fc2b 1069 .init_speed = 115200,
bdd8818e
MH
1070 .open = bcm_open,
1071 .close = bcm_close,
1072 .flush = bcm_flush,
1073 .setup = bcm_setup,
61b2fc2b 1074 .set_baudrate = bcm_set_baudrate,
bdd8818e
MH
1075 .recv = bcm_recv,
1076 .enqueue = bcm_enqueue,
1077 .dequeue = bcm_dequeue,
1078};
1079
0395ffc1
FD
1080#ifdef CONFIG_ACPI
1081static const struct acpi_device_id bcm_acpi_match[] = {
89ab37b4
DD
1082 { "BCM2E1A", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1083 { "BCM2E39", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1084 { "BCM2E3A", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1085 { "BCM2E3D", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1086 { "BCM2E3F", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1087 { "BCM2E40", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1088 { "BCM2E54", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1089 { "BCM2E55", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1090 { "BCM2E64", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1091 { "BCM2E65", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1092 { "BCM2E67", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1093 { "BCM2E71", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
c23fae11 1094 { "BCM2E72", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
89ab37b4
DD
1095 { "BCM2E7B", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1096 { "BCM2E7C", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
61d220a6 1097 { "BCM2E7E", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
89ab37b4
DD
1098 { "BCM2E95", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
1099 { "BCM2E96", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
1bdb68b2 1100 { "BCM2EA4", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
0395ffc1
FD
1101 { },
1102};
1103MODULE_DEVICE_TABLE(acpi, bcm_acpi_match);
1104#endif
1105
8a920568 1106/* suspend and resume callbacks */
e88ab30d
FD
1107static const struct dev_pm_ops bcm_pm_ops = {
1108 SET_SYSTEM_SLEEP_PM_OPS(bcm_suspend, bcm_resume)
1109 SET_RUNTIME_PM_OPS(bcm_suspend_device, bcm_resume_device, NULL)
1110};
118612fb 1111
0395ffc1
FD
1112static struct platform_driver bcm_driver = {
1113 .probe = bcm_probe,
1114 .remove = bcm_remove,
1115 .driver = {
1116 .name = "hci_bcm",
1117 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
118612fb 1118 .pm = &bcm_pm_ops,
0395ffc1
FD
1119 },
1120};
1121
33cd149e
LP
1122static int bcm_serdev_probe(struct serdev_device *serdev)
1123{
8a920568 1124 struct bcm_device *bcmdev;
33cd149e
LP
1125 int err;
1126
1127 bcmdev = devm_kzalloc(&serdev->dev, sizeof(*bcmdev), GFP_KERNEL);
1128 if (!bcmdev)
1129 return -ENOMEM;
1130
8a920568 1131 bcmdev->dev = &serdev->dev;
81a19053 1132#ifdef CONFIG_PM
8a920568 1133 bcmdev->hu = &bcmdev->serdev_hu;
81a19053 1134#endif
8a920568 1135 bcmdev->serdev_hu.serdev = serdev;
33cd149e
LP
1136 serdev_device_set_drvdata(serdev, bcmdev);
1137
8a920568
HG
1138 if (has_acpi_companion(&serdev->dev))
1139 err = bcm_acpi_probe(bcmdev);
1140 else
1141 err = bcm_of_probe(bcmdev);
1142 if (err)
1143 return err;
33cd149e 1144
8a920568
HG
1145 err = bcm_get_resources(bcmdev);
1146 if (err)
1147 return err;
1148
8bfa7e1e
LW
1149 err = bcm_gpio_set_power(bcmdev, false);
1150 if (err)
1151 dev_err(&serdev->dev, "Failed to power down\n");
8a920568
HG
1152
1153 return hci_uart_register_device(&bcmdev->serdev_hu, &bcm_proto);
33cd149e
LP
1154}
1155
1156static void bcm_serdev_remove(struct serdev_device *serdev)
1157{
8a920568 1158 struct bcm_device *bcmdev = serdev_device_get_drvdata(serdev);
33cd149e 1159
8a920568 1160 hci_uart_unregister_device(&bcmdev->serdev_hu);
33cd149e
LP
1161}
1162
1163#ifdef CONFIG_OF
1164static const struct of_device_id bcm_bluetooth_of_match[] = {
1165 { .compatible = "brcm,bcm43438-bt" },
1166 { },
1167};
1168MODULE_DEVICE_TABLE(of, bcm_bluetooth_of_match);
1169#endif
1170
1171static struct serdev_device_driver bcm_serdev_driver = {
1172 .probe = bcm_serdev_probe,
1173 .remove = bcm_serdev_remove,
1174 .driver = {
1175 .name = "hci_uart_bcm",
1176 .of_match_table = of_match_ptr(bcm_bluetooth_of_match),
8a920568
HG
1177 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
1178 .pm = &bcm_pm_ops,
33cd149e
LP
1179 },
1180};
1181
bdd8818e
MH
1182int __init bcm_init(void)
1183{
33cd149e
LP
1184 /* For now, we need to keep both platform device
1185 * driver (ACPI generated) and serdev driver (DT).
1186 */
0395ffc1 1187 platform_driver_register(&bcm_driver);
33cd149e 1188 serdev_device_driver_register(&bcm_serdev_driver);
0395ffc1 1189
bdd8818e
MH
1190 return hci_uart_register_proto(&bcm_proto);
1191}
1192
1193int __exit bcm_deinit(void)
1194{
0395ffc1 1195 platform_driver_unregister(&bcm_driver);
33cd149e 1196 serdev_device_driver_unregister(&bcm_serdev_driver);
0395ffc1 1197
bdd8818e
MH
1198 return hci_uart_unregister_proto(&bcm_proto);
1199}