blob: f028df1d018c6969f3107a5999a3d32dae387e30 [file] [log] [blame]
Holger Schurig10078322007-11-15 18:05:47 -05001#ifndef _LBS_IF_USB_H
2#define _LBS_IF_USB_H
Holger Schurig435a1ac2007-05-25 12:41:52 -04003
David Woodhouse4f82f5c2007-12-11 00:07:58 -05004#include <linux/wait.h>
5#include <linux/timer.h>
6
David Woodhouse6bc822b2007-12-11 12:53:43 -05007struct lbs_private;
8
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02009/**
10 * This file contains definition for USB interface.
11 */
12#define CMD_TYPE_REQUEST 0xF00DFACE
13#define CMD_TYPE_DATA 0xBEADC0DE
14#define CMD_TYPE_INDICATION 0xBEEFFACE
15
16#define IPFIELD_ALIGN_OFFSET 2
17
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020018#define BOOT_CMD_FW_BY_USB 0x01
19#define BOOT_CMD_FW_IN_EEPROM 0x02
20#define BOOT_CMD_UPDATE_BOOT2 0x03
21#define BOOT_CMD_UPDATE_FW 0x04
22#define BOOT_CMD_MAGIC_NUMBER 0x4C56524D /* M=>0x4D,R=>0x52,V=>0x56,L=>0x4C */
23
24struct bootcmdstr
25{
David Woodhouse981f1872007-05-25 23:36:54 -040026 __le32 u32magicnumber;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020027 u8 u8cmd_tag;
28 u8 au8dumy[11];
29};
30
31#define BOOT_CMD_RESP_OK 0x0001
32#define BOOT_CMD_RESP_FAIL 0x0000
33
34struct bootcmdrespStr
35{
David Woodhouse981f1872007-05-25 23:36:54 -040036 __le32 u32magicnumber;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020037 u8 u8cmd_tag;
38 u8 u8result;
39 u8 au8dumy[2];
40};
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020041
42/* read callback private data */
43struct read_cb_info {
Dan Williams954ee162007-08-20 11:43:25 -040044 struct usb_card_rec *cardp;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020045 struct sk_buff *skb;
46};
47
48/** USB card description structure*/
49struct usb_card_rec {
50 struct net_device *eth_dev;
51 struct usb_device *udev;
52 struct urb *rx_urb, *tx_urb;
David Woodhouse6bc822b2007-12-11 12:53:43 -050053 struct lbs_private *priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020054 struct read_cb_info rinfo;
55
56 int bulk_in_size;
57 u8 bulk_in_endpointAddr;
58
59 u8 *bulk_out_buffer;
60 int bulk_out_size;
61 u8 bulk_out_endpointAddr;
62
Dan Williams954ee162007-08-20 11:43:25 -040063 const struct firmware *fw;
David Woodhouse4f82f5c2007-12-11 00:07:58 -050064 struct timer_list fw_timeout;
65 wait_queue_head_t fw_wq;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020066 u8 CRC_OK;
67 u32 fwseqnum;
68 u32 lastseqnum;
69 u32 totalbytes;
70 u32 fwlastblksent;
71 u8 fwdnldover;
72 u8 fwfinalblk;
Dan Williams954ee162007-08-20 11:43:25 -040073 u8 surprise_removed;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020074
75 u32 usb_event_cause;
76 u8 usb_int_cause;
77
78 u8 rx_urb_recall;
79
David Woodhouse6d35fdf2007-12-08 23:49:06 +000080 s8 bootcmdresp;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020081};
82
83/** fwheader */
84struct fwheader {
David Woodhouse981f1872007-05-25 23:36:54 -040085 __le32 dnldcmd;
86 __le32 baseaddr;
87 __le32 datalength;
88 __le32 CRC;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020089};
90
91#define FW_MAX_DATA_BLK_SIZE 600
92/** FWData */
93struct FWData {
94 struct fwheader fwheader;
David Woodhouse981f1872007-05-25 23:36:54 -040095 __le32 seqnum;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020096 u8 data[FW_MAX_DATA_BLK_SIZE];
97};
98
99/** fwsyncheader */
100struct fwsyncheader {
David Woodhouse981f1872007-05-25 23:36:54 -0400101 __le32 cmd;
102 __le32 seqnum;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200103};
104
105#define FW_HAS_DATA_TO_RECV 0x00000001
106#define FW_HAS_LAST_BLOCK 0x00000004
107
108#define FW_DATA_XMIT_SIZE \
David Woodhousebb793e22007-05-25 23:38:14 -0400109 sizeof(struct fwheader) + le32_to_cpu(fwdata->fwheader.datalength) + sizeof(u32)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200110
Holger Schurig435a1ac2007-05-25 12:41:52 -0400111#endif