aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/netxen/netxen_nic_ioctl.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/netxen/netxen_nic_ioctl.h')
-rw-r--r--drivers/net/netxen/netxen_nic_ioctl.h75
1 files changed, 75 insertions, 0 deletions
diff --git a/drivers/net/netxen/netxen_nic_ioctl.h b/drivers/net/netxen/netxen_nic_ioctl.h
new file mode 100644
index 000000000000..806818eb9630
--- /dev/null
+++ b/drivers/net/netxen/netxen_nic_ioctl.h
@@ -0,0 +1,75 @@
1/*
2 * Copyright (C) 2003 - 2006 NetXen, Inc.
3 * All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18 * MA 02111-1307, USA.
19 *
20 * The full GNU General Public License is included in this distribution
21 * in the file called LICENSE.
22 *
23 * Contact Information:
24 * info@netxen.com
25 * NetXen,
26 * 3965 Freedom Circle, Fourth floor,
27 * Santa Clara, CA 95054
28 */
29
30#ifndef __NETXEN_NIC_IOCTL_H__
31#define __NETXEN_NIC_IOCTL_H__
32
33#include <linux/sockios.h>
34
35#define NETXEN_CMD_START SIOCDEVPRIVATE
36#define NETXEN_NIC_CMD (NETXEN_CMD_START + 1)
37#define NETXEN_NIC_NAME (NETXEN_CMD_START + 2)
38
39typedef enum {
40 netxen_nic_cmd_none = 0,
41 netxen_nic_cmd_pci_read,
42 netxen_nic_cmd_pci_write,
43 netxen_nic_cmd_pci_mem_read,
44 netxen_nic_cmd_pci_mem_write,
45 netxen_nic_cmd_pci_config_read,
46 netxen_nic_cmd_pci_config_write,
47 netxen_nic_cmd_get_stats,
48 netxen_nic_cmd_clear_stats,
49 netxen_nic_cmd_get_version
50} netxen_nic_ioctl_cmd_t;
51
52struct netxen_nic_ioctl_data {
53 u32 cmd;
54 u32 unused1;
55 u64 off;
56 u32 size;
57 u32 rv;
58 char u[64];
59 void *ptr;
60};
61
62struct netxen_statistics {
63 u64 rx_packets;
64 u64 tx_packets;
65 u64 rx_bytes;
66 u64 rx_errors;
67 u64 tx_bytes;
68 u64 tx_errors;
69 u64 rx_crc_errors;
70 u64 rx_short_length_error;
71 u64 rx_long_length_error;
72 u64 rx_mac_errors;
73};
74
75#endif /* __NETXEN_NIC_IOCTL_H_ */