io_edgeport.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /************************************************************************
  2.  *
  3.  * io_edgeport.h Edgeport Linux Interface definitions
  4.  *
  5.  * Copyright (c) 2000 Inside Out Networks, Inc.
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation; either version 2 of the License, or
  10.  * (at your option) any later version.
  11.  *
  12.  *
  13.  ************************************************************************/
  14. #if !defined(_IO_EDGEPORT_H_)
  15. #define _IO_EDGEPORT_H_
  16. #define MAX_RS232_PORTS 8 /* Max # of RS-232 ports per device */
  17. /* typedefs that the insideout headers need */
  18. #ifndef TRUE
  19. #define TRUE (1)
  20. #endif
  21. #ifndef FALSE
  22. #define FALSE (0)
  23. #endif
  24. #ifndef LOW8
  25. #define LOW8(a) ((unsigned char)(a & 0xff))
  26. #endif
  27. #ifndef HIGH8
  28. #define HIGH8(a) ((unsigned char)((a & 0xff00) >> 8))
  29. #endif
  30. #ifndef NUM_ENTRIES
  31. #define NUM_ENTRIES(x) (sizeof(x)/sizeof((x)[0]))
  32. #endif
  33. #ifndef __KERNEL__
  34. #define __KERNEL__
  35. #endif
  36. #include "io_usbvend.h"
  37. /* The following table is used to map the USBx port number to 
  38.  * the device serial number (or physical USB path), */
  39. #define MAX_EDGEPORTS 64
  40. struct comMapper {
  41. char SerialNumber[MAX_SERIALNUMBER_LEN+1]; /* Serial number/usb path */
  42. int numPorts;         /* Number of ports */
  43. int Original[MAX_RS232_PORTS];         /* Port numbers set by IOCTL */
  44. int Port[MAX_RS232_PORTS];         /* Actual used port numbers */
  45. };
  46. #define EDGEPORT_CONFIG_DEVICE "/proc/edgeport"
  47. /* /proc/edgeport Interface
  48.  * This interface uses read/write/lseek interface to talk to the edgeport driver
  49.  * the following read functions are supported: */
  50. #define PROC_GET_MAPPING_TO_PATH  1
  51. #define PROC_GET_COM_ENTRY 2
  52. #define PROC_GET_EDGE_MANUF_DESCRIPTOR 3
  53. #define PROC_GET_BOOT_DESCRIPTOR 4
  54. #define PROC_GET_PRODUCT_INFO 5
  55. #define PROC_GET_STRINGS 6
  56. #define PROC_GET_CURRENT_COM_MAPPING 7
  57. /* The parameters to the lseek() for the read is: */
  58. #define PROC_READ_SETUP(Command, Argument) ((Command) + ((Argument)<<8))
  59. /* the following write functions are supported: */
  60. #define PROC_SET_COM_MAPPING  1
  61. #define PROC_SET_COM_ENTRY 2
  62. /* The following sturcture is passed to the write */
  63. struct procWrite {
  64. int Command;
  65. union {
  66. struct comMapper Entry;
  67. int ComMappingBasedOnUSBPort; /* Boolean value */
  68. } u;
  69. };
  70. /*
  71.  * Product information read from the Edgeport
  72.  */
  73. struct edgeport_product_info {
  74. __u16 ProductId; /* Product Identifier */
  75. __u8 NumPorts; /* Number of ports on edgeport */
  76. __u8 ProdInfoVer; /* What version of structure is this? */
  77. __u32 IsServer        :1; /* Set if Server */
  78. __u32 IsRS232         :1; /* Set if RS-232 ports exist */
  79. __u32 IsRS422         :1; /* Set if RS-422 ports exist */
  80. __u32 IsRS485         :1; /* Set if RS-485 ports exist */
  81. __u32 IsReserved      :28; /* Reserved for later expansion */
  82. __u8 RomSize; /* Size of ROM/E2PROM in K */
  83. __u8 RamSize; /* Size of external RAM in K */
  84. __u8 CpuRev; /* CPU revision level (chg only if s/w visible) */
  85. __u8 BoardRev; /* PCB revision level (chg only if s/w visible) */
  86. __u8 BootMajorVersion; /* Boot Firmware version: xx. */
  87. __u8 BootMinorVersion; /*       yy. */
  88. __u16 BootBuildNumber; /*          zzzz (LE format) */
  89. __u8 FirmwareMajorVersion; /* Operational Firmware version:xx. */
  90. __u8 FirmwareMinorVersion; /* yy. */
  91. __u16 FirmwareBuildNumber; /* zzzz (LE format) */
  92. __u8 ManufactureDescDate[3]; /* MM/DD/YY when descriptor template was compiled */
  93. __u8 Unused1[1]; /* Available */
  94. __u8 iDownloadFile; /* What to download to EPiC device */
  95. __u8 Unused2[2]; /* Available */
  96. };
  97. /*
  98.  * Edgeport Stringblock String locations
  99.  */
  100. #define EDGESTRING_MANUFNAME 1 /* Manufacture Name */
  101. #define EDGESTRING_PRODNAME 2 /* Product Name */
  102. #define EDGESTRING_SERIALNUM 3 /* Serial Number */
  103. #define EDGESTRING_ASSEMNUM 4 /* Assembly Number */
  104. #define EDGESTRING_OEMASSEMNUM 5 /* OEM Assembly Number */
  105. #define EDGESTRING_MANUFDATE 6 /* Manufacture Date */
  106. #define EDGESTRING_ORIGSERIALNUM 7 /* Serial Number */
  107. struct string_block {
  108. __u16 NumStrings; /* Number of strings in block */
  109. __u16 Strings[1]; /* Start of string block */
  110. };
  111. #endif