14ebb14b2Sfrits# 24ebb14b2Sfrits# CDDL HEADER START 34ebb14b2Sfrits# 44ebb14b2Sfrits# The contents of this file are subject to the terms of the 54ebb14b2Sfrits# Common Development and Distribution License (the "License"). 64ebb14b2Sfrits# You may not use this file except in compliance with the License. 74ebb14b2Sfrits# 84ebb14b2Sfrits# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 94ebb14b2Sfrits# or http://www.opensolaris.org/os/licensing. 104ebb14b2Sfrits# See the License for the specific language governing permissions 114ebb14b2Sfrits# and limitations under the License. 124ebb14b2Sfrits# 134ebb14b2Sfrits# When distributing Covered Code, include this CDDL HEADER in each 144ebb14b2Sfrits# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 154ebb14b2Sfrits# If applicable, add the following below this CDDL HEADER, with the 164ebb14b2Sfrits# fields enclosed by brackets "[]" replaced with your own identifying 174ebb14b2Sfrits# information: Portions Copyright [yyyy] [name of copyright owner] 184ebb14b2Sfrits# 194ebb14b2Sfrits# CDDL HEADER END 204ebb14b2Sfrits# 214ebb14b2Sfrits# 22269552cdSguoqing zhu - Sun Microsystems - Beijing China# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 234ebb14b2Sfrits# Use is subject to license terms. 244ebb14b2Sfrits# 254ebb14b2Sfrits 264ebb14b2Sfrits 274ebb14b2Sfritsone ehci_state 284ebb14b2Sfritsone usba_device 294ebb14b2Sfritsone usba_pipe_handle_data 304ebb14b2Sfritsone usba_ph_impl 314ebb14b2Sfrits 324ebb14b2Sfrits### specify the root functions 334ebb14b2Sfrits 344ebb14b2Sfrits### hcdi entry points 354ebb14b2Sfritsroot ehci_hcdi_pipe_open 364ebb14b2Sfritsroot ehci_hcdi_pipe_close 374ebb14b2Sfritsroot ehci_hcdi_pipe_stop_intr_polling 384ebb14b2Sfritsroot ehci_hcdi_pipe_stop_isoc_polling 394ebb14b2Sfritsroot ehci_hcdi_pipe_reset 404ebb14b2Sfritsroot ehci_hcdi_bulk_transfer_size 414ebb14b2Sfritsroot ehci_hcdi_get_current_frame_number 424ebb14b2Sfritsroot ehci_hcdi_get_max_isoc_pkts 434ebb14b2Sfritsroot ehci_intr 444ebb14b2Sfritsroot ehci_hcdi_pipe_ctrl_xfer 454ebb14b2Sfritsroot ehci_hcdi_pipe_bulk_xfer 464ebb14b2Sfritsroot ehci_hcdi_pipe_intr_xfer 474ebb14b2Sfritsroot ehci_hcdi_pipe_isoc_xfer 484ebb14b2Sfritsroot ehci_hcdi_pm_support 49269552cdSguoqing zhu - Sun Microsystems - Beijing Chinaroot ehci_hcdi_pipe_reset_data_toggle 50269552cdSguoqing zhu - Sun Microsystems - Beijing Chinaroot ehci_quiesce 514ebb14b2Sfrits 524ebb14b2Sfritsroot hubd_hotplug_thread 534ebb14b2Sfritsroot hubd_exception_cb 544ebb14b2Sfritsroot hubd_read_cb 554ebb14b2Sfritsroot hubd_disconnect_event_cb 564ebb14b2Sfritsroot hubd_post_resume_event_cb 574ebb14b2Sfritsroot hubd_pre_suspend_event_cb 584ebb14b2Sfritsroot hubd_reconnect_event_cb 594ebb14b2Sfritsroot hubd_bus_power 604ebb14b2Sfritsroot usba_pipe_sync_close 614ebb14b2Sfritsroot hcdi_cb_thread 624ebb14b2Sfritsroot hcdi_shared_cb_thread 634ebb14b2Sfrits 644ebb14b2Sfrits 654ebb14b2Sfrits### POLLED entry points 664ebb14b2Sfritsroot ehci_hcdi_polled_input_init 674ebb14b2Sfritsroot ehci_hcdi_polled_input_fini 684ebb14b2Sfritsroot ehci_hcdi_polled_input_enter 694ebb14b2Sfritsroot ehci_hcdi_polled_input_exit 704ebb14b2Sfritsroot ehci_hcdi_polled_read 71*9b58c2adSzhigang lu - Sun Microsystems - Beijing Chinaroot ehci_hcdi_polled_output_init 72*9b58c2adSzhigang lu - Sun Microsystems - Beijing Chinaroot ehci_hcdi_polled_output_fini 73*9b58c2adSzhigang lu - Sun Microsystems - Beijing Chinaroot ehci_hcdi_polled_output_enter 74*9b58c2adSzhigang lu - Sun Microsystems - Beijing Chinaroot ehci_hcdi_polled_output_exit 75*9b58c2adSzhigang lu - Sun Microsystems - Beijing Chinaroot ehci_hcdi_polled_write 764ebb14b2Sfrits 774ebb14b2Sfrits### currently unused functions 784ebb14b2Sfrits 794ebb14b2Sfritsroot ehci_print_qh 804ebb14b2Sfritsroot ehci_print_qtd 814ebb14b2Sfrits 824ebb14b2Sfritsadd ehci_trans_wrapper::tw_handle_qtd targets ehci_handle_ctrl_qtd 834ebb14b2Sfritsadd ehci_trans_wrapper::tw_handle_qtd targets ehci_handle_bulk_qtd 844ebb14b2Sfritsadd ehci_trans_wrapper::tw_handle_qtd targets ehci_handle_intr_qtd 854ebb14b2Sfrits 864ebb14b2Sfritsadd usba_hcdi_ops::usba_hcdi_console_input_init targets \ 874ebb14b2Sfrits ehci_hcdi_polled_input_init 884ebb14b2Sfritsadd usba_hcdi_ops::usba_hcdi_console_input_fini targets \ 894ebb14b2Sfrits ehci_hcdi_polled_input_fini 904ebb14b2Sfrits 914ebb14b2Sfritsadd usb_ctrl_req::ctrl_cb targets warlock_dummy 924ebb14b2Sfritsadd usb_ctrl_req::ctrl_exc_cb targets warlock_dummy 934ebb14b2Sfritsadd usb_bulk_req::bulk_cb targets warlock_dummy 944ebb14b2Sfritsadd usb_bulk_req::bulk_exc_cb targets warlock_dummy 954ebb14b2Sfritsadd usb_intr_req::intr_cb targets hubd_read_cb 964ebb14b2Sfritsadd usb_intr_req::intr_exc_cb targets hubd_exception_cb 974ebb14b2Sfritsadd usb_isoc_req::isoc_cb targets warlock_dummy 984ebb14b2Sfritsadd usb_isoc_req::isoc_exc_cb targets warlock_dummy 99