1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9# or http://www.opensolaris.org/os/licensing. 10# See the License for the specific language governing permissions 11# and limitations under the License. 12# 13# When distributing Covered Code, include this CDDL HEADER in each 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21# 22# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25 26 27one ehci_state 28one usba_device 29one usba_pipe_handle_data 30one usba_ph_impl 31 32### specify the root functions 33 34### hcdi entry points 35root ehci_hcdi_pipe_open 36root ehci_hcdi_pipe_close 37root ehci_hcdi_pipe_stop_intr_polling 38root ehci_hcdi_pipe_stop_isoc_polling 39root ehci_hcdi_pipe_reset 40root ehci_hcdi_bulk_transfer_size 41root ehci_hcdi_get_current_frame_number 42root ehci_hcdi_get_max_isoc_pkts 43root ehci_intr 44root ehci_hcdi_pipe_ctrl_xfer 45root ehci_hcdi_pipe_bulk_xfer 46root ehci_hcdi_pipe_intr_xfer 47root ehci_hcdi_pipe_isoc_xfer 48root ehci_hcdi_pm_support 49root ehci_hcdi_pipe_reset_data_toggle 50root ehci_quiesce 51 52root hubd_hotplug_thread 53root hubd_exception_cb 54root hubd_read_cb 55root hubd_disconnect_event_cb 56root hubd_post_resume_event_cb 57root hubd_pre_suspend_event_cb 58root hubd_reconnect_event_cb 59root hubd_bus_power 60root usba_pipe_sync_close 61root hcdi_cb_thread 62root hcdi_shared_cb_thread 63 64 65### POLLED entry points 66root ehci_hcdi_polled_input_init 67root ehci_hcdi_polled_input_fini 68root ehci_hcdi_polled_input_enter 69root ehci_hcdi_polled_input_exit 70root ehci_hcdi_polled_read 71root ehci_hcdi_polled_output_init 72root ehci_hcdi_polled_output_fini 73root ehci_hcdi_polled_output_enter 74root ehci_hcdi_polled_output_exit 75root ehci_hcdi_polled_write 76 77### currently unused functions 78 79root ehci_print_qh 80root ehci_print_qtd 81 82add ehci_trans_wrapper::tw_handle_qtd targets ehci_handle_ctrl_qtd 83add ehci_trans_wrapper::tw_handle_qtd targets ehci_handle_bulk_qtd 84add ehci_trans_wrapper::tw_handle_qtd targets ehci_handle_intr_qtd 85 86add usba_hcdi_ops::usba_hcdi_console_input_init targets \ 87 ehci_hcdi_polled_input_init 88add usba_hcdi_ops::usba_hcdi_console_input_fini targets \ 89 ehci_hcdi_polled_input_fini 90 91add usb_ctrl_req::ctrl_cb targets warlock_dummy 92add usb_ctrl_req::ctrl_exc_cb targets warlock_dummy 93add usb_bulk_req::bulk_cb targets warlock_dummy 94add usb_bulk_req::bulk_exc_cb targets warlock_dummy 95add usb_intr_req::intr_cb targets hubd_read_cb 96add usb_intr_req::intr_exc_cb targets hubd_exception_cb 97add usb_isoc_req::isoc_cb targets warlock_dummy 98add usb_isoc_req::isoc_exc_cb targets warlock_dummy 99