1*4882a593Smuzhiyun /* 2*4882a593Smuzhiyun * Intel Wireless WiMax Connection 2400m 3*4882a593Smuzhiyun * Host-Device protocol interface definitions 4*4882a593Smuzhiyun * 5*4882a593Smuzhiyun * 6*4882a593Smuzhiyun * Copyright (C) 2007-2008 Intel Corporation. All rights reserved. 7*4882a593Smuzhiyun * 8*4882a593Smuzhiyun * Redistribution and use in source and binary forms, with or without 9*4882a593Smuzhiyun * modification, are permitted provided that the following conditions 10*4882a593Smuzhiyun * are met: 11*4882a593Smuzhiyun * 12*4882a593Smuzhiyun * * Redistributions of source code must retain the above copyright 13*4882a593Smuzhiyun * notice, this list of conditions and the following disclaimer. 14*4882a593Smuzhiyun * * Redistributions in binary form must reproduce the above copyright 15*4882a593Smuzhiyun * notice, this list of conditions and the following disclaimer in 16*4882a593Smuzhiyun * the documentation and/or other materials provided with the 17*4882a593Smuzhiyun * distribution. 18*4882a593Smuzhiyun * * Neither the name of Intel Corporation nor the names of its 19*4882a593Smuzhiyun * contributors may be used to endorse or promote products derived 20*4882a593Smuzhiyun * from this software without specific prior written permission. 21*4882a593Smuzhiyun * 22*4882a593Smuzhiyun * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 23*4882a593Smuzhiyun * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 24*4882a593Smuzhiyun * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 25*4882a593Smuzhiyun * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 26*4882a593Smuzhiyun * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 27*4882a593Smuzhiyun * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 28*4882a593Smuzhiyun * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 29*4882a593Smuzhiyun * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 30*4882a593Smuzhiyun * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 31*4882a593Smuzhiyun * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 32*4882a593Smuzhiyun * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33*4882a593Smuzhiyun * 34*4882a593Smuzhiyun * 35*4882a593Smuzhiyun * Intel Corporation <linux-wimax@intel.com> 36*4882a593Smuzhiyun * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> 37*4882a593Smuzhiyun * - Initial implementation 38*4882a593Smuzhiyun * 39*4882a593Smuzhiyun * 40*4882a593Smuzhiyun * This header defines the data structures and constants used to 41*4882a593Smuzhiyun * communicate with the device. 42*4882a593Smuzhiyun * 43*4882a593Smuzhiyun * BOOTMODE/BOOTROM/FIRMWARE UPLOAD PROTOCOL 44*4882a593Smuzhiyun * 45*4882a593Smuzhiyun * The firmware upload protocol is quite simple and only requires a 46*4882a593Smuzhiyun * handful of commands. See drivers/net/wimax/i2400m/fw.c for more 47*4882a593Smuzhiyun * details. 48*4882a593Smuzhiyun * 49*4882a593Smuzhiyun * The BCF data structure is for the firmware file header. 50*4882a593Smuzhiyun * 51*4882a593Smuzhiyun * 52*4882a593Smuzhiyun * THE DATA / CONTROL PROTOCOL 53*4882a593Smuzhiyun * 54*4882a593Smuzhiyun * This is the normal protocol spoken with the device once the 55*4882a593Smuzhiyun * firmware is uploaded. It transports data payloads and control 56*4882a593Smuzhiyun * messages back and forth. 57*4882a593Smuzhiyun * 58*4882a593Smuzhiyun * It consists 'messages' that pack one or more payloads each. The 59*4882a593Smuzhiyun * format is described in detail in drivers/net/wimax/i2400m/rx.c and 60*4882a593Smuzhiyun * tx.c. 61*4882a593Smuzhiyun * 62*4882a593Smuzhiyun * 63*4882a593Smuzhiyun * THE L3L4 PROTOCOL 64*4882a593Smuzhiyun * 65*4882a593Smuzhiyun * The term L3L4 refers to Layer 3 (the device), Layer 4 (the 66*4882a593Smuzhiyun * driver/host software). 67*4882a593Smuzhiyun * 68*4882a593Smuzhiyun * This is the control protocol used by the host to control the i2400m 69*4882a593Smuzhiyun * device (scan, connect, disconnect...). This is sent to / received 70*4882a593Smuzhiyun * as control frames. These frames consist of a header and zero or 71*4882a593Smuzhiyun * more TLVs with information. We call each control frame a "message". 72*4882a593Smuzhiyun * 73*4882a593Smuzhiyun * Each message is composed of: 74*4882a593Smuzhiyun * 75*4882a593Smuzhiyun * HEADER 76*4882a593Smuzhiyun * [TLV0 + PAYLOAD0] 77*4882a593Smuzhiyun * [TLV1 + PAYLOAD1] 78*4882a593Smuzhiyun * [...] 79*4882a593Smuzhiyun * [TLVN + PAYLOADN] 80*4882a593Smuzhiyun * 81*4882a593Smuzhiyun * The HEADER is defined by 'struct i2400m_l3l4_hdr'. The payloads are 82*4882a593Smuzhiyun * defined by a TLV structure (Type Length Value) which is a 'header' 83*4882a593Smuzhiyun * (struct i2400m_tlv_hdr) and then the payload. 84*4882a593Smuzhiyun * 85*4882a593Smuzhiyun * All integers are represented as Little Endian. 86*4882a593Smuzhiyun * 87*4882a593Smuzhiyun * - REQUESTS AND EVENTS 88*4882a593Smuzhiyun * 89*4882a593Smuzhiyun * The requests can be clasified as follows: 90*4882a593Smuzhiyun * 91*4882a593Smuzhiyun * COMMAND: implies a request from the host to the device requesting 92*4882a593Smuzhiyun * an action being performed. The device will reply with a 93*4882a593Smuzhiyun * message (with the same type as the command), status and 94*4882a593Smuzhiyun * no (TLV) payload. Execution of a command might cause 95*4882a593Smuzhiyun * events (of different type) to be sent later on as 96*4882a593Smuzhiyun * device's state changes. 97*4882a593Smuzhiyun * 98*4882a593Smuzhiyun * GET/SET: similar to COMMAND, but will not cause other 99*4882a593Smuzhiyun * EVENTs. The reply, in the case of GET, will contain 100*4882a593Smuzhiyun * TLVs with the requested information. 101*4882a593Smuzhiyun * 102*4882a593Smuzhiyun * EVENT: asynchronous messages sent from the device, maybe as a 103*4882a593Smuzhiyun * consequence of previous COMMANDs but disassociated from 104*4882a593Smuzhiyun * them. 105*4882a593Smuzhiyun * 106*4882a593Smuzhiyun * Only one request might be pending at the same time (ie: don't 107*4882a593Smuzhiyun * parallelize nor post another GET request before the previous 108*4882a593Smuzhiyun * COMMAND has been acknowledged with it's corresponding reply by the 109*4882a593Smuzhiyun * device). 110*4882a593Smuzhiyun * 111*4882a593Smuzhiyun * The different requests and their formats are described below: 112*4882a593Smuzhiyun * 113*4882a593Smuzhiyun * I2400M_MT_* Message types 114*4882a593Smuzhiyun * I2400M_MS_* Message status (for replies, events) 115*4882a593Smuzhiyun * i2400m_tlv_* TLVs 116*4882a593Smuzhiyun * 117*4882a593Smuzhiyun * data types are named 'struct i2400m_msg_OPNAME', OPNAME matching the 118*4882a593Smuzhiyun * operation. 119*4882a593Smuzhiyun */ 120*4882a593Smuzhiyun 121*4882a593Smuzhiyun #ifndef __LINUX__WIMAX__I2400M_H__ 122*4882a593Smuzhiyun #define __LINUX__WIMAX__I2400M_H__ 123*4882a593Smuzhiyun 124*4882a593Smuzhiyun #include <linux/types.h> 125*4882a593Smuzhiyun #include <linux/if_ether.h> 126*4882a593Smuzhiyun 127*4882a593Smuzhiyun /* 128*4882a593Smuzhiyun * Host Device Interface (HDI) common to all busses 129*4882a593Smuzhiyun */ 130*4882a593Smuzhiyun 131*4882a593Smuzhiyun /* Boot-mode (firmware upload mode) commands */ 132*4882a593Smuzhiyun 133*4882a593Smuzhiyun /* Header for the firmware file */ 134*4882a593Smuzhiyun struct i2400m_bcf_hdr { 135*4882a593Smuzhiyun __le32 module_type; 136*4882a593Smuzhiyun __le32 header_len; 137*4882a593Smuzhiyun __le32 header_version; 138*4882a593Smuzhiyun __le32 module_id; 139*4882a593Smuzhiyun __le32 module_vendor; 140*4882a593Smuzhiyun __le32 date; /* BCD YYYMMDD */ 141*4882a593Smuzhiyun __le32 size; /* in dwords */ 142*4882a593Smuzhiyun __le32 key_size; /* in dwords */ 143*4882a593Smuzhiyun __le32 modulus_size; /* in dwords */ 144*4882a593Smuzhiyun __le32 exponent_size; /* in dwords */ 145*4882a593Smuzhiyun __u8 reserved[88]; 146*4882a593Smuzhiyun } __attribute__ ((packed)); 147*4882a593Smuzhiyun 148*4882a593Smuzhiyun /* Boot mode opcodes */ 149*4882a593Smuzhiyun enum i2400m_brh_opcode { 150*4882a593Smuzhiyun I2400M_BRH_READ = 1, 151*4882a593Smuzhiyun I2400M_BRH_WRITE = 2, 152*4882a593Smuzhiyun I2400M_BRH_JUMP = 3, 153*4882a593Smuzhiyun I2400M_BRH_SIGNED_JUMP = 8, 154*4882a593Smuzhiyun I2400M_BRH_HASH_PAYLOAD_ONLY = 9, 155*4882a593Smuzhiyun }; 156*4882a593Smuzhiyun 157*4882a593Smuzhiyun /* Boot mode command masks and stuff */ 158*4882a593Smuzhiyun enum i2400m_brh { 159*4882a593Smuzhiyun I2400M_BRH_SIGNATURE = 0xcbbc0000, 160*4882a593Smuzhiyun I2400M_BRH_SIGNATURE_MASK = 0xffff0000, 161*4882a593Smuzhiyun I2400M_BRH_SIGNATURE_SHIFT = 16, 162*4882a593Smuzhiyun I2400M_BRH_OPCODE_MASK = 0x0000000f, 163*4882a593Smuzhiyun I2400M_BRH_RESPONSE_MASK = 0x000000f0, 164*4882a593Smuzhiyun I2400M_BRH_RESPONSE_SHIFT = 4, 165*4882a593Smuzhiyun I2400M_BRH_DIRECT_ACCESS = 0x00000400, 166*4882a593Smuzhiyun I2400M_BRH_RESPONSE_REQUIRED = 0x00000200, 167*4882a593Smuzhiyun I2400M_BRH_USE_CHECKSUM = 0x00000100, 168*4882a593Smuzhiyun }; 169*4882a593Smuzhiyun 170*4882a593Smuzhiyun 171*4882a593Smuzhiyun /** 172*4882a593Smuzhiyun * i2400m_bootrom_header - Header for a boot-mode command 173*4882a593Smuzhiyun * 174*4882a593Smuzhiyun * @cmd: the above command descriptor 175*4882a593Smuzhiyun * @target_addr: where on the device memory should the action be performed. 176*4882a593Smuzhiyun * @data_size: for read/write, amount of data to be read/written 177*4882a593Smuzhiyun * @block_checksum: checksum value (if applicable) 178*4882a593Smuzhiyun * @payload: the beginning of data attached to this header 179*4882a593Smuzhiyun */ 180*4882a593Smuzhiyun struct i2400m_bootrom_header { 181*4882a593Smuzhiyun __le32 command; /* Compose with enum i2400_brh */ 182*4882a593Smuzhiyun __le32 target_addr; 183*4882a593Smuzhiyun __le32 data_size; 184*4882a593Smuzhiyun __le32 block_checksum; 185*4882a593Smuzhiyun char payload[0]; 186*4882a593Smuzhiyun } __attribute__ ((packed)); 187*4882a593Smuzhiyun 188*4882a593Smuzhiyun 189*4882a593Smuzhiyun /* 190*4882a593Smuzhiyun * Data / control protocol 191*4882a593Smuzhiyun */ 192*4882a593Smuzhiyun 193*4882a593Smuzhiyun /* Packet types for the host-device interface */ 194*4882a593Smuzhiyun enum i2400m_pt { 195*4882a593Smuzhiyun I2400M_PT_DATA = 0, 196*4882a593Smuzhiyun I2400M_PT_CTRL, 197*4882a593Smuzhiyun I2400M_PT_TRACE, /* For device debug */ 198*4882a593Smuzhiyun I2400M_PT_RESET_WARM, /* device reset */ 199*4882a593Smuzhiyun I2400M_PT_RESET_COLD, /* USB[transport] reset, like reconnect */ 200*4882a593Smuzhiyun I2400M_PT_EDATA, /* Extended RX data */ 201*4882a593Smuzhiyun I2400M_PT_ILLEGAL 202*4882a593Smuzhiyun }; 203*4882a593Smuzhiyun 204*4882a593Smuzhiyun 205*4882a593Smuzhiyun /* 206*4882a593Smuzhiyun * Payload for a data packet 207*4882a593Smuzhiyun * 208*4882a593Smuzhiyun * This is prefixed to each and every outgoing DATA type. 209*4882a593Smuzhiyun */ 210*4882a593Smuzhiyun struct i2400m_pl_data_hdr { 211*4882a593Smuzhiyun __le32 reserved; 212*4882a593Smuzhiyun } __attribute__((packed)); 213*4882a593Smuzhiyun 214*4882a593Smuzhiyun 215*4882a593Smuzhiyun /* 216*4882a593Smuzhiyun * Payload for an extended data packet 217*4882a593Smuzhiyun * 218*4882a593Smuzhiyun * New in fw v1.4 219*4882a593Smuzhiyun * 220*4882a593Smuzhiyun * @reorder: if this payload has to be reorder or not (and how) 221*4882a593Smuzhiyun * @cs: the type of data in the packet, as defined per (802.16e 222*4882a593Smuzhiyun * T11.13.19.1). Currently only 2 (IPv4 packet) supported. 223*4882a593Smuzhiyun * 224*4882a593Smuzhiyun * This is prefixed to each and every INCOMING DATA packet. 225*4882a593Smuzhiyun */ 226*4882a593Smuzhiyun struct i2400m_pl_edata_hdr { 227*4882a593Smuzhiyun __le32 reorder; /* bits defined in i2400m_ro */ 228*4882a593Smuzhiyun __u8 cs; 229*4882a593Smuzhiyun __u8 reserved[11]; 230*4882a593Smuzhiyun } __attribute__((packed)); 231*4882a593Smuzhiyun 232*4882a593Smuzhiyun enum i2400m_cs { 233*4882a593Smuzhiyun I2400M_CS_IPV4_0 = 0, 234*4882a593Smuzhiyun I2400M_CS_IPV4 = 2, 235*4882a593Smuzhiyun }; 236*4882a593Smuzhiyun 237*4882a593Smuzhiyun enum i2400m_ro { 238*4882a593Smuzhiyun I2400M_RO_NEEDED = 0x01, 239*4882a593Smuzhiyun I2400M_RO_TYPE = 0x03, 240*4882a593Smuzhiyun I2400M_RO_TYPE_SHIFT = 1, 241*4882a593Smuzhiyun I2400M_RO_CIN = 0x0f, 242*4882a593Smuzhiyun I2400M_RO_CIN_SHIFT = 4, 243*4882a593Smuzhiyun I2400M_RO_FBN = 0x07ff, 244*4882a593Smuzhiyun I2400M_RO_FBN_SHIFT = 8, 245*4882a593Smuzhiyun I2400M_RO_SN = 0x07ff, 246*4882a593Smuzhiyun I2400M_RO_SN_SHIFT = 21, 247*4882a593Smuzhiyun }; 248*4882a593Smuzhiyun 249*4882a593Smuzhiyun enum i2400m_ro_type { 250*4882a593Smuzhiyun I2400M_RO_TYPE_RESET = 0, 251*4882a593Smuzhiyun I2400M_RO_TYPE_PACKET, 252*4882a593Smuzhiyun I2400M_RO_TYPE_WS, 253*4882a593Smuzhiyun I2400M_RO_TYPE_PACKET_WS, 254*4882a593Smuzhiyun }; 255*4882a593Smuzhiyun 256*4882a593Smuzhiyun 257*4882a593Smuzhiyun /* Misc constants */ 258*4882a593Smuzhiyun enum { 259*4882a593Smuzhiyun I2400M_PL_ALIGN = 16, /* Payload data size alignment */ 260*4882a593Smuzhiyun I2400M_PL_SIZE_MAX = 0x3EFF, 261*4882a593Smuzhiyun I2400M_MAX_PLS_IN_MSG = 60, 262*4882a593Smuzhiyun /* protocol barkers: sync sequences; for notifications they 263*4882a593Smuzhiyun * are sent in groups of four. */ 264*4882a593Smuzhiyun I2400M_H2D_PREVIEW_BARKER = 0xcafe900d, 265*4882a593Smuzhiyun I2400M_COLD_RESET_BARKER = 0xc01dc01d, 266*4882a593Smuzhiyun I2400M_WARM_RESET_BARKER = 0x50f750f7, 267*4882a593Smuzhiyun I2400M_NBOOT_BARKER = 0xdeadbeef, 268*4882a593Smuzhiyun I2400M_SBOOT_BARKER = 0x0ff1c1a1, 269*4882a593Smuzhiyun I2400M_SBOOT_BARKER_6050 = 0x80000001, 270*4882a593Smuzhiyun I2400M_ACK_BARKER = 0xfeedbabe, 271*4882a593Smuzhiyun I2400M_D2H_MSG_BARKER = 0xbeefbabe, 272*4882a593Smuzhiyun }; 273*4882a593Smuzhiyun 274*4882a593Smuzhiyun 275*4882a593Smuzhiyun /* 276*4882a593Smuzhiyun * Hardware payload descriptor 277*4882a593Smuzhiyun * 278*4882a593Smuzhiyun * Bitfields encoded in a struct to enforce typing semantics. 279*4882a593Smuzhiyun * 280*4882a593Smuzhiyun * Look in rx.c and tx.c for a full description of the format. 281*4882a593Smuzhiyun */ 282*4882a593Smuzhiyun struct i2400m_pld { 283*4882a593Smuzhiyun __le32 val; 284*4882a593Smuzhiyun } __attribute__ ((packed)); 285*4882a593Smuzhiyun 286*4882a593Smuzhiyun #define I2400M_PLD_SIZE_MASK 0x00003fff 287*4882a593Smuzhiyun #define I2400M_PLD_TYPE_SHIFT 16 288*4882a593Smuzhiyun #define I2400M_PLD_TYPE_MASK 0x000f0000 289*4882a593Smuzhiyun 290*4882a593Smuzhiyun /* 291*4882a593Smuzhiyun * Header for a TX message or RX message 292*4882a593Smuzhiyun * 293*4882a593Smuzhiyun * @barker: preamble 294*4882a593Smuzhiyun * @size: used for management of the FIFO queue buffer; before 295*4882a593Smuzhiyun * sending, this is converted to be a real preamble. This 296*4882a593Smuzhiyun * indicates the real size of the TX message that starts at this 297*4882a593Smuzhiyun * point. If the highest bit is set, then this message is to be 298*4882a593Smuzhiyun * skipped. 299*4882a593Smuzhiyun * @sequence: sequence number of this message 300*4882a593Smuzhiyun * @offset: offset where the message itself starts -- see the comments 301*4882a593Smuzhiyun * in the file header about message header and payload descriptor 302*4882a593Smuzhiyun * alignment. 303*4882a593Smuzhiyun * @num_pls: number of payloads in this message 304*4882a593Smuzhiyun * @padding: amount of padding bytes at the end of the message to make 305*4882a593Smuzhiyun * it be of block-size aligned 306*4882a593Smuzhiyun * 307*4882a593Smuzhiyun * Look in rx.c and tx.c for a full description of the format. 308*4882a593Smuzhiyun */ 309*4882a593Smuzhiyun struct i2400m_msg_hdr { 310*4882a593Smuzhiyun union { 311*4882a593Smuzhiyun __le32 barker; 312*4882a593Smuzhiyun __u32 size; /* same size type as barker!! */ 313*4882a593Smuzhiyun }; 314*4882a593Smuzhiyun union { 315*4882a593Smuzhiyun __le32 sequence; 316*4882a593Smuzhiyun __u32 offset; /* same size type as barker!! */ 317*4882a593Smuzhiyun }; 318*4882a593Smuzhiyun __le16 num_pls; 319*4882a593Smuzhiyun __le16 rsv1; 320*4882a593Smuzhiyun __le16 padding; 321*4882a593Smuzhiyun __le16 rsv2; 322*4882a593Smuzhiyun struct i2400m_pld pld[0]; 323*4882a593Smuzhiyun } __attribute__ ((packed)); 324*4882a593Smuzhiyun 325*4882a593Smuzhiyun 326*4882a593Smuzhiyun 327*4882a593Smuzhiyun /* 328*4882a593Smuzhiyun * L3/L4 control protocol 329*4882a593Smuzhiyun */ 330*4882a593Smuzhiyun 331*4882a593Smuzhiyun enum { 332*4882a593Smuzhiyun /* Interface version */ 333*4882a593Smuzhiyun I2400M_L3L4_VERSION = 0x0100, 334*4882a593Smuzhiyun }; 335*4882a593Smuzhiyun 336*4882a593Smuzhiyun /* Message types */ 337*4882a593Smuzhiyun enum i2400m_mt { 338*4882a593Smuzhiyun I2400M_MT_RESERVED = 0x0000, 339*4882a593Smuzhiyun I2400M_MT_INVALID = 0xffff, 340*4882a593Smuzhiyun I2400M_MT_REPORT_MASK = 0x8000, 341*4882a593Smuzhiyun 342*4882a593Smuzhiyun I2400M_MT_GET_SCAN_RESULT = 0x4202, 343*4882a593Smuzhiyun I2400M_MT_SET_SCAN_PARAM = 0x4402, 344*4882a593Smuzhiyun I2400M_MT_CMD_RF_CONTROL = 0x4602, 345*4882a593Smuzhiyun I2400M_MT_CMD_SCAN = 0x4603, 346*4882a593Smuzhiyun I2400M_MT_CMD_CONNECT = 0x4604, 347*4882a593Smuzhiyun I2400M_MT_CMD_DISCONNECT = 0x4605, 348*4882a593Smuzhiyun I2400M_MT_CMD_EXIT_IDLE = 0x4606, 349*4882a593Smuzhiyun I2400M_MT_GET_LM_VERSION = 0x5201, 350*4882a593Smuzhiyun I2400M_MT_GET_DEVICE_INFO = 0x5202, 351*4882a593Smuzhiyun I2400M_MT_GET_LINK_STATUS = 0x5203, 352*4882a593Smuzhiyun I2400M_MT_GET_STATISTICS = 0x5204, 353*4882a593Smuzhiyun I2400M_MT_GET_STATE = 0x5205, 354*4882a593Smuzhiyun I2400M_MT_GET_MEDIA_STATUS = 0x5206, 355*4882a593Smuzhiyun I2400M_MT_SET_INIT_CONFIG = 0x5404, 356*4882a593Smuzhiyun I2400M_MT_CMD_INIT = 0x5601, 357*4882a593Smuzhiyun I2400M_MT_CMD_TERMINATE = 0x5602, 358*4882a593Smuzhiyun I2400M_MT_CMD_MODE_OF_OP = 0x5603, 359*4882a593Smuzhiyun I2400M_MT_CMD_RESET_DEVICE = 0x5604, 360*4882a593Smuzhiyun I2400M_MT_CMD_MONITOR_CONTROL = 0x5605, 361*4882a593Smuzhiyun I2400M_MT_CMD_ENTER_POWERSAVE = 0x5606, 362*4882a593Smuzhiyun I2400M_MT_GET_TLS_OPERATION_RESULT = 0x6201, 363*4882a593Smuzhiyun I2400M_MT_SET_EAP_SUCCESS = 0x6402, 364*4882a593Smuzhiyun I2400M_MT_SET_EAP_FAIL = 0x6403, 365*4882a593Smuzhiyun I2400M_MT_SET_EAP_KEY = 0x6404, 366*4882a593Smuzhiyun I2400M_MT_CMD_SEND_EAP_RESPONSE = 0x6602, 367*4882a593Smuzhiyun I2400M_MT_REPORT_SCAN_RESULT = 0xc002, 368*4882a593Smuzhiyun I2400M_MT_REPORT_STATE = 0xd002, 369*4882a593Smuzhiyun I2400M_MT_REPORT_POWERSAVE_READY = 0xd005, 370*4882a593Smuzhiyun I2400M_MT_REPORT_EAP_REQUEST = 0xe002, 371*4882a593Smuzhiyun I2400M_MT_REPORT_EAP_RESTART = 0xe003, 372*4882a593Smuzhiyun I2400M_MT_REPORT_ALT_ACCEPT = 0xe004, 373*4882a593Smuzhiyun I2400M_MT_REPORT_KEY_REQUEST = 0xe005, 374*4882a593Smuzhiyun }; 375*4882a593Smuzhiyun 376*4882a593Smuzhiyun 377*4882a593Smuzhiyun /* 378*4882a593Smuzhiyun * Message Ack Status codes 379*4882a593Smuzhiyun * 380*4882a593Smuzhiyun * When a message is replied-to, this status is reported. 381*4882a593Smuzhiyun */ 382*4882a593Smuzhiyun enum i2400m_ms { 383*4882a593Smuzhiyun I2400M_MS_DONE_OK = 0, 384*4882a593Smuzhiyun I2400M_MS_DONE_IN_PROGRESS = 1, 385*4882a593Smuzhiyun I2400M_MS_INVALID_OP = 2, 386*4882a593Smuzhiyun I2400M_MS_BAD_STATE = 3, 387*4882a593Smuzhiyun I2400M_MS_ILLEGAL_VALUE = 4, 388*4882a593Smuzhiyun I2400M_MS_MISSING_PARAMS = 5, 389*4882a593Smuzhiyun I2400M_MS_VERSION_ERROR = 6, 390*4882a593Smuzhiyun I2400M_MS_ACCESSIBILITY_ERROR = 7, 391*4882a593Smuzhiyun I2400M_MS_BUSY = 8, 392*4882a593Smuzhiyun I2400M_MS_CORRUPTED_TLV = 9, 393*4882a593Smuzhiyun I2400M_MS_UNINITIALIZED = 10, 394*4882a593Smuzhiyun I2400M_MS_UNKNOWN_ERROR = 11, 395*4882a593Smuzhiyun I2400M_MS_PRODUCTION_ERROR = 12, 396*4882a593Smuzhiyun I2400M_MS_NO_RF = 13, 397*4882a593Smuzhiyun I2400M_MS_NOT_READY_FOR_POWERSAVE = 14, 398*4882a593Smuzhiyun I2400M_MS_THERMAL_CRITICAL = 15, 399*4882a593Smuzhiyun I2400M_MS_MAX 400*4882a593Smuzhiyun }; 401*4882a593Smuzhiyun 402*4882a593Smuzhiyun 403*4882a593Smuzhiyun /** 404*4882a593Smuzhiyun * i2400m_tlv - enumeration of the different types of TLVs 405*4882a593Smuzhiyun * 406*4882a593Smuzhiyun * TLVs stand for type-length-value and are the header for a payload 407*4882a593Smuzhiyun * composed of almost anything. Each payload has a type assigned 408*4882a593Smuzhiyun * and a length. 409*4882a593Smuzhiyun */ 410*4882a593Smuzhiyun enum i2400m_tlv { 411*4882a593Smuzhiyun I2400M_TLV_L4_MESSAGE_VERSIONS = 129, 412*4882a593Smuzhiyun I2400M_TLV_SYSTEM_STATE = 141, 413*4882a593Smuzhiyun I2400M_TLV_MEDIA_STATUS = 161, 414*4882a593Smuzhiyun I2400M_TLV_RF_OPERATION = 162, 415*4882a593Smuzhiyun I2400M_TLV_RF_STATUS = 163, 416*4882a593Smuzhiyun I2400M_TLV_DEVICE_RESET_TYPE = 132, 417*4882a593Smuzhiyun I2400M_TLV_CONFIG_IDLE_PARAMETERS = 601, 418*4882a593Smuzhiyun I2400M_TLV_CONFIG_IDLE_TIMEOUT = 611, 419*4882a593Smuzhiyun I2400M_TLV_CONFIG_D2H_DATA_FORMAT = 614, 420*4882a593Smuzhiyun I2400M_TLV_CONFIG_DL_HOST_REORDER = 615, 421*4882a593Smuzhiyun }; 422*4882a593Smuzhiyun 423*4882a593Smuzhiyun 424*4882a593Smuzhiyun struct i2400m_tlv_hdr { 425*4882a593Smuzhiyun __le16 type; 426*4882a593Smuzhiyun __le16 length; /* payload's */ 427*4882a593Smuzhiyun __u8 pl[0]; 428*4882a593Smuzhiyun } __attribute__((packed)); 429*4882a593Smuzhiyun 430*4882a593Smuzhiyun 431*4882a593Smuzhiyun struct i2400m_l3l4_hdr { 432*4882a593Smuzhiyun __le16 type; 433*4882a593Smuzhiyun __le16 length; /* payload's */ 434*4882a593Smuzhiyun __le16 version; 435*4882a593Smuzhiyun __le16 resv1; 436*4882a593Smuzhiyun __le16 status; 437*4882a593Smuzhiyun __le16 resv2; 438*4882a593Smuzhiyun struct i2400m_tlv_hdr pl[0]; 439*4882a593Smuzhiyun } __attribute__((packed)); 440*4882a593Smuzhiyun 441*4882a593Smuzhiyun 442*4882a593Smuzhiyun /** 443*4882a593Smuzhiyun * i2400m_system_state - different states of the device 444*4882a593Smuzhiyun */ 445*4882a593Smuzhiyun enum i2400m_system_state { 446*4882a593Smuzhiyun I2400M_SS_UNINITIALIZED = 1, 447*4882a593Smuzhiyun I2400M_SS_INIT, 448*4882a593Smuzhiyun I2400M_SS_READY, 449*4882a593Smuzhiyun I2400M_SS_SCAN, 450*4882a593Smuzhiyun I2400M_SS_STANDBY, 451*4882a593Smuzhiyun I2400M_SS_CONNECTING, 452*4882a593Smuzhiyun I2400M_SS_WIMAX_CONNECTED, 453*4882a593Smuzhiyun I2400M_SS_DATA_PATH_CONNECTED, 454*4882a593Smuzhiyun I2400M_SS_IDLE, 455*4882a593Smuzhiyun I2400M_SS_DISCONNECTING, 456*4882a593Smuzhiyun I2400M_SS_OUT_OF_ZONE, 457*4882a593Smuzhiyun I2400M_SS_SLEEPACTIVE, 458*4882a593Smuzhiyun I2400M_SS_PRODUCTION, 459*4882a593Smuzhiyun I2400M_SS_CONFIG, 460*4882a593Smuzhiyun I2400M_SS_RF_OFF, 461*4882a593Smuzhiyun I2400M_SS_RF_SHUTDOWN, 462*4882a593Smuzhiyun I2400M_SS_DEVICE_DISCONNECT, 463*4882a593Smuzhiyun I2400M_SS_MAX, 464*4882a593Smuzhiyun }; 465*4882a593Smuzhiyun 466*4882a593Smuzhiyun 467*4882a593Smuzhiyun /** 468*4882a593Smuzhiyun * i2400m_tlv_system_state - report on the state of the system 469*4882a593Smuzhiyun * 470*4882a593Smuzhiyun * @state: see enum i2400m_system_state 471*4882a593Smuzhiyun */ 472*4882a593Smuzhiyun struct i2400m_tlv_system_state { 473*4882a593Smuzhiyun struct i2400m_tlv_hdr hdr; 474*4882a593Smuzhiyun __le32 state; 475*4882a593Smuzhiyun } __attribute__((packed)); 476*4882a593Smuzhiyun 477*4882a593Smuzhiyun 478*4882a593Smuzhiyun struct i2400m_tlv_l4_message_versions { 479*4882a593Smuzhiyun struct i2400m_tlv_hdr hdr; 480*4882a593Smuzhiyun __le16 major; 481*4882a593Smuzhiyun __le16 minor; 482*4882a593Smuzhiyun __le16 branch; 483*4882a593Smuzhiyun __le16 reserved; 484*4882a593Smuzhiyun } __attribute__((packed)); 485*4882a593Smuzhiyun 486*4882a593Smuzhiyun 487*4882a593Smuzhiyun struct i2400m_tlv_detailed_device_info { 488*4882a593Smuzhiyun struct i2400m_tlv_hdr hdr; 489*4882a593Smuzhiyun __u8 reserved1[400]; 490*4882a593Smuzhiyun __u8 mac_address[ETH_ALEN]; 491*4882a593Smuzhiyun __u8 reserved2[2]; 492*4882a593Smuzhiyun } __attribute__((packed)); 493*4882a593Smuzhiyun 494*4882a593Smuzhiyun 495*4882a593Smuzhiyun enum i2400m_rf_switch_status { 496*4882a593Smuzhiyun I2400M_RF_SWITCH_ON = 1, 497*4882a593Smuzhiyun I2400M_RF_SWITCH_OFF = 2, 498*4882a593Smuzhiyun }; 499*4882a593Smuzhiyun 500*4882a593Smuzhiyun struct i2400m_tlv_rf_switches_status { 501*4882a593Smuzhiyun struct i2400m_tlv_hdr hdr; 502*4882a593Smuzhiyun __u8 sw_rf_switch; /* 1 ON, 2 OFF */ 503*4882a593Smuzhiyun __u8 hw_rf_switch; /* 1 ON, 2 OFF */ 504*4882a593Smuzhiyun __u8 reserved[2]; 505*4882a593Smuzhiyun } __attribute__((packed)); 506*4882a593Smuzhiyun 507*4882a593Smuzhiyun 508*4882a593Smuzhiyun enum { 509*4882a593Smuzhiyun i2400m_rf_operation_on = 1, 510*4882a593Smuzhiyun i2400m_rf_operation_off = 2 511*4882a593Smuzhiyun }; 512*4882a593Smuzhiyun 513*4882a593Smuzhiyun struct i2400m_tlv_rf_operation { 514*4882a593Smuzhiyun struct i2400m_tlv_hdr hdr; 515*4882a593Smuzhiyun __le32 status; /* 1 ON, 2 OFF */ 516*4882a593Smuzhiyun } __attribute__((packed)); 517*4882a593Smuzhiyun 518*4882a593Smuzhiyun 519*4882a593Smuzhiyun enum i2400m_tlv_reset_type { 520*4882a593Smuzhiyun I2400M_RESET_TYPE_COLD = 1, 521*4882a593Smuzhiyun I2400M_RESET_TYPE_WARM 522*4882a593Smuzhiyun }; 523*4882a593Smuzhiyun 524*4882a593Smuzhiyun struct i2400m_tlv_device_reset_type { 525*4882a593Smuzhiyun struct i2400m_tlv_hdr hdr; 526*4882a593Smuzhiyun __le32 reset_type; 527*4882a593Smuzhiyun } __attribute__((packed)); 528*4882a593Smuzhiyun 529*4882a593Smuzhiyun 530*4882a593Smuzhiyun struct i2400m_tlv_config_idle_parameters { 531*4882a593Smuzhiyun struct i2400m_tlv_hdr hdr; 532*4882a593Smuzhiyun __le32 idle_timeout; /* 100 to 300000 ms [5min], 100 increments 533*4882a593Smuzhiyun * 0 disabled */ 534*4882a593Smuzhiyun __le32 idle_paging_interval; /* frames */ 535*4882a593Smuzhiyun } __attribute__((packed)); 536*4882a593Smuzhiyun 537*4882a593Smuzhiyun 538*4882a593Smuzhiyun enum i2400m_media_status { 539*4882a593Smuzhiyun I2400M_MEDIA_STATUS_LINK_UP = 1, 540*4882a593Smuzhiyun I2400M_MEDIA_STATUS_LINK_DOWN, 541*4882a593Smuzhiyun I2400M_MEDIA_STATUS_LINK_RENEW, 542*4882a593Smuzhiyun }; 543*4882a593Smuzhiyun 544*4882a593Smuzhiyun struct i2400m_tlv_media_status { 545*4882a593Smuzhiyun struct i2400m_tlv_hdr hdr; 546*4882a593Smuzhiyun __le32 media_status; 547*4882a593Smuzhiyun } __attribute__((packed)); 548*4882a593Smuzhiyun 549*4882a593Smuzhiyun 550*4882a593Smuzhiyun /* New in v1.4 */ 551*4882a593Smuzhiyun struct i2400m_tlv_config_idle_timeout { 552*4882a593Smuzhiyun struct i2400m_tlv_hdr hdr; 553*4882a593Smuzhiyun __le32 timeout; /* 100 to 300000 ms [5min], 100 increments 554*4882a593Smuzhiyun * 0 disabled */ 555*4882a593Smuzhiyun } __attribute__((packed)); 556*4882a593Smuzhiyun 557*4882a593Smuzhiyun /* New in v1.4 -- for backward compat, will be removed */ 558*4882a593Smuzhiyun struct i2400m_tlv_config_d2h_data_format { 559*4882a593Smuzhiyun struct i2400m_tlv_hdr hdr; 560*4882a593Smuzhiyun __u8 format; /* 0 old format, 1 enhanced */ 561*4882a593Smuzhiyun __u8 reserved[3]; 562*4882a593Smuzhiyun } __attribute__((packed)); 563*4882a593Smuzhiyun 564*4882a593Smuzhiyun /* New in v1.4 */ 565*4882a593Smuzhiyun struct i2400m_tlv_config_dl_host_reorder { 566*4882a593Smuzhiyun struct i2400m_tlv_hdr hdr; 567*4882a593Smuzhiyun __u8 reorder; /* 0 disabled, 1 enabled */ 568*4882a593Smuzhiyun __u8 reserved[3]; 569*4882a593Smuzhiyun } __attribute__((packed)); 570*4882a593Smuzhiyun 571*4882a593Smuzhiyun 572*4882a593Smuzhiyun #endif /* #ifndef __LINUX__WIMAX__I2400M_H__ */ 573