source: mainline/uspace/lib/drv/include/nic_iface.h

Last change on this file was edeee9f, checked in by Jiri Svoboda <jiri@…>, 4 years ago

Fix header guards and doxy groups of stuff moved out of libc

  • Property mode set to 100644
File size: 5.0 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 libdrv
30 * @{
31 */
32/** @file
33 */
34
35#ifndef LIBDRV_NIC_IFACE_H_
36#define LIBDRV_NIC_IFACE_H_
37
38#include <async.h>
39#include <nic/nic.h>
40#include <ipc/common.h>
41
42typedef enum {
43 NIC_EV_ADDR_CHANGED = IPC_FIRST_USER_METHOD,
44 NIC_EV_RECEIVED,
45 NIC_EV_DEVICE_STATE
46} nic_event_t;
47
48extern errno_t nic_send_frame(async_sess_t *, void *, size_t);
49extern errno_t nic_callback_create(async_sess_t *, async_port_handler_t, void *);
50extern errno_t nic_get_state(async_sess_t *, nic_device_state_t *);
51extern errno_t nic_set_state(async_sess_t *, nic_device_state_t);
52extern errno_t nic_get_address(async_sess_t *, nic_address_t *);
53extern errno_t nic_set_address(async_sess_t *, const nic_address_t *);
54extern errno_t nic_get_stats(async_sess_t *, nic_device_stats_t *);
55extern errno_t nic_get_device_info(async_sess_t *, nic_device_info_t *);
56extern errno_t nic_get_cable_state(async_sess_t *, nic_cable_state_t *);
57
58extern errno_t nic_get_operation_mode(async_sess_t *, int *, nic_channel_mode_t *,
59 nic_role_t *);
60extern errno_t nic_set_operation_mode(async_sess_t *, int, nic_channel_mode_t,
61 nic_role_t);
62extern errno_t nic_autoneg_enable(async_sess_t *, uint32_t);
63extern errno_t nic_autoneg_disable(async_sess_t *);
64extern errno_t nic_autoneg_probe(async_sess_t *, uint32_t *, uint32_t *,
65 nic_result_t *, nic_result_t *);
66extern errno_t nic_autoneg_restart(async_sess_t *);
67extern errno_t nic_get_pause(async_sess_t *, nic_result_t *, nic_result_t *,
68 uint16_t *);
69extern errno_t nic_set_pause(async_sess_t *, int, int, uint16_t);
70
71extern errno_t nic_unicast_get_mode(async_sess_t *, nic_unicast_mode_t *, size_t,
72 nic_address_t *, size_t *);
73extern errno_t nic_unicast_set_mode(async_sess_t *, nic_unicast_mode_t,
74 const nic_address_t *, size_t);
75extern errno_t nic_multicast_get_mode(async_sess_t *, nic_multicast_mode_t *,
76 size_t, nic_address_t *, size_t *);
77extern errno_t nic_multicast_set_mode(async_sess_t *, nic_multicast_mode_t,
78 const nic_address_t *, size_t);
79extern errno_t nic_broadcast_get_mode(async_sess_t *, nic_broadcast_mode_t *);
80extern errno_t nic_broadcast_set_mode(async_sess_t *, nic_broadcast_mode_t);
81extern errno_t nic_defective_get_mode(async_sess_t *, uint32_t *);
82extern errno_t nic_defective_set_mode(async_sess_t *, uint32_t);
83extern errno_t nic_blocked_sources_get(async_sess_t *, size_t, nic_address_t *,
84 size_t *);
85extern errno_t nic_blocked_sources_set(async_sess_t *, const nic_address_t *,
86 size_t);
87
88extern errno_t nic_vlan_get_mask(async_sess_t *, nic_vlan_mask_t *);
89extern errno_t nic_vlan_set_mask(async_sess_t *, const nic_vlan_mask_t *);
90extern errno_t nic_vlan_set_tag(async_sess_t *, uint16_t, bool, bool);
91
92extern errno_t nic_wol_virtue_add(async_sess_t *, nic_wv_type_t, const void *,
93 size_t, nic_wv_id_t *);
94extern errno_t nic_wol_virtue_remove(async_sess_t *, nic_wv_id_t);
95extern errno_t nic_wol_virtue_probe(async_sess_t *, nic_wv_id_t, nic_wv_type_t *,
96 size_t, void *, size_t *);
97extern errno_t nic_wol_virtue_list(async_sess_t *, nic_wv_type_t, size_t,
98 nic_wv_id_t *, size_t *);
99extern errno_t nic_wol_virtue_get_caps(async_sess_t *, nic_wv_type_t, int *);
100extern errno_t nic_wol_load_info(async_sess_t *, nic_wv_type_t *, size_t, uint8_t *,
101 size_t *);
102
103extern errno_t nic_offload_probe(async_sess_t *, uint32_t *, uint32_t *);
104extern errno_t nic_offload_set(async_sess_t *, uint32_t, uint32_t);
105
106extern errno_t nic_poll_get_mode(async_sess_t *, nic_poll_mode_t *,
107 struct timespec *);
108extern errno_t nic_poll_set_mode(async_sess_t *, nic_poll_mode_t,
109 const struct timespec *);
110extern errno_t nic_poll_now(async_sess_t *);
111
112#endif
113
114/** @}
115 */
Note: See TracBrowser for help on using the repository browser.