source: mainline/uspace/lib/nic/include/nic_driver.h@ eb2efc7

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

Decouple libnic from libnet.

  • Property mode set to 100644
File size: 7.3 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/**
30 * @addtogroup libnic
31 * @{
32 */
33/**
34 * @file
35 * @brief Internal NICF structures
36 */
37
38#ifndef __NIC_DRIVER_H__
39#define __NIC_DRIVER_H__
40
41#ifndef LIBNIC_INTERNAL
42#error "This is internal libnic's header, please do not include it"
43#endif
44
45#include <fibril_synch.h>
46#include <nic/nic.h>
47#include <async.h>
48
49#include "nic.h"
50#include "nic_rx_control.h"
51#include "nic_wol_virtues.h"
52
53struct sw_poll_info {
54 fid_t fibril;
55 volatile int run;
56 volatile int running;
57};
58
59struct nic {
60 /**
61 * Device from device manager's point of view.
62 * The value must be set within the add_device handler
63 * (in nic_create_and_bind) and must not be changed.
64 */
65 ddf_dev_t *dev;
66 /**
67 * Device's NIC function.
68 * The value must be set within the add_device handler
69 * (in nic_driver_register_as_ddf_function) and must not be changed.
70 */
71 ddf_fun_t *fun;
72 /** Identifier for higher network stack layers */
73 nic_device_id_t device_id;
74 /** Current state of the device */
75 nic_device_state_t state;
76 /** Transmiter is busy - messages are dropped */
77 int tx_busy;
78 /** Device's MAC address */
79 nic_address_t mac;
80 /** Device's default MAC address (assigned the first time, used in STOP) */
81 nic_address_t default_mac;
82 /** Client callback session */
83 async_sess_t *client_session;
84 /** Phone to APIC or i8259 */
85 async_sess_t *irc_session;
86 /** Current polling mode of the NIC */
87 nic_poll_mode_t poll_mode;
88 /** Polling period (applicable when poll_mode == NIC_POLL_PERIODIC) */
89 struct timeval poll_period;
90 /** Current polling mode of the NIC */
91 nic_poll_mode_t default_poll_mode;
92 /** Polling period (applicable when default_poll_mode == NIC_POLL_PERIODIC) */
93 struct timeval default_poll_period;
94 /** Software period fibrill information */
95 struct sw_poll_info sw_poll_info;
96 /**
97 * Lock on everything but statistics, rx control and wol virtues. This lock
98 * cannot be used if filters_lock or stats_lock is already held - you must
99 * acquire main_lock first (otherwise deadlock could happen).
100 */
101 fibril_rwlock_t main_lock;
102 /** Device statistics */
103 nic_device_stats_t stats;
104 /**
105 * Lock for statistics. You must not hold any other lock from nic_t except
106 * the main_lock at the same moment. If both this lock and main_lock should
107 * be locked, the main_lock must be locked as the first.
108 */
109 fibril_rwlock_t stats_lock;
110 /** Receive control configuration */
111 nic_rxc_t rx_control;
112 /**
113 * Lock for receive control. You must not hold any other lock from nic_t
114 * except the main_lock at the same moment. If both this lock and main_lock
115 * should be locked, the main_lock must be locked as the first.
116 */
117 fibril_rwlock_t rxc_lock;
118 /** WOL virtues configuration */
119 nic_wol_virtues_t wol_virtues;
120 /**
121 * Lock for WOL virtues. You must not hold any other lock from nic_t
122 * except the main_lock at the same moment. If both this lock and main_lock
123 * should be locked, the main_lock must be locked as the first.
124 */
125 fibril_rwlock_t wv_lock;
126 /**
127 * Function really sending the data. This MUST be filled in if the
128 * nic_send_message_impl function is used for sending messages (filled
129 * as send_message member of the nic_iface_t structure).
130 * Called with the main_lock locked for reading.
131 */
132 send_frame_handler send_frame;
133 /**
134 * Event handler called when device goes to the ACTIVE state.
135 * The implementation is optional.
136 * Called with the main_lock locked for writing.
137 */
138 state_change_handler on_activating;
139 /**
140 * Event handler called when device goes to the DOWN state.
141 * The implementation is optional.
142 * Called with the main_lock locked for writing.
143 */
144 state_change_handler on_going_down;
145 /**
146 * Event handler called when device goes to the STOPPED state.
147 * The implementation is optional.
148 * Called with the main_lock locked for writing.
149 */
150 state_change_handler on_stopping;
151 /**
152 * Event handler called when the unicast receive mode is changed.
153 * The implementation is optional. Called with rxc_lock locked for writing.
154 */
155 unicast_mode_change_handler on_unicast_mode_change;
156 /**
157 * Event handler called when the multicast receive mode is changed.
158 * The implementation is optional. Called with rxc_lock locked for writing.
159 */
160 multicast_mode_change_handler on_multicast_mode_change;
161 /**
162 * Event handler called when the broadcast receive mode is changed.
163 * The implementation is optional. Called with rxc_lock locked for writing.
164 */
165 broadcast_mode_change_handler on_broadcast_mode_change;
166 /**
167 * Event handler called when the blocked sources set is changed.
168 * The implementation is optional. Called with rxc_lock locked for writing.
169 */
170 blocked_sources_change_handler on_blocked_sources_change;
171 /**
172 * Event handler called when the VLAN mask is changed.
173 * The implementation is optional. Called with rxc_lock locked for writing.
174 */
175 vlan_mask_change_handler on_vlan_mask_change;
176 /**
177 * Event handler called when a new WOL virtue is added.
178 * The implementation is optional.
179 * Called with filters_lock locked for writing.
180 */
181 wol_virtue_add_handler on_wol_virtue_add;
182 /**
183 * Event handler called when a WOL virtue is removed.
184 * The implementation is optional.
185 * Called with filters_lock locked for writing.
186 */
187 wol_virtue_remove_handler on_wol_virtue_remove;
188 /**
189 * Event handler called when the polling mode is changed.
190 * The implementation is optional.
191 * Called with main_lock locked for writing.
192 */
193 poll_mode_change_handler on_poll_mode_change;
194 /**
195 * Event handler called when the NIC should poll its buffers for a new frame
196 * (in NIC_POLL_PERIODIC or NIC_POLL_ON_DEMAND) modes.
197 * Called with the main_lock locked for reading.
198 * The implementation is optional.
199 */
200 poll_request_handler on_poll_request;
201 /** Data specific for particular driver */
202 void *specific;
203};
204
205/**
206 * Structure keeping global data
207 */
208typedef struct nic_globals {
209 list_t frame_list_cache;
210 size_t frame_list_cache_size;
211 list_t frame_cache;
212 size_t frame_cache_size;
213 fibril_mutex_t lock;
214} nic_globals_t;
215
216#endif
217
218/** @}
219 */
Note: See TracBrowser for help on using the repository browser.