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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/ide/qd65xx.c Version 0.07 Sep 30, 2001
  3.  *
  4.  *  Copyright (C) 1996-2001  Linus Torvalds & author (see below)
  5.  */
  6. /*
  7.  *  Version 0.03 Cleaned auto-tune, added probe
  8.  *  Version 0.04 Added second channel tuning
  9.  *  Version 0.05 Enhanced tuning ; added qd6500 support
  10.  *  Version 0.06 Added dos driver's list
  11.  *  Version 0.07 Second channel bug fix 
  12.  *
  13.  * QDI QD6500/QD6580 EIDE controller fast support
  14.  *
  15.  * Please set local bus speed using kernel parameter idebus
  16.  *  for example, "idebus=33" stands for 33Mhz VLbus
  17.  * To activate controller support, use "ide0=qd65xx"
  18.  * To enable tuning, use "ide0=autotune"
  19.  * To enable second channel tuning (qd6580 only), use "ide1=autotune"
  20.  */
  21. /*
  22.  * Rewritten from the work of Colten Edwards <pje120@cs.usask.ca> by
  23.  * Samuel Thibault <samuel.thibault@fnac.net>
  24.  */
  25. #undef REALLY_SLOW_IO /* most systems can safely undef this */
  26. #include <linux/types.h>
  27. #include <linux/kernel.h>
  28. #include <linux/delay.h>
  29. #include <linux/timer.h>
  30. #include <linux/mm.h>
  31. #include <linux/ioport.h>
  32. #include <linux/blkdev.h>
  33. #include <linux/hdreg.h>
  34. #include <linux/ide.h>
  35. #include <linux/init.h>
  36. #include <asm/io.h>
  37. #include "ide_modes.h"
  38. #include "qd65xx.h"
  39. /*
  40.  * I/O ports are 0x30-0x31 (and 0x32-0x33 for qd6580)
  41.  *            or 0xb0-0xb1 (and 0xb2-0xb3 for qd6580)
  42.  * -- qd6500 is a single IDE interface
  43.  * -- qd6580 is a dual IDE interface
  44.  *
  45.  * More research on qd6580 being done by willmore@cig.mot.com (David)
  46.  * More Information given by Petr Soucek (petr@ryston.cz)
  47.  * http://www.ryston.cz/petr/vlb
  48.  */
  49. /*
  50.  * base: Timer1
  51.  *
  52.  *
  53.  * base+0x01: Config (R/O)
  54.  *
  55.  * bit 0: ide baseport: 1 = 0x1f0 ; 0 = 0x170 (only useful for qd6500)
  56.  * bit 1: qd65xx baseport: 1 = 0xb0 ; 0 = 0x30
  57.  * bit 2: ID3: bus speed: 1 = <=33MHz ; 0 = >33MHz
  58.  * bit 3: qd6500: 1 = disabled, 0 = enabled
  59.  *        qd6580: 1
  60.  * upper nibble:
  61.  *        qd6500: 1100
  62.  *        qd6580: either 1010 or 0101
  63.  *
  64.  *
  65.  * base+0x02: Timer2 (qd6580 only)
  66.  *
  67.  *
  68.  * base+0x03: Control (qd6580 only)
  69.  *
  70.  * bits 0-3 must always be set 1
  71.  * bit 4 must be set 1, but is set 0 by dos driver while measuring vlb clock
  72.  * bit 0 : 1 = Only primary port enabled : channel 0 for hda, channel 1 for hdb
  73.  *         0 = Primary and Secondary ports enabled : channel 0 for hda & hdb
  74.  *                                                   channel 1 for hdc & hdd
  75.  * bit 1 : 1 = only disks on primary port
  76.  *         0 = disks & ATAPI devices on primary port
  77.  * bit 2-4 : always 0
  78.  * bit 5 : status, but of what ?
  79.  * bit 6 : always set 1 by dos driver
  80.  * bit 7 : set 1 for non-ATAPI devices on primary port
  81.  *  (maybe read-ahead and post-write buffer ?)
  82.  */
  83. static int timings[4]={-1,-1,-1,-1}; /* stores current timing for each timer */
  84. static void qd_write_reg (byte content, byte reg)
  85. {
  86. unsigned long flags;
  87. save_flags(flags); /* all CPUs */
  88. cli(); /* all CPUs */
  89. outb(content,reg);
  90. restore_flags(flags); /* all CPUs */
  91. }
  92. byte __init qd_read_reg (byte reg)
  93. {
  94. unsigned long flags;
  95. byte read;
  96. save_flags(flags); /* all CPUs */
  97. cli(); /* all CPUs */
  98. read = inb(reg);
  99. restore_flags(flags); /* all CPUs */
  100. return read;
  101. }
  102. /*
  103.  * qd_select:
  104.  *
  105.  * This routine is invoked from ide.c to prepare for access to a given drive.
  106.  */
  107. static void qd_select (ide_drive_t *drive)
  108. {
  109. byte index = (( (QD_TIMREG(drive)) & 0x80 ) >> 7) |
  110. (QD_TIMREG(drive) & 0x02);
  111. if (timings[index] != QD_TIMING(drive))
  112. qd_write_reg(timings[index] = QD_TIMING(drive), QD_TIMREG(drive));
  113. }
  114. /*
  115.  * qd6500_compute_timing
  116.  *
  117.  * computes the timing value where
  118.  *  lower nibble represents active time,   in count of VLB clocks
  119.  *  upper nibble represents recovery time, in count of VLB clocks
  120.  */
  121. static byte qd6500_compute_timing (ide_hwif_t *hwif, int active_time, int recovery_time)
  122. {
  123. byte active_cycle,recovery_cycle;
  124. if (ide_system_bus_speed()<=33) {
  125. active_cycle =   9  - IDE_IN(active_time   * ide_system_bus_speed() / 1000 + 1, 2, 9);
  126. recovery_cycle = 15 - IDE_IN(recovery_time * ide_system_bus_speed() / 1000 + 1, 0, 15);
  127. } else {
  128. active_cycle =   8  - IDE_IN(active_time   * ide_system_bus_speed() / 1000 + 1, 1, 8);
  129. recovery_cycle = 18 - IDE_IN(recovery_time * ide_system_bus_speed() / 1000 + 1, 3, 18);
  130. }
  131. return((recovery_cycle<<4) | 0x08 | active_cycle);
  132. }
  133. /*
  134.  * qd6580_compute_timing
  135.  *
  136.  * idem for qd6580
  137.  */
  138. static byte qd6580_compute_timing (int active_time, int recovery_time)
  139. {
  140. byte active_cycle   = 17-IDE_IN(active_time   * ide_system_bus_speed() / 1000 + 1, 2, 17);
  141. byte recovery_cycle = 15-IDE_IN(recovery_time * ide_system_bus_speed() / 1000 + 1, 2, 15);
  142. return((recovery_cycle<<4) | active_cycle);
  143. }
  144. /*
  145.  * qd_find_disk_type
  146.  *
  147.  * tries to find timing from dos driver's table
  148.  */
  149. static int qd_find_disk_type (ide_drive_t *drive,
  150. int *active_time, int *recovery_time)
  151. {
  152. struct qd65xx_timing_s *p;
  153. char model[40];
  154. if (!*drive->id->model) return 0;
  155. strncpy(model,drive->id->model,40);
  156. ide_fixstring(model,40,1); /* byte-swap */
  157. for (p = qd65xx_timing ; p->offset != -1 ; p++) {
  158. if (!strncmp(p->model, model+p->offset,4)) {
  159. printk(KERN_DEBUG "%s: listed !n",drive->name);
  160. *active_time = p->active;
  161. *recovery_time = p->recovery;
  162. return 1;
  163. }
  164. }
  165. return 0;
  166. }
  167. /*
  168.  * qd_timing_ok:
  169.  *
  170.  * check whether timings don't conflict
  171.  */
  172. static int qd_timing_ok (ide_drive_t drives[])
  173. {
  174. return (IDE_IMPLY(drives[0].present && drives[1].present,
  175. IDE_IMPLY(QD_TIMREG(drives) == QD_TIMREG(drives+1),
  176.           QD_TIMING(drives) == QD_TIMING(drives+1))));
  177. /* if same timing register, must be same timing */
  178. }
  179. /*
  180.  * qd_set_timing:
  181.  *
  182.  * records the timing, and enables selectproc as needed
  183.  */
  184. static void qd_set_timing (ide_drive_t *drive, byte timing)
  185. {
  186. ide_hwif_t *hwif = HWIF(drive);
  187. drive->drive_data &= 0xff00;
  188. drive->drive_data |= timing;
  189. if (qd_timing_ok(hwif->drives)) {
  190. qd_select(drive); /* selects once */
  191. hwif->selectproc = NULL;
  192. } else
  193. hwif->selectproc = &qd_select;
  194. printk(KERN_DEBUG "%s: %#xn",drive->name,timing);
  195. }
  196. /*
  197.  * qd6500_tune_drive
  198.  */
  199. static void qd6500_tune_drive (ide_drive_t *drive, byte pio)
  200. {
  201. int active_time   = 175;
  202. int recovery_time = 415; /* worst case values from the dos driver */
  203. if (drive->id && !qd_find_disk_type(drive,&active_time,&recovery_time)
  204. && drive->id->tPIO && (drive->id->field_valid & 0x02)
  205. && drive->id->eide_pio >= 240) {
  206. printk(KERN_INFO "%s: PIO mode%dn", drive->name,
  207. drive->id->tPIO);
  208. active_time = 110;
  209. recovery_time = drive->id->eide_pio - 120;
  210. }
  211. qd_set_timing(drive,qd6500_compute_timing(HWIF(drive),active_time,recovery_time));
  212. }
  213. /*
  214.  * qd6580_tune_drive
  215.  */
  216. static void qd6580_tune_drive (ide_drive_t *drive, byte pio)
  217. {
  218. ide_pio_data_t d;
  219. int base = HWIF(drive)->select_data;
  220. int active_time   = 175;
  221. int recovery_time = 415; /* worst case values from the dos driver */
  222. if (drive->id && !qd_find_disk_type(drive,&active_time,&recovery_time)) {
  223. pio = ide_get_best_pio_mode(drive, pio, 255, &d);
  224. pio = IDE_MIN(pio,4);
  225. switch (pio) {
  226. case 0: break;
  227. case 3:
  228. if (d.cycle_time >= 110) {
  229. active_time = 86;
  230. recovery_time = d.cycle_time-102;
  231. } else
  232. printk(KERN_WARNING "%s: Strange recovery time !n",drive->name);
  233. break;
  234. case 4:
  235. if (d.cycle_time >= 69) {
  236. active_time = 70;
  237. recovery_time = d.cycle_time-61;
  238. } else
  239. printk(KERN_WARNING "%s: Strange recovery time !n",drive->name);
  240. break;
  241. default:
  242. if (d.cycle_time >= 180) {
  243. active_time = 110;
  244. recovery_time = d.cycle_time - 120;
  245. } else {
  246. active_time = ide_pio_timings[pio].active_time;
  247. recovery_time = d.cycle_time
  248. -active_time;
  249. }
  250. }
  251. printk(KERN_INFO "%s: PIO mode%dn",drive->name,pio);
  252. }
  253. if (!HWIF(drive)->channel && drive->media != ide_disk) {
  254. qd_write_reg(0x5f,QD_CONTROL_PORT);
  255. printk(KERN_WARNING "%s: ATAPI: disabled read-ahead FIFO and post-write buffer on %s.n",drive->name,HWIF(drive)->name);
  256. }
  257. qd_set_timing(drive,qd6580_compute_timing(active_time,recovery_time));
  258. }
  259. /*
  260.  * qd_testreg
  261.  *
  262.  * tests if the given port is a register
  263.  */
  264. static int __init qd_testreg(int port)
  265. {
  266. byte savereg;
  267. byte readreg;
  268. unsigned long flags;
  269. save_flags(flags); /* all CPUs */
  270. cli(); /* all CPUs */
  271. savereg = inb_p(port);
  272. outb_p(QD_TESTVAL,port); /* safe value */
  273. readreg = inb_p(port);
  274. outb(savereg,port);
  275. restore_flags(flags); /* all CPUs */
  276. if (savereg == QD_TESTVAL) {
  277. printk(KERN_ERR "Outch ! the probe for qd65xx isn't reliable !n");
  278. printk(KERN_ERR "Please contact maintainers to tell about your hardwaren");
  279. printk(KERN_ERR "Assuming qd65xx is not present.n");
  280. return 1;
  281. }
  282. return (readreg != QD_TESTVAL);
  283. }
  284. /*
  285.  * probe:
  286.  *
  287.  * looks at the specified baseport, and if qd found, registers & initialises it
  288.  * return 1 if another qd may be probed
  289.  */
  290. int __init probe (int base)
  291. {
  292. byte config;
  293. byte index;
  294. config = qd_read_reg(QD_CONFIG_PORT);
  295. if (! ((config & QD_CONFIG_BASEPORT) >> 1 == (base == 0xb0)) ) return 1;
  296. index = ! (config & QD_CONFIG_IDE_BASEPORT);
  297. if ((config & 0xf0) == QD_CONFIG_QD6500) {
  298. ide_hwif_t *hwif = &ide_hwifs[index];
  299. if (qd_testreg(base)) return 1; /* bad register */
  300. /* qd6500 found */
  301. printk(KERN_NOTICE "%s: qd6500 at %#xn",
  302. ide_hwifs[index].name, base);
  303. printk(KERN_DEBUG "qd6500: config=%#x, ID3=%un",
  304. config, QD_ID3);
  305. if (config & QD_CONFIG_DISABLED) {
  306. printk(KERN_WARNING "qd6500 is disabled !n");
  307. return 1;
  308. }
  309. hwif->chipset = ide_qd65xx;
  310. hwif->select_data = base;
  311. hwif->config_data = config;
  312. hwif->drives[0].drive_data =
  313. hwif->drives[1].drive_data = QD6500_DEF_DATA;
  314. hwif->drives[0].io_32bit =
  315. hwif->drives[1].io_32bit = 1;
  316. hwif->tuneproc = &qd6500_tune_drive;
  317. return 1;
  318. }
  319. if (((config & 0xf0) == QD_CONFIG_QD6580_A) || ((config & 0xf0) == QD_CONFIG_QD6580_B)) {
  320. byte control;
  321. if (qd_testreg(base) || qd_testreg(base+0x02)) return 1;
  322. /* bad registers */
  323. /* qd6580 found */
  324. control = qd_read_reg(QD_CONTROL_PORT);
  325. printk(KERN_NOTICE "qd6580 at %#xn", base);
  326. printk(KERN_DEBUG "qd6580: config=%#x, control=%#x, ID3=%un",
  327. config, control, QD_ID3);
  328. if (control & QD_CONTR_SEC_DISABLED) {
  329. ide_hwif_t *hwif = &ide_hwifs[index];
  330. /* secondary disabled */
  331. printk(KERN_INFO "%s: qd6580: single IDE boardn",
  332. ide_hwifs[index].name);
  333. hwif->chipset = ide_qd65xx;
  334. hwif->select_data = base;
  335. hwif->config_data = config | (control <<8);
  336. hwif->drives[0].drive_data =
  337. hwif->drives[1].drive_data = QD6580_DEF_DATA;
  338. hwif->drives[0].io_32bit =
  339. hwif->drives[1].io_32bit = 1;
  340. hwif->tuneproc = &qd6580_tune_drive;
  341. qd_write_reg(QD_DEF_CONTR,QD_CONTROL_PORT);
  342. return 1;
  343. } else {
  344. int i,j;
  345. /* secondary enabled */
  346. printk(KERN_INFO "%s&%s: qd6580: dual IDE boardn",
  347. ide_hwifs[0].name,ide_hwifs[1].name);
  348. for (i=0;i<2;i++) {
  349. ide_hwifs[i].chipset = ide_qd65xx;
  350. ide_hwifs[i].mate = &ide_hwifs[i^1];
  351. ide_hwifs[i].channel = i;
  352. ide_hwifs[i].select_data = base;
  353. ide_hwifs[i].config_data = config | (control <<8);
  354. ide_hwifs[i].tuneproc = &qd6580_tune_drive;
  355. for (j=0;j<2;j++) {
  356. ide_hwifs[i].drives[j].drive_data =
  357.        i?QD6580_DEF_DATA2:QD6580_DEF_DATA;
  358. ide_hwifs[i].drives[j].io_32bit = 1;
  359. }
  360. }
  361. qd_write_reg(QD_DEF_CONTR,QD_CONTROL_PORT);
  362. return 0; /* no other qd65xx possible */
  363. }
  364. }
  365. /* no qd65xx found */
  366. return 1;
  367. }
  368. /*
  369.  * init_qd65xx:
  370.  *
  371.  * called at the very beginning of initialization ; should just probe and link
  372.  */
  373. void __init init_qd65xx (void)
  374. {
  375. if (probe(0x30)) probe(0xb0);
  376. }