blob: 8b637181681ad2d6d4cfcbf30c39d6e6044b9bc6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2003 ATI Inc. <hyu@ati.com>
Bartlomiej Zolnierkiewicz485efc62007-07-20 01:11:54 +02003 * Copyright (C) 2004,2007 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/types.h>
7#include <linux/module.h>
8#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/pci.h>
10#include <linux/hdreg.h>
11#include <linux/ide.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/init.h>
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#define ATIIXP_IDE_PIO_TIMING 0x40
15#define ATIIXP_IDE_MDMA_TIMING 0x44
16#define ATIIXP_IDE_PIO_CONTROL 0x48
17#define ATIIXP_IDE_PIO_MODE 0x4a
18#define ATIIXP_IDE_UDMA_CONTROL 0x54
19#define ATIIXP_IDE_UDMA_MODE 0x56
20
21typedef struct {
22 u8 command_width;
23 u8 recover_width;
24} atiixp_ide_timing;
25
26static atiixp_ide_timing pio_timing[] = {
27 { 0x05, 0x0d },
28 { 0x04, 0x07 },
29 { 0x03, 0x04 },
30 { 0x02, 0x02 },
31 { 0x02, 0x00 },
32};
33
34static atiixp_ide_timing mdma_timing[] = {
35 { 0x07, 0x07 },
36 { 0x02, 0x01 },
37 { 0x02, 0x00 },
38};
39
Alan6c5f8cc2007-01-05 16:36:27 -080040static DEFINE_SPINLOCK(atiixp_lock);
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/**
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020043 * atiixp_set_pio_mode - set host controller for PIO mode
44 * @drive: drive
45 * @pio: PIO mode number
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 *
47 * Set the interface PIO mode.
48 */
49
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020050static void atiixp_set_pio_mode(ide_drive_t *drive, const u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010052 struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 unsigned long flags;
54 int timing_shift = (drive->dn & 2) ? 16 : 0 + (drive->dn & 1) ? 0 : 8;
55 u32 pio_timing_data;
56 u16 pio_mode_data;
57
Alan6c5f8cc2007-01-05 16:36:27 -080058 spin_lock_irqsave(&atiixp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 pci_read_config_word(dev, ATIIXP_IDE_PIO_MODE, &pio_mode_data);
61 pio_mode_data &= ~(0x07 << (drive->dn * 4));
62 pio_mode_data |= (pio << (drive->dn * 4));
63 pci_write_config_word(dev, ATIIXP_IDE_PIO_MODE, pio_mode_data);
64
65 pci_read_config_dword(dev, ATIIXP_IDE_PIO_TIMING, &pio_timing_data);
66 pio_timing_data &= ~(0xff << timing_shift);
67 pio_timing_data |= (pio_timing[pio].recover_width << timing_shift) |
68 (pio_timing[pio].command_width << (timing_shift + 4));
69 pci_write_config_dword(dev, ATIIXP_IDE_PIO_TIMING, pio_timing_data);
70
Alan6c5f8cc2007-01-05 16:36:27 -080071 spin_unlock_irqrestore(&atiixp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
73
74/**
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020075 * atiixp_set_dma_mode - set host controller for DMA mode
76 * @drive: drive
77 * @speed: DMA mode
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020079 * Set a ATIIXP host controller to the desired DMA mode. This involves
80 * programming the right timing data into the PCI configuration space.
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 */
82
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020083static void atiixp_set_dma_mode(ide_drive_t *drive, const u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010085 struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 unsigned long flags;
87 int timing_shift = (drive->dn & 2) ? 16 : 0 + (drive->dn & 1) ? 0 : 8;
88 u32 tmp32;
89 u16 tmp16;
Bartlomiej Zolnierkiewicz8ae60e32008-01-26 20:13:02 +010090 u16 udma_ctl = 0;
Bartlomiej Zolnierkiewicz94c7fa02007-10-16 22:29:53 +020091
Alan6c5f8cc2007-01-05 16:36:27 -080092 spin_lock_irqsave(&atiixp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Bartlomiej Zolnierkiewicz8ae60e32008-01-26 20:13:02 +010094 pci_read_config_word(dev, ATIIXP_IDE_UDMA_CONTROL, &udma_ctl);
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (speed >= XFER_UDMA_0) {
97 pci_read_config_word(dev, ATIIXP_IDE_UDMA_MODE, &tmp16);
98 tmp16 &= ~(0x07 << (drive->dn * 4));
99 tmp16 |= ((speed & 0x07) << (drive->dn * 4));
100 pci_write_config_word(dev, ATIIXP_IDE_UDMA_MODE, tmp16);
Bartlomiej Zolnierkiewicz8ae60e32008-01-26 20:13:02 +0100101
102 udma_ctl |= (1 << drive->dn);
103 } else if (speed >= XFER_MW_DMA_0) {
104 u8 i = speed & 0x03;
105
106 pci_read_config_dword(dev, ATIIXP_IDE_MDMA_TIMING, &tmp32);
107 tmp32 &= ~(0xff << timing_shift);
108 tmp32 |= (mdma_timing[i].recover_width << timing_shift) |
109 (mdma_timing[i].command_width << (timing_shift + 4));
110 pci_write_config_dword(dev, ATIIXP_IDE_MDMA_TIMING, tmp32);
111
112 udma_ctl &= ~(1 << drive->dn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114
Bartlomiej Zolnierkiewicz8ae60e32008-01-26 20:13:02 +0100115 pci_write_config_word(dev, ATIIXP_IDE_UDMA_CONTROL, udma_ctl);
116
Alan6c5f8cc2007-01-05 16:36:27 -0800117 spin_unlock_irqrestore(&atiixp_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Bartlomiej Zolnierkiewiczb4d1c732008-02-02 19:56:29 +0100120static u8 __devinit atiixp_cable_detect(ide_hwif_t *hwif)
121{
122 struct pci_dev *pdev = to_pci_dev(hwif->dev);
123 u8 udma_mode = 0, ch = hwif->channel;
124
125 pci_read_config_byte(pdev, ATIIXP_IDE_UDMA_MODE + ch, &udma_mode);
126
127 if ((udma_mode & 0x07) >= 0x04 || (udma_mode & 0x70) >= 0x40)
128 return ATA_CBL_PATA80;
129 else
130 return ATA_CBL_PATA40;
131}
132
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200133static const struct ide_port_ops atiixp_port_ops = {
134 .set_pio_mode = atiixp_set_pio_mode,
135 .set_dma_mode = atiixp_set_dma_mode,
136 .cable_detect = atiixp_cable_detect,
137};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200139static const struct ide_port_info atiixp_pci_info[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 { /* 0 */
141 .name = "ATIIXP",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 .enablebits = {{0x48,0x01,0x00}, {0x48,0x08,0x00}},
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200143 .port_ops = &atiixp_port_ops,
Bartlomiej Zolnierkiewicz5e71d9c2008-04-26 17:36:35 +0200144 .host_flags = IDE_HFLAG_LEGACY_IRQS,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200145 .pio_mask = ATA_PIO4,
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +0200146 .mwdma_mask = ATA_MWDMA2,
147 .udma_mask = ATA_UDMA5,
Conke Hub25168d2007-01-27 13:46:30 +0100148 },{ /* 1 */
149 .name = "SB600_PATA",
Conke Hub25168d2007-01-27 13:46:30 +0100150 .enablebits = {{0x48,0x01,0x00}, {0x00,0x00,0x00}},
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200151 .port_ops = &atiixp_port_ops,
Bartlomiej Zolnierkiewicz5e71d9c2008-04-26 17:36:35 +0200152 .host_flags = IDE_HFLAG_SINGLE | IDE_HFLAG_LEGACY_IRQS,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200153 .pio_mask = ATA_PIO4,
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +0200154 .mwdma_mask = ATA_MWDMA2,
155 .udma_mask = ATA_UDMA5,
Conke Hub25168d2007-01-27 13:46:30 +0100156 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157};
158
159/**
160 * atiixp_init_one - called when a ATIIXP is found
161 * @dev: the atiixp device
162 * @id: the matching pci id
163 *
164 * Called when the PCI registration layer (or the IDE initialization)
165 * finds a device matching our IDE device tables.
166 */
167
168static int __devinit atiixp_init_one(struct pci_dev *dev, const struct pci_device_id *id)
169{
170 return ide_setup_pci_device(dev, &atiixp_pci_info[id->driver_data]);
171}
172
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +0200173static const struct pci_device_id atiixp_pci_tbl[] = {
174 { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP200_IDE), 0 },
175 { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP300_IDE), 0 },
176 { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP400_IDE), 0 },
177 { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP600_IDE), 1 },
178 { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP700_IDE), 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 { 0, },
180};
181MODULE_DEVICE_TABLE(pci, atiixp_pci_tbl);
182
183static struct pci_driver driver = {
184 .name = "ATIIXP_IDE",
185 .id_table = atiixp_pci_tbl,
186 .probe = atiixp_init_one,
187};
188
Bartlomiej Zolnierkiewicz82ab1ee2007-01-27 13:46:56 +0100189static int __init atiixp_ide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
191 return ide_pci_register_driver(&driver);
192}
193
194module_init(atiixp_ide_init);
195
196MODULE_AUTHOR("HUI YU");
197MODULE_DESCRIPTION("PCI driver module for ATI IXP IDE");
198MODULE_LICENSE("GPL");