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