Home | History | Annotate | Download | only in inc
      1 /****************************************************************************
      2 **+-----------------------------------------------------------------------+**
      3 **|                                                                       |**
      4 **| Copyright(c) 1998 - 2008 Texas Instruments. All rights reserved.      |**
      5 **| All rights reserved.                                                  |**
      6 **|                                                                       |**
      7 **| Redistribution and use in source and binary forms, with or without    |**
      8 **| modification, are permitted provided that the following conditions    |**
      9 **| are met:                                                              |**
     10 **|                                                                       |**
     11 **|  * Redistributions of source code must retain the above copyright     |**
     12 **|    notice, this list of conditions and the following disclaimer.      |**
     13 **|  * Redistributions in binary form must reproduce the above copyright  |**
     14 **|    notice, this list of conditions and the following disclaimer in    |**
     15 **|    the documentation and/or other materials provided with the         |**
     16 **|    distribution.                                                      |**
     17 **|  * Neither the name Texas Instruments nor the names of its            |**
     18 **|    contributors may be used to endorse or promote products derived    |**
     19 **|    from this software without specific prior written permission.      |**
     20 **|                                                                       |**
     21 **| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS   |**
     22 **| "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT     |**
     23 **| LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |**
     24 **| A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT  |**
     25 **| OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |**
     26 **| SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT      |**
     27 **| LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |**
     28 **| DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |**
     29 **| THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT   |**
     30 **| (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |**
     31 **| OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  |**
     32 **|                                                                       |**
     33 **+-----------------------------------------------------------------------+**
     34 ****************************************************************************/
     35 
     36 #ifndef TI1610_IOCTL_COMMON_H
     37 #define TI1610_IOCTL_COMMON_H
     38 
     39 #include "osTIType.h"
     40 
     41 #ifndef SIZE_ARR
     42 #define SIZE_ARR(a)    (sizeof(a)/sizeof(a[0]))
     43 #endif
     44 
     45 
     46 typedef struct
     47 {
     48     tiUINT32 func_id;
     49     void *optional_param;
     50 } hal_print_param_t;
     51 
     52 #define IOCTL_GET    1
     53 #define IOCTL_SET    2
     54 #define IOCTL_SETGET 3
     55 
     56 typedef struct
     57 {
     58     ULONG cmd;
     59     ULONG cmd_type; /* IOCTL_SET or IOCTL_GET */
     60     ULONG length;
     61     ULONG user_data_pointer;    /* pointer to data or data if length <= sizeof(ULONG) */
     62 } tiioctl_req_t;
     63 
     64 
     65 /* TIWLN_SET_INIT_INFO request parameter
     66  */
     67 typedef struct
     68 {
     69   tiUINT32 eeprom_image_length;
     70   tiUINT32 firmware_image_length;
     71   tiUINT32 init_file_length;
     72   /* eeprom image follows */
     73   char data[1];
     74   /* firmware image follows */
     75   /* init file follows */
     76 } tiwlan_dev_init_t;
     77 
     78 #endif /* TI1610_IOCTL_COMMON_H */
     79