1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Bluetooth HCI serdev driver lib
5 * Copyright (C) 2017 Linaro, Ltd., Rob Herring <robh@kernel.org>
7 * Based on hci_ldisc.c:
9 * Copyright (C) 2000-2001 Qualcomm Incorporated
10 * Copyright (C) 2002-2003 Maxim Krasnyansky <maxk@qualcomm.com>
11 * Copyright (C) 2004-2005 Marcel Holtmann <marcel@holtmann.org>
14 #include <linux/kernel.h>
15 #include <linux/types.h>
16 #include <linux/serdev.h>
17 #include <linux/skbuff.h>
19 #include <net/bluetooth/bluetooth.h>
20 #include <net/bluetooth/hci_core.h>
24 static inline void hci_uart_tx_complete(struct hci_uart *hu, int pkt_type)
26 struct hci_dev *hdev = hu->hdev;
28 /* Update HCI stat counters */
44 static inline struct sk_buff *hci_uart_dequeue(struct hci_uart *hu)
46 struct sk_buff *skb = hu->tx_skb;
49 if (test_bit(HCI_UART_PROTO_READY, &hu->flags))
50 skb = hu->proto->dequeue(hu);
57 static void hci_uart_write_work(struct work_struct *work)
59 struct hci_uart *hu = container_of(work, struct hci_uart, write_work);
60 struct serdev_device *serdev = hu->serdev;
61 struct hci_dev *hdev = hu->hdev;
65 * should we cope with bad skbs or ->write() returning an error value?
68 clear_bit(HCI_UART_TX_WAKEUP, &hu->tx_state);
70 while ((skb = hci_uart_dequeue(hu))) {
73 len = serdev_device_write_buf(serdev,
75 hdev->stat.byte_tx += len;
83 hci_uart_tx_complete(hu, hci_skb_pkt_type(skb));
87 clear_bit(HCI_UART_SENDING, &hu->tx_state);
88 } while (test_bit(HCI_UART_TX_WAKEUP, &hu->tx_state));
91 /* ------- Interface to HCI layer ------ */
94 static int hci_uart_flush(struct hci_dev *hdev)
96 struct hci_uart *hu = hci_get_drvdata(hdev);
98 BT_DBG("hdev %p serdev %p", hdev, hu->serdev);
101 kfree_skb(hu->tx_skb); hu->tx_skb = NULL;
104 /* Flush any pending characters in the driver and discipline. */
105 serdev_device_write_flush(hu->serdev);
107 if (test_bit(HCI_UART_PROTO_READY, &hu->flags))
108 hu->proto->flush(hu);
113 /* Initialize device */
114 static int hci_uart_open(struct hci_dev *hdev)
116 struct hci_uart *hu = hci_get_drvdata(hdev);
119 BT_DBG("%s %p", hdev->name, hdev);
121 /* When Quirk HCI_QUIRK_NON_PERSISTENT_SETUP is set by
122 * driver, BT SoC is completely turned OFF during
123 * BT OFF. Upon next BT ON UART port should be opened.
125 if (!test_bit(HCI_UART_PROTO_READY, &hu->flags)) {
126 err = serdev_device_open(hu->serdev);
129 set_bit(HCI_UART_PROTO_READY, &hu->flags);
132 /* Undo clearing this from hci_uart_close() */
133 hdev->flush = hci_uart_flush;
139 static int hci_uart_close(struct hci_dev *hdev)
141 struct hci_uart *hu = hci_get_drvdata(hdev);
143 BT_DBG("hdev %p", hdev);
145 if (!test_bit(HCI_UART_PROTO_READY, &hu->flags))
148 hci_uart_flush(hdev);
151 /* When QUIRK HCI_QUIRK_NON_PERSISTENT_SETUP is set by driver,
152 * BT SOC is completely powered OFF during BT OFF, holding port
153 * open may drain the battery.
155 if (test_bit(HCI_QUIRK_NON_PERSISTENT_SETUP, &hdev->quirks)) {
156 clear_bit(HCI_UART_PROTO_READY, &hu->flags);
157 serdev_device_close(hu->serdev);
163 /* Send frames from HCI layer */
164 static int hci_uart_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
166 struct hci_uart *hu = hci_get_drvdata(hdev);
168 BT_DBG("%s: type %d len %d", hdev->name, hci_skb_pkt_type(skb),
171 hu->proto->enqueue(hu, skb);
173 hci_uart_tx_wakeup(hu);
178 static int hci_uart_setup(struct hci_dev *hdev)
180 struct hci_uart *hu = hci_get_drvdata(hdev);
181 struct hci_rp_read_local_version *ver;
186 /* Init speed if any */
188 speed = hu->init_speed;
189 else if (hu->proto->init_speed)
190 speed = hu->proto->init_speed;
195 serdev_device_set_baudrate(hu->serdev, speed);
197 /* Operational speed if any */
199 speed = hu->oper_speed;
200 else if (hu->proto->oper_speed)
201 speed = hu->proto->oper_speed;
205 if (hu->proto->set_baudrate && speed) {
206 err = hu->proto->set_baudrate(hu, speed);
208 bt_dev_err(hdev, "Failed to set baudrate");
210 serdev_device_set_baudrate(hu->serdev, speed);
213 if (hu->proto->setup)
214 return hu->proto->setup(hu);
216 if (!test_bit(HCI_UART_VND_DETECT, &hu->hdev_flags))
219 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
222 bt_dev_err(hdev, "Reading local version info failed (%ld)",
227 if (skb->len != sizeof(*ver))
228 bt_dev_err(hdev, "Event length mismatch for version info");
234 /* Check if the device is wakeable */
235 static bool hci_uart_wakeup(struct hci_dev *hdev)
237 /* HCI UART devices are assumed to be wakeable by default.
238 * Implement wakeup callback to override this behavior.
243 /** hci_uart_write_wakeup - transmit buffer wakeup
244 * @serdev: serial device
246 * This function is called by the serdev framework when it accepts
247 * more data being sent.
249 static void hci_uart_write_wakeup(struct serdev_device *serdev)
251 struct hci_uart *hu = serdev_device_get_drvdata(serdev);
255 if (!hu || serdev != hu->serdev) {
260 if (test_bit(HCI_UART_PROTO_READY, &hu->flags))
261 hci_uart_tx_wakeup(hu);
264 /** hci_uart_receive_buf - receive buffer wakeup
265 * @serdev: serial device
266 * @data: pointer to received data
267 * @count: count of received data in bytes
269 * This function is called by the serdev framework when it received data
272 * Return: number of processed bytes
274 static int hci_uart_receive_buf(struct serdev_device *serdev, const u8 *data,
277 struct hci_uart *hu = serdev_device_get_drvdata(serdev);
279 if (!hu || serdev != hu->serdev) {
284 if (!test_bit(HCI_UART_PROTO_READY, &hu->flags))
287 /* It does not need a lock here as it is already protected by a mutex in
290 hu->proto->recv(hu, data, count);
293 hu->hdev->stat.byte_rx += count;
298 static const struct serdev_device_ops hci_serdev_client_ops = {
299 .receive_buf = hci_uart_receive_buf,
300 .write_wakeup = hci_uart_write_wakeup,
303 int hci_uart_register_device(struct hci_uart *hu,
304 const struct hci_uart_proto *p)
307 struct hci_dev *hdev;
311 serdev_device_set_client_ops(hu->serdev, &hci_serdev_client_ops);
313 if (percpu_init_rwsem(&hu->proto_lock))
316 err = serdev_device_open(hu->serdev);
325 set_bit(HCI_UART_PROTO_READY, &hu->flags);
327 /* Initialize and register HCI device */
328 hdev = hci_alloc_dev();
330 BT_ERR("Can't allocate HCI device");
337 hdev->bus = HCI_UART;
338 hci_set_drvdata(hdev, hu);
340 INIT_WORK(&hu->init_ready, hci_uart_init_work);
341 INIT_WORK(&hu->write_work, hci_uart_write_work);
343 /* Only when vendor specific setup callback is provided, consider
344 * the manufacturer information valid. This avoids filling in the
345 * value for Ericsson when nothing is specified.
347 if (hu->proto->setup)
348 hdev->manufacturer = hu->proto->manufacturer;
350 hdev->open = hci_uart_open;
351 hdev->close = hci_uart_close;
352 hdev->flush = hci_uart_flush;
353 hdev->send = hci_uart_send_frame;
354 hdev->setup = hci_uart_setup;
356 hdev->wakeup = hci_uart_wakeup;
357 SET_HCIDEV_DEV(hdev, &hu->serdev->dev);
359 if (test_bit(HCI_UART_NO_SUSPEND_NOTIFIER, &hu->flags))
360 set_bit(HCI_QUIRK_NO_SUSPEND_NOTIFIER, &hdev->quirks);
362 if (test_bit(HCI_UART_RAW_DEVICE, &hu->hdev_flags))
363 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
365 if (test_bit(HCI_UART_EXT_CONFIG, &hu->hdev_flags))
366 set_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks);
368 if (test_bit(HCI_UART_CREATE_AMP, &hu->hdev_flags))
369 hdev->dev_type = HCI_AMP;
371 hdev->dev_type = HCI_PRIMARY;
373 if (test_bit(HCI_UART_INIT_PENDING, &hu->hdev_flags))
376 if (hci_register_dev(hdev) < 0) {
377 BT_ERR("Can't register HCI device");
382 set_bit(HCI_UART_REGISTERED, &hu->flags);
389 clear_bit(HCI_UART_PROTO_READY, &hu->flags);
392 serdev_device_close(hu->serdev);
394 percpu_free_rwsem(&hu->proto_lock);
397 EXPORT_SYMBOL_GPL(hci_uart_register_device);
399 void hci_uart_unregister_device(struct hci_uart *hu)
401 struct hci_dev *hdev = hu->hdev;
403 cancel_work_sync(&hu->init_ready);
404 if (test_bit(HCI_UART_REGISTERED, &hu->flags))
405 hci_unregister_dev(hdev);
408 cancel_work_sync(&hu->write_work);
410 hu->proto->close(hu);
412 if (test_bit(HCI_UART_PROTO_READY, &hu->flags)) {
413 clear_bit(HCI_UART_PROTO_READY, &hu->flags);
414 serdev_device_close(hu->serdev);
416 percpu_free_rwsem(&hu->proto_lock);
418 EXPORT_SYMBOL_GPL(hci_uart_unregister_device);