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

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

Create DDF functions manually.

  • Property mode set to 100644
File size: 7.4 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 <net/device.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 /** Session to SERVICE_NETWORKING */
83 async_sess_t *net_session;
84 /** Session to SERVICE_ETHERNET or SERVICE_NILDUMMY */
85 async_sess_t *nil_session;
86 /** Phone to APIC or i8259 */
87 async_sess_t *irc_session;
88 /** Current polling mode of the NIC */
89 nic_poll_mode_t poll_mode;
90 /** Polling period (applicable when poll_mode == NIC_POLL_PERIODIC) */
91 struct timeval poll_period;
92 /** Current polling mode of the NIC */
93 nic_poll_mode_t default_poll_mode;
94 /** Polling period (applicable when default_poll_mode == NIC_POLL_PERIODIC) */
95 struct timeval default_poll_period;
96 /** Software period fibrill information */
97 struct sw_poll_info sw_poll_info;
98 /**
99 * Lock on everything but statistics, rx control and wol virtues. This lock
100 * cannot be used if filters_lock or stats_lock is already held - you must
101 * acquire main_lock first (otherwise deadlock could happen).
102 */
103 fibril_rwlock_t main_lock;
104 /** Device statistics */
105 nic_device_stats_t stats;
106 /**
107 * Lock for statistics. You must not hold any other lock from nic_t except
108 * the main_lock at the same moment. If both this lock and main_lock should
109 * be locked, the main_lock must be locked as the first.
110 */
111 fibril_rwlock_t stats_lock;
112 /** Receive control configuration */
113 nic_rxc_t rx_control;
114 /**
115 * Lock for receive control. You must not hold any other lock from nic_t
116 * except the main_lock at the same moment. If both this lock and main_lock
117 * should be locked, the main_lock must be locked as the first.
118 */
119 fibril_rwlock_t rxc_lock;
120 /** WOL virtues configuration */
121 nic_wol_virtues_t wol_virtues;
122 /**
123 * Lock for WOL virtues. You must not hold any other lock from nic_t
124 * except the main_lock at the same moment. If both this lock and main_lock
125 * should be locked, the main_lock must be locked as the first.
126 */
127 fibril_rwlock_t wv_lock;
128 /**
129 * Function really sending the data. This MUST be filled in if the
130 * nic_send_message_impl function is used for sending messages (filled
131 * as send_message member of the nic_iface_t structure).
132 * Called with the main_lock locked for reading.
133 */
134 send_frame_handler send_frame;
135 /**
136 * Event handler called when device goes to the ACTIVE state.
137 * The implementation is optional.
138 * Called with the main_lock locked for writing.
139 */
140 state_change_handler on_activating;
141 /**
142 * Event handler called when device goes to the DOWN state.
143 * The implementation is optional.
144 * Called with the main_lock locked for writing.
145 */
146 state_change_handler on_going_down;
147 /**
148 * Event handler called when device goes to the STOPPED state.
149 * The implementation is optional.
150 * Called with the main_lock locked for writing.
151 */
152 state_change_handler on_stopping;
153 /**
154 * Event handler called when the unicast receive mode is changed.
155 * The implementation is optional. Called with rxc_lock locked for writing.
156 */
157 unicast_mode_change_handler on_unicast_mode_change;
158 /**
159 * Event handler called when the multicast receive mode is changed.
160 * The implementation is optional. Called with rxc_lock locked for writing.
161 */
162 multicast_mode_change_handler on_multicast_mode_change;
163 /**
164 * Event handler called when the broadcast receive mode is changed.
165 * The implementation is optional. Called with rxc_lock locked for writing.
166 */
167 broadcast_mode_change_handler on_broadcast_mode_change;
168 /**
169 * Event handler called when the blocked sources set is changed.
170 * The implementation is optional. Called with rxc_lock locked for writing.
171 */
172 blocked_sources_change_handler on_blocked_sources_change;
173 /**
174 * Event handler called when the VLAN mask is changed.
175 * The implementation is optional. Called with rxc_lock locked for writing.
176 */
177 vlan_mask_change_handler on_vlan_mask_change;
178 /**
179 * Event handler called when a new WOL virtue is added.
180 * The implementation is optional.
181 * Called with filters_lock locked for writing.
182 */
183 wol_virtue_add_handler on_wol_virtue_add;
184 /**
185 * Event handler called when a WOL virtue is removed.
186 * The implementation is optional.
187 * Called with filters_lock locked for writing.
188 */
189 wol_virtue_remove_handler on_wol_virtue_remove;
190 /**
191 * Event handler called when the polling mode is changed.
192 * The implementation is optional.
193 * Called with main_lock locked for writing.
194 */
195 poll_mode_change_handler on_poll_mode_change;
196 /**
197 * Event handler called when the NIC should poll its buffers for a new frame
198 * (in NIC_POLL_PERIODIC or NIC_POLL_ON_DEMAND) modes.
199 * Called with the main_lock locked for reading.
200 * The implementation is optional.
201 */
202 poll_request_handler on_poll_request;
203 /** Data specific for particular driver */
204 void *specific;
205};
206
207/**
208 * Structure keeping global data
209 */
210typedef struct nic_globals {
211 list_t frame_list_cache;
212 size_t frame_list_cache_size;
213 list_t frame_cache;
214 size_t frame_cache_size;
215 fibril_mutex_t lock;
216} nic_globals_t;
217
218#endif
219
220/** @}
221 */
Note: See TracBrowser for help on using the repository browser.