xref: /titanic_50/usr/src/uts/common/io/warlock/ohci.wlcmd (revision 9b58c2ad19d1f06f07604b0f61b7ff38f757c8fa)
14ebb14b2Sfrits#
24ebb14b2Sfrits# CDDL HEADER START
34ebb14b2Sfrits#
44ebb14b2Sfrits# The contents of this file are subject to the terms of the
54ebb14b2Sfrits# Common Development and Distribution License (the "License").
64ebb14b2Sfrits# You may not use this file except in compliance with the License.
74ebb14b2Sfrits#
84ebb14b2Sfrits# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
94ebb14b2Sfrits# or http://www.opensolaris.org/os/licensing.
104ebb14b2Sfrits# See the License for the specific language governing permissions
114ebb14b2Sfrits# and limitations under the License.
124ebb14b2Sfrits#
134ebb14b2Sfrits# When distributing Covered Code, include this CDDL HEADER in each
144ebb14b2Sfrits# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
154ebb14b2Sfrits# If applicable, add the following below this CDDL HEADER, with the
164ebb14b2Sfrits# fields enclosed by brackets "[]" replaced with your own identifying
174ebb14b2Sfrits# information: Portions Copyright [yyyy] [name of copyright owner]
184ebb14b2Sfrits#
194ebb14b2Sfrits# CDDL HEADER END
204ebb14b2Sfrits#
214ebb14b2Sfrits#
22269552cdSguoqing zhu - Sun Microsystems - Beijing China# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
234ebb14b2Sfrits# Use is subject to license terms.
244ebb14b2Sfrits#
254ebb14b2Sfrits
264ebb14b2Sfrits
274ebb14b2Sfritsone ohci_state
284ebb14b2Sfritsone usba_device
294ebb14b2Sfritsone usba_pipe_handle_data
304ebb14b2Sfritsone usba_ph_impl
314ebb14b2Sfrits
324ebb14b2Sfrits### specify the root functions
334ebb14b2Sfrits
344ebb14b2Sfrits### hcdi entry points
354ebb14b2Sfritsroot	ohci_hcdi_pipe_open
364ebb14b2Sfritsroot	ohci_hcdi_pipe_close
374ebb14b2Sfritsroot	ohci_hcdi_pipe_stop_intr_polling
384ebb14b2Sfritsroot	ohci_hcdi_pipe_stop_isoc_polling
394ebb14b2Sfritsroot	ohci_hcdi_pipe_reset
40269552cdSguoqing zhu - Sun Microsystems - Beijing Chinaroot	ohci_hcdi_pipe_reset_data_toggle
414ebb14b2Sfritsroot	ohci_hcdi_bulk_transfer_size
424ebb14b2Sfritsroot	ohci_hcdi_get_current_frame_number
434ebb14b2Sfritsroot	ohci_hcdi_get_max_isoc_pkts
444ebb14b2Sfritsroot	ohci_intr
454ebb14b2Sfritsroot	ohci_hcdi_pipe_ctrl_xfer
464ebb14b2Sfritsroot	ohci_hcdi_pipe_bulk_xfer
474ebb14b2Sfritsroot	ohci_hcdi_pipe_intr_xfer
484ebb14b2Sfritsroot	ohci_hcdi_pipe_isoc_xfer
494ebb14b2Sfritsroot	ohci_hcdi_pm_support
50269552cdSguoqing zhu - Sun Microsystems - Beijing Chinaroot	ohci_quiesce
514ebb14b2Sfrits
524ebb14b2Sfritsroot 	hubd_hotplug_thread
534ebb14b2Sfritsroot 	hubd_exception_cb
544ebb14b2Sfritsroot 	hubd_read_cb
554ebb14b2Sfritsroot 	hubd_disconnect_event_cb
564ebb14b2Sfritsroot 	hubd_post_resume_event_cb
574ebb14b2Sfritsroot 	hubd_pre_suspend_event_cb
584ebb14b2Sfritsroot 	hubd_reconnect_event_cb
594ebb14b2Sfritsroot	hubd_bus_power
604ebb14b2Sfritsroot	hcdi_cb_thread
614ebb14b2Sfritsroot	hcdi_shared_cb_thread
624ebb14b2Sfrits
634ebb14b2Sfrits### POLLED entry points
644ebb14b2Sfritsroot   ohci_hcdi_polled_input_init
654ebb14b2Sfritsroot   ohci_hcdi_polled_input_fini
664ebb14b2Sfritsroot   ohci_hcdi_polled_input_enter
674ebb14b2Sfritsroot   ohci_hcdi_polled_input_exit
684ebb14b2Sfritsroot   ohci_hcdi_polled_read
69*9b58c2adSzhigang lu - Sun Microsystems - Beijing Chinaroot   ohci_hcdi_polled_output_init
70*9b58c2adSzhigang lu - Sun Microsystems - Beijing Chinaroot   ohci_hcdi_polled_output_fini
71*9b58c2adSzhigang lu - Sun Microsystems - Beijing Chinaroot   ohci_hcdi_polled_output_enter
72*9b58c2adSzhigang lu - Sun Microsystems - Beijing Chinaroot   ohci_hcdi_polled_output_exit
73*9b58c2adSzhigang lu - Sun Microsystems - Beijing Chinaroot   ohci_hcdi_polled_write
744ebb14b2Sfrits
754ebb14b2Sfrits### currently unused functions
764ebb14b2Sfrits
774ebb14b2Sfritsroot	ohci_print_ed
784ebb14b2Sfritsroot	ohci_print_td
794ebb14b2Sfritsroot	usba_pipe_sync_close
804ebb14b2Sfrits
814ebb14b2Sfritsadd ohci_trans_wrapper::tw_handle_td targets ohci_handle_bulk_td
824ebb14b2Sfritsadd ohci_trans_wrapper::tw_handle_td targets ohci_handle_intr_td
834ebb14b2Sfritsadd ohci_trans_wrapper::tw_handle_td targets ohci_handle_ctrl_td
844ebb14b2Sfritsadd ohci_trans_wrapper::tw_handle_td targets ohci_handle_isoc_td
854ebb14b2Sfrits
864ebb14b2Sfritsadd usba_hcdi_ops::usba_hcdi_console_input_init targets \
874ebb14b2Sfrits						ohci_hcdi_polled_input_init
884ebb14b2Sfritsadd usba_hcdi_ops::usba_hcdi_console_input_fini targets \
894ebb14b2Sfrits						ohci_hcdi_polled_input_fini
904ebb14b2Sfritsadd usb_bulk_req::bulk_cb targets warlock_dummy
914ebb14b2Sfritsadd usb_bulk_req::bulk_exc_cb targets warlock_dummy
924ebb14b2Sfritsadd usb_ctrl_req::ctrl_cb targets warlock_dummy
934ebb14b2Sfritsadd usb_ctrl_req::ctrl_exc_cb targets warlock_dummy
944ebb14b2Sfritsadd usb_isoc_req::isoc_cb targets warlock_dummy
954ebb14b2Sfritsadd usb_isoc_req::isoc_exc_cb targets warlock_dummy
964ebb14b2Sfritsadd usb_intr_req::intr_cb targets hubd_read_cb
974ebb14b2Sfritsadd usb_intr_req::intr_exc_cb targets hubd_exception_cb
98