blob: 03a3651481849b5ee2798b1bd1192ed27a324c3f [file] [log] [blame]
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -07001/*
2 *
3 * Bluetooth HCI UART driver for Broadcom devices
4 *
5 * Copyright (C) 2015 Intel Corporation
6 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
24#include <linux/kernel.h>
25#include <linux/errno.h>
26#include <linux/skbuff.h>
Frederic Danis18aeb442015-05-28 11:25:01 +020027#include <linux/firmware.h>
Frederic Danis0395ffc2015-08-11 16:35:35 +020028#include <linux/module.h>
29#include <linux/acpi.h>
Loic Poulain33cd1492017-08-17 19:59:51 +020030#include <linux/of.h>
31#include <linux/property.h>
Frederic Danis0395ffc2015-08-11 16:35:35 +020032#include <linux/platform_device.h>
33#include <linux/clk.h>
34#include <linux/gpio/consumer.h>
35#include <linux/tty.h>
Frederic Danis6cc43962015-09-04 15:35:44 +020036#include <linux/interrupt.h>
Frederic Danis5cebdfe2015-09-23 18:18:08 +020037#include <linux/dmi.h>
Frederic Danise88ab302015-09-23 18:18:11 +020038#include <linux/pm_runtime.h>
Loic Poulain33cd1492017-08-17 19:59:51 +020039#include <linux/serdev.h>
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -070040
41#include <net/bluetooth/bluetooth.h>
42#include <net/bluetooth/hci_core.h>
43
Marcel Holtmannbdd88182015-04-05 22:52:18 -070044#include "btbcm.h"
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -070045#include "hci_uart.h"
Marcel Holtmannbdd88182015-04-05 22:52:18 -070046
Marcel Holtmann01d5e442017-08-17 21:41:09 +020047#define BCM_NULL_PKT 0x00
48#define BCM_NULL_SIZE 0
49
Marcel Holtmann94c58132015-10-07 19:12:54 +020050#define BCM_LM_DIAG_PKT 0x07
51#define BCM_LM_DIAG_SIZE 63
52
Frederic Danise88ab302015-09-23 18:18:11 +020053#define BCM_AUTOSUSPEND_DELAY 5000 /* default autosleep delay */
54
Lukas Wunnerb7c2aba2018-01-10 16:32:10 +010055/**
56 * struct bcm_device - device driver resources
57 * @serdev_hu: HCI UART controller struct
58 * @list: bcm_device_list node
59 * @dev: physical UART slave
60 * @name: device name logged by bt_dev_*() functions
61 * @device_wakeup: BT_WAKE pin,
62 * assert = Bluetooth device must wake up or remain awake,
63 * deassert = Bluetooth device may sleep when sleep criteria are met
64 * @shutdown: BT_REG_ON pin,
65 * power up or power down Bluetooth device internal regulators
Lukas Wunner8353b4a2018-01-10 16:32:10 +010066 * @set_device_wakeup: callback to toggle BT_WAKE pin
67 * @set_shutdown: callback to toggle BT_REG_ON pin
Lukas Wunnerb7c2aba2018-01-10 16:32:10 +010068 * @clk: clock used by Bluetooth device
69 * @clk_enabled: whether @clk is prepared and enabled
70 * @init_speed: default baudrate of Bluetooth device;
71 * the host UART is initially set to this baudrate so that
72 * it can configure the Bluetooth device for @oper_speed
73 * @oper_speed: preferred baudrate of Bluetooth device;
74 * set to 0 if @init_speed is already the preferred baudrate
75 * @irq: interrupt triggered by HOST_WAKE_BT pin
76 * @irq_active_low: whether @irq is active low
77 * @hu: pointer to HCI UART controller struct,
78 * used to disable flow control during runtime suspend and system sleep
79 * @is_suspended: whether flow control is currently disabled
80 */
Frederic Danis0395ffc2015-08-11 16:35:35 +020081struct bcm_device {
Hans de Goede8a920562017-10-04 20:43:43 +020082 /* Must be the first member, hci_serdev.c expects this. */
83 struct hci_uart serdev_hu;
Frederic Danis0395ffc2015-08-11 16:35:35 +020084 struct list_head list;
85
Hans de Goedec0d3ce52017-10-04 20:43:39 +020086 struct device *dev;
Frederic Danis0395ffc2015-08-11 16:35:35 +020087
88 const char *name;
89 struct gpio_desc *device_wakeup;
90 struct gpio_desc *shutdown;
Lukas Wunner8353b4a2018-01-10 16:32:10 +010091 int (*set_device_wakeup)(struct bcm_device *, bool);
92 int (*set_shutdown)(struct bcm_device *, bool);
Frederic Danis0395ffc2015-08-11 16:35:35 +020093
94 struct clk *clk;
95 bool clk_enabled;
Frederic Danisae056902015-08-11 16:35:37 +020096
97 u32 init_speed;
Marcel Holtmann74183a12017-08-16 09:53:30 +020098 u32 oper_speed;
Frederic Danis6cc43962015-09-04 15:35:44 +020099 int irq;
Hans de Goede227630c2017-10-04 20:43:36 +0200100 bool irq_active_low;
Frederic Danis118612f2015-08-11 16:35:38 +0200101
Frederic Danisb7a622a2015-09-23 18:18:09 +0200102#ifdef CONFIG_PM
Frederic Danis118612f2015-08-11 16:35:38 +0200103 struct hci_uart *hu;
Lukas Wunnerb7c2aba2018-01-10 16:32:10 +0100104 bool is_suspended;
Frederic Danis118612f2015-08-11 16:35:38 +0200105#endif
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700106};
107
Loic Poulain33cd1492017-08-17 19:59:51 +0200108/* generic bcm uart resources */
Frederic Danis0395ffc2015-08-11 16:35:35 +0200109struct bcm_data {
110 struct sk_buff *rx_skb;
111 struct sk_buff_head txq;
112
113 struct bcm_device *dev;
114};
115
116/* List of BCM BT UART devices */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200117static DEFINE_MUTEX(bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200118static LIST_HEAD(bcm_device_list);
119
Loic Poulain33cd1492017-08-17 19:59:51 +0200120static inline void host_set_baudrate(struct hci_uart *hu, unsigned int speed)
121{
122 if (hu->serdev)
123 serdev_device_set_baudrate(hu->serdev, speed);
124 else
125 hci_uart_set_baudrate(hu, speed);
126}
127
Frederic Danis61b2fc22015-06-09 16:15:37 +0200128static int bcm_set_baudrate(struct hci_uart *hu, unsigned int speed)
129{
130 struct hci_dev *hdev = hu->hdev;
131 struct sk_buff *skb;
132 struct bcm_update_uart_baud_rate param;
133
134 if (speed > 3000000) {
135 struct bcm_write_uart_clock_setting clock;
136
137 clock.type = BCM_UART_CLOCK_48MHZ;
138
Frederic Danis65ad07c2015-09-01 12:13:36 +0200139 bt_dev_dbg(hdev, "Set Controller clock (%d)", clock.type);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200140
141 /* This Broadcom specific command changes the UART's controller
142 * clock for baud rate > 3000000.
143 */
144 skb = __hci_cmd_sync(hdev, 0xfc45, 1, &clock, HCI_INIT_TIMEOUT);
145 if (IS_ERR(skb)) {
146 int err = PTR_ERR(skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200147 bt_dev_err(hdev, "BCM: failed to write clock (%d)",
148 err);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200149 return err;
150 }
151
152 kfree_skb(skb);
153 }
154
Frederic Danis65ad07c2015-09-01 12:13:36 +0200155 bt_dev_dbg(hdev, "Set Controller UART speed to %d bit/s", speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200156
157 param.zero = cpu_to_le16(0);
158 param.baud_rate = cpu_to_le32(speed);
159
160 /* This Broadcom specific command changes the UART's controller baud
161 * rate.
162 */
163 skb = __hci_cmd_sync(hdev, 0xfc18, sizeof(param), &param,
164 HCI_INIT_TIMEOUT);
165 if (IS_ERR(skb)) {
166 int err = PTR_ERR(skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200167 bt_dev_err(hdev, "BCM: failed to write update baudrate (%d)",
168 err);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200169 return err;
170 }
171
172 kfree_skb(skb);
173
174 return 0;
175}
176
Frederic Danis917522a2015-08-28 15:44:00 +0200177/* bcm_device_exists should be protected by bcm_device_lock */
Frederic Danis0395ffc2015-08-11 16:35:35 +0200178static bool bcm_device_exists(struct bcm_device *device)
179{
180 struct list_head *p;
181
Arnd Bergmann81a19052017-10-11 15:46:21 +0200182#ifdef CONFIG_PM
Hans de Goede8a920562017-10-04 20:43:43 +0200183 /* Devices using serdev always exist */
184 if (device && device->hu && device->hu->serdev)
185 return true;
Arnd Bergmann81a19052017-10-11 15:46:21 +0200186#endif
Hans de Goede8a920562017-10-04 20:43:43 +0200187
Frederic Danis0395ffc2015-08-11 16:35:35 +0200188 list_for_each(p, &bcm_device_list) {
189 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
190
191 if (device == dev)
192 return true;
193 }
194
195 return false;
196}
197
198static int bcm_gpio_set_power(struct bcm_device *dev, bool powered)
199{
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100200 int err;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200201
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100202 if (powered && !IS_ERR(dev->clk) && !dev->clk_enabled) {
203 err = clk_prepare_enable(dev->clk);
204 if (err)
205 return err;
206 }
207
208 err = dev->set_shutdown(dev, powered);
209 if (err)
210 goto err_clk_disable;
211
212 err = dev->set_device_wakeup(dev, powered);
213 if (err)
214 goto err_revert_shutdown;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200215
216 if (!powered && !IS_ERR(dev->clk) && dev->clk_enabled)
John Keeping730ce392017-03-15 12:20:05 +0000217 clk_disable_unprepare(dev->clk);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200218
219 dev->clk_enabled = powered;
220
221 return 0;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100222
223err_revert_shutdown:
224 dev->set_shutdown(dev, !powered);
225err_clk_disable:
226 if (powered && !IS_ERR(dev->clk) && !dev->clk_enabled)
227 clk_disable_unprepare(dev->clk);
228 return err;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200229}
230
Frederic Danisb7a622a2015-09-23 18:18:09 +0200231#ifdef CONFIG_PM
Frederic Danis6cc43962015-09-04 15:35:44 +0200232static irqreturn_t bcm_host_wake(int irq, void *data)
233{
234 struct bcm_device *bdev = data;
235
236 bt_dev_dbg(bdev, "Host wake IRQ");
237
Lukas Wunner43fff7682017-12-26 17:07:34 +0200238 pm_request_resume(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200239
Frederic Danis6cc43962015-09-04 15:35:44 +0200240 return IRQ_HANDLED;
241}
242
243static int bcm_request_irq(struct bcm_data *bcm)
244{
245 struct bcm_device *bdev = bcm->dev;
Loic Poulain98dc77d2017-07-04 12:57:56 +0200246 int err;
Frederic Danis6cc43962015-09-04 15:35:44 +0200247
Frederic Danis6cc43962015-09-04 15:35:44 +0200248 mutex_lock(&bcm_device_lock);
249 if (!bcm_device_exists(bdev)) {
250 err = -ENODEV;
251 goto unlock;
252 }
253
Loic Poulain98dc77d2017-07-04 12:57:56 +0200254 if (bdev->irq <= 0) {
255 err = -EOPNOTSUPP;
256 goto unlock;
Frederic Danis6cc43962015-09-04 15:35:44 +0200257 }
258
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200259 err = devm_request_irq(bdev->dev, bdev->irq, bcm_host_wake,
Hans de Goede227630c2017-10-04 20:43:36 +0200260 bdev->irq_active_low ? IRQF_TRIGGER_FALLING :
261 IRQF_TRIGGER_RISING,
262 "host_wake", bdev);
Lukas Wunner4dc27332018-01-10 16:32:10 +0100263 if (err) {
264 bdev->irq = err;
Loic Poulain98dc77d2017-07-04 12:57:56 +0200265 goto unlock;
Lukas Wunner4dc27332018-01-10 16:32:10 +0100266 }
Loic Poulain98dc77d2017-07-04 12:57:56 +0200267
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200268 device_init_wakeup(bdev->dev, true);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200269
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200270 pm_runtime_set_autosuspend_delay(bdev->dev,
Loic Poulain98dc77d2017-07-04 12:57:56 +0200271 BCM_AUTOSUSPEND_DELAY);
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200272 pm_runtime_use_autosuspend(bdev->dev);
273 pm_runtime_set_active(bdev->dev);
274 pm_runtime_enable(bdev->dev);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200275
Frederic Danis6cc43962015-09-04 15:35:44 +0200276unlock:
277 mutex_unlock(&bcm_device_lock);
278
279 return err;
280}
281
282static const struct bcm_set_sleep_mode default_sleep_params = {
283 .sleep_mode = 1, /* 0=Disabled, 1=UART, 2=Reserved, 3=USB */
284 .idle_host = 2, /* idle threshold HOST, in 300ms */
285 .idle_dev = 2, /* idle threshold device, in 300ms */
286 .bt_wake_active = 1, /* BT_WAKE active mode: 1 = high, 0 = low */
287 .host_wake_active = 0, /* HOST_WAKE active mode: 1 = high, 0 = low */
288 .allow_host_sleep = 1, /* Allow host sleep in SCO flag */
Frederic Danise88ab302015-09-23 18:18:11 +0200289 .combine_modes = 1, /* Combine sleep and LPM flag */
Frederic Danis6cc43962015-09-04 15:35:44 +0200290 .tristate_control = 0, /* Allow tri-state control of UART tx flag */
291 /* Irrelevant USB flags */
292 .usb_auto_sleep = 0,
293 .usb_resume_timeout = 0,
294 .pulsed_host_wake = 0,
295 .break_to_host = 0
296};
297
298static int bcm_setup_sleep(struct hci_uart *hu)
299{
300 struct bcm_data *bcm = hu->priv;
301 struct sk_buff *skb;
302 struct bcm_set_sleep_mode sleep_params = default_sleep_params;
303
Hans de Goede227630c2017-10-04 20:43:36 +0200304 sleep_params.host_wake_active = !bcm->dev->irq_active_low;
Frederic Danis6cc43962015-09-04 15:35:44 +0200305
306 skb = __hci_cmd_sync(hu->hdev, 0xfc27, sizeof(sleep_params),
307 &sleep_params, HCI_INIT_TIMEOUT);
308 if (IS_ERR(skb)) {
309 int err = PTR_ERR(skb);
310 bt_dev_err(hu->hdev, "Sleep VSC failed (%d)", err);
311 return err;
312 }
313 kfree_skb(skb);
314
315 bt_dev_dbg(hu->hdev, "Set Sleep Parameters VSC succeeded");
316
317 return 0;
318}
319#else
320static inline int bcm_request_irq(struct bcm_data *bcm) { return 0; }
321static inline int bcm_setup_sleep(struct hci_uart *hu) { return 0; }
322#endif
323
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200324static int bcm_set_diag(struct hci_dev *hdev, bool enable)
325{
326 struct hci_uart *hu = hci_get_drvdata(hdev);
327 struct bcm_data *bcm = hu->priv;
328 struct sk_buff *skb;
329
330 if (!test_bit(HCI_RUNNING, &hdev->flags))
331 return -ENETDOWN;
332
333 skb = bt_skb_alloc(3, GFP_KERNEL);
Dan Carpentera1857392015-10-22 12:06:09 +0300334 if (!skb)
335 return -ENOMEM;
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200336
Johannes Berg634fef62017-06-16 14:29:24 +0200337 skb_put_u8(skb, BCM_LM_DIAG_PKT);
338 skb_put_u8(skb, 0xf0);
339 skb_put_u8(skb, enable);
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200340
341 skb_queue_tail(&bcm->txq, skb);
342 hci_uart_tx_wakeup(hu);
343
344 return 0;
345}
346
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700347static int bcm_open(struct hci_uart *hu)
348{
349 struct bcm_data *bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200350 struct list_head *p;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100351 int err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700352
Frederic Danis65ad07c2015-09-01 12:13:36 +0200353 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700354
355 bcm = kzalloc(sizeof(*bcm), GFP_KERNEL);
356 if (!bcm)
357 return -ENOMEM;
358
359 skb_queue_head_init(&bcm->txq);
360
361 hu->priv = bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200362
Hans de Goede8a920562017-10-04 20:43:43 +0200363 mutex_lock(&bcm_device_lock);
364
Loic Poulain33cd1492017-08-17 19:59:51 +0200365 if (hu->serdev) {
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100366 err = serdev_device_open(hu->serdev);
367 if (err)
368 goto err_free;
369
Hans de Goede8a920562017-10-04 20:43:43 +0200370 bcm->dev = serdev_device_get_drvdata(hu->serdev);
Loic Poulain33cd1492017-08-17 19:59:51 +0200371 goto out;
372 }
373
Johan Hovold95065a62017-03-29 18:15:27 +0200374 if (!hu->tty->dev)
375 goto out;
376
Frederic Danis0395ffc2015-08-11 16:35:35 +0200377 list_for_each(p, &bcm_device_list) {
378 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
379
380 /* Retrieve saved bcm_device based on parent of the
381 * platform device (saved during device probe) and
382 * parent of tty device used by hci_uart
383 */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200384 if (hu->tty->dev->parent == dev->dev->parent) {
Frederic Danis0395ffc2015-08-11 16:35:35 +0200385 bcm->dev = dev;
Frederic Danisb7a622a2015-09-23 18:18:09 +0200386#ifdef CONFIG_PM
Frederic Danis118612f2015-08-11 16:35:38 +0200387 dev->hu = hu;
388#endif
Frederic Danis0395ffc2015-08-11 16:35:35 +0200389 break;
390 }
391 }
392
Johan Hovold95065a62017-03-29 18:15:27 +0200393out:
Hans de Goede8a920562017-10-04 20:43:43 +0200394 if (bcm->dev) {
395 hu->init_speed = bcm->dev->init_speed;
396 hu->oper_speed = bcm->dev->oper_speed;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100397 err = bcm_gpio_set_power(bcm->dev, true);
398 if (err)
399 goto err_unset_hu;
Hans de Goede8a920562017-10-04 20:43:43 +0200400 }
401
402 mutex_unlock(&bcm_device_lock);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700403 return 0;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100404
405err_unset_hu:
406#ifdef CONFIG_PM
407 bcm->dev->hu = NULL;
408#endif
409err_free:
410 mutex_unlock(&bcm_device_lock);
411 hu->priv = NULL;
412 kfree(bcm);
413 return err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700414}
415
416static int bcm_close(struct hci_uart *hu)
417{
418 struct bcm_data *bcm = hu->priv;
Hans de Goede8a920562017-10-04 20:43:43 +0200419 struct bcm_device *bdev = NULL;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100420 int err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700421
Frederic Danis65ad07c2015-09-01 12:13:36 +0200422 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700423
Frederic Danis0395ffc2015-08-11 16:35:35 +0200424 /* Protect bcm->dev against removal of the device or driver */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200425 mutex_lock(&bcm_device_lock);
Hans de Goede8a920562017-10-04 20:43:43 +0200426
427 if (hu->serdev) {
428 serdev_device_close(hu->serdev);
429 bdev = serdev_device_get_drvdata(hu->serdev);
430 } else if (bcm_device_exists(bcm->dev)) {
431 bdev = bcm->dev;
432#ifdef CONFIG_PM
433 bdev->hu = NULL;
434#endif
435 }
436
437 if (bdev) {
Lukas Wunner6d83f1e2018-01-10 16:32:10 +0100438 if (IS_ENABLED(CONFIG_PM) && bdev->irq > 0) {
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200439 devm_free_irq(bdev->dev, bdev->irq, bdev);
440 device_init_wakeup(bdev->dev, false);
Lukas Wunnerf4cf6b72018-01-10 16:32:10 +0100441 pm_runtime_disable(bdev->dev);
Frederic Danis6cc43962015-09-04 15:35:44 +0200442 }
Lukas Wunner54ba69f2018-01-10 16:32:10 +0100443
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100444 err = bcm_gpio_set_power(bdev, false);
445 if (err)
446 bt_dev_err(hu->hdev, "Failed to power down");
447 else
448 pm_runtime_set_suspended(bdev->dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200449 }
Frederic Danisbb3ea162015-09-01 12:13:35 +0200450 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200451
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700452 skb_queue_purge(&bcm->txq);
453 kfree_skb(bcm->rx_skb);
454 kfree(bcm);
455
456 hu->priv = NULL;
457 return 0;
458}
459
460static int bcm_flush(struct hci_uart *hu)
461{
462 struct bcm_data *bcm = hu->priv;
463
Frederic Danis65ad07c2015-09-01 12:13:36 +0200464 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700465
466 skb_queue_purge(&bcm->txq);
467
468 return 0;
469}
470
471static int bcm_setup(struct hci_uart *hu)
472{
Frederic Danis6cc43962015-09-04 15:35:44 +0200473 struct bcm_data *bcm = hu->priv;
Frederic Danis6be09b42015-05-28 11:25:05 +0200474 char fw_name[64];
475 const struct firmware *fw;
Frederic Danis960ef1d2015-06-18 12:43:27 +0200476 unsigned int speed;
Frederic Danis6be09b42015-05-28 11:25:05 +0200477 int err;
478
Frederic Danis65ad07c2015-09-01 12:13:36 +0200479 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700480
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200481 hu->hdev->set_diag = bcm_set_diag;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700482 hu->hdev->set_bdaddr = btbcm_set_bdaddr;
483
Frederic Danis6be09b42015-05-28 11:25:05 +0200484 err = btbcm_initialize(hu->hdev, fw_name, sizeof(fw_name));
485 if (err)
486 return err;
487
488 err = request_firmware(&fw, fw_name, &hu->hdev->dev);
489 if (err < 0) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200490 bt_dev_info(hu->hdev, "BCM: Patch %s not found", fw_name);
Frederic Danis6be09b42015-05-28 11:25:05 +0200491 return 0;
492 }
493
494 err = btbcm_patchram(hu->hdev, fw);
495 if (err) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200496 bt_dev_info(hu->hdev, "BCM: Patch failed (%d)", err);
Frederic Danis6be09b42015-05-28 11:25:05 +0200497 goto finalize;
498 }
499
Frederic Danis960ef1d2015-06-18 12:43:27 +0200500 /* Init speed if any */
501 if (hu->init_speed)
502 speed = hu->init_speed;
503 else if (hu->proto->init_speed)
504 speed = hu->proto->init_speed;
505 else
506 speed = 0;
Frederic Danis6be09b42015-05-28 11:25:05 +0200507
Frederic Danis960ef1d2015-06-18 12:43:27 +0200508 if (speed)
Loic Poulain33cd1492017-08-17 19:59:51 +0200509 host_set_baudrate(hu, speed);
Frederic Danis960ef1d2015-06-18 12:43:27 +0200510
511 /* Operational speed if any */
512 if (hu->oper_speed)
513 speed = hu->oper_speed;
514 else if (hu->proto->oper_speed)
515 speed = hu->proto->oper_speed;
516 else
517 speed = 0;
518
519 if (speed) {
520 err = bcm_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200521 if (!err)
Loic Poulain33cd1492017-08-17 19:59:51 +0200522 host_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200523 }
524
Frederic Danis6be09b42015-05-28 11:25:05 +0200525finalize:
526 release_firmware(fw);
527
528 err = btbcm_finalize(hu->hdev);
Frederic Danis6cc43962015-09-04 15:35:44 +0200529 if (err)
530 return err;
531
Loic Poulaincdd24a22017-06-27 19:15:07 +0200532 if (!bcm_request_irq(bcm))
Frederic Danis6cc43962015-09-04 15:35:44 +0200533 err = bcm_setup_sleep(hu);
Frederic Danis6be09b42015-05-28 11:25:05 +0200534
535 return err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700536}
537
Marcel Holtmann94c58132015-10-07 19:12:54 +0200538#define BCM_RECV_LM_DIAG \
539 .type = BCM_LM_DIAG_PKT, \
540 .hlen = BCM_LM_DIAG_SIZE, \
541 .loff = 0, \
542 .lsize = 0, \
543 .maxlen = BCM_LM_DIAG_SIZE
544
Marcel Holtmann01d5e442017-08-17 21:41:09 +0200545#define BCM_RECV_NULL \
546 .type = BCM_NULL_PKT, \
547 .hlen = BCM_NULL_SIZE, \
548 .loff = 0, \
549 .lsize = 0, \
550 .maxlen = BCM_NULL_SIZE
551
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700552static const struct h4_recv_pkt bcm_recv_pkts[] = {
Marcel Holtmann94c58132015-10-07 19:12:54 +0200553 { H4_RECV_ACL, .recv = hci_recv_frame },
554 { H4_RECV_SCO, .recv = hci_recv_frame },
555 { H4_RECV_EVENT, .recv = hci_recv_frame },
556 { BCM_RECV_LM_DIAG, .recv = hci_recv_diag },
Marcel Holtmann01d5e442017-08-17 21:41:09 +0200557 { BCM_RECV_NULL, .recv = hci_recv_diag },
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700558};
559
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700560static int bcm_recv(struct hci_uart *hu, const void *data, int count)
561{
562 struct bcm_data *bcm = hu->priv;
563
564 if (!test_bit(HCI_UART_REGISTERED, &hu->flags))
565 return -EUNATCH;
566
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700567 bcm->rx_skb = h4_recv_buf(hu->hdev, bcm->rx_skb, data, count,
568 bcm_recv_pkts, ARRAY_SIZE(bcm_recv_pkts));
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700569 if (IS_ERR(bcm->rx_skb)) {
570 int err = PTR_ERR(bcm->rx_skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200571 bt_dev_err(hu->hdev, "Frame reassembly failed (%d)", err);
Chan-yeol Park37134162015-06-17 21:10:39 +0900572 bcm->rx_skb = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700573 return err;
Frederic Danise88ab302015-09-23 18:18:11 +0200574 } else if (!bcm->rx_skb) {
575 /* Delay auto-suspend when receiving completed packet */
576 mutex_lock(&bcm_device_lock);
Lukas Wunner43fff7682017-12-26 17:07:34 +0200577 if (bcm->dev && bcm_device_exists(bcm->dev))
578 pm_request_resume(bcm->dev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200579 mutex_unlock(&bcm_device_lock);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700580 }
581
582 return count;
583}
584
585static int bcm_enqueue(struct hci_uart *hu, struct sk_buff *skb)
586{
587 struct bcm_data *bcm = hu->priv;
588
Frederic Danis65ad07c2015-09-01 12:13:36 +0200589 bt_dev_dbg(hu->hdev, "hu %p skb %p", hu, skb);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700590
591 /* Prepend skb with frame type */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100592 memcpy(skb_push(skb, 1), &hci_skb_pkt_type(skb), 1);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700593 skb_queue_tail(&bcm->txq, skb);
594
595 return 0;
596}
597
598static struct sk_buff *bcm_dequeue(struct hci_uart *hu)
599{
600 struct bcm_data *bcm = hu->priv;
Frederic Danise88ab302015-09-23 18:18:11 +0200601 struct sk_buff *skb = NULL;
602 struct bcm_device *bdev = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700603
Frederic Danise88ab302015-09-23 18:18:11 +0200604 mutex_lock(&bcm_device_lock);
605
606 if (bcm_device_exists(bcm->dev)) {
607 bdev = bcm->dev;
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200608 pm_runtime_get_sync(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200609 /* Shall be resumed here */
610 }
611
612 skb = skb_dequeue(&bcm->txq);
613
614 if (bdev) {
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200615 pm_runtime_mark_last_busy(bdev->dev);
616 pm_runtime_put_autosuspend(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200617 }
618
619 mutex_unlock(&bcm_device_lock);
620
621 return skb;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700622}
623
Frederic Danisb7a622a2015-09-23 18:18:09 +0200624#ifdef CONFIG_PM
625static int bcm_suspend_device(struct device *dev)
Frederic Danis118612f2015-08-11 16:35:38 +0200626{
Hans de Goede78277d72017-10-04 20:43:42 +0200627 struct bcm_device *bdev = dev_get_drvdata(dev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100628 int err;
Frederic Danis118612f2015-08-11 16:35:38 +0200629
Frederic Danisb7a622a2015-09-23 18:18:09 +0200630 bt_dev_dbg(bdev, "");
Frederic Danis118612f2015-08-11 16:35:38 +0200631
Frederic Danisb7a622a2015-09-23 18:18:09 +0200632 if (!bdev->is_suspended && bdev->hu) {
Frederic Danis118612f2015-08-11 16:35:38 +0200633 hci_uart_set_flow_control(bdev->hu, true);
634
Frederic Danisb7a622a2015-09-23 18:18:09 +0200635 /* Once this returns, driver suspends BT via GPIO */
Frederic Danis118612f2015-08-11 16:35:38 +0200636 bdev->is_suspended = true;
637 }
638
639 /* Suspend the device */
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100640 err = bdev->set_device_wakeup(bdev, false);
641 if (err) {
642 if (bdev->is_suspended && bdev->hu) {
643 bdev->is_suspended = false;
644 hci_uart_set_flow_control(bdev->hu, false);
645 }
646 return -EBUSY;
647 }
648
Lukas Wunner3e81a4c2018-01-10 16:32:10 +0100649 bt_dev_dbg(bdev, "suspend, delaying 15 ms");
650 mdelay(15);
Frederic Danis118612f2015-08-11 16:35:38 +0200651
Frederic Danisb7a622a2015-09-23 18:18:09 +0200652 return 0;
653}
654
655static int bcm_resume_device(struct device *dev)
656{
Hans de Goede78277d72017-10-04 20:43:42 +0200657 struct bcm_device *bdev = dev_get_drvdata(dev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100658 int err;
Frederic Danisb7a622a2015-09-23 18:18:09 +0200659
660 bt_dev_dbg(bdev, "");
661
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100662 err = bdev->set_device_wakeup(bdev, true);
663 if (err) {
664 dev_err(dev, "Failed to power up\n");
665 return err;
666 }
667
Lukas Wunner3e81a4c2018-01-10 16:32:10 +0100668 bt_dev_dbg(bdev, "resume, delaying 15 ms");
669 mdelay(15);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200670
671 /* When this executes, the device has woken up already */
672 if (bdev->is_suspended && bdev->hu) {
673 bdev->is_suspended = false;
674
675 hci_uart_set_flow_control(bdev->hu, false);
676 }
677
678 return 0;
679}
680#endif
681
682#ifdef CONFIG_PM_SLEEP
Hans de Goede8a920562017-10-04 20:43:43 +0200683/* suspend callback */
Frederic Danisb7a622a2015-09-23 18:18:09 +0200684static int bcm_suspend(struct device *dev)
685{
Hans de Goede78277d72017-10-04 20:43:42 +0200686 struct bcm_device *bdev = dev_get_drvdata(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200687 int error;
688
689 bt_dev_dbg(bdev, "suspend: is_suspended %d", bdev->is_suspended);
690
Hans de Goede8a920562017-10-04 20:43:43 +0200691 /*
692 * When used with a device instantiated as platform_device, bcm_suspend
693 * can be called at any time as long as the platform device is bound,
694 * so it should use bcm_device_lock to protect access to hci_uart
Frederic Danisb7a622a2015-09-23 18:18:09 +0200695 * and device_wake-up GPIO.
696 */
697 mutex_lock(&bcm_device_lock);
698
699 if (!bdev->hu)
700 goto unlock;
701
Frederic Danise88ab302015-09-23 18:18:11 +0200702 if (pm_runtime_active(dev))
703 bcm_suspend_device(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200704
Ronald Tschalär4a59f1f2018-01-10 16:32:10 +0100705 if (device_may_wakeup(dev) && bdev->irq > 0) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200706 error = enable_irq_wake(bdev->irq);
707 if (!error)
708 bt_dev_dbg(bdev, "BCM irq: enabled");
709 }
710
Frederic Danis917522a2015-08-28 15:44:00 +0200711unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200712 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200713
Frederic Danis118612f2015-08-11 16:35:38 +0200714 return 0;
715}
716
Hans de Goede8a920562017-10-04 20:43:43 +0200717/* resume callback */
Frederic Danis118612f2015-08-11 16:35:38 +0200718static int bcm_resume(struct device *dev)
719{
Hans de Goede78277d72017-10-04 20:43:42 +0200720 struct bcm_device *bdev = dev_get_drvdata(dev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100721 int err = 0;
Frederic Danis118612f2015-08-11 16:35:38 +0200722
Frederic Danis65ad07c2015-09-01 12:13:36 +0200723 bt_dev_dbg(bdev, "resume: is_suspended %d", bdev->is_suspended);
Frederic Danis118612f2015-08-11 16:35:38 +0200724
Hans de Goede8a920562017-10-04 20:43:43 +0200725 /*
726 * When used with a device instantiated as platform_device, bcm_resume
727 * can be called at any time as long as platform device is bound,
728 * so it should use bcm_device_lock to protect access to hci_uart
Frederic Danisb7a622a2015-09-23 18:18:09 +0200729 * and device_wake-up GPIO.
730 */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200731 mutex_lock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200732
733 if (!bdev->hu)
734 goto unlock;
735
Ronald Tschalär4a59f1f2018-01-10 16:32:10 +0100736 if (device_may_wakeup(dev) && bdev->irq > 0) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200737 disable_irq_wake(bdev->irq);
738 bt_dev_dbg(bdev, "BCM irq: disabled");
739 }
740
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100741 err = bcm_resume_device(dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200742
Frederic Danis917522a2015-08-28 15:44:00 +0200743unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200744 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200745
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100746 if (!err) {
747 pm_runtime_disable(dev);
748 pm_runtime_set_active(dev);
749 pm_runtime_enable(dev);
750 }
Frederic Danise88ab302015-09-23 18:18:11 +0200751
Frederic Danis118612f2015-08-11 16:35:38 +0200752 return 0;
753}
754#endif
755
Daniel Drake89ab37b2017-01-05 11:10:54 -0600756static const struct acpi_gpio_params int_last_device_wakeup_gpios = { 0, 0, false };
757static const struct acpi_gpio_params int_last_shutdown_gpios = { 1, 0, false };
758static const struct acpi_gpio_params int_last_host_wakeup_gpios = { 2, 0, false };
Frederic Danis0395ffc2015-08-11 16:35:35 +0200759
Daniel Drake89ab37b2017-01-05 11:10:54 -0600760static const struct acpi_gpio_mapping acpi_bcm_int_last_gpios[] = {
761 { "device-wakeup-gpios", &int_last_device_wakeup_gpios, 1 },
762 { "shutdown-gpios", &int_last_shutdown_gpios, 1 },
763 { "host-wakeup-gpios", &int_last_host_wakeup_gpios, 1 },
764 { },
765};
766
767static const struct acpi_gpio_params int_first_host_wakeup_gpios = { 0, 0, false };
768static const struct acpi_gpio_params int_first_device_wakeup_gpios = { 1, 0, false };
769static const struct acpi_gpio_params int_first_shutdown_gpios = { 2, 0, false };
770
771static const struct acpi_gpio_mapping acpi_bcm_int_first_gpios[] = {
772 { "device-wakeup-gpios", &int_first_device_wakeup_gpios, 1 },
773 { "shutdown-gpios", &int_first_shutdown_gpios, 1 },
774 { "host-wakeup-gpios", &int_first_host_wakeup_gpios, 1 },
Frederic Danis0395ffc2015-08-11 16:35:35 +0200775 { },
776};
777
Frederic Danis50d78bc2015-08-12 12:46:01 +0200778#ifdef CONFIG_ACPI
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200779/* IRQ polarity of some chipsets are not defined correctly in ACPI table. */
Hans de Goede227630c2017-10-04 20:43:36 +0200780static const struct dmi_system_id bcm_active_low_irq_dmi_table[] = {
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200781 {
782 .ident = "Asus T100TA",
783 .matches = {
784 DMI_EXACT_MATCH(DMI_SYS_VENDOR,
785 "ASUSTeK COMPUTER INC."),
786 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100TA"),
787 },
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200788 },
Hans de Goedec4c285d2017-06-29 14:21:32 +0200789 {
790 .ident = "Asus T100CHI",
791 .matches = {
792 DMI_EXACT_MATCH(DMI_SYS_VENDOR,
793 "ASUSTeK COMPUTER INC."),
794 DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "T100CHI"),
795 },
Hans de Goedec4c285d2017-06-29 14:21:32 +0200796 },
Jérôme de Bretagne5e2bd932016-10-09 15:51:05 +0200797 { /* Handle ThinkPad 8 tablets with BCM2E55 chipset ACPI ID */
798 .ident = "Lenovo ThinkPad 8",
799 .matches = {
800 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "LENOVO"),
801 DMI_EXACT_MATCH(DMI_PRODUCT_VERSION, "ThinkPad 8"),
802 },
Jérôme de Bretagne5e2bd932016-10-09 15:51:05 +0200803 },
Ian W MORRISON1bdb68b2017-10-07 17:15:25 +1100804 {
805 .ident = "MINIX Z83-4",
806 .matches = {
807 DMI_EXACT_MATCH(DMI_SYS_VENDOR, "MINIX"),
808 DMI_MATCH(DMI_PRODUCT_NAME, "Z83-4"),
809 },
810 },
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200811 { }
812};
813
Frederic Danisae056902015-08-11 16:35:37 +0200814static int bcm_resource(struct acpi_resource *ares, void *data)
815{
816 struct bcm_device *dev = data;
Frederic Danis6cc43962015-09-04 15:35:44 +0200817 struct acpi_resource_extended_irq *irq;
818 struct acpi_resource_gpio *gpio;
819 struct acpi_resource_uart_serialbus *sb;
Frederic Danisae056902015-08-11 16:35:37 +0200820
Frederic Danis6cc43962015-09-04 15:35:44 +0200821 switch (ares->type) {
822 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
823 irq = &ares->data.extended_irq;
Hans de Goede227630c2017-10-04 20:43:36 +0200824 dev->irq_active_low = irq->polarity == ACPI_ACTIVE_LOW;
Frederic Danis6cc43962015-09-04 15:35:44 +0200825 break;
Frederic Danisae056902015-08-11 16:35:37 +0200826
Frederic Danis6cc43962015-09-04 15:35:44 +0200827 case ACPI_RESOURCE_TYPE_GPIO:
828 gpio = &ares->data.gpio;
829 if (gpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT)
Hans de Goede227630c2017-10-04 20:43:36 +0200830 dev->irq_active_low = gpio->polarity == ACPI_ACTIVE_LOW;
Frederic Danis6cc43962015-09-04 15:35:44 +0200831 break;
832
833 case ACPI_RESOURCE_TYPE_SERIAL_BUS:
Frederic Danisae056902015-08-11 16:35:37 +0200834 sb = &ares->data.uart_serial_bus;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200835 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_UART) {
Frederic Danisae056902015-08-11 16:35:37 +0200836 dev->init_speed = sb->default_baud_rate;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200837 dev->oper_speed = 4000000;
838 }
Frederic Danis6cc43962015-09-04 15:35:44 +0200839 break;
840
841 default:
842 break;
Frederic Danisae056902015-08-11 16:35:37 +0200843 }
844
Hans de Goede9d54fd62017-10-04 20:43:41 +0200845 return 0;
Frederic Danisae056902015-08-11 16:35:37 +0200846}
Andy Shevchenko212d71832017-03-10 14:28:20 +0200847#endif /* CONFIG_ACPI */
Frederic Danisae056902015-08-11 16:35:37 +0200848
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100849static int bcm_gpio_set_device_wakeup(struct bcm_device *dev, bool awake)
850{
851 gpiod_set_value(dev->device_wakeup, awake);
852 return 0;
853}
854
855static int bcm_gpio_set_shutdown(struct bcm_device *dev, bool powered)
856{
857 gpiod_set_value(dev->shutdown, powered);
858 return 0;
859}
860
Hans de Goede42ef18f2017-10-04 20:43:40 +0200861static int bcm_get_resources(struct bcm_device *dev)
Frederic Danis0395ffc2015-08-11 16:35:35 +0200862{
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200863 dev->name = dev_name(dev->dev);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200864
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200865 dev->clk = devm_clk_get(dev->dev, NULL);
Daniel Drake89ab37b2017-01-05 11:10:54 -0600866
Lukas Wunner3e81a4c2018-01-10 16:32:10 +0100867 dev->device_wakeup = devm_gpiod_get(dev->dev, "device-wakeup",
868 GPIOD_OUT_LOW);
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200869 if (IS_ERR(dev->device_wakeup))
870 return PTR_ERR(dev->device_wakeup);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200871
Lukas Wunner3e81a4c2018-01-10 16:32:10 +0100872 dev->shutdown = devm_gpiod_get(dev->dev, "shutdown", GPIOD_OUT_LOW);
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200873 if (IS_ERR(dev->shutdown))
874 return PTR_ERR(dev->shutdown);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200875
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100876 dev->set_device_wakeup = bcm_gpio_set_device_wakeup;
877 dev->set_shutdown = bcm_gpio_set_shutdown;
878
Frederic Danis6cc43962015-09-04 15:35:44 +0200879 /* IRQ can be declared in ACPI table as Interrupt or GpioInt */
Frederic Danis6cc43962015-09-04 15:35:44 +0200880 if (dev->irq <= 0) {
881 struct gpio_desc *gpio;
882
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200883 gpio = devm_gpiod_get_optional(dev->dev, "host-wakeup",
Frederic Danis6cc43962015-09-04 15:35:44 +0200884 GPIOD_IN);
885 if (IS_ERR(gpio))
886 return PTR_ERR(gpio);
887
888 dev->irq = gpiod_to_irq(gpio);
889 }
890
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200891 dev_info(dev->dev, "BCM irq: %d\n", dev->irq);
Andy Shevchenko212d71832017-03-10 14:28:20 +0200892 return 0;
893}
894
895#ifdef CONFIG_ACPI
896static int bcm_acpi_probe(struct bcm_device *dev)
897{
Andy Shevchenko212d71832017-03-10 14:28:20 +0200898 LIST_HEAD(resources);
899 const struct dmi_system_id *dmi_id;
900 const struct acpi_gpio_mapping *gpio_mapping = acpi_bcm_int_last_gpios;
901 const struct acpi_device_id *id;
Hans de Goede9d54fd62017-10-04 20:43:41 +0200902 struct resource_entry *entry;
Andy Shevchenko212d71832017-03-10 14:28:20 +0200903 int ret;
904
905 /* Retrieve GPIO data */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200906 id = acpi_match_device(dev->dev->driver->acpi_match_table, dev->dev);
Andy Shevchenko212d71832017-03-10 14:28:20 +0200907 if (id)
908 gpio_mapping = (const struct acpi_gpio_mapping *) id->driver_data;
909
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200910 ret = devm_acpi_dev_add_driver_gpios(dev->dev, gpio_mapping);
Andy Shevchenko212d71832017-03-10 14:28:20 +0200911 if (ret)
912 return ret;
913
Frederic Danisae056902015-08-11 16:35:37 +0200914 /* Retrieve UART ACPI info */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200915 ret = acpi_dev_get_resources(ACPI_COMPANION(dev->dev),
Jarkko Nikulae98d6d62015-09-30 16:26:45 +0300916 &resources, bcm_resource, dev);
Jarkko Nikula5be00282015-09-30 16:26:42 +0300917 if (ret < 0)
918 return ret;
Hans de Goede9d54fd62017-10-04 20:43:41 +0200919
920 resource_list_for_each_entry(entry, &resources) {
921 if (resource_type(entry->res) == IORESOURCE_IRQ) {
922 dev->irq = entry->res->start;
923 break;
924 }
925 }
Jarkko Nikula09dbf1b2015-09-30 16:26:41 +0300926 acpi_dev_free_resource_list(&resources);
Frederic Danisae056902015-08-11 16:35:37 +0200927
Hans de Goede227630c2017-10-04 20:43:36 +0200928 dmi_id = dmi_first_match(bcm_active_low_irq_dmi_table);
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200929 if (dmi_id) {
Ian W MORRISONe8bfe862017-10-07 17:16:08 +1100930 dev_warn(dev->dev, "%s: Overwriting IRQ polarity to active low",
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200931 dmi_id->ident);
Hans de Goede227630c2017-10-04 20:43:36 +0200932 dev->irq_active_low = true;
Frederic Danis5cebdfe2015-09-23 18:18:08 +0200933 }
934
Frederic Danis0395ffc2015-08-11 16:35:35 +0200935 return 0;
936}
Frederic Danis50d78bc2015-08-12 12:46:01 +0200937#else
938static int bcm_acpi_probe(struct bcm_device *dev)
939{
940 return -EINVAL;
941}
942#endif /* CONFIG_ACPI */
Frederic Danis0395ffc2015-08-11 16:35:35 +0200943
Hans de Goede8a920562017-10-04 20:43:43 +0200944static int bcm_of_probe(struct bcm_device *bdev)
945{
946 device_property_read_u32(bdev->dev, "max-speed", &bdev->oper_speed);
947 return 0;
948}
949
Frederic Danis0395ffc2015-08-11 16:35:35 +0200950static int bcm_probe(struct platform_device *pdev)
951{
952 struct bcm_device *dev;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200953 int ret;
954
955 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
956 if (!dev)
957 return -ENOMEM;
958
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200959 dev->dev = &pdev->dev;
Hans de Goede4a56f892017-10-04 20:43:38 +0200960 dev->irq = platform_get_irq(pdev, 0);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200961
Hans de Goede201762e2017-10-04 20:43:37 +0200962 if (has_acpi_companion(&pdev->dev)) {
Andy Shevchenko212d71832017-03-10 14:28:20 +0200963 ret = bcm_acpi_probe(dev);
Hans de Goede201762e2017-10-04 20:43:37 +0200964 if (ret)
965 return ret;
966 }
967
Hans de Goede42ef18f2017-10-04 20:43:40 +0200968 ret = bcm_get_resources(dev);
Jarkko Nikula4d1c4552015-09-30 16:26:44 +0300969 if (ret)
970 return ret;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200971
972 platform_set_drvdata(pdev, dev);
973
974 dev_info(&pdev->dev, "%s device registered.\n", dev->name);
975
976 /* Place this instance on the device list */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200977 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200978 list_add_tail(&dev->list, &bcm_device_list);
Frederic Danisbb3ea162015-09-01 12:13:35 +0200979 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200980
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100981 ret = bcm_gpio_set_power(dev, false);
982 if (ret)
983 dev_err(&pdev->dev, "Failed to power down\n");
Frederic Danis0395ffc2015-08-11 16:35:35 +0200984
985 return 0;
986}
987
988static int bcm_remove(struct platform_device *pdev)
989{
990 struct bcm_device *dev = platform_get_drvdata(pdev);
991
Frederic Danisbb3ea162015-09-01 12:13:35 +0200992 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200993 list_del(&dev->list);
Frederic Danisbb3ea162015-09-01 12:13:35 +0200994 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200995
Frederic Danis0395ffc2015-08-11 16:35:35 +0200996 dev_info(&pdev->dev, "%s device unregistered.\n", dev->name);
997
998 return 0;
999}
1000
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001001static const struct hci_uart_proto bcm_proto = {
1002 .id = HCI_UART_BCM,
Loic Poulain143f0a22016-09-19 12:05:12 +02001003 .name = "Broadcom",
Marcel Holtmannaee61f72015-10-20 21:30:45 +02001004 .manufacturer = 15,
Frederic Danis61b2fc22015-06-09 16:15:37 +02001005 .init_speed = 115200,
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001006 .open = bcm_open,
1007 .close = bcm_close,
1008 .flush = bcm_flush,
1009 .setup = bcm_setup,
Frederic Danis61b2fc22015-06-09 16:15:37 +02001010 .set_baudrate = bcm_set_baudrate,
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001011 .recv = bcm_recv,
1012 .enqueue = bcm_enqueue,
1013 .dequeue = bcm_dequeue,
1014};
1015
Frederic Danis0395ffc2015-08-11 16:35:35 +02001016#ifdef CONFIG_ACPI
1017static const struct acpi_device_id bcm_acpi_match[] = {
Daniel Drake89ab37b2017-01-05 11:10:54 -06001018 { "BCM2E1A", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1019 { "BCM2E39", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1020 { "BCM2E3A", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1021 { "BCM2E3D", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1022 { "BCM2E3F", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1023 { "BCM2E40", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1024 { "BCM2E54", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1025 { "BCM2E55", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1026 { "BCM2E64", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1027 { "BCM2E65", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1028 { "BCM2E67", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1029 { "BCM2E71", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
Hans de Goedec23fae12017-11-22 14:37:28 +01001030 { "BCM2E72", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
Daniel Drake89ab37b2017-01-05 11:10:54 -06001031 { "BCM2E7B", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
1032 { "BCM2E7C", (kernel_ulong_t)&acpi_bcm_int_last_gpios },
Hans de Goede61d220a2017-10-13 17:54:02 +02001033 { "BCM2E7E", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
Daniel Drake89ab37b2017-01-05 11:10:54 -06001034 { "BCM2E95", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
1035 { "BCM2E96", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
Ian W MORRISON1bdb68b2017-10-07 17:15:25 +11001036 { "BCM2EA4", (kernel_ulong_t)&acpi_bcm_int_first_gpios },
Frederic Danis0395ffc2015-08-11 16:35:35 +02001037 { },
1038};
1039MODULE_DEVICE_TABLE(acpi, bcm_acpi_match);
1040#endif
1041
Hans de Goede8a920562017-10-04 20:43:43 +02001042/* suspend and resume callbacks */
Frederic Danise88ab302015-09-23 18:18:11 +02001043static const struct dev_pm_ops bcm_pm_ops = {
1044 SET_SYSTEM_SLEEP_PM_OPS(bcm_suspend, bcm_resume)
1045 SET_RUNTIME_PM_OPS(bcm_suspend_device, bcm_resume_device, NULL)
1046};
Frederic Danis118612f2015-08-11 16:35:38 +02001047
Frederic Danis0395ffc2015-08-11 16:35:35 +02001048static struct platform_driver bcm_driver = {
1049 .probe = bcm_probe,
1050 .remove = bcm_remove,
1051 .driver = {
1052 .name = "hci_bcm",
1053 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
Frederic Danis118612f2015-08-11 16:35:38 +02001054 .pm = &bcm_pm_ops,
Frederic Danis0395ffc2015-08-11 16:35:35 +02001055 },
1056};
1057
Loic Poulain33cd1492017-08-17 19:59:51 +02001058static int bcm_serdev_probe(struct serdev_device *serdev)
1059{
Hans de Goede8a920562017-10-04 20:43:43 +02001060 struct bcm_device *bcmdev;
Loic Poulain33cd1492017-08-17 19:59:51 +02001061 int err;
1062
1063 bcmdev = devm_kzalloc(&serdev->dev, sizeof(*bcmdev), GFP_KERNEL);
1064 if (!bcmdev)
1065 return -ENOMEM;
1066
Hans de Goede8a920562017-10-04 20:43:43 +02001067 bcmdev->dev = &serdev->dev;
Arnd Bergmann81a19052017-10-11 15:46:21 +02001068#ifdef CONFIG_PM
Hans de Goede8a920562017-10-04 20:43:43 +02001069 bcmdev->hu = &bcmdev->serdev_hu;
Arnd Bergmann81a19052017-10-11 15:46:21 +02001070#endif
Hans de Goede8a920562017-10-04 20:43:43 +02001071 bcmdev->serdev_hu.serdev = serdev;
Loic Poulain33cd1492017-08-17 19:59:51 +02001072 serdev_device_set_drvdata(serdev, bcmdev);
1073
Hans de Goede8a920562017-10-04 20:43:43 +02001074 if (has_acpi_companion(&serdev->dev))
1075 err = bcm_acpi_probe(bcmdev);
1076 else
1077 err = bcm_of_probe(bcmdev);
1078 if (err)
1079 return err;
Loic Poulain33cd1492017-08-17 19:59:51 +02001080
Hans de Goede8a920562017-10-04 20:43:43 +02001081 err = bcm_get_resources(bcmdev);
1082 if (err)
1083 return err;
1084
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +01001085 err = bcm_gpio_set_power(bcmdev, false);
1086 if (err)
1087 dev_err(&serdev->dev, "Failed to power down\n");
Hans de Goede8a920562017-10-04 20:43:43 +02001088
1089 return hci_uart_register_device(&bcmdev->serdev_hu, &bcm_proto);
Loic Poulain33cd1492017-08-17 19:59:51 +02001090}
1091
1092static void bcm_serdev_remove(struct serdev_device *serdev)
1093{
Hans de Goede8a920562017-10-04 20:43:43 +02001094 struct bcm_device *bcmdev = serdev_device_get_drvdata(serdev);
Loic Poulain33cd1492017-08-17 19:59:51 +02001095
Hans de Goede8a920562017-10-04 20:43:43 +02001096 hci_uart_unregister_device(&bcmdev->serdev_hu);
Loic Poulain33cd1492017-08-17 19:59:51 +02001097}
1098
1099#ifdef CONFIG_OF
1100static const struct of_device_id bcm_bluetooth_of_match[] = {
1101 { .compatible = "brcm,bcm43438-bt" },
1102 { },
1103};
1104MODULE_DEVICE_TABLE(of, bcm_bluetooth_of_match);
1105#endif
1106
1107static struct serdev_device_driver bcm_serdev_driver = {
1108 .probe = bcm_serdev_probe,
1109 .remove = bcm_serdev_remove,
1110 .driver = {
1111 .name = "hci_uart_bcm",
1112 .of_match_table = of_match_ptr(bcm_bluetooth_of_match),
Hans de Goede8a920562017-10-04 20:43:43 +02001113 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
1114 .pm = &bcm_pm_ops,
Loic Poulain33cd1492017-08-17 19:59:51 +02001115 },
1116};
1117
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001118int __init bcm_init(void)
1119{
Loic Poulain33cd1492017-08-17 19:59:51 +02001120 /* For now, we need to keep both platform device
1121 * driver (ACPI generated) and serdev driver (DT).
1122 */
Frederic Danis0395ffc2015-08-11 16:35:35 +02001123 platform_driver_register(&bcm_driver);
Loic Poulain33cd1492017-08-17 19:59:51 +02001124 serdev_device_driver_register(&bcm_serdev_driver);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001125
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001126 return hci_uart_register_proto(&bcm_proto);
1127}
1128
1129int __exit bcm_deinit(void)
1130{
Frederic Danis0395ffc2015-08-11 16:35:35 +02001131 platform_driver_unregister(&bcm_driver);
Loic Poulain33cd1492017-08-17 19:59:51 +02001132 serdev_device_driver_unregister(&bcm_serdev_driver);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001133
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001134 return hci_uart_unregister_proto(&bcm_proto);
1135}