xref: /onnv-gate/usr/src/uts/common/io/warlock/usb_ac_with_usba.wlcmd (revision 10398:1df1b43027bb)
13138Sfrits#
29484Sgarrett.damore@Sun.COM# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
33138Sfrits# Use is subject to license terms.
43138Sfrits#
53138Sfrits# CDDL HEADER START
63138Sfrits#
73138Sfrits# The contents of this file are subject to the terms of the
83138Sfrits# Common Development and Distribution License (the "License").
93138Sfrits# You may not use this file except in compliance with the License.
103138Sfrits#
113138Sfrits# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
123138Sfrits# or http://www.opensolaris.org/os/licensing.
133138Sfrits# See the License for the specific language governing permissions
143138Sfrits# and limitations under the License.
153138Sfrits#
163138Sfrits# When distributing Covered Code, include this CDDL HEADER in each
173138Sfrits# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
183138Sfrits# If applicable, add the following below this CDDL HEADER, with the
193138Sfrits# fields enclosed by brackets "[]" replaced with your own identifying
203138Sfrits# information: Portions Copyright [yyyy] [name of copyright owner]
213138Sfrits#
223138Sfrits# CDDL HEADER END
233138Sfrits#
243138Sfrits
253138Sfritsone ohci_state
263138Sfritsone ehci_state
273138Sfritsone uhci_state
283138Sfritsone usb_ac_state
293138Sfritsone usba_pipe_handle_data
303138Sfritsone usba_ph_impl
313138Sfritsone hubd
323138Sfritsone usba_device
333138Sfrits
343138Sfrits### specify the root functions
353138Sfritsroot	usb_console_output_init
363138Sfritsroot	usb_console_output_fini
373138Sfritsroot	usb_console_output_enter
383138Sfritsroot	usb_console_output_exit
393138Sfritsroot	usb_console_write
403138Sfritsroot	usb_console_input_enter
413138Sfritsroot	usb_console_input_exit
423138Sfritsroot	usb_console_input_fini
433138Sfritsroot	usb_console_input_init
443138Sfritsroot	usb_console_read
453138Sfritsroot	usb_get_dev_descr
463138Sfritsroot	usb_get_if_number
473138Sfritsroot	usb_parse_CV_cfg_descr
483138Sfritsroot	usb_parse_CV_ep_descr
493138Sfritsroot	usb_parse_CV_if_descr
509797SRaymond.Chen@Sun.COMroot	usb_parse_comp_ep_descr
513138Sfritsroot	usb_pipe_get_private
523138Sfritsroot	usb_get_current_frame_number
533138Sfritsroot	usb_get_max_isoc_pkts
543138Sfritsroot	usb_pipe_set_private
553138Sfritsroot	usb_req_raise_power
563138Sfritsroot	usb_req_lower_power
573138Sfritsroot    usb_rval2errno
583138Sfritsroot	usb_set_device_pwrlvl0
593138Sfritsroot	usb_set_device_pwrlvl1
603138Sfritsroot	usb_set_device_pwrlvl2
613138Sfritsroot	usb_set_device_pwrlvl3
623138Sfritsroot	usb_is_pm_enabled
633138Sfritsroot	usb_async_req
643138Sfritsroot	usb_pipe_bulk_transfer_size
653138Sfritsroot	usb_log
663138Sfritsroot    usb_alloc_bulk_req
673138Sfritsroot    usb_clear_feature
683138Sfritsroot    usb_get_alt_if
693138Sfritsroot    usb_get_ep_descr
703138Sfritsroot    usb_get_if_descr
713138Sfritsroot    usb_pipe_isoc_xfer
723138Sfritsroot    usb_pipe_stop_isoc_polling
733138Sfritsroot    usb_set_alt_if
743138Sfritsroot    usb_set_cfg
753138Sfritsroot    usb_get_cfg
763138Sfritsroot	usb_ep_num
773138Sfritsroot	usb_get_status
783138Sfritsroot	usb_pipe_reset
793138Sfritsroot	usb_pipe_bulk_xfer
803138Sfritsroot	usb_get_ep_data
813138Sfritsroot    usb_log_descr_tree
823138Sfritsroot    usb_print_descr_tree
833138Sfritsroot	usb_pipe_ctrl_xfer_wait
843138Sfritsroot	usb_pipe_drain_reqs
853138Sfritsroot	usb_try_serialize_access
863138Sfritsroot	usb_free_bulk_req
873138Sfritsroot	usb_fini_serialization
883138Sfritsroot	usb_clr_feature
893138Sfritsroot	usb_register_hotplug_cbs
903138Sfritsroot	usb_get_current_cfgidx
913138Sfritsroot    usb_register_client
924844Slg150142root	usb_reset_device
93*10398SBinzi.Cao@Sun.COMroot    usb_register_dev_driver
94*10398SBinzi.Cao@Sun.COMroot    usb_unregister_dev_driver
95*10398SBinzi.Cao@Sun.COM
963138Sfrits
973138Sfritsroot	hcdi_autoclearing
983138Sfritsroot	hcdi_cb_thread
993138Sfritsroot    hcdi_shared_cb_thread
1003138Sfrits
1019797SRaymond.Chen@Sun.COMroot    ohci_quiesce
1029797SRaymond.Chen@Sun.COMroot    uhci_quiesce
1039797SRaymond.Chen@Sun.COMroot    ehci_quiesce
1049797SRaymond.Chen@Sun.COM
1053138Sfritsroot 	usb_ugen_attach
1063138Sfritsroot    usb_ugen_close
1073138Sfritsroot    usb_ugen_detach
1083138Sfritsroot    usb_ugen_disconnect_ev_cb
1093138Sfritsroot    usb_ugen_get_hdl
1103138Sfritsroot    usb_ugen_open
1113138Sfritsroot    usb_ugen_poll
1123138Sfritsroot    usb_ugen_power
1133138Sfritsroot    usb_ugen_read
1143138Sfritsroot    usb_ugen_reconnect_ev_cb
1153138Sfritsroot    usb_ugen_write
1163138Sfrits
1173528Sgc161489root	usba_common_power
1183528Sgc161489root	usba_common_register_events
1193528Sgc161489root	usba_ready_interface_association_node
1203138Sfritsroot	usba_pipe_get_policy
1213138Sfritsroot    usba_get_hc_dma_attr
1223138Sfritsroot    usba_hcdi_get_req_private
1233138Sfritsroot    usba_hcdi_set_req_private
1243138Sfritsroot	usba_pipe_do_async_func_thread
1253138Sfritsroot	usba_pipe_sync_reset
1263138Sfritsroot    usba_dbuf_tail
1273138Sfritsroot	hubd_bus_power
1283138Sfritsroot	usba_hubdi_power
1293138Sfritsroot	usba_hubdi_root_hub_power
1303138Sfritsroot	usba_get_hotplug_stats
1313138Sfritsroot	usba_reset_hotplug_stats
1323138Sfritsroot	usba_ready_interface_node
1333138Sfritsroot	usba_free_hcdi_ops
1343138Sfritsroot	usba_async_req_raise_power
1353138Sfritsroot	usba_async_req_lower_power
1363138Sfritsroot	usba_ascii_string_descr
1373138Sfritsroot	usba_move_list
1383138Sfritsroot    usba_taskq_destroy
1393138Sfritsroot	usba_mk_mctl
1403138Sfritsroot	usb_fail_checkpoint
1413138Sfrits
1423138Sfrits
1433138Sfritsroot	hubd_restore_state_cb
1443138Sfritsroot	hubd_root_hub_cleanup_thread
1453138Sfritsroot    hubd_disconnect_event_cb
1463138Sfritsroot    hubd_post_resume_event_cb
1473138Sfritsroot    hubd_pre_suspend_event_cb
1483138Sfritsroot    hubd_reconnect_event_cb
1493138Sfritsroot	hubd_hotplug_thread
1504844Slg150142root	hubd_reset_thread
1513138Sfritsroot	hubd_cpr_post_user_callb
1523138Sfrits
1533138Sfritsroot	ohci_intr
1543138Sfritsroot	ehci_intr
1553138Sfrits
1563138Sfrits### specify the usb_ac root functions
1573138Sfritsroot usb_ac_open
1583138Sfritsroot usb_ac_close
1593138Sfritsroot usb_ac_disconnect_event_cb
1603138Sfritsroot usb_ac_reconnect_event_cb
1613138Sfritsroot usb_ac_power
1623138Sfritsroot usb_ac_set_format
1633138Sfritsroot usb_ac_setup
1643138Sfritsroot usb_ac_start_play
1653138Sfritsroot usb_ac_start_record
1663138Sfritsroot usb_ac_stop_play
1673138Sfritsroot usb_ac_stop_record
1683138Sfritsroot usb_ac_teardown
1693138Sfrits
170*10398SBinzi.Cao@Sun.COMroot usb_ac_get_audio
171*10398SBinzi.Cao@Sun.COMroot usb_ac_send_audio
172*10398SBinzi.Cao@Sun.COMroot usb_ac_ctrl_restore
173*10398SBinzi.Cao@Sun.COMroot usb_audio_set_mute
174*10398SBinzi.Cao@Sun.COM
175*10398SBinzi.Cao@Sun.COMroot usb_engine_start
176*10398SBinzi.Cao@Sun.COMroot usb_engine_stop
177*10398SBinzi.Cao@Sun.COMroot usb_engine_sync
178*10398SBinzi.Cao@Sun.COMroot usb_engine_rate
179*10398SBinzi.Cao@Sun.COMroot usb_engine_format
180*10398SBinzi.Cao@Sun.COMroot usb_engine_count
181*10398SBinzi.Cao@Sun.COMroot usb_engine_close
182*10398SBinzi.Cao@Sun.COMroot usb_engine_channels
183*10398SBinzi.Cao@Sun.COMroot usb_engine_open
184*10398SBinzi.Cao@Sun.COMroot usb_engine_qlen
185*10398SBinzi.Cao@Sun.COM
186*10398SBinzi.Cao@Sun.COMroot usb_ac_mux_plumbing_tq
187*10398SBinzi.Cao@Sun.COMroot usb_ac_mux_unplumbing_tq
188*10398SBinzi.Cao@Sun.COMroot usb_ac_reader
189*10398SBinzi.Cao@Sun.COM
190*10398SBinzi.Cao@Sun.COMroot usb_audio_write_monitor_gain
191*10398SBinzi.Cao@Sun.COMroot usb_audio_write_mono_rec
192*10398SBinzi.Cao@Sun.COMroot usb_audio_write_mono_vol
193*10398SBinzi.Cao@Sun.COMroot usb_audio_write_ster_vol
194*10398SBinzi.Cao@Sun.COMroot usb_audio_write_stero_rec
195*10398SBinzi.Cao@Sun.COMroot usb_audio_write_rec_src
196*10398SBinzi.Cao@Sun.COMroot usb_audio_write_mic_boost
197*10398SBinzi.Cao@Sun.COMroot usb_audio_ctrl_read
198*10398SBinzi.Cao@Sun.COM
199*10398SBinzi.Cao@Sun.COM
2009797SRaymond.Chen@Sun.COMadd hubd::h_cleanup_child targets warlock_dummy
2013138Sfritsadd usba_pipe_async_req::sync_func targets usba_pipe_sync_close
2023138Sfritsadd usba_pipe_async_req::sync_func targets usba_pipe_sync_reset
2033138Sfrits
2043138Sfritsadd usba_pipe_async_req::callback targets warlock_dummy
2053138Sfritsadd usb_ctrl_req::ctrl_cb targets warlock_dummy
2063138Sfritsadd usb_ctrl_req::ctrl_exc_cb targets warlock_dummy
2073138Sfritsadd usb_bulk_req::bulk_cb targets warlock_dummy
2083138Sfritsadd usb_bulk_req::bulk_exc_cb targets warlock_dummy
2093138Sfritsadd usb_isoc_req::isoc_cb targets warlock_dummy
2103138Sfritsadd usb_isoc_req::isoc_exc_cb targets warlock_dummy
2113138Sfrits
2123138Sfritsadd usba_pm_req::cb targets warlock_dummy
2133138Sfritsadd ohci_trans_wrapper::tw_handle_td targets ohci_handle_ctrl_td
2143138Sfritsadd ohci_trans_wrapper::tw_handle_td targets ohci_handle_bulk_td
2153138Sfritsadd ohci_trans_wrapper::tw_handle_td targets ohci_handle_intr_td
2163138Sfritsadd ohci_trans_wrapper::tw_handle_td targets ohci_handle_isoc_td
2173138Sfrits
2183138Sfritsadd ehci_trans_wrapper::tw_handle_qtd targets ehci_handle_ctrl_qtd
2193138Sfritsadd ehci_trans_wrapper::tw_handle_qtd targets ehci_handle_bulk_qtd
2203138Sfritsadd ehci_trans_wrapper::tw_handle_qtd targets ehci_handle_intr_qtd
2213138Sfrits
222