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