blob: 6314dfb02969a9191940e8dcf8b0d0fc987453c1 [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>
Lukas Wunner4c331622018-01-10 16:32:10 +010032#include <linux/platform_data/x86/apple.h>
Frederic Danis0395ffc2015-08-11 16:35:35 +020033#include <linux/platform_device.h>
34#include <linux/clk.h>
35#include <linux/gpio/consumer.h>
36#include <linux/tty.h>
Frederic Danis6cc43962015-09-04 15:35:44 +020037#include <linux/interrupt.h>
Frederic Danis5cebdfe2015-09-23 18:18:08 +020038#include <linux/dmi.h>
Frederic Danise88ab302015-09-23 18:18:11 +020039#include <linux/pm_runtime.h>
Loic Poulain33cd1492017-08-17 19:59:51 +020040#include <linux/serdev.h>
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -070041
42#include <net/bluetooth/bluetooth.h>
43#include <net/bluetooth/hci_core.h>
44
Marcel Holtmannbdd88182015-04-05 22:52:18 -070045#include "btbcm.h"
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -070046#include "hci_uart.h"
Marcel Holtmannbdd88182015-04-05 22:52:18 -070047
Marcel Holtmann01d5e442017-08-17 21:41:09 +020048#define BCM_NULL_PKT 0x00
49#define BCM_NULL_SIZE 0
50
Marcel Holtmann94c58132015-10-07 19:12:54 +020051#define BCM_LM_DIAG_PKT 0x07
52#define BCM_LM_DIAG_SIZE 63
53
Frederic Danise88ab302015-09-23 18:18:11 +020054#define BCM_AUTOSUSPEND_DELAY 5000 /* default autosleep delay */
55
Lukas Wunnerb7c2aba2018-01-10 16:32:10 +010056/**
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
Lukas Wunner8353b4a2018-01-10 16:32:10 +010067 * @set_device_wakeup: callback to toggle BT_WAKE pin
Lukas Wunner4c331622018-01-10 16:32:10 +010068 * either by accessing @device_wakeup or by calling @btlp
Lukas Wunner8353b4a2018-01-10 16:32:10 +010069 * @set_shutdown: callback to toggle BT_REG_ON pin
Lukas Wunner4c331622018-01-10 16:32:10 +010070 * 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")
Lukas Wunnerb7c2aba2018-01-10 16:32:10 +010074 * @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 */
Frederic Danis0395ffc2015-08-11 16:35:35 +020087struct bcm_device {
Hans de Goede8a920562017-10-04 20:43:43 +020088 /* Must be the first member, hci_serdev.c expects this. */
89 struct hci_uart serdev_hu;
Frederic Danis0395ffc2015-08-11 16:35:35 +020090 struct list_head list;
91
Hans de Goedec0d3ce52017-10-04 20:43:39 +020092 struct device *dev;
Frederic Danis0395ffc2015-08-11 16:35:35 +020093
94 const char *name;
95 struct gpio_desc *device_wakeup;
96 struct gpio_desc *shutdown;
Lukas Wunner8353b4a2018-01-10 16:32:10 +010097 int (*set_device_wakeup)(struct bcm_device *, bool);
98 int (*set_shutdown)(struct bcm_device *, bool);
Lukas Wunner4c331622018-01-10 16:32:10 +010099#ifdef CONFIG_ACPI
100 acpi_handle btlp, btpu, btpd;
101#endif
Frederic Danis0395ffc2015-08-11 16:35:35 +0200102
103 struct clk *clk;
104 bool clk_enabled;
Frederic Danisae056902015-08-11 16:35:37 +0200105
106 u32 init_speed;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200107 u32 oper_speed;
Frederic Danis6cc43962015-09-04 15:35:44 +0200108 int irq;
Hans de Goede227630c2017-10-04 20:43:36 +0200109 bool irq_active_low;
Frederic Danis118612f2015-08-11 16:35:38 +0200110
Frederic Danisb7a622a2015-09-23 18:18:09 +0200111#ifdef CONFIG_PM
Frederic Danis118612f2015-08-11 16:35:38 +0200112 struct hci_uart *hu;
Lukas Wunnerb7c2aba2018-01-10 16:32:10 +0100113 bool is_suspended;
Frederic Danis118612f2015-08-11 16:35:38 +0200114#endif
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700115};
116
Loic Poulain33cd1492017-08-17 19:59:51 +0200117/* generic bcm uart resources */
Frederic Danis0395ffc2015-08-11 16:35:35 +0200118struct bcm_data {
119 struct sk_buff *rx_skb;
120 struct sk_buff_head txq;
121
122 struct bcm_device *dev;
123};
124
125/* List of BCM BT UART devices */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200126static DEFINE_MUTEX(bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200127static LIST_HEAD(bcm_device_list);
128
Loic Poulain33cd1492017-08-17 19:59:51 +0200129static inline void host_set_baudrate(struct hci_uart *hu, unsigned int speed)
130{
131 if (hu->serdev)
132 serdev_device_set_baudrate(hu->serdev, speed);
133 else
134 hci_uart_set_baudrate(hu, speed);
135}
136
Frederic Danis61b2fc22015-06-09 16:15:37 +0200137static int bcm_set_baudrate(struct hci_uart *hu, unsigned int speed)
138{
139 struct hci_dev *hdev = hu->hdev;
140 struct sk_buff *skb;
141 struct bcm_update_uart_baud_rate param;
142
143 if (speed > 3000000) {
144 struct bcm_write_uart_clock_setting clock;
145
146 clock.type = BCM_UART_CLOCK_48MHZ;
147
Frederic Danis65ad07c2015-09-01 12:13:36 +0200148 bt_dev_dbg(hdev, "Set Controller clock (%d)", clock.type);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200149
150 /* This Broadcom specific command changes the UART's controller
151 * clock for baud rate > 3000000.
152 */
153 skb = __hci_cmd_sync(hdev, 0xfc45, 1, &clock, HCI_INIT_TIMEOUT);
154 if (IS_ERR(skb)) {
155 int err = PTR_ERR(skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200156 bt_dev_err(hdev, "BCM: failed to write clock (%d)",
157 err);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200158 return err;
159 }
160
161 kfree_skb(skb);
162 }
163
Frederic Danis65ad07c2015-09-01 12:13:36 +0200164 bt_dev_dbg(hdev, "Set Controller UART speed to %d bit/s", speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200165
166 param.zero = cpu_to_le16(0);
167 param.baud_rate = cpu_to_le32(speed);
168
169 /* This Broadcom specific command changes the UART's controller baud
170 * rate.
171 */
172 skb = __hci_cmd_sync(hdev, 0xfc18, sizeof(param), &param,
173 HCI_INIT_TIMEOUT);
174 if (IS_ERR(skb)) {
175 int err = PTR_ERR(skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200176 bt_dev_err(hdev, "BCM: failed to write update baudrate (%d)",
177 err);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200178 return err;
179 }
180
181 kfree_skb(skb);
182
183 return 0;
184}
185
Frederic Danis917522a2015-08-28 15:44:00 +0200186/* bcm_device_exists should be protected by bcm_device_lock */
Frederic Danis0395ffc2015-08-11 16:35:35 +0200187static bool bcm_device_exists(struct bcm_device *device)
188{
189 struct list_head *p;
190
Arnd Bergmann81a19052017-10-11 15:46:21 +0200191#ifdef CONFIG_PM
Hans de Goede8a920562017-10-04 20:43:43 +0200192 /* Devices using serdev always exist */
193 if (device && device->hu && device->hu->serdev)
194 return true;
Arnd Bergmann81a19052017-10-11 15:46:21 +0200195#endif
Hans de Goede8a920562017-10-04 20:43:43 +0200196
Frederic Danis0395ffc2015-08-11 16:35:35 +0200197 list_for_each(p, &bcm_device_list) {
198 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
199
200 if (device == dev)
201 return true;
202 }
203
204 return false;
205}
206
207static int bcm_gpio_set_power(struct bcm_device *dev, bool powered)
208{
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100209 int err;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200210
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100211 if (powered && !IS_ERR(dev->clk) && !dev->clk_enabled) {
212 err = clk_prepare_enable(dev->clk);
213 if (err)
214 return err;
215 }
216
217 err = dev->set_shutdown(dev, powered);
218 if (err)
219 goto err_clk_disable;
220
221 err = dev->set_device_wakeup(dev, powered);
222 if (err)
223 goto err_revert_shutdown;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200224
225 if (!powered && !IS_ERR(dev->clk) && dev->clk_enabled)
John Keeping730ce392017-03-15 12:20:05 +0000226 clk_disable_unprepare(dev->clk);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200227
228 dev->clk_enabled = powered;
229
230 return 0;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100231
232err_revert_shutdown:
233 dev->set_shutdown(dev, !powered);
234err_clk_disable:
235 if (powered && !IS_ERR(dev->clk) && !dev->clk_enabled)
236 clk_disable_unprepare(dev->clk);
237 return err;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200238}
239
Frederic Danisb7a622a2015-09-23 18:18:09 +0200240#ifdef CONFIG_PM
Frederic Danis6cc43962015-09-04 15:35:44 +0200241static irqreturn_t bcm_host_wake(int irq, void *data)
242{
243 struct bcm_device *bdev = data;
244
245 bt_dev_dbg(bdev, "Host wake IRQ");
246
Lukas Wunner43fff7682017-12-26 17:07:34 +0200247 pm_request_resume(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200248
Frederic Danis6cc43962015-09-04 15:35:44 +0200249 return IRQ_HANDLED;
250}
251
252static int bcm_request_irq(struct bcm_data *bcm)
253{
254 struct bcm_device *bdev = bcm->dev;
Loic Poulain98dc77d2017-07-04 12:57:56 +0200255 int err;
Frederic Danis6cc43962015-09-04 15:35:44 +0200256
Frederic Danis6cc43962015-09-04 15:35:44 +0200257 mutex_lock(&bcm_device_lock);
258 if (!bcm_device_exists(bdev)) {
259 err = -ENODEV;
260 goto unlock;
261 }
262
Loic Poulain98dc77d2017-07-04 12:57:56 +0200263 if (bdev->irq <= 0) {
264 err = -EOPNOTSUPP;
265 goto unlock;
Frederic Danis6cc43962015-09-04 15:35:44 +0200266 }
267
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200268 err = devm_request_irq(bdev->dev, bdev->irq, bcm_host_wake,
Hans de Goede227630c2017-10-04 20:43:36 +0200269 bdev->irq_active_low ? IRQF_TRIGGER_FALLING :
270 IRQF_TRIGGER_RISING,
271 "host_wake", bdev);
Lukas Wunner4dc27332018-01-10 16:32:10 +0100272 if (err) {
273 bdev->irq = err;
Loic Poulain98dc77d2017-07-04 12:57:56 +0200274 goto unlock;
Lukas Wunner4dc27332018-01-10 16:32:10 +0100275 }
Loic Poulain98dc77d2017-07-04 12:57:56 +0200276
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200277 device_init_wakeup(bdev->dev, true);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200278
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200279 pm_runtime_set_autosuspend_delay(bdev->dev,
Loic Poulain98dc77d2017-07-04 12:57:56 +0200280 BCM_AUTOSUSPEND_DELAY);
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200281 pm_runtime_use_autosuspend(bdev->dev);
282 pm_runtime_set_active(bdev->dev);
283 pm_runtime_enable(bdev->dev);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200284
Frederic Danis6cc43962015-09-04 15:35:44 +0200285unlock:
286 mutex_unlock(&bcm_device_lock);
287
288 return err;
289}
290
291static const struct bcm_set_sleep_mode default_sleep_params = {
292 .sleep_mode = 1, /* 0=Disabled, 1=UART, 2=Reserved, 3=USB */
293 .idle_host = 2, /* idle threshold HOST, in 300ms */
294 .idle_dev = 2, /* idle threshold device, in 300ms */
295 .bt_wake_active = 1, /* BT_WAKE active mode: 1 = high, 0 = low */
296 .host_wake_active = 0, /* HOST_WAKE active mode: 1 = high, 0 = low */
297 .allow_host_sleep = 1, /* Allow host sleep in SCO flag */
Frederic Danise88ab302015-09-23 18:18:11 +0200298 .combine_modes = 1, /* Combine sleep and LPM flag */
Frederic Danis6cc43962015-09-04 15:35:44 +0200299 .tristate_control = 0, /* Allow tri-state control of UART tx flag */
300 /* Irrelevant USB flags */
301 .usb_auto_sleep = 0,
302 .usb_resume_timeout = 0,
Lukas Wunnerff875962018-01-10 16:32:10 +0100303 .break_to_host = 0,
Frederic Danis6cc43962015-09-04 15:35:44 +0200304 .pulsed_host_wake = 0,
Frederic Danis6cc43962015-09-04 15:35:44 +0200305};
306
307static int bcm_setup_sleep(struct hci_uart *hu)
308{
309 struct bcm_data *bcm = hu->priv;
310 struct sk_buff *skb;
311 struct bcm_set_sleep_mode sleep_params = default_sleep_params;
312
Hans de Goede227630c2017-10-04 20:43:36 +0200313 sleep_params.host_wake_active = !bcm->dev->irq_active_low;
Frederic Danis6cc43962015-09-04 15:35:44 +0200314
315 skb = __hci_cmd_sync(hu->hdev, 0xfc27, sizeof(sleep_params),
316 &sleep_params, HCI_INIT_TIMEOUT);
317 if (IS_ERR(skb)) {
318 int err = PTR_ERR(skb);
319 bt_dev_err(hu->hdev, "Sleep VSC failed (%d)", err);
320 return err;
321 }
322 kfree_skb(skb);
323
324 bt_dev_dbg(hu->hdev, "Set Sleep Parameters VSC succeeded");
325
326 return 0;
327}
328#else
329static inline int bcm_request_irq(struct bcm_data *bcm) { return 0; }
330static inline int bcm_setup_sleep(struct hci_uart *hu) { return 0; }
331#endif
332
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200333static int bcm_set_diag(struct hci_dev *hdev, bool enable)
334{
335 struct hci_uart *hu = hci_get_drvdata(hdev);
336 struct bcm_data *bcm = hu->priv;
337 struct sk_buff *skb;
338
339 if (!test_bit(HCI_RUNNING, &hdev->flags))
340 return -ENETDOWN;
341
342 skb = bt_skb_alloc(3, GFP_KERNEL);
Dan Carpentera1857392015-10-22 12:06:09 +0300343 if (!skb)
344 return -ENOMEM;
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200345
Johannes Berg634fef62017-06-16 14:29:24 +0200346 skb_put_u8(skb, BCM_LM_DIAG_PKT);
347 skb_put_u8(skb, 0xf0);
348 skb_put_u8(skb, enable);
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200349
350 skb_queue_tail(&bcm->txq, skb);
351 hci_uart_tx_wakeup(hu);
352
353 return 0;
354}
355
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700356static int bcm_open(struct hci_uart *hu)
357{
358 struct bcm_data *bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200359 struct list_head *p;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100360 int err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700361
Frederic Danis65ad07c2015-09-01 12:13:36 +0200362 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700363
364 bcm = kzalloc(sizeof(*bcm), GFP_KERNEL);
365 if (!bcm)
366 return -ENOMEM;
367
368 skb_queue_head_init(&bcm->txq);
369
370 hu->priv = bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200371
Hans de Goede8a920562017-10-04 20:43:43 +0200372 mutex_lock(&bcm_device_lock);
373
Loic Poulain33cd1492017-08-17 19:59:51 +0200374 if (hu->serdev) {
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100375 err = serdev_device_open(hu->serdev);
376 if (err)
377 goto err_free;
378
Hans de Goede8a920562017-10-04 20:43:43 +0200379 bcm->dev = serdev_device_get_drvdata(hu->serdev);
Loic Poulain33cd1492017-08-17 19:59:51 +0200380 goto out;
381 }
382
Johan Hovold95065a62017-03-29 18:15:27 +0200383 if (!hu->tty->dev)
384 goto out;
385
Frederic Danis0395ffc2015-08-11 16:35:35 +0200386 list_for_each(p, &bcm_device_list) {
387 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
388
389 /* Retrieve saved bcm_device based on parent of the
390 * platform device (saved during device probe) and
391 * parent of tty device used by hci_uart
392 */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200393 if (hu->tty->dev->parent == dev->dev->parent) {
Frederic Danis0395ffc2015-08-11 16:35:35 +0200394 bcm->dev = dev;
Frederic Danisb7a622a2015-09-23 18:18:09 +0200395#ifdef CONFIG_PM
Frederic Danis118612f2015-08-11 16:35:38 +0200396 dev->hu = hu;
397#endif
Frederic Danis0395ffc2015-08-11 16:35:35 +0200398 break;
399 }
400 }
401
Johan Hovold95065a62017-03-29 18:15:27 +0200402out:
Hans de Goede8a920562017-10-04 20:43:43 +0200403 if (bcm->dev) {
404 hu->init_speed = bcm->dev->init_speed;
405 hu->oper_speed = bcm->dev->oper_speed;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100406 err = bcm_gpio_set_power(bcm->dev, true);
407 if (err)
408 goto err_unset_hu;
Hans de Goede8a920562017-10-04 20:43:43 +0200409 }
410
411 mutex_unlock(&bcm_device_lock);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700412 return 0;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100413
414err_unset_hu:
Hans de Goede8c6b8ed2018-01-22 12:53:24 +0100415 if (hu->serdev)
416 serdev_device_close(hu->serdev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100417#ifdef CONFIG_PM
Hans de Goede8c6b8ed2018-01-22 12:53:24 +0100418 else
419 bcm->dev->hu = NULL;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100420#endif
421err_free:
422 mutex_unlock(&bcm_device_lock);
423 hu->priv = NULL;
424 kfree(bcm);
425 return err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700426}
427
428static int bcm_close(struct hci_uart *hu)
429{
430 struct bcm_data *bcm = hu->priv;
Hans de Goede8a920562017-10-04 20:43:43 +0200431 struct bcm_device *bdev = NULL;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100432 int err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700433
Frederic Danis65ad07c2015-09-01 12:13:36 +0200434 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700435
Frederic Danis0395ffc2015-08-11 16:35:35 +0200436 /* Protect bcm->dev against removal of the device or driver */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200437 mutex_lock(&bcm_device_lock);
Hans de Goede8a920562017-10-04 20:43:43 +0200438
439 if (hu->serdev) {
440 serdev_device_close(hu->serdev);
441 bdev = serdev_device_get_drvdata(hu->serdev);
442 } else if (bcm_device_exists(bcm->dev)) {
443 bdev = bcm->dev;
444#ifdef CONFIG_PM
445 bdev->hu = NULL;
446#endif
447 }
448
449 if (bdev) {
Lukas Wunner6d83f1e2018-01-10 16:32:10 +0100450 if (IS_ENABLED(CONFIG_PM) && bdev->irq > 0) {
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200451 devm_free_irq(bdev->dev, bdev->irq, bdev);
452 device_init_wakeup(bdev->dev, false);
Lukas Wunnerf4cf6b72018-01-10 16:32:10 +0100453 pm_runtime_disable(bdev->dev);
Frederic Danis6cc43962015-09-04 15:35:44 +0200454 }
Lukas Wunner54ba69f2018-01-10 16:32:10 +0100455
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100456 err = bcm_gpio_set_power(bdev, false);
457 if (err)
458 bt_dev_err(hu->hdev, "Failed to power down");
459 else
460 pm_runtime_set_suspended(bdev->dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200461 }
Frederic Danisbb3ea162015-09-01 12:13:35 +0200462 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200463
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700464 skb_queue_purge(&bcm->txq);
465 kfree_skb(bcm->rx_skb);
466 kfree(bcm);
467
468 hu->priv = NULL;
469 return 0;
470}
471
472static int bcm_flush(struct hci_uart *hu)
473{
474 struct bcm_data *bcm = hu->priv;
475
Frederic Danis65ad07c2015-09-01 12:13:36 +0200476 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700477
478 skb_queue_purge(&bcm->txq);
479
480 return 0;
481}
482
483static int bcm_setup(struct hci_uart *hu)
484{
Frederic Danis6cc43962015-09-04 15:35:44 +0200485 struct bcm_data *bcm = hu->priv;
Frederic Danis6be09b42015-05-28 11:25:05 +0200486 char fw_name[64];
487 const struct firmware *fw;
Frederic Danis960ef1d2015-06-18 12:43:27 +0200488 unsigned int speed;
Frederic Danis6be09b42015-05-28 11:25:05 +0200489 int err;
490
Frederic Danis65ad07c2015-09-01 12:13:36 +0200491 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700492
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200493 hu->hdev->set_diag = bcm_set_diag;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700494 hu->hdev->set_bdaddr = btbcm_set_bdaddr;
495
Frederic Danis6be09b42015-05-28 11:25:05 +0200496 err = btbcm_initialize(hu->hdev, fw_name, sizeof(fw_name));
497 if (err)
498 return err;
499
500 err = request_firmware(&fw, fw_name, &hu->hdev->dev);
501 if (err < 0) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200502 bt_dev_info(hu->hdev, "BCM: Patch %s not found", fw_name);
Frederic Danis6be09b42015-05-28 11:25:05 +0200503 return 0;
504 }
505
506 err = btbcm_patchram(hu->hdev, fw);
507 if (err) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200508 bt_dev_info(hu->hdev, "BCM: Patch failed (%d)", err);
Frederic Danis6be09b42015-05-28 11:25:05 +0200509 goto finalize;
510 }
511
Frederic Danis960ef1d2015-06-18 12:43:27 +0200512 /* Init speed if any */
513 if (hu->init_speed)
514 speed = hu->init_speed;
515 else if (hu->proto->init_speed)
516 speed = hu->proto->init_speed;
517 else
518 speed = 0;
Frederic Danis6be09b42015-05-28 11:25:05 +0200519
Frederic Danis960ef1d2015-06-18 12:43:27 +0200520 if (speed)
Loic Poulain33cd1492017-08-17 19:59:51 +0200521 host_set_baudrate(hu, speed);
Frederic Danis960ef1d2015-06-18 12:43:27 +0200522
523 /* Operational speed if any */
524 if (hu->oper_speed)
525 speed = hu->oper_speed;
526 else if (hu->proto->oper_speed)
527 speed = hu->proto->oper_speed;
528 else
529 speed = 0;
530
531 if (speed) {
532 err = bcm_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200533 if (!err)
Loic Poulain33cd1492017-08-17 19:59:51 +0200534 host_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200535 }
536
Frederic Danis6be09b42015-05-28 11:25:05 +0200537finalize:
538 release_firmware(fw);
539
540 err = btbcm_finalize(hu->hdev);
Frederic Danis6cc43962015-09-04 15:35:44 +0200541 if (err)
542 return err;
543
Loic Poulaincdd24a22017-06-27 19:15:07 +0200544 if (!bcm_request_irq(bcm))
Frederic Danis6cc43962015-09-04 15:35:44 +0200545 err = bcm_setup_sleep(hu);
Frederic Danis6be09b42015-05-28 11:25:05 +0200546
547 return err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700548}
549
Marcel Holtmann94c58132015-10-07 19:12:54 +0200550#define BCM_RECV_LM_DIAG \
551 .type = BCM_LM_DIAG_PKT, \
552 .hlen = BCM_LM_DIAG_SIZE, \
553 .loff = 0, \
554 .lsize = 0, \
555 .maxlen = BCM_LM_DIAG_SIZE
556
Marcel Holtmann01d5e442017-08-17 21:41:09 +0200557#define BCM_RECV_NULL \
558 .type = BCM_NULL_PKT, \
559 .hlen = BCM_NULL_SIZE, \
560 .loff = 0, \
561 .lsize = 0, \
562 .maxlen = BCM_NULL_SIZE
563
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700564static const struct h4_recv_pkt bcm_recv_pkts[] = {
Marcel Holtmann94c58132015-10-07 19:12:54 +0200565 { H4_RECV_ACL, .recv = hci_recv_frame },
566 { H4_RECV_SCO, .recv = hci_recv_frame },
567 { H4_RECV_EVENT, .recv = hci_recv_frame },
568 { BCM_RECV_LM_DIAG, .recv = hci_recv_diag },
Marcel Holtmann01d5e442017-08-17 21:41:09 +0200569 { BCM_RECV_NULL, .recv = hci_recv_diag },
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700570};
571
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700572static int bcm_recv(struct hci_uart *hu, const void *data, int count)
573{
574 struct bcm_data *bcm = hu->priv;
575
576 if (!test_bit(HCI_UART_REGISTERED, &hu->flags))
577 return -EUNATCH;
578
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700579 bcm->rx_skb = h4_recv_buf(hu->hdev, bcm->rx_skb, data, count,
580 bcm_recv_pkts, ARRAY_SIZE(bcm_recv_pkts));
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700581 if (IS_ERR(bcm->rx_skb)) {
582 int err = PTR_ERR(bcm->rx_skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200583 bt_dev_err(hu->hdev, "Frame reassembly failed (%d)", err);
Chan-yeol Park37134162015-06-17 21:10:39 +0900584 bcm->rx_skb = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700585 return err;
Frederic Danise88ab302015-09-23 18:18:11 +0200586 } else if (!bcm->rx_skb) {
587 /* Delay auto-suspend when receiving completed packet */
588 mutex_lock(&bcm_device_lock);
Lukas Wunner43fff7682017-12-26 17:07:34 +0200589 if (bcm->dev && bcm_device_exists(bcm->dev))
590 pm_request_resume(bcm->dev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200591 mutex_unlock(&bcm_device_lock);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700592 }
593
594 return count;
595}
596
597static int bcm_enqueue(struct hci_uart *hu, struct sk_buff *skb)
598{
599 struct bcm_data *bcm = hu->priv;
600
Frederic Danis65ad07c2015-09-01 12:13:36 +0200601 bt_dev_dbg(hu->hdev, "hu %p skb %p", hu, skb);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700602
603 /* Prepend skb with frame type */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100604 memcpy(skb_push(skb, 1), &hci_skb_pkt_type(skb), 1);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700605 skb_queue_tail(&bcm->txq, skb);
606
607 return 0;
608}
609
610static struct sk_buff *bcm_dequeue(struct hci_uart *hu)
611{
612 struct bcm_data *bcm = hu->priv;
Frederic Danise88ab302015-09-23 18:18:11 +0200613 struct sk_buff *skb = NULL;
614 struct bcm_device *bdev = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700615
Frederic Danise88ab302015-09-23 18:18:11 +0200616 mutex_lock(&bcm_device_lock);
617
618 if (bcm_device_exists(bcm->dev)) {
619 bdev = bcm->dev;
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200620 pm_runtime_get_sync(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200621 /* Shall be resumed here */
622 }
623
624 skb = skb_dequeue(&bcm->txq);
625
626 if (bdev) {
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200627 pm_runtime_mark_last_busy(bdev->dev);
628 pm_runtime_put_autosuspend(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200629 }
630
631 mutex_unlock(&bcm_device_lock);
632
633 return skb;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700634}
635
Frederic Danisb7a622a2015-09-23 18:18:09 +0200636#ifdef CONFIG_PM
637static int bcm_suspend_device(struct device *dev)
Frederic Danis118612f2015-08-11 16:35:38 +0200638{
Hans de Goede78277d72017-10-04 20:43:42 +0200639 struct bcm_device *bdev = dev_get_drvdata(dev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100640 int err;
Frederic Danis118612f2015-08-11 16:35:38 +0200641
Frederic Danisb7a622a2015-09-23 18:18:09 +0200642 bt_dev_dbg(bdev, "");
Frederic Danis118612f2015-08-11 16:35:38 +0200643
Frederic Danisb7a622a2015-09-23 18:18:09 +0200644 if (!bdev->is_suspended && bdev->hu) {
Frederic Danis118612f2015-08-11 16:35:38 +0200645 hci_uart_set_flow_control(bdev->hu, true);
646
Frederic Danisb7a622a2015-09-23 18:18:09 +0200647 /* Once this returns, driver suspends BT via GPIO */
Frederic Danis118612f2015-08-11 16:35:38 +0200648 bdev->is_suspended = true;
649 }
650
651 /* Suspend the device */
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100652 err = bdev->set_device_wakeup(bdev, false);
653 if (err) {
654 if (bdev->is_suspended && bdev->hu) {
655 bdev->is_suspended = false;
656 hci_uart_set_flow_control(bdev->hu, false);
657 }
658 return -EBUSY;
659 }
660
Lukas Wunner3e81a4c2018-01-10 16:32:10 +0100661 bt_dev_dbg(bdev, "suspend, delaying 15 ms");
Lukas Wunnere4b9e5b2018-01-10 16:32:10 +0100662 msleep(15);
Frederic Danis118612f2015-08-11 16:35:38 +0200663
Frederic Danisb7a622a2015-09-23 18:18:09 +0200664 return 0;
665}
666
667static int bcm_resume_device(struct device *dev)
668{
Hans de Goede78277d72017-10-04 20:43:42 +0200669 struct bcm_device *bdev = dev_get_drvdata(dev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100670 int err;
Frederic Danisb7a622a2015-09-23 18:18:09 +0200671
672 bt_dev_dbg(bdev, "");
673
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100674 err = bdev->set_device_wakeup(bdev, true);
675 if (err) {
676 dev_err(dev, "Failed to power up\n");
677 return err;
678 }
679
Lukas Wunner3e81a4c2018-01-10 16:32:10 +0100680 bt_dev_dbg(bdev, "resume, delaying 15 ms");
Lukas Wunnere4b9e5b2018-01-10 16:32:10 +0100681 msleep(15);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200682
683 /* When this executes, the device has woken up already */
684 if (bdev->is_suspended && bdev->hu) {
685 bdev->is_suspended = false;
686
687 hci_uart_set_flow_control(bdev->hu, false);
688 }
689
690 return 0;
691}
692#endif
693
694#ifdef CONFIG_PM_SLEEP
Hans de Goede8a920562017-10-04 20:43:43 +0200695/* suspend callback */
Frederic Danisb7a622a2015-09-23 18:18:09 +0200696static int bcm_suspend(struct device *dev)
697{
Hans de Goede78277d72017-10-04 20:43:42 +0200698 struct bcm_device *bdev = dev_get_drvdata(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200699 int error;
700
701 bt_dev_dbg(bdev, "suspend: is_suspended %d", bdev->is_suspended);
702
Hans de Goede8a920562017-10-04 20:43:43 +0200703 /*
704 * When used with a device instantiated as platform_device, bcm_suspend
705 * can be called at any time as long as the platform device is bound,
706 * so it should use bcm_device_lock to protect access to hci_uart
Frederic Danisb7a622a2015-09-23 18:18:09 +0200707 * and device_wake-up GPIO.
708 */
709 mutex_lock(&bcm_device_lock);
710
711 if (!bdev->hu)
712 goto unlock;
713
Frederic Danise88ab302015-09-23 18:18:11 +0200714 if (pm_runtime_active(dev))
715 bcm_suspend_device(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200716
Ronald Tschalär4a59f1f2018-01-10 16:32:10 +0100717 if (device_may_wakeup(dev) && bdev->irq > 0) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200718 error = enable_irq_wake(bdev->irq);
719 if (!error)
720 bt_dev_dbg(bdev, "BCM irq: enabled");
721 }
722
Frederic Danis917522a2015-08-28 15:44:00 +0200723unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200724 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200725
Frederic Danis118612f2015-08-11 16:35:38 +0200726 return 0;
727}
728
Hans de Goede8a920562017-10-04 20:43:43 +0200729/* resume callback */
Frederic Danis118612f2015-08-11 16:35:38 +0200730static int bcm_resume(struct device *dev)
731{
Hans de Goede78277d72017-10-04 20:43:42 +0200732 struct bcm_device *bdev = dev_get_drvdata(dev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100733 int err = 0;
Frederic Danis118612f2015-08-11 16:35:38 +0200734
Frederic Danis65ad07c2015-09-01 12:13:36 +0200735 bt_dev_dbg(bdev, "resume: is_suspended %d", bdev->is_suspended);
Frederic Danis118612f2015-08-11 16:35:38 +0200736
Hans de Goede8a920562017-10-04 20:43:43 +0200737 /*
738 * When used with a device instantiated as platform_device, bcm_resume
739 * can be called at any time as long as platform device is bound,
740 * so it should use bcm_device_lock to protect access to hci_uart
Frederic Danisb7a622a2015-09-23 18:18:09 +0200741 * and device_wake-up GPIO.
742 */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200743 mutex_lock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200744
745 if (!bdev->hu)
746 goto unlock;
747
Ronald Tschalär4a59f1f2018-01-10 16:32:10 +0100748 if (device_may_wakeup(dev) && bdev->irq > 0) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200749 disable_irq_wake(bdev->irq);
750 bt_dev_dbg(bdev, "BCM irq: disabled");
751 }
752
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100753 err = bcm_resume_device(dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200754
Frederic Danis917522a2015-08-28 15:44:00 +0200755unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200756 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200757
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100758 if (!err) {
759 pm_runtime_disable(dev);
760 pm_runtime_set_active(dev);
761 pm_runtime_enable(dev);
762 }
Frederic Danise88ab302015-09-23 18:18:11 +0200763
Frederic Danis118612f2015-08-11 16:35:38 +0200764 return 0;
765}
766#endif
767
Daniel Drake89ab37b2017-01-05 11:10:54 -0600768static const struct acpi_gpio_params int_last_device_wakeup_gpios = { 0, 0, false };
769static const struct acpi_gpio_params int_last_shutdown_gpios = { 1, 0, false };
770static const struct acpi_gpio_params int_last_host_wakeup_gpios = { 2, 0, false };
Frederic Danis0395ffc2015-08-11 16:35:35 +0200771
Daniel Drake89ab37b2017-01-05 11:10:54 -0600772static const struct acpi_gpio_mapping acpi_bcm_int_last_gpios[] = {
773 { "device-wakeup-gpios", &int_last_device_wakeup_gpios, 1 },
774 { "shutdown-gpios", &int_last_shutdown_gpios, 1 },
775 { "host-wakeup-gpios", &int_last_host_wakeup_gpios, 1 },
776 { },
777};
778
779static const struct acpi_gpio_params int_first_host_wakeup_gpios = { 0, 0, false };
780static const struct acpi_gpio_params int_first_device_wakeup_gpios = { 1, 0, false };
781static const struct acpi_gpio_params int_first_shutdown_gpios = { 2, 0, false };
782
783static const struct acpi_gpio_mapping acpi_bcm_int_first_gpios[] = {
784 { "device-wakeup-gpios", &int_first_device_wakeup_gpios, 1 },
785 { "shutdown-gpios", &int_first_shutdown_gpios, 1 },
786 { "host-wakeup-gpios", &int_first_host_wakeup_gpios, 1 },
Frederic Danis0395ffc2015-08-11 16:35:35 +0200787 { },
788};
789
Frederic Danis50d78bc2015-08-12 12:46:01 +0200790#ifdef CONFIG_ACPI
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200791/* IRQ polarity of some chipsets are not defined correctly in ACPI table. */
Hans de Goede227630c2017-10-04 20:43:36 +0200792static const struct dmi_system_id bcm_active_low_irq_dmi_table[] = {
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200793 {
794 .ident = "Asus T100TA",
795 .matches = {
796 DMI_EXACT_MATCH(DMI_SYS_VENDOR,
797 "ASUSTeK COMPUTER INC."),
798 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100TA"),
799 },
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200800 },
Hans de Goedec4c285d2017-06-29 14:21:32 +0200801 {
802 .ident = "Asus T100CHI",
803 .matches = {
804 DMI_EXACT_MATCH(DMI_SYS_VENDOR,
805 "ASUSTeK COMPUTER INC."),
806 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100CHI"),
807 },
Hans de Goedec4c285d2017-06-29 14:21:32 +0200808 },
Jérôme de Bretagne5e2bd932016-10-09 15:51:05 +0200809 { /* Handle ThinkPad 8 tablets with BCM2E55 chipset ACPI ID */
810 .ident = "Lenovo ThinkPad 8",
811 .matches = {
812 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
813 DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "ThinkPad 8"),
814 },
Jérôme de Bretagne5e2bd932016-10-09 15:51:05 +0200815 },
Ian W MORRISON1bdb68b2017-10-07 17:15:25 +1100816 {
817 .ident = "MINIX Z83-4",
818 .matches = {
819 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "MINIX"),
820 DMI_MATCH(DMI_PRODUCT_NAME, "Z83-4"),
821 },
822 },
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200823 { }
824};
825
Frederic Danisae056902015-08-11 16:35:37 +0200826static int bcm_resource(struct acpi_resource *ares, void *data)
827{
828 struct bcm_device *dev = data;
Frederic Danis6cc43962015-09-04 15:35:44 +0200829 struct acpi_resource_extended_irq *irq;
830 struct acpi_resource_gpio *gpio;
831 struct acpi_resource_uart_serialbus *sb;
Frederic Danisae056902015-08-11 16:35:37 +0200832
Frederic Danis6cc43962015-09-04 15:35:44 +0200833 switch (ares->type) {
834 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
835 irq = &ares->data.extended_irq;
Hans de Goede227630c2017-10-04 20:43:36 +0200836 dev->irq_active_low = irq->polarity == ACPI_ACTIVE_LOW;
Frederic Danis6cc43962015-09-04 15:35:44 +0200837 break;
Frederic Danisae056902015-08-11 16:35:37 +0200838
Frederic Danis6cc43962015-09-04 15:35:44 +0200839 case ACPI_RESOURCE_TYPE_GPIO:
840 gpio = &ares->data.gpio;
841 if (gpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT)
Hans de Goede227630c2017-10-04 20:43:36 +0200842 dev->irq_active_low = gpio->polarity == ACPI_ACTIVE_LOW;
Frederic Danis6cc43962015-09-04 15:35:44 +0200843 break;
844
845 case ACPI_RESOURCE_TYPE_SERIAL_BUS:
Frederic Danisae056902015-08-11 16:35:37 +0200846 sb = &ares->data.uart_serial_bus;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200847 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_UART) {
Frederic Danisae056902015-08-11 16:35:37 +0200848 dev->init_speed = sb->default_baud_rate;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200849 dev->oper_speed = 4000000;
850 }
Frederic Danis6cc43962015-09-04 15:35:44 +0200851 break;
852
853 default:
854 break;
Frederic Danisae056902015-08-11 16:35:37 +0200855 }
856
Hans de Goede9d54fd62017-10-04 20:43:41 +0200857 return 0;
Frederic Danisae056902015-08-11 16:35:37 +0200858}
Lukas Wunner4c331622018-01-10 16:32:10 +0100859
860static int bcm_apple_set_device_wakeup(struct bcm_device *dev, bool awake)
861{
862 if (ACPI_FAILURE(acpi_execute_simple_method(dev->btlp, NULL, !awake)))
863 return -EIO;
864
865 return 0;
866}
867
868static int bcm_apple_set_shutdown(struct bcm_device *dev, bool powered)
869{
870 if (ACPI_FAILURE(acpi_evaluate_object(powered ? dev->btpu : dev->btpd,
871 NULL, NULL, NULL)))
872 return -EIO;
873
874 return 0;
875}
876
877static int bcm_apple_get_resources(struct bcm_device *dev)
878{
879 struct acpi_device *adev = ACPI_COMPANION(dev->dev);
880 const union acpi_object *obj;
881
882 if (!adev ||
883 ACPI_FAILURE(acpi_get_handle(adev->handle, "BTLP", &dev->btlp)) ||
884 ACPI_FAILURE(acpi_get_handle(adev->handle, "BTPU", &dev->btpu)) ||
885 ACPI_FAILURE(acpi_get_handle(adev->handle, "BTPD", &dev->btpd)))
886 return -ENODEV;
887
888 if (!acpi_dev_get_property(adev, "baud", ACPI_TYPE_BUFFER, &obj) &&
889 obj->buffer.length == 8)
890 dev->init_speed = *(u64 *)obj->buffer.pointer;
891
892 dev->set_device_wakeup = bcm_apple_set_device_wakeup;
893 dev->set_shutdown = bcm_apple_set_shutdown;
894
895 return 0;
896}
897#else
898static inline int bcm_apple_get_resources(struct bcm_device *dev)
899{
900 return -EOPNOTSUPP;
901}
Andy Shevchenko212d7182017-03-10 14:28:20 +0200902#endif /* CONFIG_ACPI */
Frederic Danisae056902015-08-11 16:35:37 +0200903
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100904static int bcm_gpio_set_device_wakeup(struct bcm_device *dev, bool awake)
905{
906 gpiod_set_value(dev->device_wakeup, awake);
907 return 0;
908}
909
910static int bcm_gpio_set_shutdown(struct bcm_device *dev, bool powered)
911{
912 gpiod_set_value(dev->shutdown, powered);
913 return 0;
914}
915
Hans de Goede42ef18f2017-10-04 20:43:40 +0200916static int bcm_get_resources(struct bcm_device *dev)
Frederic Danis0395ffc2015-08-11 16:35:35 +0200917{
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200918 dev->name = dev_name(dev->dev);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200919
Lukas Wunner4c331622018-01-10 16:32:10 +0100920 if (x86_apple_machine && !bcm_apple_get_resources(dev))
921 return 0;
922
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200923 dev->clk = devm_clk_get(dev->dev, NULL);
Daniel Drake89ab37b2017-01-05 11:10:54 -0600924
Stefan Wahrenab2f3362018-02-25 15:10:52 +0100925 dev->device_wakeup = devm_gpiod_get_optional(dev->dev, "device-wakeup",
926 GPIOD_OUT_LOW);
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200927 if (IS_ERR(dev->device_wakeup))
928 return PTR_ERR(dev->device_wakeup);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200929
Stefan Wahrenab2f3362018-02-25 15:10:52 +0100930 dev->shutdown = devm_gpiod_get_optional(dev->dev, "shutdown",
931 GPIOD_OUT_LOW);
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200932 if (IS_ERR(dev->shutdown))
933 return PTR_ERR(dev->shutdown);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200934
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100935 dev->set_device_wakeup = bcm_gpio_set_device_wakeup;
936 dev->set_shutdown = bcm_gpio_set_shutdown;
937
Frederic Danis6cc43962015-09-04 15:35:44 +0200938 /* IRQ can be declared in ACPI table as Interrupt or GpioInt */
Frederic Danis6cc43962015-09-04 15:35:44 +0200939 if (dev->irq <= 0) {
940 struct gpio_desc *gpio;
941
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200942 gpio = devm_gpiod_get_optional(dev->dev, "host-wakeup",
Frederic Danis6cc43962015-09-04 15:35:44 +0200943 GPIOD_IN);
944 if (IS_ERR(gpio))
945 return PTR_ERR(gpio);
946
947 dev->irq = gpiod_to_irq(gpio);
948 }
949
Lukas Wunner5954cdf2018-01-10 16:32:10 +0100950 dev_dbg(dev->dev, "BCM irq: %d\n", dev->irq);
Andy Shevchenko212d7182017-03-10 14:28:20 +0200951 return 0;
952}
953
954#ifdef CONFIG_ACPI
955static int bcm_acpi_probe(struct bcm_device *dev)
956{
Andy Shevchenko212d7182017-03-10 14:28:20 +0200957 LIST_HEAD(resources);
958 const struct dmi_system_id *dmi_id;
959 const struct acpi_gpio_mapping *gpio_mapping = acpi_bcm_int_last_gpios;
960 const struct acpi_device_id *id;
Hans de Goede9d54fd62017-10-04 20:43:41 +0200961 struct resource_entry *entry;
Andy Shevchenko212d7182017-03-10 14:28:20 +0200962 int ret;
963
964 /* Retrieve GPIO data */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200965 id = acpi_match_device(dev->dev->driver->acpi_match_table, dev->dev);
Andy Shevchenko212d7182017-03-10 14:28:20 +0200966 if (id)
967 gpio_mapping = (const struct acpi_gpio_mapping *) id->driver_data;
968
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200969 ret = devm_acpi_dev_add_driver_gpios(dev->dev, gpio_mapping);
Andy Shevchenko212d7182017-03-10 14:28:20 +0200970 if (ret)
971 return ret;
972
Frederic Danisae056902015-08-11 16:35:37 +0200973 /* Retrieve UART ACPI info */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200974 ret = acpi_dev_get_resources(ACPI_COMPANION(dev->dev),
Jarkko Nikulae98d6d62015-09-30 16:26:45 +0300975 &resources, bcm_resource, dev);
Jarkko Nikula5be00282015-09-30 16:26:42 +0300976 if (ret < 0)
977 return ret;
Hans de Goede9d54fd62017-10-04 20:43:41 +0200978
979 resource_list_for_each_entry(entry, &resources) {
980 if (resource_type(entry->res) == IORESOURCE_IRQ) {
981 dev->irq = entry->res->start;
982 break;
983 }
984 }
Jarkko Nikula09dbf1b2015-09-30 16:26:41 +0300985 acpi_dev_free_resource_list(&resources);
Frederic Danisae056902015-08-11 16:35:37 +0200986
Hans de Goede227630c2017-10-04 20:43:36 +0200987 dmi_id = dmi_first_match(bcm_active_low_irq_dmi_table);
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200988 if (dmi_id) {
Ian W MORRISONe8bfe862017-10-07 17:16:08 +1100989 dev_warn(dev->dev, "%s: Overwriting IRQ polarity to active low",
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200990 dmi_id->ident);
Hans de Goede227630c2017-10-04 20:43:36 +0200991 dev->irq_active_low = true;
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200992 }
993
Frederic Danis0395ffc2015-08-11 16:35:35 +0200994 return 0;
995}
Frederic Danis50d78bc2015-08-12 12:46:01 +0200996#else
997static int bcm_acpi_probe(struct bcm_device *dev)
998{
999 return -EINVAL;
1000}
1001#endif /* CONFIG_ACPI */
Frederic Danis0395ffc2015-08-11 16:35:35 +02001002
Hans de Goede8a920562017-10-04 20:43:43 +02001003static int bcm_of_probe(struct bcm_device *bdev)
1004{
1005 device_property_read_u32(bdev->dev, "max-speed", &bdev->oper_speed);
1006 return 0;
1007}
1008
Frederic Danis0395ffc2015-08-11 16:35:35 +02001009static int bcm_probe(struct platform_device *pdev)
1010{
1011 struct bcm_device *dev;
Frederic Danis0395ffc2015-08-11 16:35:35 +02001012 int ret;
1013
1014 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
1015 if (!dev)
1016 return -ENOMEM;
1017
Hans de Goedec0d3ce52017-10-04 20:43:39 +02001018 dev->dev = &pdev->dev;
Hans de Goede4a56f892017-10-04 20:43:38 +02001019 dev->irq = platform_get_irq(pdev, 0);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001020
Hans de Goede201762e2017-10-04 20:43:37 +02001021 if (has_acpi_companion(&pdev->dev)) {
Andy Shevchenko212d7182017-03-10 14:28:20 +02001022 ret = bcm_acpi_probe(dev);
Hans de Goede201762e2017-10-04 20:43:37 +02001023 if (ret)
1024 return ret;
1025 }
1026
Hans de Goede42ef18f2017-10-04 20:43:40 +02001027 ret = bcm_get_resources(dev);
Jarkko Nikula4d1c4552015-09-30 16:26:44 +03001028 if (ret)
1029 return ret;
Frederic Danis0395ffc2015-08-11 16:35:35 +02001030
1031 platform_set_drvdata(pdev, dev);
1032
1033 dev_info(&pdev->dev, "%s device registered.\n", dev->name);
1034
1035 /* Place this instance on the device list */
Frederic Danisbb3ea162015-09-01 12:13:35 +02001036 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001037 list_add_tail(&dev->list, &bcm_device_list);
Frederic Danisbb3ea162015-09-01 12:13:35 +02001038 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001039
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +01001040 ret = bcm_gpio_set_power(dev, false);
1041 if (ret)
1042 dev_err(&pdev->dev, "Failed to power down\n");
Frederic Danis0395ffc2015-08-11 16:35:35 +02001043
1044 return 0;
1045}
1046
1047static int bcm_remove(struct platform_device *pdev)
1048{
1049 struct bcm_device *dev = platform_get_drvdata(pdev);
1050
Frederic Danisbb3ea162015-09-01 12:13:35 +02001051 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001052 list_del(&dev->list);
Frederic Danisbb3ea162015-09-01 12:13:35 +02001053 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001054
Frederic Danis0395ffc2015-08-11 16:35:35 +02001055 dev_info(&pdev->dev, "%s device unregistered.\n", dev->name);
1056
1057 return 0;
1058}
1059
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001060static const struct hci_uart_proto bcm_proto = {
1061 .id = HCI_UART_BCM,
Loic Poulain143f0a22016-09-19 12:05:12 +02001062 .name = "Broadcom",
Marcel Holtmannaee61f72015-10-20 21:30:45 +02001063 .manufacturer = 15,
Frederic Danis61b2fc22015-06-09 16:15:37 +02001064 .init_speed = 115200,
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001065 .open = bcm_open,
1066 .close = bcm_close,
1067 .flush = bcm_flush,
1068 .setup = bcm_setup,
Frederic Danis61b2fc22015-06-09 16:15:37 +02001069 .set_baudrate = bcm_set_baudrate,
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001070 .recv = bcm_recv,
1071 .enqueue = bcm_enqueue,
1072 .dequeue = bcm_dequeue,
1073};
1074
Frederic Danis0395ffc2015-08-11 16:35:35 +02001075#ifdef CONFIG_ACPI
1076static const struct acpi_device_id bcm_acpi_match[] = {
Daniel Drake89ab37b2017-01-05 11:10:54 -06001077 { "BCM2E1A", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1078 { "BCM2E39", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1079 { "BCM2E3A", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1080 { "BCM2E3D", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1081 { "BCM2E3F", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1082 { "BCM2E40", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1083 { "BCM2E54", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1084 { "BCM2E55", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1085 { "BCM2E64", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1086 { "BCM2E65", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1087 { "BCM2E67", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1088 { "BCM2E71", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
Hans de Goedec23fae12017-11-22 14:37:28 +01001089 { "BCM2E72", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
Daniel Drake89ab37b2017-01-05 11:10:54 -06001090 { "BCM2E7B", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1091 { "BCM2E7C", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
Hans de Goede61d220a2017-10-13 17:54:02 +02001092 { "BCM2E7E", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
Daniel Drake89ab37b2017-01-05 11:10:54 -06001093 { "BCM2E95", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
1094 { "BCM2E96", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
Ian W MORRISON1bdb68b2017-10-07 17:15:25 +11001095 { "BCM2EA4", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
Frederic Danis0395ffc2015-08-11 16:35:35 +02001096 { },
1097};
1098MODULE_DEVICE_TABLE(acpi, bcm_acpi_match);
1099#endif
1100
Hans de Goede8a920562017-10-04 20:43:43 +02001101/* suspend and resume callbacks */
Frederic Danise88ab302015-09-23 18:18:11 +02001102static const struct dev_pm_ops bcm_pm_ops = {
1103 SET_SYSTEM_SLEEP_PM_OPS(bcm_suspend, bcm_resume)
1104 SET_RUNTIME_PM_OPS(bcm_suspend_device, bcm_resume_device, NULL)
1105};
Frederic Danis118612f2015-08-11 16:35:38 +02001106
Frederic Danis0395ffc2015-08-11 16:35:35 +02001107static struct platform_driver bcm_driver = {
1108 .probe = bcm_probe,
1109 .remove = bcm_remove,
1110 .driver = {
1111 .name = "hci_bcm",
1112 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
Frederic Danis118612f2015-08-11 16:35:38 +02001113 .pm = &bcm_pm_ops,
Frederic Danis0395ffc2015-08-11 16:35:35 +02001114 },
1115};
1116
Loic Poulain33cd1492017-08-17 19:59:51 +02001117static int bcm_serdev_probe(struct serdev_device *serdev)
1118{
Hans de Goede8a920562017-10-04 20:43:43 +02001119 struct bcm_device *bcmdev;
Loic Poulain33cd1492017-08-17 19:59:51 +02001120 int err;
1121
1122 bcmdev = devm_kzalloc(&serdev->dev, sizeof(*bcmdev), GFP_KERNEL);
1123 if (!bcmdev)
1124 return -ENOMEM;
1125
Hans de Goede8a920562017-10-04 20:43:43 +02001126 bcmdev->dev = &serdev->dev;
Arnd Bergmann81a19052017-10-11 15:46:21 +02001127#ifdef CONFIG_PM
Hans de Goede8a920562017-10-04 20:43:43 +02001128 bcmdev->hu = &bcmdev->serdev_hu;
Arnd Bergmann81a19052017-10-11 15:46:21 +02001129#endif
Hans de Goede8a920562017-10-04 20:43:43 +02001130 bcmdev->serdev_hu.serdev = serdev;
Loic Poulain33cd1492017-08-17 19:59:51 +02001131 serdev_device_set_drvdata(serdev, bcmdev);
1132
Hans de Goede8a920562017-10-04 20:43:43 +02001133 if (has_acpi_companion(&serdev->dev))
1134 err = bcm_acpi_probe(bcmdev);
1135 else
1136 err = bcm_of_probe(bcmdev);
1137 if (err)
1138 return err;
Loic Poulain33cd1492017-08-17 19:59:51 +02001139
Hans de Goede8a920562017-10-04 20:43:43 +02001140 err = bcm_get_resources(bcmdev);
1141 if (err)
1142 return err;
1143
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +01001144 err = bcm_gpio_set_power(bcmdev, false);
1145 if (err)
1146 dev_err(&serdev->dev, "Failed to power down\n");
Hans de Goede8a920562017-10-04 20:43:43 +02001147
1148 return hci_uart_register_device(&bcmdev->serdev_hu, &bcm_proto);
Loic Poulain33cd1492017-08-17 19:59:51 +02001149}
1150
1151static void bcm_serdev_remove(struct serdev_device *serdev)
1152{
Hans de Goede8a920562017-10-04 20:43:43 +02001153 struct bcm_device *bcmdev = serdev_device_get_drvdata(serdev);
Loic Poulain33cd1492017-08-17 19:59:51 +02001154
Hans de Goede8a920562017-10-04 20:43:43 +02001155 hci_uart_unregister_device(&bcmdev->serdev_hu);
Loic Poulain33cd1492017-08-17 19:59:51 +02001156}
1157
1158#ifdef CONFIG_OF
1159static const struct of_device_id bcm_bluetooth_of_match[] = {
1160 { .compatible = "brcm,bcm43438-bt" },
1161 { },
1162};
1163MODULE_DEVICE_TABLE(of, bcm_bluetooth_of_match);
1164#endif
1165
1166static struct serdev_device_driver bcm_serdev_driver = {
1167 .probe = bcm_serdev_probe,
1168 .remove = bcm_serdev_remove,
1169 .driver = {
1170 .name = "hci_uart_bcm",
1171 .of_match_table = of_match_ptr(bcm_bluetooth_of_match),
Hans de Goede8a920562017-10-04 20:43:43 +02001172 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
1173 .pm = &bcm_pm_ops,
Loic Poulain33cd1492017-08-17 19:59:51 +02001174 },
1175};
1176
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001177int __init bcm_init(void)
1178{
Loic Poulain33cd1492017-08-17 19:59:51 +02001179 /* For now, we need to keep both platform device
1180 * driver (ACPI generated) and serdev driver (DT).
1181 */
Frederic Danis0395ffc2015-08-11 16:35:35 +02001182 platform_driver_register(&bcm_driver);
Loic Poulain33cd1492017-08-17 19:59:51 +02001183 serdev_device_driver_register(&bcm_serdev_driver);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001184
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001185 return hci_uart_register_proto(&bcm_proto);
1186}
1187
1188int __exit bcm_deinit(void)
1189{
Frederic Danis0395ffc2015-08-11 16:35:35 +02001190 platform_driver_unregister(&bcm_driver);
Loic Poulain33cd1492017-08-17 19:59:51 +02001191 serdev_device_driver_unregister(&bcm_serdev_driver);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001192
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001193 return hci_uart_unregister_proto(&bcm_proto);
1194}