blob: 50c8523f8653f8cb595bf3fb6f9ea0e568faab63 [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
Hans de Goedee09070c2018-03-16 21:28:07 +0100129static int irq_polarity = -1;
130module_param(irq_polarity, int, 0444);
131MODULE_PARM_DESC(irq_polarity, "IRQ polarity 0: active-high 1: active-low");
132
Loic Poulain33cd1492017-08-17 19:59:51 +0200133static inline void host_set_baudrate(struct hci_uart *hu, unsigned int speed)
134{
135 if (hu->serdev)
136 serdev_device_set_baudrate(hu->serdev, speed);
137 else
138 hci_uart_set_baudrate(hu, speed);
139}
140
Frederic Danis61b2fc22015-06-09 16:15:37 +0200141static int bcm_set_baudrate(struct hci_uart *hu, unsigned int speed)
142{
143 struct hci_dev *hdev = hu->hdev;
144 struct sk_buff *skb;
145 struct bcm_update_uart_baud_rate param;
146
147 if (speed > 3000000) {
148 struct bcm_write_uart_clock_setting clock;
149
150 clock.type = BCM_UART_CLOCK_48MHZ;
151
Frederic Danis65ad07c2015-09-01 12:13:36 +0200152 bt_dev_dbg(hdev, "Set Controller clock (%d)", clock.type);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200153
154 /* This Broadcom specific command changes the UART's controller
155 * clock for baud rate > 3000000.
156 */
157 skb = __hci_cmd_sync(hdev, 0xfc45, 1, &clock, HCI_INIT_TIMEOUT);
158 if (IS_ERR(skb)) {
159 int err = PTR_ERR(skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200160 bt_dev_err(hdev, "BCM: failed to write clock (%d)",
161 err);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200162 return err;
163 }
164
165 kfree_skb(skb);
166 }
167
Frederic Danis65ad07c2015-09-01 12:13:36 +0200168 bt_dev_dbg(hdev, "Set Controller UART speed to %d bit/s", speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200169
170 param.zero = cpu_to_le16(0);
171 param.baud_rate = cpu_to_le32(speed);
172
173 /* This Broadcom specific command changes the UART's controller baud
174 * rate.
175 */
176 skb = __hci_cmd_sync(hdev, 0xfc18, sizeof(param), &param,
177 HCI_INIT_TIMEOUT);
178 if (IS_ERR(skb)) {
179 int err = PTR_ERR(skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200180 bt_dev_err(hdev, "BCM: failed to write update baudrate (%d)",
181 err);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200182 return err;
183 }
184
185 kfree_skb(skb);
186
187 return 0;
188}
189
Frederic Danis917522a2015-08-28 15:44:00 +0200190/* bcm_device_exists should be protected by bcm_device_lock */
Frederic Danis0395ffc2015-08-11 16:35:35 +0200191static bool bcm_device_exists(struct bcm_device *device)
192{
193 struct list_head *p;
194
Arnd Bergmann81a19052017-10-11 15:46:21 +0200195#ifdef CONFIG_PM
Hans de Goede8a920562017-10-04 20:43:43 +0200196 /* Devices using serdev always exist */
197 if (device && device->hu && device->hu->serdev)
198 return true;
Arnd Bergmann81a19052017-10-11 15:46:21 +0200199#endif
Hans de Goede8a920562017-10-04 20:43:43 +0200200
Frederic Danis0395ffc2015-08-11 16:35:35 +0200201 list_for_each(p, &bcm_device_list) {
202 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
203
204 if (device == dev)
205 return true;
206 }
207
208 return false;
209}
210
211static int bcm_gpio_set_power(struct bcm_device *dev, bool powered)
212{
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100213 int err;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200214
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100215 if (powered && !IS_ERR(dev->clk) && !dev->clk_enabled) {
216 err = clk_prepare_enable(dev->clk);
217 if (err)
218 return err;
219 }
220
221 err = dev->set_shutdown(dev, powered);
222 if (err)
223 goto err_clk_disable;
224
225 err = dev->set_device_wakeup(dev, powered);
226 if (err)
227 goto err_revert_shutdown;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200228
229 if (!powered && !IS_ERR(dev->clk) && dev->clk_enabled)
John Keeping730ce392017-03-15 12:20:05 +0000230 clk_disable_unprepare(dev->clk);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200231
232 dev->clk_enabled = powered;
233
234 return 0;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100235
236err_revert_shutdown:
237 dev->set_shutdown(dev, !powered);
238err_clk_disable:
239 if (powered && !IS_ERR(dev->clk) && !dev->clk_enabled)
240 clk_disable_unprepare(dev->clk);
241 return err;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200242}
243
Frederic Danisb7a622a2015-09-23 18:18:09 +0200244#ifdef CONFIG_PM
Frederic Danis6cc43962015-09-04 15:35:44 +0200245static irqreturn_t bcm_host_wake(int irq, void *data)
246{
247 struct bcm_device *bdev = data;
248
249 bt_dev_dbg(bdev, "Host wake IRQ");
250
Hans de Goedeb09c6152018-03-14 23:06:02 +0100251 pm_runtime_get(bdev->dev);
252 pm_runtime_mark_last_busy(bdev->dev);
253 pm_runtime_put_autosuspend(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200254
Frederic Danis6cc43962015-09-04 15:35:44 +0200255 return IRQ_HANDLED;
256}
257
258static int bcm_request_irq(struct bcm_data *bcm)
259{
260 struct bcm_device *bdev = bcm->dev;
Loic Poulain98dc77d2017-07-04 12:57:56 +0200261 int err;
Frederic Danis6cc43962015-09-04 15:35:44 +0200262
Frederic Danis6cc43962015-09-04 15:35:44 +0200263 mutex_lock(&bcm_device_lock);
264 if (!bcm_device_exists(bdev)) {
265 err = -ENODEV;
266 goto unlock;
267 }
268
Loic Poulain98dc77d2017-07-04 12:57:56 +0200269 if (bdev->irq <= 0) {
270 err = -EOPNOTSUPP;
271 goto unlock;
Frederic Danis6cc43962015-09-04 15:35:44 +0200272 }
273
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200274 err = devm_request_irq(bdev->dev, bdev->irq, bcm_host_wake,
Hans de Goede227630c2017-10-04 20:43:36 +0200275 bdev->irq_active_low ? IRQF_TRIGGER_FALLING :
276 IRQF_TRIGGER_RISING,
277 "host_wake", bdev);
Lukas Wunner4dc27332018-01-10 16:32:10 +0100278 if (err) {
279 bdev->irq = err;
Loic Poulain98dc77d2017-07-04 12:57:56 +0200280 goto unlock;
Lukas Wunner4dc27332018-01-10 16:32:10 +0100281 }
Loic Poulain98dc77d2017-07-04 12:57:56 +0200282
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200283 device_init_wakeup(bdev->dev, true);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200284
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200285 pm_runtime_set_autosuspend_delay(bdev->dev,
Loic Poulain98dc77d2017-07-04 12:57:56 +0200286 BCM_AUTOSUSPEND_DELAY);
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200287 pm_runtime_use_autosuspend(bdev->dev);
288 pm_runtime_set_active(bdev->dev);
289 pm_runtime_enable(bdev->dev);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200290
Frederic Danis6cc43962015-09-04 15:35:44 +0200291unlock:
292 mutex_unlock(&bcm_device_lock);
293
294 return err;
295}
296
297static const struct bcm_set_sleep_mode default_sleep_params = {
298 .sleep_mode = 1, /* 0=Disabled, 1=UART, 2=Reserved, 3=USB */
299 .idle_host = 2, /* idle threshold HOST, in 300ms */
300 .idle_dev = 2, /* idle threshold device, in 300ms */
301 .bt_wake_active = 1, /* BT_WAKE active mode: 1 = high, 0 = low */
302 .host_wake_active = 0, /* HOST_WAKE active mode: 1 = high, 0 = low */
303 .allow_host_sleep = 1, /* Allow host sleep in SCO flag */
Frederic Danise88ab302015-09-23 18:18:11 +0200304 .combine_modes = 1, /* Combine sleep and LPM flag */
Frederic Danis6cc43962015-09-04 15:35:44 +0200305 .tristate_control = 0, /* Allow tri-state control of UART tx flag */
306 /* Irrelevant USB flags */
307 .usb_auto_sleep = 0,
308 .usb_resume_timeout = 0,
Lukas Wunnerff875962018-01-10 16:32:10 +0100309 .break_to_host = 0,
Hans de Goedee07c99b2018-03-14 23:06:03 +0100310 .pulsed_host_wake = 1,
Frederic Danis6cc43962015-09-04 15:35:44 +0200311};
312
313static int bcm_setup_sleep(struct hci_uart *hu)
314{
315 struct bcm_data *bcm = hu->priv;
316 struct sk_buff *skb;
317 struct bcm_set_sleep_mode sleep_params = default_sleep_params;
318
Hans de Goede227630c2017-10-04 20:43:36 +0200319 sleep_params.host_wake_active = !bcm->dev->irq_active_low;
Frederic Danis6cc43962015-09-04 15:35:44 +0200320
321 skb = __hci_cmd_sync(hu->hdev, 0xfc27, sizeof(sleep_params),
322 &sleep_params, HCI_INIT_TIMEOUT);
323 if (IS_ERR(skb)) {
324 int err = PTR_ERR(skb);
325 bt_dev_err(hu->hdev, "Sleep VSC failed (%d)", err);
326 return err;
327 }
328 kfree_skb(skb);
329
330 bt_dev_dbg(hu->hdev, "Set Sleep Parameters VSC succeeded");
331
332 return 0;
333}
334#else
335static inline int bcm_request_irq(struct bcm_data *bcm) { return 0; }
336static inline int bcm_setup_sleep(struct hci_uart *hu) { return 0; }
337#endif
338
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200339static int bcm_set_diag(struct hci_dev *hdev, bool enable)
340{
341 struct hci_uart *hu = hci_get_drvdata(hdev);
342 struct bcm_data *bcm = hu->priv;
343 struct sk_buff *skb;
344
345 if (!test_bit(HCI_RUNNING, &hdev->flags))
346 return -ENETDOWN;
347
348 skb = bt_skb_alloc(3, GFP_KERNEL);
Dan Carpentera1857392015-10-22 12:06:09 +0300349 if (!skb)
350 return -ENOMEM;
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200351
Johannes Berg634fef62017-06-16 14:29:24 +0200352 skb_put_u8(skb, BCM_LM_DIAG_PKT);
353 skb_put_u8(skb, 0xf0);
354 skb_put_u8(skb, enable);
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200355
356 skb_queue_tail(&bcm->txq, skb);
357 hci_uart_tx_wakeup(hu);
358
359 return 0;
360}
361
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700362static int bcm_open(struct hci_uart *hu)
363{
364 struct bcm_data *bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200365 struct list_head *p;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100366 int err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700367
Frederic Danis65ad07c2015-09-01 12:13:36 +0200368 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700369
370 bcm = kzalloc(sizeof(*bcm), GFP_KERNEL);
371 if (!bcm)
372 return -ENOMEM;
373
374 skb_queue_head_init(&bcm->txq);
375
376 hu->priv = bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200377
Hans de Goede8a920562017-10-04 20:43:43 +0200378 mutex_lock(&bcm_device_lock);
379
Loic Poulain33cd1492017-08-17 19:59:51 +0200380 if (hu->serdev) {
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100381 err = serdev_device_open(hu->serdev);
382 if (err)
383 goto err_free;
384
Hans de Goede8a920562017-10-04 20:43:43 +0200385 bcm->dev = serdev_device_get_drvdata(hu->serdev);
Loic Poulain33cd1492017-08-17 19:59:51 +0200386 goto out;
387 }
388
Johan Hovold95065a62017-03-29 18:15:27 +0200389 if (!hu->tty->dev)
390 goto out;
391
Frederic Danis0395ffc2015-08-11 16:35:35 +0200392 list_for_each(p, &bcm_device_list) {
393 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
394
395 /* Retrieve saved bcm_device based on parent of the
396 * platform device (saved during device probe) and
397 * parent of tty device used by hci_uart
398 */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200399 if (hu->tty->dev->parent == dev->dev->parent) {
Frederic Danis0395ffc2015-08-11 16:35:35 +0200400 bcm->dev = dev;
Frederic Danisb7a622a2015-09-23 18:18:09 +0200401#ifdef CONFIG_PM
Frederic Danis118612f2015-08-11 16:35:38 +0200402 dev->hu = hu;
403#endif
Frederic Danis0395ffc2015-08-11 16:35:35 +0200404 break;
405 }
406 }
407
Johan Hovold95065a62017-03-29 18:15:27 +0200408out:
Hans de Goede8a920562017-10-04 20:43:43 +0200409 if (bcm->dev) {
410 hu->init_speed = bcm->dev->init_speed;
411 hu->oper_speed = bcm->dev->oper_speed;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100412 err = bcm_gpio_set_power(bcm->dev, true);
413 if (err)
414 goto err_unset_hu;
Hans de Goede8a920562017-10-04 20:43:43 +0200415 }
416
417 mutex_unlock(&bcm_device_lock);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700418 return 0;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100419
420err_unset_hu:
Hans de Goede8c6b8ed2018-01-22 12:53:24 +0100421 if (hu->serdev)
422 serdev_device_close(hu->serdev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100423#ifdef CONFIG_PM
Hans de Goede8c6b8ed2018-01-22 12:53:24 +0100424 else
425 bcm->dev->hu = NULL;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100426#endif
427err_free:
428 mutex_unlock(&bcm_device_lock);
429 hu->priv = NULL;
430 kfree(bcm);
431 return err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700432}
433
434static int bcm_close(struct hci_uart *hu)
435{
436 struct bcm_data *bcm = hu->priv;
Hans de Goede8a920562017-10-04 20:43:43 +0200437 struct bcm_device *bdev = NULL;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100438 int err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700439
Frederic Danis65ad07c2015-09-01 12:13:36 +0200440 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700441
Frederic Danis0395ffc2015-08-11 16:35:35 +0200442 /* Protect bcm->dev against removal of the device or driver */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200443 mutex_lock(&bcm_device_lock);
Hans de Goede8a920562017-10-04 20:43:43 +0200444
445 if (hu->serdev) {
446 serdev_device_close(hu->serdev);
447 bdev = serdev_device_get_drvdata(hu->serdev);
448 } else if (bcm_device_exists(bcm->dev)) {
449 bdev = bcm->dev;
450#ifdef CONFIG_PM
451 bdev->hu = NULL;
452#endif
453 }
454
455 if (bdev) {
Lukas Wunner6d83f1e2018-01-10 16:32:10 +0100456 if (IS_ENABLED(CONFIG_PM) && bdev->irq > 0) {
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200457 devm_free_irq(bdev->dev, bdev->irq, bdev);
458 device_init_wakeup(bdev->dev, false);
Lukas Wunnerf4cf6b72018-01-10 16:32:10 +0100459 pm_runtime_disable(bdev->dev);
Frederic Danis6cc43962015-09-04 15:35:44 +0200460 }
Lukas Wunner54ba69f2018-01-10 16:32:10 +0100461
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100462 err = bcm_gpio_set_power(bdev, false);
463 if (err)
464 bt_dev_err(hu->hdev, "Failed to power down");
465 else
466 pm_runtime_set_suspended(bdev->dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200467 }
Frederic Danisbb3ea162015-09-01 12:13:35 +0200468 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200469
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700470 skb_queue_purge(&bcm->txq);
471 kfree_skb(bcm->rx_skb);
472 kfree(bcm);
473
474 hu->priv = NULL;
475 return 0;
476}
477
478static int bcm_flush(struct hci_uart *hu)
479{
480 struct bcm_data *bcm = hu->priv;
481
Frederic Danis65ad07c2015-09-01 12:13:36 +0200482 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700483
484 skb_queue_purge(&bcm->txq);
485
486 return 0;
487}
488
489static int bcm_setup(struct hci_uart *hu)
490{
Frederic Danis6cc43962015-09-04 15:35:44 +0200491 struct bcm_data *bcm = hu->priv;
Frederic Danis6be09b42015-05-28 11:25:05 +0200492 char fw_name[64];
493 const struct firmware *fw;
Frederic Danis960ef1d2015-06-18 12:43:27 +0200494 unsigned int speed;
Frederic Danis6be09b42015-05-28 11:25:05 +0200495 int err;
496
Frederic Danis65ad07c2015-09-01 12:13:36 +0200497 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700498
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200499 hu->hdev->set_diag = bcm_set_diag;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700500 hu->hdev->set_bdaddr = btbcm_set_bdaddr;
501
Frederic Danis6be09b42015-05-28 11:25:05 +0200502 err = btbcm_initialize(hu->hdev, fw_name, sizeof(fw_name));
503 if (err)
504 return err;
505
506 err = request_firmware(&fw, fw_name, &hu->hdev->dev);
507 if (err < 0) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200508 bt_dev_info(hu->hdev, "BCM: Patch %s not found", fw_name);
Frederic Danis6be09b42015-05-28 11:25:05 +0200509 return 0;
510 }
511
512 err = btbcm_patchram(hu->hdev, fw);
513 if (err) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200514 bt_dev_info(hu->hdev, "BCM: Patch failed (%d)", err);
Frederic Danis6be09b42015-05-28 11:25:05 +0200515 goto finalize;
516 }
517
Frederic Danis960ef1d2015-06-18 12:43:27 +0200518 /* Init speed if any */
519 if (hu->init_speed)
520 speed = hu->init_speed;
521 else if (hu->proto->init_speed)
522 speed = hu->proto->init_speed;
523 else
524 speed = 0;
Frederic Danis6be09b42015-05-28 11:25:05 +0200525
Frederic Danis960ef1d2015-06-18 12:43:27 +0200526 if (speed)
Loic Poulain33cd1492017-08-17 19:59:51 +0200527 host_set_baudrate(hu, speed);
Frederic Danis960ef1d2015-06-18 12:43:27 +0200528
529 /* Operational speed if any */
530 if (hu->oper_speed)
531 speed = hu->oper_speed;
532 else if (hu->proto->oper_speed)
533 speed = hu->proto->oper_speed;
534 else
535 speed = 0;
536
537 if (speed) {
538 err = bcm_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200539 if (!err)
Loic Poulain33cd1492017-08-17 19:59:51 +0200540 host_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200541 }
542
Frederic Danis6be09b42015-05-28 11:25:05 +0200543finalize:
544 release_firmware(fw);
545
546 err = btbcm_finalize(hu->hdev);
Frederic Danis6cc43962015-09-04 15:35:44 +0200547 if (err)
548 return err;
549
Loic Poulaincdd24a22017-06-27 19:15:07 +0200550 if (!bcm_request_irq(bcm))
Frederic Danis6cc43962015-09-04 15:35:44 +0200551 err = bcm_setup_sleep(hu);
Frederic Danis6be09b42015-05-28 11:25:05 +0200552
553 return err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700554}
555
Marcel Holtmann94c58132015-10-07 19:12:54 +0200556#define BCM_RECV_LM_DIAG \
557 .type = BCM_LM_DIAG_PKT, \
558 .hlen = BCM_LM_DIAG_SIZE, \
559 .loff = 0, \
560 .lsize = 0, \
561 .maxlen = BCM_LM_DIAG_SIZE
562
Marcel Holtmann01d5e442017-08-17 21:41:09 +0200563#define BCM_RECV_NULL \
564 .type = BCM_NULL_PKT, \
565 .hlen = BCM_NULL_SIZE, \
566 .loff = 0, \
567 .lsize = 0, \
568 .maxlen = BCM_NULL_SIZE
569
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700570static const struct h4_recv_pkt bcm_recv_pkts[] = {
Marcel Holtmann94c58132015-10-07 19:12:54 +0200571 { H4_RECV_ACL, .recv = hci_recv_frame },
572 { H4_RECV_SCO, .recv = hci_recv_frame },
573 { H4_RECV_EVENT, .recv = hci_recv_frame },
574 { BCM_RECV_LM_DIAG, .recv = hci_recv_diag },
Marcel Holtmann01d5e442017-08-17 21:41:09 +0200575 { BCM_RECV_NULL, .recv = hci_recv_diag },
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700576};
577
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700578static int bcm_recv(struct hci_uart *hu, const void *data, int count)
579{
580 struct bcm_data *bcm = hu->priv;
581
582 if (!test_bit(HCI_UART_REGISTERED, &hu->flags))
583 return -EUNATCH;
584
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700585 bcm->rx_skb = h4_recv_buf(hu->hdev, bcm->rx_skb, data, count,
586 bcm_recv_pkts, ARRAY_SIZE(bcm_recv_pkts));
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700587 if (IS_ERR(bcm->rx_skb)) {
588 int err = PTR_ERR(bcm->rx_skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200589 bt_dev_err(hu->hdev, "Frame reassembly failed (%d)", err);
Chan-yeol Park37134162015-06-17 21:10:39 +0900590 bcm->rx_skb = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700591 return err;
Frederic Danise88ab302015-09-23 18:18:11 +0200592 } else if (!bcm->rx_skb) {
593 /* Delay auto-suspend when receiving completed packet */
594 mutex_lock(&bcm_device_lock);
Hans de Goedeb09c6152018-03-14 23:06:02 +0100595 if (bcm->dev && bcm_device_exists(bcm->dev)) {
596 pm_runtime_get(bcm->dev->dev);
597 pm_runtime_mark_last_busy(bcm->dev->dev);
598 pm_runtime_put_autosuspend(bcm->dev->dev);
599 }
Frederic Danise88ab302015-09-23 18:18:11 +0200600 mutex_unlock(&bcm_device_lock);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700601 }
602
603 return count;
604}
605
606static int bcm_enqueue(struct hci_uart *hu, struct sk_buff *skb)
607{
608 struct bcm_data *bcm = hu->priv;
609
Frederic Danis65ad07c2015-09-01 12:13:36 +0200610 bt_dev_dbg(hu->hdev, "hu %p skb %p", hu, skb);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700611
612 /* Prepend skb with frame type */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100613 memcpy(skb_push(skb, 1), &hci_skb_pkt_type(skb), 1);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700614 skb_queue_tail(&bcm->txq, skb);
615
616 return 0;
617}
618
619static struct sk_buff *bcm_dequeue(struct hci_uart *hu)
620{
621 struct bcm_data *bcm = hu->priv;
Frederic Danise88ab302015-09-23 18:18:11 +0200622 struct sk_buff *skb = NULL;
623 struct bcm_device *bdev = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700624
Frederic Danise88ab302015-09-23 18:18:11 +0200625 mutex_lock(&bcm_device_lock);
626
627 if (bcm_device_exists(bcm->dev)) {
628 bdev = bcm->dev;
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200629 pm_runtime_get_sync(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200630 /* Shall be resumed here */
631 }
632
633 skb = skb_dequeue(&bcm->txq);
634
635 if (bdev) {
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200636 pm_runtime_mark_last_busy(bdev->dev);
637 pm_runtime_put_autosuspend(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200638 }
639
640 mutex_unlock(&bcm_device_lock);
641
642 return skb;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700643}
644
Frederic Danisb7a622a2015-09-23 18:18:09 +0200645#ifdef CONFIG_PM
646static int bcm_suspend_device(struct device *dev)
Frederic Danis118612f2015-08-11 16:35:38 +0200647{
Hans de Goede78277d72017-10-04 20:43:42 +0200648 struct bcm_device *bdev = dev_get_drvdata(dev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100649 int err;
Frederic Danis118612f2015-08-11 16:35:38 +0200650
Frederic Danisb7a622a2015-09-23 18:18:09 +0200651 bt_dev_dbg(bdev, "");
Frederic Danis118612f2015-08-11 16:35:38 +0200652
Frederic Danisb7a622a2015-09-23 18:18:09 +0200653 if (!bdev->is_suspended && bdev->hu) {
Frederic Danis118612f2015-08-11 16:35:38 +0200654 hci_uart_set_flow_control(bdev->hu, true);
655
Frederic Danisb7a622a2015-09-23 18:18:09 +0200656 /* Once this returns, driver suspends BT via GPIO */
Frederic Danis118612f2015-08-11 16:35:38 +0200657 bdev->is_suspended = true;
658 }
659
660 /* Suspend the device */
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100661 err = bdev->set_device_wakeup(bdev, false);
662 if (err) {
663 if (bdev->is_suspended && bdev->hu) {
664 bdev->is_suspended = false;
665 hci_uart_set_flow_control(bdev->hu, false);
666 }
667 return -EBUSY;
668 }
669
Lukas Wunner3e81a4c2018-01-10 16:32:10 +0100670 bt_dev_dbg(bdev, "suspend, delaying 15 ms");
Lukas Wunnere4b9e5b2018-01-10 16:32:10 +0100671 msleep(15);
Frederic Danis118612f2015-08-11 16:35:38 +0200672
Frederic Danisb7a622a2015-09-23 18:18:09 +0200673 return 0;
674}
675
676static int bcm_resume_device(struct device *dev)
677{
Hans de Goede78277d72017-10-04 20:43:42 +0200678 struct bcm_device *bdev = dev_get_drvdata(dev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100679 int err;
Frederic Danisb7a622a2015-09-23 18:18:09 +0200680
681 bt_dev_dbg(bdev, "");
682
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100683 err = bdev->set_device_wakeup(bdev, true);
684 if (err) {
685 dev_err(dev, "Failed to power up\n");
686 return err;
687 }
688
Lukas Wunner3e81a4c2018-01-10 16:32:10 +0100689 bt_dev_dbg(bdev, "resume, delaying 15 ms");
Lukas Wunnere4b9e5b2018-01-10 16:32:10 +0100690 msleep(15);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200691
692 /* When this executes, the device has woken up already */
693 if (bdev->is_suspended && bdev->hu) {
694 bdev->is_suspended = false;
695
696 hci_uart_set_flow_control(bdev->hu, false);
697 }
698
699 return 0;
700}
701#endif
702
703#ifdef CONFIG_PM_SLEEP
Hans de Goede8a920562017-10-04 20:43:43 +0200704/* suspend callback */
Frederic Danisb7a622a2015-09-23 18:18:09 +0200705static int bcm_suspend(struct device *dev)
706{
Hans de Goede78277d72017-10-04 20:43:42 +0200707 struct bcm_device *bdev = dev_get_drvdata(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200708 int error;
709
710 bt_dev_dbg(bdev, "suspend: is_suspended %d", bdev->is_suspended);
711
Hans de Goede8a920562017-10-04 20:43:43 +0200712 /*
713 * When used with a device instantiated as platform_device, bcm_suspend
714 * can be called at any time as long as the platform device is bound,
715 * so it should use bcm_device_lock to protect access to hci_uart
Frederic Danisb7a622a2015-09-23 18:18:09 +0200716 * and device_wake-up GPIO.
717 */
718 mutex_lock(&bcm_device_lock);
719
720 if (!bdev->hu)
721 goto unlock;
722
Frederic Danise88ab302015-09-23 18:18:11 +0200723 if (pm_runtime_active(dev))
724 bcm_suspend_device(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200725
Ronald Tschalär4a59f1f2018-01-10 16:32:10 +0100726 if (device_may_wakeup(dev) && bdev->irq > 0) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200727 error = enable_irq_wake(bdev->irq);
728 if (!error)
729 bt_dev_dbg(bdev, "BCM irq: enabled");
730 }
731
Frederic Danis917522a2015-08-28 15:44:00 +0200732unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200733 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200734
Frederic Danis118612f2015-08-11 16:35:38 +0200735 return 0;
736}
737
Hans de Goede8a920562017-10-04 20:43:43 +0200738/* resume callback */
Frederic Danis118612f2015-08-11 16:35:38 +0200739static int bcm_resume(struct device *dev)
740{
Hans de Goede78277d72017-10-04 20:43:42 +0200741 struct bcm_device *bdev = dev_get_drvdata(dev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100742 int err = 0;
Frederic Danis118612f2015-08-11 16:35:38 +0200743
Frederic Danis65ad07c2015-09-01 12:13:36 +0200744 bt_dev_dbg(bdev, "resume: is_suspended %d", bdev->is_suspended);
Frederic Danis118612f2015-08-11 16:35:38 +0200745
Hans de Goede8a920562017-10-04 20:43:43 +0200746 /*
747 * When used with a device instantiated as platform_device, bcm_resume
748 * can be called at any time as long as platform device is bound,
749 * so it should use bcm_device_lock to protect access to hci_uart
Frederic Danisb7a622a2015-09-23 18:18:09 +0200750 * and device_wake-up GPIO.
751 */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200752 mutex_lock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200753
754 if (!bdev->hu)
755 goto unlock;
756
Ronald Tschalär4a59f1f2018-01-10 16:32:10 +0100757 if (device_may_wakeup(dev) && bdev->irq > 0) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200758 disable_irq_wake(bdev->irq);
759 bt_dev_dbg(bdev, "BCM irq: disabled");
760 }
761
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100762 err = bcm_resume_device(dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200763
Frederic Danis917522a2015-08-28 15:44:00 +0200764unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200765 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200766
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100767 if (!err) {
768 pm_runtime_disable(dev);
769 pm_runtime_set_active(dev);
770 pm_runtime_enable(dev);
771 }
Frederic Danise88ab302015-09-23 18:18:11 +0200772
Frederic Danis118612f2015-08-11 16:35:38 +0200773 return 0;
774}
775#endif
776
Daniel Drake89ab37b2017-01-05 11:10:54 -0600777static const struct acpi_gpio_params int_last_device_wakeup_gpios = { 0, 0, false };
778static const struct acpi_gpio_params int_last_shutdown_gpios = { 1, 0, false };
779static const struct acpi_gpio_params int_last_host_wakeup_gpios = { 2, 0, false };
Frederic Danis0395ffc2015-08-11 16:35:35 +0200780
Daniel Drake89ab37b2017-01-05 11:10:54 -0600781static const struct acpi_gpio_mapping acpi_bcm_int_last_gpios[] = {
782 { "device-wakeup-gpios", &int_last_device_wakeup_gpios, 1 },
783 { "shutdown-gpios", &int_last_shutdown_gpios, 1 },
784 { "host-wakeup-gpios", &int_last_host_wakeup_gpios, 1 },
785 { },
786};
787
788static const struct acpi_gpio_params int_first_host_wakeup_gpios = { 0, 0, false };
789static const struct acpi_gpio_params int_first_device_wakeup_gpios = { 1, 0, false };
790static const struct acpi_gpio_params int_first_shutdown_gpios = { 2, 0, false };
791
792static const struct acpi_gpio_mapping acpi_bcm_int_first_gpios[] = {
793 { "device-wakeup-gpios", &int_first_device_wakeup_gpios, 1 },
794 { "shutdown-gpios", &int_first_shutdown_gpios, 1 },
795 { "host-wakeup-gpios", &int_first_host_wakeup_gpios, 1 },
Frederic Danis0395ffc2015-08-11 16:35:35 +0200796 { },
797};
798
Frederic Danis50d78bc2015-08-12 12:46:01 +0200799#ifdef CONFIG_ACPI
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200800/* IRQ polarity of some chipsets are not defined correctly in ACPI table. */
Hans de Goede227630c2017-10-04 20:43:36 +0200801static const struct dmi_system_id bcm_active_low_irq_dmi_table[] = {
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200802 {
803 .ident = "Asus T100TA",
804 .matches = {
805 DMI_EXACT_MATCH(DMI_SYS_VENDOR,
806 "ASUSTeK COMPUTER INC."),
807 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100TA"),
808 },
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200809 },
Hans de Goedec4c285d2017-06-29 14:21:32 +0200810 {
811 .ident = "Asus T100CHI",
812 .matches = {
813 DMI_EXACT_MATCH(DMI_SYS_VENDOR,
814 "ASUSTeK COMPUTER INC."),
815 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100CHI"),
816 },
Hans de Goedec4c285d2017-06-29 14:21:32 +0200817 },
Jérôme de Bretagne5e2bd932016-10-09 15:51:05 +0200818 { /* Handle ThinkPad 8 tablets with BCM2E55 chipset ACPI ID */
819 .ident = "Lenovo ThinkPad 8",
820 .matches = {
821 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
822 DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "ThinkPad 8"),
823 },
Jérôme de Bretagne5e2bd932016-10-09 15:51:05 +0200824 },
Ian W MORRISON1bdb68b2017-10-07 17:15:25 +1100825 {
826 .ident = "MINIX Z83-4",
827 .matches = {
828 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "MINIX"),
829 DMI_MATCH(DMI_PRODUCT_NAME, "Z83-4"),
830 },
831 },
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200832 { }
833};
834
Frederic Danisae056902015-08-11 16:35:37 +0200835static int bcm_resource(struct acpi_resource *ares, void *data)
836{
837 struct bcm_device *dev = data;
Frederic Danis6cc43962015-09-04 15:35:44 +0200838 struct acpi_resource_extended_irq *irq;
839 struct acpi_resource_gpio *gpio;
840 struct acpi_resource_uart_serialbus *sb;
Frederic Danisae056902015-08-11 16:35:37 +0200841
Frederic Danis6cc43962015-09-04 15:35:44 +0200842 switch (ares->type) {
843 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
844 irq = &ares->data.extended_irq;
Hans de Goede227630c2017-10-04 20:43:36 +0200845 dev->irq_active_low = irq->polarity == ACPI_ACTIVE_LOW;
Frederic Danis6cc43962015-09-04 15:35:44 +0200846 break;
Frederic Danisae056902015-08-11 16:35:37 +0200847
Frederic Danis6cc43962015-09-04 15:35:44 +0200848 case ACPI_RESOURCE_TYPE_GPIO:
849 gpio = &ares->data.gpio;
850 if (gpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT)
Hans de Goede227630c2017-10-04 20:43:36 +0200851 dev->irq_active_low = gpio->polarity == ACPI_ACTIVE_LOW;
Frederic Danis6cc43962015-09-04 15:35:44 +0200852 break;
853
854 case ACPI_RESOURCE_TYPE_SERIAL_BUS:
Frederic Danisae056902015-08-11 16:35:37 +0200855 sb = &ares->data.uart_serial_bus;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200856 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_UART) {
Frederic Danisae056902015-08-11 16:35:37 +0200857 dev->init_speed = sb->default_baud_rate;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200858 dev->oper_speed = 4000000;
859 }
Frederic Danis6cc43962015-09-04 15:35:44 +0200860 break;
861
862 default:
863 break;
Frederic Danisae056902015-08-11 16:35:37 +0200864 }
865
Hans de Goede9d54fd62017-10-04 20:43:41 +0200866 return 0;
Frederic Danisae056902015-08-11 16:35:37 +0200867}
Lukas Wunner4c331622018-01-10 16:32:10 +0100868
869static int bcm_apple_set_device_wakeup(struct bcm_device *dev, bool awake)
870{
871 if (ACPI_FAILURE(acpi_execute_simple_method(dev->btlp, NULL, !awake)))
872 return -EIO;
873
874 return 0;
875}
876
877static int bcm_apple_set_shutdown(struct bcm_device *dev, bool powered)
878{
879 if (ACPI_FAILURE(acpi_evaluate_object(powered ? dev->btpu : dev->btpd,
880 NULL, NULL, NULL)))
881 return -EIO;
882
883 return 0;
884}
885
886static int bcm_apple_get_resources(struct bcm_device *dev)
887{
888 struct acpi_device *adev = ACPI_COMPANION(dev->dev);
889 const union acpi_object *obj;
890
891 if (!adev ||
892 ACPI_FAILURE(acpi_get_handle(adev->handle, "BTLP", &dev->btlp)) ||
893 ACPI_FAILURE(acpi_get_handle(adev->handle, "BTPU", &dev->btpu)) ||
894 ACPI_FAILURE(acpi_get_handle(adev->handle, "BTPD", &dev->btpd)))
895 return -ENODEV;
896
897 if (!acpi_dev_get_property(adev, "baud", ACPI_TYPE_BUFFER, &obj) &&
898 obj->buffer.length == 8)
899 dev->init_speed = *(u64 *)obj->buffer.pointer;
900
901 dev->set_device_wakeup = bcm_apple_set_device_wakeup;
902 dev->set_shutdown = bcm_apple_set_shutdown;
903
904 return 0;
905}
906#else
907static inline int bcm_apple_get_resources(struct bcm_device *dev)
908{
909 return -EOPNOTSUPP;
910}
Andy Shevchenko212d71832017-03-10 14:28:20 +0200911#endif /* CONFIG_ACPI */
Frederic Danisae056902015-08-11 16:35:37 +0200912
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100913static int bcm_gpio_set_device_wakeup(struct bcm_device *dev, bool awake)
914{
Loic Poulainfb2d4662018-03-05 19:02:35 +0100915 gpiod_set_value_cansleep(dev->device_wakeup, awake);
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100916 return 0;
917}
918
919static int bcm_gpio_set_shutdown(struct bcm_device *dev, bool powered)
920{
Loic Poulainfb2d4662018-03-05 19:02:35 +0100921 gpiod_set_value_cansleep(dev->shutdown, powered);
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100922 return 0;
923}
924
Hans de Goede42ef18f2017-10-04 20:43:40 +0200925static int bcm_get_resources(struct bcm_device *dev)
Frederic Danis0395ffc2015-08-11 16:35:35 +0200926{
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200927 dev->name = dev_name(dev->dev);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200928
Lukas Wunner4c331622018-01-10 16:32:10 +0100929 if (x86_apple_machine && !bcm_apple_get_resources(dev))
930 return 0;
931
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200932 dev->clk = devm_clk_get(dev->dev, NULL);
Daniel Drake89ab37b2017-01-05 11:10:54 -0600933
Stefan Wahrenab2f3362018-02-25 15:10:52 +0100934 dev->device_wakeup = devm_gpiod_get_optional(dev->dev, "device-wakeup",
935 GPIOD_OUT_LOW);
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200936 if (IS_ERR(dev->device_wakeup))
937 return PTR_ERR(dev->device_wakeup);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200938
Stefan Wahrenab2f3362018-02-25 15:10:52 +0100939 dev->shutdown = devm_gpiod_get_optional(dev->dev, "shutdown",
940 GPIOD_OUT_LOW);
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200941 if (IS_ERR(dev->shutdown))
942 return PTR_ERR(dev->shutdown);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200943
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100944 dev->set_device_wakeup = bcm_gpio_set_device_wakeup;
945 dev->set_shutdown = bcm_gpio_set_shutdown;
946
Frederic Danis6cc43962015-09-04 15:35:44 +0200947 /* IRQ can be declared in ACPI table as Interrupt or GpioInt */
Frederic Danis6cc43962015-09-04 15:35:44 +0200948 if (dev->irq <= 0) {
949 struct gpio_desc *gpio;
950
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200951 gpio = devm_gpiod_get_optional(dev->dev, "host-wakeup",
Frederic Danis6cc43962015-09-04 15:35:44 +0200952 GPIOD_IN);
953 if (IS_ERR(gpio))
954 return PTR_ERR(gpio);
955
956 dev->irq = gpiod_to_irq(gpio);
957 }
958
Lukas Wunner5954cdf2018-01-10 16:32:10 +0100959 dev_dbg(dev->dev, "BCM irq: %d\n", dev->irq);
Andy Shevchenko212d71832017-03-10 14:28:20 +0200960 return 0;
961}
962
963#ifdef CONFIG_ACPI
964static int bcm_acpi_probe(struct bcm_device *dev)
965{
Andy Shevchenko212d71832017-03-10 14:28:20 +0200966 LIST_HEAD(resources);
967 const struct dmi_system_id *dmi_id;
968 const struct acpi_gpio_mapping *gpio_mapping = acpi_bcm_int_last_gpios;
969 const struct acpi_device_id *id;
Hans de Goede9d54fd62017-10-04 20:43:41 +0200970 struct resource_entry *entry;
Andy Shevchenko212d71832017-03-10 14:28:20 +0200971 int ret;
972
973 /* Retrieve GPIO data */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200974 id = acpi_match_device(dev->dev->driver->acpi_match_table, dev->dev);
Andy Shevchenko212d71832017-03-10 14:28:20 +0200975 if (id)
976 gpio_mapping = (const struct acpi_gpio_mapping *) id->driver_data;
977
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200978 ret = devm_acpi_dev_add_driver_gpios(dev->dev, gpio_mapping);
Andy Shevchenko212d71832017-03-10 14:28:20 +0200979 if (ret)
980 return ret;
981
Frederic Danisae056902015-08-11 16:35:37 +0200982 /* Retrieve UART ACPI info */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200983 ret = acpi_dev_get_resources(ACPI_COMPANION(dev->dev),
Jarkko Nikulae98d6d62015-09-30 16:26:45 +0300984 &resources, bcm_resource, dev);
Jarkko Nikula5be00282015-09-30 16:26:42 +0300985 if (ret < 0)
986 return ret;
Hans de Goede9d54fd62017-10-04 20:43:41 +0200987
988 resource_list_for_each_entry(entry, &resources) {
989 if (resource_type(entry->res) == IORESOURCE_IRQ) {
990 dev->irq = entry->res->start;
991 break;
992 }
993 }
Jarkko Nikula09dbf1b2015-09-30 16:26:41 +0300994 acpi_dev_free_resource_list(&resources);
Frederic Danisae056902015-08-11 16:35:37 +0200995
Hans de Goedee09070c2018-03-16 21:28:07 +0100996 if (irq_polarity != -1) {
997 dev->irq_active_low = irq_polarity;
998 dev_warn(dev->dev, "Overwriting IRQ polarity to active %s by module-param\n",
999 dev->irq_active_low ? "low" : "high");
1000 } else {
1001 dmi_id = dmi_first_match(bcm_active_low_irq_dmi_table);
1002 if (dmi_id) {
1003 dev_warn(dev->dev, "%s: Overwriting IRQ polarity to active low",
1004 dmi_id->ident);
1005 dev->irq_active_low = true;
1006 }
Frederic Danis5cebdfe2015-09-23 18:18:08 +02001007 }
1008
Frederic Danis0395ffc2015-08-11 16:35:35 +02001009 return 0;
1010}
Frederic Danis50d78bc2015-08-12 12:46:01 +02001011#else
1012static int bcm_acpi_probe(struct bcm_device *dev)
1013{
1014 return -EINVAL;
1015}
1016#endif /* CONFIG_ACPI */
Frederic Danis0395ffc2015-08-11 16:35:35 +02001017
Hans de Goede8a920562017-10-04 20:43:43 +02001018static int bcm_of_probe(struct bcm_device *bdev)
1019{
1020 device_property_read_u32(bdev->dev, "max-speed", &bdev->oper_speed);
1021 return 0;
1022}
1023
Frederic Danis0395ffc2015-08-11 16:35:35 +02001024static int bcm_probe(struct platform_device *pdev)
1025{
1026 struct bcm_device *dev;
Frederic Danis0395ffc2015-08-11 16:35:35 +02001027 int ret;
1028
1029 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
1030 if (!dev)
1031 return -ENOMEM;
1032
Hans de Goedec0d3ce52017-10-04 20:43:39 +02001033 dev->dev = &pdev->dev;
Hans de Goede4a56f892017-10-04 20:43:38 +02001034 dev->irq = platform_get_irq(pdev, 0);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001035
Hans de Goede201762e2017-10-04 20:43:37 +02001036 if (has_acpi_companion(&pdev->dev)) {
Andy Shevchenko212d71832017-03-10 14:28:20 +02001037 ret = bcm_acpi_probe(dev);
Hans de Goede201762e2017-10-04 20:43:37 +02001038 if (ret)
1039 return ret;
1040 }
1041
Hans de Goede42ef18f2017-10-04 20:43:40 +02001042 ret = bcm_get_resources(dev);
Jarkko Nikula4d1c4552015-09-30 16:26:44 +03001043 if (ret)
1044 return ret;
Frederic Danis0395ffc2015-08-11 16:35:35 +02001045
1046 platform_set_drvdata(pdev, dev);
1047
1048 dev_info(&pdev->dev, "%s device registered.\n", dev->name);
1049
1050 /* Place this instance on the device list */
Frederic Danisbb3ea162015-09-01 12:13:35 +02001051 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001052 list_add_tail(&dev->list, &bcm_device_list);
Frederic Danisbb3ea162015-09-01 12:13:35 +02001053 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001054
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +01001055 ret = bcm_gpio_set_power(dev, false);
1056 if (ret)
1057 dev_err(&pdev->dev, "Failed to power down\n");
Frederic Danis0395ffc2015-08-11 16:35:35 +02001058
1059 return 0;
1060}
1061
1062static int bcm_remove(struct platform_device *pdev)
1063{
1064 struct bcm_device *dev = platform_get_drvdata(pdev);
1065
Frederic Danisbb3ea162015-09-01 12:13:35 +02001066 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001067 list_del(&dev->list);
Frederic Danisbb3ea162015-09-01 12:13:35 +02001068 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001069
Frederic Danis0395ffc2015-08-11 16:35:35 +02001070 dev_info(&pdev->dev, "%s device unregistered.\n", dev->name);
1071
1072 return 0;
1073}
1074
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001075static const struct hci_uart_proto bcm_proto = {
1076 .id = HCI_UART_BCM,
Loic Poulain143f0a22016-09-19 12:05:12 +02001077 .name = "Broadcom",
Marcel Holtmannaee61f72015-10-20 21:30:45 +02001078 .manufacturer = 15,
Frederic Danis61b2fc22015-06-09 16:15:37 +02001079 .init_speed = 115200,
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001080 .open = bcm_open,
1081 .close = bcm_close,
1082 .flush = bcm_flush,
1083 .setup = bcm_setup,
Frederic Danis61b2fc22015-06-09 16:15:37 +02001084 .set_baudrate = bcm_set_baudrate,
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001085 .recv = bcm_recv,
1086 .enqueue = bcm_enqueue,
1087 .dequeue = bcm_dequeue,
1088};
1089
Frederic Danis0395ffc2015-08-11 16:35:35 +02001090#ifdef CONFIG_ACPI
1091static const struct acpi_device_id bcm_acpi_match[] = {
Daniel Drake89ab37b2017-01-05 11:10:54 -06001092 { "BCM2E1A", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1093 { "BCM2E39", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1094 { "BCM2E3A", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1095 { "BCM2E3D", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1096 { "BCM2E3F", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1097 { "BCM2E40", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1098 { "BCM2E54", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1099 { "BCM2E55", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1100 { "BCM2E64", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1101 { "BCM2E65", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1102 { "BCM2E67", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1103 { "BCM2E71", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
Hans de Goedec23fae12017-11-22 14:37:28 +01001104 { "BCM2E72", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
Daniel Drake89ab37b2017-01-05 11:10:54 -06001105 { "BCM2E7B", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1106 { "BCM2E7C", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
Hans de Goede61d220a2017-10-13 17:54:02 +02001107 { "BCM2E7E", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
Daniel Drake89ab37b2017-01-05 11:10:54 -06001108 { "BCM2E95", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
1109 { "BCM2E96", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
Ian W MORRISON1bdb68b2017-10-07 17:15:25 +11001110 { "BCM2EA4", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
Frederic Danis0395ffc2015-08-11 16:35:35 +02001111 { },
1112};
1113MODULE_DEVICE_TABLE(acpi, bcm_acpi_match);
1114#endif
1115
Hans de Goede8a920562017-10-04 20:43:43 +02001116/* suspend and resume callbacks */
Frederic Danise88ab302015-09-23 18:18:11 +02001117static const struct dev_pm_ops bcm_pm_ops = {
1118 SET_SYSTEM_SLEEP_PM_OPS(bcm_suspend, bcm_resume)
1119 SET_RUNTIME_PM_OPS(bcm_suspend_device, bcm_resume_device, NULL)
1120};
Frederic Danis118612f2015-08-11 16:35:38 +02001121
Frederic Danis0395ffc2015-08-11 16:35:35 +02001122static struct platform_driver bcm_driver = {
1123 .probe = bcm_probe,
1124 .remove = bcm_remove,
1125 .driver = {
1126 .name = "hci_bcm",
1127 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
Frederic Danis118612f2015-08-11 16:35:38 +02001128 .pm = &bcm_pm_ops,
Frederic Danis0395ffc2015-08-11 16:35:35 +02001129 },
1130};
1131
Loic Poulain33cd1492017-08-17 19:59:51 +02001132static int bcm_serdev_probe(struct serdev_device *serdev)
1133{
Hans de Goede8a920562017-10-04 20:43:43 +02001134 struct bcm_device *bcmdev;
Loic Poulain33cd1492017-08-17 19:59:51 +02001135 int err;
1136
1137 bcmdev = devm_kzalloc(&serdev->dev, sizeof(*bcmdev), GFP_KERNEL);
1138 if (!bcmdev)
1139 return -ENOMEM;
1140
Hans de Goede8a920562017-10-04 20:43:43 +02001141 bcmdev->dev = &serdev->dev;
Arnd Bergmann81a19052017-10-11 15:46:21 +02001142#ifdef CONFIG_PM
Hans de Goede8a920562017-10-04 20:43:43 +02001143 bcmdev->hu = &bcmdev->serdev_hu;
Arnd Bergmann81a19052017-10-11 15:46:21 +02001144#endif
Hans de Goede8a920562017-10-04 20:43:43 +02001145 bcmdev->serdev_hu.serdev = serdev;
Loic Poulain33cd1492017-08-17 19:59:51 +02001146 serdev_device_set_drvdata(serdev, bcmdev);
1147
Hans de Goede8a920562017-10-04 20:43:43 +02001148 if (has_acpi_companion(&serdev->dev))
1149 err = bcm_acpi_probe(bcmdev);
1150 else
1151 err = bcm_of_probe(bcmdev);
1152 if (err)
1153 return err;
Loic Poulain33cd1492017-08-17 19:59:51 +02001154
Hans de Goede8a920562017-10-04 20:43:43 +02001155 err = bcm_get_resources(bcmdev);
1156 if (err)
1157 return err;
1158
Marcel Holtmannf3863f12018-03-07 22:39:03 +01001159 if (!bcmdev->shutdown) {
1160 dev_warn(&serdev->dev,
1161 "No reset resource, using default baud rate\n");
1162 bcmdev->oper_speed = bcmdev->init_speed;
1163 }
1164
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +01001165 err = bcm_gpio_set_power(bcmdev, false);
1166 if (err)
1167 dev_err(&serdev->dev, "Failed to power down\n");
Hans de Goede8a920562017-10-04 20:43:43 +02001168
1169 return hci_uart_register_device(&bcmdev->serdev_hu, &bcm_proto);
Loic Poulain33cd1492017-08-17 19:59:51 +02001170}
1171
1172static void bcm_serdev_remove(struct serdev_device *serdev)
1173{
Hans de Goede8a920562017-10-04 20:43:43 +02001174 struct bcm_device *bcmdev = serdev_device_get_drvdata(serdev);
Loic Poulain33cd1492017-08-17 19:59:51 +02001175
Hans de Goede8a920562017-10-04 20:43:43 +02001176 hci_uart_unregister_device(&bcmdev->serdev_hu);
Loic Poulain33cd1492017-08-17 19:59:51 +02001177}
1178
1179#ifdef CONFIG_OF
1180static const struct of_device_id bcm_bluetooth_of_match[] = {
1181 { .compatible = "brcm,bcm43438-bt" },
1182 { },
1183};
1184MODULE_DEVICE_TABLE(of, bcm_bluetooth_of_match);
1185#endif
1186
1187static struct serdev_device_driver bcm_serdev_driver = {
1188 .probe = bcm_serdev_probe,
1189 .remove = bcm_serdev_remove,
1190 .driver = {
1191 .name = "hci_uart_bcm",
1192 .of_match_table = of_match_ptr(bcm_bluetooth_of_match),
Hans de Goede8a920562017-10-04 20:43:43 +02001193 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
1194 .pm = &bcm_pm_ops,
Loic Poulain33cd1492017-08-17 19:59:51 +02001195 },
1196};
1197
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001198int __init bcm_init(void)
1199{
Loic Poulain33cd1492017-08-17 19:59:51 +02001200 /* For now, we need to keep both platform device
1201 * driver (ACPI generated) and serdev driver (DT).
1202 */
Frederic Danis0395ffc2015-08-11 16:35:35 +02001203 platform_driver_register(&bcm_driver);
Loic Poulain33cd1492017-08-17 19:59:51 +02001204 serdev_device_driver_register(&bcm_serdev_driver);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001205
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001206 return hci_uart_register_proto(&bcm_proto);
1207}
1208
1209int __exit bcm_deinit(void)
1210{
Frederic Danis0395ffc2015-08-11 16:35:35 +02001211 platform_driver_unregister(&bcm_driver);
Loic Poulain33cd1492017-08-17 19:59:51 +02001212 serdev_device_driver_unregister(&bcm_serdev_driver);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001213
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001214 return hci_uart_unregister_proto(&bcm_proto);
1215}