/Linux-v4.19/drivers/bluetooth/ |
D | hci_serdev.c | 36 static inline void hci_uart_tx_complete(struct hci_uart *hu, int pkt_type) in hci_uart_tx_complete() argument 38 struct hci_dev *hdev = hu->hdev; in hci_uart_tx_complete() 56 static inline struct sk_buff *hci_uart_dequeue(struct hci_uart *hu) in hci_uart_dequeue() argument 58 struct sk_buff *skb = hu->tx_skb; in hci_uart_dequeue() 61 skb = hu->proto->dequeue(hu); in hci_uart_dequeue() 63 hu->tx_skb = NULL; in hci_uart_dequeue() 70 struct hci_uart *hu = container_of(work, struct hci_uart, write_work); in hci_uart_write_work() local 71 struct serdev_device *serdev = hu->serdev; in hci_uart_write_work() 72 struct hci_dev *hdev = hu->hdev; in hci_uart_write_work() 79 clear_bit(HCI_UART_TX_WAKEUP, &hu->tx_state); in hci_uart_write_work() [all …]
|
D | hci_ldisc.c | 93 static inline void hci_uart_tx_complete(struct hci_uart *hu, int pkt_type) in hci_uart_tx_complete() argument 95 struct hci_dev *hdev = hu->hdev; in hci_uart_tx_complete() 113 static inline struct sk_buff *hci_uart_dequeue(struct hci_uart *hu) in hci_uart_dequeue() argument 115 struct sk_buff *skb = hu->tx_skb; in hci_uart_dequeue() 118 percpu_down_read(&hu->proto_lock); in hci_uart_dequeue() 120 if (test_bit(HCI_UART_PROTO_READY, &hu->flags)) in hci_uart_dequeue() 121 skb = hu->proto->dequeue(hu); in hci_uart_dequeue() 123 percpu_up_read(&hu->proto_lock); in hci_uart_dequeue() 125 hu->tx_skb = NULL; in hci_uart_dequeue() 131 int hci_uart_tx_wakeup(struct hci_uart *hu) in hci_uart_tx_wakeup() argument [all …]
|
D | hci_qca.c | 89 struct hci_uart *hu; member 169 static int qca_power_setup(struct hci_uart *hu, bool on); 189 static void serial_clock_vote(unsigned long vote, struct hci_uart *hu) in serial_clock_vote() argument 191 struct qca_data *qca = hu->priv; in serial_clock_vote() 238 __serial_clock_on(hu->tty); in serial_clock_vote() 240 __serial_clock_off(hu->tty); in serial_clock_vote() 261 static int send_hci_ibs_cmd(u8 cmd, struct hci_uart *hu) in send_hci_ibs_cmd() argument 265 struct qca_data *qca = hu->priv; in send_hci_ibs_cmd() 267 BT_DBG("hu %p send hci ibs cmd 0x%x", hu, cmd); in send_hci_ibs_cmd() 287 struct hci_uart *hu = qca->hu; in qca_wq_awake_device() local [all …]
|
D | hci_ll.c | 79 struct hci_uart hu; member 98 static int send_hcill_cmd(u8 cmd, struct hci_uart *hu) in send_hcill_cmd() argument 102 struct ll_struct *ll = hu->priv; in send_hcill_cmd() 104 BT_DBG("hu %p cmd 0x%x", hu, cmd); in send_hcill_cmd() 124 static int ll_open(struct hci_uart *hu) in ll_open() argument 128 BT_DBG("hu %p", hu); in ll_open() 140 hu->priv = ll; in ll_open() 142 if (hu->serdev) { in ll_open() 143 struct ll_device *lldev = serdev_device_get_drvdata(hu->serdev); in ll_open() 152 static int ll_flush(struct hci_uart *hu) in ll_flush() argument [all …]
|
D | hci_intel.c | 74 struct hci_uart *hu; member 86 struct hci_uart *hu; member 122 static int intel_wait_booting(struct hci_uart *hu) in intel_wait_booting() argument 124 struct intel_data *intel = hu->priv; in intel_wait_booting() 132 bt_dev_err(hu->hdev, "Device boot interrupted"); in intel_wait_booting() 137 bt_dev_err(hu->hdev, "Device boot timeout"); in intel_wait_booting() 145 static int intel_wait_lpm_transaction(struct hci_uart *hu) in intel_wait_lpm_transaction() argument 147 struct intel_data *intel = hu->priv; in intel_wait_lpm_transaction() 155 bt_dev_err(hu->hdev, "LPM transaction interrupted"); in intel_wait_lpm_transaction() 160 bt_dev_err(hu->hdev, "LPM transaction timeout"); in intel_wait_lpm_transaction() [all …]
|
D | hci_h4.c | 56 static int h4_open(struct hci_uart *hu) in h4_open() argument 60 BT_DBG("hu %p", hu); in h4_open() 68 hu->priv = h4; in h4_open() 73 static int h4_flush(struct hci_uart *hu) in h4_flush() argument 75 struct h4_struct *h4 = hu->priv; in h4_flush() 77 BT_DBG("hu %p", hu); in h4_flush() 85 static int h4_close(struct hci_uart *hu) in h4_close() argument 87 struct h4_struct *h4 = hu->priv; in h4_close() 89 hu->priv = NULL; in h4_close() 91 BT_DBG("hu %p", hu); in h4_close() [all …]
|
D | hci_ath.c | 45 struct hci_uart *hu; member 89 struct hci_uart *hu; in ath_hci_uart_work() local 94 hu = ath->hu; in ath_hci_uart_work() 95 tty = hu->tty; in ath_hci_uart_work() 105 clear_bit(HCI_UART_SENDING, &hu->tx_state); in ath_hci_uart_work() 106 hci_uart_tx_wakeup(hu); in ath_hci_uart_work() 109 static int ath_open(struct hci_uart *hu) in ath_open() argument 113 BT_DBG("hu %p", hu); in ath_open() 121 hu->priv = ath; in ath_open() 122 ath->hu = hu; in ath_open() [all …]
|
D | hci_h5.c | 86 int (*rx_func)(struct hci_uart *hu, u8 c); 89 struct hci_uart *hu; /* Parent HCI UART */ member 123 static void h5_link_control(struct hci_uart *hu, const void *data, size_t len) in h5_link_control() argument 125 struct h5 *h5 = hu->priv; in h5_link_control() 150 struct hci_uart *hu = h5->hu; in h5_timed_event() local 154 BT_DBG("%s", hu->hdev->name); in h5_timed_event() 157 h5_link_control(hu, sync_req, sizeof(sync_req)); in h5_timed_event() 161 h5_link_control(hu, conf_req, sizeof(conf_req)); in h5_timed_event() 174 BT_DBG("hu %p retransmitting %u pkts", hu, h5->unack.qlen); in h5_timed_event() 186 hci_uart_tx_wakeup(hu); in h5_timed_event() [all …]
|
D | hci_mrvl.c | 63 static int mrvl_open(struct hci_uart *hu) in mrvl_open() argument 67 BT_DBG("hu %p", hu); in mrvl_open() 78 hu->priv = mrvl; in mrvl_open() 82 static int mrvl_close(struct hci_uart *hu) in mrvl_close() argument 84 struct mrvl_data *mrvl = hu->priv; in mrvl_close() 86 BT_DBG("hu %p", hu); in mrvl_close() 93 hu->priv = NULL; in mrvl_close() 97 static int mrvl_flush(struct hci_uart *hu) in mrvl_flush() argument 99 struct mrvl_data *mrvl = hu->priv; in mrvl_flush() 101 BT_DBG("hu %p", hu); in mrvl_flush() [all …]
|
D | hci_bcm.c | 114 struct hci_uart *hu; member 135 static inline void host_set_baudrate(struct hci_uart *hu, unsigned int speed) in host_set_baudrate() argument 137 if (hu->serdev) in host_set_baudrate() 138 serdev_device_set_baudrate(hu->serdev, speed); in host_set_baudrate() 140 hci_uart_set_baudrate(hu, speed); in host_set_baudrate() 143 static int bcm_set_baudrate(struct hci_uart *hu, unsigned int speed) in bcm_set_baudrate() argument 145 struct hci_dev *hdev = hu->hdev; in bcm_set_baudrate() 199 if (device && device->hu && device->hu->serdev) in bcm_device_exists() 315 static int bcm_setup_sleep(struct hci_uart *hu) in bcm_setup_sleep() argument 317 struct bcm_data *bcm = hu->priv; in bcm_setup_sleep() [all …]
|
D | hci_ag6xx.c | 48 static int ag6xx_open(struct hci_uart *hu) in ag6xx_open() argument 52 BT_DBG("hu %p", hu); in ag6xx_open() 60 hu->priv = ag6xx; in ag6xx_open() 64 static int ag6xx_close(struct hci_uart *hu) in ag6xx_close() argument 66 struct ag6xx_data *ag6xx = hu->priv; in ag6xx_close() 68 BT_DBG("hu %p", hu); in ag6xx_close() 74 hu->priv = NULL; in ag6xx_close() 78 static int ag6xx_flush(struct hci_uart *hu) in ag6xx_flush() argument 80 struct ag6xx_data *ag6xx = hu->priv; in ag6xx_flush() 82 BT_DBG("hu %p", hu); in ag6xx_flush() [all …]
|
D | hci_uart.h | 69 int (*open)(struct hci_uart *hu); 70 int (*close)(struct hci_uart *hu); 71 int (*flush)(struct hci_uart *hu); 72 int (*setup)(struct hci_uart *hu); 73 int (*set_baudrate)(struct hci_uart *hu, unsigned int speed); 74 int (*recv)(struct hci_uart *hu, const void *data, int len); 75 int (*enqueue)(struct hci_uart *hu, struct sk_buff *skb); 76 struct sk_buff *(*dequeue)(struct hci_uart *hu); 114 int hci_uart_register_device(struct hci_uart *hu, const struct hci_uart_proto *p); 115 void hci_uart_unregister_device(struct hci_uart *hu); [all …]
|
D | hci_nokia.c | 134 struct hci_uart hu; member 158 static int nokia_enqueue(struct hci_uart *hu, struct sk_buff *skb); 190 static int nokia_reset(struct hci_uart *hu) in nokia_reset() argument 192 struct nokia_bt_dev *btdev = hu->priv; in nokia_reset() 230 static int nokia_send_alive_packet(struct hci_uart *hu) in nokia_send_alive_packet() argument 232 struct nokia_bt_dev *btdev = hu->priv; in nokia_send_alive_packet() 254 nokia_enqueue(hu, skb); in nokia_send_alive_packet() 255 hci_uart_tx_wakeup(hu); in nokia_send_alive_packet() 270 static int nokia_send_negotiation(struct hci_uart *hu) in nokia_send_negotiation() argument 272 struct nokia_bt_dev *btdev = hu->priv; in nokia_send_negotiation() [all …]
|
D | hci_bcsp.c | 68 struct hci_uart *hu; member 149 static int bcsp_enqueue(struct hci_uart *hu, struct sk_buff *skb) in bcsp_enqueue() argument 151 struct bcsp_struct *bcsp = hu->priv; in bcsp_enqueue() 286 static struct sk_buff *bcsp_dequeue(struct hci_uart *hu) in bcsp_dequeue() argument 288 struct bcsp_struct *bcsp = hu->priv; in bcsp_dequeue() 356 static int bcsp_flush(struct hci_uart *hu) in bcsp_flush() argument 358 BT_DBG("hu %p", hu); in bcsp_flush() 412 static void bcsp_handle_le_pkt(struct hci_uart *hu) in bcsp_handle_le_pkt() argument 414 struct bcsp_struct *bcsp = hu->priv; in bcsp_handle_le_pkt() 431 hci_uart_tx_wakeup(hu); in bcsp_handle_le_pkt() [all …]
|
/Linux-v4.19/Documentation/hwmon/ |
D | lm77 | 11 Author: Andras BALI <drewie@freemail.hu>
|
/Linux-v4.19/arch/arm64/boot/dts/freescale/ |
D | fsl-ls1043a-qds.dts | 7 * Mingkai Hu <Mingkai.hu@freescale.com>
|
D | fsl-ls1043a-rdb.dts | 7 * Mingkai Hu <Mingkai.hu@freescale.com>
|
D | fsl-ls1046a-rdb.dts | 7 * Mingkai Hu <mingkai.hu@nxp.com>
|
/Linux-v4.19/arch/arm/boot/dts/ |
D | sun4i-a10-pcduino.dts | 3 * Zoltan HERPAI <wigyori@uid0.hu>
|
D | sun7i-a20-pcduino3.dts | 3 * Zoltan HERPAI <wigyori@uid0.hu>
|
/Linux-v4.19/Documentation/filesystems/ |
D | romfs.txt | 156 to romfs-subscribe@shadow.banki.hu, the content is irrelevant. 186 Janos Farkas <chexum@shadow.banki.hu>
|
/Linux-v4.19/Documentation/x86/ |
D | entry_64.txt | 5 http://lkml.kernel.org/r/<20110529191055.GC9835%40elte.hu>
|
/Linux-v4.19/Documentation/networking/ |
D | xfrm_sync.txt | 3 Krisztian <hidden@balabit.hu> and others and additional patches
|
/Linux-v4.19/Documentation/process/ |
D | stable-kernel-rules.rst | 111 Signed-off-by: Ingo Molnar <mingo@elte.hu>
|
/Linux-v4.19/Documentation/media/dvb-drivers/ |
D | faq.rst | 92 http://mplayerhq.hu/
|