3 * Bluetooth HCI Three-wire UART driver
5 * Copyright (C) 2012 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/acpi.h>
25 #include <linux/errno.h>
26 #include <linux/gpio/consumer.h>
27 #include <linux/kernel.h>
28 #include <linux/mod_devicetable.h>
29 #include <linux/serdev.h>
30 #include <linux/skbuff.h>
32 #include <net/bluetooth/bluetooth.h>
33 #include <net/bluetooth/hci_core.h>
38 #define HCI_3WIRE_ACK_PKT 0
39 #define HCI_3WIRE_LINK_PKT 15
41 /* Sliding window size */
42 #define H5_TX_WIN_MAX 4
44 #define H5_ACK_TIMEOUT msecs_to_jiffies(250)
45 #define H5_SYNC_TIMEOUT msecs_to_jiffies(100)
48 * Maximum Three-wire packet:
49 * 4 byte header + max value for 12-bit length + 2 bytes for CRC
51 #define H5_MAX_LEN (4 + 0xfff + 2)
53 /* Convenience macros for reading Three-wire header values */
54 #define H5_HDR_SEQ(hdr) ((hdr)[0] & 0x07)
55 #define H5_HDR_ACK(hdr) (((hdr)[0] >> 3) & 0x07)
56 #define H5_HDR_CRC(hdr) (((hdr)[0] >> 6) & 0x01)
57 #define H5_HDR_RELIABLE(hdr) (((hdr)[0] >> 7) & 0x01)
58 #define H5_HDR_PKT_TYPE(hdr) ((hdr)[1] & 0x0f)
59 #define H5_HDR_LEN(hdr) ((((hdr)[1] >> 4) & 0x0f) + ((hdr)[2] << 4))
61 #define SLIP_DELIMITER 0xc0
63 #define SLIP_ESC_DELIM 0xdc
64 #define SLIP_ESC_ESC 0xdd
68 H5_RX_ESC
, /* SLIP escape mode */
69 H5_TX_ACK_REQ
, /* Pending ack to send */
73 /* Must be the first member, hci_serdev.c expects this. */
74 struct hci_uart serdev_hu
;
76 struct sk_buff_head unack
; /* Unack'ed packets queue */
77 struct sk_buff_head rel
; /* Reliable packets queue */
78 struct sk_buff_head unrel
; /* Unreliable packets queue */
82 struct sk_buff
*rx_skb
; /* Receive buffer */
83 size_t rx_pending
; /* Expecting more bytes */
84 u8 rx_ack
; /* Last ack number received */
86 int (*rx_func
)(struct hci_uart
*hu
, u8 c
);
88 struct timer_list timer
; /* Retransmission timer */
89 struct hci_uart
*hu
; /* Parent HCI UART */
91 u8 tx_seq
; /* Next seq number to send */
92 u8 tx_ack
; /* Next ack number to send */
93 u8 tx_win
; /* Sliding window size */
107 const struct h5_vnd
*vnd
;
110 struct gpio_desc
*enable_gpio
;
111 struct gpio_desc
*device_wake_gpio
;
115 int (*setup
)(struct h5
*h5
);
116 void (*open
)(struct h5
*h5
);
117 void (*close
)(struct h5
*h5
);
118 int (*suspend
)(struct h5
*h5
);
119 int (*resume
)(struct h5
*h5
);
120 const struct acpi_gpio_mapping
*acpi_gpio_map
;
123 static void h5_reset_rx(struct h5
*h5
);
125 static void h5_link_control(struct hci_uart
*hu
, const void *data
, size_t len
)
127 struct h5
*h5
= hu
->priv
;
128 struct sk_buff
*nskb
;
130 nskb
= alloc_skb(3, GFP_ATOMIC
);
134 hci_skb_pkt_type(nskb
) = HCI_3WIRE_LINK_PKT
;
136 skb_put_data(nskb
, data
, len
);
138 skb_queue_tail(&h5
->unrel
, nskb
);
141 static u8
h5_cfg_field(struct h5
*h5
)
143 /* Sliding window size (first 3 bits) */
144 return h5
->tx_win
& 0x07;
147 static void h5_timed_event(struct timer_list
*t
)
149 const unsigned char sync_req
[] = { 0x01, 0x7e };
150 unsigned char conf_req
[3] = { 0x03, 0xfc };
151 struct h5
*h5
= from_timer(h5
, t
, timer
);
152 struct hci_uart
*hu
= h5
->hu
;
156 BT_DBG("%s", hu
->hdev
->name
);
158 if (h5
->state
== H5_UNINITIALIZED
)
159 h5_link_control(hu
, sync_req
, sizeof(sync_req
));
161 if (h5
->state
== H5_INITIALIZED
) {
162 conf_req
[2] = h5_cfg_field(h5
);
163 h5_link_control(hu
, conf_req
, sizeof(conf_req
));
166 if (h5
->state
!= H5_ACTIVE
) {
167 mod_timer(&h5
->timer
, jiffies
+ H5_SYNC_TIMEOUT
);
171 if (h5
->sleep
!= H5_AWAKE
) {
172 h5
->sleep
= H5_SLEEPING
;
176 BT_DBG("hu %p retransmitting %u pkts", hu
, h5
->unack
.qlen
);
178 spin_lock_irqsave_nested(&h5
->unack
.lock
, flags
, SINGLE_DEPTH_NESTING
);
180 while ((skb
= __skb_dequeue_tail(&h5
->unack
)) != NULL
) {
181 h5
->tx_seq
= (h5
->tx_seq
- 1) & 0x07;
182 skb_queue_head(&h5
->rel
, skb
);
185 spin_unlock_irqrestore(&h5
->unack
.lock
, flags
);
188 hci_uart_tx_wakeup(hu
);
191 static void h5_peer_reset(struct hci_uart
*hu
)
193 struct h5
*h5
= hu
->priv
;
195 BT_ERR("Peer device has reset");
197 h5
->state
= H5_UNINITIALIZED
;
199 del_timer(&h5
->timer
);
201 skb_queue_purge(&h5
->rel
);
202 skb_queue_purge(&h5
->unrel
);
203 skb_queue_purge(&h5
->unack
);
208 /* Send reset request to upper stack */
209 hci_reset_dev(hu
->hdev
);
212 static int h5_open(struct hci_uart
*hu
)
215 const unsigned char sync
[] = { 0x01, 0x7e };
220 h5
= serdev_device_get_drvdata(hu
->serdev
);
222 h5
= kzalloc(sizeof(*h5
), GFP_KERNEL
);
230 skb_queue_head_init(&h5
->unack
);
231 skb_queue_head_init(&h5
->rel
);
232 skb_queue_head_init(&h5
->unrel
);
236 timer_setup(&h5
->timer
, h5_timed_event
, 0);
238 h5
->tx_win
= H5_TX_WIN_MAX
;
240 if (h5
->vnd
&& h5
->vnd
->open
)
243 set_bit(HCI_UART_INIT_PENDING
, &hu
->hdev_flags
);
245 /* Send initial sync request */
246 h5_link_control(hu
, sync
, sizeof(sync
));
247 mod_timer(&h5
->timer
, jiffies
+ H5_SYNC_TIMEOUT
);
252 static int h5_close(struct hci_uart
*hu
)
254 struct h5
*h5
= hu
->priv
;
256 del_timer_sync(&h5
->timer
);
258 skb_queue_purge(&h5
->unack
);
259 skb_queue_purge(&h5
->rel
);
260 skb_queue_purge(&h5
->unrel
);
262 if (h5
->vnd
&& h5
->vnd
->close
)
271 static int h5_setup(struct hci_uart
*hu
)
273 struct h5
*h5
= hu
->priv
;
275 if (h5
->vnd
&& h5
->vnd
->setup
)
276 return h5
->vnd
->setup(h5
);
281 static void h5_pkt_cull(struct h5
*h5
)
283 struct sk_buff
*skb
, *tmp
;
288 spin_lock_irqsave(&h5
->unack
.lock
, flags
);
290 to_remove
= skb_queue_len(&h5
->unack
);
296 while (to_remove
> 0) {
297 if (h5
->rx_ack
== seq
)
301 seq
= (seq
- 1) & 0x07;
304 if (seq
!= h5
->rx_ack
)
305 BT_ERR("Controller acked invalid packet");
308 skb_queue_walk_safe(&h5
->unack
, skb
, tmp
) {
309 if (i
++ >= to_remove
)
312 __skb_unlink(skb
, &h5
->unack
);
316 if (skb_queue_empty(&h5
->unack
))
317 del_timer(&h5
->timer
);
320 spin_unlock_irqrestore(&h5
->unack
.lock
, flags
);
323 static void h5_handle_internal_rx(struct hci_uart
*hu
)
325 struct h5
*h5
= hu
->priv
;
326 const unsigned char sync_req
[] = { 0x01, 0x7e };
327 const unsigned char sync_rsp
[] = { 0x02, 0x7d };
328 unsigned char conf_req
[3] = { 0x03, 0xfc };
329 const unsigned char conf_rsp
[] = { 0x04, 0x7b };
330 const unsigned char wakeup_req
[] = { 0x05, 0xfa };
331 const unsigned char woken_req
[] = { 0x06, 0xf9 };
332 const unsigned char sleep_req
[] = { 0x07, 0x78 };
333 const unsigned char *hdr
= h5
->rx_skb
->data
;
334 const unsigned char *data
= &h5
->rx_skb
->data
[4];
336 BT_DBG("%s", hu
->hdev
->name
);
338 if (H5_HDR_PKT_TYPE(hdr
) != HCI_3WIRE_LINK_PKT
)
341 if (H5_HDR_LEN(hdr
) < 2)
344 conf_req
[2] = h5_cfg_field(h5
);
346 if (memcmp(data
, sync_req
, 2) == 0) {
347 if (h5
->state
== H5_ACTIVE
)
349 h5_link_control(hu
, sync_rsp
, 2);
350 } else if (memcmp(data
, sync_rsp
, 2) == 0) {
351 if (h5
->state
== H5_ACTIVE
)
353 h5
->state
= H5_INITIALIZED
;
354 h5_link_control(hu
, conf_req
, 3);
355 } else if (memcmp(data
, conf_req
, 2) == 0) {
356 h5_link_control(hu
, conf_rsp
, 2);
357 h5_link_control(hu
, conf_req
, 3);
358 } else if (memcmp(data
, conf_rsp
, 2) == 0) {
359 if (H5_HDR_LEN(hdr
) > 2)
360 h5
->tx_win
= (data
[2] & 0x07);
361 BT_DBG("Three-wire init complete. tx_win %u", h5
->tx_win
);
362 h5
->state
= H5_ACTIVE
;
363 hci_uart_init_ready(hu
);
365 } else if (memcmp(data
, sleep_req
, 2) == 0) {
366 BT_DBG("Peer went to sleep");
367 h5
->sleep
= H5_SLEEPING
;
369 } else if (memcmp(data
, woken_req
, 2) == 0) {
370 BT_DBG("Peer woke up");
371 h5
->sleep
= H5_AWAKE
;
372 } else if (memcmp(data
, wakeup_req
, 2) == 0) {
373 BT_DBG("Peer requested wakeup");
374 h5_link_control(hu
, woken_req
, 2);
375 h5
->sleep
= H5_AWAKE
;
377 BT_DBG("Link Control: 0x%02hhx 0x%02hhx", data
[0], data
[1]);
381 hci_uart_tx_wakeup(hu
);
384 static void h5_complete_rx_pkt(struct hci_uart
*hu
)
386 struct h5
*h5
= hu
->priv
;
387 const unsigned char *hdr
= h5
->rx_skb
->data
;
389 if (H5_HDR_RELIABLE(hdr
)) {
390 h5
->tx_ack
= (h5
->tx_ack
+ 1) % 8;
391 set_bit(H5_TX_ACK_REQ
, &h5
->flags
);
392 hci_uart_tx_wakeup(hu
);
395 h5
->rx_ack
= H5_HDR_ACK(hdr
);
399 switch (H5_HDR_PKT_TYPE(hdr
)) {
401 case HCI_ACLDATA_PKT
:
402 case HCI_SCODATA_PKT
:
403 hci_skb_pkt_type(h5
->rx_skb
) = H5_HDR_PKT_TYPE(hdr
);
405 /* Remove Three-wire header */
406 skb_pull(h5
->rx_skb
, 4);
408 hci_recv_frame(hu
->hdev
, h5
->rx_skb
);
414 h5_handle_internal_rx(hu
);
421 static int h5_rx_crc(struct hci_uart
*hu
, unsigned char c
)
423 h5_complete_rx_pkt(hu
);
428 static int h5_rx_payload(struct hci_uart
*hu
, unsigned char c
)
430 struct h5
*h5
= hu
->priv
;
431 const unsigned char *hdr
= h5
->rx_skb
->data
;
433 if (H5_HDR_CRC(hdr
)) {
434 h5
->rx_func
= h5_rx_crc
;
437 h5_complete_rx_pkt(hu
);
443 static int h5_rx_3wire_hdr(struct hci_uart
*hu
, unsigned char c
)
445 struct h5
*h5
= hu
->priv
;
446 const unsigned char *hdr
= h5
->rx_skb
->data
;
448 BT_DBG("%s rx: seq %u ack %u crc %u rel %u type %u len %u",
449 hu
->hdev
->name
, H5_HDR_SEQ(hdr
), H5_HDR_ACK(hdr
),
450 H5_HDR_CRC(hdr
), H5_HDR_RELIABLE(hdr
), H5_HDR_PKT_TYPE(hdr
),
453 if (((hdr
[0] + hdr
[1] + hdr
[2] + hdr
[3]) & 0xff) != 0xff) {
454 BT_ERR("Invalid header checksum");
459 if (H5_HDR_RELIABLE(hdr
) && H5_HDR_SEQ(hdr
) != h5
->tx_ack
) {
460 BT_ERR("Out-of-order packet arrived (%u != %u)",
461 H5_HDR_SEQ(hdr
), h5
->tx_ack
);
466 if (h5
->state
!= H5_ACTIVE
&&
467 H5_HDR_PKT_TYPE(hdr
) != HCI_3WIRE_LINK_PKT
) {
468 BT_ERR("Non-link packet received in non-active state");
473 h5
->rx_func
= h5_rx_payload
;
474 h5
->rx_pending
= H5_HDR_LEN(hdr
);
479 static int h5_rx_pkt_start(struct hci_uart
*hu
, unsigned char c
)
481 struct h5
*h5
= hu
->priv
;
483 if (c
== SLIP_DELIMITER
)
486 h5
->rx_func
= h5_rx_3wire_hdr
;
489 h5
->rx_skb
= bt_skb_alloc(H5_MAX_LEN
, GFP_ATOMIC
);
491 BT_ERR("Can't allocate mem for new packet");
496 h5
->rx_skb
->dev
= (void *)hu
->hdev
;
501 static int h5_rx_delimiter(struct hci_uart
*hu
, unsigned char c
)
503 struct h5
*h5
= hu
->priv
;
505 if (c
== SLIP_DELIMITER
)
506 h5
->rx_func
= h5_rx_pkt_start
;
511 static void h5_unslip_one_byte(struct h5
*h5
, unsigned char c
)
513 const u8 delim
= SLIP_DELIMITER
, esc
= SLIP_ESC
;
516 if (!test_bit(H5_RX_ESC
, &h5
->flags
) && c
== SLIP_ESC
) {
517 set_bit(H5_RX_ESC
, &h5
->flags
);
521 if (test_and_clear_bit(H5_RX_ESC
, &h5
->flags
)) {
530 BT_ERR("Invalid esc byte 0x%02hhx", c
);
536 skb_put_data(h5
->rx_skb
, byte
, 1);
539 BT_DBG("unsliped 0x%02hhx, rx_pending %zu", *byte
, h5
->rx_pending
);
542 static void h5_reset_rx(struct h5
*h5
)
545 kfree_skb(h5
->rx_skb
);
549 h5
->rx_func
= h5_rx_delimiter
;
551 clear_bit(H5_RX_ESC
, &h5
->flags
);
554 static int h5_recv(struct hci_uart
*hu
, const void *data
, int count
)
556 struct h5
*h5
= hu
->priv
;
557 const unsigned char *ptr
= data
;
559 BT_DBG("%s pending %zu count %d", hu
->hdev
->name
, h5
->rx_pending
,
565 if (h5
->rx_pending
> 0) {
566 if (*ptr
== SLIP_DELIMITER
) {
567 BT_ERR("Too short H5 packet");
572 h5_unslip_one_byte(h5
, *ptr
);
578 processed
= h5
->rx_func(hu
, *ptr
);
589 static int h5_enqueue(struct hci_uart
*hu
, struct sk_buff
*skb
)
591 struct h5
*h5
= hu
->priv
;
593 if (skb
->len
> 0xfff) {
594 BT_ERR("Packet too long (%u bytes)", skb
->len
);
599 if (h5
->state
!= H5_ACTIVE
) {
600 BT_ERR("Ignoring HCI data in non-active state");
605 switch (hci_skb_pkt_type(skb
)) {
606 case HCI_ACLDATA_PKT
:
607 case HCI_COMMAND_PKT
:
608 skb_queue_tail(&h5
->rel
, skb
);
611 case HCI_SCODATA_PKT
:
612 skb_queue_tail(&h5
->unrel
, skb
);
616 BT_ERR("Unknown packet type %u", hci_skb_pkt_type(skb
));
624 static void h5_slip_delim(struct sk_buff
*skb
)
626 const char delim
= SLIP_DELIMITER
;
628 skb_put_data(skb
, &delim
, 1);
631 static void h5_slip_one_byte(struct sk_buff
*skb
, u8 c
)
633 const char esc_delim
[2] = { SLIP_ESC
, SLIP_ESC_DELIM
};
634 const char esc_esc
[2] = { SLIP_ESC
, SLIP_ESC_ESC
};
638 skb_put_data(skb
, &esc_delim
, 2);
641 skb_put_data(skb
, &esc_esc
, 2);
644 skb_put_data(skb
, &c
, 1);
648 static bool valid_packet_type(u8 type
)
651 case HCI_ACLDATA_PKT
:
652 case HCI_COMMAND_PKT
:
653 case HCI_SCODATA_PKT
:
654 case HCI_3WIRE_LINK_PKT
:
655 case HCI_3WIRE_ACK_PKT
:
662 static struct sk_buff
*h5_prepare_pkt(struct hci_uart
*hu
, u8 pkt_type
,
663 const u8
*data
, size_t len
)
665 struct h5
*h5
= hu
->priv
;
666 struct sk_buff
*nskb
;
670 if (!valid_packet_type(pkt_type
)) {
671 BT_ERR("Unknown packet type %u", pkt_type
);
676 * Max len of packet: (original len + 4 (H5 hdr) + 2 (crc)) * 2
677 * (because bytes 0xc0 and 0xdb are escaped, worst case is when
678 * the packet is all made of 0xc0 and 0xdb) + 2 (0xc0
679 * delimiters at start and end).
681 nskb
= alloc_skb((len
+ 6) * 2 + 2, GFP_ATOMIC
);
685 hci_skb_pkt_type(nskb
) = pkt_type
;
689 hdr
[0] = h5
->tx_ack
<< 3;
690 clear_bit(H5_TX_ACK_REQ
, &h5
->flags
);
692 /* Reliable packet? */
693 if (pkt_type
== HCI_ACLDATA_PKT
|| pkt_type
== HCI_COMMAND_PKT
) {
695 hdr
[0] |= h5
->tx_seq
;
696 h5
->tx_seq
= (h5
->tx_seq
+ 1) % 8;
699 hdr
[1] = pkt_type
| ((len
& 0x0f) << 4);
701 hdr
[3] = ~((hdr
[0] + hdr
[1] + hdr
[2]) & 0xff);
703 BT_DBG("%s tx: seq %u ack %u crc %u rel %u type %u len %u",
704 hu
->hdev
->name
, H5_HDR_SEQ(hdr
), H5_HDR_ACK(hdr
),
705 H5_HDR_CRC(hdr
), H5_HDR_RELIABLE(hdr
), H5_HDR_PKT_TYPE(hdr
),
708 for (i
= 0; i
< 4; i
++)
709 h5_slip_one_byte(nskb
, hdr
[i
]);
711 for (i
= 0; i
< len
; i
++)
712 h5_slip_one_byte(nskb
, data
[i
]);
719 static struct sk_buff
*h5_dequeue(struct hci_uart
*hu
)
721 struct h5
*h5
= hu
->priv
;
723 struct sk_buff
*skb
, *nskb
;
725 if (h5
->sleep
!= H5_AWAKE
) {
726 const unsigned char wakeup_req
[] = { 0x05, 0xfa };
728 if (h5
->sleep
== H5_WAKING_UP
)
731 h5
->sleep
= H5_WAKING_UP
;
732 BT_DBG("Sending wakeup request");
734 mod_timer(&h5
->timer
, jiffies
+ HZ
/ 100);
735 return h5_prepare_pkt(hu
, HCI_3WIRE_LINK_PKT
, wakeup_req
, 2);
738 skb
= skb_dequeue(&h5
->unrel
);
740 nskb
= h5_prepare_pkt(hu
, hci_skb_pkt_type(skb
),
741 skb
->data
, skb
->len
);
747 skb_queue_head(&h5
->unrel
, skb
);
748 BT_ERR("Could not dequeue pkt because alloc_skb failed");
751 spin_lock_irqsave_nested(&h5
->unack
.lock
, flags
, SINGLE_DEPTH_NESTING
);
753 if (h5
->unack
.qlen
>= h5
->tx_win
)
756 skb
= skb_dequeue(&h5
->rel
);
758 nskb
= h5_prepare_pkt(hu
, hci_skb_pkt_type(skb
),
759 skb
->data
, skb
->len
);
761 __skb_queue_tail(&h5
->unack
, skb
);
762 mod_timer(&h5
->timer
, jiffies
+ H5_ACK_TIMEOUT
);
763 spin_unlock_irqrestore(&h5
->unack
.lock
, flags
);
767 skb_queue_head(&h5
->rel
, skb
);
768 BT_ERR("Could not dequeue pkt because alloc_skb failed");
772 spin_unlock_irqrestore(&h5
->unack
.lock
, flags
);
774 if (test_bit(H5_TX_ACK_REQ
, &h5
->flags
))
775 return h5_prepare_pkt(hu
, HCI_3WIRE_ACK_PKT
, NULL
, 0);
780 static int h5_flush(struct hci_uart
*hu
)
786 static const struct hci_uart_proto h5p
= {
787 .id
= HCI_UART_3WIRE
,
788 .name
= "Three-wire (H5)",
793 .enqueue
= h5_enqueue
,
794 .dequeue
= h5_dequeue
,
798 static int h5_serdev_probe(struct serdev_device
*serdev
)
800 const struct acpi_device_id
*match
;
801 struct device
*dev
= &serdev
->dev
;
804 h5
= devm_kzalloc(dev
, sizeof(*h5
), GFP_KERNEL
);
808 set_bit(HCI_UART_RESET_ON_INIT
, &h5
->serdev_hu
.flags
);
810 h5
->hu
= &h5
->serdev_hu
;
811 h5
->serdev_hu
.serdev
= serdev
;
812 serdev_device_set_drvdata(serdev
, h5
);
814 if (has_acpi_companion(dev
)) {
815 match
= acpi_match_device(dev
->driver
->acpi_match_table
, dev
);
819 h5
->vnd
= (const struct h5_vnd
*)match
->driver_data
;
820 h5
->id
= (char *)match
->id
;
822 if (h5
->vnd
->acpi_gpio_map
)
823 devm_acpi_dev_add_driver_gpios(dev
,
824 h5
->vnd
->acpi_gpio_map
);
827 h5
->enable_gpio
= devm_gpiod_get_optional(dev
, "enable", GPIOD_OUT_LOW
);
828 if (IS_ERR(h5
->enable_gpio
))
829 return PTR_ERR(h5
->enable_gpio
);
831 h5
->device_wake_gpio
= devm_gpiod_get_optional(dev
, "device-wake",
833 if (IS_ERR(h5
->device_wake_gpio
))
834 return PTR_ERR(h5
->device_wake_gpio
);
836 return hci_uart_register_device(&h5
->serdev_hu
, &h5p
);
839 static void h5_serdev_remove(struct serdev_device
*serdev
)
841 struct h5
*h5
= serdev_device_get_drvdata(serdev
);
843 hci_uart_unregister_device(&h5
->serdev_hu
);
846 static int __maybe_unused
h5_serdev_suspend(struct device
*dev
)
848 struct h5
*h5
= dev_get_drvdata(dev
);
851 if (h5
->vnd
&& h5
->vnd
->suspend
)
852 ret
= h5
->vnd
->suspend(h5
);
857 static int __maybe_unused
h5_serdev_resume(struct device
*dev
)
859 struct h5
*h5
= dev_get_drvdata(dev
);
862 if (h5
->vnd
&& h5
->vnd
->resume
)
863 ret
= h5
->vnd
->resume(h5
);
868 #ifdef CONFIG_BT_HCIUART_RTL
869 static int h5_btrtl_setup(struct h5
*h5
)
871 struct btrtl_device_info
*btrtl_dev
;
873 __le32 baudrate_data
;
875 unsigned int controller_baudrate
;
879 btrtl_dev
= btrtl_initialize(h5
->hu
->hdev
, h5
->id
);
880 if (IS_ERR(btrtl_dev
))
881 return PTR_ERR(btrtl_dev
);
883 err
= btrtl_get_uart_settings(h5
->hu
->hdev
, btrtl_dev
,
884 &controller_baudrate
, &device_baudrate
,
889 baudrate_data
= cpu_to_le32(device_baudrate
);
890 skb
= __hci_cmd_sync(h5
->hu
->hdev
, 0xfc17, sizeof(baudrate_data
),
891 &baudrate_data
, HCI_INIT_TIMEOUT
);
893 rtl_dev_err(h5
->hu
->hdev
, "set baud rate command failed\n");
899 /* Give the device some time to set up the new baudrate. */
900 usleep_range(10000, 20000);
902 serdev_device_set_baudrate(h5
->hu
->serdev
, controller_baudrate
);
903 serdev_device_set_flow_control(h5
->hu
->serdev
, flow_control
);
905 err
= btrtl_download_firmware(h5
->hu
->hdev
, btrtl_dev
);
906 /* Give the device some time before the hci-core sends it a reset */
907 usleep_range(10000, 20000);
910 btrtl_free(btrtl_dev
);
915 static void h5_btrtl_open(struct h5
*h5
)
917 /* Devices always start with these fixed parameters */
918 serdev_device_set_flow_control(h5
->hu
->serdev
, false);
919 serdev_device_set_parity(h5
->hu
->serdev
, SERDEV_PARITY_EVEN
);
920 serdev_device_set_baudrate(h5
->hu
->serdev
, 115200);
922 /* The controller needs up to 500ms to wakeup */
923 gpiod_set_value_cansleep(h5
->enable_gpio
, 1);
924 gpiod_set_value_cansleep(h5
->device_wake_gpio
, 1);
928 static void h5_btrtl_close(struct h5
*h5
)
930 gpiod_set_value_cansleep(h5
->device_wake_gpio
, 0);
931 gpiod_set_value_cansleep(h5
->enable_gpio
, 0);
934 /* Suspend/resume support. On many devices the RTL BT device loses power during
935 * suspend/resume, causing it to lose its firmware and all state. So we simply
936 * turn it off on suspend and reprobe on resume. This mirrors how RTL devices
937 * are handled in the USB driver, where the USB_QUIRK_RESET_RESUME is used which
938 * also causes a reprobe on resume.
940 static int h5_btrtl_suspend(struct h5
*h5
)
942 serdev_device_set_flow_control(h5
->hu
->serdev
, false);
943 gpiod_set_value_cansleep(h5
->device_wake_gpio
, 0);
944 gpiod_set_value_cansleep(h5
->enable_gpio
, 0);
948 struct h5_btrtl_reprobe
{
950 struct work_struct work
;
953 static void h5_btrtl_reprobe_worker(struct work_struct
*work
)
955 struct h5_btrtl_reprobe
*reprobe
=
956 container_of(work
, struct h5_btrtl_reprobe
, work
);
959 ret
= device_reprobe(reprobe
->dev
);
960 if (ret
&& ret
!= -EPROBE_DEFER
)
961 dev_err(reprobe
->dev
, "Reprobe error %d\n", ret
);
963 put_device(reprobe
->dev
);
965 module_put(THIS_MODULE
);
968 static int h5_btrtl_resume(struct h5
*h5
)
970 struct h5_btrtl_reprobe
*reprobe
;
972 reprobe
= kzalloc(sizeof(*reprobe
), GFP_KERNEL
);
976 __module_get(THIS_MODULE
);
978 INIT_WORK(&reprobe
->work
, h5_btrtl_reprobe_worker
);
979 reprobe
->dev
= get_device(&h5
->hu
->serdev
->dev
);
980 queue_work(system_long_wq
, &reprobe
->work
);
984 static const struct acpi_gpio_params btrtl_device_wake_gpios
= { 0, 0, false };
985 static const struct acpi_gpio_params btrtl_enable_gpios
= { 1, 0, false };
986 static const struct acpi_gpio_params btrtl_host_wake_gpios
= { 2, 0, false };
987 static const struct acpi_gpio_mapping acpi_btrtl_gpios
[] = {
988 { "device-wake-gpios", &btrtl_device_wake_gpios
, 1 },
989 { "enable-gpios", &btrtl_enable_gpios
, 1 },
990 { "host-wake-gpios", &btrtl_host_wake_gpios
, 1 },
994 static struct h5_vnd rtl_vnd
= {
995 .setup
= h5_btrtl_setup
,
996 .open
= h5_btrtl_open
,
997 .close
= h5_btrtl_close
,
998 .suspend
= h5_btrtl_suspend
,
999 .resume
= h5_btrtl_resume
,
1000 .acpi_gpio_map
= acpi_btrtl_gpios
,
1005 static const struct acpi_device_id h5_acpi_match
[] = {
1006 #ifdef CONFIG_BT_HCIUART_RTL
1007 { "OBDA8723", (kernel_ulong_t
)&rtl_vnd
},
1011 MODULE_DEVICE_TABLE(acpi
, h5_acpi_match
);
1014 static const struct dev_pm_ops h5_serdev_pm_ops
= {
1015 SET_SYSTEM_SLEEP_PM_OPS(h5_serdev_suspend
, h5_serdev_resume
)
1018 static struct serdev_device_driver h5_serdev_driver
= {
1019 .probe
= h5_serdev_probe
,
1020 .remove
= h5_serdev_remove
,
1022 .name
= "hci_uart_h5",
1023 .acpi_match_table
= ACPI_PTR(h5_acpi_match
),
1024 .pm
= &h5_serdev_pm_ops
,
1028 int __init
h5_init(void)
1030 serdev_device_driver_register(&h5_serdev_driver
);
1031 return hci_uart_register_proto(&h5p
);
1034 int __exit
h5_deinit(void)
1036 serdev_device_driver_unregister(&h5_serdev_driver
);
1037 return hci_uart_unregister_proto(&h5p
);