blob: ecdf8e034351d690f4f8ff5a2a44cc46b1c46d19 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Marcel Holtmann0372a662005-10-28 19:20:45 +02004 * Bluetooth HCI UART driver
5 *
6 * Copyright (C) 2000-2001 Qualcomm Incorporated
7 * Copyright (C) 2002-2003 Maxim Krasnyansky <maxk@qualcomm.com>
8 * Copyright (C) 2004-2005 Marcel Holtmann <marcel@holtmann.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12
13#include <linux/kernel.h>
14#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/types.h>
16#include <linux/fcntl.h>
17#include <linux/interrupt.h>
18#include <linux/ptrace.h>
19#include <linux/poll.h>
20
21#include <linux/slab.h>
22#include <linux/tty.h>
23#include <linux/errno.h>
24#include <linux/string.h>
25#include <linux/signal.h>
26#include <linux/ioctl.h>
27#include <linux/skbuff.h>
Frederic Danis18aeb442015-05-28 11:25:01 +020028#include <linux/firmware.h>
Hans de Goede7841d552017-10-04 20:43:35 +020029#include <linux/serdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <net/bluetooth/bluetooth.h>
32#include <net/bluetooth/hci_core.h>
33
Marcel Holtmannbca03c92015-04-06 00:52:14 -070034#include "btintel.h"
Marcel Holtmann3e0ac122015-04-05 22:52:12 -070035#include "btbcm.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "hci_uart.h"
37
Marcel Holtmann788a6752015-04-04 22:36:04 -070038#define VERSION "2.3"
Marcel Holtmann0372a662005-10-28 19:20:45 +020039
Marcel Holtmann4ee7ef12015-04-04 22:11:43 -070040static const struct hci_uart_proto *hup[HCI_UART_MAX_PROTO];
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Marcel Holtmann4ee7ef12015-04-04 22:11:43 -070042int hci_uart_register_proto(const struct hci_uart_proto *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
44 if (p->id >= HCI_UART_MAX_PROTO)
45 return -EINVAL;
46
47 if (hup[p->id])
48 return -EEXIST;
49
50 hup[p->id] = p;
Marcel Holtmann0372a662005-10-28 19:20:45 +020051
Marcel Holtmann01009ee2015-04-04 22:27:35 -070052 BT_INFO("HCI UART protocol %s registered", p->name);
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 return 0;
55}
56
Marcel Holtmann4ee7ef12015-04-04 22:11:43 -070057int hci_uart_unregister_proto(const struct hci_uart_proto *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
59 if (p->id >= HCI_UART_MAX_PROTO)
60 return -EINVAL;
61
62 if (!hup[p->id])
63 return -EINVAL;
64
65 hup[p->id] = NULL;
Marcel Holtmann0372a662005-10-28 19:20:45 +020066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 return 0;
68}
69
Marcel Holtmann4ee7ef12015-04-04 22:11:43 -070070static const struct hci_uart_proto *hci_uart_get_proto(unsigned int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 if (id >= HCI_UART_MAX_PROTO)
73 return NULL;
Marcel Holtmann0372a662005-10-28 19:20:45 +020074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return hup[id];
76}
77
78static inline void hci_uart_tx_complete(struct hci_uart *hu, int pkt_type)
79{
80 struct hci_dev *hdev = hu->hdev;
Marcel Holtmann0372a662005-10-28 19:20:45 +020081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 /* Update HCI stat counters */
83 switch (pkt_type) {
84 case HCI_COMMAND_PKT:
85 hdev->stat.cmd_tx++;
86 break;
87
88 case HCI_ACLDATA_PKT:
89 hdev->stat.acl_tx++;
90 break;
91
92 case HCI_SCODATA_PKT:
Karl Beldan7f8f2722010-10-07 21:57:10 +020093 hdev->stat.sco_tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 break;
95 }
96}
97
98static inline struct sk_buff *hci_uart_dequeue(struct hci_uart *hu)
99{
100 struct sk_buff *skb = hu->tx_skb;
Marcel Holtmann0372a662005-10-28 19:20:45 +0200101
Dean Jenkins048e1bd2017-04-28 13:57:25 +0100102 if (!skb) {
Ronald Tschalär67d2f872017-10-25 22:14:53 -0700103 percpu_down_read(&hu->proto_lock);
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100104
Dean Jenkins048e1bd2017-04-28 13:57:25 +0100105 if (test_bit(HCI_UART_PROTO_READY, &hu->flags))
106 skb = hu->proto->dequeue(hu);
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100107
Ronald Tschalär67d2f872017-10-25 22:14:53 -0700108 percpu_up_read(&hu->proto_lock);
Dean Jenkins048e1bd2017-04-28 13:57:25 +0100109 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 hu->tx_skb = NULL;
Dean Jenkins048e1bd2017-04-28 13:57:25 +0100111 }
Marcel Holtmann0372a662005-10-28 19:20:45 +0200112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return skb;
114}
115
116int hci_uart_tx_wakeup(struct hci_uart *hu)
117{
Ronald Tschalär67d2f872017-10-25 22:14:53 -0700118 /* This may be called in an IRQ context, so we can't sleep. Therefore
119 * we try to acquire the lock only, and if that fails we assume the
120 * tty is being closed because that is the only time the write lock is
121 * acquired. If, however, at some point in the future the write lock
122 * is also acquired in other situations, then this must be revisited.
123 */
124 if (!percpu_down_read_trylock(&hu->proto_lock))
125 return 0;
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100126
Dean Jenkins2d6f1da2017-04-28 13:57:26 +0100127 if (!test_bit(HCI_UART_PROTO_READY, &hu->flags))
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100128 goto no_schedule;
Dean Jenkins2d6f1da2017-04-28 13:57:26 +0100129
Claire Changafe0b1c2020-12-14 15:29:21 +0800130 set_bit(HCI_UART_TX_WAKEUP, &hu->tx_state);
131 if (test_and_set_bit(HCI_UART_SENDING, &hu->tx_state))
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100132 goto no_schedule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 BT_DBG("");
135
Felipe Balbida64c272014-04-23 09:58:26 -0500136 schedule_work(&hu->write_work);
137
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100138no_schedule:
Ronald Tschalär67d2f872017-10-25 22:14:53 -0700139 percpu_up_read(&hu->proto_lock);
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100140
Felipe Balbida64c272014-04-23 09:58:26 -0500141 return 0;
142}
Sebastian Reichel081f36a2017-03-28 17:59:37 +0200143EXPORT_SYMBOL_GPL(hci_uart_tx_wakeup);
Felipe Balbida64c272014-04-23 09:58:26 -0500144
145static void hci_uart_write_work(struct work_struct *work)
146{
147 struct hci_uart *hu = container_of(work, struct hci_uart, write_work);
148 struct tty_struct *tty = hu->tty;
149 struct hci_dev *hdev = hu->hdev;
150 struct sk_buff *skb;
151
152 /* REVISIT: should we cope with bad skbs or ->write() returning
153 * and error value ?
154 */
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156restart:
157 clear_bit(HCI_UART_TX_WAKEUP, &hu->tx_state);
158
159 while ((skb = hci_uart_dequeue(hu))) {
160 int len;
Marcel Holtmann0372a662005-10-28 19:20:45 +0200161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
Alan Coxf34d7a52008-04-30 00:54:13 -0700163 len = tty->ops->write(tty, skb->data, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 hdev->stat.byte_tx += len;
165
166 skb_pull(skb, len);
167 if (skb->len) {
168 hu->tx_skb = skb;
169 break;
170 }
Marcel Holtmann0372a662005-10-28 19:20:45 +0200171
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100172 hci_uart_tx_complete(hu, hci_skb_pkt_type(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 kfree_skb(skb);
Marcel Holtmann0372a662005-10-28 19:20:45 +0200174 }
175
Claire Changafe0b1c2020-12-14 15:29:21 +0800176 clear_bit(HCI_UART_SENDING, &hu->tx_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 if (test_bit(HCI_UART_TX_WAKEUP, &hu->tx_state))
178 goto restart;
179
Sascha Hauer40fbb912019-06-14 09:23:49 +0200180 wake_up_bit(&hu->tx_state, HCI_UART_SENDING);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
Hans de Goedefdee6d82018-05-27 21:04:53 +0200183void hci_uart_init_work(struct work_struct *work)
Johan Hedberg9f2aee82012-07-16 16:12:11 +0300184{
185 struct hci_uart *hu = container_of(work, struct hci_uart, init_ready);
186 int err;
Dean Jenkinsa225b8c2017-04-20 18:06:40 +0100187 struct hci_dev *hdev;
Johan Hedberg9f2aee82012-07-16 16:12:11 +0300188
189 if (!test_and_clear_bit(HCI_UART_INIT_PENDING, &hu->hdev_flags))
190 return;
191
192 err = hci_register_dev(hu->hdev);
193 if (err < 0) {
194 BT_ERR("Can't register HCI device");
Jeremy Cline32a7b4c2019-02-06 12:54:16 -0500195 clear_bit(HCI_UART_PROTO_READY, &hu->flags);
196 hu->proto->close(hu);
Dean Jenkinsa225b8c2017-04-20 18:06:40 +0100197 hdev = hu->hdev;
Johan Hedberg9f2aee82012-07-16 16:12:11 +0300198 hu->hdev = NULL;
Dean Jenkinsa225b8c2017-04-20 18:06:40 +0100199 hci_free_dev(hdev);
Dean Jenkinscb926522017-04-20 18:06:39 +0100200 return;
Johan Hedberg9f2aee82012-07-16 16:12:11 +0300201 }
202
203 set_bit(HCI_UART_REGISTERED, &hu->flags);
204}
205
206int hci_uart_init_ready(struct hci_uart *hu)
207{
208 if (!test_bit(HCI_UART_INIT_PENDING, &hu->hdev_flags))
209 return -EALREADY;
210
211 schedule_work(&hu->init_ready);
212
213 return 0;
214}
215
Sascha Hauer40fbb912019-06-14 09:23:49 +0200216int hci_uart_wait_until_sent(struct hci_uart *hu)
217{
218 return wait_on_bit_timeout(&hu->tx_state, HCI_UART_SENDING,
219 TASK_INTERRUPTIBLE,
220 msecs_to_jiffies(2000));
221}
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223/* ------- Interface to HCI layer ------ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224/* Reset device */
225static int hci_uart_flush(struct hci_dev *hdev)
226{
David Herrmann155961e2012-02-09 21:58:32 +0100227 struct hci_uart *hu = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 struct tty_struct *tty = hu->tty;
229
230 BT_DBG("hdev %p tty %p", hdev, tty);
231
232 if (hu->tx_skb) {
233 kfree_skb(hu->tx_skb); hu->tx_skb = NULL;
234 }
235
236 /* Flush any pending characters in the driver and discipline. */
237 tty_ldisc_flush(tty);
Alan Coxf34d7a52008-04-30 00:54:13 -0700238 tty_driver_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Ronald Tschalär67d2f872017-10-25 22:14:53 -0700240 percpu_down_read(&hu->proto_lock);
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100241
Loic Poulain84cb3df2016-04-04 10:48:13 +0200242 if (test_bit(HCI_UART_PROTO_READY, &hu->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 hu->proto->flush(hu);
244
Ronald Tschalär67d2f872017-10-25 22:14:53 -0700245 percpu_up_read(&hu->proto_lock);
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return 0;
248}
249
Hans de Goede412fe292018-05-27 21:04:51 +0200250/* Initialize device */
251static int hci_uart_open(struct hci_dev *hdev)
252{
253 BT_DBG("%s %p", hdev->name, hdev);
254
255 /* Undo clearing this from hci_uart_close() */
256 hdev->flush = hci_uart_flush;
257
258 return 0;
259}
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261/* Close device */
262static int hci_uart_close(struct hci_dev *hdev)
263{
264 BT_DBG("hdev %p", hdev);
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 hci_uart_flush(hdev);
David Newall3611f4d2008-02-11 21:41:30 -0800267 hdev->flush = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return 0;
269}
270
271/* Send frames from HCI layer */
Marcel Holtmann7bd8f092013-10-11 06:19:18 -0700272static int hci_uart_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Marcel Holtmann52bc4232013-10-11 07:01:03 -0700274 struct hci_uart *hu = hci_get_drvdata(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Marcel Holtmann618e8bc2015-11-05 07:33:56 +0100276 BT_DBG("%s: type %d len %d", hdev->name, hci_skb_pkt_type(skb),
277 skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Ronald Tschalär67d2f872017-10-25 22:14:53 -0700279 percpu_down_read(&hu->proto_lock);
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100280
281 if (!test_bit(HCI_UART_PROTO_READY, &hu->flags)) {
Ronald Tschalär67d2f872017-10-25 22:14:53 -0700282 percpu_up_read(&hu->proto_lock);
Dean Jenkinsab00f892017-04-28 13:57:24 +0100283 return -EUNATCH;
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100284 }
Dean Jenkinsab00f892017-04-28 13:57:24 +0100285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 hu->proto->enqueue(hu, skb);
Ronald Tschalär67d2f872017-10-25 22:14:53 -0700287 percpu_up_read(&hu->proto_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 hci_uart_tx_wakeup(hu);
Marcel Holtmann0372a662005-10-28 19:20:45 +0200290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return 0;
292}
293
Vladis Dronovb36a1552019-07-30 11:33:45 +0200294/* Check the underlying device or tty has flow control support */
295bool hci_uart_has_flow_control(struct hci_uart *hu)
296{
297 /* serdev nodes check if the needed operations are present */
298 if (hu->serdev)
299 return true;
300
301 if (hu->tty->driver->ops->tiocmget && hu->tty->driver->ops->tiocmset)
302 return true;
303
304 return false;
305}
306
Ilya Faenson2a973df2015-06-17 17:30:56 -0400307/* Flow control or un-flow control the device */
308void hci_uart_set_flow_control(struct hci_uart *hu, bool enable)
309{
310 struct tty_struct *tty = hu->tty;
311 struct ktermios ktermios;
312 int status;
313 unsigned int set = 0;
314 unsigned int clear = 0;
315
Hans de Goede7841d552017-10-04 20:43:35 +0200316 if (hu->serdev) {
317 serdev_device_set_flow_control(hu->serdev, !enable);
318 serdev_device_set_rts(hu->serdev, !enable);
319 return;
320 }
321
Ilya Faenson2a973df2015-06-17 17:30:56 -0400322 if (enable) {
323 /* Disable hardware flow control */
324 ktermios = tty->termios;
325 ktermios.c_cflag &= ~CRTSCTS;
326 status = tty_set_termios(tty, &ktermios);
327 BT_DBG("Disabling hardware flow control: %s",
328 status ? "failed" : "success");
329
330 /* Clear RTS to prevent the device from sending */
331 /* Most UARTs need OUT2 to enable interrupts */
332 status = tty->driver->ops->tiocmget(tty);
333 BT_DBG("Current tiocm 0x%x", status);
334
335 set &= ~(TIOCM_OUT2 | TIOCM_RTS);
336 clear = ~set;
337 set &= TIOCM_DTR | TIOCM_RTS | TIOCM_OUT1 |
338 TIOCM_OUT2 | TIOCM_LOOP;
339 clear &= TIOCM_DTR | TIOCM_RTS | TIOCM_OUT1 |
340 TIOCM_OUT2 | TIOCM_LOOP;
341 status = tty->driver->ops->tiocmset(tty, set, clear);
342 BT_DBG("Clearing RTS: %s", status ? "failed" : "success");
343 } else {
344 /* Set RTS to allow the device to send again */
345 status = tty->driver->ops->tiocmget(tty);
346 BT_DBG("Current tiocm 0x%x", status);
347
348 set |= (TIOCM_OUT2 | TIOCM_RTS);
349 clear = ~set;
350 set &= TIOCM_DTR | TIOCM_RTS | TIOCM_OUT1 |
351 TIOCM_OUT2 | TIOCM_LOOP;
352 clear &= TIOCM_DTR | TIOCM_RTS | TIOCM_OUT1 |
353 TIOCM_OUT2 | TIOCM_LOOP;
354 status = tty->driver->ops->tiocmset(tty, set, clear);
355 BT_DBG("Setting RTS: %s", status ? "failed" : "success");
356
357 /* Re-enable hardware flow control */
358 ktermios = tty->termios;
359 ktermios.c_cflag |= CRTSCTS;
360 status = tty_set_termios(tty, &ktermios);
361 BT_DBG("Enabling hardware flow control: %s",
362 status ? "failed" : "success");
363 }
364}
365
366void hci_uart_set_speeds(struct hci_uart *hu, unsigned int init_speed,
367 unsigned int oper_speed)
368{
369 hu->init_speed = init_speed;
370 hu->oper_speed = oper_speed;
371}
372
Frederic Danis77213832015-05-28 11:25:03 +0200373void hci_uart_set_baudrate(struct hci_uart *hu, unsigned int speed)
374{
375 struct tty_struct *tty = hu->tty;
376 struct ktermios ktermios;
377
378 ktermios = tty->termios;
379 ktermios.c_cflag &= ~CBAUD;
Frederic Danis77213832015-05-28 11:25:03 +0200380 tty_termios_encode_baud_rate(&ktermios, speed, speed);
381
382 /* tty_set_termios() return not checked as it is always 0 */
383 tty_set_termios(tty, &ktermios);
384
Ilya Faenson2a973df2015-06-17 17:30:56 -0400385 BT_DBG("%s: New tty speeds: %d/%d", hu->hdev->name,
386 tty->termios.c_ispeed, tty->termios.c_ospeed);
Frederic Danis77213832015-05-28 11:25:03 +0200387}
388
Loic Poulaineb173802015-03-25 15:19:30 +0100389static int hci_uart_setup(struct hci_dev *hdev)
390{
391 struct hci_uart *hu = hci_get_drvdata(hdev);
Marcel Holtmannfb2ce8d2015-04-04 16:13:01 -0700392 struct hci_rp_read_local_version *ver;
393 struct sk_buff *skb;
Ilya Faenson2a973df2015-06-17 17:30:56 -0400394 unsigned int speed;
Frederic Danis77213832015-05-28 11:25:03 +0200395 int err;
396
Ilya Faenson2a973df2015-06-17 17:30:56 -0400397 /* Init speed if any */
Frederic Danis960ef1d2015-06-18 12:43:27 +0200398 if (hu->init_speed)
Ilya Faenson2a973df2015-06-17 17:30:56 -0400399 speed = hu->init_speed;
Frederic Danis960ef1d2015-06-18 12:43:27 +0200400 else if (hu->proto->init_speed)
401 speed = hu->proto->init_speed;
Ilya Faenson2a973df2015-06-17 17:30:56 -0400402 else
403 speed = 0;
Frederic Danis77213832015-05-28 11:25:03 +0200404
Ilya Faenson2a973df2015-06-17 17:30:56 -0400405 if (speed)
406 hci_uart_set_baudrate(hu, speed);
407
408 /* Operational speed if any */
Frederic Danis960ef1d2015-06-18 12:43:27 +0200409 if (hu->oper_speed)
Ilya Faenson2a973df2015-06-17 17:30:56 -0400410 speed = hu->oper_speed;
Frederic Danis960ef1d2015-06-18 12:43:27 +0200411 else if (hu->proto->oper_speed)
412 speed = hu->proto->oper_speed;
Ilya Faenson2a973df2015-06-17 17:30:56 -0400413 else
414 speed = 0;
415
416 if (hu->proto->set_baudrate && speed) {
417 err = hu->proto->set_baudrate(hu, speed);
Frederic Danis77213832015-05-28 11:25:03 +0200418 if (!err)
Ilya Faenson2a973df2015-06-17 17:30:56 -0400419 hci_uart_set_baudrate(hu, speed);
Frederic Danis77213832015-05-28 11:25:03 +0200420 }
Loic Poulaineb173802015-03-25 15:19:30 +0100421
422 if (hu->proto->setup)
423 return hu->proto->setup(hu);
424
Marcel Holtmannfb2ce8d2015-04-04 16:13:01 -0700425 if (!test_bit(HCI_UART_VND_DETECT, &hu->hdev_flags))
426 return 0;
427
428 skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
429 HCI_INIT_TIMEOUT);
430 if (IS_ERR(skb)) {
431 BT_ERR("%s: Reading local version information failed (%ld)",
432 hdev->name, PTR_ERR(skb));
433 return 0;
434 }
435
436 if (skb->len != sizeof(*ver)) {
437 BT_ERR("%s: Event length mismatch for version information",
438 hdev->name);
439 goto done;
440 }
441
442 ver = (struct hci_rp_read_local_version *)skb->data;
443
444 switch (le16_to_cpu(ver->manufacturer)) {
Marcel Holtmann16e38872015-04-04 16:13:02 -0700445#ifdef CONFIG_BT_HCIUART_INTEL
446 case 2:
Marcel Holtmannbca03c92015-04-06 00:52:14 -0700447 hdev->set_bdaddr = btintel_set_bdaddr;
448 btintel_check_bdaddr(hdev);
Marcel Holtmann16e38872015-04-04 16:13:02 -0700449 break;
450#endif
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -0700451#ifdef CONFIG_BT_HCIUART_BCM
452 case 15:
Marcel Holtmann3e0ac122015-04-05 22:52:12 -0700453 hdev->set_bdaddr = btbcm_set_bdaddr;
454 btbcm_check_bdaddr(hdev);
Marcel Holtmanne9a2dd22015-04-04 16:13:03 -0700455 break;
456#endif
Fabio Estevamd36dfb32018-04-25 19:36:29 -0300457 default:
458 break;
Marcel Holtmannfb2ce8d2015-04-04 16:13:01 -0700459 }
460
461done:
462 kfree_skb(skb);
Loic Poulaineb173802015-03-25 15:19:30 +0100463 return 0;
464}
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466/* ------ LDISC part ------ */
467/* hci_uart_tty_open
Chan-yeol Park1687dfc2013-04-02 21:24:23 +0900468 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 * Called when line discipline changed to HCI_UART.
470 *
471 * Arguments:
472 * tty pointer to tty info structure
Chan-yeol Park1687dfc2013-04-02 21:24:23 +0900473 * Return Value:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 * 0 if success, otherwise error code
475 */
476static int hci_uart_tty_open(struct tty_struct *tty)
477{
Jiri Slabyf327b342012-10-18 22:26:34 +0200478 struct hci_uart *hu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 BT_DBG("tty %p", tty);
481
Thadeu Lima de Souza Cascardoc05731d2021-09-22 08:56:56 -0300482 if (!capable(CAP_NET_ADMIN))
483 return -EPERM;
484
Alan Coxc19483c2010-10-22 14:11:26 +0100485 /* Error if the tty has no write op instead of leaving an exploitable
Derek Robsond98422c2017-07-22 13:47:07 +1200486 * hole
487 */
Alan Coxc19483c2010-10-22 14:11:26 +0100488 if (tty->ops->write == NULL)
489 return -EOPNOTSUPP;
490
Valentin Iliea08b15e2013-08-12 18:46:00 +0300491 hu = kzalloc(sizeof(struct hci_uart), GFP_KERNEL);
492 if (!hu) {
Marcel Holtmann77851622006-09-21 16:23:19 +0200493 BT_ERR("Can't allocate control structure");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return -ENFILE;
495 }
Marcel Holtmann0372a662005-10-28 19:20:45 +0200496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 tty->disc_data = hu;
498 hu->tty = tty;
Alan Cox33f0f882006-01-09 20:54:13 -0800499 tty->receive_room = 65536;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Sebastian Reichelaeac3012017-03-28 17:59:34 +0200501 /* disable alignment support by default */
502 hu->alignment = 1;
503 hu->padding = 0;
504
Johan Hedberg9f2aee82012-07-16 16:12:11 +0300505 INIT_WORK(&hu->init_ready, hci_uart_init_work);
Felipe Balbida64c272014-04-23 09:58:26 -0500506 INIT_WORK(&hu->write_work, hci_uart_write_work);
Johan Hedberg9f2aee82012-07-16 16:12:11 +0300507
Ronald Tschalär67d2f872017-10-25 22:14:53 -0700508 percpu_init_rwsem(&hu->proto_lock);
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100509
Peter Hurleye6e981c2015-11-27 16:39:00 -0500510 /* Flush any pending characters in the driver */
Alan Coxf34d7a52008-04-30 00:54:13 -0700511 tty_driver_flush_buffer(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 return 0;
514}
515
516/* hci_uart_tty_close()
517 *
518 * Called when the line discipline is changed to something
519 * else, the tty is closed, or the tty detects a hangup.
520 */
521static void hci_uart_tty_close(struct tty_struct *tty)
522{
Marcel Holtmanndfe19d22015-04-04 19:57:21 -0700523 struct hci_uart *hu = tty->disc_data;
Johan Hedbergdac670b2012-07-16 16:12:10 +0300524 struct hci_dev *hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 BT_DBG("tty %p", tty);
527
528 /* Detach from the tty */
529 tty->disc_data = NULL;
530
Johan Hedbergdac670b2012-07-16 16:12:10 +0300531 if (!hu)
532 return;
Marcel Holtmann22ad4202007-05-09 09:15:40 +0200533
Johan Hedbergdac670b2012-07-16 16:12:10 +0300534 hdev = hu->hdev;
535 if (hdev)
536 hci_uart_close(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100538 if (test_bit(HCI_UART_PROTO_READY, &hu->flags)) {
Ronald Tschalär67d2f872017-10-25 22:14:53 -0700539 percpu_down_write(&hu->proto_lock);
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100540 clear_bit(HCI_UART_PROTO_READY, &hu->flags);
Ronald Tschalär67d2f872017-10-25 22:14:53 -0700541 percpu_up_write(&hu->proto_lock);
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100542
Samuel Holland3b799252020-08-01 11:29:56 -0500543 cancel_work_sync(&hu->init_ready);
Ronald Tschalär0338b1b2017-10-25 22:15:19 -0700544 cancel_work_sync(&hu->write_work);
545
Johan Hedbergdac670b2012-07-16 16:12:10 +0300546 if (hdev) {
Johan Hedberg9f2aee82012-07-16 16:12:11 +0300547 if (test_bit(HCI_UART_REGISTERED, &hu->flags))
548 hci_unregister_dev(hdev);
Johan Hedbergdac670b2012-07-16 16:12:10 +0300549 hci_free_dev(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
Johan Hedbergdac670b2012-07-16 16:12:10 +0300551 hu->proto->close(hu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
Loic Poulain84cb3df2016-04-04 10:48:13 +0200553 clear_bit(HCI_UART_PROTO_SET, &hu->flags);
Johan Hedbergdac670b2012-07-16 16:12:10 +0300554
Hermes Zhange6a57d22018-08-28 09:48:30 +0800555 percpu_free_rwsem(&hu->proto_lock);
556
Johan Hedbergdac670b2012-07-16 16:12:10 +0300557 kfree(hu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
560/* hci_uart_tty_wakeup()
561 *
562 * Callback for transmit wakeup. Called when low level
563 * device driver can accept more send data.
564 *
565 * Arguments: tty pointer to associated tty instance data
566 * Return Value: None
567 */
568static void hci_uart_tty_wakeup(struct tty_struct *tty)
569{
Marcel Holtmanndfe19d22015-04-04 19:57:21 -0700570 struct hci_uart *hu = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 BT_DBG("");
573
574 if (!hu)
575 return;
576
577 clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
578
579 if (tty != hu->tty)
580 return;
581
Loic Poulain84cb3df2016-04-04 10:48:13 +0200582 if (test_bit(HCI_UART_PROTO_READY, &hu->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 hci_uart_tx_wakeup(hu);
584}
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586/* hci_uart_tty_receive()
Chan-yeol Park1687dfc2013-04-02 21:24:23 +0900587 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 * Called by tty low level driver when receive data is
589 * available.
Chan-yeol Park1687dfc2013-04-02 21:24:23 +0900590 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 * Arguments: tty pointer to tty isntance data
592 * data pointer to received data
593 * flags pointer to flags for data
594 * count count of received data in bytes
Chan-yeol Park1687dfc2013-04-02 21:24:23 +0900595 *
Linus Torvalds55db4c62011-06-04 06:33:24 +0900596 * Return Value: None
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 */
Marcel Holtmannfacf5222015-04-04 19:57:22 -0700598static void hci_uart_tty_receive(struct tty_struct *tty, const u8 *data,
Jiri Slaby0f3dcf32021-05-05 11:19:04 +0200599 const char *flags, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
Marcel Holtmanndfe19d22015-04-04 19:57:21 -0700601 struct hci_uart *hu = tty->disc_data;
Marcel Holtmann0372a662005-10-28 19:20:45 +0200602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 if (!hu || tty != hu->tty)
Linus Torvalds55db4c62011-06-04 06:33:24 +0900604 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Ronald Tschalär67d2f872017-10-25 22:14:53 -0700606 percpu_down_read(&hu->proto_lock);
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100607
608 if (!test_bit(HCI_UART_PROTO_READY, &hu->flags)) {
Ronald Tschalär67d2f872017-10-25 22:14:53 -0700609 percpu_up_read(&hu->proto_lock);
Linus Torvalds55db4c62011-06-04 06:33:24 +0900610 return;
Dean Jenkinsdec2c922017-05-05 16:27:06 +0100611 }
Marcel Holtmann0372a662005-10-28 19:20:45 +0200612
Frederic Danis7649faf2015-09-23 18:18:10 +0200613 /* It does not need a lock here as it is already protected by a mutex in
614 * tty caller
615 */
Marcel Holtmann9d1c40e2015-04-04 20:59:41 -0700616 hu->proto->recv(hu, data, count);
Ronald Tschalär67d2f872017-10-25 22:14:53 -0700617 percpu_up_read(&hu->proto_lock);
Chan-yeol Park788f0922013-04-02 21:24:22 +0900618
619 if (hu->hdev)
620 hu->hdev->stat.byte_rx += count;
621
Alan Cox39c2e602008-04-30 00:54:18 -0700622 tty_unthrottle(tty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
625static int hci_uart_register_dev(struct hci_uart *hu)
626{
627 struct hci_dev *hdev;
Jeremy Cline32a7b4c2019-02-06 12:54:16 -0500628 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 BT_DBG("");
631
632 /* Initialize and register HCI device */
633 hdev = hci_alloc_dev();
634 if (!hdev) {
635 BT_ERR("Can't allocate HCI device");
636 return -ENOMEM;
637 }
638
639 hu->hdev = hdev;
640
Marcel Holtmannc13854c2010-02-08 15:27:07 +0100641 hdev->bus = HCI_UART;
David Herrmann155961e2012-02-09 21:58:32 +0100642 hci_set_drvdata(hdev, hu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Marcel Holtmannaee61f72015-10-20 21:30:45 +0200644 /* Only when vendor specific setup callback is provided, consider
645 * the manufacturer information valid. This avoids filling in the
646 * value for Ericsson when nothing is specified.
647 */
648 if (hu->proto->setup)
649 hdev->manufacturer = hu->proto->manufacturer;
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 hdev->open = hci_uart_open;
652 hdev->close = hci_uart_close;
653 hdev->flush = hci_uart_flush;
654 hdev->send = hci_uart_send_frame;
Loic Poulaineb173802015-03-25 15:19:30 +0100655 hdev->setup = hci_uart_setup;
David Herrmann6935e0f2012-03-09 15:53:42 +0100656 SET_HCIDEV_DEV(hdev, hu->tty->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Johan Hedberg63c7d092010-07-12 11:37:04 -0300658 if (test_bit(HCI_UART_RAW_DEVICE, &hu->hdev_flags))
659 set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
660
Marcel Holtmann6afd04a2014-07-11 07:12:58 +0200661 if (test_bit(HCI_UART_EXT_CONFIG, &hu->hdev_flags))
662 set_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks);
663
Marcel Holtmanna55e1f32012-02-24 17:12:24 +0100664 if (!test_bit(HCI_UART_RESET_ON_INIT, &hu->hdev_flags))
Szymon Janca6c511c2012-05-23 12:35:46 +0200665 set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
Marcel Holtmanna55e1f32012-02-24 17:12:24 +0100666
Marcel Holtmann8a7a3fd62012-02-24 17:09:38 +0100667 if (test_bit(HCI_UART_CREATE_AMP, &hu->hdev_flags))
668 hdev->dev_type = HCI_AMP;
669 else
Marcel Holtmannca8bee52016-07-05 14:30:14 +0200670 hdev->dev_type = HCI_PRIMARY;
Marcel Holtmann8a7a3fd62012-02-24 17:09:38 +0100671
Jeremy Cline32a7b4c2019-02-06 12:54:16 -0500672 /* Only call open() for the protocol after hdev is fully initialized as
673 * open() (or a timer/workqueue it starts) may attempt to reference it.
674 */
675 err = hu->proto->open(hu);
676 if (err) {
677 hu->hdev = NULL;
678 hci_free_dev(hdev);
679 return err;
680 }
681
Johan Hedberg9f2aee82012-07-16 16:12:11 +0300682 if (test_bit(HCI_UART_INIT_PENDING, &hu->hdev_flags))
683 return 0;
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (hci_register_dev(hdev) < 0) {
686 BT_ERR("Can't register HCI device");
Jeremy Cline32a7b4c2019-02-06 12:54:16 -0500687 hu->proto->close(hu);
Dean Jenkinsa225b8c2017-04-20 18:06:40 +0100688 hu->hdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 hci_free_dev(hdev);
690 return -ENODEV;
691 }
692
Johan Hedberg9f2aee82012-07-16 16:12:11 +0300693 set_bit(HCI_UART_REGISTERED, &hu->flags);
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return 0;
696}
697
698static int hci_uart_set_proto(struct hci_uart *hu, int id)
699{
Marcel Holtmann4ee7ef12015-04-04 22:11:43 -0700700 const struct hci_uart_proto *p;
Marcel Holtmann0372a662005-10-28 19:20:45 +0200701 int err;
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 p = hci_uart_get_proto(id);
704 if (!p)
705 return -EPROTONOSUPPORT;
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 hu->proto = p;
708
709 err = hci_uart_register_dev(hu);
710 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return err;
712 }
Marcel Holtmann0372a662005-10-28 19:20:45 +0200713
Kefeng Wang56897b22019-02-23 12:33:27 +0800714 set_bit(HCI_UART_PROTO_READY, &hu->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 return 0;
716}
717
Marcel Holtmannbb72bd62014-07-11 07:12:57 +0200718static int hci_uart_set_flags(struct hci_uart *hu, unsigned long flags)
719{
720 unsigned long valid_flags = BIT(HCI_UART_RAW_DEVICE) |
721 BIT(HCI_UART_RESET_ON_INIT) |
722 BIT(HCI_UART_CREATE_AMP) |
Marcel Holtmann6afd04a2014-07-11 07:12:58 +0200723 BIT(HCI_UART_INIT_PENDING) |
Marcel Holtmannfb2ce8d2015-04-04 16:13:01 -0700724 BIT(HCI_UART_EXT_CONFIG) |
725 BIT(HCI_UART_VND_DETECT);
Marcel Holtmannbb72bd62014-07-11 07:12:57 +0200726
Marcel Holtmann41533fe2015-04-01 13:51:51 -0700727 if (flags & ~valid_flags)
Marcel Holtmannbb72bd62014-07-11 07:12:57 +0200728 return -EINVAL;
729
730 hu->hdev_flags = flags;
731
732 return 0;
733}
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735/* hci_uart_tty_ioctl()
736 *
737 * Process IOCTL system call for the tty device.
738 *
739 * Arguments:
740 *
741 * tty pointer to tty instance data
742 * file pointer to open file object for device
743 * cmd IOCTL command code
744 * arg argument for IOCTL call (cmd dependent)
745 *
746 * Return Value: Command dependent
747 */
Marcel Holtmannfacf5222015-04-04 19:57:22 -0700748static int hci_uart_tty_ioctl(struct tty_struct *tty, struct file *file,
749 unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Marcel Holtmanndfe19d22015-04-04 19:57:21 -0700751 struct hci_uart *hu = tty->disc_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 int err = 0;
753
754 BT_DBG("");
755
756 /* Verify the status of the device */
757 if (!hu)
758 return -EBADF;
759
760 switch (cmd) {
761 case HCIUARTSETPROTO:
762 if (!test_and_set_bit(HCI_UART_PROTO_SET, &hu->flags)) {
763 err = hci_uart_set_proto(hu, arg);
Vignesh Raman05650692016-09-23 18:56:28 +0100764 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 clear_bit(HCI_UART_PROTO_SET, &hu->flags);
Marcel Holtmann0372a662005-10-28 19:20:45 +0200766 } else
Vignesh Raman05650692016-09-23 18:56:28 +0100767 err = -EBUSY;
Marcel Holtmannc33be3c2007-05-09 09:15:45 +0200768 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 case HCIUARTGETPROTO:
771 if (test_bit(HCI_UART_PROTO_SET, &hu->flags))
Vignesh Raman05650692016-09-23 18:56:28 +0100772 err = hu->proto->id;
773 else
774 err = -EUNATCH;
775 break;
Marcel Holtmann0372a662005-10-28 19:20:45 +0200776
Marcel Holtmannd2158742007-05-09 09:15:35 +0200777 case HCIUARTGETDEVICE:
Marcel Holtmannc7e0c142014-07-12 17:00:29 +0200778 if (test_bit(HCI_UART_REGISTERED, &hu->flags))
Vignesh Raman05650692016-09-23 18:56:28 +0100779 err = hu->hdev->id;
780 else
781 err = -EUNATCH;
782 break;
Marcel Holtmannd2158742007-05-09 09:15:35 +0200783
Johan Hedberg63c7d092010-07-12 11:37:04 -0300784 case HCIUARTSETFLAGS:
785 if (test_bit(HCI_UART_PROTO_SET, &hu->flags))
Vignesh Raman05650692016-09-23 18:56:28 +0100786 err = -EBUSY;
787 else
788 err = hci_uart_set_flags(hu, arg);
Johan Hedberg63c7d092010-07-12 11:37:04 -0300789 break;
790
791 case HCIUARTGETFLAGS:
Vignesh Raman05650692016-09-23 18:56:28 +0100792 err = hu->hdev_flags;
793 break;
Johan Hedberg63c7d092010-07-12 11:37:04 -0300794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 default:
Jiri Slaby7c783602021-09-14 11:11:24 +0200796 err = n_tty_ioctl_helper(tty, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 break;
Peter Senna Tschudina20890d2012-09-07 17:24:39 +0200798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 return err;
801}
802
803/*
804 * We don't provide read/write/poll interface for user space.
805 */
Marcel Holtmann0372a662005-10-28 19:20:45 +0200806static ssize_t hci_uart_tty_read(struct tty_struct *tty, struct file *file,
Linus Torvalds3b830a92021-01-18 13:31:30 -0800807 unsigned char *buf, size_t nr,
808 void **cookie, unsigned long offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 return 0;
811}
812
Marcel Holtmann0372a662005-10-28 19:20:45 +0200813static ssize_t hci_uart_tty_write(struct tty_struct *tty, struct file *file,
Marcel Holtmannfacf5222015-04-04 19:57:22 -0700814 const unsigned char *data, size_t count)
Marcel Holtmann0372a662005-10-28 19:20:45 +0200815{
816 return 0;
817}
818
Al Viroafc9a422017-07-03 06:39:46 -0400819static __poll_t hci_uart_tty_poll(struct tty_struct *tty,
Marcel Holtmannfacf5222015-04-04 19:57:22 -0700820 struct file *filp, poll_table *wait)
Marcel Holtmann0372a662005-10-28 19:20:45 +0200821{
822 return 0;
823}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Linus Torvalds3b830a92021-01-18 13:31:30 -0800825static struct tty_ldisc_ops hci_uart_ldisc = {
826 .owner = THIS_MODULE,
Jiri Slabyfbadf70a2021-05-05 11:19:07 +0200827 .num = N_HCI,
Linus Torvalds3b830a92021-01-18 13:31:30 -0800828 .name = "n_hci",
829 .open = hci_uart_tty_open,
830 .close = hci_uart_tty_close,
831 .read = hci_uart_tty_read,
832 .write = hci_uart_tty_write,
833 .ioctl = hci_uart_tty_ioctl,
834 .compat_ioctl = hci_uart_tty_ioctl,
835 .poll = hci_uart_tty_poll,
836 .receive_buf = hci_uart_tty_receive,
837 .write_wakeup = hci_uart_tty_wakeup,
838};
839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840static int __init hci_uart_init(void)
841{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 int err;
843
844 BT_INFO("HCI UART driver ver %s", VERSION);
845
846 /* Register the tty discipline */
Jiri Slabyfbadf70a2021-05-05 11:19:07 +0200847 err = tty_register_ldisc(&hci_uart_ldisc);
Valentin Iliea08b15e2013-08-12 18:46:00 +0300848 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 BT_ERR("HCI line discipline registration failed. (%d)", err);
850 return err;
851 }
852
853#ifdef CONFIG_BT_HCIUART_H4
854 h4_init();
855#endif
856#ifdef CONFIG_BT_HCIUART_BCSP
857 bcsp_init();
858#endif
Ohad Ben-Cohen166d2f62007-10-20 13:42:36 +0200859#ifdef CONFIG_BT_HCIUART_LL
860 ll_init();
861#endif
Suraj Sumangalab3190df2010-07-19 12:34:07 +0530862#ifdef CONFIG_BT_HCIUART_ATH3K
863 ath_init();
864#endif
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300865#ifdef CONFIG_BT_HCIUART_3WIRE
866 h5_init();
867#endif
Loic Poulainca93cee2015-07-01 12:20:26 +0200868#ifdef CONFIG_BT_HCIUART_INTEL
869 intel_init();
870#endif
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700871#ifdef CONFIG_BT_HCIUART_BCM
872 bcm_init();
873#endif
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700874#ifdef CONFIG_BT_HCIUART_QCA
875 qca_init();
876#endif
Loic Poulain395174b2016-02-22 10:48:03 +0100877#ifdef CONFIG_BT_HCIUART_AG6XX
878 ag6xx_init();
879#endif
Loic Poulain162f8122016-09-19 16:29:27 +0200880#ifdef CONFIG_BT_HCIUART_MRVL
881 mrvl_init();
882#endif
Ohad Ben-Cohen166d2f62007-10-20 13:42:36 +0200883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return 0;
885}
886
887static void __exit hci_uart_exit(void)
888{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889#ifdef CONFIG_BT_HCIUART_H4
890 h4_deinit();
891#endif
892#ifdef CONFIG_BT_HCIUART_BCSP
893 bcsp_deinit();
894#endif
Ohad Ben-Cohen166d2f62007-10-20 13:42:36 +0200895#ifdef CONFIG_BT_HCIUART_LL
896 ll_deinit();
897#endif
Suraj Sumangalab3190df2010-07-19 12:34:07 +0530898#ifdef CONFIG_BT_HCIUART_ATH3K
899 ath_deinit();
900#endif
Johan Hedberg7dec65c2012-07-16 16:12:02 +0300901#ifdef CONFIG_BT_HCIUART_3WIRE
902 h5_deinit();
903#endif
Loic Poulainca93cee2015-07-01 12:20:26 +0200904#ifdef CONFIG_BT_HCIUART_INTEL
905 intel_deinit();
906#endif
Marcel Holtmannbdd88182015-04-05 22:52:18 -0700907#ifdef CONFIG_BT_HCIUART_BCM
908 bcm_deinit();
909#endif
Ben Young Tae Kim0ff252c2015-08-10 14:24:17 -0700910#ifdef CONFIG_BT_HCIUART_QCA
911 qca_deinit();
912#endif
Loic Poulain395174b2016-02-22 10:48:03 +0100913#ifdef CONFIG_BT_HCIUART_AG6XX
914 ag6xx_deinit();
915#endif
Loic Poulain162f8122016-09-19 16:29:27 +0200916#ifdef CONFIG_BT_HCIUART_MRVL
917 mrvl_deinit();
918#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Jiri Slaby357a6a82021-05-05 11:19:11 +0200920 tty_unregister_ldisc(&hci_uart_ldisc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
923module_init(hci_uart_init);
924module_exit(hci_uart_exit);
925
Marcel Holtmann63fbd242008-08-18 13:23:53 +0200926MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927MODULE_DESCRIPTION("Bluetooth HCI UART driver ver " VERSION);
928MODULE_VERSION(VERSION);
929MODULE_LICENSE("GPL");
930MODULE_ALIAS_LDISC(N_HCI);