if_usb.h 2.0 KB
Newer Older
1 2
#ifndef _LBS_IF_USB_H
#define _LBS_IF_USB_H
3

4 5 6
#include <linux/wait.h>
#include <linux/timer.h>

7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/**
  * This file contains definition for USB interface.
  */
#define CMD_TYPE_REQUEST                0xF00DFACE
#define CMD_TYPE_DATA                   0xBEADC0DE
#define CMD_TYPE_INDICATION             0xBEEFFACE

#define IPFIELD_ALIGN_OFFSET	2

#define BOOT_CMD_FW_BY_USB     0x01
#define BOOT_CMD_FW_IN_EEPROM  0x02
#define BOOT_CMD_UPDATE_BOOT2  0x03
#define BOOT_CMD_UPDATE_FW     0x04
#define BOOT_CMD_MAGIC_NUMBER  0x4C56524D   /* M=>0x4D,R=>0x52,V=>0x56,L=>0x4C */

struct bootcmdstr
{
24
	__le32 u32magicnumber;
25 26 27 28 29 30 31 32 33
	u8  u8cmd_tag;
	u8  au8dumy[11];
};

#define BOOT_CMD_RESP_OK     0x0001
#define BOOT_CMD_RESP_FAIL   0x0000

struct bootcmdrespStr
{
34
	__le32 u32magicnumber;
35 36 37 38 39 40 41
	u8  u8cmd_tag;
	u8  u8result;
	u8  au8dumy[2];
};

/* read callback private data */
struct read_cb_info {
42
        struct usb_card_rec *cardp;
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
        struct sk_buff *skb;
};

/** USB card description structure*/
struct usb_card_rec {
	struct net_device *eth_dev;
	struct usb_device *udev;
	struct urb *rx_urb, *tx_urb;
	void *priv;
	struct read_cb_info rinfo;

	int bulk_in_size;
	u8 bulk_in_endpointAddr;

	u8 *bulk_out_buffer;
	int bulk_out_size;
	u8 bulk_out_endpointAddr;

61
	const struct firmware *fw;
62 63
	struct timer_list fw_timeout;
	wait_queue_head_t fw_wq;
64 65 66 67 68 69 70
	u8 CRC_OK;
	u32 fwseqnum;
	u32 lastseqnum;
	u32 totalbytes;
	u32 fwlastblksent;
	u8 fwdnldover;
	u8 fwfinalblk;
71
	u8 surprise_removed;
72 73 74 75 76 77

	u32 usb_event_cause;
	u8 usb_int_cause;

	u8 rx_urb_recall;

78
	s8 bootcmdresp;
79 80 81 82
};

/** fwheader */
struct fwheader {
83 84 85 86
	__le32 dnldcmd;
	__le32 baseaddr;
	__le32 datalength;
	__le32 CRC;
87 88 89 90 91 92
};

#define FW_MAX_DATA_BLK_SIZE	600
/** FWData */
struct FWData {
	struct fwheader fwheader;
93
	__le32 seqnum;
94 95 96 97 98
	u8 data[FW_MAX_DATA_BLK_SIZE];
};

/** fwsyncheader */
struct fwsyncheader {
99 100
	__le32 cmd;
	__le32 seqnum;
101 102 103 104 105 106
};

#define FW_HAS_DATA_TO_RECV		0x00000001
#define FW_HAS_LAST_BLOCK		0x00000004

#define FW_DATA_XMIT_SIZE \
107
	sizeof(struct fwheader) + le32_to_cpu(fwdata->fwheader.datalength) + sizeof(u32)
108

109
#endif