Home
last modified time | relevance | path

Searched refs:iamthif_file_ext (Results 1 – 5 of 5) sorted by relevance

/titanic_41/usr/src/uts/intel/io/heci/
H A Dheci_main.c339 mutex_destroy(&device_object->iamthif_file_ext.file_lock); in heci_destroy_locks()
340 mutex_destroy(&device_object->iamthif_file_ext.read_io_lock); in heci_destroy_locks()
341 mutex_destroy(&device_object->iamthif_file_ext.write_io_lock); in heci_destroy_locks()
348 cv_destroy(&device_object->iamthif_file_ext.rx_wait); in heci_destroy_locks()
428 if (dev->iamthif_file_ext.state == HECI_FILE_CONNECTED) { in heci_detach()
429 dev->iamthif_file_ext.state = HECI_FILE_DISCONNECTING; in heci_detach()
431 &dev->iamthif_file_ext); in heci_detach()
445 dev->iamthif_file_ext.host_client_id); in heci_detach()
448 dev->iamthif_file_ext.file = NULL; in heci_detach()
541 &dev->iamthif_file_ext)) { in heci_clear_list()
[all …]
H A Dio_heci.c257 if (dev->iamthif_file_ext.state != HECI_FILE_CONNECTED) { in heci_ioctl_connect_client()
279 file->private_data = &dev->iamthif_file_ext; in heci_ioctl_connect_client()
285 rets = dev->iamthif_file_ext.status; in heci_ioctl_connect_client()
546 (file_ext_temp == &dev->iamthif_file_ext) && in find_pthi_read_list_entry()
583 if ((file_ext == NULL) || (file_ext != &dev->iamthif_file_ext)) in pthi_read()
589 dev->iamthif_file_ext.me_client_id) in pthi_read()
595 dev->iamthif_file_ext.me_client_id)) { in pthi_read()
772 if (flow_ctrl_creds(dev, &dev->iamthif_file_ext) && in pthi_write()
787 heci_hdr.host_addr = dev->iamthif_file_ext.host_client_id; in pthi_write()
788 heci_hdr.me_addr = dev->iamthif_file_ext.me_client_id; in pthi_write()
[all …]
H A Dheci_intr.c187 if (&dev->iamthif_file_ext.pollwait) { in _heci_cmpl_iamthif()
189 pollwakeup(&dev->iamthif_file_ext.pollwait, POLL_IN|POLLRDNORM); in _heci_cmpl_iamthif()
337 if (file_ext != &dev->iamthif_file_ext) { in heci_bh_process_device()
341 } else if (file_ext == &dev->iamthif_file_ext) { in heci_bh_process_device()
416 dev->iamthif_file_ext.host_client_id) && in heci_bh_read_handler()
417 (HECI_FILE_CONNECTED == dev->iamthif_file_ext.state) && in heci_bh_read_handler()
596 ASSERT(heci_hdr->me_addr == dev->iamthif_file_ext.me_client_id); in heci_bh_read_pthi_message()
626 if ((dev->iamthif_ioctl) && (file_ext == &dev->iamthif_file_ext)) { in heci_bh_read_pthi_message()
629 if (&dev->iamthif_file_ext) { in heci_bh_read_pthi_message()
760 if (!heci_send_flow_control(dev, &dev->iamthif_file_ext)) { in _heci_bh_iamthif_read()
[all …]
H A Dheci_init.c194 dev->iamthif_file_ext.file = NULL; in heci_reset_iamthif_params()
239 LIST_INIT_HEAD(&device->iamthif_file_ext.link); in init_heci_device()
429 dev->iamthif_file_ext.host_client_id); in heci_reset()
1021 heci_init_file_private(&dev->iamthif_file_ext, NULL); in host_init_iamthif()
1022 dev->iamthif_file_ext.state = HECI_FILE_DISCONNECTED; in host_init_iamthif()
1025 i = heci_find_me_client(dev, &dev->iamthif_file_ext, in host_init_iamthif()
1027 if (dev->iamthif_file_ext.state != HECI_FILE_CONNECTING) { in host_init_iamthif()
1035 if (heci_connect_me_client(dev, &dev->iamthif_file_ext, 15) == 1) { in host_init_iamthif()
H A Dheci_data_structures.h563 struct heci_file_private iamthif_file_ext; member