blob: 16ddd095683257d20521a8df3288c82939fc9c08 [file] [log] [blame]
Thomas Gleixner45051532019-05-29 16:57:47 -07001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * IDE Chipset driver for the Compaq TriFlex IDE controller.
4 *
5 * Known to work with the Compaq Workstation 5x00 series.
6 *
7 * Copyright (C) 2002 Hewlett-Packard Development Group, L.P.
8 * Author: Torben Mathiasen <torben.mathiasen@hp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * Loosely based on the piix & svwks drivers.
11 *
12 * Documentation:
Lucas De Marchi25985ed2011-03-30 22:57:33 -030013 * Not publicly available.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/types.h>
17#include <linux/module.h>
18#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/pci.h>
20#include <linux/ide.h>
21#include <linux/init.h>
22
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +020023#define DRV_NAME "triflex"
24
Bartlomiej Zolnierkiewicz87761682010-01-19 01:45:29 -080025static void triflex_set_mode(ide_hwif_t *hwif, ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010027 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 u32 triflex_timings = 0;
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +020029 u16 timing = 0;
30 u8 channel_offset = hwif->channel ? 0x74 : 0x70, unit = drive->dn & 1;
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 pci_read_config_dword(dev, channel_offset, &triflex_timings);
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +020033
Bartlomiej Zolnierkiewicz87761682010-01-19 01:45:29 -080034 switch (drive->dma_mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 case XFER_MW_DMA_2:
36 timing = 0x0103;
37 break;
38 case XFER_MW_DMA_1:
39 timing = 0x0203;
40 break;
41 case XFER_MW_DMA_0:
42 timing = 0x0808;
43 break;
44 case XFER_SW_DMA_2:
45 case XFER_SW_DMA_1:
46 case XFER_SW_DMA_0:
47 timing = 0x0f0f;
48 break;
49 case XFER_PIO_4:
50 timing = 0x0202;
51 break;
52 case XFER_PIO_3:
53 timing = 0x0204;
54 break;
55 case XFER_PIO_2:
56 timing = 0x0404;
57 break;
58 case XFER_PIO_1:
59 timing = 0x0508;
60 break;
61 case XFER_PIO_0:
62 timing = 0x0808;
63 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 }
65
66 triflex_timings &= ~(0xFFFF << (16 * unit));
67 triflex_timings |= (timing << (16 * unit));
68
69 pci_write_config_dword(dev, channel_offset, triflex_timings);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
Bartlomiej Zolnierkiewicze085b3c2010-01-19 01:44:41 -080072static void triflex_set_pio_mode(ide_hwif_t *hwif, ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Bartlomiej Zolnierkiewicz87761682010-01-19 01:45:29 -080074 drive->dma_mode = drive->pio_mode;
75 triflex_set_mode(hwif, drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +020078static const struct ide_port_ops triflex_port_ops = {
79 .set_pio_mode = triflex_set_pio_mode,
80 .set_dma_mode = triflex_set_mode,
81};
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Greg Kroah-Hartmanfe31edc2012-12-21 13:21:03 -080083static const struct ide_port_info triflex_device = {
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +020084 .name = DRV_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 .enablebits = {{0x80, 0x01, 0x01}, {0x80, 0x02, 0x02}},
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +020086 .port_ops = &triflex_port_ops,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +020087 .pio_mask = ATA_PIO4,
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +020088 .swdma_mask = ATA_SWDMA2,
89 .mwdma_mask = ATA_MWDMA2,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090};
91
Greg Kroah-Hartmanfe31edc2012-12-21 13:21:03 -080092static int triflex_init_one(struct pci_dev *dev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +020094 return ide_pci_init_one(dev, &triflex_device, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +020097static const struct pci_device_id triflex_pci_tbl[] = {
98 { PCI_VDEVICE(COMPAQ, PCI_DEVICE_ID_COMPAQ_TRIFLEX_IDE), 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 { 0, },
100};
101MODULE_DEVICE_TABLE(pci, triflex_pci_tbl);
102
Mikulas Patocka839e7302011-10-12 04:31:51 +0000103#ifdef CONFIG_PM
104static int triflex_ide_pci_suspend(struct pci_dev *dev, pm_message_t state)
105{
106 /*
107 * We must not disable or powerdown the device.
108 * APM bios refuses to suspend if IDE is not accessible.
109 */
110 pci_save_state(dev);
111 return 0;
112}
113#else
114#define triflex_ide_pci_suspend NULL
115#endif
116
Bartlomiej Zolnierkiewicza9ab09e22008-10-13 21:39:41 +0200117static struct pci_driver triflex_pci_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .name = "TRIFLEX_IDE",
119 .id_table = triflex_pci_tbl,
120 .probe = triflex_init_one,
Bartlomiej Zolnierkiewicz29d72f22008-07-24 22:53:26 +0200121 .remove = ide_pci_remove,
Mikulas Patocka839e7302011-10-12 04:31:51 +0000122 .suspend = triflex_ide_pci_suspend,
Bartlomiej Zolnierkiewiczfeb22b72008-10-10 22:39:32 +0200123 .resume = ide_pci_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
Bartlomiej Zolnierkiewicz82ab1ee2007-01-27 13:46:56 +0100126static int __init triflex_ide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Bartlomiej Zolnierkiewicza9ab09e22008-10-13 21:39:41 +0200128 return ide_pci_register_driver(&triflex_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
Bartlomiej Zolnierkiewicz29d72f22008-07-24 22:53:26 +0200131static void __exit triflex_ide_exit(void)
132{
Bartlomiej Zolnierkiewicza9ab09e22008-10-13 21:39:41 +0200133 pci_unregister_driver(&triflex_pci_driver);
Bartlomiej Zolnierkiewicz29d72f22008-07-24 22:53:26 +0200134}
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136module_init(triflex_ide_init);
Bartlomiej Zolnierkiewicz29d72f22008-07-24 22:53:26 +0200137module_exit(triflex_ide_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139MODULE_AUTHOR("Torben Mathiasen");
140MODULE_DESCRIPTION("PCI driver module for Compaq Triflex IDE");
141MODULE_LICENSE("GPL");
142
143