hdreg.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:24k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_HDREG_H
  2. #define _LINUX_HDREG_H
  3. #ifdef __KERNEL__
  4. #include <linux/ata.h>
  5. /*
  6.  * This file contains some defines for the AT-hd-controller.
  7.  * Various sources.
  8.  */
  9. /* ide.c has its own port definitions in "ide.h" */
  10. #define HD_IRQ 14
  11. /* Hd controller regs. Ref: IBM AT Bios-listing */
  12. #define HD_DATA 0x1f0 /* _CTL when writing */
  13. #define HD_ERROR 0x1f1 /* see err-bits */
  14. #define HD_NSECTOR 0x1f2 /* nr of sectors to read/write */
  15. #define HD_SECTOR 0x1f3 /* starting sector */
  16. #define HD_LCYL 0x1f4 /* starting cylinder */
  17. #define HD_HCYL 0x1f5 /* high byte of starting cyl */
  18. #define HD_CURRENT 0x1f6 /* 101dhhhh , d=drive, hhhh=head */
  19. #define HD_STATUS 0x1f7 /* see status-bits */
  20. #define HD_FEATURE HD_ERROR /* same io address, read=error, write=feature */
  21. #define HD_PRECOMP HD_FEATURE /* obsolete use of this port - predates IDE */
  22. #define HD_COMMAND HD_STATUS /* same io address, read=status, write=cmd */
  23. #define HD_CMD 0x3f6 /* used for resets */
  24. #define HD_ALTSTATUS 0x3f6 /* same as HD_STATUS but doesn't clear irq */
  25. /* remainder is shared between hd.c, ide.c, ide-cd.c, and the hdparm utility */
  26. /* Bits of HD_STATUS */
  27. #define ERR_STAT 0x01
  28. #define INDEX_STAT 0x02
  29. #define ECC_STAT 0x04 /* Corrected error */
  30. #define DRQ_STAT 0x08
  31. #define SEEK_STAT 0x10
  32. #define SRV_STAT 0x10
  33. #define WRERR_STAT 0x20
  34. #define READY_STAT 0x40
  35. #define BUSY_STAT 0x80
  36. /* Bits for HD_ERROR */
  37. #define MARK_ERR 0x01 /* Bad address mark */
  38. #define TRK0_ERR 0x02 /* couldn't find track 0 */
  39. #define ABRT_ERR 0x04 /* Command aborted */
  40. #define MCR_ERR 0x08 /* media change request */
  41. #define ID_ERR 0x10 /* ID field not found */
  42. #define MC_ERR 0x20 /* media changed */
  43. #define ECC_ERR 0x40 /* Uncorrectable ECC error */
  44. #define BBD_ERR 0x80 /* pre-EIDE meaning:  block marked bad */
  45. #define ICRC_ERR 0x80 /* new meaning:  CRC error during transfer */
  46. /* Bits of HD_NSECTOR */
  47. #define CD 0x01
  48. #define IO 0x02
  49. #define REL 0x04
  50. #define TAG_MASK 0xf8
  51. #endif /* __KERNEL__ */
  52. /*
  53.  * Command Header sizes for IOCTL commands
  54.  */
  55. #define HDIO_DRIVE_CMD_HDR_SIZE (4 * sizeof(u8))
  56. #define HDIO_DRIVE_HOB_HDR_SIZE (8 * sizeof(u8))
  57. #define HDIO_DRIVE_TASK_HDR_SIZE (8 * sizeof(u8))
  58. #define IDE_DRIVE_TASK_INVALID -1
  59. #define IDE_DRIVE_TASK_NO_DATA 0
  60. #define IDE_DRIVE_TASK_SET_XFER 1
  61. #define IDE_DRIVE_TASK_IN 2
  62. #define IDE_DRIVE_TASK_OUT 3
  63. #define IDE_DRIVE_TASK_RAW_WRITE 4
  64. /*
  65.  * Define standard taskfile in/out register
  66.  */
  67. #define IDE_TASKFILE_STD_OUT_FLAGS 0xFE
  68. #define IDE_TASKFILE_STD_IN_FLAGS 0xFE
  69. #define IDE_HOB_STD_OUT_FLAGS 0x3C
  70. #define IDE_HOB_STD_IN_FLAGS 0x3C
  71. typedef unsigned char task_ioreg_t;
  72. typedef unsigned long sata_ioreg_t;
  73. typedef union ide_reg_valid_s {
  74. unsigned all : 16;
  75. struct {
  76. unsigned data : 1;
  77. unsigned error_feature : 1;
  78. unsigned sector : 1;
  79. unsigned nsector : 1;
  80. unsigned lcyl : 1;
  81. unsigned hcyl : 1;
  82. unsigned select : 1;
  83. unsigned status_command : 1;
  84. unsigned data_hob : 1;
  85. unsigned error_feature_hob : 1;
  86. unsigned sector_hob : 1;
  87. unsigned nsector_hob : 1;
  88. unsigned lcyl_hob : 1;
  89. unsigned hcyl_hob : 1;
  90. unsigned select_hob : 1;
  91. unsigned control_hob : 1;
  92. } b;
  93. } ide_reg_valid_t;
  94. typedef struct ide_task_request_s {
  95. task_ioreg_t io_ports[8];
  96. task_ioreg_t hob_ports[8];
  97. ide_reg_valid_t out_flags;
  98. ide_reg_valid_t in_flags;
  99. int data_phase;
  100. int req_cmd;
  101. unsigned long out_size;
  102. unsigned long in_size;
  103. } ide_task_request_t;
  104. typedef struct ide_ioctl_request_s {
  105. ide_task_request_t *task_request;
  106. unsigned char *out_buffer;
  107. unsigned char *in_buffer;
  108. } ide_ioctl_request_t;
  109. struct hd_drive_cmd_hdr {
  110. task_ioreg_t command;
  111. task_ioreg_t sector_number;
  112. task_ioreg_t feature;
  113. task_ioreg_t sector_count;
  114. };
  115. typedef struct hd_drive_task_hdr {
  116. task_ioreg_t data;
  117. task_ioreg_t feature;
  118. task_ioreg_t sector_count;
  119. task_ioreg_t sector_number;
  120. task_ioreg_t low_cylinder;
  121. task_ioreg_t high_cylinder;
  122. task_ioreg_t device_head;
  123. task_ioreg_t command;
  124. } task_struct_t;
  125. typedef struct hd_drive_hob_hdr {
  126. task_ioreg_t data;
  127. task_ioreg_t feature;
  128. task_ioreg_t sector_count;
  129. task_ioreg_t sector_number;
  130. task_ioreg_t low_cylinder;
  131. task_ioreg_t high_cylinder;
  132. task_ioreg_t device_head;
  133. task_ioreg_t control;
  134. } hob_struct_t;
  135. #define TASKFILE_INVALID 0x7fff
  136. #define TASKFILE_48 0x8000
  137. #define TASKFILE_NO_DATA 0x0000
  138. #define TASKFILE_IN 0x0001
  139. #define TASKFILE_MULTI_IN 0x0002
  140. #define TASKFILE_OUT 0x0004
  141. #define TASKFILE_MULTI_OUT 0x0008
  142. #define TASKFILE_IN_OUT 0x0010
  143. #define TASKFILE_IN_DMA 0x0020
  144. #define TASKFILE_OUT_DMA 0x0040
  145. #define TASKFILE_IN_DMAQ 0x0080
  146. #define TASKFILE_OUT_DMAQ 0x0100
  147. #define TASKFILE_P_IN 0x0200
  148. #define TASKFILE_P_OUT 0x0400
  149. #define TASKFILE_P_IN_DMA 0x0800
  150. #define TASKFILE_P_OUT_DMA 0x1000
  151. #define TASKFILE_P_IN_DMAQ 0x2000
  152. #define TASKFILE_P_OUT_DMAQ 0x4000
  153. /* ATA/ATAPI Commands pre T13 Spec */
  154. #define WIN_NOP 0x00
  155. /*
  156.  * 0x01->0x02 Reserved
  157.  */
  158. #define CFA_REQ_EXT_ERROR_CODE 0x03 /* CFA Request Extended Error Code */
  159. /*
  160.  * 0x04->0x07 Reserved
  161.  */
  162. #define WIN_SRST 0x08 /* ATAPI soft reset command */
  163. #define WIN_DEVICE_RESET 0x08
  164. /*
  165.  * 0x09->0x0F Reserved
  166.  */
  167. #define WIN_RECAL 0x10
  168. #define WIN_RESTORE WIN_RECAL
  169. /*
  170.  * 0x10->0x1F Reserved
  171.  */
  172. #define WIN_READ 0x20 /* 28-Bit */
  173. #define WIN_READ_ONCE 0x21 /* 28-Bit without retries */
  174. #define WIN_READ_LONG 0x22 /* 28-Bit */
  175. #define WIN_READ_LONG_ONCE 0x23 /* 28-Bit without retries */
  176. #define WIN_READ_EXT 0x24 /* 48-Bit */
  177. #define WIN_READDMA_EXT 0x25 /* 48-Bit */
  178. #define WIN_READDMA_QUEUED_EXT 0x26 /* 48-Bit */
  179. #define WIN_READ_NATIVE_MAX_EXT 0x27 /* 48-Bit */
  180. /*
  181.  * 0x28
  182.  */
  183. #define WIN_MULTREAD_EXT 0x29 /* 48-Bit */
  184. /*
  185.  * 0x2A->0x2F Reserved
  186.  */
  187. #define WIN_WRITE 0x30 /* 28-Bit */
  188. #define WIN_WRITE_ONCE 0x31 /* 28-Bit without retries */
  189. #define WIN_WRITE_LONG 0x32 /* 28-Bit */
  190. #define WIN_WRITE_LONG_ONCE 0x33 /* 28-Bit without retries */
  191. #define WIN_WRITE_EXT 0x34 /* 48-Bit */
  192. #define WIN_WRITEDMA_EXT 0x35 /* 48-Bit */
  193. #define WIN_WRITEDMA_QUEUED_EXT 0x36 /* 48-Bit */
  194. #define WIN_SET_MAX_EXT 0x37 /* 48-Bit */
  195. #define CFA_WRITE_SECT_WO_ERASE 0x38 /* CFA Write Sectors without erase */
  196. #define WIN_MULTWRITE_EXT 0x39 /* 48-Bit */
  197. /*
  198.  * 0x3A->0x3B Reserved
  199.  */
  200. #define WIN_WRITE_VERIFY 0x3C /* 28-Bit */
  201. /*
  202.  * 0x3D->0x3F Reserved
  203.  */
  204. #define WIN_VERIFY 0x40 /* 28-Bit - Read Verify Sectors */
  205. #define WIN_VERIFY_ONCE 0x41 /* 28-Bit - without retries */
  206. #define WIN_VERIFY_EXT 0x42 /* 48-Bit */
  207. /*
  208.  * 0x43->0x4F Reserved
  209.  */
  210. #define WIN_FORMAT 0x50
  211. /*
  212.  * 0x51->0x5F Reserved
  213.  */
  214. #define WIN_INIT 0x60
  215. /*
  216.  * 0x61->0x5F Reserved
  217.  */
  218. #define WIN_SEEK 0x70 /* 0x70-0x7F Reserved */
  219. #define CFA_TRANSLATE_SECTOR 0x87 /* CFA Translate Sector */
  220. #define WIN_DIAGNOSE 0x90
  221. #define WIN_SPECIFY 0x91 /* set drive geometry translation */
  222. #define WIN_DOWNLOAD_MICROCODE 0x92
  223. #define WIN_STANDBYNOW2 0x94
  224. #define WIN_STANDBY2 0x96
  225. #define WIN_SETIDLE2 0x97
  226. #define WIN_CHECKPOWERMODE2 0x98
  227. #define WIN_SLEEPNOW2 0x99
  228. /*
  229.  * 0x9A VENDOR
  230.  */
  231. #define WIN_PACKETCMD 0xA0 /* Send a packet command. */
  232. #define WIN_PIDENTIFY 0xA1 /* identify ATAPI device */
  233. #define WIN_QUEUED_SERVICE 0xA2
  234. #define WIN_SMART 0xB0 /* self-monitoring and reporting */
  235. #define CFA_ERASE_SECTORS 0xC0
  236. #define WIN_MULTREAD 0xC4 /* read sectors using multiple mode*/
  237. #define WIN_MULTWRITE 0xC5 /* write sectors using multiple mode */
  238. #define WIN_SETMULT 0xC6 /* enable/disable multiple mode */
  239. #define WIN_READDMA_QUEUED 0xC7 /* read sectors using Queued DMA transfers */
  240. #define WIN_READDMA 0xC8 /* read sectors using DMA transfers */
  241. #define WIN_READDMA_ONCE 0xC9 /* 28-Bit - without retries */
  242. #define WIN_WRITEDMA 0xCA /* write sectors using DMA transfers */
  243. #define WIN_WRITEDMA_ONCE 0xCB /* 28-Bit - without retries */
  244. #define WIN_WRITEDMA_QUEUED 0xCC /* write sectors using Queued DMA transfers */
  245. #define CFA_WRITE_MULTI_WO_ERASE 0xCD /* CFA Write multiple without erase */
  246. #define WIN_GETMEDIASTATUS 0xDA
  247. #define WIN_ACKMEDIACHANGE 0xDB /* ATA-1, ATA-2 vendor */
  248. #define WIN_POSTBOOT 0xDC
  249. #define WIN_PREBOOT  0xDD
  250. #define WIN_DOORLOCK 0xDE /* lock door on removable drives */
  251. #define WIN_DOORUNLOCK 0xDF /* unlock door on removable drives */
  252. #define WIN_STANDBYNOW1 0xE0
  253. #define WIN_IDLEIMMEDIATE 0xE1 /* force drive to become "ready" */
  254. #define WIN_STANDBY 0xE2 /* Set device in Standby Mode */
  255. #define WIN_SETIDLE1 0xE3
  256. #define WIN_READ_BUFFER 0xE4 /* force read only 1 sector */
  257. #define WIN_CHECKPOWERMODE1 0xE5
  258. #define WIN_SLEEPNOW1 0xE6
  259. #define WIN_FLUSH_CACHE 0xE7
  260. #define WIN_WRITE_BUFFER 0xE8 /* force write only 1 sector */
  261. #define WIN_WRITE_SAME 0xE9 /* read ata-2 to use */
  262. /* SET_FEATURES 0x22 or 0xDD */
  263. #define WIN_FLUSH_CACHE_EXT 0xEA /* 48-Bit */
  264. #define WIN_IDENTIFY 0xEC /* ask drive to identify itself */
  265. #define WIN_MEDIAEJECT 0xED
  266. #define WIN_IDENTIFY_DMA 0xEE /* same as WIN_IDENTIFY, but DMA */
  267. #define WIN_SETFEATURES 0xEF /* set special drive features */
  268. #define EXABYTE_ENABLE_NEST 0xF0
  269. #define WIN_SECURITY_SET_PASS 0xF1
  270. #define WIN_SECURITY_UNLOCK 0xF2
  271. #define WIN_SECURITY_ERASE_PREPARE 0xF3
  272. #define WIN_SECURITY_ERASE_UNIT 0xF4
  273. #define WIN_SECURITY_FREEZE_LOCK 0xF5
  274. #define WIN_SECURITY_DISABLE 0xF6
  275. #define WIN_READ_NATIVE_MAX 0xF8 /* return the native maximum address */
  276. #define WIN_SET_MAX 0xF9
  277. #define DISABLE_SEAGATE 0xFB
  278. /* WIN_SMART sub-commands */
  279. #define SMART_READ_VALUES 0xD0
  280. #define SMART_READ_THRESHOLDS 0xD1
  281. #define SMART_AUTOSAVE 0xD2
  282. #define SMART_SAVE 0xD3
  283. #define SMART_IMMEDIATE_OFFLINE 0xD4
  284. #define SMART_READ_LOG_SECTOR 0xD5
  285. #define SMART_WRITE_LOG_SECTOR 0xD6
  286. #define SMART_WRITE_THRESHOLDS 0xD7
  287. #define SMART_ENABLE 0xD8
  288. #define SMART_DISABLE 0xD9
  289. #define SMART_STATUS 0xDA
  290. #define SMART_AUTO_OFFLINE 0xDB
  291. /* Password used in TF4 & TF5 executing SMART commands */
  292. #define SMART_LCYL_PASS 0x4F
  293. #define SMART_HCYL_PASS 0xC2
  294. /* WIN_SETFEATURES sub-commands */
  295. #define SETFEATURES_EN_8BIT 0x01 /* Enable 8-Bit Transfers */
  296. #define SETFEATURES_EN_WCACHE 0x02 /* Enable write cache */
  297. #define SETFEATURES_DIS_DEFECT 0x04 /* Disable Defect Management */
  298. #define SETFEATURES_EN_APM 0x05 /* Enable advanced power management */
  299. #define SETFEATURES_EN_SAME_R 0x22 /* for a region ATA-1 */
  300. #define SETFEATURES_DIS_MSN 0x31 /* Disable Media Status Notification */
  301. #define SETFEATURES_DIS_RETRY 0x33 /* Disable Retry */
  302. #define SETFEATURES_EN_AAM 0x42 /* Enable Automatic Acoustic Management */
  303. #define SETFEATURES_RW_LONG 0x44 /* Set Length of VS bytes */
  304. #define SETFEATURES_SET_CACHE 0x54 /* Set Cache segments to SC Reg. Val */
  305. #define SETFEATURES_DIS_RLA 0x55 /* Disable read look-ahead feature */
  306. #define SETFEATURES_EN_RI 0x5D /* Enable release interrupt */
  307. #define SETFEATURES_EN_SI 0x5E /* Enable SERVICE interrupt */
  308. #define SETFEATURES_DIS_RPOD 0x66 /* Disable reverting to power on defaults */
  309. #define SETFEATURES_DIS_ECC 0x77 /* Disable ECC byte count */
  310. #define SETFEATURES_DIS_8BIT 0x81 /* Disable 8-Bit Transfers */
  311. #define SETFEATURES_DIS_WCACHE 0x82 /* Disable write cache */
  312. #define SETFEATURES_EN_DEFECT 0x84 /* Enable Defect Management */
  313. #define SETFEATURES_DIS_APM 0x85 /* Disable advanced power management */
  314. #define SETFEATURES_EN_ECC 0x88 /* Enable ECC byte count */
  315. #define SETFEATURES_EN_MSN 0x95 /* Enable Media Status Notification */
  316. #define SETFEATURES_EN_RETRY 0x99 /* Enable Retry */
  317. #define SETFEATURES_EN_RLA 0xAA /* Enable read look-ahead feature */
  318. #define SETFEATURES_PREFETCH 0xAB /* Sets drive prefetch value */
  319. #define SETFEATURES_EN_REST 0xAC /* ATA-1 */
  320. #define SETFEATURES_4B_RW_LONG 0xBB /* Set Lenght of 4 bytes */
  321. #define SETFEATURES_DIS_AAM 0xC2 /* Disable Automatic Acoustic Management */
  322. #define SETFEATURES_EN_RPOD 0xCC /* Enable reverting to power on defaults */
  323. #define SETFEATURES_DIS_RI 0xDD /* Disable release interrupt ATAPI */
  324. #define SETFEATURES_EN_SAME_M 0xDD /* for a entire device ATA-1 */
  325. #define SETFEATURES_DIS_SI 0xDE /* Disable SERVICE interrupt ATAPI */
  326. /* WIN_SECURITY sub-commands */
  327. #define SECURITY_SET_PASSWORD 0xBA
  328. #define SECURITY_UNLOCK 0xBB
  329. #define SECURITY_ERASE_PREPARE 0xBC
  330. #define SECURITY_ERASE_UNIT 0xBD
  331. #define SECURITY_FREEZE_LOCK 0xBE
  332. #define SECURITY_DISABLE_PASSWORD 0xBF
  333. struct hd_geometry {
  334.       unsigned char heads;
  335.       unsigned char sectors;
  336.       unsigned short cylinders;
  337.       unsigned long start;
  338. };
  339. /* hd/ide ctl's that pass (arg) ptrs to user space are numbered 0x030n/0x031n */
  340. #define HDIO_GETGEO 0x0301 /* get device geometry */
  341. #define HDIO_GET_UNMASKINTR 0x0302 /* get current unmask setting */
  342. #define HDIO_GET_MULTCOUNT 0x0304 /* get current IDE blockmode setting */
  343. #define HDIO_GET_QDMA 0x0305 /* get use-qdma flag */
  344. #define HDIO_SET_XFER 0x0306  /* set transfer rate via proc */
  345. #define HDIO_OBSOLETE_IDENTITY 0x0307 /* OBSOLETE, DO NOT USE: returns 142 bytes */
  346. #define HDIO_GET_KEEPSETTINGS 0x0308 /* get keep-settings-on-reset flag */
  347. #define HDIO_GET_32BIT 0x0309 /* get current io_32bit setting */
  348. #define HDIO_GET_NOWERR 0x030a /* get ignore-write-error flag */
  349. #define HDIO_GET_DMA 0x030b /* get use-dma flag */
  350. #define HDIO_GET_NICE 0x030c /* get nice flags */
  351. #define HDIO_GET_IDENTITY 0x030d /* get IDE identification info */
  352. #define HDIO_GET_WCACHE 0x030e /* get write cache mode on|off */
  353. #define HDIO_GET_ACOUSTIC 0x030f /* get acoustic value */
  354. #define HDIO_GET_ADDRESS 0x0310 /* */
  355. #define HDIO_GET_BUSSTATE 0x031a /* get the bus state of the hwif */
  356. #define HDIO_TRISTATE_HWIF 0x031b /* execute a channel tristate */
  357. #define HDIO_DRIVE_RESET 0x031c /* execute a device reset */
  358. #define HDIO_DRIVE_TASKFILE 0x031d /* execute raw taskfile */
  359. #define HDIO_DRIVE_TASK 0x031e /* execute task and special drive command */
  360. #define HDIO_DRIVE_CMD 0x031f /* execute a special drive command */
  361. #define HDIO_DRIVE_CMD_AEB HDIO_DRIVE_TASK
  362. /* hd/ide ctl's that pass (arg) non-ptr values are numbered 0x032n/0x033n */
  363. #define HDIO_SET_MULTCOUNT 0x0321 /* change IDE blockmode */
  364. #define HDIO_SET_UNMASKINTR 0x0322 /* permit other irqs during I/O */
  365. #define HDIO_SET_KEEPSETTINGS 0x0323 /* keep ioctl settings on reset */
  366. #define HDIO_SET_32BIT 0x0324 /* change io_32bit flags */
  367. #define HDIO_SET_NOWERR 0x0325 /* change ignore-write-error flag */
  368. #define HDIO_SET_DMA 0x0326 /* change use-dma flag */
  369. #define HDIO_SET_PIO_MODE 0x0327 /* reconfig interface to new speed */
  370. #define HDIO_SCAN_HWIF 0x0328 /* register and (re)scan interface */
  371. #define HDIO_SET_NICE 0x0329 /* set nice flags */
  372. #define HDIO_UNREGISTER_HWIF 0x032a  /* unregister interface */
  373. #define HDIO_SET_WCACHE 0x032b /* change write cache enable-disable */
  374. #define HDIO_SET_ACOUSTIC 0x032c /* change acoustic behavior */
  375. #define HDIO_SET_BUSSTATE 0x032d /* set the bus state of the hwif */
  376. #define HDIO_SET_QDMA 0x032e /* change use-qdma flag */
  377. #define HDIO_SET_ADDRESS 0x032f /* change lba addressing modes */
  378. /* bus states */
  379. enum {
  380. BUSSTATE_OFF = 0,
  381. BUSSTATE_ON,
  382. BUSSTATE_TRISTATE
  383. };
  384. /* hd/ide ctl's that pass (arg) ptrs to user space are numbered 0x033n/0x033n */
  385. /* 0x330 is reserved - used to be HDIO_GETGEO_BIG */
  386. /* 0x331 is reserved - used to be HDIO_GETGEO_BIG_RAW */
  387. /* 0x338 is reserved - used to be HDIO_SET_IDE_SCSI */
  388. /* 0x339 is reserved - used to be HDIO_SET_SCSI_IDE */
  389. #define __NEW_HD_DRIVE_ID
  390. /*
  391.  * Structure returned by HDIO_GET_IDENTITY, as per ANSI NCITS ATA6 rev.1b spec.
  392.  *
  393.  * If you change something here, please remember to update fix_driveid() in
  394.  * ide/probe.c.
  395.  */
  396. struct hd_driveid {
  397. unsigned short config; /* lots of obsolete bit flags */
  398. unsigned short cyls; /* Obsolete, "physical" cyls */
  399. unsigned short reserved2; /* reserved (word 2) */
  400. unsigned short heads; /* Obsolete, "physical" heads */
  401. unsigned short track_bytes; /* unformatted bytes per track */
  402. unsigned short sector_bytes; /* unformatted bytes per sector */
  403. unsigned short sectors; /* Obsolete, "physical" sectors per track */
  404. unsigned short vendor0; /* vendor unique */
  405. unsigned short vendor1; /* vendor unique */
  406. unsigned short vendor2; /* Retired vendor unique */
  407. unsigned char serial_no[20]; /* 0 = not_specified */
  408. unsigned short buf_type; /* Retired */
  409. unsigned short buf_size; /* Retired, 512 byte increments
  410.  * 0 = not_specified
  411.  */
  412. unsigned short ecc_bytes; /* for r/w long cmds; 0 = not_specified */
  413. unsigned char fw_rev[8]; /* 0 = not_specified */
  414. unsigned char model[40]; /* 0 = not_specified */
  415. unsigned char max_multsect; /* 0=not_implemented */
  416. unsigned char vendor3; /* vendor unique */
  417. unsigned short dword_io; /* 0=not_implemented; 1=implemented */
  418. unsigned char vendor4; /* vendor unique */
  419. unsigned char capability; /* (upper byte of word 49)
  420.  *  3: IORDYsup
  421.  *  2: IORDYsw
  422.  *  1: LBA
  423.  *  0: DMA
  424.  */
  425. unsigned short reserved50; /* reserved (word 50) */
  426. unsigned char vendor5; /* Obsolete, vendor unique */
  427. unsigned char tPIO; /* Obsolete, 0=slow, 1=medium, 2=fast */
  428. unsigned char vendor6; /* Obsolete, vendor unique */
  429. unsigned char tDMA; /* Obsolete, 0=slow, 1=medium, 2=fast */
  430. unsigned short field_valid; /* (word 53)
  431.  *  2: ultra_ok word  88
  432.  *  1: eide_ok words 64-70
  433.  *  0: cur_ok words 54-58
  434.  */
  435. unsigned short cur_cyls; /* Obsolete, logical cylinders */
  436. unsigned short cur_heads; /* Obsolete, l heads */
  437. unsigned short cur_sectors; /* Obsolete, l sectors per track */
  438. unsigned short cur_capacity0; /* Obsolete, l total sectors on drive */
  439. unsigned short cur_capacity1; /* Obsolete, (2 words, misaligned int)     */
  440. unsigned char multsect; /* current multiple sector count */
  441. unsigned char multsect_valid; /* when (bit0==1) multsect is ok */
  442. unsigned int lba_capacity; /* Obsolete, total number of sectors */
  443. unsigned short dma_1word; /* Obsolete, single-word dma info */
  444. unsigned short dma_mword; /* multiple-word dma info */
  445. unsigned short  eide_pio_modes; /* bits 0:mode3 1:mode4 */
  446. unsigned short  eide_dma_min; /* min mword dma cycle time (ns) */
  447. unsigned short  eide_dma_time; /* recommended mword dma cycle time (ns) */
  448. unsigned short  eide_pio;       /* min cycle time (ns), no IORDY  */
  449. unsigned short  eide_pio_iordy; /* min cycle time (ns), with IORDY */
  450. unsigned short words69_70[2]; /* reserved words 69-70
  451.  * future command overlap and queuing
  452.  */
  453. /* HDIO_GET_IDENTITY currently returns only words 0 through 70 */
  454. unsigned short words71_74[4]; /* reserved words 71-74
  455.  * for IDENTIFY PACKET DEVICE command
  456.  */
  457. unsigned short  queue_depth; /* (word 75)
  458.  * 15:5 reserved
  459.  *  4:0 Maximum queue depth -1
  460.  */
  461. unsigned short  words76_79[4]; /* reserved words 76-79 */
  462. unsigned short  major_rev_num; /* (word 80) */
  463. unsigned short  minor_rev_num; /* (word 81) */
  464. unsigned short  command_set_1; /* (word 82) supported
  465.  * 15: Obsolete
  466.  * 14: NOP command
  467.  * 13: READ_BUFFER
  468.  * 12: WRITE_BUFFER
  469.  * 11: Obsolete
  470.  * 10: Host Protected Area
  471.  *  9: DEVICE Reset
  472.  *  8: SERVICE Interrupt
  473.  *  7: Release Interrupt
  474.  *  6: look-ahead
  475.  *  5: write cache
  476.  *  4: PACKET Command
  477.  *  3: Power Management Feature Set
  478.  *  2: Removable Feature Set
  479.  *  1: Security Feature Set
  480.  *  0: SMART Feature Set
  481.  */
  482. unsigned short  command_set_2; /* (word 83)
  483.  * 15: Shall be ZERO
  484.  * 14: Shall be ONE
  485.  * 13: FLUSH CACHE EXT
  486.  * 12: FLUSH CACHE
  487.  * 11: Device Configuration Overlay
  488.  * 10: 48-bit Address Feature Set
  489.  *  9: Automatic Acoustic Management
  490.  *  8: SET MAX security
  491.  *  7: reserved 1407DT PARTIES
  492.  *  6: SetF sub-command Power-Up
  493.  *  5: Power-Up in Standby Feature Set
  494.  *  4: Removable Media Notification
  495.  *  3: APM Feature Set
  496.  *  2: CFA Feature Set
  497.  *  1: READ/WRITE DMA QUEUED
  498.  *  0: Download MicroCode
  499.  */
  500. unsigned short  cfsse; /* (word 84)
  501.  * cmd set-feature supported extensions
  502.  * 15: Shall be ZERO
  503.  * 14: Shall be ONE
  504.  * 13:6 reserved
  505.  *  5: General Purpose Logging
  506.  *  4: Streaming Feature Set
  507.  *  3: Media Card Pass Through
  508.  *  2: Media Serial Number Valid
  509.  *  1: SMART selt-test supported
  510.  *  0: SMART error logging
  511.  */
  512. unsigned short  cfs_enable_1; /* (word 85)
  513.  * command set-feature enabled
  514.  * 15: Obsolete
  515.  * 14: NOP command
  516.  * 13: READ_BUFFER
  517.  * 12: WRITE_BUFFER
  518.  * 11: Obsolete
  519.  * 10: Host Protected Area
  520.  *  9: DEVICE Reset
  521.  *  8: SERVICE Interrupt
  522.  *  7: Release Interrupt
  523.  *  6: look-ahead
  524.  *  5: write cache
  525.  *  4: PACKET Command
  526.  *  3: Power Management Feature Set
  527.  *  2: Removable Feature Set
  528.  *  1: Security Feature Set
  529.  *  0: SMART Feature Set
  530.  */
  531. unsigned short  cfs_enable_2; /* (word 86)
  532.  * command set-feature enabled
  533.  * 15: Shall be ZERO
  534.  * 14: Shall be ONE
  535.  * 13: FLUSH CACHE EXT
  536.  * 12: FLUSH CACHE
  537.  * 11: Device Configuration Overlay
  538.  * 10: 48-bit Address Feature Set
  539.  *  9: Automatic Acoustic Management
  540.  *  8: SET MAX security
  541.  *  7: reserved 1407DT PARTIES
  542.  *  6: SetF sub-command Power-Up
  543.  *  5: Power-Up in Standby Feature Set
  544.  *  4: Removable Media Notification
  545.  *  3: APM Feature Set
  546.  *  2: CFA Feature Set
  547.  *  1: READ/WRITE DMA QUEUED
  548.  *  0: Download MicroCode
  549.  */
  550. unsigned short  csf_default; /* (word 87)
  551.  * command set-feature default
  552.  * 15: Shall be ZERO
  553.  * 14: Shall be ONE
  554.  * 13:6 reserved
  555.  *  5: General Purpose Logging enabled
  556.  *  4: Valid CONFIGURE STREAM executed
  557.  *  3: Media Card Pass Through enabled
  558.  *  2: Media Serial Number Valid
  559.  *  1: SMART selt-test supported
  560.  *  0: SMART error logging
  561.  */
  562. unsigned short  dma_ultra; /* (word 88) */
  563. unsigned short trseuc; /* time required for security erase */
  564. unsigned short trsEuc; /* time required for enhanced erase */
  565. unsigned short CurAPMvalues; /* current APM values */
  566. unsigned short mprc; /* master password revision code */
  567. unsigned short hw_config; /* hardware config (word 93)
  568.  * 15: Shall be ZERO
  569.  * 14: Shall be ONE
  570.  * 13:
  571.  * 12:
  572.  * 11:
  573.  * 10:
  574.  *  9:
  575.  *  8:
  576.  *  7:
  577.  *  6:
  578.  *  5:
  579.  *  4:
  580.  *  3:
  581.  *  2:
  582.  *  1:
  583.  *  0: Shall be ONE
  584.  */
  585. unsigned short acoustic; /* (word 94)
  586.  * 15:8 Vendor's recommended value
  587.  *  7:0 current value
  588.  */
  589. unsigned short msrqs; /* min stream request size */
  590. unsigned short sxfert; /* stream transfer time */
  591. unsigned short sal; /* stream access latency */
  592. unsigned int spg; /* stream performance granularity */
  593. unsigned long long lba_capacity_2;/* 48-bit total number of sectors */
  594. unsigned short words104_125[22];/* reserved words 104-125 */
  595. unsigned short last_lun; /* (word 126) */
  596. unsigned short word127; /* (word 127) Feature Set
  597.  * Removable Media Notification
  598.  * 15:2 reserved
  599.  *  1:0 00 = not supported
  600.  * 01 = supported
  601.  * 10 = reserved
  602.  * 11 = reserved
  603.  */
  604. unsigned short dlf; /* (word 128)
  605.  * device lock function
  606.  * 15:9 reserved
  607.  *  8 security level 1:max 0:high
  608.  *  7:6 reserved
  609.  *  5 enhanced erase
  610.  *  4 expire
  611.  *  3 frozen
  612.  *  2 locked
  613.  *  1 en/disabled
  614.  *  0 capability
  615.  */
  616. unsigned short  csfo; /*  (word 129)
  617.  * current set features options
  618.  * 15:4 reserved
  619.  *  3: auto reassign
  620.  *  2: reverting
  621.  *  1: read-look-ahead
  622.  *  0: write cache
  623.  */
  624. unsigned short words130_155[26];/* reserved vendor words 130-155 */
  625. unsigned short word156; /* reserved vendor word 156 */
  626. unsigned short words157_159[3];/* reserved vendor words 157-159 */
  627. unsigned short cfa_power; /* (word 160) CFA Power Mode
  628.  * 15 word 160 supported
  629.  * 14 reserved
  630.  * 13
  631.  * 12
  632.  * 11:0
  633.  */
  634. unsigned short words161_175[15];/* Reserved for CFA */
  635. unsigned short words176_205[30];/* Current Media Serial Number */
  636. unsigned short words206_254[49];/* reserved words 206-254 */
  637. unsigned short integrity_word; /* (word 255)
  638.  * 15:8 Checksum
  639.  *  7:0 Signature
  640.  */
  641. };
  642. /*
  643.  * IDE "nice" flags. These are used on a per drive basis to determine
  644.  * when to be nice and give more bandwidth to the other devices which
  645.  * share the same IDE bus.
  646.  */
  647. #define IDE_NICE_DSC_OVERLAP (0) /* per the DSC overlap protocol */
  648. #define IDE_NICE_ATAPI_OVERLAP (1) /* not supported yet */
  649. #define IDE_NICE_0 (2) /* when sure that it won't affect us */
  650. #define IDE_NICE_1 (3) /* when probably won't affect us much */
  651. #define IDE_NICE_2 (4) /* when we know it's on our expense */
  652. #endif /* _LINUX_HDREG_H */