blob: 6eba8f188264be200593779bb7128490a2d3d686 [file] [log] [blame]
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +01001/*
2 * ITE 8213 IDE driver
3 *
4 * Copyright (C) 2006 Jack Lee
5 * Copyright (C) 2006 Alan Cox
6 * Copyright (C) 2007 Bartlomiej Zolnierkiewicz
7 */
8
Jack Lee9c6712c2007-02-07 18:19:09 +01009#include <linux/kernel.h>
10#include <linux/types.h>
11#include <linux/module.h>
12#include <linux/pci.h>
Jack Lee9c6712c2007-02-07 18:19:09 +010013#include <linux/hdreg.h>
14#include <linux/ide.h>
15#include <linux/init.h>
16
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +020017#define DRV_NAME "it8213"
18
Jack Lee9c6712c2007-02-07 18:19:09 +010019/**
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020020 * it8213_set_pio_mode - set host controller for PIO mode
21 * @drive: drive
22 * @pio: PIO mode number
Jack Lee9c6712c2007-02-07 18:19:09 +010023 *
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010024 * Set the interface PIO mode.
Jack Lee9c6712c2007-02-07 18:19:09 +010025 */
26
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020027static void it8213_set_pio_mode(ide_drive_t *drive, const u8 pio)
Jack Lee9c6712c2007-02-07 18:19:09 +010028{
29 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010030 struct pci_dev *dev = to_pci_dev(hwif->dev);
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010031 int is_slave = drive->dn & 1;
Jack Lee9c6712c2007-02-07 18:19:09 +010032 int master_port = 0x40;
33 int slave_port = 0x44;
34 unsigned long flags;
35 u16 master_data;
36 u8 slave_data;
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010037 static DEFINE_SPINLOCK(tune_lock);
38 int control = 0;
Jack Lee9c6712c2007-02-07 18:19:09 +010039
Paolo Ciarrocchia2826192008-04-26 17:36:41 +020040 static const u8 timings[][2] = {
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010041 { 0, 0 },
42 { 0, 0 },
43 { 1, 0 },
44 { 2, 1 },
45 { 2, 3 }, };
Jack Lee9c6712c2007-02-07 18:19:09 +010046
Jack Lee9c6712c2007-02-07 18:19:09 +010047 spin_lock_irqsave(&tune_lock, flags);
48 pci_read_config_word(dev, master_port, &master_data);
Jack Lee9c6712c2007-02-07 18:19:09 +010049
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010050 if (pio > 1)
51 control |= 1; /* Programmable timing on */
52 if (drive->media != ide_disk)
53 control |= 4; /* ATAPI */
54 if (pio > 2)
55 control |= 2; /* IORDY */
56 if (is_slave) {
57 master_data |= 0x4000;
58 master_data &= ~0x0070;
59 if (pio > 1)
60 master_data = master_data | (control << 4);
Jack Lee9c6712c2007-02-07 18:19:09 +010061 pci_read_config_byte(dev, slave_port, &slave_data);
62 slave_data = slave_data & 0xf0;
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010063 slave_data = slave_data | (timings[pio][0] << 2) | timings[pio][1];
Jack Lee9c6712c2007-02-07 18:19:09 +010064 } else {
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010065 master_data &= ~0x3307;
Jack Lee9c6712c2007-02-07 18:19:09 +010066 if (pio > 1)
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010067 master_data = master_data | control;
Jack Lee9c6712c2007-02-07 18:19:09 +010068 master_data = master_data | (timings[pio][0] << 12) | (timings[pio][1] << 8);
69 }
70 pci_write_config_word(dev, master_port, master_data);
71 if (is_slave)
72 pci_write_config_byte(dev, slave_port, slave_data);
73 spin_unlock_irqrestore(&tune_lock, flags);
74}
75
Jack Lee9c6712c2007-02-07 18:19:09 +010076/**
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020077 * it8213_set_dma_mode - set host controller for DMA mode
78 * @drive: drive
79 * @speed: DMA mode
Jack Lee9c6712c2007-02-07 18:19:09 +010080 *
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020081 * Tune the ITE chipset for the DMA mode.
Jack Lee9c6712c2007-02-07 18:19:09 +010082 */
83
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020084static void it8213_set_dma_mode(ide_drive_t *drive, const u8 speed)
Jack Lee9c6712c2007-02-07 18:19:09 +010085{
Jack Lee9c6712c2007-02-07 18:19:09 +010086 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010087 struct pci_dev *dev = to_pci_dev(hwif->dev);
Jack Lee9c6712c2007-02-07 18:19:09 +010088 u8 maslave = 0x40;
Jack Lee9c6712c2007-02-07 18:19:09 +010089 int a_speed = 3 << (drive->dn * 4);
90 int u_flag = 1 << drive->dn;
91 int v_flag = 0x01 << drive->dn;
92 int w_flag = 0x10 << drive->dn;
93 int u_speed = 0;
94 u16 reg4042, reg4a;
Bartlomiej Zolnierkiewicz1c54a932007-10-16 22:29:56 +020095 u8 reg48, reg54, reg55;
Jack Lee9c6712c2007-02-07 18:19:09 +010096
97 pci_read_config_word(dev, maslave, &reg4042);
98 pci_read_config_byte(dev, 0x48, &reg48);
99 pci_read_config_word(dev, 0x4a, &reg4a);
100 pci_read_config_byte(dev, 0x54, &reg54);
101 pci_read_config_byte(dev, 0x55, &reg55);
102
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +0100103 if (speed >= XFER_UDMA_0) {
Bartlomiej Zolnierkiewicz4db90a12008-01-25 22:17:18 +0100104 u8 udma = speed - XFER_UDMA_0;
105
106 u_speed = min_t(u8, 2 - (udma & 1), udma) << (drive->dn * 4);
107
Jack Lee9c6712c2007-02-07 18:19:09 +0100108 if (!(reg48 & u_flag))
109 pci_write_config_byte(dev, 0x48, reg48 | u_flag);
Paolo Ciarrocchia2826192008-04-26 17:36:41 +0200110 if (speed >= XFER_UDMA_5)
Jack Lee9c6712c2007-02-07 18:19:09 +0100111 pci_write_config_byte(dev, 0x55, (u8) reg55|w_flag);
Paolo Ciarrocchia2826192008-04-26 17:36:41 +0200112 else
Jack Lee9c6712c2007-02-07 18:19:09 +0100113 pci_write_config_byte(dev, 0x55, (u8) reg55 & ~w_flag);
Jack Lee9c6712c2007-02-07 18:19:09 +0100114
115 if ((reg4a & a_speed) != u_speed)
116 pci_write_config_word(dev, 0x4a, (reg4a & ~a_speed) | u_speed);
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +0100117 if (speed > XFER_UDMA_2) {
Jack Lee9c6712c2007-02-07 18:19:09 +0100118 if (!(reg54 & v_flag))
119 pci_write_config_byte(dev, 0x54, reg54 | v_flag);
120 } else
121 pci_write_config_byte(dev, 0x54, reg54 & ~v_flag);
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +0100122 } else {
Bartlomiej Zolnierkiewicz8c91abf2007-10-16 22:29:54 +0200123 const u8 mwdma_to_pio[] = { 0, 3, 4 };
Bartlomiej Zolnierkiewicz1c54a932007-10-16 22:29:56 +0200124 u8 pio;
Bartlomiej Zolnierkiewicz8c91abf2007-10-16 22:29:54 +0200125
Jack Lee9c6712c2007-02-07 18:19:09 +0100126 if (reg48 & u_flag)
127 pci_write_config_byte(dev, 0x48, reg48 & ~u_flag);
128 if (reg4a & a_speed)
129 pci_write_config_word(dev, 0x4a, reg4a & ~a_speed);
130 if (reg54 & v_flag)
131 pci_write_config_byte(dev, 0x54, reg54 & ~v_flag);
132 if (reg55 & w_flag)
133 pci_write_config_byte(dev, 0x55, (u8) reg55 & ~w_flag);
Bartlomiej Zolnierkiewicz8c91abf2007-10-16 22:29:54 +0200134
135 if (speed >= XFER_MW_DMA_0)
136 pio = mwdma_to_pio[speed - XFER_MW_DMA_0];
137 else
138 pio = 2; /* only SWDMA2 is allowed */
Bartlomiej Zolnierkiewicz68aaf812007-08-01 23:46:46 +0200139
Bartlomiej Zolnierkiewicz1c54a932007-10-16 22:29:56 +0200140 it8213_set_pio_mode(drive, pio);
141 }
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +0100142}
Jack Lee9c6712c2007-02-07 18:19:09 +0100143
Bartlomiej Zolnierkiewiczbfa14b42008-02-02 19:56:31 +0100144static u8 __devinit it8213_cable_detect(ide_hwif_t *hwif)
145{
146 struct pci_dev *dev = to_pci_dev(hwif->dev);
147 u8 reg42h = 0;
148
149 pci_read_config_byte(dev, 0x42, &reg42h);
150
151 return (reg42h & 0x02) ? ATA_CBL_PATA40 : ATA_CBL_PATA80;
152}
153
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200154static const struct ide_port_ops it8213_port_ops = {
155 .set_pio_mode = it8213_set_pio_mode,
156 .set_dma_mode = it8213_set_dma_mode,
157 .cable_detect = it8213_cable_detect,
158};
Jack Lee9c6712c2007-02-07 18:19:09 +0100159
Bartlomiej Zolnierkiewicz29f1ca92008-07-24 22:53:32 +0200160static const struct ide_port_info it8213_chipset __devinitdata = {
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +0200161 .name = DRV_NAME,
Bartlomiej Zolnierkiewicz29f1ca92008-07-24 22:53:32 +0200162 .enablebits = { {0x41, 0x80, 0x80} },
163 .port_ops = &it8213_port_ops,
164 .host_flags = IDE_HFLAG_SINGLE,
165 .pio_mask = ATA_PIO4,
166 .swdma_mask = ATA_SWDMA2_ONLY,
167 .mwdma_mask = ATA_MWDMA12_ONLY,
168 .udma_mask = ATA_UDMA6,
Jack Lee9c6712c2007-02-07 18:19:09 +0100169};
170
Jack Lee9c6712c2007-02-07 18:19:09 +0100171/**
172 * it8213_init_one - pci layer discovery entry
173 * @dev: PCI device
174 * @id: ident table entry
175 *
176 * Called by the PCI code when it finds an ITE8213 controller. As
177 * this device follows the standard interfaces we can use the
178 * standard helper functions to do almost all the work for us.
179 */
180
181static int __devinit it8213_init_one(struct pci_dev *dev, const struct pci_device_id *id)
182{
Bartlomiej Zolnierkiewicz29f1ca92008-07-24 22:53:32 +0200183 return ide_pci_init_one(dev, &it8213_chipset, NULL);
Jack Lee9c6712c2007-02-07 18:19:09 +0100184}
185
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +0200186static const struct pci_device_id it8213_pci_tbl[] = {
187 { PCI_VDEVICE(ITE, PCI_DEVICE_ID_ITE_8213), 0 },
Jack Lee9c6712c2007-02-07 18:19:09 +0100188 { 0, },
189};
190
191MODULE_DEVICE_TABLE(pci, it8213_pci_tbl);
192
193static struct pci_driver driver = {
194 .name = "ITE8213_IDE",
195 .id_table = it8213_pci_tbl,
196 .probe = it8213_init_one,
Bartlomiej Zolnierkiewicz5102f762008-07-24 22:53:22 +0200197 .remove = ide_pci_remove,
Jack Lee9c6712c2007-02-07 18:19:09 +0100198};
199
200static int __init it8213_ide_init(void)
201{
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +0100202 return ide_pci_register_driver(&driver);
203}
Jack Lee9c6712c2007-02-07 18:19:09 +0100204
Bartlomiej Zolnierkiewicz5102f762008-07-24 22:53:22 +0200205static void __exit it8213_ide_exit(void)
206{
207 pci_unregister_driver(&driver);
208}
209
Jack Lee9c6712c2007-02-07 18:19:09 +0100210module_init(it8213_ide_init);
Bartlomiej Zolnierkiewicz5102f762008-07-24 22:53:22 +0200211module_exit(it8213_ide_exit);
Jack Lee9c6712c2007-02-07 18:19:09 +0100212
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +0100213MODULE_AUTHOR("Jack Lee, Alan Cox");
Jack Lee9c6712c2007-02-07 18:19:09 +0100214MODULE_DESCRIPTION("PCI driver module for the ITE 8213");
215MODULE_LICENSE("GPL");