| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * IDE Chipset driver for the Compaq TriFlex IDE controller. | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * Known to work with the Compaq Workstation 5x00 series. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (C) 2002 Hewlett-Packard Development Group, L.P. | 
					
						
							|  |  |  |  * Author: Torben Mathiasen <torben.mathiasen@hp.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License version 2 as | 
					
						
							|  |  |  |  * published by the Free Software Foundation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  * along with this program; if not, write to the Free Software | 
					
						
							|  |  |  |  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * Loosely based on the piix & svwks drivers. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Documentation: | 
					
						
							|  |  |  |  *	Not publically available. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/types.h>
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/pci.h>
 | 
					
						
							|  |  |  | #include <linux/ide.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-24 22:53:32 +02:00
										 |  |  | #define DRV_NAME "triflex"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-19 01:45:29 -08:00
										 |  |  | static void triflex_set_mode(ide_hwif_t *hwif, ide_drive_t *drive) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-02-01 23:09:31 +01:00
										 |  |  | 	struct pci_dev *dev = to_pci_dev(hwif->dev); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	u32 triflex_timings = 0; | 
					
						
							| 
									
										
										
										
											2008-10-13 21:39:40 +02:00
										 |  |  | 	u16 timing = 0; | 
					
						
							|  |  |  | 	u8 channel_offset = hwif->channel ? 0x74 : 0x70, unit = drive->dn & 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	pci_read_config_dword(dev, channel_offset, &triflex_timings); | 
					
						
							| 
									
										
										
										
											2008-10-13 21:39:40 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-19 01:45:29 -08:00
										 |  |  | 	switch (drive->dma_mode) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		case XFER_MW_DMA_2: | 
					
						
							|  |  |  | 			timing = 0x0103;  | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case XFER_MW_DMA_1: | 
					
						
							|  |  |  | 			timing = 0x0203; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case XFER_MW_DMA_0: | 
					
						
							|  |  |  | 			timing = 0x0808; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case XFER_SW_DMA_2: | 
					
						
							|  |  |  | 		case XFER_SW_DMA_1: | 
					
						
							|  |  |  | 		case XFER_SW_DMA_0: | 
					
						
							|  |  |  | 			timing = 0x0f0f; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case XFER_PIO_4: | 
					
						
							|  |  |  | 			timing = 0x0202; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case XFER_PIO_3: | 
					
						
							|  |  |  | 			timing = 0x0204; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case XFER_PIO_2: | 
					
						
							|  |  |  | 			timing = 0x0404; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case XFER_PIO_1: | 
					
						
							|  |  |  | 			timing = 0x0508; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case XFER_PIO_0: | 
					
						
							|  |  |  | 			timing = 0x0808; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	triflex_timings &= ~(0xFFFF << (16 * unit)); | 
					
						
							|  |  |  | 	triflex_timings |= (timing << (16 * unit)); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	pci_write_config_dword(dev, channel_offset, triflex_timings); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-19 01:44:41 -08:00
										 |  |  | static void triflex_set_pio_mode(ide_hwif_t *hwif, ide_drive_t *drive) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-01-19 01:45:29 -08:00
										 |  |  | 	drive->dma_mode = drive->pio_mode; | 
					
						
							|  |  |  | 	triflex_set_mode(hwif, drive); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-04-26 22:25:14 +02:00
										 |  |  | static const struct ide_port_ops triflex_port_ops = { | 
					
						
							|  |  |  | 	.set_pio_mode		= triflex_set_pio_mode, | 
					
						
							|  |  |  | 	.set_dma_mode		= triflex_set_mode, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-20 00:32:34 +02:00
										 |  |  | static const struct ide_port_info triflex_device __devinitdata = { | 
					
						
							| 
									
										
										
										
											2008-07-24 22:53:32 +02:00
										 |  |  | 	.name		= DRV_NAME, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	.enablebits	= {{0x80, 0x01, 0x01}, {0x80, 0x02, 0x02}}, | 
					
						
							| 
									
										
										
										
											2008-04-26 22:25:14 +02:00
										 |  |  | 	.port_ops	= &triflex_port_ops, | 
					
						
							| 
									
										
										
										
											2007-07-20 01:11:59 +02:00
										 |  |  | 	.pio_mask	= ATA_PIO4, | 
					
						
							| 
									
										
										
										
											2007-10-19 00:30:07 +02:00
										 |  |  | 	.swdma_mask	= ATA_SWDMA2, | 
					
						
							|  |  |  | 	.mwdma_mask	= ATA_MWDMA2, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __devinit triflex_init_one(struct pci_dev *dev,  | 
					
						
							|  |  |  | 		const struct pci_device_id *id) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-07-24 22:53:14 +02:00
										 |  |  | 	return ide_pci_init_one(dev, &triflex_device, NULL); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-16 22:29:56 +02:00
										 |  |  | static const struct pci_device_id triflex_pci_tbl[] = { | 
					
						
							|  |  |  | 	{ PCI_VDEVICE(COMPAQ, PCI_DEVICE_ID_COMPAQ_TRIFLEX_IDE), 0 }, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	{ 0, }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | MODULE_DEVICE_TABLE(pci, triflex_pci_tbl); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-13 21:39:41 +02:00
										 |  |  | static struct pci_driver triflex_pci_driver = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	.name		= "TRIFLEX_IDE", | 
					
						
							|  |  |  | 	.id_table	= triflex_pci_tbl, | 
					
						
							|  |  |  | 	.probe		= triflex_init_one, | 
					
						
							| 
									
										
										
										
											2008-07-24 22:53:26 +02:00
										 |  |  | 	.remove		= ide_pci_remove, | 
					
						
							| 
									
										
										
										
											2008-10-10 22:39:32 +02:00
										 |  |  | 	.suspend	= ide_pci_suspend, | 
					
						
							|  |  |  | 	.resume		= ide_pci_resume, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-27 13:46:56 +01:00
										 |  |  | static int __init triflex_ide_init(void) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-10-13 21:39:41 +02:00
										 |  |  | 	return ide_pci_register_driver(&triflex_pci_driver); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-24 22:53:26 +02:00
										 |  |  | static void __exit triflex_ide_exit(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-10-13 21:39:41 +02:00
										 |  |  | 	pci_unregister_driver(&triflex_pci_driver); | 
					
						
							| 
									
										
										
										
											2008-07-24 22:53:26 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | module_init(triflex_ide_init); | 
					
						
							| 
									
										
										
										
											2008-07-24 22:53:26 +02:00
										 |  |  | module_exit(triflex_ide_exit); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | MODULE_AUTHOR("Torben Mathiasen"); | 
					
						
							|  |  |  | MODULE_DESCRIPTION("PCI driver module for Compaq Triflex IDE"); | 
					
						
							|  |  |  | MODULE_LICENSE("GPL"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 |