aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/silicom/bypasslib/libbp_sd.h
blob: 3b4f8364ed18bbebf1baaaa83c76f73a66eded73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
/******************************************************************************/
/*                                                                            */
/* bypass library, Copyright (c) 2004 Silicom, Ltd                            */
/* Corporation.                                                               */
/*                                                                            */
/* This program is free software; you can redistribute it and/or modify       */
/* it under the terms of the GNU General Public License as published by       */
/* the Free Software Foundation, located in the file LICENSE.                 */
/*                                                                            */
/* Ver 1.0.0                                                                  */
/*                                                                            */
/* libbypass.h                                                                */
/*                                                                            */
/******************************************************************************/

/**
 * is_bypass - check if device is a Bypass controlling device
 * @if_index: network device index
 *
 * Output:
 *  1 -  if device is bypass controlling device, 
 *  0 -  if device is bypass slave device
 * -1 -  device not support Bypass
 **/
int is_bypass_sd(int if_index);

/**
 * get_bypass_slave - get second port participate in the Bypass pair
 * @if_index: network device index
 *
 * Output:
 *  network device index of the slave device
 * -1 - on failure (device not support Bypass or it's a slave device) 
 **/
int get_bypass_slave_sd(int if_index);

/**
 * get_bypass_caps - get second port participate in the Bypass pair
 * @if_index: network device index
 *
 * Output:
 * flags word on success;flag word is a 32-bit mask word with each bit defines different 
 * capability as described bellow.
 * Value of 1 for supporting this feature. 0 for not supporting this feature.
 * -1 - on failure (if the device is not capable of the operation or not a Bypass device)
 * Bit	feature	                description
 * 
 * 0	BP_CAP	                The interface is Bypass capable in general
 * 
 * 1	BP_STATUS_CAP	        The interface can report of the current Bypass mode
 * 
 * 2	BP_STATUS_CHANGE_CAP	The interface can report on a change to bypass mode from 
 *                              the last time the mode was defined
 * 
 * 3	SW_CTL_CAP	            The interface is Software controlled capable for bypass/non bypass modes.
 * 
 * 4	BP_DIS_CAP	            The interface is capable of disabling the Bypass mode at all times. 
 *                              This mode will retain its mode even during power loss and also after 
 *                              power recovery. This will overcome on any bypass operation due to 
 *                              watchdog timeout or set bypass command.
 * 
 * 5	BP_DIS_STATUS_CAP	    The interface can report of the current DIS_BP_CAP
 * 
 * 6	STD_NIC_CAP	            The interface is capable to be configured to operate as standard, non Bypass, 
 *                              NIC interface (have direct connection to interfaces at all power modes)
 * 
 * 7	BP_PWOFF_NO_CAP	        The interface can be in Bypass mode at power off state
 * 
 * 8	BP_PWOFF_OFF_CAP	    The interface can disconnect the Bypass mode at power off state without 
 *                              effecting all the other states of operation
 * 
 * 9	BP_PWOFF_CTL_CAP	    The behavior of the Bypass mode at Power-off state can be controlled by 
 *                              software without effecting any other state
 * 
 *10    BP_PWUP_ON_CAP	        The interface can be in Bypass mode when power is turned on 
 *                              (until the system take control of the bypass functionality)
 * 
 *11	BP_PWUP_OFF_CAP	        The interface can disconnect from Bypass mode when power is turned on 
 *                              (until the system take control of the bypass functionality)
 * 
 *12	BP_PWUP_CTL_CAP	        The behavior of the Bypass mode at Power-up can be controlled by software
 * 
 *13	WD_CTL_CAP	            The interface has watchdog capabilities to turn to Bypass mode when not reset 
 *                              for defined period of time.
 * 
 *14	WD_STATUS_CAP	        The interface can report on the watchdog status (Active/inactive)
 * 
 *15	WD_TIMEOUT_CAP	        The interface can report the time left till watchdog triggers to Bypass mode.
 * 
 *16-31 RESERVED	
 *
 * **/
int get_bypass_caps_sd(int if_index);

/**
 * get_wd_set_caps - Obtain watchdog timer setting capabilities
 * @if_index: network device index
 *
 * Output:
 * 
 * Set of numbers defining the various parameters of the watchdog capable 
 * to be set to as described bellow.
 * -1 - on failure (device not support Bypass or it's a slave device)
 * 
 * Bit	feature	        description
 * 
 * 0-3	WD_MIN_TIME	    The interface WD minimal time period  in 100mS units
 * 
 * 4	WD_STEP_TIME	The steps of the WD timer in 
 *                      0 - for linear steps (WD_MIN_TIME * X)
 *                      1 - for multiply by 2 from previous step (WD_MIN_TIME * 2^X)
 * 
 * 5-8	WD_STEP_COUNT	Number of steps the WD timer supports in 2^X 
 *                      (X bit available for defining the value)
 * 
 * 
 * 
 **/
