xref: /titanic_53/usr/src/uts/common/io/warlock/usbsacm.wlcmd (revision 90f050286227cf4c4f8aa425555d04723d331d48)
1*90f05028Syq193411# CDDL HEADER START
2*90f05028Syq193411#
3*90f05028Syq193411# The contents of this file are subject to the terms of the
4*90f05028Syq193411# Common Development and Distribution License (the "License").
5*90f05028Syq193411# You may not use this file except in compliance with the License.
6*90f05028Syq193411#
7*90f05028Syq193411# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
8*90f05028Syq193411# or http://www.opensolaris.org/os/licensing.
9*90f05028Syq193411# See the License for the specific language governing permissions
10*90f05028Syq193411# and limitations under the License.
11*90f05028Syq193411#
12*90f05028Syq193411# When distributing Covered Code, include this CDDL HEADER in each
13*90f05028Syq193411# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
14*90f05028Syq193411# If applicable, add the following below this CDDL HEADER, with the
15*90f05028Syq193411# fields enclosed by brackets "[]" replaced with your own identifying
16*90f05028Syq193411# information: Portions Copyright [yyyy] [name of copyright owner]
17*90f05028Syq193411#
18*90f05028Syq193411# CDDL HEADER END
19*90f05028Syq193411#
20*90f05028Syq193411# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
21*90f05028Syq193411# Use is subject to license terms.
22*90f05028Syq193411#
23*90f05028Syq193411# ident	"%Z%%M%	%I%	%E% SMI"
24*90f05028Syq193411
25*90f05028Syq193411one usbser_state
26*90f05028Syq193411one usbsacm_state
27*90f05028Syq193411
28*90f05028Syq193411### specify the root functions
29*90f05028Syq193411
30*90f05028Syq193411root usbser_first_device
31*90f05028Syq193411root usbser_putchar
32*90f05028Syq193411root usbser_getchar
33*90f05028Syq193411root usbser_ischar
34*90f05028Syq193411root usbser_polledio_enter
35*90f05028Syq193411root usbser_polledio_exit
36*90f05028Syq193411root usbser_soft_state_size
37*90f05028Syq193411root usbsacm_open
38*90f05028Syq193411root usbser_close
39*90f05028Syq193411root usbser_wput
40*90f05028Syq193411root usbser_wsrv
41*90f05028Syq193411root usbser_rsrv
42*90f05028Syq193411root usbser_tx_cb
43*90f05028Syq193411root usbser_rx_cb
44*90f05028Syq193411root usbser_status_cb
45*90f05028Syq193411root usbser_wq_thread
46*90f05028Syq193411root usbser_rq_thread
47*90f05028Syq193411root usbser_disconnect_cb
48*90f05028Syq193411root usbser_reconnect_cb
49*90f05028Syq193411root usbser_cpr_suspend
50*90f05028Syq193411root usbser_cpr_resume
51*90f05028Syq193411
52*90f05028Syq193411root usbsacm_bulkin_cb
53*90f05028Syq193411root usbsacm_bulkout_cb
54*90f05028Syq193411root usbsacm_intr_cb
55*90f05028Syq193411root usbsacm_intr_ex_cb
56*90f05028Syq193411
57*90f05028Syq193411### specify usbsacm function pointers
58*90f05028Syq193411
59*90f05028Syq193411add ds_ops::ds_attach targets usbsacm_ds_attach
60*90f05028Syq193411add ds_ops::ds_detach targets usbsacm_ds_detach
61*90f05028Syq193411add ds_ops::ds_register_cb targets usbsacm_ds_register_cb
62*90f05028Syq193411add ds_ops::ds_unregister_cb targets usbsacm_ds_unregister_cb
63*90f05028Syq193411add ds_ops::ds_open_port targets usbsacm_ds_open_port
64*90f05028Syq193411add ds_ops::ds_close_port targets usbsacm_ds_close_port
65*90f05028Syq193411add ds_ops::ds_usb_power targets usbsacm_ds_usb_power
66*90f05028Syq193411add ds_ops::ds_suspend targets usbsacm_ds_suspend
67*90f05028Syq193411add ds_ops::ds_resume targets usbsacm_ds_resume
68*90f05028Syq193411add ds_ops::ds_disconnect targets usbsacm_ds_disconnect
69*90f05028Syq193411add ds_ops::ds_reconnect targets usbsacm_ds_reconnect
70*90f05028Syq193411add ds_ops::ds_set_port_params targets usbsacm_ds_set_port_params
71*90f05028Syq193411add ds_ops::ds_set_modem_ctl targets usbsacm_ds_set_modem_ctl
72*90f05028Syq193411add ds_ops::ds_get_modem_ctl targets usbsacm_ds_get_modem_ctl
73*90f05028Syq193411add ds_ops::ds_break_ctl targets usbsacm_ds_break_ctl
74*90f05028Syq193411add ds_ops::ds_tx targets usbsacm_ds_tx
75*90f05028Syq193411add ds_ops::ds_rx targets usbsacm_ds_rx
76*90f05028Syq193411add ds_ops::ds_stop targets usbsacm_ds_stop
77*90f05028Syq193411add ds_ops::ds_start targets usbsacm_ds_start
78*90f05028Syq193411add ds_ops::ds_fifo_flush targets usbsacm_ds_fifo_flush
79*90f05028Syq193411add ds_ops::ds_fifo_drain targets usbsacm_ds_fifo_drain
80*90f05028Syq193411add ds_ops::ds_in_pipe targets warlock_dummy
81*90f05028Syq193411add ds_ops::ds_out_pipe targets warlock_dummy
82*90f05028Syq193411
83*90f05028Syq193411add usbsacm_port::acm_cb.cb_tx targets usbser_tx_cb
84*90f05028Syq193411add usbsacm_port::acm_cb.cb_rx targets usbser_rx_cb
85*90f05028Syq193411
86*90f05028Syq193411add bus_ops::bus_add_eventcall targets warlock_dummy
87*90f05028Syq193411add bus_ops::bus_get_eventcookie targets warlock_dummy
88*90f05028Syq193411add bus_ops::bus_post_event targets warlock_dummy
89*90f05028Syq193411add bus_ops::bus_remove_eventcall targets warlock_dummy
90*90f05028Syq193411add bus_ops::bus_intr_ctl targets warlock_dummy
91*90f05028Syq193411add bus_ops::bus_config targets warlock_dummy
92*90f05028Syq193411add bus_ops::bus_unconfig targets warlock_dummy
93