• Home
  • Raw
  • Download

Lines Matching refs:hdev

110 struct hci_conn *phylink_add(struct hci_dev *hdev, struct amp_mgr *mgr,  in phylink_add()  argument
116 hcon = hci_conn_add(hdev, AMP_LINK, 0, dst); in phylink_add()
169 struct hci_dev *hdev = conn->hdev; in phylink_gen_key() local
189 key = hci_find_link_key(hdev, &conn->dst); in phylink_gen_key()
216 void amp_read_loc_assoc_frag(struct hci_dev *hdev, u8 phy_handle) in amp_read_loc_assoc_frag() argument
219 struct amp_assoc *loc_assoc = &hdev->loc_assoc; in amp_read_loc_assoc_frag()
221 BT_DBG("%s handle %d", hdev->name, phy_handle); in amp_read_loc_assoc_frag()
224 cp.max_len = cpu_to_le16(hdev->amp_assoc_size); in amp_read_loc_assoc_frag()
227 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_AMP_ASSOC, sizeof(cp), &cp); in amp_read_loc_assoc_frag()
230 void amp_read_loc_assoc(struct hci_dev *hdev, struct amp_mgr *mgr) in amp_read_loc_assoc() argument
234 memset(&hdev->loc_assoc, 0, sizeof(struct amp_assoc)); in amp_read_loc_assoc()
237 cp.max_len = cpu_to_le16(hdev->amp_assoc_size); in amp_read_loc_assoc()
240 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_AMP_ASSOC, sizeof(cp), &cp); in amp_read_loc_assoc()
243 void amp_read_loc_assoc_final_data(struct hci_dev *hdev, in amp_read_loc_assoc_final_data() argument
251 cp.max_len = cpu_to_le16(hdev->amp_assoc_size); in amp_read_loc_assoc_final_data()
256 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_AMP_ASSOC, sizeof(cp), &cp); in amp_read_loc_assoc_final_data()
260 static bool amp_write_rem_assoc_frag(struct hci_dev *hdev, in amp_write_rem_assoc_frag() argument
303 hci_send_cmd(hdev, HCI_OP_WRITE_REMOTE_AMP_ASSOC, len, cp); in amp_write_rem_assoc_frag()
310 void amp_write_rem_assoc_continue(struct hci_dev *hdev, u8 handle) in amp_write_rem_assoc_continue() argument
314 BT_DBG("%s phy handle 0x%2.2x", hdev->name, handle); in amp_write_rem_assoc_continue()
316 hcon = hci_conn_hash_lookup_handle(hdev, handle); in amp_write_rem_assoc_continue()
321 if (amp_write_rem_assoc_frag(hdev, hcon)) in amp_write_rem_assoc_continue()
322 a2mp_send_create_phy_link_rsp(hdev, 0); in amp_write_rem_assoc_continue()
325 void amp_write_remote_assoc(struct hci_dev *hdev, u8 handle) in amp_write_remote_assoc() argument
329 BT_DBG("%s phy handle 0x%2.2x", hdev->name, handle); in amp_write_remote_assoc()
331 hcon = hci_conn_hash_lookup_handle(hdev, handle); in amp_write_remote_assoc()
335 BT_DBG("%s phy handle 0x%2.2x hcon %p", hdev->name, handle, hcon); in amp_write_remote_assoc()
337 amp_write_rem_assoc_frag(hdev, hcon); in amp_write_remote_assoc()
340 void amp_create_phylink(struct hci_dev *hdev, struct amp_mgr *mgr, in amp_create_phylink() argument
347 BT_DBG("%s hcon %p phy handle 0x%2.2x", hdev->name, hcon, in amp_create_phylink()
356 hci_send_cmd(hdev, HCI_OP_CREATE_PHY_LINK, sizeof(cp), &cp); in amp_create_phylink()
359 void amp_accept_phylink(struct hci_dev *hdev, struct amp_mgr *mgr, in amp_accept_phylink() argument
366 BT_DBG("%s hcon %p phy handle 0x%2.2x", hdev->name, hcon, in amp_accept_phylink()
375 hci_send_cmd(hdev, HCI_OP_ACCEPT_PHY_LINK, sizeof(cp), &cp); in amp_accept_phylink()
380 struct hci_dev *bredr_hdev = hci_dev_hold(bredr_hcon->hdev); in amp_physical_cfm()
395 bredr_chan->local_amp_id = hs_hcon->hdev->id; in amp_physical_cfm()
397 bredr_chan->conn->mtu = hs_hcon->hdev->block_mtu; in amp_physical_cfm()
410 struct hci_dev *hdev; in amp_create_logical_link() local
417 hdev = hci_dev_hold(chan->hs_hcon->hdev); in amp_create_logical_link()
418 if (!hdev) in amp_create_logical_link()
438 hci_send_cmd(hdev, HCI_OP_CREATE_LOGICAL_LINK, sizeof(cp), in amp_create_logical_link()
441 hci_send_cmd(hdev, HCI_OP_ACCEPT_LOGICAL_LINK, sizeof(cp), in amp_create_logical_link()
444 hci_dev_put(hdev); in amp_create_logical_link()
458 hci_send_cmd(hcon->hdev, HCI_OP_DISCONN_LOGICAL_LINK, sizeof(cp), &cp); in amp_disconnect_logical_link()