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

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

NIC does not need nic_device_id_t. Now it exists just inside net. Not sure if
we care to rename it since net is going away soon, anyway.

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