• Home
  • Raw
  • Download

Lines Matching refs:pipe

20 	u8              pipe;  member
37 u8 pipe; member
41 u8 pipe; member
141 static int nci_hci_send_data(struct nci_dev *ndev, u8 pipe, in nci_hci_send_data() argument
148 u8 cb = pipe; in nci_hci_send_data()
204 nci_hci_send_data(ndev, data->pipe, data->cmd, in nci_hci_send_data_req()
211 u8 pipe = ndev->hci_dev->gate2pipe[gate]; in nci_hci_send_event() local
213 if (pipe == NCI_HCI_INVALID_PIPE) in nci_hci_send_event()
216 return nci_hci_send_data(ndev, pipe, in nci_hci_send_event()
230 u8 pipe = ndev->hci_dev->gate2pipe[gate]; in nci_hci_send_cmd() local
232 if (pipe == NCI_HCI_INVALID_PIPE) in nci_hci_send_cmd()
240 data.pipe = pipe; in nci_hci_send_cmd()
275 static void nci_hci_event_received(struct nci_dev *ndev, u8 pipe, in nci_hci_event_received() argument
279 ndev->ops->hci_event_received(ndev, pipe, event, skb); in nci_hci_event_received()
282 static void nci_hci_cmd_received(struct nci_dev *ndev, u8 pipe, in nci_hci_cmd_received() argument
285 u8 gate = ndev->hci_dev->pipes[pipe].gate; in nci_hci_cmd_received()
292 pr_debug("from gate %x pipe %x cmd %x\n", gate, pipe, cmd); in nci_hci_cmd_received()
302 new_pipe = create_info->pipe; in nci_hci_cmd_received()
331 if (delete_info->pipe >= NCI_HCI_MAX_PIPES) { in nci_hci_cmd_received()
336 ndev->hci_dev->pipes[delete_info->pipe].gate = in nci_hci_cmd_received()
338 ndev->hci_dev->pipes[delete_info->pipe].host = in nci_hci_cmd_received()
357 ndev->ops->hci_cmd_received(ndev, pipe, cmd, skb); in nci_hci_cmd_received()
360 nci_hci_send_data(ndev, pipe, status, NULL, 0); in nci_hci_cmd_received()
365 static void nci_hci_resp_received(struct nci_dev *ndev, u8 pipe, in nci_hci_resp_received() argument
386 static void nci_hci_hcp_message_rx(struct nci_dev *ndev, u8 pipe, in nci_hci_hcp_message_rx() argument
391 nci_hci_resp_received(ndev, pipe, instruction, skb); in nci_hci_hcp_message_rx()
394 nci_hci_cmd_received(ndev, pipe, instruction, skb); in nci_hci_hcp_message_rx()
397 nci_hci_event_received(ndev, pipe, instruction, skb); in nci_hci_hcp_message_rx()
415 u8 pipe, type, instruction; in nci_hci_msg_rx_work() local
418 pipe = NCI_HCP_MSG_GET_PIPE(skb->data[0]); in nci_hci_msg_rx_work()
425 nci_hci_hcp_message_rx(hdev->ndev, pipe, in nci_hci_msg_rx_work()
435 u8 pipe, type; in nci_hci_data_received_cb() local
455 pipe = NCI_HCP_MSG_GET_PIPE(packet->header); in nci_hci_data_received_cb()
471 skb_put_u8(hcp_skb, pipe); in nci_hci_data_received_cb()
493 pipe = NCI_HCP_MSG_GET_PIPE(packet->header); in nci_hci_data_received_cb()
495 nci_hci_hcp_message_rx(ndev, pipe, type, in nci_hci_data_received_cb()
503 int nci_hci_open_pipe(struct nci_dev *ndev, u8 pipe) in nci_hci_open_pipe() argument
513 data.pipe = pipe; in nci_hci_open_pipe()
528 u8 pipe; in nci_hci_create_pipe() local
546 pipe = resp->pipe; in nci_hci_create_pipe()
549 pr_debug("pipe created=%d\n", pipe); in nci_hci_create_pipe()
551 return pipe; in nci_hci_create_pipe()
554 static int nci_hci_delete_pipe(struct nci_dev *ndev, u8 pipe) in nci_hci_delete_pipe() argument
559 NCI_HCI_ADM_DELETE_PIPE, &pipe, 1, NULL); in nci_hci_delete_pipe()
570 u8 pipe = ndev->hci_dev->gate2pipe[gate]; in nci_hci_set_param() local
574 if (pipe == NCI_HCI_INVALID_PIPE) in nci_hci_set_param()
589 data.pipe = pipe; in nci_hci_set_param()
617 u8 pipe = ndev->hci_dev->gate2pipe[gate]; in nci_hci_get_param() local
621 if (pipe == NCI_HCI_INVALID_PIPE) in nci_hci_get_param()
629 data.pipe = pipe; in nci_hci_get_param()
653 u8 dest_host, u8 dest_gate, u8 pipe) in nci_hci_connect_gate() argument
658 if (pipe == NCI_HCI_DO_NOT_OPEN_PIPE) in nci_hci_connect_gate()
664 if (pipe != NCI_HCI_INVALID_PIPE) in nci_hci_connect_gate()
669 pipe = NCI_HCI_LINK_MGMT_PIPE; in nci_hci_connect_gate()
672 pipe = NCI_HCI_ADMIN_PIPE; in nci_hci_connect_gate()
675 pipe = nci_hci_create_pipe(ndev, dest_host, dest_gate, &r); in nci_hci_connect_gate()
676 if (pipe == NCI_HCI_INVALID_PIPE) in nci_hci_connect_gate()
683 r = nci_hci_open_pipe(ndev, pipe); in nci_hci_connect_gate()
686 if (nci_hci_delete_pipe(ndev, pipe) < 0) { in nci_hci_connect_gate()
695 ndev->hci_dev->pipes[pipe].gate = dest_gate; in nci_hci_connect_gate()
696 ndev->hci_dev->pipes[pipe].host = dest_host; in nci_hci_connect_gate()
697 ndev->hci_dev->gate2pipe[dest_gate] = pipe; in nci_hci_connect_gate()
711 gates->gate, gates->pipe); in nci_hci_dev_connect_gates()
744 ndev->hci_dev->init_data.gates[0].pipe); in nci_hci_dev_session_init()