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 2006 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25 26#ident "%Z%%M% %I% %E% SMI" 27 28one ohci_state 29one usba_device 30one usba_pipe_handle_data 31one usba_ph_impl 32 33### specify the root functions 34 35### hcdi entry points 36root ohci_hcdi_pipe_open 37root ohci_hcdi_pipe_close 38root ohci_hcdi_pipe_stop_intr_polling 39root ohci_hcdi_pipe_stop_isoc_polling 40root ohci_hcdi_pipe_reset 41root ohci_hcdi_bulk_transfer_size 42root ohci_hcdi_get_current_frame_number 43root ohci_hcdi_get_max_isoc_pkts 44root ohci_intr 45root ohci_hcdi_pipe_ctrl_xfer 46root ohci_hcdi_pipe_bulk_xfer 47root ohci_hcdi_pipe_intr_xfer 48root ohci_hcdi_pipe_isoc_xfer 49root ohci_hcdi_pm_support 50 51root hubd_hotplug_thread 52root hubd_exception_cb 53root hubd_read_cb 54root hubd_disconnect_event_cb 55root hubd_post_resume_event_cb 56root hubd_pre_suspend_event_cb 57root hubd_reconnect_event_cb 58root hubd_bus_power 59root hcdi_cb_thread 60root hcdi_shared_cb_thread 61 62### POLLED entry points 63root ohci_hcdi_polled_input_init 64root ohci_hcdi_polled_input_fini 65root ohci_hcdi_polled_input_enter 66root ohci_hcdi_polled_input_exit 67root ohci_hcdi_polled_read 68 69### currently unused functions 70 71root ohci_print_ed 72root ohci_print_td 73root usba_pipe_sync_close 74 75add ohci_trans_wrapper::tw_handle_td targets ohci_handle_bulk_td 76add ohci_trans_wrapper::tw_handle_td targets ohci_handle_intr_td 77add ohci_trans_wrapper::tw_handle_td targets ohci_handle_ctrl_td 78add ohci_trans_wrapper::tw_handle_td targets ohci_handle_isoc_td 79 80add usba_hcdi_ops::usba_hcdi_console_input_init targets \ 81 ohci_hcdi_polled_input_init 82add usba_hcdi_ops::usba_hcdi_console_input_fini targets \ 83 ohci_hcdi_polled_input_fini 84add usb_bulk_req::bulk_cb targets warlock_dummy 85add usb_bulk_req::bulk_exc_cb targets warlock_dummy 86add usb_ctrl_req::ctrl_cb targets warlock_dummy 87add usb_ctrl_req::ctrl_exc_cb targets warlock_dummy 88add usb_isoc_req::isoc_cb targets warlock_dummy 89add usb_isoc_req::isoc_exc_cb targets warlock_dummy 90add usb_intr_req::intr_cb targets hubd_read_cb 91add usb_intr_req::intr_exc_cb targets hubd_exception_cb 92