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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/ide/sis5513.c Version 0.11 June 9, 2000
  3.  *
  4.  * Copyright (C) 1999-2000 Andre Hedrick <andre@linux-ide.org>
  5.  * May be copied or modified under the terms of the GNU General Public License
  6.  *
  7.  * Thanks to SIS Taiwan for direct support and hardware.
  8.  * Tested and designed on the SiS620/5513 chipset.
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/types.h>
  12. #include <linux/kernel.h>
  13. #include <linux/delay.h>
  14. #include <linux/timer.h>
  15. #include <linux/mm.h>
  16. #include <linux/ioport.h>
  17. #include <linux/blkdev.h>
  18. #include <linux/hdreg.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/pci.h>
  21. #include <linux/init.h>
  22. #include <linux/ide.h>
  23. #include <asm/io.h>
  24. #include <asm/irq.h>
  25. #include "ide_modes.h"
  26. #define DISPLAY_SIS_TIMINGS
  27. #define SIS5513_DEBUG_DRIVE_INFO 0
  28. static struct pci_dev *host_dev = NULL;
  29. #define SIS5513_FLAG_ATA_00 0x00000000
  30. #define SIS5513_FLAG_ATA_16 0x00000001
  31. #define SIS5513_FLAG_ATA_33 0x00000002
  32. #define SIS5513_FLAG_ATA_66 0x00000004
  33. #define SIS5513_FLAG_LATENCY 0x00000010
  34. static const struct {
  35. const char *name;
  36. unsigned short host_id;
  37. unsigned int flags;
  38. } SiSHostChipInfo[] = {
  39. { "SiS530", PCI_DEVICE_ID_SI_530, SIS5513_FLAG_ATA_66, },
  40. { "SiS540", PCI_DEVICE_ID_SI_540, SIS5513_FLAG_ATA_66, },
  41. { "SiS620", PCI_DEVICE_ID_SI_620, SIS5513_FLAG_ATA_66|SIS5513_FLAG_LATENCY, },
  42. { "SiS630", PCI_DEVICE_ID_SI_630, SIS5513_FLAG_ATA_66|SIS5513_FLAG_LATENCY, },
  43. { "SiS635", PCI_DEVICE_ID_SI_635, SIS5513_FLAG_ATA_66|SIS5513_FLAG_LATENCY, },
  44. { "SiS640", PCI_DEVICE_ID_SI_640, SIS5513_FLAG_ATA_66|SIS5513_FLAG_LATENCY, },
  45. { "SiS645", PCI_DEVICE_ID_SI_645, SIS5513_FLAG_ATA_66|SIS5513_FLAG_LATENCY, },
  46. { "SiS650", PCI_DEVICE_ID_SI_650, SIS5513_FLAG_ATA_66|SIS5513_FLAG_LATENCY, },
  47. { "SiS730", PCI_DEVICE_ID_SI_730, SIS5513_FLAG_ATA_66|SIS5513_FLAG_LATENCY, },
  48. { "SiS735", PCI_DEVICE_ID_SI_735, SIS5513_FLAG_ATA_66|SIS5513_FLAG_LATENCY, },
  49. { "SiS740", PCI_DEVICE_ID_SI_740, SIS5513_FLAG_ATA_66|SIS5513_FLAG_LATENCY, },
  50. { "SiS745", PCI_DEVICE_ID_SI_745, SIS5513_FLAG_ATA_66|SIS5513_FLAG_LATENCY, },
  51. { "SiS750", PCI_DEVICE_ID_SI_750, SIS5513_FLAG_ATA_66|SIS5513_FLAG_LATENCY, },
  52. { "SiS5591", PCI_DEVICE_ID_SI_5591, SIS5513_FLAG_ATA_33, },
  53. { "SiS5597", PCI_DEVICE_ID_SI_5597, SIS5513_FLAG_ATA_33, },
  54. { "SiS5600", PCI_DEVICE_ID_SI_5600, SIS5513_FLAG_ATA_33, },
  55. { "SiS5511", PCI_DEVICE_ID_SI_5511, SIS5513_FLAG_ATA_16, },
  56. };
  57. #if 0
  58. static struct _pio_mode_mapping {
  59. byte data_active;
  60. byte recovery;
  61. byte pio_mode;
  62. } pio_mode_mapping[] = {
  63. { 8, 12, 0 },
  64. { 6,  7, 1 },
  65. { 4,  4, 2 },
  66. { 3,  3, 3 },
  67. { 3,  1, 4 }
  68. };
  69. static struct _dma_mode_mapping {
  70. byte data_active;
  71. byte recovery;
  72. byte dma_mode;
  73. } dma_mode_mapping[] = {
  74. { 8, 8, 0 },
  75. { 3, 2, 1 },
  76. { 3, 1, 2 }
  77. };
  78. static struct _udma_mode_mapping {
  79. byte cycle_time;
  80. char * udma_mode;
  81. } udma_mode_mapping[] = {
  82. { 8, "Mode 0" },
  83. { 6, "Mode 1" },
  84. { 4, "Mode 2" }, 
  85. { 3, "Mode 3" },
  86. { 2, "Mode 4" },
  87. { 0, "Mode 5" }
  88. };
  89. static __inline__ char * find_udma_mode (byte cycle_time)
  90. {
  91. int n;
  92. for (n = 0; n <= 4; n++)
  93. if (udma_mode_mapping[n].cycle_time <= cycle_time)
  94. return udma_mode_mapping[n].udma_mode;
  95. return udma_mode_mapping[4].udma_mode;
  96. }
  97. #endif
  98. #if defined(DISPLAY_SIS_TIMINGS) && defined(CONFIG_PROC_FS)
  99. #include <linux/stat.h>
  100. #include <linux/proc_fs.h>
  101. static int sis_get_info(char *, char **, off_t, int);
  102. extern int (*sis_display_info)(char *, char **, off_t, int); /* ide-proc.c */
  103. static struct pci_dev *bmide_dev;
  104. static char *cable_type[] = {
  105. "80 pins",
  106. "40 pins"
  107. };
  108. static char *recovery_time [] ={
  109. "12 PCICLK", "1 PCICLK",
  110. "2 PCICLK", "3 PCICLK",
  111. "4 PCICLK", "5 PCICLCK",
  112. "6 PCICLK", "7 PCICLCK",
  113. "8 PCICLK", "9 PCICLCK",
  114. "10 PCICLK", "11 PCICLK",
  115. "13 PCICLK", "14 PCICLK",
  116. "15 PCICLK", "15 PCICLK"
  117. };
  118. static char * cycle_time [] = {
  119. "2 CLK", "2 CLK",
  120. "3 CLK", "4 CLK",
  121. "5 CLK", "6 CLK",
  122. "7 CLK", "8 CLK"
  123. };
  124. static char * active_time [] = {
  125. "8 PCICLK", "1 PCICLCK",
  126. "2 PCICLK", "2 PCICLK",
  127. "4 PCICLK", "5 PCICLK",
  128. "6 PCICLK", "12 PCICLK"
  129. };
  130. static int sis_get_info (char *buffer, char **addr, off_t offset, int count)
  131. {
  132. int rc;
  133. char *p = buffer;
  134. byte reg,reg1;
  135. u16 reg2, reg3;
  136. p += sprintf(p, "--------------- Primary Channel ---------------- Secondary Channel -------------n");
  137. rc = pci_read_config_byte(bmide_dev, 0x4a, &reg);
  138. p += sprintf(p, "Channel Status: %s t t t t %s n",
  139.      (reg & 0x02) ? "On" : "Off",
  140.      (reg & 0x04) ? "On" : "Off");
  141.      
  142. rc = pci_read_config_byte(bmide_dev, 0x09, &reg);
  143. p += sprintf(p, "Operation Mode: %s t t t %s n",
  144.      (reg & 0x01) ? "Native" : "Compatible",
  145.      (reg & 0x04) ? "Native" : "Compatible");
  146.            
  147. rc = pci_read_config_byte(bmide_dev, 0x48, &reg);
  148. p += sprintf(p, "Cable Type:     %s t t t %sn",
  149.      (reg & 0x10) ? cable_type[1] : cable_type[0],
  150.      (reg & 0x20) ? cable_type[1] : cable_type[0]);
  151.      
  152. rc = pci_read_config_word(bmide_dev, 0x4c, &reg2);
  153. rc = pci_read_config_word(bmide_dev, 0x4e, &reg3);
  154. p += sprintf(p, "Prefetch Count: %d t t t t %dn",
  155.      reg2, reg3);
  156. rc = pci_read_config_byte(bmide_dev, 0x4b, &reg);      
  157. p += sprintf(p, "Drive 0:        Postwrite %s t t Postwrite %sn",
  158.      (reg & 0x10) ? "Enabled" : "Disabled",
  159.      (reg & 0x40) ? "Enabled" : "Disabled");
  160. p += sprintf(p, "                Prefetch  %s t t Prefetch  %sn",
  161.      (reg & 0x01) ? "Enabled" : "Disabled",
  162.      (reg & 0x04) ? "Enabled" : "Disabled");
  163.           
  164. rc = pci_read_config_byte(bmide_dev, 0x41, &reg);
  165. rc = pci_read_config_byte(bmide_dev, 0x45, &reg1);
  166. p += sprintf(p, "                UDMA %s t t t UDMA %sn",
  167.      (reg & 0x80)  ? "Enabled" : "Disabled",
  168.      (reg1 & 0x80) ? "Enabled" : "Disabled");
  169. p += sprintf(p, "                UDMA Cycle Time    %s t UDMA Cycle Time    %sn",
  170.      cycle_time[(reg & 0x70) >> 4], cycle_time[(reg1 & 0x70) >> 4]);
  171. p += sprintf(p, "                Data Active Time   %s t Data Active Time   %sn",
  172.      active_time[(reg & 0x07)], active_time[(reg1 &0x07)] ); 
  173. rc = pci_read_config_byte(bmide_dev, 0x40, &reg);
  174. rc = pci_read_config_byte(bmide_dev, 0x44, &reg1);
  175. p += sprintf(p, "                Data Recovery Time %s t Data Recovery Time %sn",
  176.      recovery_time[(reg & 0x0f)], recovery_time[(reg1 & 0x0f)]);
  177. rc = pci_read_config_byte(bmide_dev, 0x4b, &reg);      
  178. p += sprintf(p, "Drive 1:        Postwrite %s t t Postwrite %sn",
  179.      (reg & 0x20) ? "Enabled" : "Disabled",
  180.      (reg & 0x80) ? "Enabled" : "Disabled");
  181. p += sprintf(p, "                Prefetch  %s t t Prefetch  %sn",
  182.      (reg & 0x02) ? "Enabled" : "Disabled",
  183.      (reg & 0x08) ? "Enabled" : "Disabled");
  184. rc = pci_read_config_byte(bmide_dev, 0x43, &reg);
  185. rc = pci_read_config_byte(bmide_dev, 0x47, &reg1);
  186. p += sprintf(p, "                UDMA %s t t t UDMA %sn",
  187.      (reg & 0x80)  ? "Enabled" : "Disabled",
  188.      (reg1 & 0x80) ? "Enabled" : "Disabled");
  189. p += sprintf(p, "                UDMA Cycle Time    %s t UDMA Cycle Time    %sn",
  190.      cycle_time[(reg & 0x70) >> 4], cycle_time[(reg1 & 0x70) >> 4]);
  191. p += sprintf(p, "                Data Active Time   %s t Data Active Time   %sn",
  192.      active_time[(reg & 0x07)], active_time[(reg1 &0x07)] ); 
  193. rc = pci_read_config_byte(bmide_dev, 0x42, &reg);
  194. rc = pci_read_config_byte(bmide_dev, 0x46, &reg1);
  195. p += sprintf(p, "                Data Recovery Time %s t Data Recovery Time %sn",
  196.      recovery_time[(reg & 0x0f)], recovery_time[(reg1 & 0x0f)]);
  197. return p-buffer;
  198. }
  199. #endif /* defined(DISPLAY_SIS_TIMINGS) && defined(CONFIG_PROC_FS) */
  200. byte sis_proc = 0;
  201. extern char *ide_xfer_verbose (byte xfer_rate);
  202. static void config_drive_art_rwp (ide_drive_t *drive)
  203. {
  204. ide_hwif_t *hwif = HWIF(drive);
  205. struct pci_dev *dev = hwif->pci_dev;
  206. byte reg4bh = 0;
  207. byte rw_prefetch = (0x11 << drive->dn);
  208. pci_read_config_byte(dev, 0x4b, &reg4bh);
  209. if (drive->media != ide_disk)
  210. return;
  211. if ((reg4bh & rw_prefetch) != rw_prefetch)
  212. pci_write_config_byte(dev, 0x4b, reg4bh|rw_prefetch);
  213. }
  214. static void config_art_rwp_pio (ide_drive_t *drive, byte pio)
  215. {
  216. ide_hwif_t *hwif = HWIF(drive);
  217. struct pci_dev *dev = hwif->pci_dev;
  218. byte timing, drive_pci, test1, test2;
  219. unsigned short eide_pio_timing[6] = {600, 390, 240, 180, 120, 90};
  220. unsigned short xfer_pio = drive->id->eide_pio_modes;
  221. config_drive_art_rwp(drive);
  222. pio = ide_get_best_pio_mode(drive, 255, pio, NULL);
  223. if (xfer_pio> 4)
  224. xfer_pio = 0;
  225. if (drive->id->eide_pio_iordy > 0) {
  226. for (xfer_pio = 5;
  227. xfer_pio>0 &&
  228. drive->id->eide_pio_iordy>eide_pio_timing[xfer_pio];
  229. xfer_pio--);
  230. } else {
  231. xfer_pio = (drive->id->eide_pio_modes & 4) ? 0x05 :
  232.    (drive->id->eide_pio_modes & 2) ? 0x04 :
  233.    (drive->id->eide_pio_modes & 1) ? 0x03 : xfer_pio;
  234. }
  235. timing = (xfer_pio >= pio) ? xfer_pio : pio;
  236. /*
  237.  *               Mode 0       Mode 1     Mode 2     Mode 3     Mode 4
  238.  * Active time    8T (240ns)  6T (180ns) 4T (120ns) 3T  (90ns) 3T  (90ns)
  239.  * 0x41 2:0 bits  000          110        100        011        011
  240.  * Recovery time 12T (360ns)  7T (210ns) 4T (120ns) 3T  (90ns) 1T  (30ns)
  241.  * 0x40 3:0 bits 0000         0111       0100       0011       0001
  242.  * Cycle time    20T (600ns) 13T (390ns) 8T (240ns) 6T (180ns) 4T (120ns)
  243.  */
  244. switch(drive->dn) {
  245. case 0: drive_pci = 0x40; break;
  246. case 1: drive_pci = 0x42; break;
  247. case 2: drive_pci = 0x44; break;
  248. case 3: drive_pci = 0x46; break;
  249. default: return;
  250. }
  251. pci_read_config_byte(dev, drive_pci, &test1);
  252. pci_read_config_byte(dev, drive_pci|0x01, &test2);
  253. /*
  254.  * Do a blanket clear of active and recovery timings.
  255.  */
  256. test1 &= ~0x07;
  257. test2 &= ~0x0F;
  258. switch(timing) {
  259. case 4: test1 |= 0x01; test2 |= 0x03; break;
  260. case 3: test1 |= 0x03; test2 |= 0x03; break;
  261. case 2: test1 |= 0x04; test2 |= 0x04; break;
  262. case 1: test1 |= 0x07; test2 |= 0x06; break;
  263. default: break;
  264. }
  265. pci_write_config_byte(dev, drive_pci, test1);
  266. pci_write_config_byte(dev, drive_pci|0x01, test2);
  267. }
  268. static int config_chipset_for_pio (ide_drive_t *drive, byte pio)
  269. {
  270. int err;
  271. byte speed;
  272. switch(pio) {
  273. case 4: speed = XFER_PIO_4; break;
  274. case 3: speed = XFER_PIO_3; break;
  275. case 2: speed = XFER_PIO_2; break;
  276. case 1: speed = XFER_PIO_1; break;
  277. default: speed = XFER_PIO_0; break;
  278. }
  279. config_art_rwp_pio(drive, pio);
  280. drive->current_speed = speed;
  281. err = ide_config_drive_speed(drive, speed);
  282. return err;
  283. }
  284. static int sis5513_tune_chipset (ide_drive_t *drive, byte speed)
  285. {
  286. ide_hwif_t *hwif = HWIF(drive);
  287. struct pci_dev *dev = hwif->pci_dev;
  288. byte drive_pci, test1, test2;
  289. byte unmask, four_two, mask = 0;
  290. if (host_dev) {
  291. switch(host_dev->device) {
  292. case PCI_DEVICE_ID_SI_530:
  293. case PCI_DEVICE_ID_SI_540:
  294. case PCI_DEVICE_ID_SI_620:
  295. case PCI_DEVICE_ID_SI_630:
  296. case PCI_DEVICE_ID_SI_635:
  297. case PCI_DEVICE_ID_SI_640:
  298. case PCI_DEVICE_ID_SI_645:
  299. case PCI_DEVICE_ID_SI_650:
  300. case PCI_DEVICE_ID_SI_730:
  301. case PCI_DEVICE_ID_SI_735:
  302. case PCI_DEVICE_ID_SI_740:
  303. case PCI_DEVICE_ID_SI_745:
  304. case PCI_DEVICE_ID_SI_750:
  305. unmask   = 0xF0;
  306. four_two = 0x01;
  307. break;
  308. default:
  309. unmask   = 0xE0;
  310. four_two = 0x00;
  311. break;
  312. }
  313. } else {
  314. unmask   = 0xE0;
  315. four_two = 0x00;
  316. }
  317. switch(drive->dn) {
  318. case 0: drive_pci = 0x40;break;
  319. case 1: drive_pci = 0x42;break;
  320. case 2: drive_pci = 0x44;break;
  321. case 3: drive_pci = 0x46;break;
  322. default: return ide_dma_off;
  323. }
  324. pci_read_config_byte(dev, drive_pci, &test1);
  325. pci_read_config_byte(dev, drive_pci|0x01, &test2);
  326. if ((speed <= XFER_MW_DMA_2) && (test2 & 0x80)) {
  327. pci_write_config_byte(dev, drive_pci|0x01, test2 & ~0x80);
  328. pci_read_config_byte(dev, drive_pci|0x01, &test2);
  329. } else {
  330. pci_write_config_byte(dev, drive_pci|0x01, test2 & ~unmask);
  331. }
  332. switch(speed) {
  333. #ifdef CONFIG_BLK_DEV_IDEDMA
  334. case XFER_UDMA_5: mask = 0x80; break;
  335. case XFER_UDMA_4: mask = 0x90; break;
  336. case XFER_UDMA_3: mask = 0xA0; break;
  337. case XFER_UDMA_2: mask = (four_two) ? 0xB0 : 0xA0; break;
  338. case XFER_UDMA_1: mask = (four_two) ? 0xD0 : 0xC0; break;
  339. case XFER_UDMA_0: mask = unmask; break;
  340. case XFER_MW_DMA_2:
  341. case XFER_MW_DMA_1:
  342. case XFER_MW_DMA_0:
  343. case XFER_SW_DMA_2:
  344. case XFER_SW_DMA_1:
  345. case XFER_SW_DMA_0: break;
  346. #endif /* CONFIG_BLK_DEV_IDEDMA */
  347. case XFER_PIO_4: return((int) config_chipset_for_pio(drive, 4));
  348. case XFER_PIO_3: return((int) config_chipset_for_pio(drive, 3));
  349. case XFER_PIO_2: return((int) config_chipset_for_pio(drive, 2));
  350. case XFER_PIO_1: return((int) config_chipset_for_pio(drive, 1));
  351. case XFER_PIO_0:
  352. default:  return((int) config_chipset_for_pio(drive, 0));
  353. }
  354. if (speed > XFER_MW_DMA_2)
  355. pci_write_config_byte(dev, drive_pci|0x01, test2|mask);
  356. drive->current_speed = speed;
  357. return ((int) ide_config_drive_speed(drive, speed));
  358. }
  359. static void sis5513_tune_drive (ide_drive_t *drive, byte pio)
  360. {
  361. (void) config_chipset_for_pio(drive, pio);
  362. }
  363. #ifdef CONFIG_BLK_DEV_IDEDMA
  364. /*
  365.  * ((id->hw_config & 0x4000|0x2000) && (HWIF(drive)->udma_four))
  366.  */
  367. static int config_chipset_for_dma (ide_drive_t *drive, byte ultra)
  368. {
  369. struct hd_driveid *id = drive->id;
  370. ide_hwif_t *hwif = HWIF(drive);
  371. byte four_two = 0, speed = 0;
  372. int err;
  373. byte unit = (drive->select.b.unit & 0x01);
  374. byte udma_66 = eighty_ninty_three(drive);
  375. byte ultra_100 = 0;
  376. if (host_dev) {
  377. switch(host_dev->device) {
  378. case PCI_DEVICE_ID_SI_635:
  379. case PCI_DEVICE_ID_SI_640:
  380. case PCI_DEVICE_ID_SI_645:
  381. case PCI_DEVICE_ID_SI_650:
  382. case PCI_DEVICE_ID_SI_730:
  383. case PCI_DEVICE_ID_SI_735:
  384. case PCI_DEVICE_ID_SI_740:
  385. case PCI_DEVICE_ID_SI_745:
  386. case PCI_DEVICE_ID_SI_750:
  387. ultra_100 = 1;
  388. case PCI_DEVICE_ID_SI_530:
  389. case PCI_DEVICE_ID_SI_540:
  390. case PCI_DEVICE_ID_SI_620:
  391. case PCI_DEVICE_ID_SI_630:
  392. four_two = 0x01;
  393. break;
  394. default:
  395. four_two = 0x00; break;
  396. }
  397. }
  398. if ((id->dma_ultra & 0x0020) && (ultra) && (udma_66) && (four_two) && (ultra_100))
  399. speed = XFER_UDMA_5;
  400. else if ((id->dma_ultra & 0x0010) && (ultra) && (udma_66) && (four_two))
  401. speed = XFER_UDMA_4;
  402. else if ((id->dma_ultra & 0x0008) && (ultra) && (udma_66) && (four_two))
  403. speed = XFER_UDMA_3;
  404. else if ((id->dma_ultra & 0x0004) && (ultra))
  405. speed = XFER_UDMA_2;
  406. else if ((id->dma_ultra & 0x0002) && (ultra))
  407. speed = XFER_UDMA_1;
  408. else if ((id->dma_ultra & 0x0001) && (ultra))
  409. speed = XFER_UDMA_0;
  410. else if (id->dma_mword & 0x0004)
  411. speed = XFER_MW_DMA_2;
  412. else if (id->dma_mword & 0x0002)
  413. speed = XFER_MW_DMA_1;
  414. else if (id->dma_mword & 0x0001)
  415. speed = XFER_MW_DMA_0;
  416. else if (id->dma_1word & 0x0004)
  417. speed = XFER_SW_DMA_2;
  418. else if (id->dma_1word & 0x0002)
  419. speed = XFER_SW_DMA_1;
  420. else if (id->dma_1word & 0x0001)
  421. speed = XFER_SW_DMA_0;
  422. else
  423. return ((int) ide_dma_off_quietly);
  424. outb(inb(hwif->dma_base+2)|(1<<(5+unit)), hwif->dma_base+2);
  425. err = sis5513_tune_chipset(drive, speed);
  426. #if SIS5513_DEBUG_DRIVE_INFO
  427. printk("%s: %s drive%dn", drive->name, ide_xfer_verbose(speed), drive->dn);
  428. #endif /* SIS5513_DEBUG_DRIVE_INFO */
  429. return ((int) ((id->dma_ultra >> 11) & 7) ? ide_dma_on :
  430. ((id->dma_ultra >> 8) & 7) ? ide_dma_on :
  431. ((id->dma_mword >> 8) & 7) ? ide_dma_on :
  432. ((id->dma_1word >> 8) & 7) ? ide_dma_on :
  433.      ide_dma_off_quietly);
  434. }
  435. static int config_drive_xfer_rate (ide_drive_t *drive)
  436. {
  437. struct hd_driveid *id = drive->id;
  438. ide_dma_action_t dma_func = ide_dma_off_quietly;
  439. if (id && (id->capability & 1) && HWIF(drive)->autodma) {
  440. /* Consult the list of known "bad" drives */
  441. if (ide_dmaproc(ide_dma_bad_drive, drive)) {
  442. dma_func = ide_dma_off;
  443. goto fast_ata_pio;
  444. }
  445. dma_func = ide_dma_off_quietly;
  446. if (id->field_valid & 4) {
  447. if (id->dma_ultra & 0x003F) {
  448. /* Force if Capable UltraDMA */
  449. dma_func = config_chipset_for_dma(drive, 1);
  450. if ((id->field_valid & 2) &&
  451.     (dma_func != ide_dma_on))
  452. goto try_dma_modes;
  453. }
  454. } else if (id->field_valid & 2) {
  455. try_dma_modes:
  456. if ((id->dma_mword & 0x0007) ||
  457.     (id->dma_1word & 0x0007)) {
  458. /* Force if Capable regular DMA modes */
  459. dma_func = config_chipset_for_dma(drive, 0);
  460. if (dma_func != ide_dma_on)
  461. goto no_dma_set;
  462. }
  463. } else if ((ide_dmaproc(ide_dma_good_drive, drive)) &&
  464.    (id->eide_dma_time > 150)) {
  465. /* Consult the list of known "good" drives */
  466. dma_func = config_chipset_for_dma(drive, 0);
  467. if (dma_func != ide_dma_on)
  468. goto no_dma_set;
  469. } else {
  470. goto fast_ata_pio;
  471. }
  472. } else if ((id->capability & 8) || (id->field_valid & 2)) {
  473. fast_ata_pio:
  474. dma_func = ide_dma_off_quietly;
  475. no_dma_set:
  476. (void) config_chipset_for_pio(drive, 5);
  477. }
  478. return HWIF(drive)->dmaproc(dma_func, drive);
  479. }
  480. /*
  481.  * sis5513_dmaproc() initiates/aborts (U)DMA read/write operations on a drive.
  482.  */
  483. int sis5513_dmaproc (ide_dma_action_t func, ide_drive_t *drive)
  484. {
  485. switch (func) {
  486. case ide_dma_check:
  487. config_drive_art_rwp(drive);
  488. config_art_rwp_pio(drive, 5);
  489. return config_drive_xfer_rate(drive);
  490. default:
  491. break;
  492. }
  493. return ide_dmaproc(func, drive); /* use standard DMA stuff */
  494. }
  495. #endif /* CONFIG_BLK_DEV_IDEDMA */
  496. unsigned int __init pci_init_sis5513 (struct pci_dev *dev, const char *name)
  497. {
  498. struct pci_dev *host;
  499. int i = 0;
  500. byte latency = 0;
  501. pci_read_config_byte(dev, PCI_LATENCY_TIMER, &latency);
  502. for (i = 0; i < ARRAY_SIZE (SiSHostChipInfo) && !host_dev; i++) {
  503. host = pci_find_device (PCI_VENDOR_ID_SI,
  504. SiSHostChipInfo[i].host_id,
  505. NULL);
  506. if (!host)
  507. continue;
  508. host_dev = host;
  509. printk(SiSHostChipInfo[i].name);
  510. printk("n");
  511. if (SiSHostChipInfo[i].flags & SIS5513_FLAG_LATENCY) {
  512. if (latency != 0x10)
  513. pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x10);
  514. }
  515. }
  516. if (host_dev) {
  517. byte reg52h = 0;
  518. pci_read_config_byte(dev, 0x52, &reg52h);
  519. if (!(reg52h & 0x04)) {
  520. /* set IDE controller to operate in Compabitility mode only */
  521. pci_write_config_byte(dev, 0x52, reg52h|0x04);
  522. }
  523. #if defined(DISPLAY_SIS_TIMINGS) && defined(CONFIG_PROC_FS)
  524. if (!sis_proc) {
  525. sis_proc = 1;
  526. bmide_dev = dev;
  527. sis_display_info = &sis_get_info;
  528. }
  529. #endif /* defined(DISPLAY_SIS_TIMINGS) && defined(CONFIG_PROC_FS) */
  530. }
  531. return 0;
  532. }
  533. unsigned int __init ata66_sis5513 (ide_hwif_t *hwif)
  534. {
  535. byte reg48h = 0, ata66 = 0;
  536. byte mask = hwif->channel ? 0x20 : 0x10;
  537. pci_read_config_byte(hwif->pci_dev, 0x48, &reg48h);
  538. if (host_dev) {
  539. switch(host_dev->device) {
  540. case PCI_DEVICE_ID_SI_530:
  541. case PCI_DEVICE_ID_SI_540:
  542. case PCI_DEVICE_ID_SI_620:
  543. case PCI_DEVICE_ID_SI_630:
  544. case PCI_DEVICE_ID_SI_635:
  545. case PCI_DEVICE_ID_SI_640:
  546. case PCI_DEVICE_ID_SI_645:
  547. case PCI_DEVICE_ID_SI_650:
  548. case PCI_DEVICE_ID_SI_730:
  549. case PCI_DEVICE_ID_SI_735:
  550. case PCI_DEVICE_ID_SI_740:
  551. case PCI_DEVICE_ID_SI_745:
  552. case PCI_DEVICE_ID_SI_750:
  553. ata66 = (reg48h & mask) ? 0 : 1;
  554. default:
  555. break;
  556. }
  557. }
  558.         return (ata66);
  559. }
  560. void __init ide_init_sis5513 (ide_hwif_t *hwif)
  561. {
  562. hwif->irq = hwif->channel ? 15 : 14;
  563. hwif->tuneproc = &sis5513_tune_drive;
  564. hwif->speedproc = &sis5513_tune_chipset;
  565. if (!(hwif->dma_base))
  566. return;
  567. if (host_dev) {
  568. switch(host_dev->device) {
  569. #ifdef CONFIG_BLK_DEV_IDEDMA
  570. case PCI_DEVICE_ID_SI_530:
  571. case PCI_DEVICE_ID_SI_540:
  572. case PCI_DEVICE_ID_SI_620:
  573. case PCI_DEVICE_ID_SI_630:
  574. case PCI_DEVICE_ID_SI_635:
  575. case PCI_DEVICE_ID_SI_640:
  576. case PCI_DEVICE_ID_SI_645:
  577. case PCI_DEVICE_ID_SI_650:
  578. case PCI_DEVICE_ID_SI_730:
  579. case PCI_DEVICE_ID_SI_735:
  580. case PCI_DEVICE_ID_SI_740:
  581. case PCI_DEVICE_ID_SI_745:
  582. case PCI_DEVICE_ID_SI_750:
  583. case PCI_DEVICE_ID_SI_5600:
  584. case PCI_DEVICE_ID_SI_5597:
  585. case PCI_DEVICE_ID_SI_5591:
  586. if (!noautodma)
  587. hwif->autodma = 1;
  588. hwif->dmaproc = &sis5513_dmaproc;
  589. break;
  590. #endif /* CONFIG_BLK_DEV_IDEDMA */
  591. default:
  592. hwif->autodma = 0;
  593. break;
  594. }
  595. }
  596. return;
  597. }