xref: /onnv-gate/usr/src/uts/common/io/warlock/ohci.wlcmd (revision 9095:ef4ae1685182)
13138Sfrits#
23138Sfrits# CDDL HEADER START
33138Sfrits#
43138Sfrits# The contents of this file are subject to the terms of the
53138Sfrits# Common Development and Distribution License (the "License").
63138Sfrits# You may not use this file except in compliance with the License.
73138Sfrits#
83138Sfrits# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
93138Sfrits# or http://www.opensolaris.org/os/licensing.
103138Sfrits# See the License for the specific language governing permissions
113138Sfrits# and limitations under the License.
123138Sfrits#
133138Sfrits# When distributing Covered Code, include this CDDL HEADER in each
143138Sfrits# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
153138Sfrits# If applicable, add the following below this CDDL HEADER, with the
163138Sfrits# fields enclosed by brackets "[]" replaced with your own identifying
173138Sfrits# information: Portions Copyright [yyyy] [name of copyright owner]
183138Sfrits#
193138Sfrits# CDDL HEADER END
203138Sfrits#
213138Sfrits#
228945SGuoqing.Zhu@Sun.COM# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
233138Sfrits# Use is subject to license terms.
243138Sfrits#
253138Sfrits
263138Sfrits
273138Sfritsone ohci_state
283138Sfritsone usba_device
293138Sfritsone usba_pipe_handle_data
303138Sfritsone usba_ph_impl
313138Sfrits
323138Sfrits### specify the root functions
333138Sfrits
343138Sfrits### hcdi entry points
353138Sfritsroot	ohci_hcdi_pipe_open
363138Sfritsroot	ohci_hcdi_pipe_close
373138Sfritsroot	ohci_hcdi_pipe_stop_intr_polling
383138Sfritsroot	ohci_hcdi_pipe_stop_isoc_polling
398945SGuoqing.Zhu@Sun.COMroot	ohci_hcdi_pipe_reset
408945SGuoqing.Zhu@Sun.COMroot	ohci_hcdi_pipe_reset_data_toggle
413138Sfritsroot	ohci_hcdi_bulk_transfer_size
423138Sfritsroot	ohci_hcdi_get_current_frame_number
433138Sfritsroot	ohci_hcdi_get_max_isoc_pkts
443138Sfritsroot	ohci_intr
453138Sfritsroot	ohci_hcdi_pipe_ctrl_xfer
463138Sfritsroot	ohci_hcdi_pipe_bulk_xfer
473138Sfritsroot	ohci_hcdi_pipe_intr_xfer
483138Sfritsroot	ohci_hcdi_pipe_isoc_xfer
493138Sfritsroot	ohci_hcdi_pm_support
508945SGuoqing.Zhu@Sun.COMroot	ohci_quiesce
513138Sfrits
523138Sfritsroot 	hubd_hotplug_thread
533138Sfritsroot 	hubd_exception_cb
543138Sfritsroot 	hubd_read_cb
553138Sfritsroot 	hubd_disconnect_event_cb
563138Sfritsroot 	hubd_post_resume_event_cb
573138Sfritsroot 	hubd_pre_suspend_event_cb
583138Sfritsroot 	hubd_reconnect_event_cb
593138Sfritsroot	hubd_bus_power
603138Sfritsroot	hcdi_cb_thread
613138Sfritsroot	hcdi_shared_cb_thread
623138Sfrits
633138Sfrits### POLLED entry points
643138Sfritsroot   ohci_hcdi_polled_input_init
653138Sfritsroot   ohci_hcdi_polled_input_fini
663138Sfritsroot   ohci_hcdi_polled_input_enter
673138Sfritsroot   ohci_hcdi_polled_input_exit
683138Sfritsroot   ohci_hcdi_polled_read
69*9095SZhigang.Lu@Sun.COMroot   ohci_hcdi_polled_output_init
70*9095SZhigang.Lu@Sun.COMroot   ohci_hcdi_polled_output_fini
71*9095SZhigang.Lu@Sun.COMroot   ohci_hcdi_polled_output_enter
72*9095SZhigang.Lu@Sun.COMroot   ohci_hcdi_polled_output_exit
73*9095SZhigang.Lu@Sun.COMroot   ohci_hcdi_polled_write
743138Sfrits
753138Sfrits### currently unused functions
763138Sfrits
773138Sfritsroot	ohci_print_ed
783138Sfritsroot	ohci_print_td
793138Sfritsroot	usba_pipe_sync_close
803138Sfrits
813138Sfritsadd ohci_trans_wrapper::tw_handle_td targets ohci_handle_bulk_td
823138Sfritsadd ohci_trans_wrapper::tw_handle_td targets ohci_handle_intr_td
833138Sfritsadd ohci_trans_wrapper::tw_handle_td targets ohci_handle_ctrl_td
843138Sfritsadd ohci_trans_wrapper::tw_handle_td targets ohci_handle_isoc_td
853138Sfrits
863138Sfritsadd usba_hcdi_ops::usba_hcdi_console_input_init targets \
873138Sfrits						ohci_hcdi_polled_input_init
883138Sfritsadd usba_hcdi_ops::usba_hcdi_console_input_fini targets \
893138Sfrits						ohci_hcdi_polled_input_fini
903138Sfritsadd usb_bulk_req::bulk_cb targets warlock_dummy
913138Sfritsadd usb_bulk_req::bulk_exc_cb targets warlock_dummy
923138Sfritsadd usb_ctrl_req::ctrl_cb targets warlock_dummy
933138Sfritsadd usb_ctrl_req::ctrl_exc_cb targets warlock_dummy
943138Sfritsadd usb_isoc_req::isoc_cb targets warlock_dummy
953138Sfritsadd usb_isoc_req::isoc_exc_cb targets warlock_dummy
963138Sfritsadd usb_intr_req::intr_cb targets hubd_read_cb
973138Sfritsadd usb_intr_req::intr_exc_cb targets hubd_exception_cb
98