|
@@ -58,10 +58,13 @@ struct hci_uart;
|
|
struct hci_uart_proto {
|
|
struct hci_uart_proto {
|
|
unsigned int id;
|
|
unsigned int id;
|
|
const char *name;
|
|
const char *name;
|
|
|
|
+ unsigned int init_speed;
|
|
|
|
+ unsigned int oper_speed;
|
|
int (*open)(struct hci_uart *hu);
|
|
int (*open)(struct hci_uart *hu);
|
|
int (*close)(struct hci_uart *hu);
|
|
int (*close)(struct hci_uart *hu);
|
|
int (*flush)(struct hci_uart *hu);
|
|
int (*flush)(struct hci_uart *hu);
|
|
int (*setup)(struct hci_uart *hu);
|
|
int (*setup)(struct hci_uart *hu);
|
|
|
|
+ int (*set_baudrate)(struct hci_uart *hu, unsigned int speed);
|
|
int (*recv)(struct hci_uart *hu, const void *data, int len);
|
|
int (*recv)(struct hci_uart *hu, const void *data, int len);
|
|
int (*enqueue)(struct hci_uart *hu, struct sk_buff *skb);
|
|
int (*enqueue)(struct hci_uart *hu, struct sk_buff *skb);
|
|
struct sk_buff *(*dequeue)(struct hci_uart *hu);
|
|
struct sk_buff *(*dequeue)(struct hci_uart *hu);
|
|
@@ -96,6 +99,7 @@ int hci_uart_register_proto(const struct hci_uart_proto *p);
|
|
int hci_uart_unregister_proto(const struct hci_uart_proto *p);
|
|
int hci_uart_unregister_proto(const struct hci_uart_proto *p);
|
|
int hci_uart_tx_wakeup(struct hci_uart *hu);
|
|
int hci_uart_tx_wakeup(struct hci_uart *hu);
|
|
int hci_uart_init_ready(struct hci_uart *hu);
|
|
int hci_uart_init_ready(struct hci_uart *hu);
|
|
|
|
+void hci_uart_set_baudrate(struct hci_uart *hu, unsigned int speed);
|
|
|
|
|
|
#ifdef CONFIG_BT_HCIUART_H4
|
|
#ifdef CONFIG_BT_HCIUART_H4
|
|
int h4_init(void);
|
|
int h4_init(void);
|