uhci.wlcmd revision 3138:7bbdcbfa4cd5
1#
2# Copyright 2006 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#ident	"%Z%%M%	%I%	%E% SMI"
25
26one uhci_state
27one usba_device
28one usba_pipe_handle_data
29one usba_ph_impl
30
31### specify the root functions 
32
33### hcdi entry points
34root	uhci_hcdi_pipe_open 
35root	uhci_hcdi_pipe_close 
36root	uhci_hcdi_pipe_stop_intr_polling 
37root	uhci_hcdi_pipe_stop_isoc_polling 
38root	uhci_hcdi_pipe_reset 
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
47
48root 	hubd_hotplug_thread
49root 	hubd_exception_cb
50root 	hubd_read_cb
51root 	hubd_disconnect_event_cb
52root 	hubd_post_resume_event_cb
53root 	hubd_pre_suspend_event_cb
54root 	hubd_reconnect_event_cb
55root	hubd_bus_power
56
57root	hcdi_cb_thread
58root    hcdi_shared_cb_thread
59
60
61### POLLED entry points
62root   uhci_hcdi_polled_input_init
63root   uhci_hcdi_polled_input_fini
64root   uhci_hcdi_polled_input_enter
65root   uhci_hcdi_polled_input_exit
66root   uhci_hcdi_polled_read
67root   uhci_hcdi_polled_output_init
68root   uhci_hcdi_polled_output_fini
69root   uhci_hcdi_polled_output_enter
70root   uhci_hcdi_polled_output_exit
71root   uhci_hcdi_polled_write
72 
73### currently unused functions
74 
75root	uhci_print_td
76root	usba_pipe_sync_close
77
78add uhci_trans_wrapper::tw_handle_td targets uhci_handle_bulk_td
79add uhci_trans_wrapper::tw_handle_td targets uhci_handle_intr_td
80add uhci_trans_wrapper::tw_handle_td targets uhci_handle_ctrl_td
81add uhci_trans_wrapper::tw_handle_td targets uhci_handle_isoc_td
82
83add usba_hcdi_ops::usba_hcdi_console_input_init targets \
84						uhci_hcdi_polled_input_init
85add usba_hcdi_ops::usba_hcdi_console_input_fini targets \
86						uhci_hcdi_polled_input_fini
87add usb_bulk_req::bulk_cb targets warlock_dummy
88add usb_bulk_req::bulk_exc_cb targets warlock_dummy
89add usb_ctrl_req::ctrl_cb targets warlock_dummy
90add usb_ctrl_req::ctrl_exc_cb targets warlock_dummy
91add usb_isoc_req::isoc_cb targets warlock_dummy
92add usb_isoc_req::isoc_exc_cb targets warlock_dummy
93add usb_intr_req::intr_cb targets hubd_read_cb
94add usb_intr_req::intr_exc_cb targets hubd_exception_cb
95