int get_wd_set_caps_sd(int if_index);

/**
 * set_bypass - set Bypass state
 * @if_index: network device index of the controlling device
 * @bypass_mode:  bypass mode (1=on, 0=off) 
 * Output:
 *  0 - on success
 * -1 - on failure (device not support Bypass or it's a slave device) 
 **/
int set_bypass_sd(int if_index, int bypass_mode);

/**
 * get_bypass - Get Bypass mode state
 * @if_index: network device index of the controlling device
 * Output:
 *  0/1 - (off/on) on success
 * -1 - on failure (device not support Bypass or it's a slave device) 
 **/
int get_bypass_sd(int if_index);

/**
 * get_bypass_change - Get change of Bypass mode state from last status check
 * @if_index: network device index of the controlling device
 * Output:
 *  0/1 - (off/on) on success
 * -1 - on failure (device not support Bypass or it's a slave device) 
 **/
int get_bypass_change_sd(int if_index);

/**
 * set_dis_bypass - Set Disable Bypass mode
 * @if_index: network device index of the controlling device
 * @dis_bypass: disable bypass(1=dis, 0=en)
 * Output:
 *  0 - on success
 * -1 - on failure (device is not capable of the operation ordevice not support Bypass 
 *                  or it's a slave device) 
 **/
int set_dis_bypass_sd(int if_index, int dis_bypass);

/**
 * get_dis_bypass - Get Disable Bypass mode state
 * @if_index: network device index of the controlling device
 * Output:
 *  0/1 - on success (normal Bypass mode/ Disable bypass)
 * -1 - on failure (device is not capable of the operation ordevice not support Bypass 
 *                  or it's a slave device) 
 **/
int get_dis_bypass_sd(int if_index);

/**
 * set_bypass_pwoff - Set Bypass mode at power-off state
 * @if_index: network device index of the controlling device
 * @bypass_mode: bypass mode setting at power off state (1=BP en, 0=BP Dis)
 * Output:
 *  0 - on success 
 * -1 - on failure (device is not capable of the operation ordevice not support Bypass 
 *                  or it's a slave device) 
 **/
int set_bypass_pwoff_sd(int if_index, int bypass_mode);

/**
 * get_bypass_pwoff - Get Bypass mode state at power-off state
 * @if_index: network device index of the controlling device
 * Output:
 *  0/1 - on success (Disable bypass at power off state / normal Bypass mode)
 * -1 - on failure (device is not capable of the operation ordevice not support Bypass 
 *                  or it's a slave device) 
 **/
int get_bypass_pwoff_sd(int if_index);

/**
 * set_bypass_pwup - Set Bypass mode at power-up state
 * @if_index: network device index of the controlling device
 * @bypass_mode: bypass mode setting at power up state (1=BP en, 0=BP Dis)
 * Output:
 *  0 - on success 
 * -1 - on failure (device is not capable of the operation ordevice not support Bypass 
 *                  or it's a slave device) 
 **/
int set_bypass_pwup_sd(int if_index, int bypass_mode);

/**
 * get_bypass_pwup - Get Bypass mode state at power-up state
 * @if_index: network device index of the controlling device
 * Output:
 *  0/1 - on success (Disable bypass at power up state / normal Bypass mode)
 * -1 - on failure (device is not capable of the operation ordevice not support Bypass 
 *                  or it's a slave device) 
 **/
int get_bypass_pwup_sd(int if_index);

/**
 * set_bypass_wd - Set watchdog state
 * @if_index: network device index of the controlling device
 * @ms_timeout: requested timeout (in ms units), 0 for disabling the watchdog timer
 * @ms_timeout_set(output): requested timeout (in ms units), 
 *                          that the adapter supports and will be used by the watchdog
 * Output:
 * 0  - on success 
 * -1 - on failure (device is not capable of the operation ordevice not support Bypass 
 *                  or it's a slave device) 
 **/
int set_bypass_wd_sd(int if_index, int ms_timeout, int *ms_timeout_set);

/**
 * get_bypass_wd - Get watchdog state
 * @if_index: network device index of the controlling device
 * @ms_timeout (output): WDT timeout (in ms units), 
 *                       -1 for unknown wdt status
 *                        0 if WDT is disabled
 * Output:
 * 0  - on success
 * -1 - on failure (device is not capable of the operation ordevice not support Bypass 
 *                  or it's a slave device) 
 **/
int get_bypass_wd_sd(int if_index, int *ms_timeout_set);

