blob: 345d728a543488b682d6335f6364d8d5b654e832 [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")
Chen-Yu Tsai55dbfcd2018-12-17 12:04:41 +080074 * @txco_clk: external reference frequency clock used by Bluetooth device
Chen-Yu Tsai90bc07c2018-12-17 12:04:42 +080075 * @lpo_clk: external LPO clock used by Bluetooth device
76 * @clk_enabled: whether clocks are prepared and enabled
Lukas Wunnerb7c2aba2018-01-10 16:32:10 +010077 * @init_speed: default baudrate of Bluetooth device;
78 * the host UART is initially set to this baudrate so that
79 * it can configure the Bluetooth device for @oper_speed
80 * @oper_speed: preferred baudrate of Bluetooth device;
81 * set to 0 if @init_speed is already the preferred baudrate
82 * @irq: interrupt triggered by HOST_WAKE_BT pin
83 * @irq_active_low: whether @irq is active low
84 * @hu: pointer to HCI UART controller struct,
85 * used to disable flow control during runtime suspend and system sleep
86 * @is_suspended: whether flow control is currently disabled
87 */
Frederic Danis0395ffc2015-08-11 16:35:35 +020088struct bcm_device {
Hans de Goede8a920562017-10-04 20:43:43 +020089 /* Must be the first member, hci_serdev.c expects this. */
90 struct hci_uart serdev_hu;
Frederic Danis0395ffc2015-08-11 16:35:35 +020091 struct list_head list;
92
Hans de Goedec0d3ce52017-10-04 20:43:39 +020093 struct device *dev;
Frederic Danis0395ffc2015-08-11 16:35:35 +020094
95 const char *name;
96 struct gpio_desc *device_wakeup;
97 struct gpio_desc *shutdown;
Lukas Wunner8353b4a2018-01-10 16:32:10 +010098 int (*set_device_wakeup)(struct bcm_device *, bool);
99 int (*set_shutdown)(struct bcm_device *, bool);
Lukas Wunner4c331622018-01-10 16:32:10 +0100100#ifdef CONFIG_ACPI
101 acpi_handle btlp, btpu, btpd;
Hans de Goedea4de1562018-03-16 21:28:11 +0100102 int gpio_count;
103 int gpio_int_idx;
Lukas Wunner4c331622018-01-10 16:32:10 +0100104#endif
Frederic Danis0395ffc2015-08-11 16:35:35 +0200105
Chen-Yu Tsai55dbfcd2018-12-17 12:04:41 +0800106 struct clk *txco_clk;
Chen-Yu Tsai90bc07c2018-12-17 12:04:42 +0800107 struct clk *lpo_clk;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200108 bool clk_enabled;
Frederic Danisae056902015-08-11 16:35:37 +0200109
110 u32 init_speed;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200111 u32 oper_speed;
Frederic Danis6cc43962015-09-04 15:35:44 +0200112 int irq;
Hans de Goede227630c2017-10-04 20:43:36 +0200113 bool irq_active_low;
Frederic Danis118612f2015-08-11 16:35:38 +0200114
Frederic Danisb7a622a2015-09-23 18:18:09 +0200115#ifdef CONFIG_PM
Frederic Danis118612f2015-08-11 16:35:38 +0200116 struct hci_uart *hu;
Lukas Wunnerb7c2aba2018-01-10 16:32:10 +0100117 bool is_suspended;
Frederic Danis118612f2015-08-11 16:35:38 +0200118#endif
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700119};
120
Loic Poulain33cd1492017-08-17 19:59:51 +0200121/* generic bcm uart resources */
Frederic Danis0395ffc2015-08-11 16:35:35 +0200122struct bcm_data {
123 struct sk_buff *rx_skb;
124 struct sk_buff_head txq;
125
126 struct bcm_device *dev;
127};
128
129/* List of BCM BT UART devices */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200130static DEFINE_MUTEX(bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200131static LIST_HEAD(bcm_device_list);
132
Hans de Goedee09070c2018-03-16 21:28:07 +0100133static int irq_polarity = -1;
134module_param(irq_polarity, int, 0444);
135MODULE_PARM_DESC(irq_polarity, "IRQ polarity 0: active-high 1: active-low");
136
Loic Poulain33cd1492017-08-17 19:59:51 +0200137static inline void host_set_baudrate(struct hci_uart *hu, unsigned int speed)
138{
139 if (hu->serdev)
140 serdev_device_set_baudrate(hu->serdev, speed);
141 else
142 hci_uart_set_baudrate(hu, speed);
143}
144
Frederic Danis61b2fc22015-06-09 16:15:37 +0200145static int bcm_set_baudrate(struct hci_uart *hu, unsigned int speed)
146{
147 struct hci_dev *hdev = hu->hdev;
148 struct sk_buff *skb;
149 struct bcm_update_uart_baud_rate param;
150
151 if (speed > 3000000) {
152 struct bcm_write_uart_clock_setting clock;
153
154 clock.type = BCM_UART_CLOCK_48MHZ;
155
Frederic Danis65ad07c2015-09-01 12:13:36 +0200156 bt_dev_dbg(hdev, "Set Controller clock (%d)", clock.type);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200157
158 /* This Broadcom specific command changes the UART's controller
159 * clock for baud rate > 3000000.
160 */
161 skb = __hci_cmd_sync(hdev, 0xfc45, 1, &clock, HCI_INIT_TIMEOUT);
162 if (IS_ERR(skb)) {
163 int err = PTR_ERR(skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200164 bt_dev_err(hdev, "BCM: failed to write clock (%d)",
165 err);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200166 return err;
167 }
168
169 kfree_skb(skb);
170 }
171
Frederic Danis65ad07c2015-09-01 12:13:36 +0200172 bt_dev_dbg(hdev, "Set Controller UART speed to %d bit/s", speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200173
174 param.zero = cpu_to_le16(0);
175 param.baud_rate = cpu_to_le32(speed);
176
177 /* This Broadcom specific command changes the UART's controller baud
178 * rate.
179 */
180 skb = __hci_cmd_sync(hdev, 0xfc18, sizeof(param), &param,
181 HCI_INIT_TIMEOUT);
182 if (IS_ERR(skb)) {
183 int err = PTR_ERR(skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200184 bt_dev_err(hdev, "BCM: failed to write update baudrate (%d)",
185 err);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200186 return err;
187 }
188
189 kfree_skb(skb);
190
191 return 0;
192}
193
Frederic Danis917522a2015-08-28 15:44:00 +0200194/* bcm_device_exists should be protected by bcm_device_lock */
Frederic Danis0395ffc2015-08-11 16:35:35 +0200195static bool bcm_device_exists(struct bcm_device *device)
196{
197 struct list_head *p;
198
Arnd Bergmann81a19052017-10-11 15:46:21 +0200199#ifdef CONFIG_PM
Hans de Goede8a920562017-10-04 20:43:43 +0200200 /* Devices using serdev always exist */
201 if (device && device->hu && device->hu->serdev)
202 return true;
Arnd Bergmann81a19052017-10-11 15:46:21 +0200203#endif
Hans de Goede8a920562017-10-04 20:43:43 +0200204
Frederic Danis0395ffc2015-08-11 16:35:35 +0200205 list_for_each(p, &bcm_device_list) {
206 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
207
208 if (device == dev)
209 return true;
210 }
211
212 return false;
213}
214
215static int bcm_gpio_set_power(struct bcm_device *dev, bool powered)
216{
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100217 int err;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200218
Chen-Yu Tsai8c089472018-12-17 12:04:40 +0800219 if (powered && !dev->clk_enabled) {
Chen-Yu Tsai90bc07c2018-12-17 12:04:42 +0800220 /* LPO clock needs to be 32.768 kHz */
221 err = clk_set_rate(dev->lpo_clk, 32768);
222 if (err) {
223 dev_err(dev->dev, "Could not set LPO clock rate\n");
224 return err;
225 }
226
227 err = clk_prepare_enable(dev->lpo_clk);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100228 if (err)
229 return err;
Chen-Yu Tsai90bc07c2018-12-17 12:04:42 +0800230
231 err = clk_prepare_enable(dev->txco_clk);
232 if (err)
233 goto err_lpo_clk_disable;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100234 }
235
236 err = dev->set_shutdown(dev, powered);
237 if (err)
Chen-Yu Tsai90bc07c2018-12-17 12:04:42 +0800238 goto err_txco_clk_disable;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100239
240 err = dev->set_device_wakeup(dev, powered);
241 if (err)
242 goto err_revert_shutdown;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200243
Chen-Yu Tsai90bc07c2018-12-17 12:04:42 +0800244 if (!powered && dev->clk_enabled) {
Chen-Yu Tsai55dbfcd2018-12-17 12:04:41 +0800245 clk_disable_unprepare(dev->txco_clk);
Chen-Yu Tsai90bc07c2018-12-17 12:04:42 +0800246 clk_disable_unprepare(dev->lpo_clk);
247 }
Frederic Danis0395ffc2015-08-11 16:35:35 +0200248
249 dev->clk_enabled = powered;
250
251 return 0;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100252
253err_revert_shutdown:
254 dev->set_shutdown(dev, !powered);
Chen-Yu Tsai90bc07c2018-12-17 12:04:42 +0800255err_txco_clk_disable:
Chen-Yu Tsai8c089472018-12-17 12:04:40 +0800256 if (powered && !dev->clk_enabled)
Chen-Yu Tsai55dbfcd2018-12-17 12:04:41 +0800257 clk_disable_unprepare(dev->txco_clk);
Chen-Yu Tsai90bc07c2018-12-17 12:04:42 +0800258err_lpo_clk_disable:
259 if (powered && !dev->clk_enabled)
260 clk_disable_unprepare(dev->lpo_clk);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100261 return err;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200262}
263
Frederic Danisb7a622a2015-09-23 18:18:09 +0200264#ifdef CONFIG_PM
Frederic Danis6cc43962015-09-04 15:35:44 +0200265static irqreturn_t bcm_host_wake(int irq, void *data)
266{
267 struct bcm_device *bdev = data;
268
269 bt_dev_dbg(bdev, "Host wake IRQ");
270
Hans de Goedeb09c6152018-03-14 23:06:02 +0100271 pm_runtime_get(bdev->dev);
272 pm_runtime_mark_last_busy(bdev->dev);
273 pm_runtime_put_autosuspend(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200274
Frederic Danis6cc43962015-09-04 15:35:44 +0200275 return IRQ_HANDLED;
276}
277
278static int bcm_request_irq(struct bcm_data *bcm)
279{
280 struct bcm_device *bdev = bcm->dev;
Loic Poulain98dc77d2017-07-04 12:57:56 +0200281 int err;
Frederic Danis6cc43962015-09-04 15:35:44 +0200282
Frederic Danis6cc43962015-09-04 15:35:44 +0200283 mutex_lock(&bcm_device_lock);
284 if (!bcm_device_exists(bdev)) {
285 err = -ENODEV;
286 goto unlock;
287 }
288
Loic Poulain98dc77d2017-07-04 12:57:56 +0200289 if (bdev->irq <= 0) {
290 err = -EOPNOTSUPP;
291 goto unlock;
Frederic Danis6cc43962015-09-04 15:35:44 +0200292 }
293
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200294 err = devm_request_irq(bdev->dev, bdev->irq, bcm_host_wake,
Hans de Goede227630c2017-10-04 20:43:36 +0200295 bdev->irq_active_low ? IRQF_TRIGGER_FALLING :
296 IRQF_TRIGGER_RISING,
297 "host_wake", bdev);
Lukas Wunner4dc27332018-01-10 16:32:10 +0100298 if (err) {
299 bdev->irq = err;
Loic Poulain98dc77d2017-07-04 12:57:56 +0200300 goto unlock;
Lukas Wunner4dc27332018-01-10 16:32:10 +0100301 }
Loic Poulain98dc77d2017-07-04 12:57:56 +0200302
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200303 device_init_wakeup(bdev->dev, true);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200304
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200305 pm_runtime_set_autosuspend_delay(bdev->dev,
Loic Poulain98dc77d2017-07-04 12:57:56 +0200306 BCM_AUTOSUSPEND_DELAY);
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200307 pm_runtime_use_autosuspend(bdev->dev);
308 pm_runtime_set_active(bdev->dev);
309 pm_runtime_enable(bdev->dev);
Loic Poulain98dc77d2017-07-04 12:57:56 +0200310
Frederic Danis6cc43962015-09-04 15:35:44 +0200311unlock:
312 mutex_unlock(&bcm_device_lock);
313
314 return err;
315}
316
317static const struct bcm_set_sleep_mode default_sleep_params = {
318 .sleep_mode = 1, /* 0=Disabled, 1=UART, 2=Reserved, 3=USB */
319 .idle_host = 2, /* idle threshold HOST, in 300ms */
320 .idle_dev = 2, /* idle threshold device, in 300ms */
321 .bt_wake_active = 1, /* BT_WAKE active mode: 1 = high, 0 = low */
322 .host_wake_active = 0, /* HOST_WAKE active mode: 1 = high, 0 = low */
323 .allow_host_sleep = 1, /* Allow host sleep in SCO flag */
Frederic Danise88ab302015-09-23 18:18:11 +0200324 .combine_modes = 1, /* Combine sleep and LPM flag */
Frederic Danis6cc43962015-09-04 15:35:44 +0200325 .tristate_control = 0, /* Allow tri-state control of UART tx flag */
326 /* Irrelevant USB flags */
327 .usb_auto_sleep = 0,
328 .usb_resume_timeout = 0,
Lukas Wunnerff875962018-01-10 16:32:10 +0100329 .break_to_host = 0,
Hans de Goedee07c99b2018-03-14 23:06:03 +0100330 .pulsed_host_wake = 1,
Frederic Danis6cc43962015-09-04 15:35:44 +0200331};
332
333static int bcm_setup_sleep(struct hci_uart *hu)
334{
335 struct bcm_data *bcm = hu->priv;
336 struct sk_buff *skb;
337 struct bcm_set_sleep_mode sleep_params = default_sleep_params;
338
Hans de Goede227630c2017-10-04 20:43:36 +0200339 sleep_params.host_wake_active = !bcm->dev->irq_active_low;
Frederic Danis6cc43962015-09-04 15:35:44 +0200340
341 skb = __hci_cmd_sync(hu->hdev, 0xfc27, sizeof(sleep_params),
342 &sleep_params, HCI_INIT_TIMEOUT);
343 if (IS_ERR(skb)) {
344 int err = PTR_ERR(skb);
345 bt_dev_err(hu->hdev, "Sleep VSC failed (%d)", err);
346 return err;
347 }
348 kfree_skb(skb);
349
350 bt_dev_dbg(hu->hdev, "Set Sleep Parameters VSC succeeded");
351
352 return 0;
353}
354#else
355static inline int bcm_request_irq(struct bcm_data *bcm) { return 0; }
356static inline int bcm_setup_sleep(struct hci_uart *hu) { return 0; }
357#endif
358
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200359static int bcm_set_diag(struct hci_dev *hdev, bool enable)
360{
361 struct hci_uart *hu = hci_get_drvdata(hdev);
362 struct bcm_data *bcm = hu->priv;
363 struct sk_buff *skb;
364
365 if (!test_bit(HCI_RUNNING, &hdev->flags))
366 return -ENETDOWN;
367
368 skb = bt_skb_alloc(3, GFP_KERNEL);
Dan Carpentera1857392015-10-22 12:06:09 +0300369 if (!skb)
370 return -ENOMEM;
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200371
Johannes Berg634fef62017-06-16 14:29:24 +0200372 skb_put_u8(skb, BCM_LM_DIAG_PKT);
373 skb_put_u8(skb, 0xf0);
374 skb_put_u8(skb, enable);
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200375
376 skb_queue_tail(&bcm->txq, skb);
377 hci_uart_tx_wakeup(hu);
378
379 return 0;
380}
381
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700382static int bcm_open(struct hci_uart *hu)
383{
384 struct bcm_data *bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200385 struct list_head *p;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100386 int err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700387
Frederic Danis65ad07c2015-09-01 12:13:36 +0200388 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700389
390 bcm = kzalloc(sizeof(*bcm), GFP_KERNEL);
391 if (!bcm)
392 return -ENOMEM;
393
394 skb_queue_head_init(&bcm->txq);
395
396 hu->priv = bcm;
Frederic Danis0395ffc2015-08-11 16:35:35 +0200397
Hans de Goede8a920562017-10-04 20:43:43 +0200398 mutex_lock(&bcm_device_lock);
399
Loic Poulain33cd1492017-08-17 19:59:51 +0200400 if (hu->serdev) {
Hans de Goede8a920562017-10-04 20:43:43 +0200401 bcm->dev = serdev_device_get_drvdata(hu->serdev);
Loic Poulain33cd1492017-08-17 19:59:51 +0200402 goto out;
403 }
404
Johan Hovold95065a62017-03-29 18:15:27 +0200405 if (!hu->tty->dev)
406 goto out;
407
Frederic Danis0395ffc2015-08-11 16:35:35 +0200408 list_for_each(p, &bcm_device_list) {
409 struct bcm_device *dev = list_entry(p, struct bcm_device, list);
410
411 /* Retrieve saved bcm_device based on parent of the
412 * platform device (saved during device probe) and
413 * parent of tty device used by hci_uart
414 */
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200415 if (hu->tty->dev->parent == dev->dev->parent) {
Frederic Danis0395ffc2015-08-11 16:35:35 +0200416 bcm->dev = dev;
Frederic Danisb7a622a2015-09-23 18:18:09 +0200417#ifdef CONFIG_PM
Frederic Danis118612f2015-08-11 16:35:38 +0200418 dev->hu = hu;
419#endif
Frederic Danis0395ffc2015-08-11 16:35:35 +0200420 break;
421 }
422 }
423
Johan Hovold95065a62017-03-29 18:15:27 +0200424out:
Hans de Goede8a920562017-10-04 20:43:43 +0200425 if (bcm->dev) {
426 hu->init_speed = bcm->dev->init_speed;
427 hu->oper_speed = bcm->dev->oper_speed;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100428 err = bcm_gpio_set_power(bcm->dev, true);
429 if (err)
430 goto err_unset_hu;
Hans de Goede8a920562017-10-04 20:43:43 +0200431 }
432
433 mutex_unlock(&bcm_device_lock);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700434 return 0;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100435
436err_unset_hu:
437#ifdef CONFIG_PM
Hans de Goedee9ca0802018-05-27 21:04:52 +0200438 if (!hu->serdev)
Hans de Goede8c6b8ed2018-01-22 12:53:24 +0100439 bcm->dev->hu = NULL;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100440#endif
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100441 mutex_unlock(&bcm_device_lock);
442 hu->priv = NULL;
443 kfree(bcm);
444 return err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700445}
446
447static int bcm_close(struct hci_uart *hu)
448{
449 struct bcm_data *bcm = hu->priv;
Hans de Goede8a920562017-10-04 20:43:43 +0200450 struct bcm_device *bdev = NULL;
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100451 int err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700452
Frederic Danis65ad07c2015-09-01 12:13:36 +0200453 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700454
Frederic Danis0395ffc2015-08-11 16:35:35 +0200455 /* Protect bcm->dev against removal of the device or driver */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200456 mutex_lock(&bcm_device_lock);
Hans de Goede8a920562017-10-04 20:43:43 +0200457
458 if (hu->serdev) {
Hans de Goede8a920562017-10-04 20:43:43 +0200459 bdev = serdev_device_get_drvdata(hu->serdev);
460 } else if (bcm_device_exists(bcm->dev)) {
461 bdev = bcm->dev;
462#ifdef CONFIG_PM
463 bdev->hu = NULL;
464#endif
465 }
466
467 if (bdev) {
Lukas Wunner6d83f1e2018-01-10 16:32:10 +0100468 if (IS_ENABLED(CONFIG_PM) && bdev->irq > 0) {
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200469 devm_free_irq(bdev->dev, bdev->irq, bdev);
470 device_init_wakeup(bdev->dev, false);
Lukas Wunnerf4cf6b72018-01-10 16:32:10 +0100471 pm_runtime_disable(bdev->dev);
Frederic Danis6cc43962015-09-04 15:35:44 +0200472 }
Lukas Wunner54ba69f2018-01-10 16:32:10 +0100473
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100474 err = bcm_gpio_set_power(bdev, false);
475 if (err)
476 bt_dev_err(hu->hdev, "Failed to power down");
477 else
478 pm_runtime_set_suspended(bdev->dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200479 }
Frederic Danisbb3ea162015-09-01 12:13:35 +0200480 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200481
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700482 skb_queue_purge(&bcm->txq);
483 kfree_skb(bcm->rx_skb);
484 kfree(bcm);
485
486 hu->priv = NULL;
487 return 0;
488}
489
490static int bcm_flush(struct hci_uart *hu)
491{
492 struct bcm_data *bcm = hu->priv;
493
Frederic Danis65ad07c2015-09-01 12:13:36 +0200494 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700495
496 skb_queue_purge(&bcm->txq);
497
498 return 0;
499}
500
501static int bcm_setup(struct hci_uart *hu)
502{
Frederic Danis6cc43962015-09-04 15:35:44 +0200503 struct bcm_data *bcm = hu->priv;
Frederic Danis6be09b42015-05-28 11:25:05 +0200504 char fw_name[64];
505 const struct firmware *fw;
Frederic Danis960ef1d2015-06-18 12:43:27 +0200506 unsigned int speed;
Frederic Danis6be09b42015-05-28 11:25:05 +0200507 int err;
508
Frederic Danis65ad07c2015-09-01 12:13:36 +0200509 bt_dev_dbg(hu->hdev, "hu %p", hu);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700510
Marcel Holtmann075e1f52015-10-07 20:08:26 +0200511 hu->hdev->set_diag = bcm_set_diag;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700512 hu->hdev->set_bdaddr = btbcm_set_bdaddr;
513
Hans de Goede22ac1912018-04-20 14:44:05 +0200514 err = btbcm_initialize(hu->hdev, fw_name, sizeof(fw_name), false);
Frederic Danis6be09b42015-05-28 11:25:05 +0200515 if (err)
516 return err;
517
518 err = request_firmware(&fw, fw_name, &hu->hdev->dev);
519 if (err < 0) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200520 bt_dev_info(hu->hdev, "BCM: Patch %s not found", fw_name);
Frederic Danis6be09b42015-05-28 11:25:05 +0200521 return 0;
522 }
523
524 err = btbcm_patchram(hu->hdev, fw);
525 if (err) {
Frederic Danis65ad07c2015-09-01 12:13:36 +0200526 bt_dev_info(hu->hdev, "BCM: Patch failed (%d)", err);
Frederic Danis6be09b42015-05-28 11:25:05 +0200527 goto finalize;
528 }
529
Frederic Danis960ef1d2015-06-18 12:43:27 +0200530 /* Init speed if any */
531 if (hu->init_speed)
532 speed = hu->init_speed;
533 else if (hu->proto->init_speed)
534 speed = hu->proto->init_speed;
535 else
536 speed = 0;
Frederic Danis6be09b42015-05-28 11:25:05 +0200537
Frederic Danis960ef1d2015-06-18 12:43:27 +0200538 if (speed)
Loic Poulain33cd1492017-08-17 19:59:51 +0200539 host_set_baudrate(hu, speed);
Frederic Danis960ef1d2015-06-18 12:43:27 +0200540
541 /* Operational speed if any */
542 if (hu->oper_speed)
543 speed = hu->oper_speed;
544 else if (hu->proto->oper_speed)
545 speed = hu->proto->oper_speed;
546 else
547 speed = 0;
548
549 if (speed) {
550 err = bcm_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200551 if (!err)
Loic Poulain33cd1492017-08-17 19:59:51 +0200552 host_set_baudrate(hu, speed);
Frederic Danis61b2fc22015-06-09 16:15:37 +0200553 }
554
Frederic Danis6be09b42015-05-28 11:25:05 +0200555finalize:
556 release_firmware(fw);
557
558 err = btbcm_finalize(hu->hdev);
Frederic Danis6cc43962015-09-04 15:35:44 +0200559 if (err)
560 return err;
561
Loic Poulaincdd24a22017-06-27 19:15:07 +0200562 if (!bcm_request_irq(bcm))
Frederic Danis6cc43962015-09-04 15:35:44 +0200563 err = bcm_setup_sleep(hu);
Frederic Danis6be09b42015-05-28 11:25:05 +0200564
565 return err;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700566}
567
Marcel Holtmann94c58132015-10-07 19:12:54 +0200568#define BCM_RECV_LM_DIAG \
569 .type = BCM_LM_DIAG_PKT, \
570 .hlen = BCM_LM_DIAG_SIZE, \
571 .loff = 0, \
572 .lsize = 0, \
573 .maxlen = BCM_LM_DIAG_SIZE
574
Marcel Holtmann01d5e442017-08-17 21:41:09 +0200575#define BCM_RECV_NULL \
576 .type = BCM_NULL_PKT, \
577 .hlen = BCM_NULL_SIZE, \
578 .loff = 0, \
579 .lsize = 0, \
580 .maxlen = BCM_NULL_SIZE
581
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700582static const struct h4_recv_pkt bcm_recv_pkts[] = {
Marcel Holtmann94c58132015-10-07 19:12:54 +0200583 { H4_RECV_ACL, .recv = hci_recv_frame },
584 { H4_RECV_SCO, .recv = hci_recv_frame },
585 { H4_RECV_EVENT, .recv = hci_recv_frame },
586 { BCM_RECV_LM_DIAG, .recv = hci_recv_diag },
Marcel Holtmann01d5e442017-08-17 21:41:09 +0200587 { BCM_RECV_NULL, .recv = hci_recv_diag },
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700588};
589
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700590static int bcm_recv(struct hci_uart *hu, const void *data, int count)
591{
592 struct bcm_data *bcm = hu->priv;
593
594 if (!test_bit(HCI_UART_REGISTERED, &hu->flags))
595 return -EUNATCH;
596
Marcel Holtmann79b8df92015-04-05 23:44:59 -0700597 bcm->rx_skb = h4_recv_buf(hu->hdev, bcm->rx_skb, data, count,
598 bcm_recv_pkts, ARRAY_SIZE(bcm_recv_pkts));
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700599 if (IS_ERR(bcm->rx_skb)) {
600 int err = PTR_ERR(bcm->rx_skb);
Frederic Danis65ad07c2015-09-01 12:13:36 +0200601 bt_dev_err(hu->hdev, "Frame reassembly failed (%d)", err);
Chan-yeol Park37134162015-06-17 21:10:39 +0900602 bcm->rx_skb = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700603 return err;
Frederic Danise88ab302015-09-23 18:18:11 +0200604 } else if (!bcm->rx_skb) {
605 /* Delay auto-suspend when receiving completed packet */
606 mutex_lock(&bcm_device_lock);
Hans de Goedeb09c6152018-03-14 23:06:02 +0100607 if (bcm->dev && bcm_device_exists(bcm->dev)) {
608 pm_runtime_get(bcm->dev->dev);
609 pm_runtime_mark_last_busy(bcm->dev->dev);
610 pm_runtime_put_autosuspend(bcm->dev->dev);
611 }
Frederic Danise88ab302015-09-23 18:18:11 +0200612 mutex_unlock(&bcm_device_lock);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700613 }
614
615 return count;
616}
617
618static int bcm_enqueue(struct hci_uart *hu, struct sk_buff *skb)
619{
620 struct bcm_data *bcm = hu->priv;
621
Frederic Danis65ad07c2015-09-01 12:13:36 +0200622 bt_dev_dbg(hu->hdev, "hu %p skb %p", hu, skb);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700623
624 /* Prepend skb with frame type */
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100625 memcpy(skb_push(skb, 1), &hci_skb_pkt_type(skb), 1);
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700626 skb_queue_tail(&bcm->txq, skb);
627
628 return 0;
629}
630
631static struct sk_buff *bcm_dequeue(struct hci_uart *hu)
632{
633 struct bcm_data *bcm = hu->priv;
Frederic Danise88ab302015-09-23 18:18:11 +0200634 struct sk_buff *skb = NULL;
635 struct bcm_device *bdev = NULL;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700636
Frederic Danise88ab302015-09-23 18:18:11 +0200637 mutex_lock(&bcm_device_lock);
638
639 if (bcm_device_exists(bcm->dev)) {
640 bdev = bcm->dev;
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200641 pm_runtime_get_sync(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200642 /* Shall be resumed here */
643 }
644
645 skb = skb_dequeue(&bcm->txq);
646
647 if (bdev) {
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200648 pm_runtime_mark_last_busy(bdev->dev);
649 pm_runtime_put_autosuspend(bdev->dev);
Frederic Danise88ab302015-09-23 18:18:11 +0200650 }
651
652 mutex_unlock(&bcm_device_lock);
653
654 return skb;
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700655}
656
Frederic Danisb7a622a2015-09-23 18:18:09 +0200657#ifdef CONFIG_PM
658static int bcm_suspend_device(struct device *dev)
Frederic Danis118612f2015-08-11 16:35:38 +0200659{
Hans de Goede78277d72017-10-04 20:43:42 +0200660 struct bcm_device *bdev = dev_get_drvdata(dev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100661 int err;
Frederic Danis118612f2015-08-11 16:35:38 +0200662
Frederic Danisb7a622a2015-09-23 18:18:09 +0200663 bt_dev_dbg(bdev, "");
Frederic Danis118612f2015-08-11 16:35:38 +0200664
Frederic Danisb7a622a2015-09-23 18:18:09 +0200665 if (!bdev->is_suspended && bdev->hu) {
Frederic Danis118612f2015-08-11 16:35:38 +0200666 hci_uart_set_flow_control(bdev->hu, true);
667
Frederic Danisb7a622a2015-09-23 18:18:09 +0200668 /* Once this returns, driver suspends BT via GPIO */
Frederic Danis118612f2015-08-11 16:35:38 +0200669 bdev->is_suspended = true;
670 }
671
672 /* Suspend the device */
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100673 err = bdev->set_device_wakeup(bdev, false);
674 if (err) {
675 if (bdev->is_suspended && bdev->hu) {
676 bdev->is_suspended = false;
677 hci_uart_set_flow_control(bdev->hu, false);
678 }
679 return -EBUSY;
680 }
681
Lukas Wunner3e81a4c2018-01-10 16:32:10 +0100682 bt_dev_dbg(bdev, "suspend, delaying 15 ms");
Lukas Wunnere4b9e5b2018-01-10 16:32:10 +0100683 msleep(15);
Frederic Danis118612f2015-08-11 16:35:38 +0200684
Frederic Danisb7a622a2015-09-23 18:18:09 +0200685 return 0;
686}
687
688static int bcm_resume_device(struct device *dev)
689{
Hans de Goede78277d72017-10-04 20:43:42 +0200690 struct bcm_device *bdev = dev_get_drvdata(dev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100691 int err;
Frederic Danisb7a622a2015-09-23 18:18:09 +0200692
693 bt_dev_dbg(bdev, "");
694
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100695 err = bdev->set_device_wakeup(bdev, true);
696 if (err) {
697 dev_err(dev, "Failed to power up\n");
698 return err;
699 }
700
Lukas Wunner3e81a4c2018-01-10 16:32:10 +0100701 bt_dev_dbg(bdev, "resume, delaying 15 ms");
Lukas Wunnere4b9e5b2018-01-10 16:32:10 +0100702 msleep(15);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200703
704 /* When this executes, the device has woken up already */
705 if (bdev->is_suspended && bdev->hu) {
706 bdev->is_suspended = false;
707
708 hci_uart_set_flow_control(bdev->hu, false);
709 }
710
711 return 0;
712}
713#endif
714
715#ifdef CONFIG_PM_SLEEP
Hans de Goede8a920562017-10-04 20:43:43 +0200716/* suspend callback */
Frederic Danisb7a622a2015-09-23 18:18:09 +0200717static int bcm_suspend(struct device *dev)
718{
Hans de Goede78277d72017-10-04 20:43:42 +0200719 struct bcm_device *bdev = dev_get_drvdata(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200720 int error;
721
722 bt_dev_dbg(bdev, "suspend: is_suspended %d", bdev->is_suspended);
723
Hans de Goede8a920562017-10-04 20:43:43 +0200724 /*
725 * When used with a device instantiated as platform_device, bcm_suspend
726 * can be called at any time as long as the platform device is bound,
727 * so it should use bcm_device_lock to protect access to hci_uart
Frederic Danisb7a622a2015-09-23 18:18:09 +0200728 * and device_wake-up GPIO.
729 */
730 mutex_lock(&bcm_device_lock);
731
732 if (!bdev->hu)
733 goto unlock;
734
Frederic Danise88ab302015-09-23 18:18:11 +0200735 if (pm_runtime_active(dev))
736 bcm_suspend_device(dev);
Frederic Danisb7a622a2015-09-23 18:18:09 +0200737
Ronald Tschalär4a59f1f2018-01-10 16:32:10 +0100738 if (device_may_wakeup(dev) && bdev->irq > 0) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200739 error = enable_irq_wake(bdev->irq);
740 if (!error)
741 bt_dev_dbg(bdev, "BCM irq: enabled");
742 }
743
Frederic Danis917522a2015-08-28 15:44:00 +0200744unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200745 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200746
Frederic Danis118612f2015-08-11 16:35:38 +0200747 return 0;
748}
749
Hans de Goede8a920562017-10-04 20:43:43 +0200750/* resume callback */
Frederic Danis118612f2015-08-11 16:35:38 +0200751static int bcm_resume(struct device *dev)
752{
Hans de Goede78277d72017-10-04 20:43:42 +0200753 struct bcm_device *bdev = dev_get_drvdata(dev);
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100754 int err = 0;
Frederic Danis118612f2015-08-11 16:35:38 +0200755
Frederic Danis65ad07c2015-09-01 12:13:36 +0200756 bt_dev_dbg(bdev, "resume: is_suspended %d", bdev->is_suspended);
Frederic Danis118612f2015-08-11 16:35:38 +0200757
Hans de Goede8a920562017-10-04 20:43:43 +0200758 /*
759 * When used with a device instantiated as platform_device, bcm_resume
760 * can be called at any time as long as platform device is bound,
761 * so it should use bcm_device_lock to protect access to hci_uart
Frederic Danisb7a622a2015-09-23 18:18:09 +0200762 * and device_wake-up GPIO.
763 */
Frederic Danisbb3ea162015-09-01 12:13:35 +0200764 mutex_lock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200765
766 if (!bdev->hu)
767 goto unlock;
768
Ronald Tschalär4a59f1f2018-01-10 16:32:10 +0100769 if (device_may_wakeup(dev) && bdev->irq > 0) {
Frederic Danis6cc43962015-09-04 15:35:44 +0200770 disable_irq_wake(bdev->irq);
771 bt_dev_dbg(bdev, "BCM irq: disabled");
772 }
773
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100774 err = bcm_resume_device(dev);
Frederic Danis118612f2015-08-11 16:35:38 +0200775
Frederic Danis917522a2015-08-28 15:44:00 +0200776unlock:
Frederic Danisbb3ea162015-09-01 12:13:35 +0200777 mutex_unlock(&bcm_device_lock);
Frederic Danis917522a2015-08-28 15:44:00 +0200778
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +0100779 if (!err) {
780 pm_runtime_disable(dev);
781 pm_runtime_set_active(dev);
782 pm_runtime_enable(dev);
783 }
Frederic Danise88ab302015-09-23 18:18:11 +0200784
Frederic Danis118612f2015-08-11 16:35:38 +0200785 return 0;
786}
787#endif
788
Hans de Goede9644e6b2018-03-16 21:28:10 +0100789static const struct acpi_gpio_params first_gpio = { 0, 0, false };
790static const struct acpi_gpio_params second_gpio = { 1, 0, false };
791static const struct acpi_gpio_params third_gpio = { 2, 0, false };
Frederic Danis0395ffc2015-08-11 16:35:35 +0200792
Daniel Drake89ab37b2017-01-05 11:10:54 -0600793static const struct acpi_gpio_mapping acpi_bcm_int_last_gpios[] = {
Hans de Goede9644e6b2018-03-16 21:28:10 +0100794 { "device-wakeup-gpios", &first_gpio, 1 },
795 { "shutdown-gpios", &second_gpio, 1 },
796 { "host-wakeup-gpios", &third_gpio, 1 },
Daniel Drake89ab37b2017-01-05 11:10:54 -0600797 { },
798};
799
Daniel Drake89ab37b2017-01-05 11:10:54 -0600800static const struct acpi_gpio_mapping acpi_bcm_int_first_gpios[] = {
Hans de Goede9644e6b2018-03-16 21:28:10 +0100801 { "host-wakeup-gpios", &first_gpio, 1 },
802 { "device-wakeup-gpios", &second_gpio, 1 },
803 { "shutdown-gpios", &third_gpio, 1 },
Frederic Danis0395ffc2015-08-11 16:35:35 +0200804 { },
805};
806
Hans de Goede2b053932018-04-03 16:40:20 +0200807/* Some firmware reports an IRQ which does not work (wrong pin in fw table?) */
808static const struct dmi_system_id bcm_broken_irq_dmi_table[] = {
809 {
810 .ident = "Meegopad T08",
811 .matches = {
812 DMI_EXACT_MATCH(DMI_BOARD_VENDOR,
813 "To be filled by OEM."),
814 DMI_EXACT_MATCH(DMI_BOARD_NAME, "T3 MRD"),
815 DMI_EXACT_MATCH(DMI_BOARD_VERSION, "V1.1"),
816 },
817 },
818 { }
819};
820
Frederic Danis50d78bc2015-08-12 12:46:01 +0200821#ifdef CONFIG_ACPI
Frederic Danisae056902015-08-11 16:35:37 +0200822static int bcm_resource(struct acpi_resource *ares, void *data)
823{
824 struct bcm_device *dev = data;
Frederic Danis6cc43962015-09-04 15:35:44 +0200825 struct acpi_resource_extended_irq *irq;
826 struct acpi_resource_gpio *gpio;
827 struct acpi_resource_uart_serialbus *sb;
Frederic Danisae056902015-08-11 16:35:37 +0200828
Frederic Danis6cc43962015-09-04 15:35:44 +0200829 switch (ares->type) {
830 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
831 irq = &ares->data.extended_irq;
Hans de Goedebb5208b2018-03-16 21:28:08 +0100832 if (irq->polarity != ACPI_ACTIVE_LOW)
833 dev_info(dev->dev, "ACPI Interrupt resource is active-high, this is usually wrong, treating the IRQ as active-low\n");
834 dev->irq_active_low = true;
Frederic Danis6cc43962015-09-04 15:35:44 +0200835 break;
Frederic Danisae056902015-08-11 16:35:37 +0200836
Frederic Danis6cc43962015-09-04 15:35:44 +0200837 case ACPI_RESOURCE_TYPE_GPIO:
838 gpio = &ares->data.gpio;
Hans de Goedea4de1562018-03-16 21:28:11 +0100839 if (gpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT) {
840 dev->gpio_int_idx = dev->gpio_count;
Hans de Goede227630c2017-10-04 20:43:36 +0200841 dev->irq_active_low = gpio->polarity == ACPI_ACTIVE_LOW;
Hans de Goedea4de1562018-03-16 21:28:11 +0100842 }
843 dev->gpio_count++;
Frederic Danis6cc43962015-09-04 15:35:44 +0200844 break;
845
846 case ACPI_RESOURCE_TYPE_SERIAL_BUS:
Frederic Danisae056902015-08-11 16:35:37 +0200847 sb = &ares->data.uart_serial_bus;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200848 if (sb->type == ACPI_RESOURCE_SERIAL_TYPE_UART) {
Frederic Danisae056902015-08-11 16:35:37 +0200849 dev->init_speed = sb->default_baud_rate;
Marcel Holtmann74183a12017-08-16 09:53:30 +0200850 dev->oper_speed = 4000000;
851 }
Frederic Danis6cc43962015-09-04 15:35:44 +0200852 break;
853
854 default:
855 break;
Frederic Danisae056902015-08-11 16:35:37 +0200856 }
857
Hans de Goede9d54fd62017-10-04 20:43:41 +0200858 return 0;
Frederic Danisae056902015-08-11 16:35:37 +0200859}
Lukas Wunner4c331622018-01-10 16:32:10 +0100860
861static int bcm_apple_set_device_wakeup(struct bcm_device *dev, bool awake)
862{
863 if (ACPI_FAILURE(acpi_execute_simple_method(dev->btlp, NULL, !awake)))
864 return -EIO;
865
866 return 0;
867}
868
869static int bcm_apple_set_shutdown(struct bcm_device *dev, bool powered)
870{
871 if (ACPI_FAILURE(acpi_evaluate_object(powered ? dev->btpu : dev->btpd,
872 NULL, NULL, NULL)))
873 return -EIO;
874
875 return 0;
876}
877
878static int bcm_apple_get_resources(struct bcm_device *dev)
879{
880 struct acpi_device *adev = ACPI_COMPANION(dev->dev);
881 const union acpi_object *obj;
882
883 if (!adev ||
884 ACPI_FAILURE(acpi_get_handle(adev->handle, "BTLP", &dev->btlp)) ||
885 ACPI_FAILURE(acpi_get_handle(adev->handle, "BTPU", &dev->btpu)) ||
886 ACPI_FAILURE(acpi_get_handle(adev->handle, "BTPD", &dev->btpd)))
887 return -ENODEV;
888
889 if (!acpi_dev_get_property(adev, "baud", ACPI_TYPE_BUFFER, &obj) &&
890 obj->buffer.length == 8)
891 dev->init_speed = *(u64 *)obj->buffer.pointer;
892
893 dev->set_device_wakeup = bcm_apple_set_device_wakeup;
894 dev->set_shutdown = bcm_apple_set_shutdown;
895
896 return 0;
897}
898#else
899static inline int bcm_apple_get_resources(struct bcm_device *dev)
900{
901 return -EOPNOTSUPP;
902}
Andy Shevchenko212d71832017-03-10 14:28:20 +0200903#endif /* CONFIG_ACPI */
Frederic Danisae056902015-08-11 16:35:37 +0200904
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100905static int bcm_gpio_set_device_wakeup(struct bcm_device *dev, bool awake)
906{
Loic Poulainfb2d4662018-03-05 19:02:35 +0100907 gpiod_set_value_cansleep(dev->device_wakeup, awake);
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100908 return 0;
909}
910
911static int bcm_gpio_set_shutdown(struct bcm_device *dev, bool powered)
912{
Loic Poulainfb2d4662018-03-05 19:02:35 +0100913 gpiod_set_value_cansleep(dev->shutdown, powered);
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100914 return 0;
915}
916
Chen-Yu Tsai55dbfcd2018-12-17 12:04:41 +0800917/* Try a bunch of names for TXCO */
918static struct clk *bcm_get_txco(struct device *dev)
919{
920 struct clk *clk;
921
922 /* New explicit name */
923 clk = devm_clk_get(dev, "txco");
924 if (!IS_ERR(clk) || PTR_ERR(clk) == -EPROBE_DEFER)
925 return clk;
926
927 /* Deprecated name */
928 clk = devm_clk_get(dev, "extclk");
929 if (!IS_ERR(clk) || PTR_ERR(clk) == -EPROBE_DEFER)
930 return clk;
931
932 /* Original code used no name at all */
933 return devm_clk_get(dev, NULL);
934}
935
Hans de Goede42ef18f2017-10-04 20:43:40 +0200936static int bcm_get_resources(struct bcm_device *dev)
Frederic Danis0395ffc2015-08-11 16:35:35 +0200937{
Hans de Goede2b053932018-04-03 16:40:20 +0200938 const struct dmi_system_id *dmi_id;
939
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200940 dev->name = dev_name(dev->dev);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200941
Lukas Wunner4c331622018-01-10 16:32:10 +0100942 if (x86_apple_machine && !bcm_apple_get_resources(dev))
943 return 0;
944
Chen-Yu Tsai55dbfcd2018-12-17 12:04:41 +0800945 dev->txco_clk = bcm_get_txco(dev->dev);
Daniel Drake89ab37b2017-01-05 11:10:54 -0600946
Chen-Yu Tsai28ac03b2018-12-17 12:04:39 +0800947 /* Handle deferred probing */
Chen-Yu Tsai55dbfcd2018-12-17 12:04:41 +0800948 if (dev->txco_clk == ERR_PTR(-EPROBE_DEFER))
949 return PTR_ERR(dev->txco_clk);
Chen-Yu Tsai28ac03b2018-12-17 12:04:39 +0800950
Chen-Yu Tsai8c089472018-12-17 12:04:40 +0800951 /* Ignore all other errors as before */
Chen-Yu Tsai55dbfcd2018-12-17 12:04:41 +0800952 if (IS_ERR(dev->txco_clk))
953 dev->txco_clk = NULL;
Chen-Yu Tsai8c089472018-12-17 12:04:40 +0800954
Chen-Yu Tsai90bc07c2018-12-17 12:04:42 +0800955 dev->lpo_clk = devm_clk_get(dev->dev, "lpo");
956 if (dev->lpo_clk == ERR_PTR(-EPROBE_DEFER))
957 return PTR_ERR(dev->lpo_clk);
958
959 if (IS_ERR(dev->lpo_clk))
960 dev->lpo_clk = NULL;
961
962 /* Check if we accidentally fetched the lpo clock twice */
963 if (dev->lpo_clk && clk_is_match(dev->lpo_clk, dev->txco_clk)) {
964 devm_clk_put(dev->dev, dev->txco_clk);
965 dev->txco_clk = NULL;
966 }
967
Stefan Wahrenab2f3362018-02-25 15:10:52 +0100968 dev->device_wakeup = devm_gpiod_get_optional(dev->dev, "device-wakeup",
969 GPIOD_OUT_LOW);
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200970 if (IS_ERR(dev->device_wakeup))
971 return PTR_ERR(dev->device_wakeup);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200972
Stefan Wahrenab2f3362018-02-25 15:10:52 +0100973 dev->shutdown = devm_gpiod_get_optional(dev->dev, "shutdown",
974 GPIOD_OUT_LOW);
Uwe Kleine-König62aaefa2015-08-12 09:20:56 +0200975 if (IS_ERR(dev->shutdown))
976 return PTR_ERR(dev->shutdown);
Frederic Danis0395ffc2015-08-11 16:35:35 +0200977
Lukas Wunner8353b4a2018-01-10 16:32:10 +0100978 dev->set_device_wakeup = bcm_gpio_set_device_wakeup;
979 dev->set_shutdown = bcm_gpio_set_shutdown;
980
Frederic Danis6cc43962015-09-04 15:35:44 +0200981 /* IRQ can be declared in ACPI table as Interrupt or GpioInt */
Frederic Danis6cc43962015-09-04 15:35:44 +0200982 if (dev->irq <= 0) {
983 struct gpio_desc *gpio;
984
Hans de Goedec0d3ce52017-10-04 20:43:39 +0200985 gpio = devm_gpiod_get_optional(dev->dev, "host-wakeup",
Frederic Danis6cc43962015-09-04 15:35:44 +0200986 GPIOD_IN);
987 if (IS_ERR(gpio))
988 return PTR_ERR(gpio);
989
990 dev->irq = gpiod_to_irq(gpio);
991 }
992
Hans de Goede2b053932018-04-03 16:40:20 +0200993 dmi_id = dmi_first_match(bcm_broken_irq_dmi_table);
994 if (dmi_id) {
995 dev_info(dev->dev, "%s: Has a broken IRQ config, disabling IRQ support / runtime-pm\n",
996 dmi_id->ident);
997 dev->irq = 0;
998 }
999
Lukas Wunner5954cdf2018-01-10 16:32:10 +01001000 dev_dbg(dev->dev, "BCM irq: %d\n", dev->irq);
Andy Shevchenko212d71832017-03-10 14:28:20 +02001001 return 0;
1002}
1003
1004#ifdef CONFIG_ACPI
1005static int bcm_acpi_probe(struct bcm_device *dev)
1006{
Andy Shevchenko212d71832017-03-10 14:28:20 +02001007 LIST_HEAD(resources);
Andy Shevchenko212d71832017-03-10 14:28:20 +02001008 const struct acpi_gpio_mapping *gpio_mapping = acpi_bcm_int_last_gpios;
Hans de Goede9d54fd62017-10-04 20:43:41 +02001009 struct resource_entry *entry;
Andy Shevchenko212d71832017-03-10 14:28:20 +02001010 int ret;
1011
Frederic Danisae056902015-08-11 16:35:37 +02001012 /* Retrieve UART ACPI info */
Hans de Goedea4de1562018-03-16 21:28:11 +01001013 dev->gpio_int_idx = -1;
Hans de Goedec0d3ce52017-10-04 20:43:39 +02001014 ret = acpi_dev_get_resources(ACPI_COMPANION(dev->dev),
Jarkko Nikulae98d6d62015-09-30 16:26:45 +03001015 &resources, bcm_resource, dev);
Jarkko Nikula5be00282015-09-30 16:26:42 +03001016 if (ret < 0)
1017 return ret;
Hans de Goede9d54fd62017-10-04 20:43:41 +02001018
1019 resource_list_for_each_entry(entry, &resources) {
1020 if (resource_type(entry->res) == IORESOURCE_IRQ) {
1021 dev->irq = entry->res->start;
1022 break;
1023 }
1024 }
Jarkko Nikula09dbf1b2015-09-30 16:26:41 +03001025 acpi_dev_free_resource_list(&resources);
Frederic Danisae056902015-08-11 16:35:37 +02001026
Hans de Goedea4de1562018-03-16 21:28:11 +01001027 /* If the DSDT uses an Interrupt resource for the IRQ, then there are
1028 * only 2 GPIO resources, we use the irq-last mapping for this, since
1029 * we already have an irq the 3th / last mapping will not be used.
1030 */
1031 if (dev->irq)
1032 gpio_mapping = acpi_bcm_int_last_gpios;
1033 else if (dev->gpio_int_idx == 0)
1034 gpio_mapping = acpi_bcm_int_first_gpios;
1035 else if (dev->gpio_int_idx == 2)
1036 gpio_mapping = acpi_bcm_int_last_gpios;
1037 else
1038 dev_warn(dev->dev, "Unexpected ACPI gpio_int_idx: %d\n",
1039 dev->gpio_int_idx);
1040
1041 /* Warn if our expectations are not met. */
1042 if (dev->gpio_count != (dev->irq ? 2 : 3))
1043 dev_warn(dev->dev, "Unexpected number of ACPI GPIOs: %d\n",
1044 dev->gpio_count);
1045
1046 ret = devm_acpi_dev_add_driver_gpios(dev->dev, gpio_mapping);
1047 if (ret)
1048 return ret;
1049
Hans de Goedee09070c2018-03-16 21:28:07 +01001050 if (irq_polarity != -1) {
1051 dev->irq_active_low = irq_polarity;
1052 dev_warn(dev->dev, "Overwriting IRQ polarity to active %s by module-param\n",
1053 dev->irq_active_low ? "low" : "high");
Frederic Danis5cebdfe2015-09-23 18:18:08 +02001054 }
1055
Frederic Danis0395ffc2015-08-11 16:35:35 +02001056 return 0;
1057}
Frederic Danis50d78bc2015-08-12 12:46:01 +02001058#else
1059static int bcm_acpi_probe(struct bcm_device *dev)
1060{
1061 return -EINVAL;
1062}
1063#endif /* CONFIG_ACPI */
Frederic Danis0395ffc2015-08-11 16:35:35 +02001064
Hans de Goede8a920562017-10-04 20:43:43 +02001065static int bcm_of_probe(struct bcm_device *bdev)
1066{
1067 device_property_read_u32(bdev->dev, "max-speed", &bdev->oper_speed);
1068 return 0;
1069}
1070
Frederic Danis0395ffc2015-08-11 16:35:35 +02001071static int bcm_probe(struct platform_device *pdev)
1072{
1073 struct bcm_device *dev;
Frederic Danis0395ffc2015-08-11 16:35:35 +02001074 int ret;
1075
1076 dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
1077 if (!dev)
1078 return -ENOMEM;
1079
Hans de Goedec0d3ce52017-10-04 20:43:39 +02001080 dev->dev = &pdev->dev;
Hans de Goede4a56f892017-10-04 20:43:38 +02001081 dev->irq = platform_get_irq(pdev, 0);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001082
Hans de Goede201762e2017-10-04 20:43:37 +02001083 if (has_acpi_companion(&pdev->dev)) {
Andy Shevchenko212d71832017-03-10 14:28:20 +02001084 ret = bcm_acpi_probe(dev);
Hans de Goede201762e2017-10-04 20:43:37 +02001085 if (ret)
1086 return ret;
1087 }
1088
Hans de Goede42ef18f2017-10-04 20:43:40 +02001089 ret = bcm_get_resources(dev);
Jarkko Nikula4d1c4552015-09-30 16:26:44 +03001090 if (ret)
1091 return ret;
Frederic Danis0395ffc2015-08-11 16:35:35 +02001092
1093 platform_set_drvdata(pdev, dev);
1094
1095 dev_info(&pdev->dev, "%s device registered.\n", dev->name);
1096
1097 /* Place this instance on the device list */
Frederic Danisbb3ea162015-09-01 12:13:35 +02001098 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001099 list_add_tail(&dev->list, &bcm_device_list);
Frederic Danisbb3ea162015-09-01 12:13:35 +02001100 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001101
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +01001102 ret = bcm_gpio_set_power(dev, false);
1103 if (ret)
1104 dev_err(&pdev->dev, "Failed to power down\n");
Frederic Danis0395ffc2015-08-11 16:35:35 +02001105
1106 return 0;
1107}
1108
1109static int bcm_remove(struct platform_device *pdev)
1110{
1111 struct bcm_device *dev = platform_get_drvdata(pdev);
1112
Frederic Danisbb3ea162015-09-01 12:13:35 +02001113 mutex_lock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001114 list_del(&dev->list);
Frederic Danisbb3ea162015-09-01 12:13:35 +02001115 mutex_unlock(&bcm_device_lock);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001116
Frederic Danis0395ffc2015-08-11 16:35:35 +02001117 dev_info(&pdev->dev, "%s device unregistered.\n", dev->name);
1118
1119 return 0;
1120}
1121
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001122static const struct hci_uart_proto bcm_proto = {
1123 .id = HCI_UART_BCM,
Loic Poulain143f0a22016-09-19 12:05:12 +02001124 .name = "Broadcom",
Marcel Holtmannaee61f72015-10-20 21:30:45 +02001125 .manufacturer = 15,
Frederic Danis61b2fc22015-06-09 16:15:37 +02001126 .init_speed = 115200,
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001127 .open = bcm_open,
1128 .close = bcm_close,
1129 .flush = bcm_flush,
1130 .setup = bcm_setup,
Frederic Danis61b2fc22015-06-09 16:15:37 +02001131 .set_baudrate = bcm_set_baudrate,
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001132 .recv = bcm_recv,
1133 .enqueue = bcm_enqueue,
1134 .dequeue = bcm_dequeue,
1135};
1136
Frederic Danis0395ffc2015-08-11 16:35:35 +02001137#ifdef CONFIG_ACPI
1138static const struct acpi_device_id bcm_acpi_match[] = {
Hans de Goede61121502018-03-21 13:53:18 +01001139 { "BCM2E00" },
1140 { "BCM2E01" },
1141 { "BCM2E02" },
1142 { "BCM2E03" },
1143 { "BCM2E04" },
1144 { "BCM2E05" },
1145 { "BCM2E06" },
1146 { "BCM2E07" },
1147 { "BCM2E08" },
1148 { "BCM2E09" },
1149 { "BCM2E0A" },
1150 { "BCM2E0B" },
1151 { "BCM2E0C" },
1152 { "BCM2E0D" },
1153 { "BCM2E0E" },
1154 { "BCM2E0F" },
1155 { "BCM2E10" },
1156 { "BCM2E11" },
1157 { "BCM2E12" },
1158 { "BCM2E13" },
1159 { "BCM2E14" },
1160 { "BCM2E15" },
1161 { "BCM2E16" },
1162 { "BCM2E17" },
1163 { "BCM2E18" },
1164 { "BCM2E19" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001165 { "BCM2E1A" },
Hans de Goede61121502018-03-21 13:53:18 +01001166 { "BCM2E1B" },
1167 { "BCM2E1C" },
1168 { "BCM2E1D" },
1169 { "BCM2E1F" },
1170 { "BCM2E20" },
1171 { "BCM2E21" },
1172 { "BCM2E22" },
1173 { "BCM2E23" },
1174 { "BCM2E24" },
1175 { "BCM2E25" },
1176 { "BCM2E26" },
1177 { "BCM2E27" },
1178 { "BCM2E28" },
1179 { "BCM2E29" },
1180 { "BCM2E2A" },
1181 { "BCM2E2B" },
1182 { "BCM2E2C" },
1183 { "BCM2E2D" },
1184 { "BCM2E2E" },
1185 { "BCM2E2F" },
1186 { "BCM2E30" },
1187 { "BCM2E31" },
1188 { "BCM2E32" },
1189 { "BCM2E33" },
1190 { "BCM2E34" },
1191 { "BCM2E35" },
1192 { "BCM2E36" },
1193 { "BCM2E37" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001194 { "BCM2E38" },
1195 { "BCM2E39" },
1196 { "BCM2E3A" },
Hans de Goede61121502018-03-21 13:53:18 +01001197 { "BCM2E3B" },
1198 { "BCM2E3C" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001199 { "BCM2E3D" },
Hans de Goede61121502018-03-21 13:53:18 +01001200 { "BCM2E3E" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001201 { "BCM2E3F" },
1202 { "BCM2E40" },
Hans de Goede61121502018-03-21 13:53:18 +01001203 { "BCM2E41" },
1204 { "BCM2E42" },
1205 { "BCM2E43" },
1206 { "BCM2E44" },
1207 { "BCM2E45" },
1208 { "BCM2E46" },
1209 { "BCM2E47" },
1210 { "BCM2E48" },
1211 { "BCM2E49" },
1212 { "BCM2E4A" },
1213 { "BCM2E4B" },
1214 { "BCM2E4C" },
1215 { "BCM2E4D" },
1216 { "BCM2E4E" },
1217 { "BCM2E4F" },
1218 { "BCM2E50" },
1219 { "BCM2E51" },
1220 { "BCM2E52" },
1221 { "BCM2E53" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001222 { "BCM2E54" },
1223 { "BCM2E55" },
Hans de Goede61121502018-03-21 13:53:18 +01001224 { "BCM2E56" },
1225 { "BCM2E57" },
1226 { "BCM2E58" },
1227 { "BCM2E59" },
1228 { "BCM2E5A" },
1229 { "BCM2E5B" },
1230 { "BCM2E5C" },
1231 { "BCM2E5D" },
1232 { "BCM2E5E" },
1233 { "BCM2E5F" },
1234 { "BCM2E60" },
1235 { "BCM2E61" },
1236 { "BCM2E62" },
1237 { "BCM2E63" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001238 { "BCM2E64" },
1239 { "BCM2E65" },
Hans de Goede61121502018-03-21 13:53:18 +01001240 { "BCM2E66" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001241 { "BCM2E67" },
Hans de Goede61121502018-03-21 13:53:18 +01001242 { "BCM2E68" },
1243 { "BCM2E69" },
1244 { "BCM2E6B" },
1245 { "BCM2E6D" },
1246 { "BCM2E6E" },
1247 { "BCM2E6F" },
1248 { "BCM2E70" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001249 { "BCM2E71" },
1250 { "BCM2E72" },
Hans de Goede61121502018-03-21 13:53:18 +01001251 { "BCM2E73" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001252 { "BCM2E74" },
Hans de Goede61121502018-03-21 13:53:18 +01001253 { "BCM2E75" },
1254 { "BCM2E76" },
1255 { "BCM2E77" },
1256 { "BCM2E78" },
1257 { "BCM2E79" },
1258 { "BCM2E7A" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001259 { "BCM2E7B" },
1260 { "BCM2E7C" },
Hans de Goede61121502018-03-21 13:53:18 +01001261 { "BCM2E7D" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001262 { "BCM2E7E" },
Hans de Goede61121502018-03-21 13:53:18 +01001263 { "BCM2E7F" },
1264 { "BCM2E80" },
1265 { "BCM2E81" },
1266 { "BCM2E82" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001267 { "BCM2E83" },
1268 { "BCM2E84" },
Hans de Goede61121502018-03-21 13:53:18 +01001269 { "BCM2E85" },
1270 { "BCM2E86" },
1271 { "BCM2E87" },
1272 { "BCM2E88" },
1273 { "BCM2E89" },
1274 { "BCM2E8A" },
1275 { "BCM2E8B" },
1276 { "BCM2E8C" },
1277 { "BCM2E8D" },
1278 { "BCM2E8E" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001279 { "BCM2E90" },
Hans de Goede61121502018-03-21 13:53:18 +01001280 { "BCM2E92" },
1281 { "BCM2E93" },
1282 { "BCM2E94" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001283 { "BCM2E95" },
1284 { "BCM2E96" },
Hans de Goede61121502018-03-21 13:53:18 +01001285 { "BCM2E97" },
1286 { "BCM2E98" },
1287 { "BCM2E99" },
1288 { "BCM2E9A" },
1289 { "BCM2E9B" },
1290 { "BCM2E9C" },
1291 { "BCM2E9D" },
1292 { "BCM2EA0" },
1293 { "BCM2EA1" },
1294 { "BCM2EA2" },
1295 { "BCM2EA3" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001296 { "BCM2EA4" },
Hans de Goede61121502018-03-21 13:53:18 +01001297 { "BCM2EA5" },
1298 { "BCM2EA6" },
1299 { "BCM2EA7" },
1300 { "BCM2EA8" },
1301 { "BCM2EA9" },
Hans de Goedea4de1562018-03-16 21:28:11 +01001302 { "BCM2EAA" },
Hans de Goede61121502018-03-21 13:53:18 +01001303 { "BCM2EAB" },
1304 { "BCM2EAC" },
Frederic Danis0395ffc2015-08-11 16:35:35 +02001305 { },
1306};
1307MODULE_DEVICE_TABLE(acpi, bcm_acpi_match);
1308#endif
1309
Hans de Goede8a920562017-10-04 20:43:43 +02001310/* suspend and resume callbacks */
Frederic Danise88ab302015-09-23 18:18:11 +02001311static const struct dev_pm_ops bcm_pm_ops = {
1312 SET_SYSTEM_SLEEP_PM_OPS(bcm_suspend, bcm_resume)
1313 SET_RUNTIME_PM_OPS(bcm_suspend_device, bcm_resume_device, NULL)
1314};
Frederic Danis118612f2015-08-11 16:35:38 +02001315
Frederic Danis0395ffc2015-08-11 16:35:35 +02001316static struct platform_driver bcm_driver = {
1317 .probe = bcm_probe,
1318 .remove = bcm_remove,
1319 .driver = {
1320 .name = "hci_bcm",
1321 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
Frederic Danis118612f2015-08-11 16:35:38 +02001322 .pm = &bcm_pm_ops,
Frederic Danis0395ffc2015-08-11 16:35:35 +02001323 },
1324};
1325
Loic Poulain33cd1492017-08-17 19:59:51 +02001326static int bcm_serdev_probe(struct serdev_device *serdev)
1327{
Hans de Goede8a920562017-10-04 20:43:43 +02001328 struct bcm_device *bcmdev;
Loic Poulain33cd1492017-08-17 19:59:51 +02001329 int err;
1330
1331 bcmdev = devm_kzalloc(&serdev->dev, sizeof(*bcmdev), GFP_KERNEL);
1332 if (!bcmdev)
1333 return -ENOMEM;
1334
Hans de Goede8a920562017-10-04 20:43:43 +02001335 bcmdev->dev = &serdev->dev;
Arnd Bergmann81a19052017-10-11 15:46:21 +02001336#ifdef CONFIG_PM
Hans de Goede8a920562017-10-04 20:43:43 +02001337 bcmdev->hu = &bcmdev->serdev_hu;
Arnd Bergmann81a19052017-10-11 15:46:21 +02001338#endif
Hans de Goede8a920562017-10-04 20:43:43 +02001339 bcmdev->serdev_hu.serdev = serdev;
Loic Poulain33cd1492017-08-17 19:59:51 +02001340 serdev_device_set_drvdata(serdev, bcmdev);
1341
Hans de Goede8a920562017-10-04 20:43:43 +02001342 if (has_acpi_companion(&serdev->dev))
1343 err = bcm_acpi_probe(bcmdev);
1344 else
1345 err = bcm_of_probe(bcmdev);
1346 if (err)
1347 return err;
Loic Poulain33cd1492017-08-17 19:59:51 +02001348
Hans de Goede8a920562017-10-04 20:43:43 +02001349 err = bcm_get_resources(bcmdev);
1350 if (err)
1351 return err;
1352
Marcel Holtmannf3863f12018-03-07 22:39:03 +01001353 if (!bcmdev->shutdown) {
1354 dev_warn(&serdev->dev,
1355 "No reset resource, using default baud rate\n");
1356 bcmdev->oper_speed = bcmdev->init_speed;
1357 }
1358
Lukas Wunner8bfa7e1e2018-01-10 16:32:10 +01001359 err = bcm_gpio_set_power(bcmdev, false);
1360 if (err)
1361 dev_err(&serdev->dev, "Failed to power down\n");
Hans de Goede8a920562017-10-04 20:43:43 +02001362
1363 return hci_uart_register_device(&bcmdev->serdev_hu, &bcm_proto);
Loic Poulain33cd1492017-08-17 19:59:51 +02001364}
1365
1366static void bcm_serdev_remove(struct serdev_device *serdev)
1367{
Hans de Goede8a920562017-10-04 20:43:43 +02001368 struct bcm_device *bcmdev = serdev_device_get_drvdata(serdev);
Loic Poulain33cd1492017-08-17 19:59:51 +02001369
Hans de Goede8a920562017-10-04 20:43:43 +02001370 hci_uart_unregister_device(&bcmdev->serdev_hu);
Loic Poulain33cd1492017-08-17 19:59:51 +02001371}
1372
1373#ifdef CONFIG_OF
1374static const struct of_device_id bcm_bluetooth_of_match[] = {
1375 { .compatible = "brcm,bcm43438-bt" },
1376 { },
1377};
1378MODULE_DEVICE_TABLE(of, bcm_bluetooth_of_match);
1379#endif
1380
1381static struct serdev_device_driver bcm_serdev_driver = {
1382 .probe = bcm_serdev_probe,
1383 .remove = bcm_serdev_remove,
1384 .driver = {
1385 .name = "hci_uart_bcm",
1386 .of_match_table = of_match_ptr(bcm_bluetooth_of_match),
Hans de Goede8a920562017-10-04 20:43:43 +02001387 .acpi_match_table = ACPI_PTR(bcm_acpi_match),
1388 .pm = &bcm_pm_ops,
Loic Poulain33cd1492017-08-17 19:59:51 +02001389 },
1390};
1391
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001392int __init bcm_init(void)
1393{
Loic Poulain33cd1492017-08-17 19:59:51 +02001394 /* For now, we need to keep both platform device
1395 * driver (ACPI generated) and serdev driver (DT).
1396 */
Frederic Danis0395ffc2015-08-11 16:35:35 +02001397 platform_driver_register(&bcm_driver);
Loic Poulain33cd1492017-08-17 19:59:51 +02001398 serdev_device_driver_register(&bcm_serdev_driver);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001399
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001400 return hci_uart_register_proto(&bcm_proto);
1401}
1402
1403int __exit bcm_deinit(void)
1404{
Frederic Danis0395ffc2015-08-11 16:35:35 +02001405 platform_driver_unregister(&bcm_driver);
Loic Poulain33cd1492017-08-17 19:59:51 +02001406 serdev_device_driver_unregister(&bcm_serdev_driver);
Frederic Danis0395ffc2015-08-11 16:35:35 +02001407
Marcel Holtmannbdd88182015-04-05 22:52:18 -07001408 return hci_uart_unregister_proto(&bcm_proto);
1409}