13138Sfrits# 2*8945SGuoqing.Zhu@Sun.COM# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 33138Sfrits# Use is subject to license terms. 43138Sfrits# 53138Sfrits# CDDL HEADER START 63138Sfrits# 73138Sfrits# The contents of this file are subject to the terms of the 83138Sfrits# Common Development and Distribution License (the "License"). 93138Sfrits# You may not use this file except in compliance with the License. 103138Sfrits# 113138Sfrits# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 123138Sfrits# or http://www.opensolaris.org/os/licensing. 133138Sfrits# See the License for the specific language governing permissions 143138Sfrits# and limitations under the License. 153138Sfrits# 163138Sfrits# When distributing Covered Code, include this CDDL HEADER in each 173138Sfrits# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 183138Sfrits# If applicable, add the following below this CDDL HEADER, with the 193138Sfrits# fields enclosed by brackets "[]" replaced with your own identifying 203138Sfrits# information: Portions Copyright [yyyy] [name of copyright owner] 213138Sfrits# 223138Sfrits# CDDL HEADER END 233138Sfrits# 243138Sfrits 253138Sfritsone uhci_state 263138Sfritsone usba_device 273138Sfritsone usba_pipe_handle_data 283138Sfritsone usba_ph_impl 293138Sfrits 303138Sfrits### specify the root functions 313138Sfrits 323138Sfrits### hcdi entry points 333138Sfritsroot uhci_hcdi_pipe_open 343138Sfritsroot uhci_hcdi_pipe_close 353138Sfritsroot uhci_hcdi_pipe_stop_intr_polling 363138Sfritsroot uhci_hcdi_pipe_stop_isoc_polling 37*8945SGuoqing.Zhu@Sun.COMroot uhci_hcdi_pipe_reset 38*8945SGuoqing.Zhu@Sun.COMroot uhci_hcdi_pipe_reset_data_toggle 393138Sfritsroot uhci_hcdi_bulk_transfer_size 403138Sfritsroot uhci_hcdi_get_current_frame_number 413138Sfritsroot uhci_hcdi_get_max_isoc_pkts 423138Sfritsroot uhci_intr 433138Sfritsroot uhci_hcdi_pipe_ctrl_xfer 443138Sfritsroot uhci_hcdi_pipe_bulk_xfer 453138Sfritsroot uhci_hcdi_pipe_intr_xfer 463138Sfritsroot uhci_hcdi_pipe_isoc_xfer 47*8945SGuoqing.Zhu@Sun.COMroot uhci_quiesce 483138Sfrits 493138Sfritsroot hubd_hotplug_thread 503138Sfritsroot hubd_exception_cb 513138Sfritsroot hubd_read_cb 523138Sfritsroot hubd_disconnect_event_cb 533138Sfritsroot hubd_post_resume_event_cb 543138Sfritsroot hubd_pre_suspend_event_cb 553138Sfritsroot hubd_reconnect_event_cb 563138Sfritsroot hubd_bus_power 573138Sfrits 583138Sfritsroot hcdi_cb_thread 593138Sfritsroot hcdi_shared_cb_thread 603138Sfrits 613138Sfrits 623138Sfrits### POLLED entry points 633138Sfritsroot uhci_hcdi_polled_input_init 643138Sfritsroot uhci_hcdi_polled_input_fini 653138Sfritsroot uhci_hcdi_polled_input_enter 663138Sfritsroot uhci_hcdi_polled_input_exit 673138Sfritsroot uhci_hcdi_polled_read 683138Sfritsroot uhci_hcdi_polled_output_init 693138Sfritsroot uhci_hcdi_polled_output_fini 703138Sfritsroot uhci_hcdi_polled_output_enter 713138Sfritsroot uhci_hcdi_polled_output_exit 723138Sfritsroot uhci_hcdi_polled_write 733138Sfrits 743138Sfrits### currently unused functions 753138Sfrits 763138Sfritsroot uhci_print_td 773138Sfritsroot usba_pipe_sync_close 783138Sfrits 793138Sfritsadd uhci_trans_wrapper::tw_handle_td targets uhci_handle_bulk_td 803138Sfritsadd uhci_trans_wrapper::tw_handle_td targets uhci_handle_intr_td 813138Sfritsadd uhci_trans_wrapper::tw_handle_td targets uhci_handle_ctrl_td 823138Sfritsadd uhci_trans_wrapper::tw_handle_td targets uhci_handle_isoc_td 833138Sfrits 843138Sfritsadd usba_hcdi_ops::usba_hcdi_console_input_init targets \ 853138Sfrits uhci_hcdi_polled_input_init 863138Sfritsadd usba_hcdi_ops::usba_hcdi_console_input_fini targets \ 873138Sfrits uhci_hcdi_polled_input_fini 883138Sfritsadd usb_bulk_req::bulk_cb targets warlock_dummy 893138Sfritsadd usb_bulk_req::bulk_exc_cb targets warlock_dummy 903138Sfritsadd usb_ctrl_req::ctrl_cb targets warlock_dummy 913138Sfritsadd usb_ctrl_req::ctrl_exc_cb targets warlock_dummy 923138Sfritsadd usb_isoc_req::isoc_cb targets warlock_dummy 933138Sfritsadd usb_isoc_req::isoc_exc_cb targets warlock_dummy 943138Sfritsadd usb_intr_req::intr_cb targets hubd_read_cb 953138Sfritsadd usb_intr_req::intr_exc_cb targets hubd_exception_cb 96