source: mainline/uspace/lib/drv/include/ops/nic.h@ 6b8e5b74

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 6b8e5b74 was 609243f4, checked in by Martin Decky <martin@…>, 14 years ago

cherrypick general networking improvements from lp:~helenos-nicf/helenos/nicf (after sanitization)
remove obsolete networking drivers
this renders the networking non-functional for the time being

  • Property mode set to 100644
File size: 4.5 KB
Line 
1/*
2 * Copyright (c) 2011 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 * @brief DDF NIC interface definition
34 */
35
36#ifndef LIBDRV_OPS_NIC_H_
37#define LIBDRV_OPS_NIC_H_
38
39#include <net/packet.h>
40#include <ipc/services.h>
41#include <net/device.h>
42#include <sys/time.h>
43
44#include "../ddf/driver.h"
45
46typedef struct nic_iface {
47 /** Mandatory methods */
48 int (*send_message)(ddf_fun_t *, packet_id_t);
49 int (*connect_to_nil)(ddf_fun_t *, services_t, nic_device_id_t);
50 int (*get_state)(ddf_fun_t *, nic_device_state_t *);
51 int (*set_state)(ddf_fun_t *, nic_device_state_t);
52 int (*get_address)(ddf_fun_t *, nic_address_t *);
53
54 /** Optional methods */
55 int (*set_address)(ddf_fun_t *, const nic_address_t *);
56 int (*get_stats)(ddf_fun_t *, nic_device_stats_t *);
57 int (*get_device_info)(ddf_fun_t *, nic_device_info_t *);
58 int (*get_cable_state)(ddf_fun_t *, nic_cable_state_t *);
59
60 int (*get_operation_mode)(ddf_fun_t *, int *, nic_channel_mode_t *,
61 nic_role_t *);
62 int (*set_operation_mode)(ddf_fun_t *, int, nic_channel_mode_t,
63 nic_role_t);
64 int (*autoneg_enable)(ddf_fun_t *, uint32_t);
65 int (*autoneg_disable)(ddf_fun_t *);
66 int (*autoneg_probe)(ddf_fun_t *, uint32_t *, uint32_t *,
67 nic_result_t *, nic_result_t *);
68 int (*autoneg_restart)(ddf_fun_t *);
69 int (*get_pause)(ddf_fun_t *, nic_result_t *, nic_result_t *,
70 uint16_t *);
71 int (*set_pause)(ddf_fun_t *, int, int, uint16_t);
72
73 int (*unicast_get_mode)(ddf_fun_t *, nic_unicast_mode_t *, size_t,
74 nic_address_t *, size_t *);
75 int (*unicast_set_mode)(ddf_fun_t *, nic_unicast_mode_t,
76 const nic_address_t *, size_t);
77 int (*multicast_get_mode)(ddf_fun_t *, nic_multicast_mode_t *, size_t,
78 nic_address_t *, size_t *);
79 int (*multicast_set_mode)(ddf_fun_t *, nic_multicast_mode_t,
80 const nic_address_t *, size_t);
81 int (*broadcast_get_mode)(ddf_fun_t *, nic_broadcast_mode_t *);
82 int (*broadcast_set_mode)(ddf_fun_t *, nic_broadcast_mode_t);
83 int (*defective_get_mode)(ddf_fun_t *, uint32_t *);
84 int (*defective_set_mode)(ddf_fun_t *, uint32_t);
85 int (*blocked_sources_get)(ddf_fun_t *, size_t, nic_address_t *,
86 size_t *);
87 int (*blocked_sources_set)(ddf_fun_t *, const nic_address_t *, size_t);
88
89 int (*vlan_get_mask)(ddf_fun_t *, nic_vlan_mask_t *);
90 int (*vlan_set_mask)(ddf_fun_t *, const nic_vlan_mask_t *);
91 int (*vlan_set_tag)(ddf_fun_t *, uint16_t, int, int);
92
93 int (*wol_virtue_add)(ddf_fun_t *, nic_wv_type_t, const void *,
94 size_t, nic_wv_id_t *);
95 int (*wol_virtue_remove)(ddf_fun_t *, nic_wv_id_t);
96 int (*wol_virtue_probe)(ddf_fun_t *, nic_wv_id_t, nic_wv_type_t *,
97 size_t, void *, size_t *);
98 int (*wol_virtue_list)(ddf_fun_t *, nic_wv_type_t, size_t,
99 nic_wv_id_t *, size_t *);
100 int (*wol_virtue_get_caps)(ddf_fun_t *, nic_wv_type_t, int *);
101 int (*wol_load_info)(ddf_fun_t *, nic_wv_type_t *, size_t,
102 uint8_t *, size_t *);
103
104 int (*offload_probe)(ddf_fun_t *, uint32_t *, uint32_t *);
105 int (*offload_set)(ddf_fun_t *, uint32_t, uint32_t);
106
107 int (*poll_get_mode)(ddf_fun_t *, nic_poll_mode_t *,
108 struct timeval *);
109 int (*poll_set_mode)(ddf_fun_t *, nic_poll_mode_t,
110 const struct timeval *);
111 int (*poll_now)(ddf_fun_t *);
112} nic_iface_t;
113
114#endif
115
116/**
117 * @}
118 */
Note: See TracBrowser for help on using the repository browser.