/**
 * get_wd_expire_time - Get watchdog expire
 * @if_index: network device index of the controlling device
 * @ms_time_left (output): time left till watchdog time expire, 
 *                       -1 if WDT has expired
 *                       0  if WDT is disabled
 * Output:
 * 0  - on success
 * -1 - on failure (device is not capable of the operation ordevice not support Bypass 
 *                  or it's a slave device or unknown wdt status) 
 **/
int get_wd_expire_time_sd(int if_index, int *ms_time_left);

/**
 * reset_bypass_wd_timer - Reset watchdog timer
 * @if_index: network device index of the controlling device
 * 
 * Output:
 * 1  - on success
 * 0 - watchdog is not configured
 * -1 - on failure (device is not capable of the operation ordevice not support Bypass 
 *                  or it's a slave device or unknown wdt status) 
 **/
int reset_bypass_wd_timer_sd(int if_index);

/**
 * set_std_nic - Standard NIC mode of operation
 * @if_index: network device index of the controlling device
 * @nic_mode: 0/1 (Default Bypass mode / Standard NIC mode)
 * 
 * Output:
 * 0  - on success
 * -1 - on failure (device is not capable of the operation ordevice not support Bypass 
 *                  or it's a slave device) 
 **/
int set_std_nic_sd(int if_index, int nic_mode);

/**
 * get_std_nic - Get Standard NIC mode setting
 * @if_index: network device index of the controlling device
 * 
 * Output:
 * 0/1 (Default Bypass mode / Standard NIC mode) on success
 * -1 - on failure (device is not capable of the operation ordevice not support Bypass 
 *                  or it's a slave device) 
 **/
int get_std_nic_sd(int if_index);

/**
 * set_tx - set transmitter enable/disable 
 * @if_index: network device index of the controlling device
 * @tx_state: 0/1 (Transmit Disable / Transmit Enable)
 * 
 * Output:
 * 0  - on success
 * -1 - on failure (device is not capable of the operation ) 
 **/
int set_tx_sd(int if_index, int tx_state);

/**
 * get_std_nic - get transmitter state (disable / enable)
 * @if_index: network device index of the controlling device
 * 
 * Output:
 * 0/1 (ransmit Disable / Transmit Enable) on success
 * -1 - on failure (device is not capable of the operation ordevice not support Bypass) 
 **/
int get_tx_sd(int if_index);

/**
 * set_tap - set TAP state
 * @if_index: network device index of the controlling device
 * @tap_mode: 1 tap mode , 0 normal nic mode 
 * Output:
 *  0 - on success
 * -1 - on failure (device not support TAP or it's a slave device) 
 **/
int set_tap_sd(int if_index, int tap_mode);

/**
 * get_tap - Get TAP mode state
 * @if_index: network device index of the controlling device
 * Output:
 *  0/1 - (off/on) on success
 * -1 - on failure (device not support TAP or it's a slave device) 
 **/
int get_tap_sd(int if_index);

/**
 * get_tap_change - Get change of TAP mode state from last status check
 * @if_index: network device index of the controlling device
 * Output:
 *  0/1 - (off/on) on success
 * -1 - on failure (device not support TAP or it's a slave device) 
 **/
int get_tap_change_sd(int if_index);

/**
 * set_dis_tap - Set Disable TAP mode
 * @if_index: network device index of the controlling device
 * @dis_tap: disable tap(1=dis, 0=en)
 * Output:
 *  0 - on success
 * -1 - on failure (device is not capable of the operation ordevice not support TAP 
 *                  or it's a slave device) 
 **/
int set_dis_tap_sd(int if_index, int dis_tap);

/**
 * get_dis_tap - Get Disable TAP mode state
 * @if_index: network device index of the controlling device
 * Output:
 *  0/1 - on success (normal TAP mode/ Disable TAP)
 * -1 - on failure (device is not capable of the operation ordevice not support TAP 
 *                  or it's a slave device) 
 **/
int get_dis_tap_sd(int if_index);

/**
 * set_tap_pwup - Set TAP mode at power-up state
 * @if_index: network device index of the controlling device
 * @bypass_mode: tap mode setting at power up state (1=TAP en, 0=TAP Dis)
 * Output:
 *  0 - on success 
 * -1 - on failure (device is not capable of the operation ordevice not support TAP 
 *                  or it's a slave device) 
 **/
int set_tap_pwup_sd(int if_index, int tap_mode);

/**
 * get_tap_pwup - Get TAP mode state at power-up state
 * @if_index: network device index of the controlling device
 * Output:
 *  0/1 - on success (Disable TAP at power up state / normal TAP mode)
 * -1 - on failure (device is not capable of the operation ordevice not support TAP 
 *                  or it's a slave device) 
 **/
int get_tap_pwup_sd(int if_index);

/**
 * set_bp_disc - set Disconnect state
 * @if_index: network device index of the controlling device
 * @tap_mode: 1 disc mode , 0 non-disc mode 
 * Output:
 *  0 - on success
 * -1 - on failure (device not support Disconnect or it's a slave device) 
 **/
