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

Linux/Unix编程

开发平台:

Unix_Linux

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