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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_HDREG_H
  2. #define _LINUX_HDREG_H
  3. /*
  4.  * This file contains some defines for the AT-hd-controller.
  5.  * Various sources.  
  6.  */
  7. #define HD_IRQ 14 /* the standard disk interrupt */
  8. /* ide.c has its own port definitions in "ide.h" */
  9. /* Hd controller regs. Ref: IBM AT Bios-listing */
  10. #define HD_DATA 0x1f0 /* _CTL when writing */
  11. #define HD_ERROR 0x1f1 /* see err-bits */
  12. #define HD_NSECTOR 0x1f2 /* nr of sectors to read/write */
  13. #define HD_SECTOR 0x1f3 /* starting sector */
  14. #define HD_LCYL 0x1f4 /* starting cylinder */
  15. #define HD_HCYL 0x1f5 /* high byte of starting cyl */
  16. #define HD_CURRENT 0x1f6 /* 101dhhhh , d=drive, hhhh=head */
  17. #define HD_STATUS 0x1f7 /* see status-bits */
  18. #define HD_FEATURE HD_ERROR /* same io address, read=error, write=feature */
  19. #define HD_PRECOMP HD_FEATURE /* obsolete use of this port - predates IDE */
  20. #define HD_COMMAND HD_STATUS /* same io address, read=status, write=cmd */
  21. #define HD_CMD 0x3f6 /* used for resets */
  22. #define HD_ALTSTATUS 0x3f6 /* same as HD_STATUS but doesn't clear irq */
  23. /* remainder is shared between hd.c, ide.c, ide-cd.c, and the hdparm utility */
  24. /* Bits of HD_STATUS */
  25. #define ERR_STAT 0x01
  26. #define INDEX_STAT 0x02
  27. #define ECC_STAT 0x04 /* Corrected error */
  28. #define DRQ_STAT 0x08
  29. #define SEEK_STAT 0x10
  30. #define WRERR_STAT 0x20
  31. #define READY_STAT 0x40
  32. #define BUSY_STAT 0x80
  33. /* Values for HD_COMMAND */
  34. #define WIN_RESTORE 0x10
  35. #define WIN_READ 0x20
  36. #define WIN_WRITE 0x30
  37. #define WIN_WRITE_VERIFY 0x3C
  38. #define WIN_VERIFY 0x40
  39. #define WIN_FORMAT 0x50
  40. #define WIN_INIT 0x60
  41. #define WIN_SEEK 0x70
  42. #define WIN_DIAGNOSE 0x90
  43. #define WIN_SPECIFY 0x91 /* set drive geometry translation */
  44. #define WIN_IDLEIMMEDIATE 0xE1 /* force drive to become "ready" */
  45. #define WIN_SETIDLE1 0xE3
  46. #define WIN_SETIDLE2 0x97
  47. #define WIN_STANDBYNOW1 0xE0
  48. #define WIN_STANDBYNOW2 0x94
  49. #define WIN_SLEEPNOW1 0xE6
  50. #define WIN_SLEEPNOW2 0x99
  51. #define WIN_CHECKPOWERMODE1 0xE5
  52. #define WIN_CHECKPOWERMODE2 0x98
  53. #define WIN_DOORLOCK 0xDE /* lock door on removable drives */
  54. #define WIN_DOORUNLOCK 0xDF /* unlock door on removable drives */
  55. #define WIN_MULTREAD 0xC4 /* read sectors using multiple mode */
  56. #define WIN_MULTWRITE 0xC5 /* write sectors using multiple mode */
  57. #define WIN_SETMULT 0xC6 /* enable/disable multiple mode */
  58. #define WIN_IDENTIFY 0xEC /* ask drive to identify itself */
  59. #define WIN_IDENTIFY_DMA 0xEE /* same as WIN_IDENTIFY, but DMA */
  60. #define WIN_SETFEATURES 0xEF /* set special drive features */
  61. #define WIN_READDMA 0xC8 /* read sectors using DMA transfers */
  62. #define WIN_WRITEDMA 0xCA /* write sectors using DMA transfers */
  63. #define WIN_QUEUED_SERVICE 0xA2 /* */
  64. #define WIN_READDMA_QUEUED 0xC7 /* read sectors using Queued DMA transfers */
  65. #define WIN_WRITEDMA_QUEUED 0xCC /* write sectors using Queued DMA transfers */
  66. #define WIN_READ_BUFFER 0xE4 /* force read only 1 sector */
  67. #define WIN_WRITE_BUFFER 0xE8 /* force write only 1 sector */
  68. #define WIN_SMART 0xB0 /* self-monitoring and reporting */
  69. /* Additional drive command codes used by ATAPI devices. */
  70. #define WIN_PIDENTIFY 0xA1 /* identify ATAPI device */
  71. #define WIN_SRST 0x08 /* ATAPI soft reset command */
  72. #define WIN_PACKETCMD 0xA0 /* Send a packet command. */
  73. #define DISABLE_SEAGATE 0xFB
  74. #define EXABYTE_ENABLE_NEST 0xF0
  75. /* WIN_SMART sub-commands */
  76. #define SMART_READ_VALUES 0xd0
  77. #define SMART_READ_THRESHOLDS 0xd1
  78. #define SMART_AUTOSAVE 0xd2
  79. #define SMART_SAVE 0xd3
  80. #define SMART_IMMEDIATE_OFFLINE 0xd4
  81. #define SMART_READ_LOG_SECTOR 0xd5
  82. #define SMART_WRITE_LOG_SECTOR 0xd6
  83. #define SMART_WRITE_THRESHOLDS 0xd7
  84. #define SMART_ENABLE 0xd8
  85. #define SMART_DISABLE 0xd9
  86. #define SMART_STATUS 0xda
  87. #define SMART_AUTO_OFFLINE 0xdb
  88. /* WIN_SETFEATURES sub-commands */
  89. #define SETFEATURES_EN_WCACHE 0x02 /* Enable write cache */
  90. #define SETFEATURES_XFER 0x03 /* Set transfer mode */
  91. # define XFER_UDMA_7 0x47 /* 0100|0111 */
  92. # define XFER_UDMA_6 0x46 /* 0100|0110 */
  93. # define XFER_UDMA_5 0x45 /* 0100|0101 */
  94. # define XFER_UDMA_4 0x44 /* 0100|0100 */
  95. # define XFER_UDMA_3 0x43 /* 0100|0011 */
  96. # define XFER_UDMA_2 0x42 /* 0100|0010 */
  97. # define XFER_UDMA_1 0x41 /* 0100|0001 */
  98. # define XFER_UDMA_0 0x40 /* 0100|0000 */
  99. # define XFER_MW_DMA_2 0x22 /* 0010|0010 */
  100. # define XFER_MW_DMA_1 0x21 /* 0010|0001 */
  101. # define XFER_MW_DMA_0 0x20 /* 0010|0000 */
  102. # define XFER_SW_DMA_2 0x12 /* 0001|0010 */
  103. # define XFER_SW_DMA_1 0x11 /* 0001|0001 */
  104. # define XFER_SW_DMA_0 0x10 /* 0001|0000 */
  105. # define XFER_PIO_4 0x0C /* 0000|1100 */
  106. # define XFER_PIO_3 0x0B /* 0000|1011 */
  107. # define XFER_PIO_2 0x0A /* 0000|1010 */
  108. # define XFER_PIO_1 0x09 /* 0000|1001 */
  109. # define XFER_PIO_0 0x08 /* 0000|1000 */
  110. # define XFER_PIO_SLOW 0x00 /* 0000|0000 */
  111. #define SETFEATURES_DIS_DEFECT 0x04 /* Disable Defect Management */
  112. #define SETFEATURES_EN_APM 0x05 /* Enable advanced power management */
  113. #define SETFEATURES_DIS_MSN 0x31 /* Disable Media Status Notification */
  114. #define SETFEATURES_DIS_RLA 0x55 /* Disable read look-ahead feature */
  115. #define SETFEATURES_EN_RI 0x5D /* Enable release interrupt */
  116. #define SETFEATURES_EN_SI 0x5E /* Enable SERVICE interrupt */
  117. #define SETFEATURES_DIS_RPOD 0x66 /* Disable reverting to power on defaults */
  118. #define SETFEATURES_DIS_WCACHE 0x82 /* Disable write cache */
  119. #define SETFEATURES_EN_DEFECT 0x84 /* Enable Defect Management */
  120. #define SETFEATURES_DIS_APM 0x85 /* Disable advanced power management */
  121. #define SETFEATURES_EN_MSN 0x95 /* Enable Media Status Notification */
  122. #define SETFEATURES_EN_RLA 0xAA /* Enable read look-ahead feature */
  123. #define SETFEATURES_PREFETCH 0xAB /* Sets drive prefetch value */
  124. #define SETFEATURES_EN_RPOD 0xCC /* Enable reverting to power on defaults */
  125. #define SETFEATURES_DIS_RI 0xDD /* Disable release interrupt */
  126. #define SETFEATURES_DIS_SI 0xDE /* Disable SERVICE interrupt */
  127. /* WIN_SECURITY sub-commands */
  128. #define SECURITY_SET_PASSWORD 0xBA /* 0xF1 */
  129. #define SECURITY_UNLOCK 0xBB /* 0xF2 */
  130. #define SECURITY_ERASE_PREPARE 0xBC /* 0xF3 */
  131. #define SECURITY_ERASE_UNIT 0xBD /* 0xF4 */
  132. #define SECURITY_FREEZE_LOCK 0xBE /* 0xF5 */
  133. #define SECURITY_DISABLE_PASSWORD 0xBF /* 0xF6 */
  134. /* Bits for HD_ERROR */
  135. #define MARK_ERR 0x01 /* Bad address mark */
  136. #define TRK0_ERR 0x02 /* couldn't find track 0 */
  137. #define ABRT_ERR 0x04 /* Command aborted */
  138. #define MCR_ERR 0x08 /* media change request */
  139. #define ID_ERR 0x10 /* ID field not found */
  140. #define MC_ERR 0x20 /* media changed */
  141. #define ECC_ERR 0x40 /* Uncorrectable ECC error */
  142. #define BBD_ERR 0x80 /* pre-EIDE meaning:  block marked bad */
  143. #define ICRC_ERR 0x80 /* new meaning:  CRC error during transfer */
  144. struct hd_geometry {
  145.       unsigned char heads;
  146.       unsigned char sectors;
  147.       unsigned short cylinders;
  148.       unsigned long start;
  149. };
  150. /* hd/ide ctl's that pass (arg) ptrs to user space are numbered 0x030n/0x031n */
  151. #define HDIO_GETGEO 0x0301 /* get device geometry */
  152. #define HDIO_GET_UNMASKINTR 0x0302 /* get current unmask setting */
  153. #define HDIO_GET_MULTCOUNT 0x0304 /* get current IDE blockmode setting */
  154. #define HDIO_GET_QDMA 0x0305 /* get use-qdma flag */
  155. #define HDIO_OBSOLETE_IDENTITY 0x0307 /* OBSOLETE, DO NOT USE: returns 142 bytes */
  156. #define HDIO_GET_KEEPSETTINGS 0x0308 /* get keep-settings-on-reset flag */
  157. #define HDIO_GET_32BIT 0x0309 /* get current io_32bit setting */
  158. #define HDIO_GET_NOWERR 0x030a /* get ignore-write-error flag */
  159. #define HDIO_GET_DMA 0x030b /* get use-dma flag */
  160. #define HDIO_GET_NICE 0x030c /* get nice flags */
  161. #define HDIO_GET_IDENTITY 0x030d /* get IDE identification info */
  162. #define HDIO_GET_WCACHE 0x030e /* get write cache mode on|off */
  163. #define HDIO_GET_ACOUSTIC 0x030f /* get acoustic value */
  164. #define HDIO_GET_BUSSTATE 0x031a /* get the bus state of the hwif */
  165. #define HDIO_TRISTATE_HWIF 0x031b /* OBSOLETE - use SET_BUSSTATE */
  166. #define HDIO_DRIVE_RESET 0x031c /* execute a device reset */
  167. #define HDIO_DRIVE_TASKFILE 0x031d /* execute raw taskfile */
  168. #define HDIO_DRIVE_TASK 0x031e /* execute task and special drive command */
  169. #define HDIO_DRIVE_CMD 0x031f /* execute a special drive command */
  170. #define HDIO_DRIVE_CMD_AEB HDIO_DRIVE_TASK
  171. /* hd/ide ctl's that pass (arg) non-ptr values are numbered 0x032n/0x033n */
  172. #define HDIO_SET_MULTCOUNT 0x0321 /* change IDE blockmode */
  173. #define HDIO_SET_UNMASKINTR 0x0322 /* permit other irqs during I/O */
  174. #define HDIO_SET_KEEPSETTINGS 0x0323 /* keep ioctl settings on reset */
  175. #define HDIO_SET_32BIT 0x0324 /* change io_32bit flags */
  176. #define HDIO_SET_NOWERR 0x0325 /* change ignore-write-error flag */
  177. #define HDIO_SET_DMA 0x0326 /* change use-dma flag */
  178. #define HDIO_SET_PIO_MODE 0x0327 /* reconfig interface to new speed */
  179. #define HDIO_SCAN_HWIF 0x0328 /* register and (re)scan interface */
  180. #define HDIO_SET_NICE 0x0329 /* set nice flags */
  181. #define HDIO_UNREGISTER_HWIF 0x032a  /* unregister interface */
  182. #define HDIO_SET_WCACHE 0x032b /* change write cache enable-disable */
  183. #define HDIO_SET_ACOUSTIC 0x032c /* change acoustic behavior */
  184. #define HDIO_SET_BUSSTATE 0x032d /* set the bus state of the hwif */
  185. #define HDIO_SET_QDMA 0x032e /* change use-qdma flag */
  186. /* bus states */
  187. enum {
  188. BUSSTATE_OFF = 0,
  189. BUSSTATE_ON,
  190. BUSSTATE_TRISTATE
  191. };
  192. /* BIG GEOMETRY */
  193. struct hd_big_geometry {
  194. unsigned char heads;
  195. unsigned char sectors;
  196. unsigned int cylinders;
  197. unsigned long start;
  198. };
  199. /* hd/ide ctl's that pass (arg) ptrs to user space are numbered 0x033n/0x033n */
  200. #define HDIO_GETGEO_BIG 0x0330 /* */
  201. #define HDIO_GETGEO_BIG_RAW 0x0331 /* */
  202. #define __NEW_HD_DRIVE_ID
  203. /* structure returned by HDIO_GET_IDENTITY, as per ANSI ATA2 rev.2f spec */
  204. struct hd_driveid {
  205. unsigned short config; /* lots of obsolete bit flags */
  206. unsigned short cyls; /* "physical" cyls */
  207. unsigned short reserved2; /* reserved (word 2) */
  208. unsigned short heads; /* "physical" heads */
  209. unsigned short track_bytes; /* unformatted bytes per track */
  210. unsigned short sector_bytes; /* unformatted bytes per sector */
  211. unsigned short sectors; /* "physical" sectors per track */
  212. unsigned short vendor0; /* vendor unique */
  213. unsigned short vendor1; /* vendor unique */
  214. unsigned short vendor2; /* vendor unique */
  215. unsigned char serial_no[20]; /* 0 = not_specified */
  216. unsigned short buf_type;
  217. unsigned short buf_size; /* 512 byte increments; 0 = not_specified */
  218. unsigned short ecc_bytes; /* for r/w long cmds; 0 = not_specified */
  219. unsigned char fw_rev[8]; /* 0 = not_specified */
  220. unsigned char model[40]; /* 0 = not_specified */
  221. unsigned char max_multsect; /* 0=not_implemented */
  222. unsigned char vendor3; /* vendor unique */
  223. unsigned short dword_io; /* 0=not_implemented; 1=implemented */
  224. unsigned char vendor4; /* vendor unique */
  225. unsigned char capability; /* bits 0:DMA 1:LBA 2:IORDYsw 3:IORDYsup*/
  226. unsigned short reserved50; /* reserved (word 50) */
  227. unsigned char vendor5; /* vendor unique */
  228. unsigned char tPIO; /* 0=slow, 1=medium, 2=fast */
  229. unsigned char vendor6; /* vendor unique */
  230. unsigned char tDMA; /* 0=slow, 1=medium, 2=fast */
  231. unsigned short field_valid; /* bits 0:cur_ok 1:eide_ok */
  232. unsigned short cur_cyls; /* logical cylinders */
  233. unsigned short cur_heads; /* logical heads */
  234. unsigned short cur_sectors; /* logical sectors per track */
  235. unsigned short cur_capacity0; /* logical total sectors on drive */
  236. unsigned short cur_capacity1; /*  (2 words, misaligned int)     */
  237. unsigned char multsect; /* current multiple sector count */
  238. unsigned char multsect_valid; /* when (bit0==1) multsect is ok */
  239. unsigned int lba_capacity; /* total number of sectors */
  240. unsigned short dma_1word; /* single-word dma info */
  241. unsigned short dma_mword; /* multiple-word dma info */
  242. unsigned short  eide_pio_modes; /* bits 0:mode3 1:mode4 */
  243. unsigned short  eide_dma_min; /* min mword dma cycle time (ns) */
  244. unsigned short  eide_dma_time; /* recommended mword dma cycle time (ns) */
  245. unsigned short  eide_pio;       /* min cycle time (ns), no IORDY  */
  246. unsigned short  eide_pio_iordy; /* min cycle time (ns), with IORDY */
  247. unsigned short words69_70[2]; /* reserved words 69-70 */
  248. /* HDIO_GET_IDENTITY currently returns only words 0 through 70 */
  249. unsigned short words71_74[4]; /* reserved words 71-74 */
  250. unsigned short  queue_depth; /*  */
  251. unsigned short  words76_79[4]; /* reserved words 76-79 */
  252. unsigned short  major_rev_num; /*  */
  253. unsigned short  minor_rev_num; /*  */
  254. unsigned short  command_set_1; /* bits 0:Smart 1:Security 2:Removable 3:PM */
  255. unsigned short  command_set_2; /* bits 14:Smart Enabled 13:0 zero */
  256. unsigned short  cfsse; /* command set-feature supported extensions */
  257. unsigned short  cfs_enable_1; /* command set-feature enabled */
  258. unsigned short  cfs_enable_2; /* command set-feature enabled */
  259. unsigned short  csf_default; /* command set-feature default */
  260. unsigned short  dma_ultra; /*  */
  261. unsigned short word89; /* reserved (word 89) */
  262. unsigned short word90; /* reserved (word 90) */
  263. unsigned short CurAPMvalues; /* current APM values */
  264. unsigned short word92; /* reserved (word 92) */
  265. unsigned short hw_config; /* hardware config */
  266. unsigned short  words94_125[32];/* reserved words 94-125 */
  267. unsigned short last_lun; /* reserved (word 126) */
  268. unsigned short word127; /* reserved (word 127) */
  269. unsigned short dlf; /* device lock function
  270.  * 15:9 reserved
  271.  * 8 security level 1:max 0:high
  272.  * 7:6 reserved
  273.  * 5 enhanced erase
  274.  * 4 expire
  275.  * 3 frozen
  276.  * 2 locked
  277.  * 1 en/disabled
  278.  * 0 capability
  279.  */
  280. unsigned short  csfo; /* current set features options
  281.  * 15:4 reserved
  282.  * 3 auto reassign
  283.  * 2 reverting
  284.  * 1 read-look-ahead
  285.  * 0 write cache
  286.  */
  287. unsigned short words130_155[26];/* reserved vendor words 130-155 */
  288. unsigned short word156;
  289. unsigned short words157_159[3];/* reserved vendor words 157-159 */
  290. unsigned short words160_255[95];/* reserved words 160-255 */
  291. };
  292. /*
  293.  * IDE "nice" flags. These are used on a per drive basis to determine
  294.  * when to be nice and give more bandwidth to the other devices which
  295.  * share the same IDE bus.
  296.  */
  297. #define IDE_NICE_DSC_OVERLAP (0) /* per the DSC overlap protocol */
  298. #define IDE_NICE_ATAPI_OVERLAP (1) /* not supported yet */
  299. #define IDE_NICE_0 (2) /* when sure that it won't affect us */
  300. #define IDE_NICE_1 (3) /* when probably won't affect us much */
  301. #define IDE_NICE_2 (4) /* when we know it's on our expense */
  302. #ifdef __KERNEL__
  303. /*
  304.  * These routines are used for kernel command line parameters from main.c:
  305.  */
  306. #include <linux/config.h>
  307. #if defined(CONFIG_BLK_DEV_IDE) || defined(CONFIG_BLK_DEV_IDE_MODULE)
  308. int ide_register(int io_port, int ctl_port, int irq);
  309. void ide_unregister(unsigned int);
  310. #endif /* CONFIG_BLK_DEV_IDE || CONFIG_BLK_DEV_IDE_MODULE */
  311. #endif  /* __KERNEL__ */
  312. #endif /* _LINUX_HDREG_H */