blob: 79a0ec57d4854dadf39230e4f5f95749d234a84f [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;
Hans de Goedea4de1562018-03-16 21:28:11 +0100101 int gpio_count;
102 int gpio_int_idx;
Lukas Wunner4c331622018-01-10 16:32:10 +0100103#endif
Frederic Danis0395ffc2015-08-11 16:35:35 +0200104
105 struct clk *clk;
106 bool clk_enabled;
Frederic Danisae056902015-08-11 16:35:37 +0200107
108 u32 init_speed;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200109 u32 oper_speed;
Frederic Danis6cc43962015-09-04 15:35:44 +0200110 int irq;
Hans de Goede227630c2017-10-04 20:43:36 +0200111 bool irq_active_low;
Frederic Danis118612f2015-08-11 16:35:38 +0200112
Frederic Danisb7a622a2015-09-23 18:18:09 +0200113#ifdef CONFIG_PM
Frederic Danis118612f2015-08-11 16:35:38 +0200114 struct hci_uart *hu;
Lukas Wunnerb7c2aba2018-01-10 16:32:10 +0100115 bool is_suspended;
Frederic Danis118612f2015-08-11 16:35:38 +0200116#endif
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700117};
118
Loic Poulain33cd1492017-08-17 19:59:51 +0200119/* generic bcm uart resources */
Frederic Danis0395ffc2015-08-11 16:35:35 +0200120struct bcm_data {
121 struct sk_buff *rx_skb;
122 struct sk_buff_head txq;
123
124 struct bcm_device *dev;
125};
126
127/* List of BCM BT UART devices */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200128static DEFINE_MUTEX(bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200129static LIST_HEAD(bcm_device_list);
130
Hans de Goedee09070c2018-03-16 21:28:07 +0100131static int irq_polarity = -1;
132module_param(irq_polarity, int, 0444);
133MODULE_PARM_DESC(irq_polarity, "IRQ polarity 0: active-high 1: active-low");
134
Loic Poulain33cd1492017-08-17 19:59:51 +0200135static inline void host_set_baudrate(struct hci_uart *hu, unsigned int speed)
136{
137 if (hu->serdev)
138 serdev_device_set_baudrate(hu->serdev, speed);
139 else
140 hci_uart_set_baudrate(hu, speed);
141}
142
Frederic Danis61b2fc22015-06-09 16:15:37 +0200143static int bcm_set_baudrate(struct hci_uart *hu, unsigned int speed)
144{
145 struct hci_dev *hdev = hu->hdev;
146 struct sk_buff *skb;
147 struct bcm_update_uart_baud_rate param;
148
149 if (speed > 3000000) {
150 struct bcm_write_uart_clock_setting clock;
151
152 clock.type = BCM_UART_CLOCK_48MHZ;
153
Frederic Danis65ad07c2015-09-01 12:13:36 +0200154 bt_dev_dbg(hdev, "Set Controller clock (%d)", clock.type);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200155
156 /* This Broadcom specific command changes the UART's controller
157 * clock for baud rate > 3000000.
158 */
159 skb = __hci_cmd_sync(hdev, 0xfc45, 1, &clock, HCI_INIT_TIMEOUT);
160 if (IS_ERR(skb)) {
161 int err = PTR_ERR(skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200162 bt_dev_err(hdev, "BCM: failed to write clock (%d)",
163 err);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200164 return err;
165 }
166
167 kfree_skb(skb);
168 }
169
Frederic Danis65ad07c2015-09-01 12:13:36 +0200170 bt_dev_dbg(hdev, "Set Controller UART speed to %d bit/s", speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200171
172 param.zero = cpu_to_le16(0);
173 param.baud_rate = cpu_to_le32(speed);
174
175 /* This Broadcom specific command changes the UART's controller baud
176 * rate.
177 */
178 skb = __hci_cmd_sync(hdev, 0xfc18, sizeof(param), &param,
179 HCI_INIT_TIMEOUT);
180 if (IS_ERR(skb)) {
181 int err = PTR_ERR(skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200182 bt_dev_err(hdev, "BCM: failed to write update baudrate (%d)",
183 err);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200184 return err;
185 }
186
187 kfree_skb(skb);
188
189 return 0;
190}
191
Frederic Danis917522a2015-08-28 15:44:00 +0200192/* bcm_device_exists should be protected by bcm_device_lock */
Frederic Danis0395ffc2015-08-11 16:35:35 +0200193static bool bcm_device_exists(struct bcm_device *device)
194{
195 struct list_head *p;
196
Arnd Bergmann81a19052017-10-11 15:46:21 +0200197#ifdef CONFIG_PM
Hans de Goede8a920562017-10-04 20:43:43 +0200198 /* Devices using serdev always exist */
199 if (device && device->hu && device->hu->serdev)
200 return true;
Arnd Bergmann81a19052017-10-11 15:46:21 +0200201#endif
Hans de Goede8a920562017-10-04 20:43:43 +0200202
Frederic Danis0395ffc2015-08-11 16:35:35 +0200203 list_for_each(p, &bcm_device_list) {
204 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
205
206 if (device == dev)
207 return true;
208 }
209
210 return false;
211}
212
213static int bcm_gpio_set_power(struct bcm_device *dev, bool powered)
214{
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100215 int err;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200216
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100217 if (powered && !IS_ERR(dev->clk) && !dev->clk_enabled) {
218 err = clk_prepare_enable(dev->clk);
219 if (err)
220 return err;
221 }
222
223 err = dev->set_shutdown(dev, powered);
224 if (err)
225 goto err_clk_disable;
226
227 err = dev->set_device_wakeup(dev, powered);
228 if (err)
229 goto err_revert_shutdown;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200230
231 if (!powered && !IS_ERR(dev->clk) && dev->clk_enabled)
John Keeping730ce392017-03-15 12:20:05 +0000232 clk_disable_unprepare(dev->clk);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200233
234 dev->clk_enabled = powered;
235
236 return 0;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100237
238err_revert_shutdown:
239 dev->set_shutdown(dev, !powered);
240err_clk_disable:
241 if (powered && !IS_ERR(dev->clk) && !dev->clk_enabled)
242 clk_disable_unprepare(dev->clk);
243 return err;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200244}
245
Frederic Danisb7a622a2015-09-23 18:18:09 +0200246#ifdef CONFIG_PM
Frederic Danis6cc43962015-09-04 15:35:44 +0200247static irqreturn_t bcm_host_wake(int irq, void *data)
248{
249 struct bcm_device *bdev = data;
250
251 bt_dev_dbg(bdev, "Host wake IRQ");
252
Hans de Goedeb09c6152018-03-14 23:06:02 +0100253 pm_runtime_get(bdev->dev);
254 pm_runtime_mark_last_busy(bdev->dev);
255 pm_runtime_put_autosuspend(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200256
Frederic Danis6cc43962015-09-04 15:35:44 +0200257 return IRQ_HANDLED;
258}
259
260static int bcm_request_irq(struct bcm_data *bcm)
261{
262 struct bcm_device *bdev = bcm->dev;
Loic Poulain98dc77d2017-07-04 12:57:56 +0200263 int err;
Frederic Danis6cc43962015-09-04 15:35:44 +0200264
Frederic Danis6cc43962015-09-04 15:35:44 +0200265 mutex_lock(&bcm_device_lock);
266 if (!bcm_device_exists(bdev)) {
267 err = -ENODEV;
268 goto unlock;
269 }
270
Loic Poulain98dc77d2017-07-04 12:57:56 +0200271 if (bdev->irq <= 0) {
272 err = -EOPNOTSUPP;
273 goto unlock;
Frederic Danis6cc43962015-09-04 15:35:44 +0200274 }
275
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200276 err = devm_request_irq(bdev->dev, bdev->irq, bcm_host_wake,
Hans de Goede227630c2017-10-04 20:43:36 +0200277 bdev->irq_active_low ? IRQF_TRIGGER_FALLING :
278 IRQF_TRIGGER_RISING,
279 "host_wake", bdev);
Lukas Wunner4dc27332018-01-10 16:32:10 +0100280 if (err) {
281 bdev->irq = err;
Loic Poulain98dc77d2017-07-04 12:57:56 +0200282 goto unlock;
Lukas Wunner4dc27332018-01-10 16:32:10 +0100283 }
Loic Poulain98dc77d2017-07-04 12:57:56 +0200284
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200285 device_init_wakeup(bdev->dev, true);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200286
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200287 pm_runtime_set_autosuspend_delay(bdev->dev,
Loic Poulain98dc77d2017-07-04 12:57:56 +0200288 BCM_AUTOSUSPEND_DELAY);
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200289 pm_runtime_use_autosuspend(bdev->dev);
290 pm_runtime_set_active(bdev->dev);
291 pm_runtime_enable(bdev->dev);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200292
Frederic Danis6cc43962015-09-04 15:35:44 +0200293unlock:
294 mutex_unlock(&bcm_device_lock);
295
296 return err;
297}
298
299static const struct bcm_set_sleep_mode default_sleep_params = {
300 .sleep_mode = 1, /* 0=Disabled, 1=UART, 2=Reserved, 3=USB */
301 .idle_host = 2, /* idle threshold HOST, in 300ms */
302 .idle_dev = 2, /* idle threshold device, in 300ms */
303 .bt_wake_active = 1, /* BT_WAKE active mode: 1 = high, 0 = low */
304 .host_wake_active = 0, /* HOST_WAKE active mode: 1 = high, 0 = low */
305 .allow_host_sleep = 1, /* Allow host sleep in SCO flag */
Frederic Danise88ab302015-09-23 18:18:11 +0200306 .combine_modes = 1, /* Combine sleep and LPM flag */
Frederic Danis6cc43962015-09-04 15:35:44 +0200307 .tristate_control = 0, /* Allow tri-state control of UART tx flag */
308 /* Irrelevant USB flags */
309 .usb_auto_sleep = 0,
310 .usb_resume_timeout = 0,
Lukas Wunnerff875962018-01-10 16:32:10 +0100311 .break_to_host = 0,
Hans de Goedee07c99b2018-03-14 23:06:03 +0100312 .pulsed_host_wake = 1,
Frederic Danis6cc43962015-09-04 15:35:44 +0200313};
314
315static int bcm_setup_sleep(struct hci_uart *hu)
316{
317 struct bcm_data *bcm = hu->priv;
318 struct sk_buff *skb;
319 struct bcm_set_sleep_mode sleep_params = default_sleep_params;
320
Hans de Goede227630c2017-10-04 20:43:36 +0200321 sleep_params.host_wake_active = !bcm->dev->irq_active_low;
Frederic Danis6cc43962015-09-04 15:35:44 +0200322
323 skb = __hci_cmd_sync(hu->hdev, 0xfc27, sizeof(sleep_params),
324 &sleep_params, HCI_INIT_TIMEOUT);
325 if (IS_ERR(skb)) {
326 int err = PTR_ERR(skb);
327 bt_dev_err(hu->hdev, "Sleep VSC failed (%d)", err);
328 return err;
329 }
330 kfree_skb(skb);
331
332 bt_dev_dbg(hu->hdev, "Set Sleep Parameters VSC succeeded");
333
334 return 0;
335}
336#else
337static inline int bcm_request_irq(struct bcm_data *bcm) { return 0; }
338static inline int bcm_setup_sleep(struct hci_uart *hu) { return 0; }
339#endif
340
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200341static int bcm_set_diag(struct hci_dev *hdev, bool enable)
342{
343 struct hci_uart *hu = hci_get_drvdata(hdev);
344 struct bcm_data *bcm = hu->priv;
345 struct sk_buff *skb;
346
347 if (!test_bit(HCI_RUNNING, &hdev->flags))
348 return -ENETDOWN;
349
350 skb = bt_skb_alloc(3, GFP_KERNEL);
Dan Carpentera1857392015-10-22 12:06:09 +0300351 if (!skb)
352 return -ENOMEM;
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200353
Johannes Berg634fef62017-06-16 14:29:24 +0200354 skb_put_u8(skb, BCM_LM_DIAG_PKT);
355 skb_put_u8(skb, 0xf0);
356 skb_put_u8(skb, enable);
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200357
358 skb_queue_tail(&bcm->txq, skb);
359 hci_uart_tx_wakeup(hu);
360
361 return 0;
362}
363
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700364static int bcm_open(struct hci_uart *hu)
365{
366 struct bcm_data *bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200367 struct list_head *p;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100368 int err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700369
Frederic Danis65ad07c2015-09-01 12:13:36 +0200370 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700371
372 bcm = kzalloc(sizeof(*bcm), GFP_KERNEL);
373 if (!bcm)
374 return -ENOMEM;
375
376 skb_queue_head_init(&bcm->txq);
377
378 hu->priv = bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200379
Hans de Goede8a920562017-10-04 20:43:43 +0200380 mutex_lock(&bcm_device_lock);
381
Loic Poulain33cd1492017-08-17 19:59:51 +0200382 if (hu->serdev) {
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100383 err = serdev_device_open(hu->serdev);
384 if (err)
385 goto err_free;
386
Hans de Goede8a920562017-10-04 20:43:43 +0200387 bcm->dev = serdev_device_get_drvdata(hu->serdev);
Loic Poulain33cd1492017-08-17 19:59:51 +0200388 goto out;
389 }
390
Johan Hovold95065a62017-03-29 18:15:27 +0200391 if (!hu->tty->dev)
392 goto out;
393
Frederic Danis0395ffc2015-08-11 16:35:35 +0200394 list_for_each(p, &bcm_device_list) {
395 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
396
397 /* Retrieve saved bcm_device based on parent of the
398 * platform device (saved during device probe) and
399 * parent of tty device used by hci_uart
400 */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200401 if (hu->tty->dev->parent == dev->dev->parent) {
Frederic Danis0395ffc2015-08-11 16:35:35 +0200402 bcm->dev = dev;
Frederic Danisb7a622a2015-09-23 18:18:09 +0200403#ifdef CONFIG_PM
Frederic Danis118612f2015-08-11 16:35:38 +0200404 dev->hu = hu;
405#endif
Frederic Danis0395ffc2015-08-11 16:35:35 +0200406 break;
407 }
408 }
409
Johan Hovold95065a62017-03-29 18:15:27 +0200410out:
Hans de Goede8a920562017-10-04 20:43:43 +0200411 if (bcm->dev) {
412 hu->init_speed = bcm->dev->init_speed;
413 hu->oper_speed = bcm->dev->oper_speed;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100414 err = bcm_gpio_set_power(bcm->dev, true);
415 if (err)
416 goto err_unset_hu;
Hans de Goede8a920562017-10-04 20:43:43 +0200417 }
418
419 mutex_unlock(&bcm_device_lock);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700420 return 0;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100421
422err_unset_hu:
Hans de Goede8c6b8ed2018-01-22 12:53:24 +0100423 if (hu->serdev)
424 serdev_device_close(hu->serdev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100425#ifdef CONFIG_PM
Hans de Goede8c6b8ed2018-01-22 12:53:24 +0100426 else
427 bcm->dev->hu = NULL;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100428#endif
429err_free:
430 mutex_unlock(&bcm_device_lock);
431 hu->priv = NULL;
432 kfree(bcm);
433 return err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700434}
435
436static int bcm_close(struct hci_uart *hu)
437{
438 struct bcm_data *bcm = hu->priv;
Hans de Goede8a920562017-10-04 20:43:43 +0200439 struct bcm_device *bdev = NULL;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100440 int err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700441
Frederic Danis65ad07c2015-09-01 12:13:36 +0200442 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700443
Frederic Danis0395ffc2015-08-11 16:35:35 +0200444 /* Protect bcm->dev against removal of the device or driver */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200445 mutex_lock(&bcm_device_lock);
Hans de Goede8a920562017-10-04 20:43:43 +0200446
447 if (hu->serdev) {
448 serdev_device_close(hu->serdev);
449 bdev = serdev_device_get_drvdata(hu->serdev);
450 } else if (bcm_device_exists(bcm->dev)) {
451 bdev = bcm->dev;
452#ifdef CONFIG_PM
453 bdev->hu = NULL;
454#endif
455 }
456
457 if (bdev) {
Lukas Wunner6d83f1e2018-01-10 16:32:10 +0100458 if (IS_ENABLED(CONFIG_PM) && bdev->irq > 0) {
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200459 devm_free_irq(bdev->dev, bdev->irq, bdev);
460 device_init_wakeup(bdev->dev, false);
Lukas Wunnerf4cf6b72018-01-10 16:32:10 +0100461 pm_runtime_disable(bdev->dev);
Frederic Danis6cc43962015-09-04 15:35:44 +0200462 }
Lukas Wunner54ba69f2018-01-10 16:32:10 +0100463
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100464 err = bcm_gpio_set_power(bdev, false);
465 if (err)
466 bt_dev_err(hu->hdev, "Failed to power down");
467 else
468 pm_runtime_set_suspended(bdev->dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200469 }
Frederic Danisbb3ea162015-09-01 12:13:35 +0200470 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200471
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700472 skb_queue_purge(&bcm->txq);
473 kfree_skb(bcm->rx_skb);
474 kfree(bcm);
475
476 hu->priv = NULL;
477 return 0;
478}
479
480static int bcm_flush(struct hci_uart *hu)
481{
482 struct bcm_data *bcm = hu->priv;
483
Frederic Danis65ad07c2015-09-01 12:13:36 +0200484 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700485
486 skb_queue_purge(&bcm->txq);
487
488 return 0;
489}
490
491static int bcm_setup(struct hci_uart *hu)
492{
Frederic Danis6cc43962015-09-04 15:35:44 +0200493 struct bcm_data *bcm = hu->priv;
Frederic Danis6be09b42015-05-28 11:25:05 +0200494 char fw_name[64];
495 const struct firmware *fw;
Frederic Danis960ef1d2015-06-18 12:43:27 +0200496 unsigned int speed;
Frederic Danis6be09b42015-05-28 11:25:05 +0200497 int err;
498
Frederic Danis65ad07c2015-09-01 12:13:36 +0200499 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700500
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200501 hu->hdev->set_diag = bcm_set_diag;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700502 hu->hdev->set_bdaddr = btbcm_set_bdaddr;
503
Frederic Danis6be09b42015-05-28 11:25:05 +0200504 err = btbcm_initialize(hu->hdev, fw_name, sizeof(fw_name));
505 if (err)
506 return err;
507
508 err = request_firmware(&fw, fw_name, &hu->hdev->dev);
509 if (err < 0) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200510 bt_dev_info(hu->hdev, "BCM: Patch %s not found", fw_name);
Frederic Danis6be09b42015-05-28 11:25:05 +0200511 return 0;
512 }
513
514 err = btbcm_patchram(hu->hdev, fw);
515 if (err) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200516 bt_dev_info(hu->hdev, "BCM: Patch failed (%d)", err);
Frederic Danis6be09b42015-05-28 11:25:05 +0200517 goto finalize;
518 }
519
Frederic Danis960ef1d2015-06-18 12:43:27 +0200520 /* Init speed if any */
521 if (hu->init_speed)
522 speed = hu->init_speed;
523 else if (hu->proto->init_speed)
524 speed = hu->proto->init_speed;
525 else
526 speed = 0;
Frederic Danis6be09b42015-05-28 11:25:05 +0200527
Frederic Danis960ef1d2015-06-18 12:43:27 +0200528 if (speed)
Loic Poulain33cd1492017-08-17 19:59:51 +0200529 host_set_baudrate(hu, speed);
Frederic Danis960ef1d2015-06-18 12:43:27 +0200530
531 /* Operational speed if any */
532 if (hu->oper_speed)
533 speed = hu->oper_speed;
534 else if (hu->proto->oper_speed)
535 speed = hu->proto->oper_speed;
536 else
537 speed = 0;
538
539 if (speed) {
540 err = bcm_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200541 if (!err)
Loic Poulain33cd1492017-08-17 19:59:51 +0200542 host_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200543 }
544
Frederic Danis6be09b42015-05-28 11:25:05 +0200545finalize:
546 release_firmware(fw);
547
548 err = btbcm_finalize(hu->hdev);
Frederic Danis6cc43962015-09-04 15:35:44 +0200549 if (err)
550 return err;
551
Loic Poulaincdd24a22017-06-27 19:15:07 +0200552 if (!bcm_request_irq(bcm))
Frederic Danis6cc43962015-09-04 15:35:44 +0200553 err = bcm_setup_sleep(hu);
Frederic Danis6be09b42015-05-28 11:25:05 +0200554
555 return err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700556}
557
Marcel Holtmann94c58132015-10-07 19:12:54 +0200558#define BCM_RECV_LM_DIAG \
559 .type = BCM_LM_DIAG_PKT, \
560 .hlen = BCM_LM_DIAG_SIZE, \
561 .loff = 0, \
562 .lsize = 0, \
563 .maxlen = BCM_LM_DIAG_SIZE
564
Marcel Holtmann01d5e442017-08-17 21:41:09 +0200565#define BCM_RECV_NULL \
566 .type = BCM_NULL_PKT, \
567 .hlen = BCM_NULL_SIZE, \
568 .loff = 0, \
569 .lsize = 0, \
570 .maxlen = BCM_NULL_SIZE
571
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700572static const struct h4_recv_pkt bcm_recv_pkts[] = {
Marcel Holtmann94c58132015-10-07 19:12:54 +0200573 { H4_RECV_ACL, .recv = hci_recv_frame },
574 { H4_RECV_SCO, .recv = hci_recv_frame },
575 { H4_RECV_EVENT, .recv = hci_recv_frame },
576 { BCM_RECV_LM_DIAG, .recv = hci_recv_diag },
Marcel Holtmann01d5e442017-08-17 21:41:09 +0200577 { BCM_RECV_NULL, .recv = hci_recv_diag },
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700578};
579
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700580static int bcm_recv(struct hci_uart *hu, const void *data, int count)
581{
582 struct bcm_data *bcm = hu->priv;
583
584 if (!test_bit(HCI_UART_REGISTERED, &hu->flags))
585 return -EUNATCH;
586
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700587 bcm->rx_skb = h4_recv_buf(hu->hdev, bcm->rx_skb, data, count,
588 bcm_recv_pkts, ARRAY_SIZE(bcm_recv_pkts));
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700589 if (IS_ERR(bcm->rx_skb)) {
590 int err = PTR_ERR(bcm->rx_skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200591 bt_dev_err(hu->hdev, "Frame reassembly failed (%d)", err);
Chan-yeol Park37134162015-06-17 21:10:39 +0900592 bcm->rx_skb = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700593 return err;
Frederic Danise88ab302015-09-23 18:18:11 +0200594 } else if (!bcm->rx_skb) {
595 /* Delay auto-suspend when receiving completed packet */
596 mutex_lock(&bcm_device_lock);
Hans de Goedeb09c6152018-03-14 23:06:02 +0100597 if (bcm->dev && bcm_device_exists(bcm->dev)) {
598 pm_runtime_get(bcm->dev->dev);
599 pm_runtime_mark_last_busy(bcm->dev->dev);
600 pm_runtime_put_autosuspend(bcm->dev->dev);
601 }
Frederic Danise88ab302015-09-23 18:18:11 +0200602 mutex_unlock(&bcm_device_lock);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700603 }
604
605 return count;
606}
607
608static int bcm_enqueue(struct hci_uart *hu, struct sk_buff *skb)
609{
610 struct bcm_data *bcm = hu->priv;
611
Frederic Danis65ad07c2015-09-01 12:13:36 +0200612 bt_dev_dbg(hu->hdev, "hu %p skb %p", hu, skb);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700613
614 /* Prepend skb with frame type */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100615 memcpy(skb_push(skb, 1), &hci_skb_pkt_type(skb), 1);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700616 skb_queue_tail(&bcm->txq, skb);
617
618 return 0;
619}
620
621static struct sk_buff *bcm_dequeue(struct hci_uart *hu)
622{
623 struct bcm_data *bcm = hu->priv;
Frederic Danise88ab302015-09-23 18:18:11 +0200624 struct sk_buff *skb = NULL;
625 struct bcm_device *bdev = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700626
Frederic Danise88ab302015-09-23 18:18:11 +0200627 mutex_lock(&bcm_device_lock);
628
629 if (bcm_device_exists(bcm->dev)) {
630 bdev = bcm->dev;
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200631 pm_runtime_get_sync(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200632 /* Shall be resumed here */
633 }
634
635 skb = skb_dequeue(&bcm->txq);
636
637 if (bdev) {
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200638 pm_runtime_mark_last_busy(bdev->dev);
639 pm_runtime_put_autosuspend(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200640 }
641
642 mutex_unlock(&bcm_device_lock);
643
644 return skb;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700645}
646
Frederic Danisb7a622a2015-09-23 18:18:09 +0200647#ifdef CONFIG_PM
648static int bcm_suspend_device(struct device *dev)
Frederic Danis118612f2015-08-11 16:35:38 +0200649{
Hans de Goede78277d72017-10-04 20:43:42 +0200650 struct bcm_device *bdev = dev_get_drvdata(dev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100651 int err;
Frederic Danis118612f2015-08-11 16:35:38 +0200652
Frederic Danisb7a622a2015-09-23 18:18:09 +0200653 bt_dev_dbg(bdev, "");
Frederic Danis118612f2015-08-11 16:35:38 +0200654
Frederic Danisb7a622a2015-09-23 18:18:09 +0200655 if (!bdev->is_suspended && bdev->hu) {
Frederic Danis118612f2015-08-11 16:35:38 +0200656 hci_uart_set_flow_control(bdev->hu, true);
657
Frederic Danisb7a622a2015-09-23 18:18:09 +0200658 /* Once this returns, driver suspends BT via GPIO */
Frederic Danis118612f2015-08-11 16:35:38 +0200659 bdev->is_suspended = true;
660 }
661
662 /* Suspend the device */
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100663 err = bdev->set_device_wakeup(bdev, false);
664 if (err) {
665 if (bdev->is_suspended && bdev->hu) {
666 bdev->is_suspended = false;
667 hci_uart_set_flow_control(bdev->hu, false);
668 }
669 return -EBUSY;
670 }
671
Lukas Wunner3e81a4c2018-01-10 16:32:10 +0100672 bt_dev_dbg(bdev, "suspend, delaying 15 ms");
Lukas Wunnere4b9e5b2018-01-10 16:32:10 +0100673 msleep(15);
Frederic Danis118612f2015-08-11 16:35:38 +0200674
Frederic Danisb7a622a2015-09-23 18:18:09 +0200675 return 0;
676}
677
678static int bcm_resume_device(struct device *dev)
679{
Hans de Goede78277d72017-10-04 20:43:42 +0200680 struct bcm_device *bdev = dev_get_drvdata(dev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100681 int err;
Frederic Danisb7a622a2015-09-23 18:18:09 +0200682
683 bt_dev_dbg(bdev, "");
684
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100685 err = bdev->set_device_wakeup(bdev, true);
686 if (err) {
687 dev_err(dev, "Failed to power up\n");
688 return err;
689 }
690
Lukas Wunner3e81a4c2018-01-10 16:32:10 +0100691 bt_dev_dbg(bdev, "resume, delaying 15 ms");
Lukas Wunnere4b9e5b2018-01-10 16:32:10 +0100692 msleep(15);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200693
694 /* When this executes, the device has woken up already */
695 if (bdev->is_suspended && bdev->hu) {
696 bdev->is_suspended = false;
697
698 hci_uart_set_flow_control(bdev->hu, false);
699 }
700
701 return 0;
702}
703#endif
704
705#ifdef CONFIG_PM_SLEEP
Hans de Goede8a920562017-10-04 20:43:43 +0200706/* suspend callback */
Frederic Danisb7a622a2015-09-23 18:18:09 +0200707static int bcm_suspend(struct device *dev)
708{
Hans de Goede78277d72017-10-04 20:43:42 +0200709 struct bcm_device *bdev = dev_get_drvdata(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200710 int error;
711
712 bt_dev_dbg(bdev, "suspend: is_suspended %d", bdev->is_suspended);
713
Hans de Goede8a920562017-10-04 20:43:43 +0200714 /*
715 * When used with a device instantiated as platform_device, bcm_suspend
716 * can be called at any time as long as the platform device is bound,
717 * so it should use bcm_device_lock to protect access to hci_uart
Frederic Danisb7a622a2015-09-23 18:18:09 +0200718 * and device_wake-up GPIO.
719 */
720 mutex_lock(&bcm_device_lock);
721
722 if (!bdev->hu)
723 goto unlock;
724
Frederic Danise88ab302015-09-23 18:18:11 +0200725 if (pm_runtime_active(dev))
726 bcm_suspend_device(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200727
Ronald Tschalär4a59f1f2018-01-10 16:32:10 +0100728 if (device_may_wakeup(dev) && bdev->irq > 0) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200729 error = enable_irq_wake(bdev->irq);
730 if (!error)
731 bt_dev_dbg(bdev, "BCM irq: enabled");
732 }
733
Frederic Danis917522a2015-08-28 15:44:00 +0200734unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200735 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200736
Frederic Danis118612f2015-08-11 16:35:38 +0200737 return 0;
738}
739
Hans de Goede8a920562017-10-04 20:43:43 +0200740/* resume callback */
Frederic Danis118612f2015-08-11 16:35:38 +0200741static int bcm_resume(struct device *dev)
742{
Hans de Goede78277d72017-10-04 20:43:42 +0200743 struct bcm_device *bdev = dev_get_drvdata(dev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100744 int err = 0;
Frederic Danis118612f2015-08-11 16:35:38 +0200745
Frederic Danis65ad07c2015-09-01 12:13:36 +0200746 bt_dev_dbg(bdev, "resume: is_suspended %d", bdev->is_suspended);
Frederic Danis118612f2015-08-11 16:35:38 +0200747
Hans de Goede8a920562017-10-04 20:43:43 +0200748 /*
749 * When used with a device instantiated as platform_device, bcm_resume
750 * can be called at any time as long as platform device is bound,
751 * so it should use bcm_device_lock to protect access to hci_uart
Frederic Danisb7a622a2015-09-23 18:18:09 +0200752 * and device_wake-up GPIO.
753 */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200754 mutex_lock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200755
756 if (!bdev->hu)
757 goto unlock;
758
Ronald Tschalär4a59f1f2018-01-10 16:32:10 +0100759 if (device_may_wakeup(dev) && bdev->irq > 0) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200760 disable_irq_wake(bdev->irq);
761 bt_dev_dbg(bdev, "BCM irq: disabled");
762 }
763
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100764 err = bcm_resume_device(dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200765
Frederic Danis917522a2015-08-28 15:44:00 +0200766unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200767 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200768
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100769 if (!err) {
770 pm_runtime_disable(dev);
771 pm_runtime_set_active(dev);
772 pm_runtime_enable(dev);
773 }
Frederic Danise88ab302015-09-23 18:18:11 +0200774
Frederic Danis118612f2015-08-11 16:35:38 +0200775 return 0;
776}
777#endif
778
Hans de Goede9644e6b2018-03-16 21:28:10 +0100779static const struct acpi_gpio_params first_gpio = { 0, 0, false };
780static const struct acpi_gpio_params second_gpio = { 1, 0, false };
781static const struct acpi_gpio_params third_gpio = { 2, 0, false };
Frederic Danis0395ffc2015-08-11 16:35:35 +0200782
Daniel Drake89ab37b2017-01-05 11:10:54 -0600783static const struct acpi_gpio_mapping acpi_bcm_int_last_gpios[] = {
Hans de Goede9644e6b2018-03-16 21:28:10 +0100784 { "device-wakeup-gpios", &first_gpio, 1 },
785 { "shutdown-gpios", &second_gpio, 1 },
786 { "host-wakeup-gpios", &third_gpio, 1 },
Daniel Drake89ab37b2017-01-05 11:10:54 -0600787 { },
788};
789
Daniel Drake89ab37b2017-01-05 11:10:54 -0600790static const struct acpi_gpio_mapping acpi_bcm_int_first_gpios[] = {
Hans de Goede9644e6b2018-03-16 21:28:10 +0100791 { "host-wakeup-gpios", &first_gpio, 1 },
792 { "device-wakeup-gpios", &second_gpio, 1 },
793 { "shutdown-gpios", &third_gpio, 1 },
Frederic Danis0395ffc2015-08-11 16:35:35 +0200794 { },
795};
796
Frederic Danis50d78bc2015-08-12 12:46:01 +0200797#ifdef CONFIG_ACPI
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200798/* IRQ polarity of some chipsets are not defined correctly in ACPI table. */
Hans de Goede227630c2017-10-04 20:43:36 +0200799static const struct dmi_system_id bcm_active_low_irq_dmi_table[] = {
Jérôme de Bretagne5e2bd932016-10-09 15:51:05 +0200800 { /* Handle ThinkPad 8 tablets with BCM2E55 chipset ACPI ID */
801 .ident = "Lenovo ThinkPad 8",
802 .matches = {
803 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
804 DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "ThinkPad 8"),
805 },
Jérôme de Bretagne5e2bd932016-10-09 15:51:05 +0200806 },
Ian W MORRISON1bdb68b2017-10-07 17:15:25 +1100807 {
808 .ident = "MINIX Z83-4",
809 .matches = {
810 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "MINIX"),
811 DMI_MATCH(DMI_PRODUCT_NAME, "Z83-4"),
812 },
813 },
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200814 { }
815};
816
Frederic Danisae056902015-08-11 16:35:37 +0200817static int bcm_resource(struct acpi_resource *ares, void *data)
818{
819 struct bcm_device *dev = data;
Frederic Danis6cc43962015-09-04 15:35:44 +0200820 struct acpi_resource_extended_irq *irq;
821 struct acpi_resource_gpio *gpio;
822 struct acpi_resource_uart_serialbus *sb;
Frederic Danisae056902015-08-11 16:35:37 +0200823
Frederic Danis6cc43962015-09-04 15:35:44 +0200824 switch (ares->type) {
825 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
826 irq = &ares->data.extended_irq;
Hans de Goedebb5208b2018-03-16 21:28:08 +0100827 if (irq->polarity != ACPI_ACTIVE_LOW)
828 dev_info(dev->dev, "ACPI Interrupt resource is active-high, this is usually wrong, treating the IRQ as active-low\n");
829 dev->irq_active_low = true;
Frederic Danis6cc43962015-09-04 15:35:44 +0200830 break;
Frederic Danisae056902015-08-11 16:35:37 +0200831
Frederic Danis6cc43962015-09-04 15:35:44 +0200832 case ACPI_RESOURCE_TYPE_GPIO:
833 gpio = &ares->data.gpio;
Hans de Goedea4de1562018-03-16 21:28:11 +0100834 if (gpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT) {
835 dev->gpio_int_idx = dev->gpio_count;
Hans de Goede227630c2017-10-04 20:43:36 +0200836 dev->irq_active_low = gpio->polarity == ACPI_ACTIVE_LOW;
Hans de Goedea4de1562018-03-16 21:28:11 +0100837 }
838 dev->gpio_count++;
Frederic Danis6cc43962015-09-04 15:35:44 +0200839 break;
840
841 case ACPI_RESOURCE_TYPE_SERIAL_BUS:
Frederic Danisae056902015-08-11 16:35:37 +0200842 sb = &ares->data.uart_serial_bus;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200843 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_UART) {
Frederic Danisae056902015-08-11 16:35:37 +0200844 dev->init_speed = sb->default_baud_rate;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200845 dev->oper_speed = 4000000;
846 }
Frederic Danis6cc43962015-09-04 15:35:44 +0200847 break;
848
849 default:
850 break;
Frederic Danisae056902015-08-11 16:35:37 +0200851 }
852
Hans de Goede9d54fd62017-10-04 20:43:41 +0200853 return 0;
Frederic Danisae056902015-08-11 16:35:37 +0200854}
Lukas Wunner4c331622018-01-10 16:32:10 +0100855
856static int bcm_apple_set_device_wakeup(struct bcm_device *dev, bool awake)
857{
858 if (ACPI_FAILURE(acpi_execute_simple_method(dev->btlp, NULL, !awake)))
859 return -EIO;
860
861 return 0;
862}
863
864static int bcm_apple_set_shutdown(struct bcm_device *dev, bool powered)
865{
866 if (ACPI_FAILURE(acpi_evaluate_object(powered ? dev->btpu : dev->btpd,
867 NULL, NULL, NULL)))
868 return -EIO;
869
870 return 0;
871}
872
873static int bcm_apple_get_resources(struct bcm_device *dev)
874{
875 struct acpi_device *adev = ACPI_COMPANION(dev->dev);
876 const union acpi_object *obj;
877
878 if (!adev ||
879 ACPI_FAILURE(acpi_get_handle(adev->handle, "BTLP", &dev->btlp)) ||
880 ACPI_FAILURE(acpi_get_handle(adev->handle, "BTPU", &dev->btpu)) ||
881 ACPI_FAILURE(acpi_get_handle(adev->handle, "BTPD", &dev->btpd)))
882 return -ENODEV;
883
884 if (!acpi_dev_get_property(adev, "baud", ACPI_TYPE_BUFFER, &obj) &&
885 obj->buffer.length == 8)
886 dev->init_speed = *(u64 *)obj->buffer.pointer;
887
888 dev->set_device_wakeup = bcm_apple_set_device_wakeup;
889 dev->set_shutdown = bcm_apple_set_shutdown;
890
891 return 0;
892}
893#else
894static inline int bcm_apple_get_resources(struct bcm_device *dev)
895{
896 return -EOPNOTSUPP;
897}
Andy Shevchenko212d7182017-03-10 14:28:20 +0200898#endif /* CONFIG_ACPI */
Frederic Danisae056902015-08-11 16:35:37 +0200899
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100900static int bcm_gpio_set_device_wakeup(struct bcm_device *dev, bool awake)
901{
Loic Poulainfb2d4662018-03-05 19:02:35 +0100902 gpiod_set_value_cansleep(dev->device_wakeup, awake);
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100903 return 0;
904}
905
906static int bcm_gpio_set_shutdown(struct bcm_device *dev, bool powered)
907{
Loic Poulainfb2d4662018-03-05 19:02:35 +0100908 gpiod_set_value_cansleep(dev->shutdown, powered);
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100909 return 0;
910}
911
Hans de Goede42ef18f2017-10-04 20:43:40 +0200912static int bcm_get_resources(struct bcm_device *dev)
Frederic Danis0395ffc2015-08-11 16:35:35 +0200913{
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200914 dev->name = dev_name(dev->dev);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200915
Lukas Wunner4c331622018-01-10 16:32:10 +0100916 if (x86_apple_machine && !bcm_apple_get_resources(dev))
917 return 0;
918
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200919 dev->clk = devm_clk_get(dev->dev, NULL);
Daniel Drake89ab37b2017-01-05 11:10:54 -0600920
Stefan Wahrenab2f3362018-02-25 15:10:52 +0100921 dev->device_wakeup = devm_gpiod_get_optional(dev->dev, "device-wakeup",
922 GPIOD_OUT_LOW);
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200923 if (IS_ERR(dev->device_wakeup))
924 return PTR_ERR(dev->device_wakeup);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200925
Stefan Wahrenab2f3362018-02-25 15:10:52 +0100926 dev->shutdown = devm_gpiod_get_optional(dev->dev, "shutdown",
927 GPIOD_OUT_LOW);
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200928 if (IS_ERR(dev->shutdown))
929 return PTR_ERR(dev->shutdown);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200930
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100931 dev->set_device_wakeup = bcm_gpio_set_device_wakeup;
932 dev->set_shutdown = bcm_gpio_set_shutdown;
933
Frederic Danis6cc43962015-09-04 15:35:44 +0200934 /* IRQ can be declared in ACPI table as Interrupt or GpioInt */
Frederic Danis6cc43962015-09-04 15:35:44 +0200935 if (dev->irq <= 0) {
936 struct gpio_desc *gpio;
937
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200938 gpio = devm_gpiod_get_optional(dev->dev, "host-wakeup",
Frederic Danis6cc43962015-09-04 15:35:44 +0200939 GPIOD_IN);
940 if (IS_ERR(gpio))
941 return PTR_ERR(gpio);
942
943 dev->irq = gpiod_to_irq(gpio);
944 }
945
Lukas Wunner5954cdf2018-01-10 16:32:10 +0100946 dev_dbg(dev->dev, "BCM irq: %d\n", dev->irq);
Andy Shevchenko212d7182017-03-10 14:28:20 +0200947 return 0;
948}
949
950#ifdef CONFIG_ACPI
951static int bcm_acpi_probe(struct bcm_device *dev)
952{
Andy Shevchenko212d7182017-03-10 14:28:20 +0200953 LIST_HEAD(resources);
954 const struct dmi_system_id *dmi_id;
955 const struct acpi_gpio_mapping *gpio_mapping = acpi_bcm_int_last_gpios;
Hans de Goede9d54fd62017-10-04 20:43:41 +0200956 struct resource_entry *entry;
Andy Shevchenko212d7182017-03-10 14:28:20 +0200957 int ret;
958
Frederic Danisae056902015-08-11 16:35:37 +0200959 /* Retrieve UART ACPI info */
Hans de Goedea4de1562018-03-16 21:28:11 +0100960 dev->gpio_int_idx = -1;
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200961 ret = acpi_dev_get_resources(ACPI_COMPANION(dev->dev),
Jarkko Nikulae98d6d62015-09-30 16:26:45 +0300962 &resources, bcm_resource, dev);
Jarkko Nikula5be00282015-09-30 16:26:42 +0300963 if (ret < 0)
964 return ret;
Hans de Goede9d54fd62017-10-04 20:43:41 +0200965
966 resource_list_for_each_entry(entry, &resources) {
967 if (resource_type(entry->res) == IORESOURCE_IRQ) {
968 dev->irq = entry->res->start;
969 break;
970 }
971 }
Jarkko Nikula09dbf1b2015-09-30 16:26:41 +0300972 acpi_dev_free_resource_list(&resources);
Frederic Danisae056902015-08-11 16:35:37 +0200973
Hans de Goedea4de1562018-03-16 21:28:11 +0100974 /* If the DSDT uses an Interrupt resource for the IRQ, then there are
975 * only 2 GPIO resources, we use the irq-last mapping for this, since
976 * we already have an irq the 3th / last mapping will not be used.
977 */
978 if (dev->irq)
979 gpio_mapping = acpi_bcm_int_last_gpios;
980 else if (dev->gpio_int_idx == 0)
981 gpio_mapping = acpi_bcm_int_first_gpios;
982 else if (dev->gpio_int_idx == 2)
983 gpio_mapping = acpi_bcm_int_last_gpios;
984 else
985 dev_warn(dev->dev, "Unexpected ACPI gpio_int_idx: %d\n",
986 dev->gpio_int_idx);
987
988 /* Warn if our expectations are not met. */
989 if (dev->gpio_count != (dev->irq ? 2 : 3))
990 dev_warn(dev->dev, "Unexpected number of ACPI GPIOs: %d\n",
991 dev->gpio_count);
992
993 ret = devm_acpi_dev_add_driver_gpios(dev->dev, gpio_mapping);
994 if (ret)
995 return ret;
996
Hans de Goedee09070c2018-03-16 21:28:07 +0100997 if (irq_polarity != -1) {
998 dev->irq_active_low = irq_polarity;
999 dev_warn(dev->dev, "Overwriting IRQ polarity to active %s by module-param\n",
1000 dev->irq_active_low ? "low" : "high");
1001 } else {
1002 dmi_id = dmi_first_match(bcm_active_low_irq_dmi_table);
1003 if (dmi_id) {
1004 dev_warn(dev->dev, "%s: Overwriting IRQ polarity to active low",
1005 dmi_id->ident);
1006 dev->irq_active_low = true;
1007 }
Frederic Danis5cebdfe2015-09-23 18:18:08 +02001008 }
1009
Frederic Danis0395ffc2015-08-11 16:35:35 +02001010 return 0;
1011}
Frederic Danis50d78bc2015-08-12 12:46:01 +02001012#else
1013static int bcm_acpi_probe(struct bcm_device *dev)
1014{
1015 return -EINVAL;
1016}
1017#endif /* CONFIG_ACPI */
Frederic Danis0395ffc2015-08-11 16:35:35 +02001018
Hans de Goede8a920562017-10-04 20:43:43 +02001019static int bcm_of_probe(struct bcm_device *bdev)
1020{
1021 device_property_read_u32(bdev->dev, "max-speed", &bdev->oper_speed);
1022 return 0;
1023}
1024
Frederic Danis0395ffc2015-08-11 16:35:35 +02001025static int bcm_probe(struct platform_device *pdev)
1026{
1027 struct bcm_device *dev;
Frederic Danis0395ffc2015-08-11 16:35:35 +02001028 int ret;
1029
1030 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
1031 if (!dev)
1032 return -ENOMEM;
1033
Hans de Goedec0d3ce52017-10-04 20:43:39 +02001034 dev->dev = &pdev->dev;
Hans de Goede4a56f892017-10-04 20:43:38 +02001035 dev->irq = platform_get_irq(pdev, 0);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001036
Hans de Goede201762e2017-10-04 20:43:37 +02001037 if (has_acpi_companion(&pdev->dev)) {
Andy Shevchenko212d7182017-03-10 14:28:20 +02001038 ret = bcm_acpi_probe(dev);
Hans de Goede201762e2017-10-04 20:43:37 +02001039 if (ret)
1040 return ret;
1041 }
1042
Hans de Goede42ef18f2017-10-04 20:43:40 +02001043 ret = bcm_get_resources(dev);
Jarkko Nikula4d1c4552015-09-30 16:26:44 +03001044 if (ret)
1045 return ret;
Frederic Danis0395ffc2015-08-11 16:35:35 +02001046
1047 platform_set_drvdata(pdev, dev);
1048
1049 dev_info(&pdev->dev, "%s device registered.\n", dev->name);
1050
1051 /* Place this instance on the device list */
Frederic Danisbb3ea162015-09-01 12:13:35 +02001052 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001053 list_add_tail(&dev->list, &bcm_device_list);
Frederic Danisbb3ea162015-09-01 12:13:35 +02001054 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001055
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +01001056 ret = bcm_gpio_set_power(dev, false);
1057 if (ret)
1058 dev_err(&pdev->dev, "Failed to power down\n");
Frederic Danis0395ffc2015-08-11 16:35:35 +02001059
1060 return 0;
1061}
1062
1063static int bcm_remove(struct platform_device *pdev)
1064{
1065 struct bcm_device *dev = platform_get_drvdata(pdev);
1066
Frederic Danisbb3ea162015-09-01 12:13:35 +02001067 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001068 list_del(&dev->list);
Frederic Danisbb3ea162015-09-01 12:13:35 +02001069 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001070
Frederic Danis0395ffc2015-08-11 16:35:35 +02001071 dev_info(&pdev->dev, "%s device unregistered.\n", dev->name);
1072
1073 return 0;
1074}
1075
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001076static const struct hci_uart_proto bcm_proto = {
1077 .id = HCI_UART_BCM,
Loic Poulain143f0a22016-09-19 12:05:12 +02001078 .name = "Broadcom",
Marcel Holtmannaee61f72015-10-20 21:30:45 +02001079 .manufacturer = 15,
Frederic Danis61b2fc22015-06-09 16:15:37 +02001080 .init_speed = 115200,
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001081 .open = bcm_open,
1082 .close = bcm_close,
1083 .flush = bcm_flush,
1084 .setup = bcm_setup,
Frederic Danis61b2fc22015-06-09 16:15:37 +02001085 .set_baudrate = bcm_set_baudrate,
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001086 .recv = bcm_recv,
1087 .enqueue = bcm_enqueue,
1088 .dequeue = bcm_dequeue,
1089};
1090
Frederic Danis0395ffc2015-08-11 16:35:35 +02001091#ifdef CONFIG_ACPI
1092static const struct acpi_device_id bcm_acpi_match[] = {
Hans de Goedea4de1562018-03-16 21:28:11 +01001093 { "BCM2E1A" },
1094 { "BCM2E38" },
1095 { "BCM2E39" },
1096 { "BCM2E3A" },
1097 { "BCM2E3D" },
1098 { "BCM2E3F" },
1099 { "BCM2E40" },
1100 { "BCM2E54" },
1101 { "BCM2E55" },
1102 { "BCM2E64" },
1103 { "BCM2E65" },
1104 { "BCM2E67" },
1105 { "BCM2E71" },
1106 { "BCM2E72" },
1107 { "BCM2E74" },
1108 { "BCM2E7B" },
1109 { "BCM2E7C" },
1110 { "BCM2E7E" },
1111 { "BCM2E83" },
1112 { "BCM2E84" },
1113 { "BCM2E90" },
1114 { "BCM2E95" },
1115 { "BCM2E96" },
1116 { "BCM2EA4" },
1117 { "BCM2EAA" },
Frederic Danis0395ffc2015-08-11 16:35:35 +02001118 { },
1119};
1120MODULE_DEVICE_TABLE(acpi, bcm_acpi_match);
1121#endif
1122
Hans de Goede8a920562017-10-04 20:43:43 +02001123/* suspend and resume callbacks */
Frederic Danise88ab302015-09-23 18:18:11 +02001124static const struct dev_pm_ops bcm_pm_ops = {
1125 SET_SYSTEM_SLEEP_PM_OPS(bcm_suspend, bcm_resume)
1126 SET_RUNTIME_PM_OPS(bcm_suspend_device, bcm_resume_device, NULL)
1127};
Frederic Danis118612f2015-08-11 16:35:38 +02001128
Frederic Danis0395ffc2015-08-11 16:35:35 +02001129static struct platform_driver bcm_driver = {
1130 .probe = bcm_probe,
1131 .remove = bcm_remove,
1132 .driver = {
1133 .name = "hci_bcm",
1134 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
Frederic Danis118612f2015-08-11 16:35:38 +02001135 .pm = &bcm_pm_ops,
Frederic Danis0395ffc2015-08-11 16:35:35 +02001136 },
1137};
1138
Loic Poulain33cd1492017-08-17 19:59:51 +02001139static int bcm_serdev_probe(struct serdev_device *serdev)
1140{
Hans de Goede8a920562017-10-04 20:43:43 +02001141 struct bcm_device *bcmdev;
Loic Poulain33cd1492017-08-17 19:59:51 +02001142 int err;
1143
1144 bcmdev = devm_kzalloc(&serdev->dev, sizeof(*bcmdev), GFP_KERNEL);
1145 if (!bcmdev)
1146 return -ENOMEM;
1147
Hans de Goede8a920562017-10-04 20:43:43 +02001148 bcmdev->dev = &serdev->dev;
Arnd Bergmann81a19052017-10-11 15:46:21 +02001149#ifdef CONFIG_PM
Hans de Goede8a920562017-10-04 20:43:43 +02001150 bcmdev->hu = &bcmdev->serdev_hu;
Arnd Bergmann81a19052017-10-11 15:46:21 +02001151#endif
Hans de Goede8a920562017-10-04 20:43:43 +02001152 bcmdev->serdev_hu.serdev = serdev;
Loic Poulain33cd1492017-08-17 19:59:51 +02001153 serdev_device_set_drvdata(serdev, bcmdev);
1154
Hans de Goede8a920562017-10-04 20:43:43 +02001155 if (has_acpi_companion(&serdev->dev))
1156 err = bcm_acpi_probe(bcmdev);
1157 else
1158 err = bcm_of_probe(bcmdev);
1159 if (err)
1160 return err;
Loic Poulain33cd1492017-08-17 19:59:51 +02001161
Hans de Goede8a920562017-10-04 20:43:43 +02001162 err = bcm_get_resources(bcmdev);
1163 if (err)
1164 return err;
1165
Marcel Holtmannf3863f12018-03-07 22:39:03 +01001166 if (!bcmdev->shutdown) {
1167 dev_warn(&serdev->dev,
1168 "No reset resource, using default baud rate\n");
1169 bcmdev->oper_speed = bcmdev->init_speed;
1170 }
1171
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +01001172 err = bcm_gpio_set_power(bcmdev, false);
1173 if (err)
1174 dev_err(&serdev->dev, "Failed to power down\n");
Hans de Goede8a920562017-10-04 20:43:43 +02001175
1176 return hci_uart_register_device(&bcmdev->serdev_hu, &bcm_proto);
Loic Poulain33cd1492017-08-17 19:59:51 +02001177}
1178
1179static void bcm_serdev_remove(struct serdev_device *serdev)
1180{
Hans de Goede8a920562017-10-04 20:43:43 +02001181 struct bcm_device *bcmdev = serdev_device_get_drvdata(serdev);
Loic Poulain33cd1492017-08-17 19:59:51 +02001182
Hans de Goede8a920562017-10-04 20:43:43 +02001183 hci_uart_unregister_device(&bcmdev->serdev_hu);
Loic Poulain33cd1492017-08-17 19:59:51 +02001184}
1185
1186#ifdef CONFIG_OF
1187static const struct of_device_id bcm_bluetooth_of_match[] = {
1188 { .compatible = "brcm,bcm43438-bt" },
1189 { },
1190};
1191MODULE_DEVICE_TABLE(of, bcm_bluetooth_of_match);
1192#endif
1193
1194static struct serdev_device_driver bcm_serdev_driver = {
1195 .probe = bcm_serdev_probe,
1196 .remove = bcm_serdev_remove,
1197 .driver = {
1198 .name = "hci_uart_bcm",
1199 .of_match_table = of_match_ptr(bcm_bluetooth_of_match),
Hans de Goede8a920562017-10-04 20:43:43 +02001200 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
1201 .pm = &bcm_pm_ops,
Loic Poulain33cd1492017-08-17 19:59:51 +02001202 },
1203};
1204
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001205int __init bcm_init(void)
1206{
Loic Poulain33cd1492017-08-17 19:59:51 +02001207 /* For now, we need to keep both platform device
1208 * driver (ACPI generated) and serdev driver (DT).
1209 */
Frederic Danis0395ffc2015-08-11 16:35:35 +02001210 platform_driver_register(&bcm_driver);
Loic Poulain33cd1492017-08-17 19:59:51 +02001211 serdev_device_driver_register(&bcm_serdev_driver);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001212
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001213 return hci_uart_register_proto(&bcm_proto);
1214}
1215
1216int __exit bcm_deinit(void)
1217{
Frederic Danis0395ffc2015-08-11 16:35:35 +02001218 platform_driver_unregister(&bcm_driver);
Loic Poulain33cd1492017-08-17 19:59:51 +02001219 serdev_device_driver_unregister(&bcm_serdev_driver);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001220
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001221 return hci_uart_unregister_proto(&bcm_proto);
1222}