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