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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Device driver for the SYMBIOS/LSILOGIC 53C8XX and 53C1010 family 
  3.  * of PCI-SCSI IO processors.
  4.  *
  5.  * Copyright (C) 1999-2001  Gerard Roudier <groudier@free.fr>
  6.  *
  7.  * This driver is derived from the Linux sym53c8xx driver.
  8.  * Copyright (C) 1998-2000  Gerard Roudier
  9.  *
  10.  * The sym53c8xx driver is derived from the ncr53c8xx driver that had been 
  11.  * a port of the FreeBSD ncr driver to Linux-1.2.13.
  12.  *
  13.  * The original ncr driver has been written for 386bsd and FreeBSD by
  14.  *         Wolfgang Stanglmeier        <wolf@cologne.de>
  15.  *         Stefan Esser                <se@mi.Uni-Koeln.de>
  16.  * Copyright (C) 1994  Wolfgang Stanglmeier
  17.  *
  18.  * Other major contributions:
  19.  *
  20.  * NVRAM detection and reading.
  21.  * Copyright (C) 1997 Richard Waltham <dormouse@farsrobt.demon.co.uk>
  22.  *
  23.  *-----------------------------------------------------------------------------
  24.  *
  25.  * Redistribution and use in source and binary forms, with or without
  26.  * modification, are permitted provided that the following conditions
  27.  * are met:
  28.  * 1. Redistributions of source code must retain the above copyright
  29.  *    notice, this list of conditions and the following disclaimer.
  30.  * 2. The name of the author may not be used to endorse or promote products
  31.  *    derived from this software without specific prior written permission.
  32.  *
  33.  * Where this Software is combined with software released under the terms of 
  34.  * the GNU Public License ("GPL") and the terms of the GPL would require the 
  35.  * combined work to also be released under the terms of the GPL, the terms
  36.  * and conditions of this License will apply in addition to those of the
  37.  * GPL with the exception of any terms or conditions of this License that
  38.  * conflict with, or are expressly prohibited by, the GPL.
  39.  *
  40.  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
  41.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  43.  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
  44.  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  45.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  46.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  48.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  49.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  50.  * SUCH DAMAGE.
  51.  */
  52. #ifndef SYM_FW_H
  53. #define SYM_FW_H
  54. /*
  55.  *  Macro used to generate interfaces for script A.
  56.  */
  57. #define SYM_GEN_FW_A(s)
  58. SYM_GEN_A(s, start) SYM_GEN_A(s, getjob_begin)
  59. SYM_GEN_A(s, getjob_end)
  60. SYM_GEN_A(s, select) SYM_GEN_A(s, wf_sel_done)
  61. SYM_GEN_A(s, send_ident)
  62. SYM_GEN_A(s, dispatch) SYM_GEN_A(s, init)
  63. SYM_GEN_A(s, clrack) SYM_GEN_A(s, complete_error)
  64. SYM_GEN_A(s, done) SYM_GEN_A(s, done_end)
  65. SYM_GEN_A(s, idle) SYM_GEN_A(s, ungetjob)
  66. SYM_GEN_A(s, reselect)
  67. SYM_GEN_A(s, resel_tag) SYM_GEN_A(s, resel_dsa)
  68. SYM_GEN_A(s, resel_no_tag)
  69. SYM_GEN_A(s, data_in) SYM_GEN_A(s, data_in2)
  70. SYM_GEN_A(s, data_out) SYM_GEN_A(s, data_out2)
  71. SYM_GEN_A(s, pm0_data) SYM_GEN_A(s, pm1_data)
  72. /*
  73.  *  Macro used to generate interfaces for script B.
  74.  */
  75. #define SYM_GEN_FW_B(s)
  76. SYM_GEN_B(s, no_data)
  77. SYM_GEN_B(s, sel_for_abort) SYM_GEN_B(s, sel_for_abort_1)
  78. SYM_GEN_B(s, msg_bad) SYM_GEN_B(s, msg_weird)
  79. SYM_GEN_B(s, wdtr_resp) SYM_GEN_B(s, send_wdtr)
  80. SYM_GEN_B(s, sdtr_resp) SYM_GEN_B(s, send_sdtr)
  81. SYM_GEN_B(s, ppr_resp) SYM_GEN_B(s, send_ppr)
  82. SYM_GEN_B(s, nego_bad_phase)
  83. SYM_GEN_B(s, ident_break)  SYM_GEN_B(s, ident_break_atn)
  84. SYM_GEN_B(s, sdata_in) SYM_GEN_B(s, resel_bad_lun)
  85. SYM_GEN_B(s, bad_i_t_l) SYM_GEN_B(s, bad_i_t_l_q)
  86. SYM_GEN_B(s, wsr_ma_helper)
  87. /*
  88.  *  Macro used to generate interfaces for script Z.
  89.  */
  90. #define SYM_GEN_FW_Z(s)
  91. SYM_GEN_Z(s, snooptest) SYM_GEN_Z(s, snoopend)
  92. /*
  93.  *  Generates structure interface that contains 
  94.  *  offsets within script A, B and Z.
  95.  */
  96. #define SYM_GEN_A(s, label) s label;
  97. #define SYM_GEN_B(s, label) s label;
  98. #define SYM_GEN_Z(s, label) s label;
  99. struct sym_fwa_ofs {
  100. SYM_GEN_FW_A(u_short)
  101. };
  102. struct sym_fwb_ofs {
  103. SYM_GEN_FW_B(u_short)
  104. #ifdef SYM_OPT_HANDLE_DIR_UNKNOWN
  105. SYM_GEN_B(u_short, data_io)
  106. #endif
  107. SYM_GEN_B(u_short, start64)
  108. SYM_GEN_B(u_short, pm_handle)
  109. };
  110. struct sym_fwz_ofs {
  111. SYM_GEN_FW_Z(u_short)
  112. #ifdef SYM_OPT_NO_BUS_MEMORY_MAPPING
  113. SYM_GEN_Z(u_short, start_ram)
  114. SYM_GEN_Z(u_short, start_ram64)
  115. #endif
  116. };
  117. /*
  118.  *  Generates structure interface that contains 
  119.  *  bus addresses within script A, B and Z.
  120.  */
  121. struct sym_fwa_ba {
  122. SYM_GEN_FW_A(u32)
  123. };
  124. struct sym_fwb_ba {
  125. SYM_GEN_FW_B(u32)
  126. #ifdef SYM_OPT_HANDLE_DIR_UNKNOWN
  127. SYM_GEN_B(u32, data_io)
  128. #endif
  129. SYM_GEN_B(u32, start64);
  130. SYM_GEN_B(u32, pm_handle);
  131. };
  132. struct sym_fwz_ba {
  133. SYM_GEN_FW_Z(u32)
  134. #ifdef SYM_OPT_NO_BUS_MEMORY_MAPPING
  135. SYM_GEN_Z(u32, start_ram)
  136. SYM_GEN_Z(u32, start_ram64)
  137. #endif
  138. };
  139. #undef SYM_GEN_A
  140. #undef SYM_GEN_B
  141. #undef SYM_GEN_Z
  142. /*
  143.  *  Let cc know about the name of the controller data structure.
  144.  *  We need this for function prototype declarations just below.
  145.  */
  146. struct sym_hcb;
  147. /*
  148.  *  Generic structure that defines a firmware.
  149.  */ 
  150. struct sym_fw {
  151. char *name; /* Name we want to print out */
  152. u32 *a_base; /* Pointer to script A template */
  153. int a_size; /* Size of script A */
  154. struct sym_fwa_ofs
  155. *a_ofs; /* Useful offsets in script A */
  156. u32 *b_base; /* Pointer to script B template */
  157. int b_size; /* Size of script B */
  158. struct sym_fwb_ofs
  159. *b_ofs; /* Useful offsets in script B */
  160. u32 *z_base; /* Pointer to script Z template */
  161. int z_size; /* Size of script Z */
  162. struct sym_fwz_ofs
  163. *z_ofs; /* Useful offsets in script Z */
  164. /* Setup and patch methods for this firmware */
  165. void (*setup)(struct sym_hcb *, struct sym_fw *);
  166. void (*patch)(struct sym_hcb *);
  167. };
  168. /*
  169.  *  Macro used to declare a firmware.
  170.  */
  171. #define SYM_FW_ENTRY(fw, name)
  172. {
  173. name,
  174. (u32 *) &fw##a_scr, sizeof(fw##a_scr), &fw##a_ofs,
  175. (u32 *) &fw##b_scr, sizeof(fw##b_scr), &fw##b_ofs,
  176. (u32 *) &fw##z_scr, sizeof(fw##z_scr), &fw##z_ofs,
  177. fw##_setup, fw##_patch
  178. }
  179. /*
  180.  *  Macros used from the C code to get useful
  181.  *  SCRIPTS bus addresses.
  182.  */
  183. #define SCRIPTA_BA(np, label) (np->fwa_bas.label)
  184. #define SCRIPTB_BA(np, label) (np->fwb_bas.label)
  185. #define SCRIPTZ_BA(np, label) (np->fwz_bas.label)
  186. /*
  187.  *  Macros used by scripts definitions.
  188.  *
  189.  *  HADDR_1 generates a reference to a field of the controller data.
  190.  *  HADDR_2 generates a reference to a field of the controller data
  191.  *          with offset.
  192.  *  RADDR_1 generates a reference to a script processor register.
  193.  *  RADDR_2 generates a reference to a script processor register
  194.  *          with offset.
  195.  *  PADDR_A generates a reference to another part of script A.
  196.  *  PADDR_B generates a reference to another part of script B.
  197.  *
  198.  *  SYM_GEN_PADDR_A and SYM_GEN_PADDR_B are used to define respectively 
  199.  *  the PADDR_A and PADDR_B macros for each firmware by setting argument 
  200.  *  `s' to the name of the corresponding structure.
  201.  *
  202.  *  SCR_DATA_ZERO is used to allocate a DWORD of data in scripts areas.
  203.  */
  204. #define RELOC_SOFTC 0x40000000
  205. #define RELOC_LABEL_A 0x50000000
  206. #define RELOC_REGISTER 0x60000000
  207. #define RELOC_LABEL_B 0x80000000
  208. #define RELOC_MASK 0xf0000000
  209. #define HADDR_1(label)    (RELOC_SOFTC    | offsetof(struct sym_hcb, label))
  210. #define HADDR_2(label,ofs) (RELOC_SOFTC    | 
  211. (offsetof(struct sym_hcb, label)+(ofs)))
  212. #define RADDR_1(label)    (RELOC_REGISTER | REG(label))
  213. #define RADDR_2(label,ofs) (RELOC_REGISTER | ((REG(label))+(ofs)))
  214. #define SYM_GEN_PADDR_A(s, label) (RELOC_LABEL_A  | offsetof(s, label))
  215. #define SYM_GEN_PADDR_B(s, label) (RELOC_LABEL_B  | offsetof(s, label))
  216. #define SCR_DATA_ZERO 0xf00ff00f
  217. #endif /* SYM_FW_H */