blob: b77ec35151b34dec10d691fa57f780faacef1430 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * IDE Chipset driver for the Compaq TriFlex IDE controller.
3 *
4 * Known to work with the Compaq Workstation 5x00 series.
5 *
6 * Copyright (C) 2002 Hewlett-Packard Development Group, L.P.
7 * Author: Torben Mathiasen <torben.mathiasen@hp.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 * Loosely based on the piix & svwks drivers.
23 *
24 * Documentation:
25 * Not publically available.
26 */
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/types.h>
29#include <linux/module.h>
30#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/hdreg.h>
32#include <linux/pci.h>
33#include <linux/ide.h>
34#include <linux/init.h>
35
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +020036#define DRV_NAME "triflex"
37
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020038static void triflex_set_mode(ide_drive_t *drive, const u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
40 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010041 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 u8 channel_offset = hwif->channel ? 0x74 : 0x70;
43 u16 timing = 0;
44 u32 triflex_timings = 0;
45 u8 unit = (drive->select.b.unit & 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47 pci_read_config_dword(dev, channel_offset, &triflex_timings);
48
49 switch(speed) {
50 case XFER_MW_DMA_2:
51 timing = 0x0103;
52 break;
53 case XFER_MW_DMA_1:
54 timing = 0x0203;
55 break;
56 case XFER_MW_DMA_0:
57 timing = 0x0808;
58 break;
59 case XFER_SW_DMA_2:
60 case XFER_SW_DMA_1:
61 case XFER_SW_DMA_0:
62 timing = 0x0f0f;
63 break;
64 case XFER_PIO_4:
65 timing = 0x0202;
66 break;
67 case XFER_PIO_3:
68 timing = 0x0204;
69 break;
70 case XFER_PIO_2:
71 timing = 0x0404;
72 break;
73 case XFER_PIO_1:
74 timing = 0x0508;
75 break;
76 case XFER_PIO_0:
77 timing = 0x0808;
78 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 }
80
81 triflex_timings &= ~(0xFFFF << (16 * unit));
82 triflex_timings |= (timing << (16 * unit));
83
84 pci_write_config_dword(dev, channel_offset, triflex_timings);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +020087static void triflex_set_pio_mode(ide_drive_t *drive, const u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020089 triflex_set_mode(drive, XFER_PIO_0 + pio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +020092static const struct ide_port_ops triflex_port_ops = {
93 .set_pio_mode = triflex_set_pio_mode,
94 .set_dma_mode = triflex_set_mode,
95};
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +020097static const struct ide_port_info triflex_device __devinitdata = {
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +020098 .name = DRV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 .enablebits = {{0x80, 0x01, 0x01}, {0x80, 0x02, 0x02}},
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200100 .port_ops = &triflex_port_ops,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200101 .pio_mask = ATA_PIO4,
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +0200102 .swdma_mask = ATA_SWDMA2,
103 .mwdma_mask = ATA_MWDMA2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104};
105
106static int __devinit triflex_init_one(struct pci_dev *dev,
107 const struct pci_device_id *id)
108{
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +0200109 return ide_pci_init_one(dev, &triflex_device, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +0200112static const struct pci_device_id triflex_pci_tbl[] = {
113 { PCI_VDEVICE(COMPAQ, PCI_DEVICE_ID_COMPAQ_TRIFLEX_IDE), 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 { 0, },
115};
116MODULE_DEVICE_TABLE(pci, triflex_pci_tbl);
117
118static struct pci_driver driver = {
119 .name = "TRIFLEX_IDE",
120 .id_table = triflex_pci_tbl,
121 .probe = triflex_init_one,
Bartlomiej Zolnierkiewicz29d72f22008-07-24 22:53:26 +0200122 .remove = ide_pci_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123};
124
Bartlomiej Zolnierkiewicz82ab1ee2007-01-27 13:46:56 +0100125static int __init triflex_ide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 return ide_pci_register_driver(&driver);
128}
129
Bartlomiej Zolnierkiewicz29d72f22008-07-24 22:53:26 +0200130static void __exit triflex_ide_exit(void)
131{
132 pci_unregister_driver(&driver);
133}
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135module_init(triflex_ide_init);
Bartlomiej Zolnierkiewicz29d72f22008-07-24 22:53:26 +0200136module_exit(triflex_ide_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138MODULE_AUTHOR("Torben Mathiasen");
139MODULE_DESCRIPTION("PCI driver module for Compaq Triflex IDE");
140MODULE_LICENSE("GPL");
141
142