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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-m68k/ide.h
  3.  *
  4.  *  Copyright (C) 1994-1996  Linus Torvalds & authors
  5.  */
  6.  
  7. /* Copyright(c) 1996 Kars de Jong */
  8. /* Based on the ide driver from 1.2.13pl8 */
  9. /*
  10.  * Credits (alphabetical):
  11.  *
  12.  *  - Bjoern Brauel
  13.  *  - Kars de Jong
  14.  *  - Torsten Ebeling
  15.  *  - Dwight Engen
  16.  *  - Thorsten Floeck
  17.  *  - Roman Hodek
  18.  *  - Guenther Kelleter
  19.  *  - Chris Lawrence
  20.  *  - Michael Rausch
  21.  *  - Christian Sauer
  22.  *  - Michael Schmitz
  23.  *  - Jes Soerensen
  24.  *  - Michael Thurm
  25.  *  - Geert Uytterhoeven
  26.  */
  27. #ifndef _M68K_IDE_H
  28. #define _M68K_IDE_H
  29. #ifdef __KERNEL__
  30. #include <linux/config.h>
  31. #include <asm/setup.h>
  32. #include <asm/io.h>
  33. #include <asm/irq.h>
  34. #ifdef CONFIG_ATARI
  35. #include <linux/interrupt.h>
  36. #include <asm/atari_stdma.h>
  37. #endif
  38. #ifdef CONFIG_MAC
  39. #include <asm/macints.h>
  40. #endif
  41. #ifndef MAX_HWIFS
  42. #define MAX_HWIFS 4 /* same as the other archs */
  43. #endif
  44. static __inline__ int ide_default_irq(ide_ioreg_t base)
  45. {
  46.   return 0;
  47. }
  48. static __inline__ ide_ioreg_t ide_default_io_base(int index)
  49. {
  50.           return 0;
  51. }
  52. /*
  53.  * Set up a hw structure for a specified data port, control port and IRQ.
  54.  * This should follow whatever the default interface uses.
  55.  */
  56. static __inline__ void ide_init_hwif_ports(hw_regs_t *hw, ide_ioreg_t data_port, ide_ioreg_t ctrl_port, int *irq)
  57. {
  58. if (data_port || ctrl_port)
  59. printk("ide_init_hwif_ports: must not be calledn");
  60. }
  61. /*
  62.  * This registers the standard ports for this architecture with the IDE
  63.  * driver.
  64.  */
  65. static __inline__ void ide_init_default_hwifs(void)
  66. {
  67. }
  68. typedef union {
  69. unsigned all : 8; /* all of the bits together */
  70. struct {
  71. unsigned bit7 : 1; /* always 1 */
  72. unsigned lba : 1; /* using LBA instead of CHS */
  73. unsigned bit5 : 1; /* always 1 */
  74. unsigned unit : 1; /* drive select number, 0 or 1 */
  75. unsigned head : 4; /* always zeros here */
  76. } b;
  77. } select_t;
  78. typedef union {
  79. unsigned all : 8; /* all of the bits together */
  80. struct {
  81. unsigned HOB : 1; /* 48-bit address ordering */
  82. unsigned reserved456 : 3;
  83. unsigned bit3 : 1; /* ATA-2 thingy */
  84. unsigned SRST : 1; /* host soft reset bit */
  85. unsigned nIEN : 1; /* device INTRQ to host */
  86. unsigned bit0 : 1;
  87. } b;
  88. } control_t;
  89. static __inline__ int ide_request_irq(unsigned int irq, void (*handler)(int, void *, struct pt_regs *),
  90. unsigned long flags, const char *device, void *dev_id)
  91. {
  92. #ifdef CONFIG_AMIGA
  93. if (MACH_IS_AMIGA)
  94. return request_irq(irq, handler, 0, device, dev_id);
  95. #endif /* CONFIG_AMIGA */
  96. #ifdef CONFIG_Q40
  97. if (MACH_IS_Q40)
  98.    return request_irq(irq, handler, 0, device, dev_id);
  99. #endif /* CONFIG_Q40*/
  100. #ifdef CONFIG_MAC
  101. if (MACH_IS_MAC)
  102. return request_irq(irq, handler, 0, device, dev_id);
  103. #endif /* CONFIG_MAC */
  104. return 0;
  105. }
  106. static __inline__ void ide_free_irq(unsigned int irq, void *dev_id)
  107. {
  108. #ifdef CONFIG_AMIGA
  109. if (MACH_IS_AMIGA)
  110. free_irq(irq, dev_id);
  111. #endif /* CONFIG_AMIGA */
  112. #ifdef CONFIG_Q40
  113. if (MACH_IS_Q40)
  114.    free_irq(irq, dev_id);
  115. #endif /* CONFIG_Q40*/
  116. #ifdef CONFIG_MAC
  117. if (MACH_IS_MAC)
  118. free_irq(irq, dev_id);
  119. #endif /* CONFIG_MAC */
  120. }
  121. /*
  122.  * We should really implement those some day.
  123.  */
  124. static __inline__ int ide_check_region (ide_ioreg_t from, unsigned int extent)
  125. {
  126. return 0;
  127. }
  128. static __inline__ void ide_request_region (ide_ioreg_t from, unsigned int extent, const char *name)
  129. {
  130. #ifdef CONFIG_Q40
  131.         if (MACH_IS_Q40)
  132.             request_region((q40ide_ioreg_t)from,extent,name);
  133. #endif
  134. }
  135. static __inline__ void ide_release_region (ide_ioreg_t from, unsigned int extent)
  136. {
  137. #ifdef CONFIG_Q40
  138.         if (MACH_IS_Q40)
  139.             release_region((q40ide_ioreg_t)from,extent);
  140. #endif
  141. }
  142. #undef SUPPORT_SLOW_DATA_PORTS
  143. #define SUPPORT_SLOW_DATA_PORTS 0
  144. #undef SUPPORT_VLB_SYNC
  145. #define SUPPORT_VLB_SYNC 0
  146. /* this definition is used only on startup .. */
  147. #undef HD_DATA
  148. #define HD_DATA NULL
  149. /*
  150.  * get rid of defs from io.h
  151.  * ide still has some private and conflicting versions
  152.  */
  153. #undef insw
  154. #undef insl
  155. #undef outsw
  156. #undef outsl
  157. /*
  158.  * define IO method and translation,
  159.  * so far only Q40 has ide-if on ISA
  160.  */
  161. #ifndef CONFIG_Q40
  162. #define ADDR_TRANS_B(_addr_) (_addr_)
  163. #define ADDR_TRANS_W(_addr_) (_addr_)
  164. #else
  165. #define ADDR_TRANS_B(_addr_) (MACH_IS_Q40 ? ((unsigned char *)Q40_ISA_IO_B(_addr_)) : (_addr_))
  166. #define ADDR_TRANS_W(_addr_) (MACH_IS_Q40 ? ((unsigned char *)Q40_ISA_IO_W(_addr_)) : (_addr_))
  167. #endif
  168. #define HAVE_ARCH_OUT_BYTE
  169. #define OUT_BYTE(v,p) out_8(ADDR_TRANS_B((p)), (v))
  170. #define OUT_WORD(v,p) out_be16(ADDR_TRANS_W((p)), (v))
  171. #define HAVE_ARCH_IN_BYTE
  172. #define IN_BYTE(p) in_8(ADDR_TRANS_B((p)))
  173. #define IN_WORD(p) in_be16(ADDR_TRANS_W((p)))
  174. #define insw(port, buf, nr) raw_insw(ADDR_TRANS_W(port), buf, nr)
  175. #define outsw(port, buf, nr) raw_outsw(ADDR_TRANS_W(port), buf, nr)
  176. #define insl(data_reg, buffer, wcount) insw(data_reg, buffer, (wcount)<<1)
  177. #define outsl(data_reg, buffer, wcount) outsw(data_reg, buffer, (wcount)<<1)
  178. #if defined(CONFIG_ATARI) || defined(CONFIG_Q40)
  179. #define insl_swapw(data_reg, buffer, wcount) 
  180.     insw_swapw(data_reg, buffer, (wcount)<<1)
  181. #define outsl_swapw(data_reg, buffer, wcount) 
  182.     outsw_swapw(data_reg, buffer, (wcount)<<1)
  183. #define insw_swapw(port, buf, nr) raw_insw_swapw(ADDR_TRANS_W(port), buf, nr)
  184. #define outsw_swapw(port, buf, nr) raw_outsw_swapw(ADDR_TRANS_W(port),buf,nr)
  185. #endif /* CONFIG_ATARI || CONFIG_Q40 */
  186. #define T_CHAR          (0x0000)        /* char:  don't touch  */
  187. #define T_SHORT         (0x4000)        /* short: 12 -> 21     */
  188. #define T_INT           (0x8000)        /* int:   1234 -> 4321 */
  189. #define T_TEXT          (0xc000)        /* text:  12 -> 21     */
  190. #define T_MASK_TYPE     (0xc000)
  191. #define T_MASK_COUNT    (0x3fff)
  192. #define D_CHAR(cnt)     (T_CHAR  | (cnt))
  193. #define D_SHORT(cnt)    (T_SHORT | (cnt))
  194. #define D_INT(cnt)      (T_INT   | (cnt))
  195. #define D_TEXT(cnt)     (T_TEXT  | (cnt))
  196. /* Q40 and Atari have byteswapped IDE bus and since many interesting
  197.  * values in the identification string are text, chars and words they
  198.  * happened to be almost correct without swapping.. However *_capacity 
  199.  * is needed for drives over 8 GB. RZ */
  200. #if defined(CONFIG_Q40) || defined(CONFIG_ATARI)
  201. #define M68K_IDE_SWAPW  (MACH_IS_Q40 || MACH_IS_ATARI)
  202. #endif
  203. #if defined(CONFIG_AMIGA) || defined (CONFIG_MAC) || defined(M68K_IDE_SWAPW)
  204. static u_short driveid_types[] = {
  205. D_SHORT(10), /* config - vendor2 */
  206. D_TEXT(20), /* serial_no */
  207. D_SHORT(3), /* buf_type, buf_size - ecc_bytes */
  208. D_TEXT(48), /* fw_rev - model */
  209. D_CHAR(2), /* max_multsect - vendor3 */
  210. D_SHORT(1), /* dword_io */
  211. D_CHAR(2), /* vendor4 - capability */
  212. D_SHORT(1), /* reserved50 */
  213. D_CHAR(4), /* vendor5 - tDMA */
  214. D_SHORT(4), /* field_valid - cur_sectors */
  215. D_INT(1), /* cur_capacity */
  216. D_CHAR(2), /* multsect - multsect_valid */
  217. D_INT(1), /* lba_capacity */
  218. D_SHORT(194) /* dma_1word - reserved */
  219. };
  220. #define num_driveid_types       (sizeof(driveid_types)/sizeof(*driveid_types))
  221. #endif /* CONFIG_AMIGA */
  222. static __inline__ void ide_fix_driveid(struct hd_driveid *id)
  223. {
  224. #if defined(CONFIG_AMIGA) || defined (CONFIG_MAC) || defined(M68K_IDE_SWAPW)
  225.    u_char *p = (u_char *)id;
  226.    int i, j, cnt;
  227.    u_char t;
  228.    if (!MACH_IS_AMIGA && !MACH_IS_MAC && !MACH_IS_Q40 && !MACH_IS_ATARI)
  229.     return;
  230. #ifdef M68K_IDE_SWAPW
  231.    if (M68K_IDE_SWAPW)    /* fix bus byteorder first */
  232.       for (i=0; i < 512; i+=2) {
  233.  t = p[i]; p[i] = p[i+1]; p[i+1] = t; 
  234.       }
  235. #endif
  236.    for (i = 0; i < num_driveid_types; i++) {
  237.       cnt = driveid_types[i] & T_MASK_COUNT;
  238.       switch (driveid_types[i] & T_MASK_TYPE) {
  239.          case T_CHAR:
  240.             p += cnt;
  241.             break;
  242.          case T_SHORT:
  243.             for (j = 0; j < cnt; j++) {
  244.        t = p[0];
  245.        p[0] = p[1];
  246.        p[1] = t;
  247.                p += 2;
  248.             }
  249.             break;
  250.          case T_INT:
  251.             for (j = 0; j < cnt; j++) {
  252.        t = p[0];
  253.        p[0] = p[3];
  254.        p[3] = t;
  255.        t = p[1];
  256.        p[1] = p[2];
  257.        p[2] = t;
  258.                p += 4;
  259.             }
  260.             break;
  261.          case T_TEXT:
  262.             for (j = 0; j < cnt; j += 2) {
  263.        t = p[0];
  264.        p[0] = p[1];
  265.        p[1] = t;
  266.                p += 2;
  267.             }
  268.             break;
  269.       }
  270.    }
  271. #endif /* CONFIG_AMIGA */
  272. }
  273. static __inline__ void ide_release_lock (int *ide_lock)
  274. {
  275. #ifdef CONFIG_ATARI
  276. if (MACH_IS_ATARI) {
  277. if (*ide_lock == 0) {
  278. printk("ide_release_lock: bugn");
  279. return;
  280. }
  281. *ide_lock = 0;
  282. stdma_release();
  283. }
  284. #endif /* CONFIG_ATARI */
  285. }
  286. static __inline__ void ide_get_lock (int *ide_lock, void (*handler)(int, void *, struct pt_regs *), void *data)
  287. {
  288. #ifdef CONFIG_ATARI
  289. if (MACH_IS_ATARI) {
  290. if (*ide_lock == 0) {
  291. if (in_interrupt() > 0)
  292. panic( "Falcon IDE hasn't ST-DMA lock in interrupt" );
  293. stdma_lock(handler, data);
  294. *ide_lock = 1;
  295. }
  296. }
  297. #endif /* CONFIG_ATARI */
  298. }
  299. #define ide_ack_intr(hwif) ((hwif)->hw.ack_intr ? (hwif)->hw.ack_intr(hwif) : 1)
  300. /*
  301.  * On the Atari, we sometimes can't enable interrupts:
  302.  */
  303. /* MSch: changed sti() to STI() wherever possible in ide.c; moved STI() def. 
  304.  * to asm/ide.h 
  305.  */
  306. /* The Atari interrupt structure strictly requires that the IPL isn't lowered
  307.  * uncontrolled in an interrupt handler. In the concrete case, the IDE
  308.  * interrupt is already a slow int, so the irq is already disabled at the time
  309.  * the handler is called, and the IPL has been lowered to the minimum value
  310.  * possible. To avoid going below that, STI() checks for being called inside
  311.  * an interrupt, and in that case it does nothing. Hope that is reasonable and
  312.  * works. (Roman)
  313.  */
  314. #ifdef MACH_ATARI_ONLY
  315. #define ide__sti()
  316.     do {
  317. if (!in_interrupt()) __sti();
  318.     } while(0)
  319. #elif defined(CONFIG_ATARI)
  320. #define ide__sti()
  321.     do {
  322. if (!MACH_IS_ATARI || !in_interrupt()) sti();
  323.     } while(0)
  324. #else /* !defined(CONFIG_ATARI) */
  325. #define ide__sti() __sti()
  326. #endif
  327. #endif /* __KERNEL__ */
  328. #endif /* _M68K_IDE_H */