13138Sfrits# 23138Sfrits# CDDL HEADER START 33138Sfrits# 43138Sfrits# The contents of this file are subject to the terms of the 53138Sfrits# Common Development and Distribution License (the "License"). 63138Sfrits# You may not use this file except in compliance with the License. 73138Sfrits# 83138Sfrits# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 93138Sfrits# or http://www.opensolaris.org/os/licensing. 103138Sfrits# See the License for the specific language governing permissions 113138Sfrits# and limitations under the License. 123138Sfrits# 133138Sfrits# When distributing Covered Code, include this CDDL HEADER in each 143138Sfrits# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 153138Sfrits# If applicable, add the following below this CDDL HEADER, with the 163138Sfrits# fields enclosed by brackets "[]" replaced with your own identifying 173138Sfrits# information: Portions Copyright [yyyy] [name of copyright owner] 183138Sfrits# 193138Sfrits# CDDL HEADER END 203138Sfrits# 213138Sfrits# 228945SGuoqing.Zhu@Sun.COM# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 233138Sfrits# Use is subject to license terms. 243138Sfrits# 253138Sfrits 263138Sfrits 273138Sfritsone ehci_state 283138Sfritsone usba_device 293138Sfritsone usba_pipe_handle_data 303138Sfritsone usba_ph_impl 313138Sfrits 323138Sfrits### specify the root functions 333138Sfrits 343138Sfrits### hcdi entry points 353138Sfritsroot ehci_hcdi_pipe_open 363138Sfritsroot ehci_hcdi_pipe_close 373138Sfritsroot ehci_hcdi_pipe_stop_intr_polling 383138Sfritsroot ehci_hcdi_pipe_stop_isoc_polling 393138Sfritsroot ehci_hcdi_pipe_reset 403138Sfritsroot ehci_hcdi_bulk_transfer_size 413138Sfritsroot ehci_hcdi_get_current_frame_number 423138Sfritsroot ehci_hcdi_get_max_isoc_pkts 433138Sfritsroot ehci_intr 443138Sfritsroot ehci_hcdi_pipe_ctrl_xfer 453138Sfritsroot ehci_hcdi_pipe_bulk_xfer 463138Sfritsroot ehci_hcdi_pipe_intr_xfer 473138Sfritsroot ehci_hcdi_pipe_isoc_xfer 483138Sfritsroot ehci_hcdi_pm_support 498945SGuoqing.Zhu@Sun.COMroot ehci_hcdi_pipe_reset_data_toggle 508945SGuoqing.Zhu@Sun.COMroot ehci_quiesce 513138Sfrits 523138Sfritsroot hubd_hotplug_thread 533138Sfritsroot hubd_exception_cb 543138Sfritsroot hubd_read_cb 553138Sfritsroot hubd_disconnect_event_cb 563138Sfritsroot hubd_post_resume_event_cb 573138Sfritsroot hubd_pre_suspend_event_cb 583138Sfritsroot hubd_reconnect_event_cb 593138Sfritsroot hubd_bus_power 603138Sfritsroot usba_pipe_sync_close 613138Sfritsroot hcdi_cb_thread 623138Sfritsroot hcdi_shared_cb_thread 633138Sfrits 643138Sfrits 653138Sfrits### POLLED entry points 663138Sfritsroot ehci_hcdi_polled_input_init 673138Sfritsroot ehci_hcdi_polled_input_fini 683138Sfritsroot ehci_hcdi_polled_input_enter 693138Sfritsroot ehci_hcdi_polled_input_exit 703138Sfritsroot ehci_hcdi_polled_read 71*9095SZhigang.Lu@Sun.COMroot ehci_hcdi_polled_output_init 72*9095SZhigang.Lu@Sun.COMroot ehci_hcdi_polled_output_fini 73*9095SZhigang.Lu@Sun.COMroot ehci_hcdi_polled_output_enter 74*9095SZhigang.Lu@Sun.COMroot ehci_hcdi_polled_output_exit 75*9095SZhigang.Lu@Sun.COMroot ehci_hcdi_polled_write 763138Sfrits 773138Sfrits### currently unused functions 783138Sfrits 793138Sfritsroot ehci_print_qh 803138Sfritsroot ehci_print_qtd 813138Sfrits 823138Sfritsadd ehci_trans_wrapper::tw_handle_qtd targets ehci_handle_ctrl_qtd 833138Sfritsadd ehci_trans_wrapper::tw_handle_qtd targets ehci_handle_bulk_qtd 843138Sfritsadd ehci_trans_wrapper::tw_handle_qtd targets ehci_handle_intr_qtd 853138Sfrits 863138Sfritsadd usba_hcdi_ops::usba_hcdi_console_input_init targets \ 873138Sfrits ehci_hcdi_polled_input_init 883138Sfritsadd usba_hcdi_ops::usba_hcdi_console_input_fini targets \ 893138Sfrits ehci_hcdi_polled_input_fini 903138Sfrits 913138Sfritsadd usb_ctrl_req::ctrl_cb targets warlock_dummy 923138Sfritsadd usb_ctrl_req::ctrl_exc_cb targets warlock_dummy 933138Sfritsadd usb_bulk_req::bulk_cb targets warlock_dummy 943138Sfritsadd usb_bulk_req::bulk_exc_cb targets warlock_dummy 953138Sfritsadd usb_intr_req::intr_cb targets hubd_read_cb 963138Sfritsadd usb_intr_req::intr_exc_cb targets hubd_exception_cb 973138Sfritsadd usb_isoc_req::isoc_cb targets warlock_dummy 983138Sfritsadd usb_isoc_req::isoc_exc_cb targets warlock_dummy 99