2 * Copyright (C) 2003 - 2006 NetXen, Inc.
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.
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.
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,
20 * The full GNU General Public License is included in this distribution
21 * in the file called LICENSE.
23 * Contact Information:
26 * 3965 Freedom Circle, Fourth floor,
27 * Santa Clara, CA 95054
30 #ifndef __NETXEN_NIC_IOCTL_H__
31 #define __NETXEN_NIC_IOCTL_H__
33 #include <linux/sockios.h>
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 #define NETXEN_NIC_NAME_LEN 16
39 #define NETXEN_NIC_NAME_RSP "NETXEN"
42 netxen_nic_cmd_none = 0,
43 netxen_nic_cmd_pci_read,
44 netxen_nic_cmd_pci_write,
45 netxen_nic_cmd_pci_mem_read,
46 netxen_nic_cmd_pci_mem_write,
47 netxen_nic_cmd_pci_config_read,
48 netxen_nic_cmd_pci_config_write,
49 netxen_nic_cmd_get_stats,
50 netxen_nic_cmd_clear_stats,
51 netxen_nic_cmd_get_version
52 } netxen_nic_ioctl_cmd_t;
54 struct netxen_nic_ioctl_data {
64 struct netxen_statistics {
72 u64 rx_short_length_error;
73 u64 rx_long_length_error;
77 #endif /* __NETXEN_NIC_IOCTL_H_ */