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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _IDE_TIMING_H
  2. #define _IDE_TIMING_H
  3. /*
  4.  * $Id: ide-timing.h,v 1.6 2001/12/23 22:47:56 vojtech Exp $
  5.  *
  6.  *  Copyright (c) 1999-2001 Vojtech Pavlik
  7.  */
  8. /*
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22.  *
  23.  * Should you need to contact me, the author, you can do so either by
  24.  * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
  25.  * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
  26.  */
  27. #include <linux/hdreg.h>
  28. #define XFER_PIO_5 0x0d
  29. #define XFER_UDMA_SLOW 0x4f
  30. struct ide_timing {
  31. short mode;
  32. short setup; /* t1 */
  33. short act8b; /* t2 for 8-bit io */
  34. short rec8b; /* t2i for 8-bit io */
  35. short cyc8b; /* t0 for 8-bit io */
  36. short active; /* t2 or tD */
  37. short recover; /* t2i or tK */
  38. short cycle; /* t0 */
  39. short udma; /* t2CYCTYP/2 */
  40. };
  41. /*
  42.  * PIO 0-5, MWDMA 0-2 and UDMA 0-6 timings (in nanoseconds).
  43.  * These were taken from ATA/ATAPI-6 standard, rev 0a, except
  44.  * for PIO 5, which is a nonstandard extension and UDMA6, which
  45.  * is currently supported only by Maxtor drives. 
  46.  */
  47. static struct ide_timing ide_timing[] = {
  48. { XFER_UDMA_6,     0,   0,   0,   0,   0,   0,   0,  15 },
  49. { XFER_UDMA_5,     0,   0,   0,   0,   0,   0,   0,  20 },
  50. { XFER_UDMA_4,     0,   0,   0,   0,   0,   0,   0,  30 },
  51. { XFER_UDMA_3,     0,   0,   0,   0,   0,   0,   0,  45 },
  52. { XFER_UDMA_2,     0,   0,   0,   0,   0,   0,   0,  60 },
  53. { XFER_UDMA_1,     0,   0,   0,   0,   0,   0,   0,  80 },
  54. { XFER_UDMA_0,     0,   0,   0,   0,   0,   0,   0, 120 },
  55. { XFER_UDMA_SLOW,  0,   0,   0,   0,   0,   0,   0, 150 },
  56.                                           
  57. { XFER_MW_DMA_2,  25,   0,   0,   0,  70,  25, 120,   0 },
  58. { XFER_MW_DMA_1,  45,   0,   0,   0,  80,  50, 150,   0 },
  59. { XFER_MW_DMA_0,  60,   0,   0,   0, 215, 215, 480,   0 },
  60.                                           
  61. { XFER_SW_DMA_2,  60,   0,   0,   0, 120, 120, 240,   0 },
  62. { XFER_SW_DMA_1,  90,   0,   0,   0, 240, 240, 480,   0 },
  63. { XFER_SW_DMA_0, 120,   0,   0,   0, 480, 480, 960,   0 },
  64. { XFER_PIO_5,     20,  50,  30, 100,  50,  30, 100,   0 },
  65. { XFER_PIO_4,     25,  70,  25, 120,  70,  25, 120,   0 },
  66. { XFER_PIO_3,     30,  80,  70, 180,  80,  70, 180,   0 },
  67. { XFER_PIO_2,     30, 290,  40, 330, 100,  90, 240,   0 },
  68. { XFER_PIO_1,     50, 290,  93, 383, 125, 100, 383,   0 },
  69. { XFER_PIO_0,     70, 290, 240, 600, 165, 150, 600,   0 },
  70. { XFER_PIO_SLOW, 120, 290, 240, 960, 290, 240, 960,   0 },
  71. { -1 }
  72. };
  73. #define IDE_TIMING_SETUP 0x01
  74. #define IDE_TIMING_ACT8B 0x02
  75. #define IDE_TIMING_REC8B 0x04
  76. #define IDE_TIMING_CYC8B 0x08
  77. #define IDE_TIMING_8BIT 0x0e
  78. #define IDE_TIMING_ACTIVE 0x10
  79. #define IDE_TIMING_RECOVER 0x20
  80. #define IDE_TIMING_CYCLE 0x40
  81. #define IDE_TIMING_UDMA 0x80
  82. #define IDE_TIMING_ALL 0xff
  83. #define MIN(a,b) ((a)<(b)?(a):(b))
  84. #define MAX(a,b) ((a)>(b)?(a):(b))
  85. #define FIT(v,min,max) MAX(MIN(v,max),min)
  86. #define ENOUGH(v,unit) (((v)-1)/(unit)+1)
  87. #define EZ(v,unit) ((v)?ENOUGH(v,unit):0)
  88. #define XFER_MODE 0xf0
  89. #define XFER_UDMA_133 0x48
  90. #define XFER_UDMA_100 0x44
  91. #define XFER_UDMA_66 0x42
  92. #define XFER_UDMA 0x40
  93. #define XFER_MWDMA 0x20
  94. #define XFER_SWDMA 0x10
  95. #define XFER_EPIO 0x01
  96. #define XFER_PIO 0x00
  97. static short ide_find_best_mode(ide_drive_t *drive, int map)
  98. {
  99. struct hd_driveid *id = drive->id;
  100. short best = 0;
  101. if (!id)
  102. return XFER_PIO_SLOW;
  103. if ((map & XFER_UDMA) && (id->field_valid & 4)) { /* Want UDMA and UDMA bitmap valid */
  104. if ((map & XFER_UDMA_133) == XFER_UDMA_133)
  105. if ((best = (id->dma_ultra & 0x0040) ? XFER_UDMA_6 : 0)) return best;
  106. if ((map & XFER_UDMA_100) == XFER_UDMA_100)
  107. if ((best = (id->dma_ultra & 0x0020) ? XFER_UDMA_5 : 0)) return best;
  108. if ((map & XFER_UDMA_66) == XFER_UDMA_66)
  109. if ((best = (id->dma_ultra & 0x0010) ? XFER_UDMA_4 :
  110.                           (id->dma_ultra & 0x0008) ? XFER_UDMA_3 : 0)) return best;
  111.                 if ((best = (id->dma_ultra & 0x0004) ? XFER_UDMA_2 :
  112.                      (id->dma_ultra & 0x0002) ? XFER_UDMA_1 :
  113.                      (id->dma_ultra & 0x0001) ? XFER_UDMA_0 : 0)) return best;
  114. }
  115. if ((map & XFER_MWDMA) && (id->field_valid & 2)) { /* Want MWDMA and drive has EIDE fields */
  116. if ((best = (id->dma_mword & 0x0004) ? XFER_MW_DMA_2 :
  117.                      (id->dma_mword & 0x0002) ? XFER_MW_DMA_1 :
  118.                      (id->dma_mword & 0x0001) ? XFER_MW_DMA_0 : 0)) return best;
  119. }
  120. if (map & XFER_SWDMA) { /* Want SWDMA */
  121.   if (id->field_valid & 2) { /* EIDE SWDMA */
  122. if ((best = (id->dma_1word & 0x0004) ? XFER_SW_DMA_2 :
  123.            (id->dma_1word & 0x0002) ? XFER_SW_DMA_1 :
  124.     (id->dma_1word & 0x0001) ? XFER_SW_DMA_0 : 0)) return best;
  125. }
  126. if (id->capability & 1) { /* Pre-EIDE style SWDMA */
  127. if ((best = (id->tDMA == 2) ? XFER_SW_DMA_2 :
  128.     (id->tDMA == 1) ? XFER_SW_DMA_1 :
  129.     (id->tDMA == 0) ? XFER_SW_DMA_0 : 0)) return best;
  130. }
  131. }
  132. if ((map & XFER_EPIO) && (id->field_valid & 2)) { /* EIDE PIO modes */
  133. if ((best = (drive->id->eide_pio_modes & 4) ? XFER_PIO_5 :
  134.     (drive->id->eide_pio_modes & 2) ? XFER_PIO_4 :
  135.     (drive->id->eide_pio_modes & 1) ? XFER_PIO_3 : 0)) return best;
  136. }
  137. return  (drive->id->tPIO == 2) ? XFER_PIO_2 :
  138. (drive->id->tPIO == 1) ? XFER_PIO_1 :
  139. (drive->id->tPIO == 0) ? XFER_PIO_0 : XFER_PIO_SLOW;
  140. }
  141. static void ide_timing_quantize(struct ide_timing *t, struct ide_timing *q, int T, int UT)
  142. {
  143. q->setup   = EZ(t->setup   * 1000,  T);
  144. q->act8b   = EZ(t->act8b   * 1000,  T);
  145. q->rec8b   = EZ(t->rec8b   * 1000,  T);
  146. q->cyc8b   = EZ(t->cyc8b   * 1000,  T);
  147. q->active  = EZ(t->active  * 1000,  T);
  148. q->recover = EZ(t->recover * 1000,  T);
  149. q->cycle   = EZ(t->cycle   * 1000,  T);
  150. q->udma    = EZ(t->udma    * 1000, UT);
  151. }
  152. static void ide_timing_merge(struct ide_timing *a, struct ide_timing *b, struct ide_timing *m, unsigned int what)
  153. {
  154. if (what & IDE_TIMING_SETUP  ) m->setup   = MAX(a->setup,   b->setup);
  155. if (what & IDE_TIMING_ACT8B  ) m->act8b   = MAX(a->act8b,   b->act8b);
  156. if (what & IDE_TIMING_REC8B  ) m->rec8b   = MAX(a->rec8b,   b->rec8b);
  157. if (what & IDE_TIMING_CYC8B  ) m->cyc8b   = MAX(a->cyc8b,   b->cyc8b);
  158. if (what & IDE_TIMING_ACTIVE ) m->active  = MAX(a->active,  b->active);
  159. if (what & IDE_TIMING_RECOVER) m->recover = MAX(a->recover, b->recover);
  160. if (what & IDE_TIMING_CYCLE  ) m->cycle   = MAX(a->cycle,   b->cycle);
  161. if (what & IDE_TIMING_UDMA   ) m->udma    = MAX(a->udma,    b->udma);
  162. }
  163. static struct ide_timing* ide_timing_find_mode(short speed)
  164. {
  165. struct ide_timing *t;
  166. for (t = ide_timing; t->mode != speed; t++)
  167. if (t->mode < 0)
  168. return NULL;
  169. return t; 
  170. }
  171. static int ide_timing_compute(ide_drive_t *drive, short speed, struct ide_timing *t, int T, int UT)
  172. {
  173. struct hd_driveid *id = drive->id;
  174. struct ide_timing *s, p;
  175. /*
  176.  * Find the mode.
  177.  */
  178. if (!(s = ide_timing_find_mode(speed)))
  179. return -EINVAL;
  180. /*
  181.  * If the drive is an EIDE drive, it can tell us it needs extended
  182.  * PIO/MWDMA cycle timing.
  183.  */
  184. if (id && id->field_valid & 2) { /* EIDE drive */
  185. memset(&p, 0, sizeof(p));
  186. switch (speed & XFER_MODE) {
  187. case XFER_PIO:
  188. if (speed <= XFER_PIO_2) p.cycle = p.cyc8b = id->eide_pio;
  189.     else p.cycle = p.cyc8b = id->eide_pio_iordy;
  190. break;
  191. case XFER_MWDMA:
  192. p.cycle = id->eide_dma_min;
  193. break;
  194. }
  195. ide_timing_merge(&p, t, t, IDE_TIMING_CYCLE | IDE_TIMING_CYC8B);
  196. }
  197. /*
  198.  * Convert the timing to bus clock counts.
  199.  */
  200. ide_timing_quantize(s, t, T, UT);
  201. /*
  202.  * Even in DMA/UDMA modes we still use PIO access for IDENTIFY, S.M.A.R.T
  203.  * and some other commands. We have to ensure that the DMA cycle timing is
  204.  * slower/equal than the fastest PIO timing.
  205.  */
  206. if ((speed & XFER_MODE) != XFER_PIO) {
  207. ide_timing_compute(drive, ide_find_best_mode(drive, XFER_PIO | XFER_EPIO), &p, T, UT);
  208. ide_timing_merge(&p, t, t, IDE_TIMING_ALL);
  209. }
  210. /*
  211.  * Lenghten active & recovery time so that cycle time is correct.
  212.  */
  213. if (t->act8b + t->rec8b < t->cyc8b) {
  214. t->act8b += (t->cyc8b - (t->act8b + t->rec8b)) / 2;
  215. t->rec8b = t->cyc8b - t->act8b;
  216. }
  217. if (t->active + t->recover < t->cycle) {
  218. t->active += (t->cycle - (t->active + t->recover)) / 2;
  219. t->recover = t->cycle - t->active;
  220. }
  221. return 0;
  222. }
  223. #endif