3 * Bluetooth HCI UART driver for Broadcom devices
5 * Copyright (C) 2015 Intel Corporation
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.
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.
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
24 #include <linux/kernel.h>
25 #include <linux/errno.h>
26 #include <linux/skbuff.h>
27 #include <linux/firmware.h>
28 #include <linux/module.h>
29 #include <linux/acpi.h>
31 #include <linux/property.h>
32 #include <linux/platform_data/x86/apple.h>
33 #include <linux/platform_device.h>
34 #include <linux/clk.h>
35 #include <linux/gpio/consumer.h>
36 #include <linux/tty.h>
37 #include <linux/interrupt.h>
38 #include <linux/dmi.h>
39 #include <linux/pm_runtime.h>
40 #include <linux/serdev.h>
42 #include <net/bluetooth/bluetooth.h>
43 #include <net/bluetooth/hci_core.h>
48 #define BCM_NULL_PKT 0x00
49 #define BCM_NULL_SIZE 0
51 #define BCM_LM_DIAG_PKT 0x07
52 #define BCM_LM_DIAG_SIZE 63
54 #define BCM_AUTOSUSPEND_DELAY 5000 /* default autosleep delay */
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
67 * @set_device_wakeup: callback to toggle BT_WAKE pin
68 * either by accessing @device_wakeup or by calling @btlp
69 * @set_shutdown: callback to toggle BT_REG_ON pin
70 * 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")
74 * @clk: clock used by Bluetooth device
75 * @clk_enabled: whether @clk is prepared and enabled
76 * @init_speed: default baudrate of Bluetooth device;
77 * the host UART is initially set to this baudrate so that
78 * it can configure the Bluetooth device for @oper_speed
79 * @oper_speed: preferred baudrate of Bluetooth device;
80 * set to 0 if @init_speed is already the preferred baudrate
81 * @irq: interrupt triggered by HOST_WAKE_BT pin
82 * @irq_active_low: whether @irq is active low
83 * @hu: pointer to HCI UART controller struct,
84 * used to disable flow control during runtime suspend and system sleep
85 * @is_suspended: whether flow control is currently disabled
88 /* Must be the first member, hci_serdev.c expects this. */
89 struct hci_uart serdev_hu
;
90 struct list_head list
;
95 struct gpio_desc
*device_wakeup
;
96 struct gpio_desc
*shutdown
;
97 int (*set_device_wakeup
)(struct bcm_device
*, bool);
98 int (*set_shutdown
)(struct bcm_device
*, bool);
100 acpi_handle btlp
, btpu
, btpd
;
117 /* generic bcm uart resources */
119 struct sk_buff
*rx_skb
;
120 struct sk_buff_head txq
;
122 struct bcm_device
*dev
;
125 /* List of BCM BT UART devices */
126 static DEFINE_MUTEX(bcm_device_lock
);
127 static LIST_HEAD(bcm_device_list
);
129 static inline void host_set_baudrate(struct hci_uart
*hu
, unsigned int speed
)
132 serdev_device_set_baudrate(hu
->serdev
, speed
);
134 hci_uart_set_baudrate(hu
, speed
);
137 static int bcm_set_baudrate(struct hci_uart
*hu
, unsigned int speed
)
139 struct hci_dev
*hdev
= hu
->hdev
;
141 struct bcm_update_uart_baud_rate param
;
143 if (speed
> 3000000) {
144 struct bcm_write_uart_clock_setting clock
;
146 clock
.type
= BCM_UART_CLOCK_48MHZ
;
148 bt_dev_dbg(hdev
, "Set Controller clock (%d)", clock
.type
);
150 /* This Broadcom specific command changes the UART's controller
151 * clock for baud rate > 3000000.
153 skb
= __hci_cmd_sync(hdev
, 0xfc45, 1, &clock
, HCI_INIT_TIMEOUT
);
155 int err
= PTR_ERR(skb
);
156 bt_dev_err(hdev
, "BCM: failed to write clock (%d)",
164 bt_dev_dbg(hdev
, "Set Controller UART speed to %d bit/s", speed
);
166 param
.zero
= cpu_to_le16(0);
167 param
.baud_rate
= cpu_to_le32(speed
);
169 /* This Broadcom specific command changes the UART's controller baud
172 skb
= __hci_cmd_sync(hdev
, 0xfc18, sizeof(param
), ¶m
,
175 int err
= PTR_ERR(skb
);
176 bt_dev_err(hdev
, "BCM: failed to write update baudrate (%d)",
186 /* bcm_device_exists should be protected by bcm_device_lock */
187 static bool bcm_device_exists(struct bcm_device
*device
)
192 /* Devices using serdev always exist */
193 if (device
&& device
->hu
&& device
->hu
->serdev
)
197 list_for_each(p
, &bcm_device_list
) {
198 struct bcm_device
*dev
= list_entry(p
, struct bcm_device
, list
);
207 static int bcm_gpio_set_power(struct bcm_device
*dev
, bool powered
)
211 if (powered
&& !IS_ERR(dev
->clk
) && !dev
->clk_enabled
) {
212 err
= clk_prepare_enable(dev
->clk
);
217 err
= dev
->set_shutdown(dev
, powered
);
219 goto err_clk_disable
;
221 err
= dev
->set_device_wakeup(dev
, powered
);
223 goto err_revert_shutdown
;
225 if (!powered
&& !IS_ERR(dev
->clk
) && dev
->clk_enabled
)
226 clk_disable_unprepare(dev
->clk
);
228 dev
->clk_enabled
= powered
;
233 dev
->set_shutdown(dev
, !powered
);
235 if (powered
&& !IS_ERR(dev
->clk
) && !dev
->clk_enabled
)
236 clk_disable_unprepare(dev
->clk
);
241 static irqreturn_t
bcm_host_wake(int irq
, void *data
)
243 struct bcm_device
*bdev
= data
;
245 bt_dev_dbg(bdev
, "Host wake IRQ");
247 pm_request_resume(bdev
->dev
);
252 static int bcm_request_irq(struct bcm_data
*bcm
)
254 struct bcm_device
*bdev
= bcm
->dev
;
257 mutex_lock(&bcm_device_lock
);
258 if (!bcm_device_exists(bdev
)) {
263 if (bdev
->irq
<= 0) {
268 err
= devm_request_irq(bdev
->dev
, bdev
->irq
, bcm_host_wake
,
269 bdev
->irq_active_low
? IRQF_TRIGGER_FALLING
:
277 device_init_wakeup(bdev
->dev
, true);
279 pm_runtime_set_autosuspend_delay(bdev
->dev
,
280 BCM_AUTOSUSPEND_DELAY
);
281 pm_runtime_use_autosuspend(bdev
->dev
);
282 pm_runtime_set_active(bdev
->dev
);
283 pm_runtime_enable(bdev
->dev
);
286 mutex_unlock(&bcm_device_lock
);
291 static const struct bcm_set_sleep_mode default_sleep_params
= {
292 .sleep_mode
= 1, /* 0=Disabled, 1=UART, 2=Reserved, 3=USB */
293 .idle_host
= 2, /* idle threshold HOST, in 300ms */
294 .idle_dev
= 2, /* idle threshold device, in 300ms */
295 .bt_wake_active
= 1, /* BT_WAKE active mode: 1 = high, 0 = low */
296 .host_wake_active
= 0, /* HOST_WAKE active mode: 1 = high, 0 = low */
297 .allow_host_sleep
= 1, /* Allow host sleep in SCO flag */
298 .combine_modes
= 1, /* Combine sleep and LPM flag */
299 .tristate_control
= 0, /* Allow tri-state control of UART tx flag */
300 /* Irrelevant USB flags */
302 .usb_resume_timeout
= 0,
304 .pulsed_host_wake
= 0,
307 static int bcm_setup_sleep(struct hci_uart
*hu
)
309 struct bcm_data
*bcm
= hu
->priv
;
311 struct bcm_set_sleep_mode sleep_params
= default_sleep_params
;
313 sleep_params
.host_wake_active
= !bcm
->dev
->irq_active_low
;
315 skb
= __hci_cmd_sync(hu
->hdev
, 0xfc27, sizeof(sleep_params
),
316 &sleep_params
, HCI_INIT_TIMEOUT
);
318 int err
= PTR_ERR(skb
);
319 bt_dev_err(hu
->hdev
, "Sleep VSC failed (%d)", err
);
324 bt_dev_dbg(hu
->hdev
, "Set Sleep Parameters VSC succeeded");
329 static inline int bcm_request_irq(struct bcm_data
*bcm
) { return 0; }
330 static inline int bcm_setup_sleep(struct hci_uart
*hu
) { return 0; }
333 static int bcm_set_diag(struct hci_dev
*hdev
, bool enable
)
335 struct hci_uart
*hu
= hci_get_drvdata(hdev
);
336 struct bcm_data
*bcm
= hu
->priv
;
339 if (!test_bit(HCI_RUNNING
, &hdev
->flags
))
342 skb
= bt_skb_alloc(3, GFP_KERNEL
);
346 skb_put_u8(skb
, BCM_LM_DIAG_PKT
);
347 skb_put_u8(skb
, 0xf0);
348 skb_put_u8(skb
, enable
);
350 skb_queue_tail(&bcm
->txq
, skb
);
351 hci_uart_tx_wakeup(hu
);
356 static int bcm_open(struct hci_uart
*hu
)
358 struct bcm_data
*bcm
;
362 bt_dev_dbg(hu
->hdev
, "hu %p", hu
);
364 bcm
= kzalloc(sizeof(*bcm
), GFP_KERNEL
);
368 skb_queue_head_init(&bcm
->txq
);
372 mutex_lock(&bcm_device_lock
);
375 err
= serdev_device_open(hu
->serdev
);
379 bcm
->dev
= serdev_device_get_drvdata(hu
->serdev
);
386 list_for_each(p
, &bcm_device_list
) {
387 struct bcm_device
*dev
= list_entry(p
, struct bcm_device
, list
);
389 /* Retrieve saved bcm_device based on parent of the
390 * platform device (saved during device probe) and
391 * parent of tty device used by hci_uart
393 if (hu
->tty
->dev
->parent
== dev
->dev
->parent
) {
404 hu
->init_speed
= bcm
->dev
->init_speed
;
405 hu
->oper_speed
= bcm
->dev
->oper_speed
;
406 err
= bcm_gpio_set_power(bcm
->dev
, true);
411 mutex_unlock(&bcm_device_lock
);
416 serdev_device_close(hu
->serdev
);
422 mutex_unlock(&bcm_device_lock
);
428 static int bcm_close(struct hci_uart
*hu
)
430 struct bcm_data
*bcm
= hu
->priv
;
431 struct bcm_device
*bdev
= NULL
;
434 bt_dev_dbg(hu
->hdev
, "hu %p", hu
);
436 /* Protect bcm->dev against removal of the device or driver */
437 mutex_lock(&bcm_device_lock
);
440 serdev_device_close(hu
->serdev
);
441 bdev
= serdev_device_get_drvdata(hu
->serdev
);
442 } else if (bcm_device_exists(bcm
->dev
)) {
450 if (IS_ENABLED(CONFIG_PM
) && bdev
->irq
> 0) {
451 devm_free_irq(bdev
->dev
, bdev
->irq
, bdev
);
452 device_init_wakeup(bdev
->dev
, false);
453 pm_runtime_disable(bdev
->dev
);
456 err
= bcm_gpio_set_power(bdev
, false);
458 bt_dev_err(hu
->hdev
, "Failed to power down");
460 pm_runtime_set_suspended(bdev
->dev
);
462 mutex_unlock(&bcm_device_lock
);
464 skb_queue_purge(&bcm
->txq
);
465 kfree_skb(bcm
->rx_skb
);
472 static int bcm_flush(struct hci_uart
*hu
)
474 struct bcm_data
*bcm
= hu
->priv
;
476 bt_dev_dbg(hu
->hdev
, "hu %p", hu
);
478 skb_queue_purge(&bcm
->txq
);
483 static int bcm_setup(struct hci_uart
*hu
)
485 struct bcm_data
*bcm
= hu
->priv
;
487 const struct firmware
*fw
;
491 bt_dev_dbg(hu
->hdev
, "hu %p", hu
);
493 hu
->hdev
->set_diag
= bcm_set_diag
;
494 hu
->hdev
->set_bdaddr
= btbcm_set_bdaddr
;
496 err
= btbcm_initialize(hu
->hdev
, fw_name
, sizeof(fw_name
));
500 err
= request_firmware(&fw
, fw_name
, &hu
->hdev
->dev
);
502 bt_dev_info(hu
->hdev
, "BCM: Patch %s not found", fw_name
);
506 err
= btbcm_patchram(hu
->hdev
, fw
);
508 bt_dev_info(hu
->hdev
, "BCM: Patch failed (%d)", err
);
512 /* Init speed if any */
514 speed
= hu
->init_speed
;
515 else if (hu
->proto
->init_speed
)
516 speed
= hu
->proto
->init_speed
;
521 host_set_baudrate(hu
, speed
);
523 /* Operational speed if any */
525 speed
= hu
->oper_speed
;
526 else if (hu
->proto
->oper_speed
)
527 speed
= hu
->proto
->oper_speed
;
532 err
= bcm_set_baudrate(hu
, speed
);
534 host_set_baudrate(hu
, speed
);
538 release_firmware(fw
);
540 err
= btbcm_finalize(hu
->hdev
);
544 if (!bcm_request_irq(bcm
))
545 err
= bcm_setup_sleep(hu
);
550 #define BCM_RECV_LM_DIAG \
551 .type = BCM_LM_DIAG_PKT, \
552 .hlen = BCM_LM_DIAG_SIZE, \
555 .maxlen = BCM_LM_DIAG_SIZE
557 #define BCM_RECV_NULL \
558 .type = BCM_NULL_PKT, \
559 .hlen = BCM_NULL_SIZE, \
562 .maxlen = BCM_NULL_SIZE
564 static const struct h4_recv_pkt bcm_recv_pkts
[] = {
565 { H4_RECV_ACL
, .recv
= hci_recv_frame
},
566 { H4_RECV_SCO
, .recv
= hci_recv_frame
},
567 { H4_RECV_EVENT
, .recv
= hci_recv_frame
},
568 { BCM_RECV_LM_DIAG
, .recv
= hci_recv_diag
},
569 { BCM_RECV_NULL
, .recv
= hci_recv_diag
},
572 static int bcm_recv(struct hci_uart
*hu
, const void *data
, int count
)
574 struct bcm_data
*bcm
= hu
->priv
;
576 if (!test_bit(HCI_UART_REGISTERED
, &hu
->flags
))
579 bcm
->rx_skb
= h4_recv_buf(hu
->hdev
, bcm
->rx_skb
, data
, count
,
580 bcm_recv_pkts
, ARRAY_SIZE(bcm_recv_pkts
));
581 if (IS_ERR(bcm
->rx_skb
)) {
582 int err
= PTR_ERR(bcm
->rx_skb
);
583 bt_dev_err(hu
->hdev
, "Frame reassembly failed (%d)", err
);
586 } else if (!bcm
->rx_skb
) {
587 /* Delay auto-suspend when receiving completed packet */
588 mutex_lock(&bcm_device_lock
);
589 if (bcm
->dev
&& bcm_device_exists(bcm
->dev
))
590 pm_request_resume(bcm
->dev
->dev
);
591 mutex_unlock(&bcm_device_lock
);
597 static int bcm_enqueue(struct hci_uart
*hu
, struct sk_buff
*skb
)
599 struct bcm_data
*bcm
= hu
->priv
;
601 bt_dev_dbg(hu
->hdev
, "hu %p skb %p", hu
, skb
);
603 /* Prepend skb with frame type */
604 memcpy(skb_push(skb
, 1), &hci_skb_pkt_type(skb
), 1);
605 skb_queue_tail(&bcm
->txq
, skb
);
610 static struct sk_buff
*bcm_dequeue(struct hci_uart
*hu
)
612 struct bcm_data
*bcm
= hu
->priv
;
613 struct sk_buff
*skb
= NULL
;
614 struct bcm_device
*bdev
= NULL
;
616 mutex_lock(&bcm_device_lock
);
618 if (bcm_device_exists(bcm
->dev
)) {
620 pm_runtime_get_sync(bdev
->dev
);
621 /* Shall be resumed here */
624 skb
= skb_dequeue(&bcm
->txq
);
627 pm_runtime_mark_last_busy(bdev
->dev
);
628 pm_runtime_put_autosuspend(bdev
->dev
);
631 mutex_unlock(&bcm_device_lock
);
637 static int bcm_suspend_device(struct device
*dev
)
639 struct bcm_device
*bdev
= dev_get_drvdata(dev
);
642 bt_dev_dbg(bdev
, "");
644 if (!bdev
->is_suspended
&& bdev
->hu
) {
645 hci_uart_set_flow_control(bdev
->hu
, true);
647 /* Once this returns, driver suspends BT via GPIO */
648 bdev
->is_suspended
= true;
651 /* Suspend the device */
652 err
= bdev
->set_device_wakeup(bdev
, false);
654 if (bdev
->is_suspended
&& bdev
->hu
) {
655 bdev
->is_suspended
= false;
656 hci_uart_set_flow_control(bdev
->hu
, false);
661 bt_dev_dbg(bdev
, "suspend, delaying 15 ms");
667 static int bcm_resume_device(struct device
*dev
)
669 struct bcm_device
*bdev
= dev_get_drvdata(dev
);
672 bt_dev_dbg(bdev
, "");
674 err
= bdev
->set_device_wakeup(bdev
, true);
676 dev_err(dev
, "Failed to power up\n");
680 bt_dev_dbg(bdev
, "resume, delaying 15 ms");
683 /* When this executes, the device has woken up already */
684 if (bdev
->is_suspended
&& bdev
->hu
) {
685 bdev
->is_suspended
= false;
687 hci_uart_set_flow_control(bdev
->hu
, false);
694 #ifdef CONFIG_PM_SLEEP
695 /* suspend callback */
696 static int bcm_suspend(struct device
*dev
)
698 struct bcm_device
*bdev
= dev_get_drvdata(dev
);
701 bt_dev_dbg(bdev
, "suspend: is_suspended %d", bdev
->is_suspended
);
704 * When used with a device instantiated as platform_device, bcm_suspend
705 * can be called at any time as long as the platform device is bound,
706 * so it should use bcm_device_lock to protect access to hci_uart
707 * and device_wake-up GPIO.
709 mutex_lock(&bcm_device_lock
);
714 if (pm_runtime_active(dev
))
715 bcm_suspend_device(dev
);
717 if (device_may_wakeup(dev
) && bdev
->irq
> 0) {
718 error
= enable_irq_wake(bdev
->irq
);
720 bt_dev_dbg(bdev
, "BCM irq: enabled");
724 mutex_unlock(&bcm_device_lock
);
729 /* resume callback */
730 static int bcm_resume(struct device
*dev
)
732 struct bcm_device
*bdev
= dev_get_drvdata(dev
);
735 bt_dev_dbg(bdev
, "resume: is_suspended %d", bdev
->is_suspended
);
738 * When used with a device instantiated as platform_device, bcm_resume
739 * can be called at any time as long as platform device is bound,
740 * so it should use bcm_device_lock to protect access to hci_uart
741 * and device_wake-up GPIO.
743 mutex_lock(&bcm_device_lock
);
748 if (device_may_wakeup(dev
) && bdev
->irq
> 0) {
749 disable_irq_wake(bdev
->irq
);
750 bt_dev_dbg(bdev
, "BCM irq: disabled");
753 err
= bcm_resume_device(dev
);
756 mutex_unlock(&bcm_device_lock
);
759 pm_runtime_disable(dev
);
760 pm_runtime_set_active(dev
);
761 pm_runtime_enable(dev
);
768 static const struct acpi_gpio_params int_last_device_wakeup_gpios
= { 0, 0, false };
769 static const struct acpi_gpio_params int_last_shutdown_gpios
= { 1, 0, false };
770 static const struct acpi_gpio_params int_last_host_wakeup_gpios
= { 2, 0, false };
772 static const struct acpi_gpio_mapping acpi_bcm_int_last_gpios
[] = {
773 { "device-wakeup-gpios", &int_last_device_wakeup_gpios
, 1 },
774 { "shutdown-gpios", &int_last_shutdown_gpios
, 1 },
775 { "host-wakeup-gpios", &int_last_host_wakeup_gpios
, 1 },
779 static const struct acpi_gpio_params int_first_host_wakeup_gpios
= { 0, 0, false };
780 static const struct acpi_gpio_params int_first_device_wakeup_gpios
= { 1, 0, false };
781 static const struct acpi_gpio_params int_first_shutdown_gpios
= { 2, 0, false };
783 static const struct acpi_gpio_mapping acpi_bcm_int_first_gpios
[] = {
784 { "device-wakeup-gpios", &int_first_device_wakeup_gpios
, 1 },
785 { "shutdown-gpios", &int_first_shutdown_gpios
, 1 },
786 { "host-wakeup-gpios", &int_first_host_wakeup_gpios
, 1 },
791 /* IRQ polarity of some chipsets are not defined correctly in ACPI table. */
792 static const struct dmi_system_id bcm_active_low_irq_dmi_table
[] = {
794 .ident
= "Asus T100TA",
796 DMI_EXACT_MATCH(DMI_SYS_VENDOR
,
797 "ASUSTeK COMPUTER INC."),
798 DMI_EXACT_MATCH(DMI_PRODUCT_NAME
, "T100TA"),
802 .ident
= "Asus T100CHI",
804 DMI_EXACT_MATCH(DMI_SYS_VENDOR
,
805 "ASUSTeK COMPUTER INC."),
806 DMI_EXACT_MATCH(DMI_PRODUCT_NAME
, "T100CHI"),
809 { /* Handle ThinkPad 8 tablets with BCM2E55 chipset ACPI ID */
810 .ident
= "Lenovo ThinkPad 8",
812 DMI_EXACT_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
813 DMI_EXACT_MATCH(DMI_PRODUCT_VERSION
, "ThinkPad 8"),
817 .ident
= "MINIX Z83-4",
819 DMI_EXACT_MATCH(DMI_SYS_VENDOR
, "MINIX"),
820 DMI_MATCH(DMI_PRODUCT_NAME
, "Z83-4"),
826 static int bcm_resource(struct acpi_resource
*ares
, void *data
)
828 struct bcm_device
*dev
= data
;
829 struct acpi_resource_extended_irq
*irq
;
830 struct acpi_resource_gpio
*gpio
;
831 struct acpi_resource_uart_serialbus
*sb
;
833 switch (ares
->type
) {
834 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ
:
835 irq
= &ares
->data
.extended_irq
;
836 dev
->irq_active_low
= irq
->polarity
== ACPI_ACTIVE_LOW
;
839 case ACPI_RESOURCE_TYPE_GPIO
:
840 gpio
= &ares
->data
.gpio
;
841 if (gpio
->connection_type
== ACPI_RESOURCE_GPIO_TYPE_INT
)
842 dev
->irq_active_low
= gpio
->polarity
== ACPI_ACTIVE_LOW
;
845 case ACPI_RESOURCE_TYPE_SERIAL_BUS
:
846 sb
= &ares
->data
.uart_serial_bus
;
847 if (sb
->type
== ACPI_RESOURCE_SERIAL_TYPE_UART
) {
848 dev
->init_speed
= sb
->default_baud_rate
;
849 dev
->oper_speed
= 4000000;
860 static int bcm_apple_set_device_wakeup(struct bcm_device
*dev
, bool awake
)
862 if (ACPI_FAILURE(acpi_execute_simple_method(dev
->btlp
, NULL
, !awake
)))
868 static int bcm_apple_set_shutdown(struct bcm_device
*dev
, bool powered
)
870 if (ACPI_FAILURE(acpi_evaluate_object(powered
? dev
->btpu
: dev
->btpd
,
877 static int bcm_apple_get_resources(struct bcm_device
*dev
)
879 struct acpi_device
*adev
= ACPI_COMPANION(dev
->dev
);
880 const union acpi_object
*obj
;
883 ACPI_FAILURE(acpi_get_handle(adev
->handle
, "BTLP", &dev
->btlp
)) ||
884 ACPI_FAILURE(acpi_get_handle(adev
->handle
, "BTPU", &dev
->btpu
)) ||
885 ACPI_FAILURE(acpi_get_handle(adev
->handle
, "BTPD", &dev
->btpd
)))
888 if (!acpi_dev_get_property(adev
, "baud", ACPI_TYPE_BUFFER
, &obj
) &&
889 obj
->buffer
.length
== 8)
890 dev
->init_speed
= *(u64
*)obj
->buffer
.pointer
;
892 dev
->set_device_wakeup
= bcm_apple_set_device_wakeup
;
893 dev
->set_shutdown
= bcm_apple_set_shutdown
;
898 static inline int bcm_apple_get_resources(struct bcm_device
*dev
)
902 #endif /* CONFIG_ACPI */
904 static int bcm_gpio_set_device_wakeup(struct bcm_device
*dev
, bool awake
)
906 gpiod_set_value(dev
->device_wakeup
, awake
);
910 static int bcm_gpio_set_shutdown(struct bcm_device
*dev
, bool powered
)
912 gpiod_set_value(dev
->shutdown
, powered
);
916 static int bcm_get_resources(struct bcm_device
*dev
)
918 dev
->name
= dev_name(dev
->dev
);
920 if (x86_apple_machine
&& !bcm_apple_get_resources(dev
))
923 dev
->clk
= devm_clk_get(dev
->dev
, NULL
);
925 dev
->device_wakeup
= devm_gpiod_get(dev
->dev
, "device-wakeup",
927 if (IS_ERR(dev
->device_wakeup
))
928 return PTR_ERR(dev
->device_wakeup
);
930 dev
->shutdown
= devm_gpiod_get(dev
->dev
, "shutdown", GPIOD_OUT_LOW
);
931 if (IS_ERR(dev
->shutdown
))
932 return PTR_ERR(dev
->shutdown
);
934 dev
->set_device_wakeup
= bcm_gpio_set_device_wakeup
;
935 dev
->set_shutdown
= bcm_gpio_set_shutdown
;
937 /* IRQ can be declared in ACPI table as Interrupt or GpioInt */
939 struct gpio_desc
*gpio
;
941 gpio
= devm_gpiod_get_optional(dev
->dev
, "host-wakeup",
944 return PTR_ERR(gpio
);
946 dev
->irq
= gpiod_to_irq(gpio
);
949 dev_dbg(dev
->dev
, "BCM irq: %d\n", dev
->irq
);
954 static int bcm_acpi_probe(struct bcm_device
*dev
)
956 LIST_HEAD(resources
);
957 const struct dmi_system_id
*dmi_id
;
958 const struct acpi_gpio_mapping
*gpio_mapping
= acpi_bcm_int_last_gpios
;
959 const struct acpi_device_id
*id
;
960 struct resource_entry
*entry
;
963 /* Retrieve GPIO data */
964 id
= acpi_match_device(dev
->dev
->driver
->acpi_match_table
, dev
->dev
);
966 gpio_mapping
= (const struct acpi_gpio_mapping
*) id
->driver_data
;
968 ret
= devm_acpi_dev_add_driver_gpios(dev
->dev
, gpio_mapping
);
972 /* Retrieve UART ACPI info */
973 ret
= acpi_dev_get_resources(ACPI_COMPANION(dev
->dev
),
974 &resources
, bcm_resource
, dev
);
978 resource_list_for_each_entry(entry
, &resources
) {
979 if (resource_type(entry
->res
) == IORESOURCE_IRQ
) {
980 dev
->irq
= entry
->res
->start
;
984 acpi_dev_free_resource_list(&resources
);
986 dmi_id
= dmi_first_match(bcm_active_low_irq_dmi_table
);
988 dev_warn(dev
->dev
, "%s: Overwriting IRQ polarity to active low",
990 dev
->irq_active_low
= true;
996 static int bcm_acpi_probe(struct bcm_device
*dev
)
1000 #endif /* CONFIG_ACPI */
1002 static int bcm_of_probe(struct bcm_device
*bdev
)
1004 device_property_read_u32(bdev
->dev
, "max-speed", &bdev
->oper_speed
);
1008 static int bcm_probe(struct platform_device
*pdev
)
1010 struct bcm_device
*dev
;
1013 dev
= devm_kzalloc(&pdev
->dev
, sizeof(*dev
), GFP_KERNEL
);
1017 dev
->dev
= &pdev
->dev
;
1018 dev
->irq
= platform_get_irq(pdev
, 0);
1020 if (has_acpi_companion(&pdev
->dev
)) {
1021 ret
= bcm_acpi_probe(dev
);
1026 ret
= bcm_get_resources(dev
);
1030 platform_set_drvdata(pdev
, dev
);
1032 dev_info(&pdev
->dev
, "%s device registered.\n", dev
->name
);
1034 /* Place this instance on the device list */
1035 mutex_lock(&bcm_device_lock
);
1036 list_add_tail(&dev
->list
, &bcm_device_list
);
1037 mutex_unlock(&bcm_device_lock
);
1039 ret
= bcm_gpio_set_power(dev
, false);
1041 dev_err(&pdev
->dev
, "Failed to power down\n");
1046 static int bcm_remove(struct platform_device
*pdev
)
1048 struct bcm_device
*dev
= platform_get_drvdata(pdev
);
1050 mutex_lock(&bcm_device_lock
);
1051 list_del(&dev
->list
);
1052 mutex_unlock(&bcm_device_lock
);
1054 dev_info(&pdev
->dev
, "%s device unregistered.\n", dev
->name
);
1059 static const struct hci_uart_proto bcm_proto
= {
1063 .init_speed
= 115200,
1068 .set_baudrate
= bcm_set_baudrate
,
1070 .enqueue
= bcm_enqueue
,
1071 .dequeue
= bcm_dequeue
,
1075 static const struct acpi_device_id bcm_acpi_match
[] = {
1076 { "BCM2E1A", (kernel_ulong_t
)&acpi_bcm_int_last_gpios
},
1077 { "BCM2E39", (kernel_ulong_t
)&acpi_bcm_int_last_gpios
},
1078 { "BCM2E3A", (kernel_ulong_t
)&acpi_bcm_int_last_gpios
},
1079 { "BCM2E3D", (kernel_ulong_t
)&acpi_bcm_int_last_gpios
},
1080 { "BCM2E3F", (kernel_ulong_t
)&acpi_bcm_int_last_gpios
},
1081 { "BCM2E40", (kernel_ulong_t
)&acpi_bcm_int_last_gpios
},
1082 { "BCM2E54", (kernel_ulong_t
)&acpi_bcm_int_last_gpios
},
1083 { "BCM2E55", (kernel_ulong_t
)&acpi_bcm_int_last_gpios
},
1084 { "BCM2E64", (kernel_ulong_t
)&acpi_bcm_int_last_gpios
},
1085 { "BCM2E65", (kernel_ulong_t
)&acpi_bcm_int_last_gpios
},
1086 { "BCM2E67", (kernel_ulong_t
)&acpi_bcm_int_last_gpios
},
1087 { "BCM2E71", (kernel_ulong_t
)&acpi_bcm_int_last_gpios
},
1088 { "BCM2E72", (kernel_ulong_t
)&acpi_bcm_int_last_gpios
},
1089 { "BCM2E7B", (kernel_ulong_t
)&acpi_bcm_int_last_gpios
},
1090 { "BCM2E7C", (kernel_ulong_t
)&acpi_bcm_int_last_gpios
},
1091 { "BCM2E7E", (kernel_ulong_t
)&acpi_bcm_int_first_gpios
},
1092 { "BCM2E95", (kernel_ulong_t
)&acpi_bcm_int_first_gpios
},
1093 { "BCM2E96", (kernel_ulong_t
)&acpi_bcm_int_first_gpios
},
1094 { "BCM2EA4", (kernel_ulong_t
)&acpi_bcm_int_first_gpios
},
1097 MODULE_DEVICE_TABLE(acpi
, bcm_acpi_match
);
1100 /* suspend and resume callbacks */
1101 static const struct dev_pm_ops bcm_pm_ops
= {
1102 SET_SYSTEM_SLEEP_PM_OPS(bcm_suspend
, bcm_resume
)
1103 SET_RUNTIME_PM_OPS(bcm_suspend_device
, bcm_resume_device
, NULL
)
1106 static struct platform_driver bcm_driver
= {
1108 .remove
= bcm_remove
,
1111 .acpi_match_table
= ACPI_PTR(bcm_acpi_match
),
1116 static int bcm_serdev_probe(struct serdev_device
*serdev
)
1118 struct bcm_device
*bcmdev
;
1121 bcmdev
= devm_kzalloc(&serdev
->dev
, sizeof(*bcmdev
), GFP_KERNEL
);
1125 bcmdev
->dev
= &serdev
->dev
;
1127 bcmdev
->hu
= &bcmdev
->serdev_hu
;
1129 bcmdev
->serdev_hu
.serdev
= serdev
;
1130 serdev_device_set_drvdata(serdev
, bcmdev
);
1132 if (has_acpi_companion(&serdev
->dev
))
1133 err
= bcm_acpi_probe(bcmdev
);
1135 err
= bcm_of_probe(bcmdev
);
1139 err
= bcm_get_resources(bcmdev
);
1143 err
= bcm_gpio_set_power(bcmdev
, false);
1145 dev_err(&serdev
->dev
, "Failed to power down\n");
1147 return hci_uart_register_device(&bcmdev
->serdev_hu
, &bcm_proto
);
1150 static void bcm_serdev_remove(struct serdev_device
*serdev
)
1152 struct bcm_device
*bcmdev
= serdev_device_get_drvdata(serdev
);
1154 hci_uart_unregister_device(&bcmdev
->serdev_hu
);
1158 static const struct of_device_id bcm_bluetooth_of_match
[] = {
1159 { .compatible
= "brcm,bcm43438-bt" },
1162 MODULE_DEVICE_TABLE(of
, bcm_bluetooth_of_match
);
1165 static struct serdev_device_driver bcm_serdev_driver
= {
1166 .probe
= bcm_serdev_probe
,
1167 .remove
= bcm_serdev_remove
,
1169 .name
= "hci_uart_bcm",
1170 .of_match_table
= of_match_ptr(bcm_bluetooth_of_match
),
1171 .acpi_match_table
= ACPI_PTR(bcm_acpi_match
),
1176 int __init
bcm_init(void)
1178 /* For now, we need to keep both platform device
1179 * driver (ACPI generated) and serdev driver (DT).
1181 platform_driver_register(&bcm_driver
);
1182 serdev_device_driver_register(&bcm_serdev_driver
);
1184 return hci_uart_register_proto(&bcm_proto
);
1187 int __exit
bcm_deinit(void)
1189 platform_driver_unregister(&bcm_driver
);
1190 serdev_device_driver_unregister(&bcm_serdev_driver
);
1192 return hci_uart_unregister_proto(&bcm_proto
);