wavelan.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:16k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * WaveLAN ISA driver
  3.  *
  4.  * Jean II - HPLB '96
  5.  *
  6.  * Reorganisation and extension of the driver.
  7.  * Original copyright follows. See wavelan.p.h for details.
  8.  *
  9.  * This file contains the declarations for the WaveLAN hardware. Note that
  10.  * the WaveLAN ISA includes a i82586 controller (see definitions in
  11.  * file i82586.h).
  12.  *
  13.  * The main difference between the ISA hardware and the PCMCIA one is
  14.  * the Ethernet controller (i82586 instead of i82593).
  15.  * The i82586 allows multiple transmit buffers.  The PSA needs to be accessed
  16.  * through the host interface.
  17.  */
  18. #ifndef _WAVELAN_H
  19. #define _WAVELAN_H
  20. /************************** MAGIC NUMBERS ***************************/
  21. /* Detection of the WaveLAN card is done by reading the MAC
  22.  * address from the card and checking it.  If you have a non-AT&T
  23.  * product (OEM, like DEC RoamAbout, Digital Ocean, or Epson),
  24.  * you might need to modify this part to accommodate your hardware.
  25.  */
  26. static const char MAC_ADDRESSES[][3] =
  27. {
  28.   { 0x08, 0x00, 0x0E }, /* AT&T WaveLAN (standard) & DEC RoamAbout */
  29.   { 0x08, 0x00, 0x6A }, /* AT&T WaveLAN (alternate) */
  30.   { 0x00, 0x00, 0xE1 }, /* Hitachi Wavelan */
  31.   { 0x00, 0x60, 0x1D } /* Lucent Wavelan (another one) */
  32.   /* Add your card here and send me the patch! */
  33. };
  34. #define WAVELAN_ADDR_SIZE 6 /* Size of a MAC address */
  35. #define WAVELAN_MTU 1500 /* Maximum size of WaveLAN packet */
  36. #define MAXDATAZ (WAVELAN_ADDR_SIZE + WAVELAN_ADDR_SIZE + 2 + WAVELAN_MTU)
  37. /*
  38.  * Constants used to convert channels to frequencies
  39.  */
  40. /* Frequency available in the 2.0 modem, in units of 250 kHz
  41.  * (as read in the offset register of the dac area).
  42.  * Used to map channel numbers used by `wfreqsel' to frequencies
  43.  */
  44. static const short channel_bands[] = { 0x30, 0x58, 0x64, 0x7A, 0x80, 0xA8,
  45.     0xD0, 0xF0, 0xF8, 0x150 };
  46. /* Frequencies of the 1.0 modem (fixed frequencies).
  47.  * Use to map the PSA `subband' to a frequency
  48.  * Note : all frequencies apart from the first one need to be multiplied by 10
  49.  */
  50. static const int fixed_bands[] = { 915e6, 2.425e8, 2.46e8, 2.484e8, 2.4305e8 };
  51. /*************************** PC INTERFACE ****************************/
  52. /*
  53.  * Host Adaptor structure.
  54.  * (base is board port address).
  55.  */
  56. typedef union hacs_u hacs_u;
  57. union hacs_u
  58. {
  59. unsigned short hu_command; /* Command register */
  60. #define HACR_RESET 0x0001 /* Reset board */
  61. #define HACR_CA 0x0002 /* Set Channel Attention for 82586 */
  62. #define HACR_16BITS 0x0004 /* 16-bit operation (0 => 8bits) */
  63. #define HACR_OUT0 0x0008 /* General purpose output pin 0 */
  64. /* not used - must be 1 */
  65. #define HACR_OUT1 0x0010 /* General purpose output pin 1 */
  66. /* not used - must be 1 */
  67. #define HACR_82586_INT_ENABLE 0x0020 /* Enable 82586 interrupts */
  68. #define HACR_MMC_INT_ENABLE 0x0040 /* Enable MMC interrupts */
  69. #define HACR_INTR_CLR_ENABLE 0x0080 /* Enable interrupt status read/clear */
  70. unsigned short hu_status; /* Status Register */
  71. #define HASR_82586_INTR 0x0001 /* Interrupt request from 82586 */
  72. #define HASR_MMC_INTR 0x0002 /* Interrupt request from MMC */
  73. #define HASR_MMC_BUSY 0x0004 /* MMC busy indication */
  74. #define HASR_PSA_BUSY 0x0008 /* LAN parameter storage area busy */
  75. };
  76. typedef struct ha_t ha_t;
  77. struct ha_t
  78. {
  79. hacs_u ha_cs; /* Command and status registers */
  80. #define  ha_command ha_cs.hu_command
  81. #define  ha_status ha_cs.hu_status
  82. unsigned short ha_mmcr; /* Modem Management Ctrl Register */
  83. unsigned short ha_pior0; /* Program I/O Address Register Port 0 */
  84. unsigned short ha_piop0; /* Program I/O Port 0 */
  85. unsigned short ha_pior1; /* Program I/O Address Register Port 1 */
  86. unsigned short ha_piop1; /* Program I/O Port 1 */
  87. unsigned short ha_pior2; /* Program I/O Address Register Port 2 */
  88. unsigned short ha_piop2; /* Program I/O Port 2 */
  89. };
  90. #define HA_SIZE 16
  91. #define hoff(p,f)  (unsigned short)((void *)(&((ha_t *)((void *)0 + (p)))->f) - (void *)0)
  92. #define HACR(p) hoff(p, ha_command)
  93. #define HASR(p) hoff(p, ha_status)
  94. #define MMCR(p) hoff(p, ha_mmcr)
  95. #define PIOR0(p) hoff(p, ha_pior0)
  96. #define PIOP0(p) hoff(p, ha_piop0)
  97. #define PIOR1(p) hoff(p, ha_pior1)
  98. #define PIOP1(p) hoff(p, ha_piop1)
  99. #define PIOR2(p) hoff(p, ha_pior2)
  100. #define PIOP2(p) hoff(p, ha_piop2)
  101. /*
  102.  * Program I/O Mode Register values.
  103.  */
  104. #define STATIC_PIO 0 /* Mode 1: static mode */
  105. /* RAM access ??? */
  106. #define AUTOINCR_PIO 1 /* Mode 2: auto increment mode */
  107. /* RAM access ??? */
  108. #define AUTODECR_PIO 2 /* Mode 3: auto decrement mode */
  109. /* RAM access ??? */
  110. #define PARAM_ACCESS_PIO 3 /* Mode 4: LAN parameter access mode */
  111. /* Parameter access. */
  112. #define PIO_MASK 3 /* register mask */
  113. #define PIOM(cmd,piono) ((u_short)cmd << 10 << (piono * 2))
  114. #define HACR_DEFAULT (HACR_OUT0 | HACR_OUT1 | HACR_16BITS | PIOM(STATIC_PIO, 0) | PIOM(AUTOINCR_PIO, 1) | PIOM(PARAM_ACCESS_PIO, 2))
  115. #define HACR_INTRON (HACR_82586_INT_ENABLE | HACR_MMC_INT_ENABLE | HACR_INTR_CLR_ENABLE)
  116. /************************** MEMORY LAYOUT **************************/
  117. /*
  118.  * Onboard 64 k RAM layout.
  119.  * (Offsets from 0x0000.)
  120.  */
  121. #define OFFSET_RU 0x0000 /* 75% memory */
  122. #define OFFSET_CU 0xC000 /* 25% memory */
  123. #define OFFSET_SCB (OFFSET_ISCP - sizeof(scb_t))
  124. #define OFFSET_ISCP (OFFSET_SCP - sizeof(iscp_t))
  125. #define OFFSET_SCP I82586_SCP_ADDR
  126. #define RXBLOCKZ (sizeof(fd_t) + sizeof(rbd_t) + MAXDATAZ)
  127. #define TXBLOCKZ (sizeof(ac_tx_t) + sizeof(ac_nop_t) + sizeof(tbd_t) + MAXDATAZ)
  128. #define NRXBLOCKS ((OFFSET_CU - OFFSET_RU) / RXBLOCKZ)
  129. #define NTXBLOCKS ((OFFSET_SCB - OFFSET_CU) / TXBLOCKZ)
  130. /********************** PARAMETER STORAGE AREA **********************/
  131. /*
  132.  * Parameter Storage Area (PSA).
  133.  */
  134. typedef struct psa_t psa_t;
  135. struct psa_t
  136. {
  137.   unsigned char psa_io_base_addr_1; /* [0x00] Base address 1 ??? */
  138.   unsigned char psa_io_base_addr_2; /* [0x01] Base address 2 */
  139.   unsigned char psa_io_base_addr_3; /* [0x02] Base address 3 */
  140.   unsigned char psa_io_base_addr_4; /* [0x03] Base address 4 */
  141.   unsigned char psa_rem_boot_addr_1; /* [0x04] Remote Boot Address 1 */
  142.   unsigned char psa_rem_boot_addr_2; /* [0x05] Remote Boot Address 2 */
  143.   unsigned char psa_rem_boot_addr_3; /* [0x06] Remote Boot Address 3 */
  144.   unsigned char psa_holi_params; /* [0x07] HOst Lan Interface (HOLI) Parameters */
  145.   unsigned char psa_int_req_no; /* [0x08] Interrupt Request Line */
  146.   unsigned char psa_unused0[7]; /* [0x09-0x0F] unused */
  147.   unsigned char psa_univ_mac_addr[WAVELAN_ADDR_SIZE]; /* [0x10-0x15] Universal (factory) MAC Address */
  148.   unsigned char psa_local_mac_addr[WAVELAN_ADDR_SIZE]; /* [0x16-1B] Local MAC Address */
  149.   unsigned char psa_univ_local_sel; /* [0x1C] Universal Local Selection */
  150. #define PSA_UNIVERSAL 0 /* Universal (factory) */
  151. #define PSA_LOCAL 1 /* Local */
  152.   unsigned char psa_comp_number; /* [0x1D] Compatibility Number:  */
  153. #define PSA_COMP_PC_AT_915 0  /* PC-AT 915 MHz   */
  154. #define PSA_COMP_PC_MC_915 1  /* PC-MC 915 MHz  */
  155. #define PSA_COMP_PC_AT_2400 2  /* PC-AT 2.4 GHz  */
  156. #define PSA_COMP_PC_MC_2400 3  /* PC-MC 2.4 GHz   */
  157. #define PSA_COMP_PCMCIA_915 4  /* PCMCIA 915 MHz or 2.0 */
  158.   unsigned char psa_thr_pre_set; /* [0x1E] Modem Threshold Preset */
  159.   unsigned char psa_feature_select; /* [0x1F] Call code required (1=on) */
  160. #define PSA_FEATURE_CALL_CODE 0x01  /* Call code required (Japan) */
  161.   unsigned char psa_subband; /* [0x20] Subband   */
  162. #define PSA_SUBBAND_915 0 /* 915 MHz or 2.0 */
  163. #define PSA_SUBBAND_2425 1 /* 2425 MHz   */
  164. #define PSA_SUBBAND_2460 2 /* 2460 MHz   */
  165. #define PSA_SUBBAND_2484 3 /* 2484 MHz   */
  166. #define PSA_SUBBAND_2430_5 4 /* 2430.5 MHz   */
  167.   unsigned char psa_quality_thr; /* [0x21] Modem Quality Threshold */
  168.   unsigned char psa_mod_delay; /* [0x22] Modem Delay (?) (reserved) */
  169.   unsigned char psa_nwid[2]; /* [0x23-0x24] Network ID */
  170.   unsigned char psa_nwid_select; /* [0x25] Network ID Select On/Off */
  171.   unsigned char psa_encryption_select; /* [0x26] Encryption On/Off */
  172.   unsigned char psa_encryption_key[8]; /* [0x27-0x2E] Encryption Key */
  173.   unsigned char psa_databus_width; /* [0x2F] AT bus width select 8/16 */
  174.   unsigned char psa_call_code[8]; /* [0x30-0x37] (Japan) Call Code */
  175.   unsigned char psa_nwid_prefix[2]; /* [0x38-0x39] Roaming domain */
  176.   unsigned char psa_reserved[2]; /* [0x3A-0x3B] Reserved - fixed 00 */
  177.   unsigned char psa_conf_status; /* [0x3C] Conf Status, bit 0=1:config*/
  178.   unsigned char psa_crc[2]; /* [0x3D] CRC-16 over PSA */
  179.   unsigned char psa_crc_status; /* [0x3F] CRC Valid Flag */
  180. };
  181. #define PSA_SIZE 64
  182. /* Calculate offset of a field in the above structure.
  183.  * Warning:  only even addresses are used. */
  184. #define psaoff(p,f)  ((unsigned short) ((void *)(&((psa_t *) ((void *) NULL + (p)))->f) - (void *) NULL))
  185. /******************** MODEM MANAGEMENT INTERFACE ********************/
  186. /*
  187.  * Modem Management Controller (MMC) write structure.
  188.  */
  189. typedef struct mmw_t mmw_t;
  190. struct mmw_t
  191. {
  192.   unsigned char mmw_encr_key[8]; /* encryption key */
  193.   unsigned char mmw_encr_enable; /* Enable or disable encryption. */
  194. #define MMW_ENCR_ENABLE_MODE 0x02 /* mode of security option */
  195. #define MMW_ENCR_ENABLE_EN 0x01 /* Enable security option. */
  196.   unsigned char mmw_unused0[1]; /* unused */
  197.   unsigned char mmw_des_io_invert; /* encryption option */
  198. #define MMW_DES_IO_INVERT_RES 0x0F /* reserved */
  199. #define MMW_DES_IO_INVERT_CTRL 0xF0 /* control (?) (set to 0) */
  200.   unsigned char mmw_unused1[5]; /* unused */
  201.   unsigned char mmw_loopt_sel; /* looptest selection */
  202. #define MMW_LOOPT_SEL_DIS_NWID 0x40 /* Disable NWID filtering. */
  203. #define MMW_LOOPT_SEL_INT 0x20 /* Activate Attention Request. */
  204. #define MMW_LOOPT_SEL_LS 0x10 /* looptest, no collision avoidance */
  205. #define MMW_LOOPT_SEL_LT3A 0x08 /* looptest 3a */
  206. #define MMW_LOOPT_SEL_LT3B 0x04 /* looptest 3b */
  207. #define MMW_LOOPT_SEL_LT3C 0x02 /* looptest 3c */
  208. #define MMW_LOOPT_SEL_LT3D 0x01 /* looptest 3d */
  209.   unsigned char mmw_jabber_enable; /* jabber timer enable */
  210.   /* Abort transmissions > 200 ms */
  211.   unsigned char mmw_freeze; /* freeze or unfreeze signal level */
  212.   /* 0 : signal level & qual updated for every new message, 1 : frozen */
  213.   unsigned char mmw_anten_sel; /* antenna selection */
  214. #define MMW_ANTEN_SEL_SEL 0x01 /* direct antenna selection */
  215. #define MMW_ANTEN_SEL_ALG_EN 0x02 /* antenna selection algo. enable */
  216.   unsigned char mmw_ifs; /* inter frame spacing */
  217.   /* min time between transmission in bit periods (.5 us) - bit 0 ignored */
  218.   unsigned char mmw_mod_delay;   /* modem delay (synchro) */
  219.   unsigned char mmw_jam_time; /* jamming time (after collision) */
  220.   unsigned char mmw_unused2[1]; /* unused */
  221.   unsigned char mmw_thr_pre_set; /* level threshold preset */
  222.   /* Discard all packet with signal < this value (4) */
  223.   unsigned char mmw_decay_prm; /* decay parameters */
  224.   unsigned char mmw_decay_updat_prm; /* decay update parameters */
  225.   unsigned char mmw_quality_thr; /* quality (z-quotient) threshold */
  226.   /* Discard all packet with quality < this value (3) */
  227.   unsigned char mmw_netw_id_l; /* NWID low order byte */
  228.   unsigned char mmw_netw_id_h; /* NWID high order byte */
  229.   /* Network ID or Domain : create virtual net on the air */
  230.   /* 2.0 Hardware extension - frequency selection support */
  231.   unsigned char mmw_mode_select; /* for analog tests (set to 0) */
  232.   unsigned char mmw_unused3[1]; /* unused */
  233.   unsigned char mmw_fee_ctrl; /* frequency EEPROM control */
  234. #define MMW_FEE_CTRL_PRE 0x10 /* Enable protected instructions. */
  235. #define MMW_FEE_CTRL_DWLD 0x08 /* Download EEPROM to mmc. */
  236. #define MMW_FEE_CTRL_CMD 0x07 /* EEPROM commands:  */
  237. #define MMW_FEE_CTRL_READ 0x06 /* Read */
  238. #define MMW_FEE_CTRL_WREN 0x04 /* Write enable */
  239. #define MMW_FEE_CTRL_WRITE 0x05 /* Write data to address. */
  240. #define MMW_FEE_CTRL_WRALL 0x04 /* Write data to all addresses. */
  241. #define MMW_FEE_CTRL_WDS 0x04 /* Write disable */
  242. #define MMW_FEE_CTRL_PRREAD 0x16 /* Read addr from protect register */
  243. #define MMW_FEE_CTRL_PREN 0x14 /* Protect register enable */
  244. #define MMW_FEE_CTRL_PRCLEAR 0x17 /* Unprotect all registers. */
  245. #define MMW_FEE_CTRL_PRWRITE 0x15 /* Write address in protect register */
  246. #define MMW_FEE_CTRL_PRDS 0x14 /* Protect register disable */
  247.   /* Never issue the PRDS command:  it's irreversible! */
  248.   unsigned char mmw_fee_addr; /* EEPROM address */
  249. #define MMW_FEE_ADDR_CHANNEL 0xF0 /* Select the channel. */
  250. #define MMW_FEE_ADDR_OFFSET 0x0F /* Offset in channel data */
  251. #define MMW_FEE_ADDR_EN 0xC0 /* FEE_CTRL enable operations */
  252. #define MMW_FEE_ADDR_DS 0x00 /* FEE_CTRL disable operations */
  253. #define MMW_FEE_ADDR_ALL 0x40 /* FEE_CTRL all operations */
  254. #define MMW_FEE_ADDR_CLEAR 0xFF /* FEE_CTRL clear operations */
  255.   unsigned char mmw_fee_data_l; /* Write data to EEPROM. */
  256.   unsigned char mmw_fee_data_h; /* high octet */
  257.   unsigned char mmw_ext_ant; /* Setting for external antenna */
  258. #define MMW_EXT_ANT_EXTANT 0x01 /* Select external antenna */
  259. #define MMW_EXT_ANT_POL 0x02 /* Polarity of the antenna */
  260. #define MMW_EXT_ANT_INTERNAL 0x00 /* Internal antenna */
  261. #define MMW_EXT_ANT_EXTERNAL 0x03 /* External antenna */
  262. #define MMW_EXT_ANT_IQ_TEST 0x1C /* IQ test pattern (set to 0) */
  263. };
  264. #define MMW_SIZE 37
  265. #define mmwoff(p,f)  (unsigned short)((void *)(&((mmw_t *)((void *)0 + (p)))->f) - (void *)0)
  266. /*
  267.  * Modem Management Controller (MMC) read structure.
  268.  */
  269. typedef struct mmr_t mmr_t;
  270. struct mmr_t
  271. {
  272.   unsigned char mmr_unused0[8]; /* unused */
  273.   unsigned char mmr_des_status; /* encryption status */
  274.   unsigned char mmr_des_avail; /* encryption available (0x55 read) */
  275. #define MMR_DES_AVAIL_DES 0x55 /* DES available */
  276. #define MMR_DES_AVAIL_AES 0x33 /* AES (AT&T) available */
  277.   unsigned char mmr_des_io_invert; /* des I/O invert register */
  278.   unsigned char mmr_unused1[5]; /* unused */
  279.   unsigned char mmr_dce_status; /* DCE status */
  280. #define MMR_DCE_STATUS_RX_BUSY 0x01 /* receiver busy */
  281. #define MMR_DCE_STATUS_LOOPT_IND 0x02 /* loop test indicated */
  282. #define MMR_DCE_STATUS_TX_BUSY 0x04 /* transmitter on */
  283. #define MMR_DCE_STATUS_JBR_EXPIRED 0x08 /* jabber timer expired */
  284. #define MMR_DCE_STATUS 0x0F /* mask to get the bits */
  285.   unsigned char mmr_dsp_id; /* DSP ID (AA = Daedalus rev A) */
  286.   unsigned char mmr_unused2[2]; /* unused */
  287.   unsigned char mmr_correct_nwid_l; /* # of correct NWIDs rxd (low) */
  288.   unsigned char mmr_correct_nwid_h; /* # of correct NWIDs rxd (high) */
  289.   /* Warning:  read high-order octet first! */
  290.   unsigned char mmr_wrong_nwid_l; /* # of wrong NWIDs rxd (low) */
  291.   unsigned char mmr_wrong_nwid_h; /* # of wrong NWIDs rxd (high) */
  292.   unsigned char mmr_thr_pre_set; /* level threshold preset */
  293. #define MMR_THR_PRE_SET 0x3F /* level threshold preset */
  294. #define MMR_THR_PRE_SET_CUR 0x80 /* Current signal above it */
  295.   unsigned char mmr_signal_lvl; /* signal level */
  296. #define MMR_SIGNAL_LVL 0x3F /* signal level */
  297. #define MMR_SIGNAL_LVL_VALID 0x80 /* Updated since last read */
  298.   unsigned char mmr_silence_lvl; /* silence level (noise) */
  299. #define MMR_SILENCE_LVL 0x3F /* silence level */
  300. #define MMR_SILENCE_LVL_VALID 0x80 /* Updated since last read */
  301.   unsigned char mmr_sgnl_qual; /* signal quality */
  302. #define MMR_SGNL_QUAL 0x0F /* signal quality */
  303. #define MMR_SGNL_QUAL_ANT 0x80 /* current antenna used */
  304.   unsigned char mmr_netw_id_l; /* NWID low order byte (?) */
  305.   unsigned char mmr_unused3[3]; /* unused */
  306.   /* 2.0 Hardware extension - frequency selection support */
  307.   unsigned char mmr_fee_status; /* Status of frequency EEPROM */
  308. #define MMR_FEE_STATUS_ID 0xF0 /* Modem revision ID */
  309. #define MMR_FEE_STATUS_DWLD 0x08 /* Download in progress */
  310. #define MMR_FEE_STATUS_BUSY 0x04 /* EEPROM busy */
  311.   unsigned char mmr_unused4[1]; /* unused */
  312.   unsigned char mmr_fee_data_l; /* Read data from EEPROM (low) */
  313.   unsigned char mmr_fee_data_h; /* Read data from EEPROM (high) */
  314. };
  315. #define MMR_SIZE 36
  316. #define mmroff(p,f)  (unsigned short)((void *)(&((mmr_t *)((void *)0 + (p)))->f) - (void *)0)
  317. /* Make the two above structures one */
  318. typedef union mm_t
  319. {
  320.   struct mmw_t w; /* Write to the mmc */
  321.   struct mmr_t r; /* Read from the mmc */
  322. } mm_t;
  323. #endif /* _WAVELAN_H */
  324. /*
  325.  * This software may only be used and distributed
  326.  * according to the terms of the GNU General Public License.
  327.  *
  328.  * For more details, see wavelan.c.
  329.  */