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

嵌入式Linux

开发平台:

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. static __inline__ int ide_request_irq(unsigned int irq,
  75.       void (*handler)(int, void *, struct pt_regs *),
  76.       unsigned long flags, const char *name, void *devid)
  77. {
  78. return request_irq(irq, handler, SA_SHIRQ, name, devid);
  79. }
  80. static __inline__ void ide_free_irq(unsigned int irq, void *dev_id)
  81. {
  82. free_irq(irq, dev_id);
  83. }
  84. static __inline__ int ide_check_region(ide_ioreg_t base, unsigned int size)
  85. {
  86. /* We leave these empty because pcic.c calls sparc_alloc_io() */
  87. return 0;
  88. }
  89. static __inline__ void ide_request_region(ide_ioreg_t base, unsigned int size,
  90.   const char *name)
  91. {
  92. }
  93. static __inline__ void ide_release_region(ide_ioreg_t base, unsigned int size)
  94. {
  95. }
  96. #undef  SUPPORT_SLOW_DATA_PORTS
  97. #define SUPPORT_SLOW_DATA_PORTS 0
  98. #undef  SUPPORT_VLB_SYNC
  99. #define SUPPORT_VLB_SYNC 0
  100. #undef  HD_DATA
  101. #define HD_DATA ((ide_ioreg_t)0)
  102. /* From m68k code... */
  103. #ifdef insl
  104. #undef insl
  105. #endif
  106. #ifdef outsl
  107. #undef outsl
  108. #endif
  109. #ifdef insw
  110. #undef insw
  111. #endif
  112. #ifdef outsw
  113. #undef outsw
  114. #endif
  115. #define insl(data_reg, buffer, wcount) insw(data_reg, buffer, (wcount)<<1)
  116. #define outsl(data_reg, buffer, wcount) outsw(data_reg, buffer, (wcount)<<1)
  117. #define insw(port, buf, nr) ide_insw((port), (buf), (nr))
  118. #define outsw(port, buf, nr) ide_outsw((port), (buf), (nr))
  119. static __inline__ void ide_insw(unsigned long port,
  120. void *dst,
  121. unsigned long count)
  122. {
  123. volatile unsigned short *data_port;
  124. /* unsigned long end = (unsigned long)dst + (count << 1); */ /* P3 */
  125. u16 *ps = dst;
  126. u32 *pi;
  127. data_port = (volatile unsigned short *)port;
  128. if(((unsigned long)ps) & 0x2) {
  129. *ps++ = *data_port;
  130. count--;
  131. }
  132. pi = (u32 *)ps;
  133. while(count >= 2) {
  134. u32 w;
  135. w  = (*data_port) << 16;
  136. w |= (*data_port);
  137. *pi++ = w;
  138. count -= 2;
  139. }
  140. ps = (u16 *)pi;
  141. if(count)
  142. *ps++ = *data_port;
  143. /* __flush_dcache_range((unsigned long)dst, end); */ /* P3 see hme */
  144. }
  145. static __inline__ void ide_outsw(unsigned long port,
  146.  const void *src,
  147.  unsigned long count)
  148. {
  149. volatile unsigned short *data_port;
  150. /* unsigned long end = (unsigned long)src + (count << 1); */
  151. const u16 *ps = src;
  152. const u32 *pi;
  153. data_port = (volatile unsigned short *)port;
  154. if(((unsigned long)src) & 0x2) {
  155. *data_port = *ps++;
  156. count--;
  157. }
  158. pi = (const u32 *)ps;
  159. while(count >= 2) {
  160. u32 w;
  161. w = *pi++;
  162. *data_port = (w >> 16);
  163. *data_port = w;
  164. count -= 2;
  165. }
  166. ps = (const u16 *)pi;
  167. if(count)
  168. *data_port = *ps;
  169. /* __flush_dcache_range((unsigned long)src, end); */ /* P3 see hme */
  170. }
  171. #define T_CHAR          (0x0000)        /* char:  don't touch  */
  172. #define T_SHORT         (0x4000)        /* short: 12 -> 21     */
  173. #define T_INT           (0x8000)        /* int:   1234 -> 4321 */
  174. #define T_TEXT          (0xc000)        /* text:  12 -> 21     */
  175. #define T_MASK_TYPE     (0xc000)
  176. #define T_MASK_COUNT    (0x3fff)
  177. #define D_CHAR(cnt)     (T_CHAR  | (cnt))
  178. #define D_SHORT(cnt)    (T_SHORT | (cnt))
  179. #define D_INT(cnt)      (T_INT   | (cnt))
  180. #define D_TEXT(cnt)     (T_TEXT  | (cnt))
  181. static u_short driveid_types[] = {
  182. D_SHORT(10), /* config - vendor2 */
  183. D_TEXT(20), /* serial_no */
  184. D_SHORT(3), /* buf_type - ecc_bytes */
  185. D_TEXT(48), /* fw_rev - model */
  186. D_CHAR(2), /* max_multsect - vendor3 */
  187. D_SHORT(1), /* dword_io */
  188. D_CHAR(2), /* vendor4 - capability */
  189. D_SHORT(1), /* reserved50 */
  190. D_CHAR(4), /* vendor5 - tDMA */
  191. D_SHORT(4), /* field_valid - cur_sectors */
  192. D_INT(1), /* cur_capacity */
  193. D_CHAR(2), /* multsect - multsect_valid */
  194. D_INT(1), /* lba_capacity */
  195. D_SHORT(194) /* dma_1word - reservedyy */
  196. };
  197. #define num_driveid_types       (sizeof(driveid_types)/sizeof(*driveid_types))
  198. static __inline__ void ide_fix_driveid(struct hd_driveid *id)
  199. {
  200. u_char *p = (u_char *)id;
  201. int i, j, cnt;
  202. u_char t;
  203. for (i = 0; i < num_driveid_types; i++) {
  204. cnt = driveid_types[i] & T_MASK_COUNT;
  205. switch (driveid_types[i] & T_MASK_TYPE) {
  206. case T_CHAR:
  207. p += cnt;
  208. break;
  209. case T_SHORT:
  210. for (j = 0; j < cnt; j++) {
  211. t = p[0];
  212. p[0] = p[1];
  213. p[1] = t;
  214. p += 2;
  215. }
  216. break;
  217. case T_INT:
  218. for (j = 0; j < cnt; j++) {
  219. t = p[0];
  220. p[0] = p[3];
  221. p[3] = t;
  222. t = p[1];
  223. p[1] = p[2];
  224. p[2] = t;
  225. p += 4;
  226. }
  227. break;
  228. case T_TEXT:
  229. for (j = 0; j < cnt; j += 2) {
  230. t = p[0];
  231. p[0] = p[1];
  232. p[1] = t;
  233. p += 2;
  234. }
  235. break;
  236. };
  237. }
  238. }
  239. /*
  240.  * The following are not needed for the non-m68k ports
  241.  */
  242. #define ide_ack_intr(hwif) (1)
  243. /* #define ide_ack_intr(hwif) ((hwif)->hw.ack_intr ? (hwif)->hw.ack_intr(hwif) : 1) */
  244. #define ide_release_lock(lock) do {} while (0)
  245. #define ide_get_lock(lock, hdlr, data) do {} while (0)
  246. #endif /* __KERNEL__ */
  247. #endif /* _SPARC_IDE_H */