cy82c693.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456
  1. /*
  2. * Copyright (C) 1998-2000 Andreas S. Krebs (akrebs@altavista.net), Maintainer
  3. * Copyright (C) 1998-2002 Andre Hedrick <andre@linux-ide.org>, Integrator
  4. *
  5. * CYPRESS CY82C693 chipset IDE controller
  6. *
  7. * The CY82C693 chipset is used on Digital's PC-Alpha 164SX boards.
  8. * Writing the driver was quite simple, since most of the job is
  9. * done by the generic pci-ide support.
  10. * The hard part was finding the CY82C693's datasheet on Cypress's
  11. * web page :-(. But Altavista solved this problem :-).
  12. *
  13. *
  14. * Notes:
  15. * - I recently got a 16.8G IBM DTTA, so I was able to test it with
  16. * a large and fast disk - the results look great, so I'd say the
  17. * driver is working fine :-)
  18. * hdparm -t reports 8.17 MB/sec at about 6% CPU usage for the DTTA
  19. * - this is my first linux driver, so there's probably a lot of room
  20. * for optimizations and bug fixing, so feel free to do it.
  21. * - use idebus=xx parameter to set PCI bus speed - needed to calc
  22. * timings for PIO modes (default will be 40)
  23. * - if using PIO mode it's a good idea to set the PIO mode and
  24. * 32-bit I/O support (if possible), e.g. hdparm -p2 -c1 /dev/hda
  25. * - I had some problems with my IBM DHEA with PIO modes < 2
  26. * (lost interrupts) ?????
  27. * - first tests with DMA look okay, they seem to work, but there is a
  28. * problem with sound - the BusMaster IDE TimeOut should fixed this
  29. *
  30. * Ancient History:
  31. * AMH@1999-08-24: v0.34 init_cy82c693_chip moved to pci_init_cy82c693
  32. * ASK@1999-01-23: v0.33 made a few minor code clean ups
  33. * removed DMA clock speed setting by default
  34. * added boot message
  35. * ASK@1998-11-01: v0.32 added support to set BusMaster IDE TimeOut
  36. * added support to set DMA Controller Clock Speed
  37. * ASK@1998-10-31: v0.31 fixed problem with setting to high DMA modes
  38. * on some drives.
  39. * ASK@1998-10-29: v0.3 added support to set DMA modes
  40. * ASK@1998-10-28: v0.2 added support to set PIO modes
  41. * ASK@1998-10-27: v0.1 first version - chipset detection
  42. *
  43. */
  44. #include <linux/module.h>
  45. #include <linux/types.h>
  46. #include <linux/pci.h>
  47. #include <linux/ide.h>
  48. #include <linux/init.h>
  49. #include <asm/io.h>
  50. /* the current version */
  51. #define CY82_VERSION "CY82C693U driver v0.34 99-13-12 Andreas S. Krebs (akrebs@altavista.net)"
  52. /*
  53. * The following are used to debug the driver.
  54. */
  55. #define CY82C693_DEBUG_LOGS 0
  56. #define CY82C693_DEBUG_INFO 0
  57. /* define CY82C693_SETDMA_CLOCK to set DMA Controller Clock Speed to ATCLK */
  58. #undef CY82C693_SETDMA_CLOCK
  59. /*
  60. * NOTE: the value for busmaster timeout is tricky and I got it by
  61. * trial and error! By using a to low value will cause DMA timeouts
  62. * and drop IDE performance, and by using a to high value will cause
  63. * audio playback to scatter.
  64. * If you know a better value or how to calc it, please let me know.
  65. */
  66. /* twice the value written in cy82c693ub datasheet */
  67. #define BUSMASTER_TIMEOUT 0x50
  68. /*
  69. * the value above was tested on my machine and it seems to work okay
  70. */
  71. /* here are the offset definitions for the registers */
  72. #define CY82_IDE_CMDREG 0x04
  73. #define CY82_IDE_ADDRSETUP 0x48
  74. #define CY82_IDE_MASTER_IOR 0x4C
  75. #define CY82_IDE_MASTER_IOW 0x4D
  76. #define CY82_IDE_SLAVE_IOR 0x4E
  77. #define CY82_IDE_SLAVE_IOW 0x4F
  78. #define CY82_IDE_MASTER_8BIT 0x50
  79. #define CY82_IDE_SLAVE_8BIT 0x51
  80. #define CY82_INDEX_PORT 0x22
  81. #define CY82_DATA_PORT 0x23
  82. #define CY82_INDEX_CTRLREG1 0x01
  83. #define CY82_INDEX_CHANNEL0 0x30
  84. #define CY82_INDEX_CHANNEL1 0x31
  85. #define CY82_INDEX_TIMEOUT 0x32
  86. /* the min and max PCI bus speed in MHz - from datasheet */
  87. #define CY82C963_MIN_BUS_SPEED 25
  88. #define CY82C963_MAX_BUS_SPEED 33
  89. /* the struct for the PIO mode timings */
  90. typedef struct pio_clocks_s {
  91. u8 address_time; /* Address setup (clocks) */
  92. u8 time_16r; /* clocks for 16bit IOR (0xF0=Active/data, 0x0F=Recovery) */
  93. u8 time_16w; /* clocks for 16bit IOW (0xF0=Active/data, 0x0F=Recovery) */
  94. u8 time_8; /* clocks for 8bit (0xF0=Active/data, 0x0F=Recovery) */
  95. } pio_clocks_t;
  96. /*
  97. * calc clocks using bus_speed
  98. * returns (rounded up) time in bus clocks for time in ns
  99. */
  100. static int calc_clk (int time, int bus_speed)
  101. {
  102. int clocks;
  103. clocks = (time*bus_speed+999)/1000 -1;
  104. if (clocks < 0)
  105. clocks = 0;
  106. if (clocks > 0x0F)
  107. clocks = 0x0F;
  108. return clocks;
  109. }
  110. /*
  111. * compute the values for the clock registers for PIO
  112. * mode and pci_clk [MHz] speed
  113. *
  114. * NOTE: for mode 0,1 and 2 drives 8-bit IDE command control registers are used
  115. * for mode 3 and 4 drives 8 and 16-bit timings are the same
  116. *
  117. */
  118. static void compute_clocks (u8 pio, pio_clocks_t *p_pclk)
  119. {
  120. int clk1, clk2;
  121. int bus_speed = system_bus_clock(); /* get speed of PCI bus */
  122. /* we don't check against CY82C693's min and max speed,
  123. * so you can play with the idebus=xx parameter
  124. */
  125. /* let's calc the address setup time clocks */
  126. p_pclk->address_time = (u8)calc_clk(ide_pio_timings[pio].setup_time, bus_speed);
  127. /* let's calc the active and recovery time clocks */
  128. clk1 = calc_clk(ide_pio_timings[pio].active_time, bus_speed);
  129. /* calc recovery timing */
  130. clk2 = ide_pio_timings[pio].cycle_time -
  131. ide_pio_timings[pio].active_time -
  132. ide_pio_timings[pio].setup_time;
  133. clk2 = calc_clk(clk2, bus_speed);
  134. clk1 = (clk1<<4)|clk2; /* combine active and recovery clocks */
  135. /* note: we use the same values for 16bit IOR and IOW
  136. * those are all the same, since I don't have other
  137. * timings than those from ide-lib.c
  138. */
  139. p_pclk->time_16r = (u8)clk1;
  140. p_pclk->time_16w = (u8)clk1;
  141. /* what are good values for 8bit ?? */
  142. p_pclk->time_8 = (u8)clk1;
  143. }
  144. /*
  145. * set DMA mode a specific channel for CY82C693
  146. */
  147. static void cy82c693_set_dma_mode(ide_drive_t *drive, const u8 mode)
  148. {
  149. ide_hwif_t *hwif = drive->hwif;
  150. u8 single = (mode & 0x10) >> 4, index = 0, data = 0;
  151. index = hwif->channel ? CY82_INDEX_CHANNEL1 : CY82_INDEX_CHANNEL0;
  152. #if CY82C693_DEBUG_LOGS
  153. /* for debug let's show the previous values */
  154. outb(index, CY82_INDEX_PORT);
  155. data = inb(CY82_DATA_PORT);
  156. printk (KERN_INFO "%s (ch=%d, dev=%d): DMA mode is %d (single=%d)\n",
  157. drive->name, HWIF(drive)->channel, drive->select.b.unit,
  158. (data&0x3), ((data>>2)&1));
  159. #endif /* CY82C693_DEBUG_LOGS */
  160. data = (mode & 3) | (single << 2);
  161. outb(index, CY82_INDEX_PORT);
  162. outb(data, CY82_DATA_PORT);
  163. #if CY82C693_DEBUG_INFO
  164. printk(KERN_INFO "%s (ch=%d, dev=%d): set DMA mode to %d (single=%d)\n",
  165. drive->name, HWIF(drive)->channel, drive->select.b.unit,
  166. mode & 3, single);
  167. #endif /* CY82C693_DEBUG_INFO */
  168. /*
  169. * note: below we set the value for Bus Master IDE TimeOut Register
  170. * I'm not absolutly sure what this does, but it solved my problem
  171. * with IDE DMA and sound, so I now can play sound and work with
  172. * my IDE driver at the same time :-)
  173. *
  174. * If you know the correct (best) value for this register please
  175. * let me know - ASK
  176. */
  177. data = BUSMASTER_TIMEOUT;
  178. outb(CY82_INDEX_TIMEOUT, CY82_INDEX_PORT);
  179. outb(data, CY82_DATA_PORT);
  180. #if CY82C693_DEBUG_INFO
  181. printk (KERN_INFO "%s: Set IDE Bus Master TimeOut Register to 0x%X\n",
  182. drive->name, data);
  183. #endif /* CY82C693_DEBUG_INFO */
  184. }
  185. static void cy82c693_set_pio_mode(ide_drive_t *drive, const u8 pio)
  186. {
  187. ide_hwif_t *hwif = HWIF(drive);
  188. struct pci_dev *dev = to_pci_dev(hwif->dev);
  189. pio_clocks_t pclk;
  190. unsigned int addrCtrl;
  191. /* select primary or secondary channel */
  192. if (hwif->index > 0) { /* drive is on the secondary channel */
  193. dev = pci_get_slot(dev->bus, dev->devfn+1);
  194. if (!dev) {
  195. printk(KERN_ERR "%s: tune_drive: "
  196. "Cannot find secondary interface!\n",
  197. drive->name);
  198. return;
  199. }
  200. }
  201. #if CY82C693_DEBUG_LOGS
  202. /* for debug let's show the register values */
  203. if (drive->select.b.unit == 0) {
  204. /*
  205. * get master drive registers
  206. * address setup control register
  207. * is 32 bit !!!
  208. */
  209. pci_read_config_dword(dev, CY82_IDE_ADDRSETUP, &addrCtrl);
  210. addrCtrl &= 0x0F;
  211. /* now let's get the remaining registers */
  212. pci_read_config_byte(dev, CY82_IDE_MASTER_IOR, &pclk.time_16r);
  213. pci_read_config_byte(dev, CY82_IDE_MASTER_IOW, &pclk.time_16w);
  214. pci_read_config_byte(dev, CY82_IDE_MASTER_8BIT, &pclk.time_8);
  215. } else {
  216. /*
  217. * set slave drive registers
  218. * address setup control register
  219. * is 32 bit !!!
  220. */
  221. pci_read_config_dword(dev, CY82_IDE_ADDRSETUP, &addrCtrl);
  222. addrCtrl &= 0xF0;
  223. addrCtrl >>= 4;
  224. /* now let's get the remaining registers */
  225. pci_read_config_byte(dev, CY82_IDE_SLAVE_IOR, &pclk.time_16r);
  226. pci_read_config_byte(dev, CY82_IDE_SLAVE_IOW, &pclk.time_16w);
  227. pci_read_config_byte(dev, CY82_IDE_SLAVE_8BIT, &pclk.time_8);
  228. }
  229. printk(KERN_INFO "%s (ch=%d, dev=%d): PIO timing is "
  230. "(addr=0x%X, ior=0x%X, iow=0x%X, 8bit=0x%X)\n",
  231. drive->name, hwif->channel, drive->select.b.unit,
  232. addrCtrl, pclk.time_16r, pclk.time_16w, pclk.time_8);
  233. #endif /* CY82C693_DEBUG_LOGS */
  234. /* let's calc the values for this PIO mode */
  235. compute_clocks(pio, &pclk);
  236. /* now let's write the clocks registers */
  237. if (drive->select.b.unit == 0) {
  238. /*
  239. * set master drive
  240. * address setup control register
  241. * is 32 bit !!!
  242. */
  243. pci_read_config_dword(dev, CY82_IDE_ADDRSETUP, &addrCtrl);
  244. addrCtrl &= (~0xF);
  245. addrCtrl |= (unsigned int)pclk.address_time;
  246. pci_write_config_dword(dev, CY82_IDE_ADDRSETUP, addrCtrl);
  247. /* now let's set the remaining registers */
  248. pci_write_config_byte(dev, CY82_IDE_MASTER_IOR, pclk.time_16r);
  249. pci_write_config_byte(dev, CY82_IDE_MASTER_IOW, pclk.time_16w);
  250. pci_write_config_byte(dev, CY82_IDE_MASTER_8BIT, pclk.time_8);
  251. addrCtrl &= 0xF;
  252. } else {
  253. /*
  254. * set slave drive
  255. * address setup control register
  256. * is 32 bit !!!
  257. */
  258. pci_read_config_dword(dev, CY82_IDE_ADDRSETUP, &addrCtrl);
  259. addrCtrl &= (~0xF0);
  260. addrCtrl |= ((unsigned int)pclk.address_time<<4);
  261. pci_write_config_dword(dev, CY82_IDE_ADDRSETUP, addrCtrl);
  262. /* now let's set the remaining registers */
  263. pci_write_config_byte(dev, CY82_IDE_SLAVE_IOR, pclk.time_16r);
  264. pci_write_config_byte(dev, CY82_IDE_SLAVE_IOW, pclk.time_16w);
  265. pci_write_config_byte(dev, CY82_IDE_SLAVE_8BIT, pclk.time_8);
  266. addrCtrl >>= 4;
  267. addrCtrl &= 0xF;
  268. }
  269. #if CY82C693_DEBUG_INFO
  270. printk(KERN_INFO "%s (ch=%d, dev=%d): set PIO timing to "
  271. "(addr=0x%X, ior=0x%X, iow=0x%X, 8bit=0x%X)\n",
  272. drive->name, hwif->channel, drive->select.b.unit,
  273. addrCtrl, pclk.time_16r, pclk.time_16w, pclk.time_8);
  274. #endif /* CY82C693_DEBUG_INFO */
  275. }
  276. /*
  277. * this function is called during init and is used to setup the cy82c693 chip
  278. */
  279. static unsigned int __devinit init_chipset_cy82c693(struct pci_dev *dev, const char *name)
  280. {
  281. if (PCI_FUNC(dev->devfn) != 1)
  282. return 0;
  283. #ifdef CY82C693_SETDMA_CLOCK
  284. u8 data = 0;
  285. #endif /* CY82C693_SETDMA_CLOCK */
  286. /* write info about this verion of the driver */
  287. printk(KERN_INFO CY82_VERSION "\n");
  288. #ifdef CY82C693_SETDMA_CLOCK
  289. /* okay let's set the DMA clock speed */
  290. outb(CY82_INDEX_CTRLREG1, CY82_INDEX_PORT);
  291. data = inb(CY82_DATA_PORT);
  292. #if CY82C693_DEBUG_INFO
  293. printk(KERN_INFO "%s: Peripheral Configuration Register: 0x%X\n",
  294. name, data);
  295. #endif /* CY82C693_DEBUG_INFO */
  296. /*
  297. * for some reason sometimes the DMA controller
  298. * speed is set to ATCLK/2 ???? - we fix this here
  299. *
  300. * note: i don't know what causes this strange behaviour,
  301. * but even changing the dma speed doesn't solve it :-(
  302. * the ide performance is still only half the normal speed
  303. *
  304. * if anybody knows what goes wrong with my machine, please
  305. * let me know - ASK
  306. */
  307. data |= 0x03;
  308. outb(CY82_INDEX_CTRLREG1, CY82_INDEX_PORT);
  309. outb(data, CY82_DATA_PORT);
  310. #if CY82C693_DEBUG_INFO
  311. printk (KERN_INFO "%s: New Peripheral Configuration Register: 0x%X\n",
  312. name, data);
  313. #endif /* CY82C693_DEBUG_INFO */
  314. #endif /* CY82C693_SETDMA_CLOCK */
  315. return 0;
  316. }
  317. /*
  318. * the init function - called for each ide channel once
  319. */
  320. static void __devinit init_hwif_cy82c693(ide_hwif_t *hwif)
  321. {
  322. hwif->set_pio_mode = &cy82c693_set_pio_mode;
  323. hwif->set_dma_mode = &cy82c693_set_dma_mode;
  324. }
  325. static void __devinit init_iops_cy82c693(ide_hwif_t *hwif)
  326. {
  327. static ide_hwif_t *primary;
  328. struct pci_dev *dev = to_pci_dev(hwif->dev);
  329. if (PCI_FUNC(dev->devfn) == 1)
  330. primary = hwif;
  331. else {
  332. hwif->mate = primary;
  333. hwif->channel = 1;
  334. }
  335. }
  336. static const struct ide_port_info cy82c693_chipset __devinitdata = {
  337. .name = "CY82C693",
  338. .init_chipset = init_chipset_cy82c693,
  339. .init_iops = init_iops_cy82c693,
  340. .init_hwif = init_hwif_cy82c693,
  341. .chipset = ide_cy82c693,
  342. .host_flags = IDE_HFLAG_SINGLE,
  343. .pio_mask = ATA_PIO4,
  344. .swdma_mask = ATA_SWDMA2,
  345. .mwdma_mask = ATA_MWDMA2,
  346. };
  347. static int __devinit cy82c693_init_one(struct pci_dev *dev, const struct pci_device_id *id)
  348. {
  349. struct pci_dev *dev2;
  350. int ret = -ENODEV;
  351. /* CY82C693 is more than only a IDE controller.
  352. Function 1 is primary IDE channel, function 2 - secondary. */
  353. if ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE &&
  354. PCI_FUNC(dev->devfn) == 1) {
  355. dev2 = pci_get_slot(dev->bus, dev->devfn + 1);
  356. ret = ide_setup_pci_devices(dev, dev2, &cy82c693_chipset);
  357. /* We leak pci refs here but thats ok - we can't be unloaded */
  358. }
  359. return ret;
  360. }
  361. static const struct pci_device_id cy82c693_pci_tbl[] = {
  362. { PCI_VDEVICE(CONTAQ, PCI_DEVICE_ID_CONTAQ_82C693), 0 },
  363. { 0, },
  364. };
  365. MODULE_DEVICE_TABLE(pci, cy82c693_pci_tbl);
  366. static struct pci_driver driver = {
  367. .name = "Cypress_IDE",
  368. .id_table = cy82c693_pci_tbl,
  369. .probe = cy82c693_init_one,
  370. };
  371. static int __init cy82c693_ide_init(void)
  372. {
  373. return ide_pci_register_driver(&driver);
  374. }
  375. module_init(cy82c693_ide_init);
  376. MODULE_AUTHOR("Andreas Krebs, Andre Hedrick");
  377. MODULE_DESCRIPTION("PCI driver module for the Cypress CY82C693 IDE");
  378. MODULE_LICENSE("GPL");