1#
2# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
3# Use is subject to license terms.
4#
5# CDDL HEADER START
6#
7# The contents of this file are subject to the terms of the
8# Common Development and Distribution License (the "License").
9# You may not use this file except in compliance with the License.
10#
11# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
12# or http://www.opensolaris.org/os/licensing.
13# See the License for the specific language governing permissions
14# and limitations under the License.
15#
16# When distributing Covered Code, include this CDDL HEADER in each
17# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
18# If applicable, add the following below this CDDL HEADER, with the
19# fields enclosed by brackets "[]" replaced with your own identifying
20# information: Portions Copyright [yyyy] [name of copyright owner]
21#
22# CDDL HEADER END
23#
24
25one uhci_state
26one usba_device
27one usba_pipe_handle_data
28one usba_ph_impl
29
30### specify the root functions 
31
32### hcdi entry points
33root	uhci_hcdi_pipe_open 
34root	uhci_hcdi_pipe_close 
35root	uhci_hcdi_pipe_stop_intr_polling 
36root	uhci_hcdi_pipe_stop_isoc_polling 
37root	uhci_hcdi_pipe_reset
38root	uhci_hcdi_pipe_reset_data_toggle
39root	uhci_hcdi_bulk_transfer_size
40root	uhci_hcdi_get_current_frame_number
41root	uhci_hcdi_get_max_isoc_pkts
42root	uhci_intr
43root	uhci_hcdi_pipe_ctrl_xfer
44root	uhci_hcdi_pipe_bulk_xfer
45root	uhci_hcdi_pipe_intr_xfer
46root	uhci_hcdi_pipe_isoc_xfer
47root	uhci_quiesce
48
49root 	hubd_hotplug_thread
50root 	hubd_exception_cb
51root 	hubd_read_cb
52root 	hubd_disconnect_event_cb
53root 	hubd_post_resume_event_cb
54root 	hubd_pre_suspend_event_cb
55root 	hubd_reconnect_event_cb
56root	hubd_bus_power
57
58root	hcdi_cb_thread
59root    hcdi_shared_cb_thread
60
61
62### POLLED entry points
63root   uhci_hcdi_polled_input_init
64root   uhci_hcdi_polled_input_fini
65root   uhci_hcdi_polled_input_enter
66root   uhci_hcdi_polled_input_exit
67root   uhci_hcdi_polled_read
68root   uhci_hcdi_polled_output_init
69root   uhci_hcdi_polled_output_fini
70root   uhci_hcdi_polled_output_enter
71root   uhci_hcdi_polled_output_exit
72root   uhci_hcdi_polled_write
73 
74### currently unused functions
75 
76root	uhci_print_td
77root	usba_pipe_sync_close
78
79add uhci_trans_wrapper::tw_handle_td targets uhci_handle_bulk_td
80add uhci_trans_wrapper::tw_handle_td targets uhci_handle_intr_td
81add uhci_trans_wrapper::tw_handle_td targets uhci_handle_ctrl_td
82add uhci_trans_wrapper::tw_handle_td targets uhci_handle_isoc_td
83
84add usba_hcdi_ops::usba_hcdi_console_input_init targets \
85						uhci_hcdi_polled_input_init
86add usba_hcdi_ops::usba_hcdi_console_input_fini targets \
87						uhci_hcdi_polled_input_fini
88add usb_bulk_req::bulk_cb targets warlock_dummy
89add usb_bulk_req::bulk_exc_cb targets warlock_dummy
90add usb_ctrl_req::ctrl_cb targets warlock_dummy
91add usb_ctrl_req::ctrl_exc_cb targets warlock_dummy
92add usb_isoc_req::isoc_cb targets warlock_dummy
93add usb_isoc_req::isoc_exc_cb targets warlock_dummy
94add usb_intr_req::intr_cb targets hubd_read_cb
95add usb_intr_req::intr_exc_cb targets hubd_exception_cb
96