blob: ab1455e63b9270724fd4c1d6abae0afb36a4b516 [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
Hans de Goede8a920562017-10-04 20:43:43 +0200155 /* Devices using serdev always exist */
156 if (device && device->hu && device->hu->serdev)
157 return true;
158
Frederic Danis0395ffc2015-08-11 16:35:35 +0200159 list_for_each(p, &bcm_device_list) {
160 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
161
162 if (device == dev)
163 return true;
164 }
165
166 return false;
167}
168
169static int bcm_gpio_set_power(struct bcm_device *dev, bool powered)
170{
171 if (powered && !IS_ERR(dev->clk) && !dev->clk_enabled)
John Keeping730ce392017-03-15 12:20:05 +0000172 clk_prepare_enable(dev->clk);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200173
Loic Poulain2af0a702015-08-17 16:00:21 +0200174 gpiod_set_value(dev->shutdown, powered);
175 gpiod_set_value(dev->device_wakeup, powered);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200176
177 if (!powered && !IS_ERR(dev->clk) && dev->clk_enabled)
John Keeping730ce392017-03-15 12:20:05 +0000178 clk_disable_unprepare(dev->clk);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200179
180 dev->clk_enabled = powered;
181
182 return 0;
183}
184
Frederic Danisb7a622a2015-09-23 18:18:09 +0200185#ifdef CONFIG_PM
Frederic Danis6cc43962015-09-04 15:35:44 +0200186static irqreturn_t bcm_host_wake(int irq, void *data)
187{
188 struct bcm_device *bdev = data;
189
190 bt_dev_dbg(bdev, "Host wake IRQ");
191
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200192 pm_runtime_get(bdev->dev);
193 pm_runtime_mark_last_busy(bdev->dev);
194 pm_runtime_put_autosuspend(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200195
Frederic Danis6cc43962015-09-04 15:35:44 +0200196 return IRQ_HANDLED;
197}
198
199static int bcm_request_irq(struct bcm_data *bcm)
200{
201 struct bcm_device *bdev = bcm->dev;
Loic Poulain98dc77d2017-07-04 12:57:56 +0200202 int err;
Frederic Danis6cc43962015-09-04 15:35:44 +0200203
Frederic Danis6cc43962015-09-04 15:35:44 +0200204 mutex_lock(&bcm_device_lock);
205 if (!bcm_device_exists(bdev)) {
206 err = -ENODEV;
207 goto unlock;
208 }
209
Loic Poulain98dc77d2017-07-04 12:57:56 +0200210 if (bdev->irq <= 0) {
211 err = -EOPNOTSUPP;
212 goto unlock;
Frederic Danis6cc43962015-09-04 15:35:44 +0200213 }
214
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200215 err = devm_request_irq(bdev->dev, bdev->irq, bcm_host_wake,
Hans de Goede227630c2017-10-04 20:43:36 +0200216 bdev->irq_active_low ? IRQF_TRIGGER_FALLING :
217 IRQF_TRIGGER_RISING,
218 "host_wake", bdev);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200219 if (err)
220 goto unlock;
221
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200222 device_init_wakeup(bdev->dev, true);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200223
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200224 pm_runtime_set_autosuspend_delay(bdev->dev,
Loic Poulain98dc77d2017-07-04 12:57:56 +0200225 BCM_AUTOSUSPEND_DELAY);
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200226 pm_runtime_use_autosuspend(bdev->dev);
227 pm_runtime_set_active(bdev->dev);
228 pm_runtime_enable(bdev->dev);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200229
Frederic Danis6cc43962015-09-04 15:35:44 +0200230unlock:
231 mutex_unlock(&bcm_device_lock);
232
233 return err;
234}
235
236static const struct bcm_set_sleep_mode default_sleep_params = {
237 .sleep_mode = 1, /* 0=Disabled, 1=UART, 2=Reserved, 3=USB */
238 .idle_host = 2, /* idle threshold HOST, in 300ms */
239 .idle_dev = 2, /* idle threshold device, in 300ms */
240 .bt_wake_active = 1, /* BT_WAKE active mode: 1 = high, 0 = low */
241 .host_wake_active = 0, /* HOST_WAKE active mode: 1 = high, 0 = low */
242 .allow_host_sleep = 1, /* Allow host sleep in SCO flag */
Frederic Danise88ab302015-09-23 18:18:11 +0200243 .combine_modes = 1, /* Combine sleep and LPM flag */
Frederic Danis6cc43962015-09-04 15:35:44 +0200244 .tristate_control = 0, /* Allow tri-state control of UART tx flag */
245 /* Irrelevant USB flags */
246 .usb_auto_sleep = 0,
247 .usb_resume_timeout = 0,
248 .pulsed_host_wake = 0,
249 .break_to_host = 0
250};
251
252static int bcm_setup_sleep(struct hci_uart *hu)
253{
254 struct bcm_data *bcm = hu->priv;
255 struct sk_buff *skb;
256 struct bcm_set_sleep_mode sleep_params = default_sleep_params;
257
Hans de Goede227630c2017-10-04 20:43:36 +0200258 sleep_params.host_wake_active = !bcm->dev->irq_active_low;
Frederic Danis6cc43962015-09-04 15:35:44 +0200259
260 skb = __hci_cmd_sync(hu->hdev, 0xfc27, sizeof(sleep_params),
261 &sleep_params, HCI_INIT_TIMEOUT);
262 if (IS_ERR(skb)) {
263 int err = PTR_ERR(skb);
264 bt_dev_err(hu->hdev, "Sleep VSC failed (%d)", err);
265 return err;
266 }
267 kfree_skb(skb);
268
269 bt_dev_dbg(hu->hdev, "Set Sleep Parameters VSC succeeded");
270
271 return 0;
272}
273#else
274static inline int bcm_request_irq(struct bcm_data *bcm) { return 0; }
275static inline int bcm_setup_sleep(struct hci_uart *hu) { return 0; }
276#endif
277
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200278static int bcm_set_diag(struct hci_dev *hdev, bool enable)
279{
280 struct hci_uart *hu = hci_get_drvdata(hdev);
281 struct bcm_data *bcm = hu->priv;
282 struct sk_buff *skb;
283
284 if (!test_bit(HCI_RUNNING, &hdev->flags))
285 return -ENETDOWN;
286
287 skb = bt_skb_alloc(3, GFP_KERNEL);
Dan Carpentera1857392015-10-22 12:06:09 +0300288 if (!skb)
289 return -ENOMEM;
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200290
Johannes Berg634fef62017-06-16 14:29:24 +0200291 skb_put_u8(skb, BCM_LM_DIAG_PKT);
292 skb_put_u8(skb, 0xf0);
293 skb_put_u8(skb, enable);
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200294
295 skb_queue_tail(&bcm->txq, skb);
296 hci_uart_tx_wakeup(hu);
297
298 return 0;
299}
300
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700301static int bcm_open(struct hci_uart *hu)
302{
303 struct bcm_data *bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200304 struct list_head *p;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700305
Frederic Danis65ad07c2015-09-01 12:13:36 +0200306 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700307
308 bcm = kzalloc(sizeof(*bcm), GFP_KERNEL);
309 if (!bcm)
310 return -ENOMEM;
311
312 skb_queue_head_init(&bcm->txq);
313
314 hu->priv = bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200315
Hans de Goede8a920562017-10-04 20:43:43 +0200316 mutex_lock(&bcm_device_lock);
317
Loic Poulain33cd1492017-08-17 19:59:51 +0200318 if (hu->serdev) {
319 serdev_device_open(hu->serdev);
Hans de Goede8a920562017-10-04 20:43:43 +0200320 bcm->dev = serdev_device_get_drvdata(hu->serdev);
Loic Poulain33cd1492017-08-17 19:59:51 +0200321 goto out;
322 }
323
Johan Hovold95065a62017-03-29 18:15:27 +0200324 if (!hu->tty->dev)
325 goto out;
326
Frederic Danis0395ffc2015-08-11 16:35:35 +0200327 list_for_each(p, &bcm_device_list) {
328 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
329
330 /* Retrieve saved bcm_device based on parent of the
331 * platform device (saved during device probe) and
332 * parent of tty device used by hci_uart
333 */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200334 if (hu->tty->dev->parent == dev->dev->parent) {
Frederic Danis0395ffc2015-08-11 16:35:35 +0200335 bcm->dev = dev;
Frederic Danisb7a622a2015-09-23 18:18:09 +0200336#ifdef CONFIG_PM
Frederic Danis118612f2015-08-11 16:35:38 +0200337 dev->hu = hu;
338#endif
Frederic Danis0395ffc2015-08-11 16:35:35 +0200339 break;
340 }
341 }
342
Johan Hovold95065a62017-03-29 18:15:27 +0200343out:
Hans de Goede8a920562017-10-04 20:43:43 +0200344 if (bcm->dev) {
345 hu->init_speed = bcm->dev->init_speed;
346 hu->oper_speed = bcm->dev->oper_speed;
347 bcm_gpio_set_power(bcm->dev, true);
348 }
349
350 mutex_unlock(&bcm_device_lock);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700351 return 0;
352}
353
354static int bcm_close(struct hci_uart *hu)
355{
356 struct bcm_data *bcm = hu->priv;
Hans de Goede8a920562017-10-04 20:43:43 +0200357 struct bcm_device *bdev = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700358
Frederic Danis65ad07c2015-09-01 12:13:36 +0200359 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700360
Frederic Danis0395ffc2015-08-11 16:35:35 +0200361 /* Protect bcm->dev against removal of the device or driver */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200362 mutex_lock(&bcm_device_lock);
Hans de Goede8a920562017-10-04 20:43:43 +0200363
364 if (hu->serdev) {
365 serdev_device_close(hu->serdev);
366 bdev = serdev_device_get_drvdata(hu->serdev);
367 } else if (bcm_device_exists(bcm->dev)) {
368 bdev = bcm->dev;
369#ifdef CONFIG_PM
370 bdev->hu = NULL;
371#endif
372 }
373
374 if (bdev) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200375 bcm_gpio_set_power(bdev, false);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200376#ifdef CONFIG_PM
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200377 pm_runtime_disable(bdev->dev);
378 pm_runtime_set_suspended(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200379
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200380 if (device_can_wakeup(bdev->dev)) {
381 devm_free_irq(bdev->dev, bdev->irq, bdev);
382 device_init_wakeup(bdev->dev, false);
Frederic Danis6cc43962015-09-04 15:35:44 +0200383 }
Frederic Danis118612f2015-08-11 16:35:38 +0200384#endif
385 }
Frederic Danisbb3ea162015-09-01 12:13:35 +0200386 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200387
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700388 skb_queue_purge(&bcm->txq);
389 kfree_skb(bcm->rx_skb);
390 kfree(bcm);
391
392 hu->priv = NULL;
393 return 0;
394}
395
396static int bcm_flush(struct hci_uart *hu)
397{
398 struct bcm_data *bcm = hu->priv;
399
Frederic Danis65ad07c2015-09-01 12:13:36 +0200400 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700401
402 skb_queue_purge(&bcm->txq);
403
404 return 0;
405}
406
407static int bcm_setup(struct hci_uart *hu)
408{
Frederic Danis6cc43962015-09-04 15:35:44 +0200409 struct bcm_data *bcm = hu->priv;
Frederic Danis6be09b42015-05-28 11:25:05 +0200410 char fw_name[64];
411 const struct firmware *fw;
Frederic Danis960ef1d2015-06-18 12:43:27 +0200412 unsigned int speed;
Frederic Danis6be09b42015-05-28 11:25:05 +0200413 int err;
414
Frederic Danis65ad07c2015-09-01 12:13:36 +0200415 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700416
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200417 hu->hdev->set_diag = bcm_set_diag;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700418 hu->hdev->set_bdaddr = btbcm_set_bdaddr;
419
Frederic Danis6be09b42015-05-28 11:25:05 +0200420 err = btbcm_initialize(hu->hdev, fw_name, sizeof(fw_name));
421 if (err)
422 return err;
423
424 err = request_firmware(&fw, fw_name, &hu->hdev->dev);
425 if (err < 0) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200426 bt_dev_info(hu->hdev, "BCM: Patch %s not found", fw_name);
Frederic Danis6be09b42015-05-28 11:25:05 +0200427 return 0;
428 }
429
430 err = btbcm_patchram(hu->hdev, fw);
431 if (err) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200432 bt_dev_info(hu->hdev, "BCM: Patch failed (%d)", err);
Frederic Danis6be09b42015-05-28 11:25:05 +0200433 goto finalize;
434 }
435
Frederic Danis960ef1d2015-06-18 12:43:27 +0200436 /* Init speed if any */
437 if (hu->init_speed)
438 speed = hu->init_speed;
439 else if (hu->proto->init_speed)
440 speed = hu->proto->init_speed;
441 else
442 speed = 0;
Frederic Danis6be09b42015-05-28 11:25:05 +0200443
Frederic Danis960ef1d2015-06-18 12:43:27 +0200444 if (speed)
Loic Poulain33cd1492017-08-17 19:59:51 +0200445 host_set_baudrate(hu, speed);
Frederic Danis960ef1d2015-06-18 12:43:27 +0200446
447 /* Operational speed if any */
448 if (hu->oper_speed)
449 speed = hu->oper_speed;
450 else if (hu->proto->oper_speed)
451 speed = hu->proto->oper_speed;
452 else
453 speed = 0;
454
455 if (speed) {
456 err = bcm_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200457 if (!err)
Loic Poulain33cd1492017-08-17 19:59:51 +0200458 host_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200459 }
460
Frederic Danis6be09b42015-05-28 11:25:05 +0200461finalize:
462 release_firmware(fw);
463
464 err = btbcm_finalize(hu->hdev);
Frederic Danis6cc43962015-09-04 15:35:44 +0200465 if (err)
466 return err;
467
Loic Poulaincdd24a22017-06-27 19:15:07 +0200468 if (!bcm_request_irq(bcm))
Frederic Danis6cc43962015-09-04 15:35:44 +0200469 err = bcm_setup_sleep(hu);
Frederic Danis6be09b42015-05-28 11:25:05 +0200470
471 return err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700472}
473
Marcel Holtmann94c58132015-10-07 19:12:54 +0200474#define BCM_RECV_LM_DIAG \
475 .type = BCM_LM_DIAG_PKT, \
476 .hlen = BCM_LM_DIAG_SIZE, \
477 .loff = 0, \
478 .lsize = 0, \
479 .maxlen = BCM_LM_DIAG_SIZE
480
Marcel Holtmann01d5e442017-08-17 21:41:09 +0200481#define BCM_RECV_NULL \
482 .type = BCM_NULL_PKT, \
483 .hlen = BCM_NULL_SIZE, \
484 .loff = 0, \
485 .lsize = 0, \
486 .maxlen = BCM_NULL_SIZE
487
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700488static const struct h4_recv_pkt bcm_recv_pkts[] = {
Marcel Holtmann94c58132015-10-07 19:12:54 +0200489 { H4_RECV_ACL, .recv = hci_recv_frame },
490 { H4_RECV_SCO, .recv = hci_recv_frame },
491 { H4_RECV_EVENT, .recv = hci_recv_frame },
492 { BCM_RECV_LM_DIAG, .recv = hci_recv_diag },
Marcel Holtmann01d5e442017-08-17 21:41:09 +0200493 { BCM_RECV_NULL, .recv = hci_recv_diag },
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700494};
495
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700496static int bcm_recv(struct hci_uart *hu, const void *data, int count)
497{
498 struct bcm_data *bcm = hu->priv;
499
500 if (!test_bit(HCI_UART_REGISTERED, &hu->flags))
501 return -EUNATCH;
502
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700503 bcm->rx_skb = h4_recv_buf(hu->hdev, bcm->rx_skb, data, count,
504 bcm_recv_pkts, ARRAY_SIZE(bcm_recv_pkts));
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700505 if (IS_ERR(bcm->rx_skb)) {
506 int err = PTR_ERR(bcm->rx_skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200507 bt_dev_err(hu->hdev, "Frame reassembly failed (%d)", err);
Chan-yeol Park37134162015-06-17 21:10:39 +0900508 bcm->rx_skb = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700509 return err;
Frederic Danise88ab302015-09-23 18:18:11 +0200510 } else if (!bcm->rx_skb) {
511 /* Delay auto-suspend when receiving completed packet */
512 mutex_lock(&bcm_device_lock);
513 if (bcm->dev && bcm_device_exists(bcm->dev)) {
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200514 pm_runtime_get(bcm->dev->dev);
515 pm_runtime_mark_last_busy(bcm->dev->dev);
516 pm_runtime_put_autosuspend(bcm->dev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200517 }
518 mutex_unlock(&bcm_device_lock);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700519 }
520
521 return count;
522}
523
524static int bcm_enqueue(struct hci_uart *hu, struct sk_buff *skb)
525{
526 struct bcm_data *bcm = hu->priv;
527
Frederic Danis65ad07c2015-09-01 12:13:36 +0200528 bt_dev_dbg(hu->hdev, "hu %p skb %p", hu, skb);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700529
530 /* Prepend skb with frame type */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100531 memcpy(skb_push(skb, 1), &hci_skb_pkt_type(skb), 1);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700532 skb_queue_tail(&bcm->txq, skb);
533
534 return 0;
535}
536
537static struct sk_buff *bcm_dequeue(struct hci_uart *hu)
538{
539 struct bcm_data *bcm = hu->priv;
Frederic Danise88ab302015-09-23 18:18:11 +0200540 struct sk_buff *skb = NULL;
541 struct bcm_device *bdev = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700542
Frederic Danise88ab302015-09-23 18:18:11 +0200543 mutex_lock(&bcm_device_lock);
544
545 if (bcm_device_exists(bcm->dev)) {
546 bdev = bcm->dev;
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200547 pm_runtime_get_sync(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200548 /* Shall be resumed here */
549 }
550
551 skb = skb_dequeue(&bcm->txq);
552
553 if (bdev) {
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200554 pm_runtime_mark_last_busy(bdev->dev);
555 pm_runtime_put_autosuspend(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200556 }
557
558 mutex_unlock(&bcm_device_lock);
559
560 return skb;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700561}
562
Frederic Danisb7a622a2015-09-23 18:18:09 +0200563#ifdef CONFIG_PM
564static int bcm_suspend_device(struct device *dev)
Frederic Danis118612f2015-08-11 16:35:38 +0200565{
Hans de Goede78277d72017-10-04 20:43:42 +0200566 struct bcm_device *bdev = dev_get_drvdata(dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200567
Frederic Danisb7a622a2015-09-23 18:18:09 +0200568 bt_dev_dbg(bdev, "");
Frederic Danis118612f2015-08-11 16:35:38 +0200569
Frederic Danisb7a622a2015-09-23 18:18:09 +0200570 if (!bdev->is_suspended && bdev->hu) {
Frederic Danis118612f2015-08-11 16:35:38 +0200571 hci_uart_set_flow_control(bdev->hu, true);
572
Frederic Danisb7a622a2015-09-23 18:18:09 +0200573 /* Once this returns, driver suspends BT via GPIO */
Frederic Danis118612f2015-08-11 16:35:38 +0200574 bdev->is_suspended = true;
575 }
576
577 /* Suspend the device */
578 if (bdev->device_wakeup) {
579 gpiod_set_value(bdev->device_wakeup, false);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200580 bt_dev_dbg(bdev, "suspend, delaying 15 ms");
Frederic Danis118612f2015-08-11 16:35:38 +0200581 mdelay(15);
582 }
583
Frederic Danisb7a622a2015-09-23 18:18:09 +0200584 return 0;
585}
586
587static int bcm_resume_device(struct device *dev)
588{
Hans de Goede78277d72017-10-04 20:43:42 +0200589 struct bcm_device *bdev = dev_get_drvdata(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200590
591 bt_dev_dbg(bdev, "");
592
593 if (bdev->device_wakeup) {
594 gpiod_set_value(bdev->device_wakeup, true);
595 bt_dev_dbg(bdev, "resume, delaying 15 ms");
596 mdelay(15);
597 }
598
599 /* When this executes, the device has woken up already */
600 if (bdev->is_suspended && bdev->hu) {
601 bdev->is_suspended = false;
602
603 hci_uart_set_flow_control(bdev->hu, false);
604 }
605
606 return 0;
607}
608#endif
609
610#ifdef CONFIG_PM_SLEEP
Hans de Goede8a920562017-10-04 20:43:43 +0200611/* suspend callback */
Frederic Danisb7a622a2015-09-23 18:18:09 +0200612static int bcm_suspend(struct device *dev)
613{
Hans de Goede78277d72017-10-04 20:43:42 +0200614 struct bcm_device *bdev = dev_get_drvdata(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200615 int error;
616
617 bt_dev_dbg(bdev, "suspend: is_suspended %d", bdev->is_suspended);
618
Hans de Goede8a920562017-10-04 20:43:43 +0200619 /*
620 * When used with a device instantiated as platform_device, bcm_suspend
621 * can be called at any time as long as the platform device is bound,
622 * so it should use bcm_device_lock to protect access to hci_uart
Frederic Danisb7a622a2015-09-23 18:18:09 +0200623 * and device_wake-up GPIO.
624 */
625 mutex_lock(&bcm_device_lock);
626
627 if (!bdev->hu)
628 goto unlock;
629
Frederic Danise88ab302015-09-23 18:18:11 +0200630 if (pm_runtime_active(dev))
631 bcm_suspend_device(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200632
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200633 if (device_may_wakeup(dev)) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200634 error = enable_irq_wake(bdev->irq);
635 if (!error)
636 bt_dev_dbg(bdev, "BCM irq: enabled");
637 }
638
Frederic Danis917522a2015-08-28 15:44:00 +0200639unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200640 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200641
Frederic Danis118612f2015-08-11 16:35:38 +0200642 return 0;
643}
644
Hans de Goede8a920562017-10-04 20:43:43 +0200645/* resume callback */
Frederic Danis118612f2015-08-11 16:35:38 +0200646static int bcm_resume(struct device *dev)
647{
Hans de Goede78277d72017-10-04 20:43:42 +0200648 struct bcm_device *bdev = dev_get_drvdata(dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200649
Frederic Danis65ad07c2015-09-01 12:13:36 +0200650 bt_dev_dbg(bdev, "resume: is_suspended %d", bdev->is_suspended);
Frederic Danis118612f2015-08-11 16:35:38 +0200651
Hans de Goede8a920562017-10-04 20:43:43 +0200652 /*
653 * When used with a device instantiated as platform_device, bcm_resume
654 * can be called at any time as long as platform device is bound,
655 * so it should use bcm_device_lock to protect access to hci_uart
Frederic Danisb7a622a2015-09-23 18:18:09 +0200656 * and device_wake-up GPIO.
657 */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200658 mutex_lock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200659
660 if (!bdev->hu)
661 goto unlock;
662
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200663 if (device_may_wakeup(dev)) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200664 disable_irq_wake(bdev->irq);
665 bt_dev_dbg(bdev, "BCM irq: disabled");
666 }
667
Frederic Danisb7a622a2015-09-23 18:18:09 +0200668 bcm_resume_device(dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200669
Frederic Danis917522a2015-08-28 15:44:00 +0200670unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200671 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200672
Frederic Danise88ab302015-09-23 18:18:11 +0200673 pm_runtime_disable(dev);
674 pm_runtime_set_active(dev);
675 pm_runtime_enable(dev);
676
Frederic Danis118612f2015-08-11 16:35:38 +0200677 return 0;
678}
679#endif
680
Daniel Drake89ab37b2017-01-05 11:10:54 -0600681static const struct acpi_gpio_params int_last_device_wakeup_gpios = { 0, 0, false };
682static const struct acpi_gpio_params int_last_shutdown_gpios = { 1, 0, false };
683static const struct acpi_gpio_params int_last_host_wakeup_gpios = { 2, 0, false };
Frederic Danis0395ffc2015-08-11 16:35:35 +0200684
Daniel Drake89ab37b2017-01-05 11:10:54 -0600685static const struct acpi_gpio_mapping acpi_bcm_int_last_gpios[] = {
686 { "device-wakeup-gpios", &int_last_device_wakeup_gpios, 1 },
687 { "shutdown-gpios", &int_last_shutdown_gpios, 1 },
688 { "host-wakeup-gpios", &int_last_host_wakeup_gpios, 1 },
689 { },
690};
691
692static const struct acpi_gpio_params int_first_host_wakeup_gpios = { 0, 0, false };
693static const struct acpi_gpio_params int_first_device_wakeup_gpios = { 1, 0, false };
694static const struct acpi_gpio_params int_first_shutdown_gpios = { 2, 0, false };
695
696static const struct acpi_gpio_mapping acpi_bcm_int_first_gpios[] = {
697 { "device-wakeup-gpios", &int_first_device_wakeup_gpios, 1 },
698 { "shutdown-gpios", &int_first_shutdown_gpios, 1 },
699 { "host-wakeup-gpios", &int_first_host_wakeup_gpios, 1 },
Frederic Danis0395ffc2015-08-11 16:35:35 +0200700 { },
701};
702
Frederic Danis50d78bc2015-08-12 12:46:01 +0200703#ifdef CONFIG_ACPI
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200704/* IRQ polarity of some chipsets are not defined correctly in ACPI table. */
Hans de Goede227630c2017-10-04 20:43:36 +0200705static const struct dmi_system_id bcm_active_low_irq_dmi_table[] = {
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200706 {
707 .ident = "Asus T100TA",
708 .matches = {
709 DMI_EXACT_MATCH(DMI_SYS_VENDOR,
710 "ASUSTeK COMPUTER INC."),
711 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100TA"),
712 },
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200713 },
Hans de Goedec4c285d2017-06-29 14:21:32 +0200714 {
715 .ident = "Asus T100CHI",
716 .matches = {
717 DMI_EXACT_MATCH(DMI_SYS_VENDOR,
718 "ASUSTeK COMPUTER INC."),
719 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100CHI"),
720 },
Hans de Goedec4c285d2017-06-29 14:21:32 +0200721 },
Jérôme de Bretagne5e2bd932016-10-09 15:51:05 +0200722 { /* Handle ThinkPad 8 tablets with BCM2E55 chipset ACPI ID */
723 .ident = "Lenovo ThinkPad 8",
724 .matches = {
725 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
726 DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "ThinkPad 8"),
727 },
Jérôme de Bretagne5e2bd932016-10-09 15:51:05 +0200728 },
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200729 { }
730};
731
Frederic Danisae056902015-08-11 16:35:37 +0200732static int bcm_resource(struct acpi_resource *ares, void *data)
733{
734 struct bcm_device *dev = data;
Frederic Danis6cc43962015-09-04 15:35:44 +0200735 struct acpi_resource_extended_irq *irq;
736 struct acpi_resource_gpio *gpio;
737 struct acpi_resource_uart_serialbus *sb;
Frederic Danisae056902015-08-11 16:35:37 +0200738
Frederic Danis6cc43962015-09-04 15:35:44 +0200739 switch (ares->type) {
740 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
741 irq = &ares->data.extended_irq;
Hans de Goede227630c2017-10-04 20:43:36 +0200742 dev->irq_active_low = irq->polarity == ACPI_ACTIVE_LOW;
Frederic Danis6cc43962015-09-04 15:35:44 +0200743 break;
Frederic Danisae056902015-08-11 16:35:37 +0200744
Frederic Danis6cc43962015-09-04 15:35:44 +0200745 case ACPI_RESOURCE_TYPE_GPIO:
746 gpio = &ares->data.gpio;
747 if (gpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT)
Hans de Goede227630c2017-10-04 20:43:36 +0200748 dev->irq_active_low = gpio->polarity == ACPI_ACTIVE_LOW;
Frederic Danis6cc43962015-09-04 15:35:44 +0200749 break;
750
751 case ACPI_RESOURCE_TYPE_SERIAL_BUS:
Frederic Danisae056902015-08-11 16:35:37 +0200752 sb = &ares->data.uart_serial_bus;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200753 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_UART) {
Frederic Danisae056902015-08-11 16:35:37 +0200754 dev->init_speed = sb->default_baud_rate;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200755 dev->oper_speed = 4000000;
756 }
Frederic Danis6cc43962015-09-04 15:35:44 +0200757 break;
758
759 default:
760 break;
Frederic Danisae056902015-08-11 16:35:37 +0200761 }
762
Hans de Goede9d54fd62017-10-04 20:43:41 +0200763 return 0;
Frederic Danisae056902015-08-11 16:35:37 +0200764}
Andy Shevchenko212d71832017-03-10 14:28:20 +0200765#endif /* CONFIG_ACPI */
Frederic Danisae056902015-08-11 16:35:37 +0200766
Hans de Goede42ef18f2017-10-04 20:43:40 +0200767static int bcm_get_resources(struct bcm_device *dev)
Frederic Danis0395ffc2015-08-11 16:35:35 +0200768{
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200769 dev->name = dev_name(dev->dev);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200770
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200771 dev->clk = devm_clk_get(dev->dev, NULL);
Daniel Drake89ab37b2017-01-05 11:10:54 -0600772
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200773 dev->device_wakeup = devm_gpiod_get_optional(dev->dev,
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200774 "device-wakeup",
775 GPIOD_OUT_LOW);
776 if (IS_ERR(dev->device_wakeup))
777 return PTR_ERR(dev->device_wakeup);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200778
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200779 dev->shutdown = devm_gpiod_get_optional(dev->dev, "shutdown",
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200780 GPIOD_OUT_LOW);
781 if (IS_ERR(dev->shutdown))
782 return PTR_ERR(dev->shutdown);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200783
Frederic Danis6cc43962015-09-04 15:35:44 +0200784 /* IRQ can be declared in ACPI table as Interrupt or GpioInt */
Frederic Danis6cc43962015-09-04 15:35:44 +0200785 if (dev->irq <= 0) {
786 struct gpio_desc *gpio;
787
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200788 gpio = devm_gpiod_get_optional(dev->dev, "host-wakeup",
Frederic Danis6cc43962015-09-04 15:35:44 +0200789 GPIOD_IN);
790 if (IS_ERR(gpio))
791 return PTR_ERR(gpio);
792
793 dev->irq = gpiod_to_irq(gpio);
794 }
795
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200796 dev_info(dev->dev, "BCM irq: %d\n", dev->irq);
Andy Shevchenko212d71832017-03-10 14:28:20 +0200797 return 0;
798}
799
800#ifdef CONFIG_ACPI
801static int bcm_acpi_probe(struct bcm_device *dev)
802{
Andy Shevchenko212d71832017-03-10 14:28:20 +0200803 LIST_HEAD(resources);
804 const struct dmi_system_id *dmi_id;
805 const struct acpi_gpio_mapping *gpio_mapping = acpi_bcm_int_last_gpios;
806 const struct acpi_device_id *id;
Hans de Goede9d54fd62017-10-04 20:43:41 +0200807 struct resource_entry *entry;
Andy Shevchenko212d71832017-03-10 14:28:20 +0200808 int ret;
809
810 /* Retrieve GPIO data */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200811 id = acpi_match_device(dev->dev->driver->acpi_match_table, dev->dev);
Andy Shevchenko212d71832017-03-10 14:28:20 +0200812 if (id)
813 gpio_mapping = (const struct acpi_gpio_mapping *) id->driver_data;
814
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200815 ret = devm_acpi_dev_add_driver_gpios(dev->dev, gpio_mapping);
Andy Shevchenko212d71832017-03-10 14:28:20 +0200816 if (ret)
817 return ret;
818
Frederic Danisae056902015-08-11 16:35:37 +0200819 /* Retrieve UART ACPI info */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200820 ret = acpi_dev_get_resources(ACPI_COMPANION(dev->dev),
Jarkko Nikulae98d6d62015-09-30 16:26:45 +0300821 &resources, bcm_resource, dev);
Jarkko Nikula5be00282015-09-30 16:26:42 +0300822 if (ret < 0)
823 return ret;
Hans de Goede9d54fd62017-10-04 20:43:41 +0200824
825 resource_list_for_each_entry(entry, &resources) {
826 if (resource_type(entry->res) == IORESOURCE_IRQ) {
827 dev->irq = entry->res->start;
828 break;
829 }
830 }
Jarkko Nikula09dbf1b2015-09-30 16:26:41 +0300831 acpi_dev_free_resource_list(&resources);
Frederic Danisae056902015-08-11 16:35:37 +0200832
Hans de Goede227630c2017-10-04 20:43:36 +0200833 dmi_id = dmi_first_match(bcm_active_low_irq_dmi_table);
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200834 if (dmi_id) {
835 bt_dev_warn(dev, "%s: Overwriting IRQ polarity to active low",
836 dmi_id->ident);
Hans de Goede227630c2017-10-04 20:43:36 +0200837 dev->irq_active_low = true;
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200838 }
839
Frederic Danis0395ffc2015-08-11 16:35:35 +0200840 return 0;
841}
Frederic Danis50d78bc2015-08-12 12:46:01 +0200842#else
843static int bcm_acpi_probe(struct bcm_device *dev)
844{
845 return -EINVAL;
846}
847#endif /* CONFIG_ACPI */
Frederic Danis0395ffc2015-08-11 16:35:35 +0200848
Hans de Goede8a920562017-10-04 20:43:43 +0200849static int bcm_of_probe(struct bcm_device *bdev)
850{
851 device_property_read_u32(bdev->dev, "max-speed", &bdev->oper_speed);
852 return 0;
853}
854
Frederic Danis0395ffc2015-08-11 16:35:35 +0200855static int bcm_probe(struct platform_device *pdev)
856{
857 struct bcm_device *dev;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200858 int ret;
859
860 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
861 if (!dev)
862 return -ENOMEM;
863
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200864 dev->dev = &pdev->dev;
Hans de Goede4a56f892017-10-04 20:43:38 +0200865 dev->irq = platform_get_irq(pdev, 0);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200866
Hans de Goede201762e2017-10-04 20:43:37 +0200867 if (has_acpi_companion(&pdev->dev)) {
Andy Shevchenko212d71832017-03-10 14:28:20 +0200868 ret = bcm_acpi_probe(dev);
Hans de Goede201762e2017-10-04 20:43:37 +0200869 if (ret)
870 return ret;
871 }
872
Hans de Goede42ef18f2017-10-04 20:43:40 +0200873 ret = bcm_get_resources(dev);
Jarkko Nikula4d1c4552015-09-30 16:26:44 +0300874 if (ret)
875 return ret;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200876
877 platform_set_drvdata(pdev, dev);
878
879 dev_info(&pdev->dev, "%s device registered.\n", dev->name);
880
881 /* Place this instance on the device list */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200882 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200883 list_add_tail(&dev->list, &bcm_device_list);
Frederic Danisbb3ea162015-09-01 12:13:35 +0200884 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200885
886 bcm_gpio_set_power(dev, false);
887
888 return 0;
889}
890
891static int bcm_remove(struct platform_device *pdev)
892{
893 struct bcm_device *dev = platform_get_drvdata(pdev);
894
Frederic Danisbb3ea162015-09-01 12:13:35 +0200895 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200896 list_del(&dev->list);
Frederic Danisbb3ea162015-09-01 12:13:35 +0200897 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200898
Frederic Danis0395ffc2015-08-11 16:35:35 +0200899 dev_info(&pdev->dev, "%s device unregistered.\n", dev->name);
900
901 return 0;
902}
903
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700904static const struct hci_uart_proto bcm_proto = {
905 .id = HCI_UART_BCM,
Loic Poulain143f0a22016-09-19 12:05:12 +0200906 .name = "Broadcom",
Marcel Holtmannaee61f72015-10-20 21:30:45 +0200907 .manufacturer = 15,
Frederic Danis61b2fc22015-06-09 16:15:37 +0200908 .init_speed = 115200,
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700909 .open = bcm_open,
910 .close = bcm_close,
911 .flush = bcm_flush,
912 .setup = bcm_setup,
Frederic Danis61b2fc22015-06-09 16:15:37 +0200913 .set_baudrate = bcm_set_baudrate,
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700914 .recv = bcm_recv,
915 .enqueue = bcm_enqueue,
916 .dequeue = bcm_dequeue,
917};
918
Frederic Danis0395ffc2015-08-11 16:35:35 +0200919#ifdef CONFIG_ACPI
920static const struct acpi_device_id bcm_acpi_match[] = {
Daniel Drake89ab37b2017-01-05 11:10:54 -0600921 { "BCM2E1A", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
922 { "BCM2E39", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
923 { "BCM2E3A", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
924 { "BCM2E3D", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
925 { "BCM2E3F", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
926 { "BCM2E40", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
927 { "BCM2E54", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
928 { "BCM2E55", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
929 { "BCM2E64", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
930 { "BCM2E65", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
931 { "BCM2E67", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
932 { "BCM2E71", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
933 { "BCM2E7B", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
934 { "BCM2E7C", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
935 { "BCM2E95", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
936 { "BCM2E96", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
Frederic Danis0395ffc2015-08-11 16:35:35 +0200937 { },
938};
939MODULE_DEVICE_TABLE(acpi, bcm_acpi_match);
940#endif
941
Hans de Goede8a920562017-10-04 20:43:43 +0200942/* suspend and resume callbacks */
Frederic Danise88ab302015-09-23 18:18:11 +0200943static const struct dev_pm_ops bcm_pm_ops = {
944 SET_SYSTEM_SLEEP_PM_OPS(bcm_suspend, bcm_resume)
945 SET_RUNTIME_PM_OPS(bcm_suspend_device, bcm_resume_device, NULL)
946};
Frederic Danis118612f2015-08-11 16:35:38 +0200947
Frederic Danis0395ffc2015-08-11 16:35:35 +0200948static struct platform_driver bcm_driver = {
949 .probe = bcm_probe,
950 .remove = bcm_remove,
951 .driver = {
952 .name = "hci_bcm",
953 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
Frederic Danis118612f2015-08-11 16:35:38 +0200954 .pm = &bcm_pm_ops,
Frederic Danis0395ffc2015-08-11 16:35:35 +0200955 },
956};
957
Loic Poulain33cd1492017-08-17 19:59:51 +0200958static int bcm_serdev_probe(struct serdev_device *serdev)
959{
Hans de Goede8a920562017-10-04 20:43:43 +0200960 struct bcm_device *bcmdev;
Loic Poulain33cd1492017-08-17 19:59:51 +0200961 int err;
962
963 bcmdev = devm_kzalloc(&serdev->dev, sizeof(*bcmdev), GFP_KERNEL);
964 if (!bcmdev)
965 return -ENOMEM;
966
Hans de Goede8a920562017-10-04 20:43:43 +0200967 bcmdev->dev = &serdev->dev;
968 bcmdev->hu = &bcmdev->serdev_hu;
969 bcmdev->serdev_hu.serdev = serdev;
Loic Poulain33cd1492017-08-17 19:59:51 +0200970 serdev_device_set_drvdata(serdev, bcmdev);
971
Hans de Goede8a920562017-10-04 20:43:43 +0200972 if (has_acpi_companion(&serdev->dev))
973 err = bcm_acpi_probe(bcmdev);
974 else
975 err = bcm_of_probe(bcmdev);
976 if (err)
977 return err;
Loic Poulain33cd1492017-08-17 19:59:51 +0200978
Hans de Goede8a920562017-10-04 20:43:43 +0200979 err = bcm_get_resources(bcmdev);
980 if (err)
981 return err;
982
983 bcm_gpio_set_power(bcmdev, false);
984
985 return hci_uart_register_device(&bcmdev->serdev_hu, &bcm_proto);
Loic Poulain33cd1492017-08-17 19:59:51 +0200986}
987
988static void bcm_serdev_remove(struct serdev_device *serdev)
989{
Hans de Goede8a920562017-10-04 20:43:43 +0200990 struct bcm_device *bcmdev = serdev_device_get_drvdata(serdev);
Loic Poulain33cd1492017-08-17 19:59:51 +0200991
Hans de Goede8a920562017-10-04 20:43:43 +0200992 hci_uart_unregister_device(&bcmdev->serdev_hu);
Loic Poulain33cd1492017-08-17 19:59:51 +0200993}
994
995#ifdef CONFIG_OF
996static const struct of_device_id bcm_bluetooth_of_match[] = {
997 { .compatible = "brcm,bcm43438-bt" },
998 { },
999};
1000MODULE_DEVICE_TABLE(of, bcm_bluetooth_of_match);
1001#endif
1002
1003static struct serdev_device_driver bcm_serdev_driver = {
1004 .probe = bcm_serdev_probe,
1005 .remove = bcm_serdev_remove,
1006 .driver = {
1007 .name = "hci_uart_bcm",
1008 .of_match_table = of_match_ptr(bcm_bluetooth_of_match),
Hans de Goede8a920562017-10-04 20:43:43 +02001009 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
1010 .pm = &bcm_pm_ops,
Loic Poulain33cd1492017-08-17 19:59:51 +02001011 },
1012};
1013
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001014int __init bcm_init(void)
1015{
Loic Poulain33cd1492017-08-17 19:59:51 +02001016 /* For now, we need to keep both platform device
1017 * driver (ACPI generated) and serdev driver (DT).
1018 */
Frederic Danis0395ffc2015-08-11 16:35:35 +02001019 platform_driver_register(&bcm_driver);
Loic Poulain33cd1492017-08-17 19:59:51 +02001020 serdev_device_driver_register(&bcm_serdev_driver);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001021
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001022 return hci_uart_register_proto(&bcm_proto);
1023}
1024
1025int __exit bcm_deinit(void)
1026{
Frederic Danis0395ffc2015-08-11 16:35:35 +02001027 platform_driver_unregister(&bcm_driver);
Loic Poulain33cd1492017-08-17 19:59:51 +02001028 serdev_device_driver_unregister(&bcm_serdev_driver);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001029
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001030 return hci_uart_unregister_proto(&bcm_proto);
1031}