xref: /onnv-gate/usr/src/uts/common/io/warlock/usbser.wlcmd (revision 3138:7bbdcbfa4cd5)
1*3138Sfrits#
2*3138Sfrits# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
3*3138Sfrits# Use is subject to license terms.
4*3138Sfrits#
5*3138Sfrits# CDDL HEADER START
6*3138Sfrits#
7*3138Sfrits# The contents of this file are subject to the terms of the
8*3138Sfrits# Common Development and Distribution License (the "License").
9*3138Sfrits# You may not use this file except in compliance with the License.
10*3138Sfrits#
11*3138Sfrits# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
12*3138Sfrits# or http://www.opensolaris.org/os/licensing.
13*3138Sfrits# See the License for the specific language governing permissions
14*3138Sfrits# and limitations under the License.
15*3138Sfrits#
16*3138Sfrits# When distributing Covered Code, include this CDDL HEADER in each
17*3138Sfrits# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
18*3138Sfrits# If applicable, add the following below this CDDL HEADER, with the
19*3138Sfrits# fields enclosed by brackets "[]" replaced with your own identifying
20*3138Sfrits# information: Portions Copyright [yyyy] [name of copyright owner]
21*3138Sfrits#
22*3138Sfrits# CDDL HEADER END
23*3138Sfrits#
24*3138Sfrits
25*3138Sfrits#ident	"%Z%%M%	%I%	%E% SMI"
26*3138Sfrits
27*3138Sfritsone usbser_state
28*3138Sfrits
29*3138Sfrits### specify the root functions
30*3138Sfrits
31*3138Sfritsroot usbser_first_device
32*3138Sfritsroot usbser_putchar
33*3138Sfritsroot usbser_getchar
34*3138Sfritsroot usbser_ischar
35*3138Sfritsroot usbser_polledio_enter
36*3138Sfritsroot usbser_polledio_exit
37*3138Sfritsroot usbser_soft_state_size
38*3138Sfritsroot usbser_open
39*3138Sfritsroot usbser_close
40*3138Sfritsroot usbser_wput
41*3138Sfritsroot usbser_wsrv
42*3138Sfritsroot usbser_rsrv
43*3138Sfritsroot usbser_tx_cb
44*3138Sfritsroot usbser_rx_cb
45*3138Sfritsroot usbser_status_cb
46*3138Sfritsroot usbser_wq_thread
47*3138Sfritsroot usbser_rq_thread
48*3138Sfritsroot usbser_disconnect_cb
49*3138Sfritsroot usbser_reconnect_cb
50*3138Sfritsroot usbser_cpr_suspend
51*3138Sfritsroot usbser_cpr_resume
52*3138Sfrits
53*3138Sfritsadd        dev_ops::devo_attach targets usbser_attach
54*3138Sfritsadd        dev_ops::devo_detach targets usbser_detach
55*3138Sfritsadd        dev_ops::devo_getinfo targets usbser_getinfo
56*3138Sfritsadd        dev_ops::devo_power targets usbser_power
57*3138Sfrits
58*3138Sfritsadd        ds_ops::ds_attach targets warlock_dummy
59*3138Sfritsadd        ds_ops::ds_detach targets warlock_dummy
60*3138Sfritsadd        ds_ops::ds_register_cb targets warlock_dummy
61*3138Sfritsadd        ds_ops::ds_unregister_cb targets warlock_dummy
62*3138Sfritsadd        ds_ops::ds_open_port targets warlock_dummy
63*3138Sfritsadd        ds_ops::ds_close_port targets warlock_dummy
64*3138Sfritsadd        ds_ops::ds_usb_power targets warlock_dummy
65*3138Sfritsadd        ds_ops::ds_suspend targets warlock_dummy
66*3138Sfritsadd        ds_ops::ds_resume targets warlock_dummy
67*3138Sfritsadd        ds_ops::ds_disconnect targets warlock_dummy
68*3138Sfritsadd        ds_ops::ds_reconnect targets warlock_dummy
69*3138Sfritsadd        ds_ops::ds_set_port_params targets warlock_dummy
70*3138Sfritsadd        ds_ops::ds_set_modem_ctl targets warlock_dummy
71*3138Sfritsadd        ds_ops::ds_get_modem_ctl targets warlock_dummy
72*3138Sfritsadd        ds_ops::ds_break_ctl targets warlock_dummy
73*3138Sfritsadd        ds_ops::ds_loopback targets warlock_dummy
74*3138Sfritsadd        ds_ops::ds_tx targets warlock_dummy
75*3138Sfritsadd        ds_ops::ds_rx targets warlock_dummy
76*3138Sfritsadd        ds_ops::ds_stop targets warlock_dummy
77*3138Sfritsadd        ds_ops::ds_start targets warlock_dummy
78*3138Sfritsadd        ds_ops::ds_fifo_flush targets warlock_dummy
79*3138Sfritsadd        ds_ops::ds_fifo_drain targets warlock_dummy
80*3138Sfritsadd        ds_ops::ds_out_pipe targets warlock_dummy
81*3138Sfritsadd        ds_ops::ds_in_pipe targets warlock_dummy
82*3138Sfrits
83*3138Sfritsadd        rseq_step::s_func targets usbser_free_soft_state
84*3138Sfritsadd        rseq_step::s_func targets usbser_init_soft_state
85*3138Sfritsadd        rseq_step::s_func targets usbser_fini_soft_state
86*3138Sfritsadd        rseq_step::s_func targets usbser_attach_dev
87*3138Sfritsadd        rseq_step::s_func targets usbser_detach_dev
88*3138Sfritsadd        rseq_step::s_func targets usbser_attach_ports
89*3138Sfritsadd        rseq_step::s_func targets usbser_detach_ports
90*3138Sfritsadd        rseq_step::s_func targets usbser_create_taskq
91*3138Sfritsadd        rseq_step::s_func targets usbser_destroy_taskq
92*3138Sfrits
93*3138Sfritsadd        bus_ops::bus_add_eventcall targets warlock_dummy
94*3138Sfritsadd        bus_ops::bus_get_eventcookie targets warlock_dummy
95*3138Sfritsadd        bus_ops::bus_post_event targets warlock_dummy
96*3138Sfritsadd        bus_ops::bus_remove_eventcall targets warlock_dummy
97*3138Sfritsadd        bus_ops::bus_intr_ctl targets warlock_dummy
98*3138Sfritsadd        bus_ops::bus_config targets warlock_dummy
99*3138Sfritsadd        bus_ops::bus_unconfig targets warlock_dummy
100