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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: ide.h,v 1.6 2000/05/27 00:49:37 davem Exp $
  2.  * ide.h: SPARC PCI specific IDE glue.
  3.  *
  4.  * Copyright (C) 1997  David S. Miller (davem@caip.rutgers.edu)
  5.  * Copyright (C) 1998  Eddie C. Dost   (ecd@skynet.be)
  6.  * Adaptation from sparc64 version to sparc by Pete Zaitcev.
  7.  */
  8. #ifndef _SPARC_IDE_H
  9. #define _SPARC_IDE_H
  10. #ifdef __KERNEL__
  11. #include <linux/config.h>
  12. #include <asm/pgtable.h>
  13. #include <asm/io.h>
  14. #include <asm/hdreg.h>
  15. #include <asm/psr.h>
  16. #undef  MAX_HWIFS
  17. #define MAX_HWIFS 2
  18. #define ide__sti() __sti()
  19. static __inline__ int ide_default_irq(ide_ioreg_t base)
  20. {
  21. return 0;
  22. }
  23. static __inline__ ide_ioreg_t ide_default_io_base(int index)
  24. {
  25. return 0;
  26. }
  27. /*
  28.  * Doing any sort of ioremap() here does not work
  29.  * because this function may be called with null aguments.
  30.  */
  31. static __inline__ void ide_init_hwif_ports(hw_regs_t *hw, ide_ioreg_t data_port, ide_ioreg_t ctrl_port, int *irq)
  32. {
  33. ide_ioreg_t reg =  data_port;
  34. int i;
  35. for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++) {
  36. hw->io_ports[i] = reg;
  37. reg += 1;
  38. }
  39. if (ctrl_port) {
  40. hw->io_ports[IDE_CONTROL_OFFSET] = ctrl_port;
  41. } else {
  42. hw->io_ports[IDE_CONTROL_OFFSET] = 0;
  43. }
  44. if (irq != NULL)
  45. *irq = 0;
  46. hw->io_ports[IDE_IRQ_OFFSET] = 0;
  47. }
  48. /*
  49.  * This registers the standard ports for this architecture with the IDE
  50.  * driver.
  51.  */
  52. static __inline__ void ide_init_default_hwifs(void)
  53. {
  54. #ifndef CONFIG_BLK_DEV_IDEPCI
  55. hw_regs_t hw;
  56. int index;
  57. for (index = 0; index < MAX_HWIFS; index++) {
  58. ide_init_hwif_ports(&hw, ide_default_io_base(index), 0, NULL);
  59. hw.irq = ide_default_irq(ide_default_io_base(index));
  60. ide_register_hw(&hw, NULL);
  61. }
  62. #endif /* CONFIG_BLK_DEV_IDEPCI */
  63. }
  64. typedef union {
  65. unsigned int all : 8; /* all of the bits together */
  66. struct {
  67. unsigned int bit7 : 1;
  68. unsigned int lba : 1;
  69. unsigned int bit5 : 1;
  70. unsigned int unit : 1;
  71. unsigned int head : 4;
  72. } b;
  73. } select_t;
  74. typedef union {
  75. unsigned int all : 8; /* all of the bits together */
  76. struct {
  77. unsigned int HOB : 1; /* 48-bit address ordering */
  78. unsigned int reserved456: 3;
  79. unsigned bit3 : 1; /* ATA-2 thingy */
  80. unsigned int SRST : 1; /* host soft reset bit */
  81. unsigned int nIEN : 1; /* device INTRQ to host */
  82. unsigned int bit0 : 1;
  83. } b;
  84. } control_t;
  85. static __inline__ int ide_request_irq(unsigned int irq,
  86.       void (*handler)(int, void *, struct pt_regs *),
  87.       unsigned long flags, const char *name, void *devid)
  88. {
  89. return request_irq(irq, handler, SA_SHIRQ, name, devid);
  90. }
  91. static __inline__ void ide_free_irq(unsigned int irq, void *dev_id)
  92. {
  93. free_irq(irq, dev_id);
  94. }
  95. static __inline__ int ide_check_region(ide_ioreg_t base, unsigned int size)
  96. {
  97. /* We leave these empty because pcic.c calls sparc_alloc_io() */
  98. return 0;
  99. }
  100. static __inline__ void ide_request_region(ide_ioreg_t base, unsigned int size,
  101.   const char *name)
  102. {
  103. }
  104. static __inline__ void ide_release_region(ide_ioreg_t base, unsigned int size)
  105. {
  106. }
  107. #undef  SUPPORT_SLOW_DATA_PORTS
  108. #define SUPPORT_SLOW_DATA_PORTS 0
  109. #undef  SUPPORT_VLB_SYNC
  110. #define SUPPORT_VLB_SYNC 0
  111. #undef  HD_DATA
  112. #define HD_DATA ((ide_ioreg_t)0)
  113. /* From m68k code... */
  114. #ifdef insl
  115. #undef insl
  116. #endif
  117. #ifdef outsl
  118. #undef outsl
  119. #endif
  120. #ifdef insw
  121. #undef insw
  122. #endif
  123. #ifdef outsw
  124. #undef outsw
  125. #endif
  126. #define insl(data_reg, buffer, wcount) insw(data_reg, buffer, (wcount)<<1)
  127. #define outsl(data_reg, buffer, wcount) outsw(data_reg, buffer, (wcount)<<1)
  128. #define insw(port, buf, nr) ide_insw((port), (buf), (nr))
  129. #define outsw(port, buf, nr) ide_outsw((port), (buf), (nr))
  130. static __inline__ void ide_insw(unsigned long port,
  131. void *dst,
  132. unsigned long count)
  133. {
  134. volatile unsigned short *data_port;
  135. /* unsigned long end = (unsigned long)dst + (count << 1); */ /* P3 */
  136. u16 *ps = dst;
  137. u32 *pi;
  138. data_port = (volatile unsigned short *)port;
  139. if(((unsigned long)ps) & 0x2) {
  140. *ps++ = *data_port;
  141. count--;
  142. }
  143. pi = (u32 *)ps;
  144. while(count >= 2) {
  145. u32 w;
  146. w  = (*data_port) << 16;
  147. w |= (*data_port);
  148. *pi++ = w;
  149. count -= 2;
  150. }
  151. ps = (u16 *)pi;
  152. if(count)
  153. *ps++ = *data_port;
  154. /* __flush_dcache_range((unsigned long)dst, end); */ /* P3 see hme */
  155. }
  156. static __inline__ void ide_outsw(unsigned long port,
  157.  const void *src,
  158.  unsigned long count)
  159. {
  160. volatile unsigned short *data_port;
  161. /* unsigned long end = (unsigned long)src + (count << 1); */
  162. const u16 *ps = src;
  163. const u32 *pi;
  164. data_port = (volatile unsigned short *)port;
  165. if(((unsigned long)src) & 0x2) {
  166. *data_port = *ps++;
  167. count--;
  168. }
  169. pi = (const u32 *)ps;
  170. while(count >= 2) {
  171. u32 w;
  172. w = *pi++;
  173. *data_port = (w >> 16);
  174. *data_port = w;
  175. count -= 2;
  176. }
  177. ps = (const u16 *)pi;
  178. if(count)
  179. *data_port = *ps;
  180. /* __flush_dcache_range((unsigned long)src, end); */ /* P3 see hme */
  181. }
  182. static __inline__ void ide_fix_driveid(struct hd_driveid *id)
  183. {
  184. int i;
  185. u16 *stringcast;
  186. id->config         = __le16_to_cpu(id->config);
  187. id->cyls           = __le16_to_cpu(id->cyls);
  188. id->reserved2      = __le16_to_cpu(id->reserved2);
  189. id->heads          = __le16_to_cpu(id->heads);
  190. id->track_bytes    = __le16_to_cpu(id->track_bytes);
  191. id->sector_bytes   = __le16_to_cpu(id->sector_bytes);
  192. id->sectors        = __le16_to_cpu(id->sectors);
  193. id->vendor0        = __le16_to_cpu(id->vendor0);
  194. id->vendor1        = __le16_to_cpu(id->vendor1);
  195. id->vendor2        = __le16_to_cpu(id->vendor2);
  196. stringcast = (u16 *)&id->serial_no[0];
  197. for (i = 0; i < (20/2); i++)
  198.         stringcast[i] = __le16_to_cpu(stringcast[i]);
  199. id->buf_type       = __le16_to_cpu(id->buf_type);
  200. id->buf_size       = __le16_to_cpu(id->buf_size);
  201. id->ecc_bytes      = __le16_to_cpu(id->ecc_bytes);
  202. stringcast = (u16 *)&id->fw_rev[0];
  203. for (i = 0; i < (8/2); i++)
  204.         stringcast[i] = __le16_to_cpu(stringcast[i]);
  205. stringcast = (u16 *)&id->model[0];
  206. for (i = 0; i < (40/2); i++)
  207.         stringcast[i] = __le16_to_cpu(stringcast[i]);
  208. id->dword_io       = __le16_to_cpu(id->dword_io);
  209. id->reserved50     = __le16_to_cpu(id->reserved50);
  210. id->field_valid    = __le16_to_cpu(id->field_valid);
  211. id->cur_cyls       = __le16_to_cpu(id->cur_cyls);
  212. id->cur_heads      = __le16_to_cpu(id->cur_heads);
  213. id->cur_sectors    = __le16_to_cpu(id->cur_sectors);
  214. id->cur_capacity0  = __le16_to_cpu(id->cur_capacity0);
  215. id->cur_capacity1  = __le16_to_cpu(id->cur_capacity1);
  216. id->lba_capacity   = __le32_to_cpu(id->lba_capacity);
  217. id->dma_1word      = __le16_to_cpu(id->dma_1word);
  218. id->dma_mword      = __le16_to_cpu(id->dma_mword);
  219. id->eide_pio_modes = __le16_to_cpu(id->eide_pio_modes);
  220. id->eide_dma_min   = __le16_to_cpu(id->eide_dma_min);
  221. id->eide_dma_time  = __le16_to_cpu(id->eide_dma_time);
  222. id->eide_pio       = __le16_to_cpu(id->eide_pio);
  223. id->eide_pio_iordy = __le16_to_cpu(id->eide_pio_iordy);
  224. for (i = 0; i < 2; i++)
  225. id->words69_70[i] = __le16_to_cpu(id->words69_70[i]);
  226.         for (i = 0; i < 4; i++)
  227.                 id->words71_74[i] = __le16_to_cpu(id->words71_74[i]);
  228. id->queue_depth    = __le16_to_cpu(id->queue_depth);
  229. for (i = 0; i < 4; i++)
  230. id->words76_79[i] = __le16_to_cpu(id->words76_79[i]);
  231. id->major_rev_num  = __le16_to_cpu(id->major_rev_num);
  232. id->minor_rev_num  = __le16_to_cpu(id->minor_rev_num);
  233. id->command_set_1  = __le16_to_cpu(id->command_set_1);
  234. id->command_set_2  = __le16_to_cpu(id->command_set_2);
  235. id->cfsse          = __le16_to_cpu(id->cfsse);
  236. id->cfs_enable_1   = __le16_to_cpu(id->cfs_enable_1);
  237. id->cfs_enable_2   = __le16_to_cpu(id->cfs_enable_2);
  238. id->csf_default    = __le16_to_cpu(id->csf_default);
  239. id->dma_ultra      = __le16_to_cpu(id->dma_ultra);
  240. id->word89         = __le16_to_cpu(id->word89);
  241. id->word90         = __le16_to_cpu(id->word90);
  242. id->CurAPMvalues   = __le16_to_cpu(id->CurAPMvalues);
  243. id->word92         = __le16_to_cpu(id->word92);
  244. id->hw_config      = __le16_to_cpu(id->hw_config);
  245. id->acoustic       = __le16_to_cpu(id->acoustic);
  246. for (i = 0; i < 5; i++)
  247. id->words95_99[i]  = __le16_to_cpu(id->words95_99[i]);
  248. id->lba_capacity_2 = __le64_to_cpu(id->lba_capacity_2);
  249. for (i = 0; i < 22; i++)
  250. id->words104_125[i]   = __le16_to_cpu(id->words104_125[i]);
  251. id->last_lun       = __le16_to_cpu(id->last_lun);
  252. id->word127        = __le16_to_cpu(id->word127);
  253. id->dlf            = __le16_to_cpu(id->dlf);
  254. id->csfo           = __le16_to_cpu(id->csfo);
  255. for (i = 0; i < 26; i++)
  256. id->words130_155[i] = __le16_to_cpu(id->words130_155[i]);
  257. id->word156        = __le16_to_cpu(id->word156);
  258. for (i = 0; i < 3; i++)
  259. id->words157_159[i] = __le16_to_cpu(id->words157_159[i]);
  260. id->cfa_power      = __le16_to_cpu(id->cfa_power);
  261. for (i = 0; i < 14; i++)
  262. id->words161_175[i] = __le16_to_cpu(id->words161_175[i]);
  263. for (i = 0; i < 31; i++)
  264. id->words176_205[i] = __le16_to_cpu(id->words176_205[i]);
  265. for (i = 0; i < 48; i++)
  266. id->words206_254[i] = __le16_to_cpu(id->words206_254[i]);
  267. id->integrity_word  = __le16_to_cpu(id->integrity_word);
  268. }
  269. /*
  270.  * The following are not needed for the non-m68k ports
  271.  */
  272. #define ide_ack_intr(hwif) (1)
  273. /* #define ide_ack_intr(hwif) ((hwif)->hw.ack_intr ? (hwif)->hw.ack_intr(hwif) : 1) */
  274. #define ide_release_lock(lock) do {} while (0)
  275. #define ide_get_lock(lock, hdlr, data) do {} while (0)
  276. #endif /* __KERNEL__ */
  277. #endif /* _SPARC_IDE_H */