int set_bp_disc_sd(int if_index, int disc_mode);

/**
 * get_bp_disc - Get Disconnect mode state
 * @if_index: network device index of the controlling device
 * Output:
 *  0/1 - (off/on) on success
 * -1 - on failure (device not support Disconnect or it's a slave device) 
 **/
int get_bp_disc_sd(int if_index);

/**
 * get_bp_disc_change - Get change of Disconnect mode state from last status check
 * @if_index: network device index of the controlling device
 * Output:
 *  0/1 - (off/on) on success
 * -1 - on failure (device not support Disconnect or it's a slave device) 
 **/
int get_bp_disc_change_sd(int if_index);

/**
 * set_bp_dis_disc - Set Disable Disconnect mode
 * @if_index: network device index of the controlling device
 * @dis_tap: disable tap(1=dis, 0=en)
 * Output:
 *  0 - on success
 * -1 - on failure (device is not capable ofthe operation ordevice not support Disconnect 
 *                  or it's a slave device) 
 **/
int set_bp_dis_disc_sd(int if_index, int dis_disc);

/**
 * get_dis_tap - Get Disable Disconnect mode state
 * @if_index: network device index of the controlling device
 * Output:
 *  0/1 - on success (normal Disconnect mode/ Disable Disconnect)
 * -1 - on failure (device is not capable of the operation ordevice not support Disconnect 
 *                  or it's a slave device) 
 **/
int get_bp_dis_disc_sd(int if_index);

/**
 * set_bp_disc_pwup - Set Disconnect mode at power-up state
 * @if_index: network device index of the controlling device
 * @disc_mode: tap mode setting at power up state (1=Disc en, 0=Disc Dis)
 * Output:
 *  0 - on success 
 * -1 - on failure (device is not capable of the operation ordevice not support Disconnect 
 *                  or it's a slave device) 
 **/
int set_bp_disc_pwup_sd(int if_index, int disc_mode);

/**
 * get_bp_disc_pwup - Get Disconnect mode state at power-up state
 * @if_index: network device index of the controlling device
 * Output:
 *  0/1 - on success (Disable Disconnect at power up state / normal Disconnect mode)
 * -1 - on failure (device is not capable of the operation ordevice not support TAP 
 *                  or it's a slave device) 
 **/
int get_bp_disc_pwup_sd(int if_index);

/**
 * set_wd_exp_mode - Set adapter state when WDT expired.
 * @if_index: network device index of the controlling device
 * @bypass_mode:  adapter mode (1=tap mode, 0=bypass mode) 
 * Output:
 *  0 - on success
 * -1 - on failure (device not support Bypass or it's a slave device) 
 **/
int set_wd_exp_mode_sd(int if_index, int bypass_mode);

/**
 * get_wd_exp_mode - Get adapter state when WDT expired.
 * @if_index: network device index of the controlling device
 * Output:
 *  0/1 - (bypass/tap) on success
 * -1 - on failure (device not support Bypass or it's a slave device) 
 **/
int get_wd_exp_mode_sd(int if_index);

/**
 * set_wd_autoreset - reset WDT periodically.
 * @if_index: network device index of the controlling device
 * @bypass_mode:  adapter mode (1=tap mode, 0=bypass mode) 
 * Output:
 * 1  - on success
 * -1 - on failure (device is not capable of the operation ordevice not support Bypass 
 *                  or it's a slave device or unknown wdt status) 
 **/
int set_wd_autoreset_sd(int if_index, int time);

/**
 * set_wd_autoreset - reset WDT periodically.
 * @if_index: network device index of the controlling device
 * @bypass_mode:  adapter mode (1=tap mode, 0=bypass mode) 
 * Output:
 * 1  - on success
 * -1 - on failure (device is not capable of the operation ordevice not support Bypass 
 *                  or it's a slave device or unknown wdt status) 
 **/
int get_wd_autoreset_sd(int if_index);

/**
 * set_tpl - set TPL state
 * @if_index: network device index of the controlling device
 * @tpl_mode: 1 tpl mode , 0 normal nic mode 
 * Output:
 *  0 - on success
 * -1 - on failure (device not support TPL) 
 **/
int set_tpl_sd(int if_index, int tpl_mode);

/**
 * get_tpl - Get TPL mode state
 * @if_index: network device index of the controlling device
 * Output:
 *  0/1 - (off/on) on success
 * -1 - on failure (device not support TPL or it's a slave device) 
 **/
int get_tpl_sd(int if_index);

int get_bypass_info_sd(int if_index, struct bp_info *bp_info);
int bp_if_scan_sd(void);
/*int get_dev_num_sd(void);*/