source: mainline/uspace/lib/c/include/device/nic.h@ 7174403

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 7174403 was cf9cb36, checked in by Jiri Svoboda <jiri@…>, 14 years ago

Decouple libnic from libnet.

  • Property mode set to 100644
File size: 5.7 KB
Line 
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
42typedef 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
86typedef enum {
87 NIC_EV_ADDR_CHANGED = IPC_FIRST_USER_METHOD,
88 NIC_EV_RECEIVED,
89 NIC_EV_DEVICE_STATE
90} nic_event_t;
91
92extern int nic_send_frame(async_sess_t *, void *, size_t);
93extern int nic_callback_create(async_sess_t *, nic_device_id_t,
94 async_client_conn_t, void *);
95extern int nic_get_state(async_sess_t *, nic_device_state_t *);
96extern int nic_set_state(async_sess_t *, nic_device_state_t);
97extern int nic_get_address(async_sess_t *, nic_address_t *);
98extern int nic_set_address(async_sess_t *, const nic_address_t *);
99extern int nic_get_stats(async_sess_t *, nic_device_stats_t *);
100extern int nic_get_device_info(async_sess_t *, nic_device_info_t *);
101extern int nic_get_cable_state(async_sess_t *, nic_cable_state_t *);
102
103extern int nic_get_operation_mode(async_sess_t *, int *, nic_channel_mode_t *,
104 nic_role_t *);
105extern int nic_set_operation_mode(async_sess_t *, int, nic_channel_mode_t,
106 nic_role_t);
107extern int nic_autoneg_enable(async_sess_t *, uint32_t);
108extern int nic_autoneg_disable(async_sess_t *);
109extern int nic_autoneg_probe(async_sess_t *, uint32_t *, uint32_t *,
110 nic_result_t *, nic_result_t *);
111extern int nic_autoneg_restart(async_sess_t *);
112extern int nic_get_pause(async_sess_t *, nic_result_t *, nic_result_t *,
113 uint16_t *);
114extern int nic_set_pause(async_sess_t *, int, int, uint16_t);
115
116extern int nic_unicast_get_mode(async_sess_t *, nic_unicast_mode_t *, size_t,
117 nic_address_t *, size_t *);
118extern int nic_unicast_set_mode(async_sess_t *, nic_unicast_mode_t,
119 const nic_address_t *, size_t);
120extern int nic_multicast_get_mode(async_sess_t *, nic_multicast_mode_t *,
121 size_t, nic_address_t *, size_t *);
122extern int nic_multicast_set_mode(async_sess_t *, nic_multicast_mode_t,
123 const nic_address_t *, size_t);
124extern int nic_broadcast_get_mode(async_sess_t *, nic_broadcast_mode_t *);
125extern int nic_broadcast_set_mode(async_sess_t *, nic_broadcast_mode_t);
126extern int nic_defective_get_mode(async_sess_t *, uint32_t *);
127extern int nic_defective_set_mode(async_sess_t *, uint32_t);
128extern int nic_blocked_sources_get(async_sess_t *, size_t, nic_address_t *,
129 size_t *);
130extern int nic_blocked_sources_set(async_sess_t *, const nic_address_t *,
131 size_t);
132
133extern int nic_vlan_get_mask(async_sess_t *, nic_vlan_mask_t *);
134extern int nic_vlan_set_mask(async_sess_t *, const nic_vlan_mask_t *);
135extern int nic_vlan_set_tag(async_sess_t *, uint16_t, bool, bool);
136
137extern int nic_wol_virtue_add(async_sess_t *, nic_wv_type_t, const void *,
138 size_t, nic_wv_id_t *);
139extern int nic_wol_virtue_remove(async_sess_t *, nic_wv_id_t);
140extern int nic_wol_virtue_probe(async_sess_t *, nic_wv_id_t, nic_wv_type_t *,
141 size_t, void *, size_t *);
142extern int nic_wol_virtue_list(async_sess_t *, nic_wv_type_t, size_t,
143 nic_wv_id_t *, size_t *);
144extern int nic_wol_virtue_get_caps(async_sess_t *, nic_wv_type_t, int *);
145extern int nic_wol_load_info(async_sess_t *, nic_wv_type_t *, size_t, uint8_t *,
146 size_t *);
147
148extern int nic_offload_probe(async_sess_t *, uint32_t *, uint32_t *);
149extern int nic_offload_set(async_sess_t *, uint32_t, uint32_t);
150
151extern int nic_poll_get_mode(async_sess_t *, nic_poll_mode_t *,
152 struct timeval *);
153extern int nic_poll_set_mode(async_sess_t *, nic_poll_mode_t,
154 const struct timeval *);
155extern int nic_poll_now(async_sess_t *);
156
157#endif
158
159/** @}
160 */
Note: See TracBrowser for help on using the repository browser.