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

嵌入式Linux

开发平台:

Unix_Linux

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