Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1 | #ifndef _LBS_IF_USB_H |
2 | #define _LBS_IF_USB_H | ||||
Holger Schurig | 435a1ac | 2007-05-25 12:41:52 -0400 | [diff] [blame] | 3 | |
David Woodhouse | 4f82f5c | 2007-12-11 00:07:58 -0500 | [diff] [blame] | 4 | #include <linux/wait.h> |
5 | #include <linux/timer.h> | ||||
6 | |||||
David Woodhouse | 6bc822b | 2007-12-11 12:53:43 -0500 | [diff] [blame] | 7 | struct lbs_private; |
8 | |||||
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 9 | /** |
10 | * This file contains definition for USB interface. | ||||
11 | */ | ||||
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame^] | 12 | #define CMD_TYPE_REQUEST 0xF00DFACE |
13 | #define CMD_TYPE_DATA 0xBEADC0DE | ||||
14 | #define CMD_TYPE_INDICATION 0xBEEFFACE | ||||
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 15 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame^] | 16 | #define IPFIELD_ALIGN_OFFSET 2 |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 17 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame^] | 18 | #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 /* LVRM */ | ||||
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 23 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame^] | 24 | struct bootcmd |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 25 | { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame^] | 26 | __le32 magic; |
27 | uint8_t cmd; | ||||
28 | uint8_t pad[11]; | ||||
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 29 | }; |
30 | |||||
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame^] | 31 | #define BOOT_CMD_RESP_OK 0x0001 |
32 | #define BOOT_CMD_RESP_FAIL 0x0000 | ||||
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 33 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame^] | 34 | struct bootcmdresp |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 35 | { |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame^] | 36 | __le32 magic; |
37 | uint8_t cmd; | ||||
38 | uint8_t result; | ||||
39 | uint8_t pad[2]; | ||||
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 40 | }; |
41 | |||||
42 | /** USB card description structure*/ | ||||
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame^] | 43 | struct if_usb_card { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 44 | struct usb_device *udev; |
45 | struct urb *rx_urb, *tx_urb; | ||||
David Woodhouse | 6bc822b | 2007-12-11 12:53:43 -0500 | [diff] [blame] | 46 | struct lbs_private *priv; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 47 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame^] | 48 | struct sk_buff *rx_skb; |
49 | uint32_t usb_event_cause; | ||||
50 | uint8_t usb_int_cause; | ||||
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 51 | |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame^] | 52 | uint8_t ep_in; |
53 | uint8_t ep_out; | ||||
54 | |||||
55 | int8_t bootcmdresp; | ||||
56 | |||||
57 | int ep_in_size; | ||||
58 | |||||
59 | void *ep_out_buf; | ||||
60 | int ep_out_size; | ||||
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 61 | |
Dan Williams | 954ee16 | 2007-08-20 11:43:25 -0400 | [diff] [blame] | 62 | const struct firmware *fw; |
David Woodhouse | 4f82f5c | 2007-12-11 00:07:58 -0500 | [diff] [blame] | 63 | struct timer_list fw_timeout; |
64 | wait_queue_head_t fw_wq; | ||||
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame^] | 65 | uint32_t fwseqnum; |
66 | uint32_t totalbytes; | ||||
67 | uint32_t fwlastblksent; | ||||
68 | uint8_t CRC_OK; | ||||
69 | uint8_t fwdnldover; | ||||
70 | uint8_t fwfinalblk; | ||||
71 | uint8_t surprise_removed; | ||||
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 72 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 73 | }; |
74 | |||||
75 | /** fwheader */ | ||||
76 | struct fwheader { | ||||
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 77 | __le32 dnldcmd; |
78 | __le32 baseaddr; | ||||
79 | __le32 datalength; | ||||
80 | __le32 CRC; | ||||
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 81 | }; |
82 | |||||
83 | #define FW_MAX_DATA_BLK_SIZE 600 | ||||
84 | /** FWData */ | ||||
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame^] | 85 | struct fwdata { |
86 | struct fwheader hdr; | ||||
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 87 | __le32 seqnum; |
David Woodhouse | eae86bf | 2007-12-14 00:47:05 -0500 | [diff] [blame^] | 88 | uint8_t data[0]; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 89 | }; |
90 | |||||
91 | /** fwsyncheader */ | ||||
92 | struct fwsyncheader { | ||||
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 93 | __le32 cmd; |
94 | __le32 seqnum; | ||||
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 95 | }; |
96 | |||||
97 | #define FW_HAS_DATA_TO_RECV 0x00000001 | ||||
98 | #define FW_HAS_LAST_BLOCK 0x00000004 | ||||
99 | |||||
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 100 | |
Holger Schurig | 435a1ac | 2007-05-25 12:41:52 -0400 | [diff] [blame] | 101 | #endif |