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

嵌入式Linux

开发平台:

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. static __inline__ int ide_request_irq(unsigned int irq, void (*handler)(int, void *, struct pt_regs *),
  79. unsigned long flags, const char *device, void *dev_id)
  80. {
  81. #ifdef CONFIG_AMIGA
  82. if (MACH_IS_AMIGA)
  83. return request_irq(irq, handler, 0, device, dev_id);
  84. #endif /* CONFIG_AMIGA */
  85. #ifdef CONFIG_Q40
  86. if (MACH_IS_Q40)
  87.    return request_irq(irq, handler, 0, device, dev_id);
  88. #endif /* CONFIG_Q40*/
  89. #ifdef CONFIG_MAC
  90. if (MACH_IS_MAC)
  91. return request_irq(irq, handler, 0, device, dev_id);
  92. #endif /* CONFIG_MAC */
  93. return 0;
  94. }
  95. static __inline__ void ide_free_irq(unsigned int irq, void *dev_id)
  96. {
  97. #ifdef CONFIG_AMIGA
  98. if (MACH_IS_AMIGA)
  99. free_irq(irq, dev_id);
  100. #endif /* CONFIG_AMIGA */
  101. #ifdef CONFIG_Q40
  102. if (MACH_IS_Q40)
  103.    free_irq(irq, dev_id);
  104. #endif /* CONFIG_Q40*/
  105. #ifdef CONFIG_MAC
  106. if (MACH_IS_MAC)
  107. free_irq(irq, dev_id);
  108. #endif /* CONFIG_MAC */
  109. }
  110. /*
  111.  * We should really implement those some day.
  112.  */
  113. static __inline__ int ide_check_region (ide_ioreg_t from, unsigned int extent)
  114. {
  115. return 0;
  116. }
  117. static __inline__ void ide_request_region (ide_ioreg_t from, unsigned int extent, const char *name)
  118. {
  119. #ifdef CONFIG_Q40
  120.         if (MACH_IS_Q40)
  121.             request_region((q40ide_ioreg_t)from,extent,name);
  122. #endif
  123. }
  124. static __inline__ void ide_release_region (ide_ioreg_t from, unsigned int extent)
  125. {
  126. #ifdef CONFIG_Q40
  127.         if (MACH_IS_Q40)
  128.             release_region((q40ide_ioreg_t)from,extent);
  129. #endif
  130. }
  131. #undef SUPPORT_SLOW_DATA_PORTS
  132. #define SUPPORT_SLOW_DATA_PORTS 0
  133. #undef SUPPORT_VLB_SYNC
  134. #define SUPPORT_VLB_SYNC 0
  135. /* this definition is used only on startup .. */
  136. #undef HD_DATA
  137. #define HD_DATA NULL
  138. /* get rid of defs from io.h - ide has its private and conflicting versions */
  139. #undef inb
  140. #undef inw
  141. #undef outb
  142. #undef outw
  143. #undef inb_p
  144. #undef outb_p
  145. #undef insw
  146. #undef outsw
  147. #undef insw_swapw
  148. #undef outsw_swapw
  149. /* 
  150.  * define IO method and translation,
  151.  * so far only Q40 has ide-if on ISA 
  152. */
  153. #ifndef CONFIG_Q40
  154. #define ADDR_TRANS_B(_addr_) (_addr_)
  155. #define ADDR_TRANS_W(_addr_) (_addr_)
  156. #else
  157. #define ADDR_TRANS_B(_addr_) (MACH_IS_Q40 ? ((unsigned char *)Q40_ISA_IO_B(_addr_)) : (_addr_))
  158. #define ADDR_TRANS_W(_addr_) (MACH_IS_Q40 ? ((unsigned char *)Q40_ISA_IO_W(_addr_)) : (_addr_))
  159. #endif
  160. #define inb(p)     in_8(ADDR_TRANS_B(p))
  161. #define inb_p(p)     in_8(ADDR_TRANS_B(p))
  162. #define inw(p)     in_be16(ADDR_TRANS_W(p))
  163. #define outb(v,p)  out_8(ADDR_TRANS_B(p),v)
  164. #define outb_p(v,p)  out_8(ADDR_TRANS_B(p),v)
  165. #define outw(v,p)  out_be16(ADDR_TRANS_W(p),v)
  166. #define insw(port, buf, nr) raw_insw(ADDR_TRANS_W(port), buf, nr)
  167. #define outsw(port, buf, nr) raw_outsw(ADDR_TRANS_W(port), buf, nr)
  168. #define insl(data_reg, buffer, wcount) insw(data_reg, buffer, (wcount)<<1)
  169. #define outsl(data_reg, buffer, wcount) outsw(data_reg, buffer, (wcount)<<1)
  170. #if defined(CONFIG_ATARI) || defined(CONFIG_Q40)
  171. #define insl_swapw(data_reg, buffer, wcount) 
  172.     insw_swapw(data_reg, buffer, (wcount)<<1)
  173. #define outsl_swapw(data_reg, buffer, wcount) 
  174.     outsw_swapw(data_reg, buffer, (wcount)<<1)
  175. #define insw_swapw(port, buf, nr) raw_insw_swapw(ADDR_TRANS_W(port), buf, nr)
  176. #define outsw_swapw(port, buf, nr) raw_outsw_swapw(ADDR_TRANS_W(port),buf,nr)
  177. #endif /* CONFIG_ATARI || CONFIG_Q40 */
  178. #define T_CHAR          (0x0000)        /* char:  don't touch  */
  179. #define T_SHORT         (0x4000)        /* short: 12 -> 21     */
  180. #define T_INT           (0x8000)        /* int:   1234 -> 4321 */
  181. #define T_TEXT          (0xc000)        /* text:  12 -> 21     */
  182. #define T_MASK_TYPE     (0xc000)
  183. #define T_MASK_COUNT    (0x3fff)
  184. #define D_CHAR(cnt)     (T_CHAR  | (cnt))
  185. #define D_SHORT(cnt)    (T_SHORT | (cnt))
  186. #define D_INT(cnt)      (T_INT   | (cnt))
  187. #define D_TEXT(cnt)     (T_TEXT  | (cnt))
  188. /* Q40 and Atari have byteswapped IDE bus and since many interesting
  189.  * values in the identification string are text, chars and words they
  190.  * happened to be almost correct without swapping.. However *_capacity 
  191.  * is needed for drives over 8 GB. RZ */
  192. #if defined(CONFIG_Q40) || defined(CONFIG_ATARI)
  193. #define M68K_IDE_SWAPW  (MACH_IS_Q40 || MACH_IS_ATARI)
  194. #endif
  195. #if defined(CONFIG_AMIGA) || defined (CONFIG_MAC) || defined(M68K_IDE_SWAPW)
  196. static u_short driveid_types[] = {
  197. D_SHORT(10), /* config - vendor2 */
  198. D_TEXT(20), /* serial_no */
  199. D_SHORT(3), /* buf_type, buf_size - ecc_bytes */
  200. D_TEXT(48), /* fw_rev - model */
  201. D_CHAR(2), /* max_multsect - vendor3 */
  202. D_SHORT(1), /* dword_io */
  203. D_CHAR(2), /* vendor4 - capability */
  204. D_SHORT(1), /* reserved50 */
  205. D_CHAR(4), /* vendor5 - tDMA */
  206. D_SHORT(4), /* field_valid - cur_sectors */
  207. D_INT(1), /* cur_capacity */
  208. D_CHAR(2), /* multsect - multsect_valid */
  209. D_INT(1), /* lba_capacity */
  210. D_SHORT(194) /* dma_1word - reserved */
  211. };
  212. #define num_driveid_types       (sizeof(driveid_types)/sizeof(*driveid_types))
  213. #endif /* CONFIG_AMIGA */
  214. static __inline__ void ide_fix_driveid(struct hd_driveid *id)
  215. {
  216. #if defined(CONFIG_AMIGA) || defined (CONFIG_MAC) || defined(M68K_IDE_SWAPW)
  217.    u_char *p = (u_char *)id;
  218.    int i, j, cnt;
  219.    u_char t;
  220.    if (!MACH_IS_AMIGA && !MACH_IS_MAC && !MACH_IS_Q40 && !MACH_IS_ATARI)
  221.     return;
  222. #ifdef M68K_IDE_SWAPW
  223.    if (M68K_IDE_SWAPW)    /* fix bus byteorder first */
  224.       for (i=0; i < 512; i+=2) {
  225.  t = p[i]; p[i] = p[i+1]; p[i+1] = t; 
  226.       }
  227. #endif
  228.    for (i = 0; i < num_driveid_types; i++) {
  229.       cnt = driveid_types[i] & T_MASK_COUNT;
  230.       switch (driveid_types[i] & T_MASK_TYPE) {
  231.          case T_CHAR:
  232.             p += cnt;
  233.             break;
  234.          case T_SHORT:
  235.             for (j = 0; j < cnt; j++) {
  236.        t = p[0];
  237.        p[0] = p[1];
  238.        p[1] = t;
  239.                p += 2;
  240.             }
  241.             break;
  242.          case T_INT:
  243.             for (j = 0; j < cnt; j++) {
  244.        t = p[0];
  245.        p[0] = p[3];
  246.        p[3] = t;
  247.        t = p[1];
  248.        p[1] = p[2];
  249.        p[2] = t;
  250.                p += 4;
  251.             }
  252.             break;
  253.          case T_TEXT:
  254.             for (j = 0; j < cnt; j += 2) {
  255.        t = p[0];
  256.        p[0] = p[1];
  257.        p[1] = t;
  258.                p += 2;
  259.             }
  260.             break;
  261.       }
  262.    }
  263. #endif /* CONFIG_AMIGA */
  264. }
  265. static __inline__ void ide_release_lock (int *ide_lock)
  266. {
  267. #ifdef CONFIG_ATARI
  268. if (MACH_IS_ATARI) {
  269. if (*ide_lock == 0) {
  270. printk("ide_release_lock: bugn");
  271. return;
  272. }
  273. *ide_lock = 0;
  274. stdma_release();
  275. }
  276. #endif /* CONFIG_ATARI */
  277. }
  278. static __inline__ void ide_get_lock (int *ide_lock, void (*handler)(int, void *, struct pt_regs *), void *data)
  279. {
  280. #ifdef CONFIG_ATARI
  281. if (MACH_IS_ATARI) {
  282. if (*ide_lock == 0) {
  283. if (in_interrupt() > 0)
  284. panic( "Falcon IDE hasn't ST-DMA lock in interrupt" );
  285. stdma_lock(handler, data);
  286. *ide_lock = 1;
  287. }
  288. }
  289. #endif /* CONFIG_ATARI */
  290. }
  291. #define ide_ack_intr(hwif) ((hwif)->hw.ack_intr ? (hwif)->hw.ack_intr(hwif) : 1)
  292. /*
  293.  * On the Atari, we sometimes can't enable interrupts:
  294.  */
  295. /* MSch: changed sti() to STI() wherever possible in ide.c; moved STI() def. 
  296.  * to asm/ide.h 
  297.  */
  298. /* The Atari interrupt structure strictly requires that the IPL isn't lowered
  299.  * uncontrolled in an interrupt handler. In the concrete case, the IDE
  300.  * interrupt is already a slow int, so the irq is already disabled at the time
  301.  * the handler is called, and the IPL has been lowered to the minimum value
  302.  * possible. To avoid going below that, STI() checks for being called inside
  303.  * an interrupt, and in that case it does nothing. Hope that is reasonable and
  304.  * works. (Roman)
  305.  */
  306. #ifdef MACH_ATARI_ONLY
  307. #define ide__sti()
  308.     do {
  309. if (!in_interrupt()) __sti();
  310.     } while(0)
  311. #elif defined(CONFIG_ATARI)
  312. #define ide__sti()
  313.     do {
  314. if (!MACH_IS_ATARI || !in_interrupt()) sti();
  315.     } while(0)
  316. #else /* !defined(CONFIG_ATARI) */
  317. #define ide__sti() __sti()
  318. #endif
  319. #endif /* __KERNEL__ */
  320. #endif /* _M68K_IDE_H */