blob: 5bf820defbd01b73b906d295bfe3ce40f1e02e80 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2002 Intersil Americas Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 */
18
19#ifndef _ISLPCI_ETH_H
20#define _ISLPCI_ETH_H
21
22#include "isl_38xx.h"
23#include "islpci_dev.h"
24
25struct rfmon_header {
26 u16 unk0; /* = 0x0000 */
27 u16 length; /* = 0x1400 */
28 u32 clock; /* 1MHz clock */
29 u8 flags;
30 u8 unk1;
31 u8 rate;
32 u8 unk2;
33 u16 freq;
34 u16 unk3;
35 u8 rssi;
36 u8 padding[3];
37} __attribute__ ((packed));
38
39struct rx_annex_header {
40 u8 addr1[ETH_ALEN];
41 u8 addr2[ETH_ALEN];
42 struct rfmon_header rfmon;
43} __attribute__ ((packed));
44
45/* wlan-ng (and hopefully others) AVS header, version one. Fields in
46 * network byte order. */
47#define P80211CAPTURE_VERSION 0x80211001
48
49struct avs_80211_1_header {
50 uint32_t version;
51 uint32_t length;
52 uint64_t mactime;
53 uint64_t hosttime;
54 uint32_t phytype;
55 uint32_t channel;
56 uint32_t datarate;
57 uint32_t antenna;
58 uint32_t priority;
59 uint32_t ssi_type;
60 int32_t ssi_signal;
61 int32_t ssi_noise;
62 uint32_t preamble;
63 uint32_t encoding;
64};
65
66void islpci_eth_cleanup_transmit(islpci_private *, isl38xx_control_block *);
67int islpci_eth_transmit(struct sk_buff *, struct net_device *);
68int islpci_eth_receive(islpci_private *);
69void islpci_eth_tx_timeout(struct net_device *);
David Howellsc4028952006-11-22 14:57:56 +000070void islpci_do_reset_and_wake(struct work_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72#endif /* _ISL_GEN_H */