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

嵌入式Linux

开发平台:

Unix_Linux

  1. /***************************************************************************
  2.                           dpti.h  -  description
  3.                              -------------------
  4.     begin                : Thu Sep 7 2000
  5.     copyright            : (C) 2001 by Adaptec
  6.     email                : deanna_bonds@adaptec.com
  7.     See README.dpti for history, notes, license info, and credits
  8.  ***************************************************************************/
  9. /***************************************************************************
  10.  *                                                                         *
  11.  *   This program is free software; you can redistribute it and/or modify  *
  12.  *   it under the terms of the GNU General Public License as published by  *
  13.  *   the Free Software Foundation; either version 2 of the License, or     *
  14.  *   (at your option) any later version.                                   *
  15.  *                                                                         *
  16.  ***************************************************************************/
  17. #ifndef _DPT_H
  18. #define _DPT_H
  19. #ifndef LINUX_VERSION_CODE
  20. #include <linux/version.h>
  21. #endif
  22. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,00)
  23. #define MAX_TO_IOP_MESSAGES   (210)
  24. #else
  25. #define MAX_TO_IOP_MESSAGES   (255)
  26. #endif
  27. #define MAX_FROM_IOP_MESSAGES (255)
  28. /*
  29.  * SCSI interface function Prototypes
  30.  */
  31. static int adpt_proc_info(char *buffer, char **start, off_t offset,
  32.   int length, int inode, int inout);
  33. static int adpt_detect(Scsi_Host_Template * sht);
  34. static int adpt_queue(Scsi_Cmnd * cmd, void (*cmdcomplete) (Scsi_Cmnd *));
  35. static int adpt_abort(Scsi_Cmnd * cmd);
  36. static int adpt_reset(Scsi_Cmnd* cmd);
  37. static int adpt_release(struct Scsi_Host *host);
  38. static const char *adpt_info(struct Scsi_Host *pSHost);
  39. static int adpt_bios_param(Disk * disk, kdev_t dev, int geom[]);
  40. static int adpt_bus_reset(Scsi_Cmnd* cmd);
  41. static int adpt_device_reset(Scsi_Cmnd* cmd);
  42. /*
  43.  * Scsi_Host_Template (see hosts.h) 
  44.  */
  45. #define DPT_DRIVER_NAME "Adaptec I2O RAID"
  46. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,3,00)
  47. #define DPT_I2O { 
  48. proc_info: adpt_proc_info,
  49. detect: adpt_detect,
  50. release: adpt_release,
  51. info: adpt_info,
  52. queuecommand: adpt_queue,
  53. eh_abort_handler: adpt_abort,
  54. eh_device_reset_handler: adpt_device_reset,
  55. eh_bus_reset_handler: adpt_bus_reset,
  56. eh_host_reset_handler: adpt_reset,
  57. bios_param: adpt_bios_param,
  58. can_queue: MAX_TO_IOP_MESSAGES ,/* max simultaneous cmds      */
  59. this_id: 7, /* scsi id of host adapter    */
  60. sg_tablesize: 0, /* max scatter-gather cmds    */
  61. cmd_per_lun: 256, /* cmds per lun (linked cmds) */
  62. use_clustering: ENABLE_CLUSTERING,
  63. use_new_eh_code: 1
  64. }
  65. #else /* KERNEL_VERSION > 2.2.16 */
  66. #define DPT_I2O { 
  67. proc_info: adpt_proc_info,
  68. detect: adpt_detect,
  69. release: adpt_release,
  70. info: adpt_info,
  71. queuecommand: adpt_queue,
  72. eh_abort_handler: adpt_abort,
  73. eh_device_reset_handler: adpt_device_reset,
  74. eh_bus_reset_handler: adpt_bus_reset,
  75. eh_host_reset_handler: adpt_reset,
  76. bios_param: adpt_bios_param,
  77. can_queue: MAX_TO_IOP_MESSAGES, /* max simultaneous cmds      */
  78. this_id: 7, /* scsi id of host adapter    */
  79. sg_tablesize: 0, /* max scatter-gather cmds    */
  80. cmd_per_lun: 256, /* cmds per lun (linked cmds) */
  81. use_clustering: ENABLE_CLUSTERING,
  82. use_new_eh_code: 1,
  83. proc_name: "dpt_i2o" /* this is the name of our proc node*/
  84. }
  85. #endif
  86. #ifndef HOSTS_C
  87. #include "dpt/sys_info.h"
  88. #include <linux/wait.h>
  89. #include "dpt/dpti_i2o.h"
  90. #include "dpt/dpti_ioctl.h"
  91. #define DPT_I2O_VERSION "2.4 Build 5"
  92. #define DPT_VERSION     2
  93. #define DPT_REVISION    '4'
  94. #define DPT_SUBREVISION '5'
  95. #define DPT_BETA ""
  96. #define DPT_MONTH      8 
  97. #define DPT_DAY        7
  98. #define DPT_YEAR        (2001-1980)
  99. #define DPT_DRIVER "dpt_i2o"
  100. #define DPTI_I2O_MAJOR (151)
  101. #define DPT_ORGANIZATION_ID (0x1B)        /* For Private Messages */
  102. #define DPTI_MAX_HBA (16)
  103. #define MAX_CHANNEL     (5) // Maximum Channel # Supported
  104. #define MAX_ID         (128) // Maximum Target ID Supported
  105. /* Sizes in 4 byte words */
  106. #define REPLY_FRAME_SIZE  (17)
  107. #define MAX_MESSAGE_SIZE  (128)
  108. #define SG_LIST_ELEMENTS  (56)
  109. #define EMPTY_QUEUE           0xffffffff
  110. #define I2O_INTERRUPT_PENDING_B   (0x08)
  111. #define PCI_DPT_VENDOR_ID         (0x1044) // DPT PCI Vendor ID
  112. #define PCI_DPT_DEVICE_ID         (0xA501) // DPT PCI I2O Device ID
  113. #define PCI_DPT_RAPTOR_DEVICE_ID  (0xA511)
  114. //#define REBOOT_NOTIFIER 1
  115. /* Debugging macro from Linux Device Drivers - Rubini */
  116. #undef PDEBUG
  117. #ifdef DEBUG
  118. //TODO add debug level switch
  119. #  define PDEBUG(fmt, args...)  printk(KERN_DEBUG "dpti: " fmt, ##args)
  120. #  define PDEBUGV(fmt, args...) printk(KERN_DEBUG "dpti: " fmt, ##args)
  121. #else
  122. # define PDEBUG(fmt, args...) /* not debugging: nothing */
  123. # define PDEBUGV(fmt, args...) /* not debugging: nothing */
  124. #endif
  125. #define PERROR(fmt, args...) printk(KERN_ERR fmt, ##args)
  126. #define PWARN(fmt, args...) printk(KERN_WARNING fmt, ##args)
  127. #define PINFO(fmt, args...) printk(KERN_INFO fmt, ##args)
  128. #define PCRIT(fmt, args...) printk(KERN_CRIT fmt, ##args)
  129. #define SHUTDOWN_SIGS (sigmask(SIGKILL)|sigmask(SIGINT)|sigmask(SIGTERM))
  130. // Command timeouts
  131. #define FOREVER (0)
  132. #define TMOUT_INQUIRY  (20)
  133. #define TMOUT_FLUSH (360/45)
  134. #define TMOUT_ABORT (30)
  135. #define TMOUT_SCSI (300)
  136. #define TMOUT_IOPRESET (360)
  137. #define TMOUT_GETSTATUS (15)
  138. #define TMOUT_INITOUTBOUND (15)
  139. #define TMOUT_LCT (360)
  140. #define I2O_SCSI_DEVICE_DSC_MASK                0x00FF
  141. #define I2O_DETAIL_STATUS_UNSUPPORTED_FUNCTION  0x000A
  142. #define I2O_SCSI_DSC_MASK                   0xFF00
  143. #define I2O_SCSI_DSC_SUCCESS                0x0000
  144. #define I2O_SCSI_DSC_REQUEST_ABORTED        0x0200
  145. #define I2O_SCSI_DSC_UNABLE_TO_ABORT        0x0300
  146. #define I2O_SCSI_DSC_COMPLETE_WITH_ERROR    0x0400
  147. #define I2O_SCSI_DSC_ADAPTER_BUSY           0x0500
  148. #define I2O_SCSI_DSC_REQUEST_INVALID        0x0600
  149. #define I2O_SCSI_DSC_PATH_INVALID           0x0700
  150. #define I2O_SCSI_DSC_DEVICE_NOT_PRESENT     0x0800
  151. #define I2O_SCSI_DSC_UNABLE_TO_TERMINATE    0x0900
  152. #define I2O_SCSI_DSC_SELECTION_TIMEOUT      0x0A00
  153. #define I2O_SCSI_DSC_COMMAND_TIMEOUT        0x0B00
  154. #define I2O_SCSI_DSC_MR_MESSAGE_RECEIVED    0x0D00
  155. #define I2O_SCSI_DSC_SCSI_BUS_RESET         0x0E00
  156. #define I2O_SCSI_DSC_PARITY_ERROR_FAILURE   0x0F00
  157. #define I2O_SCSI_DSC_AUTOSENSE_FAILED       0x1000
  158. #define I2O_SCSI_DSC_NO_ADAPTER             0x1100
  159. #define I2O_SCSI_DSC_DATA_OVERRUN           0x1200
  160. #define I2O_SCSI_DSC_UNEXPECTED_BUS_FREE    0x1300
  161. #define I2O_SCSI_DSC_SEQUENCE_FAILURE       0x1400
  162. #define I2O_SCSI_DSC_REQUEST_LENGTH_ERROR   0x1500
  163. #define I2O_SCSI_DSC_PROVIDE_FAILURE        0x1600
  164. #define I2O_SCSI_DSC_BDR_MESSAGE_SENT       0x1700
  165. #define I2O_SCSI_DSC_REQUEST_TERMINATED     0x1800
  166. #define I2O_SCSI_DSC_IDE_MESSAGE_SENT       0x3300
  167. #define I2O_SCSI_DSC_RESOURCE_UNAVAILABLE   0x3400
  168. #define I2O_SCSI_DSC_UNACKNOWLEDGED_EVENT   0x3500
  169. #define I2O_SCSI_DSC_MESSAGE_RECEIVED       0x3600
  170. #define I2O_SCSI_DSC_INVALID_CDB            0x3700
  171. #define I2O_SCSI_DSC_LUN_INVALID            0x3800
  172. #define I2O_SCSI_DSC_SCSI_TID_INVALID       0x3900
  173. #define I2O_SCSI_DSC_FUNCTION_UNAVAILABLE   0x3A00
  174. #define I2O_SCSI_DSC_NO_NEXUS               0x3B00
  175. #define I2O_SCSI_DSC_SCSI_IID_INVALID       0x3C00
  176. #define I2O_SCSI_DSC_CDB_RECEIVED           0x3D00
  177. #define I2O_SCSI_DSC_LUN_ALREADY_ENABLED    0x3E00
  178. #define I2O_SCSI_DSC_BUS_BUSY               0x3F00
  179. #define I2O_SCSI_DSC_QUEUE_FROZEN           0x4000
  180. #ifndef TRUE
  181. #define TRUE                  1
  182. #define FALSE                 0
  183. #endif
  184. #define HBA_FLAGS_INSTALLED_B       0x00000001 // Adapter Was Installed
  185. #define HBA_FLAGS_BLINKLED_B        0x00000002 // Adapter In Blink LED State
  186. #define HBA_FLAGS_IN_RESET 0x00000040 /* in reset */
  187. #define HBA_HOSTRESET_FAILED 0x00000080 /* adpt_resethost failed */
  188. // Device state flags
  189. #define DPTI_DEV_ONLINE    0x00
  190. #define DPTI_DEV_UNSCANNED 0x01
  191. #define DPTI_DEV_RESET    0x02
  192. #define DPTI_DEV_OFFLINE   0x04
  193. struct adpt_device {
  194. struct adpt_device* next_lun;
  195. u32 flags;
  196. u32 type;
  197. u32 capacity;
  198. u32 block_size;
  199. u8 scsi_channel;
  200. u8 scsi_id;
  201. u8  scsi_lun;
  202. u8 state;
  203. u16 tid;
  204. struct i2o_device* pI2o_dev;
  205. Scsi_Device *pScsi_dev;
  206. };
  207. struct adpt_channel {
  208. struct adpt_device* device[MAX_ID]; /* used as an array of 128 scsi ids */
  209. u8 scsi_id;
  210. u8 type;
  211. u16 tid;
  212. u32 state;
  213. struct i2o_device* pI2o_dev;
  214. };
  215. // HBA state flags
  216. #define DPTI_STATE_RESET (0x01)
  217. #define DPTI_STATE_IOCTL (0x02)
  218. typedef struct _adpt_hba {
  219. struct _adpt_hba *next;
  220. struct pci_dev *pDev;
  221. struct Scsi_Host *host;
  222. u32 state;
  223. spinlock_t state_lock;
  224. int unit;
  225. int host_no; /* SCSI host number */
  226. u8 initialized;
  227. u8 in_use; /* is the management node open*/
  228. char name[32];
  229. char detail[55];
  230. ulong base_addr_virt;
  231. ulong msg_addr_virt;
  232. ulong base_addr_phys;
  233. ulong  post_port;
  234. ulong  reply_port;
  235. ulong  irq_mask;
  236. u16  post_count;
  237. u32  post_fifo_size;
  238. u32  reply_fifo_size;
  239. u32* reply_pool;
  240. u32  sg_tablesize; // Scatter/Gather List Size.       
  241. u8  top_scsi_channel;
  242. u8  top_scsi_id;
  243. u8  top_scsi_lun;
  244. i2o_status_block* status_block;
  245. i2o_hrt* hrt;
  246. i2o_lct* lct;
  247. uint lct_size;
  248. struct i2o_device* devices;
  249. struct adpt_channel channel[MAX_CHANNEL];
  250. struct proc_dir_entry* proc_entry; /* /proc dir */
  251. ulong FwDebugBuffer_P; // Virtual Address Of FW Debug Buffer
  252. u32   FwDebugBufferSize; // FW Debug Buffer Size In Bytes
  253. ulong FwDebugStrLength_P; // Virtual Addr Of FW Debug String Len
  254. ulong FwDebugFlags_P; // Virtual Address Of FW Debug Flags 
  255. ulong FwDebugBLEDflag_P; // Virtual Addr Of FW Debug BLED
  256. ulong FwDebugBLEDvalue_P; // Virtual Addr Of FW Debug BLED
  257. u32 FwDebugFlags;
  258. } adpt_hba;
  259. struct sg_simple_element {
  260.    u32  flag_count;
  261.    u32 addr_bus;
  262. }; 
  263. /*
  264.  * Function Prototypes
  265.  */
  266. static void adpt_i2o_sys_shutdown(void);
  267. static int adpt_init(void);
  268. static int adpt_i2o_build_sys_table(void);
  269. static void adpt_isr(int irq, void *dev_id, struct pt_regs *regs);
  270. #ifdef REBOOT_NOTIFIER
  271. static int adpt_reboot_event(struct notifier_block *n, ulong code, void *p);
  272. #endif
  273. static void adpt_i2o_report_hba_unit(adpt_hba* pHba, struct i2o_device *d);
  274. static int adpt_i2o_query_scalar(adpt_hba* pHba, int tid, 
  275. int group, int field, void *buf, int buflen);
  276. #ifdef DEBUG
  277. static const char *adpt_i2o_get_class_name(int class);
  278. #endif
  279. static int adpt_i2o_issue_params(int cmd, adpt_hba* pHba, int tid, 
  280.   void *opblk, int oplen, void *resblk, int reslen);
  281. static int adpt_i2o_post_wait(adpt_hba* pHba, u32* msg, int len, int timeout);
  282. static int adpt_i2o_lct_get(adpt_hba* pHba);
  283. static int adpt_i2o_parse_lct(adpt_hba* pHba);
  284. static int adpt_i2o_activate_hba(adpt_hba* pHba);
  285. static int adpt_i2o_enable_hba(adpt_hba* pHba);
  286. static int adpt_i2o_install_device(adpt_hba* pHba, struct i2o_device *d);
  287. static s32 adpt_i2o_post_this(adpt_hba* pHba, u32* data, int len);
  288. static s32 adpt_i2o_quiesce_hba(adpt_hba* pHba);
  289. static s32 adpt_i2o_status_get(adpt_hba* pHba);
  290. static s32 adpt_i2o_init_outbound_q(adpt_hba* pHba);
  291. static s32 adpt_i2o_hrt_get(adpt_hba* pHba);
  292. static s32 adpt_scsi_to_i2o(adpt_hba* pHba, Scsi_Cmnd* cmd, struct adpt_device* dptdevice);
  293. static s32 adpt_i2o_to_scsi(ulong reply, Scsi_Cmnd* cmd);
  294. static s32 adpt_scsi_register(adpt_hba* pHba,Scsi_Host_Template * sht);
  295. static s32 adpt_hba_reset(adpt_hba* pHba);
  296. static s32 adpt_i2o_reset_hba(adpt_hba* pHba);
  297. static s32 adpt_rescan(adpt_hba* pHba);
  298. static s32 adpt_i2o_reparse_lct(adpt_hba* pHba);
  299. static s32 adpt_send_nop(adpt_hba*pHba,u32 m);
  300. static void adpt_i2o_delete_hba(adpt_hba* pHba);
  301. static void adpt_select_queue_depths(struct Scsi_Host *host, Scsi_Device * devicelist);
  302. static void adpt_inquiry(adpt_hba* pHba);
  303. static void adpt_fail_posted_scbs(adpt_hba* pHba);
  304. static struct adpt_device* adpt_find_device(adpt_hba* pHba, u32 chan, u32 id, u32 lun);
  305. static int adpt_install_hba(Scsi_Host_Template* sht, struct pci_dev* pDev) ;
  306. static int adpt_i2o_online_hba(adpt_hba* pHba);
  307. static void adpt_i2o_post_wait_complete(u32, int);
  308. static int adpt_i2o_systab_send(adpt_hba* pHba);
  309. static int adpt_ioctl(struct inode *inode, struct file *file, uint cmd, ulong arg);
  310. static int adpt_open(struct inode *inode, struct file *file);
  311. static int adpt_close(struct inode *inode, struct file *file);
  312. #ifdef UARTDELAY
  313. static void adpt_delay(int millisec);
  314. #endif
  315. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,0)
  316. static struct pci_dev* adpt_pci_find_device(uint vendor, struct pci_dev* from);
  317. #endif
  318. #if defined __ia64__ 
  319. static void adpt_ia64_info(sysInfo_S* si);
  320. #endif
  321. #if defined __sparc__ 
  322. static void adpt_sparc_info(sysInfo_S* si);
  323. #endif
  324. #if defined __alpha__ 
  325. static void adpt_sparc_info(sysInfo_S* si);
  326. #endif
  327. #if defined __i386__
  328. static void adpt_i386_info(sysInfo_S* si);
  329. #endif
  330. #define PRINT_BUFFER_SIZE     512
  331. #define HBA_FLAGS_DBG_FLAGS_MASK         0xffff0000 // Mask for debug flags
  332. #define HBA_FLAGS_DBG_KERNEL_PRINT_B     0x00010000 // Kernel Debugger Print
  333. #define HBA_FLAGS_DBG_FW_PRINT_B         0x00020000 // Firmware Debugger Print
  334. #define HBA_FLAGS_DBG_FUNCTION_ENTRY_B   0x00040000 // Function Entry Point
  335. #define HBA_FLAGS_DBG_FUNCTION_EXIT_B    0x00080000 // Function Exit
  336. #define HBA_FLAGS_DBG_ERROR_B            0x00100000 // Error Conditions
  337. #define HBA_FLAGS_DBG_INIT_B             0x00200000 // Init Prints
  338. #define HBA_FLAGS_DBG_OS_COMMANDS_B      0x00400000 // OS Command Info
  339. #define HBA_FLAGS_DBG_SCAN_B             0x00800000 // Device Scan
  340. #define FW_DEBUG_STR_LENGTH_OFFSET 0
  341. #define FW_DEBUG_FLAGS_OFFSET      4
  342. #define FW_DEBUG_BLED_OFFSET       8
  343. #define FW_DEBUG_FLAGS_NO_HEADERS_B    0x01
  344. #endif /* !HOSTS_C */
  345. #endif /* _DPT_H */