1 | /*
|
---|
2 | * Copyright (c) 2010 Radim Vansa
|
---|
3 | * All rights reserved.
|
---|
4 | *
|
---|
5 | * Redistribution and use in source and binary forms, with or without
|
---|
6 | * modification, are permitted provided that the following conditions
|
---|
7 | * are met:
|
---|
8 | *
|
---|
9 | * - Redistributions of source code must retain the above copyright
|
---|
10 | * notice, this list of conditions and the following disclaimer.
|
---|
11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer in the
|
---|
13 | * documentation and/or other materials provided with the distribution.
|
---|
14 | * - The name of the author may not be used to endorse or promote products
|
---|
15 | * derived from this software without specific prior written permission.
|
---|
16 | *
|
---|
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | /** @addtogroup libc
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 | /** @file
|
---|
33 | */
|
---|
34 |
|
---|
35 | #ifndef LIBC_DEVICE_NIC_H_
|
---|
36 | #define LIBC_DEVICE_NIC_H_
|
---|
37 |
|
---|
38 | #include <async.h>
|
---|
39 | #include <nic/nic.h>
|
---|
40 | #include <ipc/common.h>
|
---|
41 |
|
---|
42 | typedef enum {
|
---|
43 | NIC_SEND_MESSAGE = 0,
|
---|
44 | NIC_CALLBACK_CREATE,
|
---|
45 | NIC_GET_STATE,
|
---|
46 | NIC_SET_STATE,
|
---|
47 | NIC_GET_ADDRESS,
|
---|
48 | NIC_SET_ADDRESS,
|
---|
49 | NIC_GET_STATS,
|
---|
50 | NIC_GET_DEVICE_INFO,
|
---|
51 | NIC_GET_CABLE_STATE,
|
---|
52 | NIC_GET_OPERATION_MODE,
|
---|
53 | NIC_SET_OPERATION_MODE,
|
---|
54 | NIC_AUTONEG_ENABLE,
|
---|
55 | NIC_AUTONEG_DISABLE,
|
---|
56 | NIC_AUTONEG_PROBE,
|
---|
57 | NIC_AUTONEG_RESTART,
|
---|
58 | NIC_GET_PAUSE,
|
---|
59 | NIC_SET_PAUSE,
|
---|
60 | NIC_UNICAST_GET_MODE,
|
---|
61 | NIC_UNICAST_SET_MODE,
|
---|
62 | NIC_MULTICAST_GET_MODE,
|
---|
63 | NIC_MULTICAST_SET_MODE,
|
---|
64 | NIC_BROADCAST_GET_MODE,
|
---|
65 | NIC_BROADCAST_SET_MODE,
|
---|
66 | NIC_DEFECTIVE_GET_MODE,
|
---|
67 | NIC_DEFECTIVE_SET_MODE,
|
---|
68 | NIC_BLOCKED_SOURCES_GET,
|
---|
69 | NIC_BLOCKED_SOURCES_SET,
|
---|
70 | NIC_VLAN_GET_MASK,
|
---|
71 | NIC_VLAN_SET_MASK,
|
---|
72 | NIC_VLAN_SET_TAG,
|
---|
73 | NIC_WOL_VIRTUE_ADD,
|
---|
74 | NIC_WOL_VIRTUE_REMOVE,
|
---|
75 | NIC_WOL_VIRTUE_PROBE,
|
---|
76 | NIC_WOL_VIRTUE_LIST,
|
---|
77 | NIC_WOL_VIRTUE_GET_CAPS,
|
---|
78 | NIC_WOL_LOAD_INFO,
|
---|
79 | NIC_OFFLOAD_PROBE,
|
---|
80 | NIC_OFFLOAD_SET,
|
---|
81 | NIC_POLL_GET_MODE,
|
---|
82 | NIC_POLL_SET_MODE,
|
---|
83 | NIC_POLL_NOW
|
---|
84 | } nic_funcs_t;
|
---|
85 |
|
---|
86 | typedef enum {
|
---|
87 | NIC_EV_ADDR_CHANGED = IPC_FIRST_USER_METHOD,
|
---|
88 | NIC_EV_RECEIVED,
|
---|
89 | NIC_EV_DEVICE_STATE
|
---|
90 | } nic_event_t;
|
---|
91 |
|
---|
92 | extern int nic_send_frame(async_sess_t *, void *, size_t);
|
---|
93 | extern int nic_callback_create(async_sess_t *, nic_device_id_t,
|
---|
94 | async_client_conn_t, void *);
|
---|
95 | extern int nic_get_state(async_sess_t *, nic_device_state_t *);
|
---|
96 | extern int nic_set_state(async_sess_t *, nic_device_state_t);
|
---|
97 | extern int nic_get_address(async_sess_t *, nic_address_t *);
|
---|
98 | extern int nic_set_address(async_sess_t *, const nic_address_t *);
|
---|
99 | extern int nic_get_stats(async_sess_t *, nic_device_stats_t *);
|
---|
100 | extern int nic_get_device_info(async_sess_t *, nic_device_info_t *);
|
---|
101 | extern int nic_get_cable_state(async_sess_t *, nic_cable_state_t *);
|
---|
102 |
|
---|
103 | extern int nic_get_operation_mode(async_sess_t *, int *, nic_channel_mode_t *,
|
---|
104 | nic_role_t *);
|
---|
105 | extern int nic_set_operation_mode(async_sess_t *, int, nic_channel_mode_t,
|
---|
106 | nic_role_t);
|
---|
107 | extern int nic_autoneg_enable(async_sess_t *, uint32_t);
|
---|
108 | extern int nic_autoneg_disable(async_sess_t *);
|
---|
109 | extern int nic_autoneg_probe(async_sess_t *, uint32_t *, uint32_t *,
|
---|
110 | nic_result_t *, nic_result_t *);
|
---|
111 | extern int nic_autoneg_restart(async_sess_t *);
|
---|
112 | extern int nic_get_pause(async_sess_t *, nic_result_t *, nic_result_t *,
|
---|
113 | uint16_t *);
|
---|
114 | extern int nic_set_pause(async_sess_t *, int, int, uint16_t);
|
---|
115 |
|
---|
116 | extern int nic_unicast_get_mode(async_sess_t *, nic_unicast_mode_t *, size_t,
|
---|
117 | nic_address_t *, size_t *);
|
---|
118 | extern int nic_unicast_set_mode(async_sess_t *, nic_unicast_mode_t,
|
---|
119 | const nic_address_t *, size_t);
|
---|
120 | extern int nic_multicast_get_mode(async_sess_t *, nic_multicast_mode_t *,
|
---|
121 | size_t, nic_address_t *, size_t *);
|
---|
122 | extern int nic_multicast_set_mode(async_sess_t *, nic_multicast_mode_t,
|
---|
123 | const nic_address_t *, size_t);
|
---|
124 | extern int nic_broadcast_get_mode(async_sess_t *, nic_broadcast_mode_t *);
|
---|
125 | extern int nic_broadcast_set_mode(async_sess_t *, nic_broadcast_mode_t);
|
---|
126 | extern int nic_defective_get_mode(async_sess_t *, uint32_t *);
|
---|
127 | extern int nic_defective_set_mode(async_sess_t *, uint32_t);
|
---|
128 | extern int nic_blocked_sources_get(async_sess_t *, size_t, nic_address_t *,
|
---|
129 | size_t *);
|
---|
130 | extern int nic_blocked_sources_set(async_sess_t *, const nic_address_t *,
|
---|
131 | size_t);
|
---|
132 |
|
---|
133 | extern int nic_vlan_get_mask(async_sess_t *, nic_vlan_mask_t *);
|
---|
134 | extern int nic_vlan_set_mask(async_sess_t *, const nic_vlan_mask_t *);
|
---|
135 | extern int nic_vlan_set_tag(async_sess_t *, uint16_t, bool, bool);
|
---|
136 |
|
---|
137 | extern int nic_wol_virtue_add(async_sess_t *, nic_wv_type_t, const void *,
|
---|
138 | size_t, nic_wv_id_t *);
|
---|
139 | extern int nic_wol_virtue_remove(async_sess_t *, nic_wv_id_t);
|
---|
140 | extern int nic_wol_virtue_probe(async_sess_t *, nic_wv_id_t, nic_wv_type_t *,
|
---|
141 | size_t, void *, size_t *);
|
---|
142 | extern int nic_wol_virtue_list(async_sess_t *, nic_wv_type_t, size_t,
|
---|
143 | nic_wv_id_t *, size_t *);
|
---|
144 | extern int nic_wol_virtue_get_caps(async_sess_t *, nic_wv_type_t, int *);
|
---|
145 | extern int nic_wol_load_info(async_sess_t *, nic_wv_type_t *, size_t, uint8_t *,
|
---|
146 | size_t *);
|
---|
147 |
|
---|
148 | extern int nic_offload_probe(async_sess_t *, uint32_t *, uint32_t *);
|
---|
149 | extern int nic_offload_set(async_sess_t *, uint32_t, uint32_t);
|
---|
150 |
|
---|
151 | extern int nic_poll_get_mode(async_sess_t *, nic_poll_mode_t *,
|
---|
152 | struct timeval *);
|
---|
153 | extern int nic_poll_set_mode(async_sess_t *, nic_poll_mode_t,
|
---|
154 | const struct timeval *);
|
---|
155 | extern int nic_poll_now(async_sess_t *);
|
---|
156 |
|
---|
157 | #endif
|
---|
158 |
|
---|
159 | /** @}
|
---|
160 | */
|
---|