blob: c69da0e8b79fd90abdccfafef039434d196c91cf [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>
Loic Poulain33cd1492017-08-17 19:59:51 +020030#include <linux/of.h>
31#include <linux/property.h>
Frederic Danis0395ffc2015-08-11 16:35:35 +020032#include <linux/platform_device.h>
33#include <linux/clk.h>
34#include <linux/gpio/consumer.h>
35#include <linux/tty.h>
Frederic Danis6cc43962015-09-04 15:35:44 +020036#include <linux/interrupt.h>
Frederic Danis5cebdfe2015-09-23 18:18:08 +020037#include <linux/dmi.h>
Frederic Danise88ab302015-09-23 18:18:11 +020038#include <linux/pm_runtime.h>
Loic Poulain33cd1492017-08-17 19:59:51 +020039#include <linux/serdev.h>
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -070040
41#include <net/bluetooth/bluetooth.h>
42#include <net/bluetooth/hci_core.h>
43
Marcel Holtmannbdd88182015-04-05 22:52:18 -070044#include "btbcm.h"
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -070045#include "hci_uart.h"
Marcel Holtmannbdd88182015-04-05 22:52:18 -070046
Marcel Holtmann01d5e442017-08-17 21:41:09 +020047#define BCM_NULL_PKT 0x00
48#define BCM_NULL_SIZE 0
49
Marcel Holtmann94c58132015-10-07 19:12:54 +020050#define BCM_LM_DIAG_PKT 0x07
51#define BCM_LM_DIAG_SIZE 63
52
Frederic Danise88ab302015-09-23 18:18:11 +020053#define BCM_AUTOSUSPEND_DELAY 5000 /* default autosleep delay */
54
Hans de Goede8a920562017-10-04 20:43:43 +020055/* device driver resources */
Frederic Danis0395ffc2015-08-11 16:35:35 +020056struct bcm_device {
Hans de Goede8a920562017-10-04 20:43:43 +020057 /* Must be the first member, hci_serdev.c expects this. */
58 struct hci_uart serdev_hu;
Frederic Danis0395ffc2015-08-11 16:35:35 +020059 struct list_head list;
60
Hans de Goedec0d3ce52017-10-04 20:43:39 +020061 struct device *dev;
Frederic Danis0395ffc2015-08-11 16:35:35 +020062
63 const char *name;
64 struct gpio_desc *device_wakeup;
65 struct gpio_desc *shutdown;
66
67 struct clk *clk;
68 bool clk_enabled;
Frederic Danisae056902015-08-11 16:35:37 +020069
70 u32 init_speed;
Marcel Holtmann74183a12017-08-16 09:53:30 +020071 u32 oper_speed;
Frederic Danis6cc43962015-09-04 15:35:44 +020072 int irq;
Hans de Goede227630c2017-10-04 20:43:36 +020073 bool irq_active_low;
Frederic Danis118612f2015-08-11 16:35:38 +020074
Frederic Danisb7a622a2015-09-23 18:18:09 +020075#ifdef CONFIG_PM
Frederic Danis118612f2015-08-11 16:35:38 +020076 struct hci_uart *hu;
77 bool is_suspended; /* suspend/resume flag */
78#endif
Marcel Holtmannbdd88182015-04-05 22:52:18 -070079};
80
Loic Poulain33cd1492017-08-17 19:59:51 +020081/* generic bcm uart resources */
Frederic Danis0395ffc2015-08-11 16:35:35 +020082struct bcm_data {
83 struct sk_buff *rx_skb;
84 struct sk_buff_head txq;
85
86 struct bcm_device *dev;
87};
88
89/* List of BCM BT UART devices */
Frederic Danisbb3ea162015-09-01 12:13:35 +020090static DEFINE_MUTEX(bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +020091static LIST_HEAD(bcm_device_list);
92
Loic Poulain33cd1492017-08-17 19:59:51 +020093static inline void host_set_baudrate(struct hci_uart *hu, unsigned int speed)
94{
95 if (hu->serdev)
96 serdev_device_set_baudrate(hu->serdev, speed);
97 else
98 hci_uart_set_baudrate(hu, speed);
99}
100
Frederic Danis61b2fc22015-06-09 16:15:37 +0200101static int bcm_set_baudrate(struct hci_uart *hu, unsigned int speed)
102{
103 struct hci_dev *hdev = hu->hdev;
104 struct sk_buff *skb;
105 struct bcm_update_uart_baud_rate param;
106
107 if (speed > 3000000) {
108 struct bcm_write_uart_clock_setting clock;
109
110 clock.type = BCM_UART_CLOCK_48MHZ;
111
Frederic Danis65ad07c2015-09-01 12:13:36 +0200112 bt_dev_dbg(hdev, "Set Controller clock (%d)", clock.type);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200113
114 /* This Broadcom specific command changes the UART's controller
115 * clock for baud rate > 3000000.
116 */
117 skb = __hci_cmd_sync(hdev, 0xfc45, 1, &clock, HCI_INIT_TIMEOUT);
118 if (IS_ERR(skb)) {
119 int err = PTR_ERR(skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200120 bt_dev_err(hdev, "BCM: failed to write clock (%d)",
121 err);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200122 return err;
123 }
124
125 kfree_skb(skb);
126 }
127
Frederic Danis65ad07c2015-09-01 12:13:36 +0200128 bt_dev_dbg(hdev, "Set Controller UART speed to %d bit/s", speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200129
130 param.zero = cpu_to_le16(0);
131 param.baud_rate = cpu_to_le32(speed);
132
133 /* This Broadcom specific command changes the UART's controller baud
134 * rate.
135 */
136 skb = __hci_cmd_sync(hdev, 0xfc18, sizeof(param), &param,
137 HCI_INIT_TIMEOUT);
138 if (IS_ERR(skb)) {
139 int err = PTR_ERR(skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200140 bt_dev_err(hdev, "BCM: failed to write update baudrate (%d)",
141 err);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200142 return err;
143 }
144
145 kfree_skb(skb);
146
147 return 0;
148}
149
Frederic Danis917522a2015-08-28 15:44:00 +0200150/* bcm_device_exists should be protected by bcm_device_lock */
Frederic Danis0395ffc2015-08-11 16:35:35 +0200151static bool bcm_device_exists(struct bcm_device *device)
152{
153 struct list_head *p;
154
Arnd Bergmann81a19052017-10-11 15:46:21 +0200155#ifdef CONFIG_PM
Hans de Goede8a920562017-10-04 20:43:43 +0200156 /* Devices using serdev always exist */
157 if (device && device->hu && device->hu->serdev)
158 return true;
Arnd Bergmann81a19052017-10-11 15:46:21 +0200159#endif
Hans de Goede8a920562017-10-04 20:43:43 +0200160
Frederic Danis0395ffc2015-08-11 16:35:35 +0200161 list_for_each(p, &bcm_device_list) {
162 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
163
164 if (device == dev)
165 return true;
166 }
167
168 return false;
169}
170
171static int bcm_gpio_set_power(struct bcm_device *dev, bool powered)
172{
173 if (powered && !IS_ERR(dev->clk) && !dev->clk_enabled)
John Keeping730ce392017-03-15 12:20:05 +0000174 clk_prepare_enable(dev->clk);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200175
Loic Poulain2af0a702015-08-17 16:00:21 +0200176 gpiod_set_value(dev->shutdown, powered);
177 gpiod_set_value(dev->device_wakeup, powered);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200178
179 if (!powered && !IS_ERR(dev->clk) && dev->clk_enabled)
John Keeping730ce392017-03-15 12:20:05 +0000180 clk_disable_unprepare(dev->clk);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200181
182 dev->clk_enabled = powered;
183
184 return 0;
185}
186
Frederic Danisb7a622a2015-09-23 18:18:09 +0200187#ifdef CONFIG_PM
Frederic Danis6cc43962015-09-04 15:35:44 +0200188static irqreturn_t bcm_host_wake(int irq, void *data)
189{
190 struct bcm_device *bdev = data;
191
192 bt_dev_dbg(bdev, "Host wake IRQ");
193
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200194 pm_runtime_get(bdev->dev);
195 pm_runtime_mark_last_busy(bdev->dev);
196 pm_runtime_put_autosuspend(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200197
Frederic Danis6cc43962015-09-04 15:35:44 +0200198 return IRQ_HANDLED;
199}
200
201static int bcm_request_irq(struct bcm_data *bcm)
202{
203 struct bcm_device *bdev = bcm->dev;
Loic Poulain98dc77d2017-07-04 12:57:56 +0200204 int err;
Frederic Danis6cc43962015-09-04 15:35:44 +0200205
Frederic Danis6cc43962015-09-04 15:35:44 +0200206 mutex_lock(&bcm_device_lock);
207 if (!bcm_device_exists(bdev)) {
208 err = -ENODEV;
209 goto unlock;
210 }
211
Loic Poulain98dc77d2017-07-04 12:57:56 +0200212 if (bdev->irq <= 0) {
213 err = -EOPNOTSUPP;
214 goto unlock;
Frederic Danis6cc43962015-09-04 15:35:44 +0200215 }
216
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200217 err = devm_request_irq(bdev->dev, bdev->irq, bcm_host_wake,
Hans de Goede227630c2017-10-04 20:43:36 +0200218 bdev->irq_active_low ? IRQF_TRIGGER_FALLING :
219 IRQF_TRIGGER_RISING,
220 "host_wake", bdev);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200221 if (err)
222 goto unlock;
223
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200224 device_init_wakeup(bdev->dev, true);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200225
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200226 pm_runtime_set_autosuspend_delay(bdev->dev,
Loic Poulain98dc77d2017-07-04 12:57:56 +0200227 BCM_AUTOSUSPEND_DELAY);
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200228 pm_runtime_use_autosuspend(bdev->dev);
229 pm_runtime_set_active(bdev->dev);
230 pm_runtime_enable(bdev->dev);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200231
Frederic Danis6cc43962015-09-04 15:35:44 +0200232unlock:
233 mutex_unlock(&bcm_device_lock);
234
235 return err;
236}
237
238static const struct bcm_set_sleep_mode default_sleep_params = {
239 .sleep_mode = 1, /* 0=Disabled, 1=UART, 2=Reserved, 3=USB */
240 .idle_host = 2, /* idle threshold HOST, in 300ms */
241 .idle_dev = 2, /* idle threshold device, in 300ms */
242 .bt_wake_active = 1, /* BT_WAKE active mode: 1 = high, 0 = low */
243 .host_wake_active = 0, /* HOST_WAKE active mode: 1 = high, 0 = low */
244 .allow_host_sleep = 1, /* Allow host sleep in SCO flag */
Frederic Danise88ab302015-09-23 18:18:11 +0200245 .combine_modes = 1, /* Combine sleep and LPM flag */
Frederic Danis6cc43962015-09-04 15:35:44 +0200246 .tristate_control = 0, /* Allow tri-state control of UART tx flag */
247 /* Irrelevant USB flags */
248 .usb_auto_sleep = 0,
249 .usb_resume_timeout = 0,
250 .pulsed_host_wake = 0,
251 .break_to_host = 0
252};
253
254static int bcm_setup_sleep(struct hci_uart *hu)
255{
256 struct bcm_data *bcm = hu->priv;
257 struct sk_buff *skb;
258 struct bcm_set_sleep_mode sleep_params = default_sleep_params;
259
Hans de Goede227630c2017-10-04 20:43:36 +0200260 sleep_params.host_wake_active = !bcm->dev->irq_active_low;
Frederic Danis6cc43962015-09-04 15:35:44 +0200261
262 skb = __hci_cmd_sync(hu->hdev, 0xfc27, sizeof(sleep_params),
263 &sleep_params, HCI_INIT_TIMEOUT);
264 if (IS_ERR(skb)) {
265 int err = PTR_ERR(skb);
266 bt_dev_err(hu->hdev, "Sleep VSC failed (%d)", err);
267 return err;
268 }
269 kfree_skb(skb);
270
271 bt_dev_dbg(hu->hdev, "Set Sleep Parameters VSC succeeded");
272
273 return 0;
274}
275#else
276static inline int bcm_request_irq(struct bcm_data *bcm) { return 0; }
277static inline int bcm_setup_sleep(struct hci_uart *hu) { return 0; }
278#endif
279
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200280static int bcm_set_diag(struct hci_dev *hdev, bool enable)
281{
282 struct hci_uart *hu = hci_get_drvdata(hdev);
283 struct bcm_data *bcm = hu->priv;
284 struct sk_buff *skb;
285
286 if (!test_bit(HCI_RUNNING, &hdev->flags))
287 return -ENETDOWN;
288
289 skb = bt_skb_alloc(3, GFP_KERNEL);
Dan Carpentera1857392015-10-22 12:06:09 +0300290 if (!skb)
291 return -ENOMEM;
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200292
Johannes Berg634fef62017-06-16 14:29:24 +0200293 skb_put_u8(skb, BCM_LM_DIAG_PKT);
294 skb_put_u8(skb, 0xf0);
295 skb_put_u8(skb, enable);
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200296
297 skb_queue_tail(&bcm->txq, skb);
298 hci_uart_tx_wakeup(hu);
299
300 return 0;
301}
302
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700303static int bcm_open(struct hci_uart *hu)
304{
305 struct bcm_data *bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200306 struct list_head *p;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700307
Frederic Danis65ad07c2015-09-01 12:13:36 +0200308 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700309
310 bcm = kzalloc(sizeof(*bcm), GFP_KERNEL);
311 if (!bcm)
312 return -ENOMEM;
313
314 skb_queue_head_init(&bcm->txq);
315
316 hu->priv = bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200317
Hans de Goede8a920562017-10-04 20:43:43 +0200318 mutex_lock(&bcm_device_lock);
319
Loic Poulain33cd1492017-08-17 19:59:51 +0200320 if (hu->serdev) {
321 serdev_device_open(hu->serdev);
Hans de Goede8a920562017-10-04 20:43:43 +0200322 bcm->dev = serdev_device_get_drvdata(hu->serdev);
Loic Poulain33cd1492017-08-17 19:59:51 +0200323 goto out;
324 }
325
Johan Hovold95065a62017-03-29 18:15:27 +0200326 if (!hu->tty->dev)
327 goto out;
328
Frederic Danis0395ffc2015-08-11 16:35:35 +0200329 list_for_each(p, &bcm_device_list) {
330 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
331
332 /* Retrieve saved bcm_device based on parent of the
333 * platform device (saved during device probe) and
334 * parent of tty device used by hci_uart
335 */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200336 if (hu->tty->dev->parent == dev->dev->parent) {
Frederic Danis0395ffc2015-08-11 16:35:35 +0200337 bcm->dev = dev;
Frederic Danisb7a622a2015-09-23 18:18:09 +0200338#ifdef CONFIG_PM
Frederic Danis118612f2015-08-11 16:35:38 +0200339 dev->hu = hu;
340#endif
Frederic Danis0395ffc2015-08-11 16:35:35 +0200341 break;
342 }
343 }
344
Johan Hovold95065a62017-03-29 18:15:27 +0200345out:
Hans de Goede8a920562017-10-04 20:43:43 +0200346 if (bcm->dev) {
347 hu->init_speed = bcm->dev->init_speed;
348 hu->oper_speed = bcm->dev->oper_speed;
349 bcm_gpio_set_power(bcm->dev, true);
350 }
351
352 mutex_unlock(&bcm_device_lock);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700353 return 0;
354}
355
356static int bcm_close(struct hci_uart *hu)
357{
358 struct bcm_data *bcm = hu->priv;
Hans de Goede8a920562017-10-04 20:43:43 +0200359 struct bcm_device *bdev = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700360
Frederic Danis65ad07c2015-09-01 12:13:36 +0200361 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700362
Frederic Danis0395ffc2015-08-11 16:35:35 +0200363 /* Protect bcm->dev against removal of the device or driver */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200364 mutex_lock(&bcm_device_lock);
Hans de Goede8a920562017-10-04 20:43:43 +0200365
366 if (hu->serdev) {
367 serdev_device_close(hu->serdev);
368 bdev = serdev_device_get_drvdata(hu->serdev);
369 } else if (bcm_device_exists(bcm->dev)) {
370 bdev = bcm->dev;
371#ifdef CONFIG_PM
372 bdev->hu = NULL;
373#endif
374 }
375
376 if (bdev) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200377 bcm_gpio_set_power(bdev, false);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200378#ifdef CONFIG_PM
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200379 pm_runtime_disable(bdev->dev);
380 pm_runtime_set_suspended(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200381
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200382 if (device_can_wakeup(bdev->dev)) {
383 devm_free_irq(bdev->dev, bdev->irq, bdev);
384 device_init_wakeup(bdev->dev, false);
Frederic Danis6cc43962015-09-04 15:35:44 +0200385 }
Frederic Danis118612f2015-08-11 16:35:38 +0200386#endif
387 }
Frederic Danisbb3ea162015-09-01 12:13:35 +0200388 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200389
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700390 skb_queue_purge(&bcm->txq);
391 kfree_skb(bcm->rx_skb);
392 kfree(bcm);
393
394 hu->priv = NULL;
395 return 0;
396}
397
398static int bcm_flush(struct hci_uart *hu)
399{
400 struct bcm_data *bcm = hu->priv;
401
Frederic Danis65ad07c2015-09-01 12:13:36 +0200402 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700403
404 skb_queue_purge(&bcm->txq);
405
406 return 0;
407}
408
409static int bcm_setup(struct hci_uart *hu)
410{
Frederic Danis6cc43962015-09-04 15:35:44 +0200411 struct bcm_data *bcm = hu->priv;
Frederic Danis6be09b42015-05-28 11:25:05 +0200412 char fw_name[64];
413 const struct firmware *fw;
Frederic Danis960ef1d2015-06-18 12:43:27 +0200414 unsigned int speed;
Frederic Danis6be09b42015-05-28 11:25:05 +0200415 int err;
416
Frederic Danis65ad07c2015-09-01 12:13:36 +0200417 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700418
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200419 hu->hdev->set_diag = bcm_set_diag;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700420 hu->hdev->set_bdaddr = btbcm_set_bdaddr;
421
Frederic Danis6be09b42015-05-28 11:25:05 +0200422 err = btbcm_initialize(hu->hdev, fw_name, sizeof(fw_name));
423 if (err)
424 return err;
425
426 err = request_firmware(&fw, fw_name, &hu->hdev->dev);
427 if (err < 0) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200428 bt_dev_info(hu->hdev, "BCM: Patch %s not found", fw_name);
Frederic Danis6be09b42015-05-28 11:25:05 +0200429 return 0;
430 }
431
432 err = btbcm_patchram(hu->hdev, fw);
433 if (err) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200434 bt_dev_info(hu->hdev, "BCM: Patch failed (%d)", err);
Frederic Danis6be09b42015-05-28 11:25:05 +0200435 goto finalize;
436 }
437
Frederic Danis960ef1d2015-06-18 12:43:27 +0200438 /* Init speed if any */
439 if (hu->init_speed)
440 speed = hu->init_speed;
441 else if (hu->proto->init_speed)
442 speed = hu->proto->init_speed;
443 else
444 speed = 0;
Frederic Danis6be09b42015-05-28 11:25:05 +0200445
Frederic Danis960ef1d2015-06-18 12:43:27 +0200446 if (speed)
Loic Poulain33cd1492017-08-17 19:59:51 +0200447 host_set_baudrate(hu, speed);
Frederic Danis960ef1d2015-06-18 12:43:27 +0200448
449 /* Operational speed if any */
450 if (hu->oper_speed)
451 speed = hu->oper_speed;
452 else if (hu->proto->oper_speed)
453 speed = hu->proto->oper_speed;
454 else
455 speed = 0;
456
457 if (speed) {
458 err = bcm_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200459 if (!err)
Loic Poulain33cd1492017-08-17 19:59:51 +0200460 host_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200461 }
462
Frederic Danis6be09b42015-05-28 11:25:05 +0200463finalize:
464 release_firmware(fw);
465
466 err = btbcm_finalize(hu->hdev);
Frederic Danis6cc43962015-09-04 15:35:44 +0200467 if (err)
468 return err;
469
Loic Poulaincdd24a22017-06-27 19:15:07 +0200470 if (!bcm_request_irq(bcm))
Frederic Danis6cc43962015-09-04 15:35:44 +0200471 err = bcm_setup_sleep(hu);
Frederic Danis6be09b42015-05-28 11:25:05 +0200472
473 return err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700474}
475
Marcel Holtmann94c58132015-10-07 19:12:54 +0200476#define BCM_RECV_LM_DIAG \
477 .type = BCM_LM_DIAG_PKT, \
478 .hlen = BCM_LM_DIAG_SIZE, \
479 .loff = 0, \
480 .lsize = 0, \
481 .maxlen = BCM_LM_DIAG_SIZE
482
Marcel Holtmann01d5e442017-08-17 21:41:09 +0200483#define BCM_RECV_NULL \
484 .type = BCM_NULL_PKT, \
485 .hlen = BCM_NULL_SIZE, \
486 .loff = 0, \
487 .lsize = 0, \
488 .maxlen = BCM_NULL_SIZE
489
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700490static const struct h4_recv_pkt bcm_recv_pkts[] = {
Marcel Holtmann94c58132015-10-07 19:12:54 +0200491 { H4_RECV_ACL, .recv = hci_recv_frame },
492 { H4_RECV_SCO, .recv = hci_recv_frame },
493 { H4_RECV_EVENT, .recv = hci_recv_frame },
494 { BCM_RECV_LM_DIAG, .recv = hci_recv_diag },
Marcel Holtmann01d5e442017-08-17 21:41:09 +0200495 { BCM_RECV_NULL, .recv = hci_recv_diag },
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700496};
497
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700498static int bcm_recv(struct hci_uart *hu, const void *data, int count)
499{
500 struct bcm_data *bcm = hu->priv;
501
502 if (!test_bit(HCI_UART_REGISTERED, &hu->flags))
503 return -EUNATCH;
504
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700505 bcm->rx_skb = h4_recv_buf(hu->hdev, bcm->rx_skb, data, count,
506 bcm_recv_pkts, ARRAY_SIZE(bcm_recv_pkts));
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700507 if (IS_ERR(bcm->rx_skb)) {
508 int err = PTR_ERR(bcm->rx_skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200509 bt_dev_err(hu->hdev, "Frame reassembly failed (%d)", err);
Chan-yeol Park37134162015-06-17 21:10:39 +0900510 bcm->rx_skb = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700511 return err;
Frederic Danise88ab302015-09-23 18:18:11 +0200512 } else if (!bcm->rx_skb) {
513 /* Delay auto-suspend when receiving completed packet */
514 mutex_lock(&bcm_device_lock);
515 if (bcm->dev && bcm_device_exists(bcm->dev)) {
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200516 pm_runtime_get(bcm->dev->dev);
517 pm_runtime_mark_last_busy(bcm->dev->dev);
518 pm_runtime_put_autosuspend(bcm->dev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200519 }
520 mutex_unlock(&bcm_device_lock);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700521 }
522
523 return count;
524}
525
526static int bcm_enqueue(struct hci_uart *hu, struct sk_buff *skb)
527{
528 struct bcm_data *bcm = hu->priv;
529
Frederic Danis65ad07c2015-09-01 12:13:36 +0200530 bt_dev_dbg(hu->hdev, "hu %p skb %p", hu, skb);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700531
532 /* Prepend skb with frame type */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100533 memcpy(skb_push(skb, 1), &hci_skb_pkt_type(skb), 1);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700534 skb_queue_tail(&bcm->txq, skb);
535
536 return 0;
537}
538
539static struct sk_buff *bcm_dequeue(struct hci_uart *hu)
540{
541 struct bcm_data *bcm = hu->priv;
Frederic Danise88ab302015-09-23 18:18:11 +0200542 struct sk_buff *skb = NULL;
543 struct bcm_device *bdev = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700544
Frederic Danise88ab302015-09-23 18:18:11 +0200545 mutex_lock(&bcm_device_lock);
546
547 if (bcm_device_exists(bcm->dev)) {
548 bdev = bcm->dev;
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200549 pm_runtime_get_sync(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200550 /* Shall be resumed here */
551 }
552
553 skb = skb_dequeue(&bcm->txq);
554
555 if (bdev) {
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200556 pm_runtime_mark_last_busy(bdev->dev);
557 pm_runtime_put_autosuspend(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200558 }
559
560 mutex_unlock(&bcm_device_lock);
561
562 return skb;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700563}
564
Frederic Danisb7a622a2015-09-23 18:18:09 +0200565#ifdef CONFIG_PM
566static int bcm_suspend_device(struct device *dev)
Frederic Danis118612f2015-08-11 16:35:38 +0200567{
Hans de Goede78277d72017-10-04 20:43:42 +0200568 struct bcm_device *bdev = dev_get_drvdata(dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200569
Frederic Danisb7a622a2015-09-23 18:18:09 +0200570 bt_dev_dbg(bdev, "");
Frederic Danis118612f2015-08-11 16:35:38 +0200571
Frederic Danisb7a622a2015-09-23 18:18:09 +0200572 if (!bdev->is_suspended && bdev->hu) {
Frederic Danis118612f2015-08-11 16:35:38 +0200573 hci_uart_set_flow_control(bdev->hu, true);
574
Frederic Danisb7a622a2015-09-23 18:18:09 +0200575 /* Once this returns, driver suspends BT via GPIO */
Frederic Danis118612f2015-08-11 16:35:38 +0200576 bdev->is_suspended = true;
577 }
578
579 /* Suspend the device */
580 if (bdev->device_wakeup) {
581 gpiod_set_value(bdev->device_wakeup, false);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200582 bt_dev_dbg(bdev, "suspend, delaying 15 ms");
Frederic Danis118612f2015-08-11 16:35:38 +0200583 mdelay(15);
584 }
585
Frederic Danisb7a622a2015-09-23 18:18:09 +0200586 return 0;
587}
588
589static int bcm_resume_device(struct device *dev)
590{
Hans de Goede78277d72017-10-04 20:43:42 +0200591 struct bcm_device *bdev = dev_get_drvdata(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200592
593 bt_dev_dbg(bdev, "");
594
595 if (bdev->device_wakeup) {
596 gpiod_set_value(bdev->device_wakeup, true);
597 bt_dev_dbg(bdev, "resume, delaying 15 ms");
598 mdelay(15);
599 }
600
601 /* When this executes, the device has woken up already */
602 if (bdev->is_suspended && bdev->hu) {
603 bdev->is_suspended = false;
604
605 hci_uart_set_flow_control(bdev->hu, false);
606 }
607
608 return 0;
609}
610#endif
611
612#ifdef CONFIG_PM_SLEEP
Hans de Goede8a920562017-10-04 20:43:43 +0200613/* suspend callback */
Frederic Danisb7a622a2015-09-23 18:18:09 +0200614static int bcm_suspend(struct device *dev)
615{
Hans de Goede78277d72017-10-04 20:43:42 +0200616 struct bcm_device *bdev = dev_get_drvdata(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200617 int error;
618
619 bt_dev_dbg(bdev, "suspend: is_suspended %d", bdev->is_suspended);
620
Hans de Goede8a920562017-10-04 20:43:43 +0200621 /*
622 * When used with a device instantiated as platform_device, bcm_suspend
623 * can be called at any time as long as the platform device is bound,
624 * so it should use bcm_device_lock to protect access to hci_uart
Frederic Danisb7a622a2015-09-23 18:18:09 +0200625 * and device_wake-up GPIO.
626 */
627 mutex_lock(&bcm_device_lock);
628
629 if (!bdev->hu)
630 goto unlock;
631
Frederic Danise88ab302015-09-23 18:18:11 +0200632 if (pm_runtime_active(dev))
633 bcm_suspend_device(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200634
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200635 if (device_may_wakeup(dev)) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200636 error = enable_irq_wake(bdev->irq);
637 if (!error)
638 bt_dev_dbg(bdev, "BCM irq: enabled");
639 }
640
Frederic Danis917522a2015-08-28 15:44:00 +0200641unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200642 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200643
Frederic Danis118612f2015-08-11 16:35:38 +0200644 return 0;
645}
646
Hans de Goede8a920562017-10-04 20:43:43 +0200647/* resume callback */
Frederic Danis118612f2015-08-11 16:35:38 +0200648static int bcm_resume(struct device *dev)
649{
Hans de Goede78277d72017-10-04 20:43:42 +0200650 struct bcm_device *bdev = dev_get_drvdata(dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200651
Frederic Danis65ad07c2015-09-01 12:13:36 +0200652 bt_dev_dbg(bdev, "resume: is_suspended %d", bdev->is_suspended);
Frederic Danis118612f2015-08-11 16:35:38 +0200653
Hans de Goede8a920562017-10-04 20:43:43 +0200654 /*
655 * When used with a device instantiated as platform_device, bcm_resume
656 * can be called at any time as long as platform device is bound,
657 * so it should use bcm_device_lock to protect access to hci_uart
Frederic Danisb7a622a2015-09-23 18:18:09 +0200658 * and device_wake-up GPIO.
659 */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200660 mutex_lock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200661
662 if (!bdev->hu)
663 goto unlock;
664
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200665 if (device_may_wakeup(dev)) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200666 disable_irq_wake(bdev->irq);
667 bt_dev_dbg(bdev, "BCM irq: disabled");
668 }
669
Frederic Danisb7a622a2015-09-23 18:18:09 +0200670 bcm_resume_device(dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200671
Frederic Danis917522a2015-08-28 15:44:00 +0200672unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200673 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200674
Frederic Danise88ab302015-09-23 18:18:11 +0200675 pm_runtime_disable(dev);
676 pm_runtime_set_active(dev);
677 pm_runtime_enable(dev);
678
Frederic Danis118612f2015-08-11 16:35:38 +0200679 return 0;
680}
681#endif
682
Daniel Drake89ab37b2017-01-05 11:10:54 -0600683static const struct acpi_gpio_params int_last_device_wakeup_gpios = { 0, 0, false };
684static const struct acpi_gpio_params int_last_shutdown_gpios = { 1, 0, false };
685static const struct acpi_gpio_params int_last_host_wakeup_gpios = { 2, 0, false };
Frederic Danis0395ffc2015-08-11 16:35:35 +0200686
Daniel Drake89ab37b2017-01-05 11:10:54 -0600687static const struct acpi_gpio_mapping acpi_bcm_int_last_gpios[] = {
688 { "device-wakeup-gpios", &int_last_device_wakeup_gpios, 1 },
689 { "shutdown-gpios", &int_last_shutdown_gpios, 1 },
690 { "host-wakeup-gpios", &int_last_host_wakeup_gpios, 1 },
691 { },
692};
693
694static const struct acpi_gpio_params int_first_host_wakeup_gpios = { 0, 0, false };
695static const struct acpi_gpio_params int_first_device_wakeup_gpios = { 1, 0, false };
696static const struct acpi_gpio_params int_first_shutdown_gpios = { 2, 0, false };
697
698static const struct acpi_gpio_mapping acpi_bcm_int_first_gpios[] = {
699 { "device-wakeup-gpios", &int_first_device_wakeup_gpios, 1 },
700 { "shutdown-gpios", &int_first_shutdown_gpios, 1 },
701 { "host-wakeup-gpios", &int_first_host_wakeup_gpios, 1 },
Frederic Danis0395ffc2015-08-11 16:35:35 +0200702 { },
703};
704
Frederic Danis50d78bc2015-08-12 12:46:01 +0200705#ifdef CONFIG_ACPI
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200706/* IRQ polarity of some chipsets are not defined correctly in ACPI table. */
Hans de Goede227630c2017-10-04 20:43:36 +0200707static const struct dmi_system_id bcm_active_low_irq_dmi_table[] = {
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200708 {
709 .ident = "Asus T100TA",
710 .matches = {
711 DMI_EXACT_MATCH(DMI_SYS_VENDOR,
712 "ASUSTeK COMPUTER INC."),
713 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100TA"),
714 },
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200715 },
Hans de Goedec4c285d2017-06-29 14:21:32 +0200716 {
717 .ident = "Asus T100CHI",
718 .matches = {
719 DMI_EXACT_MATCH(DMI_SYS_VENDOR,
720 "ASUSTeK COMPUTER INC."),
721 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100CHI"),
722 },
Hans de Goedec4c285d2017-06-29 14:21:32 +0200723 },
Jérôme de Bretagne5e2bd932016-10-09 15:51:05 +0200724 { /* Handle ThinkPad 8 tablets with BCM2E55 chipset ACPI ID */
725 .ident = "Lenovo ThinkPad 8",
726 .matches = {
727 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
728 DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "ThinkPad 8"),
729 },
Jérôme de Bretagne5e2bd932016-10-09 15:51:05 +0200730 },
Ian W MORRISON1bdb68b2017-10-07 17:15:25 +1100731 {
732 .ident = "MINIX Z83-4",
733 .matches = {
734 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "MINIX"),
735 DMI_MATCH(DMI_PRODUCT_NAME, "Z83-4"),
736 },
737 },
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200738 { }
739};
740
Frederic Danisae056902015-08-11 16:35:37 +0200741static int bcm_resource(struct acpi_resource *ares, void *data)
742{
743 struct bcm_device *dev = data;
Frederic Danis6cc43962015-09-04 15:35:44 +0200744 struct acpi_resource_extended_irq *irq;
745 struct acpi_resource_gpio *gpio;
746 struct acpi_resource_uart_serialbus *sb;
Frederic Danisae056902015-08-11 16:35:37 +0200747
Frederic Danis6cc43962015-09-04 15:35:44 +0200748 switch (ares->type) {
749 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
750 irq = &ares->data.extended_irq;
Hans de Goede227630c2017-10-04 20:43:36 +0200751 dev->irq_active_low = irq->polarity == ACPI_ACTIVE_LOW;
Frederic Danis6cc43962015-09-04 15:35:44 +0200752 break;
Frederic Danisae056902015-08-11 16:35:37 +0200753
Frederic Danis6cc43962015-09-04 15:35:44 +0200754 case ACPI_RESOURCE_TYPE_GPIO:
755 gpio = &ares->data.gpio;
756 if (gpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT)
Hans de Goede227630c2017-10-04 20:43:36 +0200757 dev->irq_active_low = gpio->polarity == ACPI_ACTIVE_LOW;
Frederic Danis6cc43962015-09-04 15:35:44 +0200758 break;
759
760 case ACPI_RESOURCE_TYPE_SERIAL_BUS:
Frederic Danisae056902015-08-11 16:35:37 +0200761 sb = &ares->data.uart_serial_bus;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200762 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_UART) {
Frederic Danisae056902015-08-11 16:35:37 +0200763 dev->init_speed = sb->default_baud_rate;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200764 dev->oper_speed = 4000000;
765 }
Frederic Danis6cc43962015-09-04 15:35:44 +0200766 break;
767
768 default:
769 break;
Frederic Danisae056902015-08-11 16:35:37 +0200770 }
771
Hans de Goede9d54fd62017-10-04 20:43:41 +0200772 return 0;
Frederic Danisae056902015-08-11 16:35:37 +0200773}
Andy Shevchenko212d7182017-03-10 14:28:20 +0200774#endif /* CONFIG_ACPI */
Frederic Danisae056902015-08-11 16:35:37 +0200775
Hans de Goede42ef18f2017-10-04 20:43:40 +0200776static int bcm_get_resources(struct bcm_device *dev)
Frederic Danis0395ffc2015-08-11 16:35:35 +0200777{
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200778 dev->name = dev_name(dev->dev);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200779
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200780 dev->clk = devm_clk_get(dev->dev, NULL);
Daniel Drake89ab37b2017-01-05 11:10:54 -0600781
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200782 dev->device_wakeup = devm_gpiod_get_optional(dev->dev,
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200783 "device-wakeup",
784 GPIOD_OUT_LOW);
785 if (IS_ERR(dev->device_wakeup))
786 return PTR_ERR(dev->device_wakeup);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200787
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200788 dev->shutdown = devm_gpiod_get_optional(dev->dev, "shutdown",
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200789 GPIOD_OUT_LOW);
790 if (IS_ERR(dev->shutdown))
791 return PTR_ERR(dev->shutdown);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200792
Frederic Danis6cc43962015-09-04 15:35:44 +0200793 /* IRQ can be declared in ACPI table as Interrupt or GpioInt */
Frederic Danis6cc43962015-09-04 15:35:44 +0200794 if (dev->irq <= 0) {
795 struct gpio_desc *gpio;
796
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200797 gpio = devm_gpiod_get_optional(dev->dev, "host-wakeup",
Frederic Danis6cc43962015-09-04 15:35:44 +0200798 GPIOD_IN);
799 if (IS_ERR(gpio))
800 return PTR_ERR(gpio);
801
802 dev->irq = gpiod_to_irq(gpio);
803 }
804
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200805 dev_info(dev->dev, "BCM irq: %d\n", dev->irq);
Andy Shevchenko212d7182017-03-10 14:28:20 +0200806 return 0;
807}
808
809#ifdef CONFIG_ACPI
810static int bcm_acpi_probe(struct bcm_device *dev)
811{
Andy Shevchenko212d7182017-03-10 14:28:20 +0200812 LIST_HEAD(resources);
813 const struct dmi_system_id *dmi_id;
814 const struct acpi_gpio_mapping *gpio_mapping = acpi_bcm_int_last_gpios;
815 const struct acpi_device_id *id;
Hans de Goede9d54fd62017-10-04 20:43:41 +0200816 struct resource_entry *entry;
Andy Shevchenko212d7182017-03-10 14:28:20 +0200817 int ret;
818
819 /* Retrieve GPIO data */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200820 id = acpi_match_device(dev->dev->driver->acpi_match_table, dev->dev);
Andy Shevchenko212d7182017-03-10 14:28:20 +0200821 if (id)
822 gpio_mapping = (const struct acpi_gpio_mapping *) id->driver_data;
823
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200824 ret = devm_acpi_dev_add_driver_gpios(dev->dev, gpio_mapping);
Andy Shevchenko212d7182017-03-10 14:28:20 +0200825 if (ret)
826 return ret;
827
Frederic Danisae056902015-08-11 16:35:37 +0200828 /* Retrieve UART ACPI info */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200829 ret = acpi_dev_get_resources(ACPI_COMPANION(dev->dev),
Jarkko Nikulae98d6d62015-09-30 16:26:45 +0300830 &resources, bcm_resource, dev);
Jarkko Nikula5be00282015-09-30 16:26:42 +0300831 if (ret < 0)
832 return ret;
Hans de Goede9d54fd62017-10-04 20:43:41 +0200833
834 resource_list_for_each_entry(entry, &resources) {
835 if (resource_type(entry->res) == IORESOURCE_IRQ) {
836 dev->irq = entry->res->start;
837 break;
838 }
839 }
Jarkko Nikula09dbf1b2015-09-30 16:26:41 +0300840 acpi_dev_free_resource_list(&resources);
Frederic Danisae056902015-08-11 16:35:37 +0200841
Hans de Goede227630c2017-10-04 20:43:36 +0200842 dmi_id = dmi_first_match(bcm_active_low_irq_dmi_table);
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200843 if (dmi_id) {
Ian W MORRISONe8bfe862017-10-07 17:16:08 +1100844 dev_warn(dev->dev, "%s: Overwriting IRQ polarity to active low",
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200845 dmi_id->ident);
Hans de Goede227630c2017-10-04 20:43:36 +0200846 dev->irq_active_low = true;
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200847 }
848
Frederic Danis0395ffc2015-08-11 16:35:35 +0200849 return 0;
850}
Frederic Danis50d78bc2015-08-12 12:46:01 +0200851#else
852static int bcm_acpi_probe(struct bcm_device *dev)
853{
854 return -EINVAL;
855}
856#endif /* CONFIG_ACPI */
Frederic Danis0395ffc2015-08-11 16:35:35 +0200857
Hans de Goede8a920562017-10-04 20:43:43 +0200858static int bcm_of_probe(struct bcm_device *bdev)
859{
860 device_property_read_u32(bdev->dev, "max-speed", &bdev->oper_speed);
861 return 0;
862}
863
Frederic Danis0395ffc2015-08-11 16:35:35 +0200864static int bcm_probe(struct platform_device *pdev)
865{
866 struct bcm_device *dev;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200867 int ret;
868
869 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
870 if (!dev)
871 return -ENOMEM;
872
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200873 dev->dev = &pdev->dev;
Hans de Goede4a56f892017-10-04 20:43:38 +0200874 dev->irq = platform_get_irq(pdev, 0);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200875
Hans de Goede201762e2017-10-04 20:43:37 +0200876 if (has_acpi_companion(&pdev->dev)) {
Andy Shevchenko212d7182017-03-10 14:28:20 +0200877 ret = bcm_acpi_probe(dev);
Hans de Goede201762e2017-10-04 20:43:37 +0200878 if (ret)
879 return ret;
880 }
881
Hans de Goede42ef18f2017-10-04 20:43:40 +0200882 ret = bcm_get_resources(dev);
Jarkko Nikula4d1c4552015-09-30 16:26:44 +0300883 if (ret)
884 return ret;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200885
886 platform_set_drvdata(pdev, dev);
887
888 dev_info(&pdev->dev, "%s device registered.\n", dev->name);
889
890 /* Place this instance on the device list */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200891 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200892 list_add_tail(&dev->list, &bcm_device_list);
Frederic Danisbb3ea162015-09-01 12:13:35 +0200893 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200894
895 bcm_gpio_set_power(dev, false);
896
897 return 0;
898}
899
900static int bcm_remove(struct platform_device *pdev)
901{
902 struct bcm_device *dev = platform_get_drvdata(pdev);
903
Frederic Danisbb3ea162015-09-01 12:13:35 +0200904 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200905 list_del(&dev->list);
Frederic Danisbb3ea162015-09-01 12:13:35 +0200906 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200907
Frederic Danis0395ffc2015-08-11 16:35:35 +0200908 dev_info(&pdev->dev, "%s device unregistered.\n", dev->name);
909
910 return 0;
911}
912
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700913static const struct hci_uart_proto bcm_proto = {
914 .id = HCI_UART_BCM,
Loic Poulain143f0a22016-09-19 12:05:12 +0200915 .name = "Broadcom",
Marcel Holtmannaee61f72015-10-20 21:30:45 +0200916 .manufacturer = 15,
Frederic Danis61b2fc22015-06-09 16:15:37 +0200917 .init_speed = 115200,
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700918 .open = bcm_open,
919 .close = bcm_close,
920 .flush = bcm_flush,
921 .setup = bcm_setup,
Frederic Danis61b2fc22015-06-09 16:15:37 +0200922 .set_baudrate = bcm_set_baudrate,
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700923 .recv = bcm_recv,
924 .enqueue = bcm_enqueue,
925 .dequeue = bcm_dequeue,
926};
927
Frederic Danis0395ffc2015-08-11 16:35:35 +0200928#ifdef CONFIG_ACPI
929static const struct acpi_device_id bcm_acpi_match[] = {
Daniel Drake89ab37b2017-01-05 11:10:54 -0600930 { "BCM2E1A", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
931 { "BCM2E39", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
932 { "BCM2E3A", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
933 { "BCM2E3D", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
934 { "BCM2E3F", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
935 { "BCM2E40", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
936 { "BCM2E54", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
937 { "BCM2E55", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
938 { "BCM2E64", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
939 { "BCM2E65", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
940 { "BCM2E67", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
941 { "BCM2E71", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
942 { "BCM2E7B", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
943 { "BCM2E7C", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
944 { "BCM2E95", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
945 { "BCM2E96", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
Ian W MORRISON1bdb68b2017-10-07 17:15:25 +1100946 { "BCM2EA4", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
Frederic Danis0395ffc2015-08-11 16:35:35 +0200947 { },
948};
949MODULE_DEVICE_TABLE(acpi, bcm_acpi_match);
950#endif
951
Hans de Goede8a920562017-10-04 20:43:43 +0200952/* suspend and resume callbacks */
Frederic Danise88ab302015-09-23 18:18:11 +0200953static const struct dev_pm_ops bcm_pm_ops = {
954 SET_SYSTEM_SLEEP_PM_OPS(bcm_suspend, bcm_resume)
955 SET_RUNTIME_PM_OPS(bcm_suspend_device, bcm_resume_device, NULL)
956};
Frederic Danis118612f2015-08-11 16:35:38 +0200957
Frederic Danis0395ffc2015-08-11 16:35:35 +0200958static struct platform_driver bcm_driver = {
959 .probe = bcm_probe,
960 .remove = bcm_remove,
961 .driver = {
962 .name = "hci_bcm",
963 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
Frederic Danis118612f2015-08-11 16:35:38 +0200964 .pm = &bcm_pm_ops,
Frederic Danis0395ffc2015-08-11 16:35:35 +0200965 },
966};
967
Loic Poulain33cd1492017-08-17 19:59:51 +0200968static int bcm_serdev_probe(struct serdev_device *serdev)
969{
Hans de Goede8a920562017-10-04 20:43:43 +0200970 struct bcm_device *bcmdev;
Loic Poulain33cd1492017-08-17 19:59:51 +0200971 int err;
972
973 bcmdev = devm_kzalloc(&serdev->dev, sizeof(*bcmdev), GFP_KERNEL);
974 if (!bcmdev)
975 return -ENOMEM;
976
Hans de Goede8a920562017-10-04 20:43:43 +0200977 bcmdev->dev = &serdev->dev;
Arnd Bergmann81a19052017-10-11 15:46:21 +0200978#ifdef CONFIG_PM
Hans de Goede8a920562017-10-04 20:43:43 +0200979 bcmdev->hu = &bcmdev->serdev_hu;
Arnd Bergmann81a19052017-10-11 15:46:21 +0200980#endif
Hans de Goede8a920562017-10-04 20:43:43 +0200981 bcmdev->serdev_hu.serdev = serdev;
Loic Poulain33cd1492017-08-17 19:59:51 +0200982 serdev_device_set_drvdata(serdev, bcmdev);
983
Hans de Goede8a920562017-10-04 20:43:43 +0200984 if (has_acpi_companion(&serdev->dev))
985 err = bcm_acpi_probe(bcmdev);
986 else
987 err = bcm_of_probe(bcmdev);
988 if (err)
989 return err;
Loic Poulain33cd1492017-08-17 19:59:51 +0200990
Hans de Goede8a920562017-10-04 20:43:43 +0200991 err = bcm_get_resources(bcmdev);
992 if (err)
993 return err;
994
995 bcm_gpio_set_power(bcmdev, false);
996
997 return hci_uart_register_device(&bcmdev->serdev_hu, &bcm_proto);
Loic Poulain33cd1492017-08-17 19:59:51 +0200998}
999
1000static void bcm_serdev_remove(struct serdev_device *serdev)
1001{
Hans de Goede8a920562017-10-04 20:43:43 +02001002 struct bcm_device *bcmdev = serdev_device_get_drvdata(serdev);
Loic Poulain33cd1492017-08-17 19:59:51 +02001003
Hans de Goede8a920562017-10-04 20:43:43 +02001004 hci_uart_unregister_device(&bcmdev->serdev_hu);
Loic Poulain33cd1492017-08-17 19:59:51 +02001005}
1006
1007#ifdef CONFIG_OF
1008static const struct of_device_id bcm_bluetooth_of_match[] = {
1009 { .compatible = "brcm,bcm43438-bt" },
1010 { },
1011};
1012MODULE_DEVICE_TABLE(of, bcm_bluetooth_of_match);
1013#endif
1014
1015static struct serdev_device_driver bcm_serdev_driver = {
1016 .probe = bcm_serdev_probe,
1017 .remove = bcm_serdev_remove,
1018 .driver = {
1019 .name = "hci_uart_bcm",
1020 .of_match_table = of_match_ptr(bcm_bluetooth_of_match),
Hans de Goede8a920562017-10-04 20:43:43 +02001021 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
1022 .pm = &bcm_pm_ops,
Loic Poulain33cd1492017-08-17 19:59:51 +02001023 },
1024};
1025
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001026int __init bcm_init(void)
1027{
Loic Poulain33cd1492017-08-17 19:59:51 +02001028 /* For now, we need to keep both platform device
1029 * driver (ACPI generated) and serdev driver (DT).
1030 */
Frederic Danis0395ffc2015-08-11 16:35:35 +02001031 platform_driver_register(&bcm_driver);
Loic Poulain33cd1492017-08-17 19:59:51 +02001032 serdev_device_driver_register(&bcm_serdev_driver);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001033
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001034 return hci_uart_register_proto(&bcm_proto);
1035}
1036
1037int __exit bcm_deinit(void)
1038{
Frederic Danis0395ffc2015-08-11 16:35:35 +02001039 platform_driver_unregister(&bcm_driver);
Loic Poulain33cd1492017-08-17 19:59:51 +02001040 serdev_device_driver_unregister(&bcm_serdev_driver);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001041
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001042 return hci_uart_unregister_proto(&bcm_proto);
1043}