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

嵌入式Linux

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * (C)Copyright 1998,1999 SysKonnect,
  4.  * a business unit of Schneider & Koch & Co. Datensysteme GmbH.
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * The information in this file is provided "AS IS" without warranty.
  12.  *
  13.  ******************************************************************************/
  14. #ifndef _TARGETHW_
  15. #define _TARGETHW_
  16. /*
  17.  *  PCI Watermark definition
  18.  */
  19. #ifdef PCI
  20. #define RX_WATERMARK 24
  21. #define TX_WATERMARK 24
  22. #define SK_ML_ID_1 0x20
  23. #define SK_ML_ID_2 0x30
  24. #endif
  25. #include "h/skfbi.h"
  26. #ifndef TAG_MODE
  27. #include "h/fplus.h"
  28. #else
  29. #include "h/fplustm.h"
  30. #endif
  31. #ifndef HW_PTR
  32. #ifdef  MEM_MAPPED_IO
  33. #define HW_PTR  u_long
  34. #else
  35. #define HW_PTR  u_short
  36. #endif
  37. #endif
  38. #ifdef MULT_OEM
  39. #define OI_STAT_LAST 0 /* end of OEM data base */
  40. #define OI_STAT_PRESENT 1 /* entry present but not empty */
  41. #define OI_STAT_VALID 2 /* holds valid ID, but is not active */ 
  42. #define OI_STAT_ACTIVE 3 /* holds valid ID, entry is active */
  43. /* active = adapter is supported */
  44. /* Memory representation of IDs must match representation in adapter. */
  45. struct s_oem_ids {
  46. u_char oi_status ; /* Stat: last, present, valid, active */
  47. u_char oi_mark[5] ; /* "PID00" .. "PID07" .. */
  48. u_char  oi_id[4] ; /* id bytes, representation as */
  49. /* defined by hardware, */
  50. #ifdef PCI
  51. u_char  oi_sub_id[4] ; /* sub id bytes, representation as */
  52. /* defined by hardware, */
  53. #endif
  54. #ifdef ISA
  55. u_char oi_logo_len ; /* the length of the adapter logo */
  56. u_char oi_logo[6] ; /* the adapter logo */
  57. u_char oi_reserved1 ;
  58. #endif /* ISA */
  59. } ;
  60. #endif /* MULT_OEM */
  61. struct s_smt_hw {
  62. /*
  63.  * global
  64.  */
  65. HW_PTR iop ; /* IO base address */
  66. short dma ; /* DMA channel */
  67. short irq ; /* IRQ level */
  68. short eprom ; /* FLASH prom */
  69. #ifndef PCI
  70. short DmaWriteExtraBytes ; /* add bytes for DMA write */
  71. #endif
  72. #ifndef SYNC
  73. u_short n_a_send ; /* pending send requests */
  74. #endif
  75. #if (defined(EISA) || defined(MCA) || defined(PCI))
  76. short slot ; /* slot number */
  77. short   max_slots ; /* maximum number of slots */
  78. #endif
  79. #if (defined(PCI) || defined(MCA))
  80. short wdog_used ; /* TRUE if the watch dog is used */
  81. #endif
  82. #ifdef MCA
  83. short slot_32 ; /* 32bit slot (1) or 16bit slot (0) */
  84. short rev ; /* Board revision (FMx_REV). */
  85. short VFullRead ; /* V_full value for DMA read */
  86. short VFullWrite ; /* V_full value for DMA write */
  87. #endif
  88. #ifdef EISA
  89. short led ; /* LED for FE card */
  90. short dma_rmode ; /* read mode */
  91. short dma_wmode ; /* write mode */
  92. short dma_emode ; /* extend mode */
  93. /* DMA controller channel dependent io addresses */
  94. u_short dma_base_word_count ;
  95. u_short dma_base_address ;
  96. u_short dma_base_address_page ;
  97. #endif
  98. #ifdef PCI
  99. u_short pci_handle ; /* handle to access the BIOS func */
  100. u_long is_imask ; /* int maske for the int source reg */
  101. u_long phys_mem_addr ; /* physical memory address */
  102. u_short mc_dummy ; /* work around for MC compiler bug */
  103. /*
  104.  * state of the hardware
  105.  */
  106. u_short hw_state ; /* started or stopped */
  107. #define STARTED 1
  108. #define STOPPED 0
  109. int hw_is_64bit ; /* does we have a 64 bit adapter */
  110. #endif
  111. #ifdef TAG_MODE
  112. u_long pci_fix_value ; /* value parsed by PCIFIX */
  113. #endif
  114. /*
  115.  * hwt.c
  116.  */
  117. u_long t_start ; /* HWT start */
  118. u_long t_stop ; /* HWT stop */
  119. u_short timer_activ ; /* HWT timer active */
  120. /*
  121.  * PIC
  122.  */
  123. u_char pic_a1 ;
  124. u_char pic_21 ;
  125. /*
  126.  * GENERIC ; do not modify beyond this line
  127.  */
  128. /*
  129.  * physical and canonical address
  130.  */
  131. struct fddi_addr fddi_home_addr ;
  132. struct fddi_addr fddi_canon_addr ;
  133. struct fddi_addr fddi_phys_addr ;
  134. /*
  135.  * mac variables
  136.  */
  137. struct mac_parameter mac_pa ; /* tmin, tmax, tvx, treq .. */
  138. struct mac_counter mac_ct ; /* recv., lost, error  */
  139. u_short mac_ring_is_up ; /* ring is up flag */
  140. struct s_smt_fp fp ; /* formac+ */
  141. #ifdef MULT_OEM
  142. struct s_oem_ids *oem_id ; /* pointer to selected id */
  143. int oem_min_status ; /* IDs to take care of */
  144. #endif /* MULT_OEM */
  145. } ;
  146. #endif