blob: 6b92846682fc26553c6ced0d2954ffda4dad94e9 [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/ide.h>
14#include <linux/init.h>
15
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +020016#define DRV_NAME "it8213"
17
Jack Lee9c6712c2007-02-07 18:19:09 +010018/**
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020019 * it8213_set_pio_mode - set host controller for PIO mode
Bartlomiej Zolnierkiewicze085b3c2010-01-19 01:44:41 -080020 * @hwif: port
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020021 * @drive: drive
Jack Lee9c6712c2007-02-07 18:19:09 +010022 *
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010023 * Set the interface PIO mode.
Jack Lee9c6712c2007-02-07 18:19:09 +010024 */
25
Bartlomiej Zolnierkiewicze085b3c2010-01-19 01:44:41 -080026static void it8213_set_pio_mode(ide_hwif_t *hwif, ide_drive_t *drive)
Jack Lee9c6712c2007-02-07 18:19:09 +010027{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010028 struct pci_dev *dev = to_pci_dev(hwif->dev);
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010029 int is_slave = drive->dn & 1;
Jack Lee9c6712c2007-02-07 18:19:09 +010030 int master_port = 0x40;
31 int slave_port = 0x44;
32 unsigned long flags;
33 u16 master_data;
34 u8 slave_data;
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010035 static DEFINE_SPINLOCK(tune_lock);
36 int control = 0;
Bartlomiej Zolnierkiewicze085b3c2010-01-19 01:44:41 -080037 const u8 pio = drive->pio_mode - XFER_PIO_0;
Jack Lee9c6712c2007-02-07 18:19:09 +010038
Paolo Ciarrocchia2826192008-04-26 17:36:41 +020039 static const u8 timings[][2] = {
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010040 { 0, 0 },
41 { 0, 0 },
42 { 1, 0 },
43 { 2, 1 },
44 { 2, 3 }, };
Jack Lee9c6712c2007-02-07 18:19:09 +010045
Jack Lee9c6712c2007-02-07 18:19:09 +010046 spin_lock_irqsave(&tune_lock, flags);
47 pci_read_config_word(dev, master_port, &master_data);
Jack Lee9c6712c2007-02-07 18:19:09 +010048
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010049 if (pio > 1)
50 control |= 1; /* Programmable timing on */
51 if (drive->media != ide_disk)
52 control |= 4; /* ATAPI */
Bartlomiej Zolnierkiewiczc9ef59f2009-06-15 18:52:53 +020053 if (ide_pio_need_iordy(drive, pio))
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010054 control |= 2; /* IORDY */
55 if (is_slave) {
56 master_data |= 0x4000;
57 master_data &= ~0x0070;
58 if (pio > 1)
59 master_data = master_data | (control << 4);
Jack Lee9c6712c2007-02-07 18:19:09 +010060 pci_read_config_byte(dev, slave_port, &slave_data);
61 slave_data = slave_data & 0xf0;
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010062 slave_data = slave_data | (timings[pio][0] << 2) | timings[pio][1];
Jack Lee9c6712c2007-02-07 18:19:09 +010063 } else {
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010064 master_data &= ~0x3307;
Jack Lee9c6712c2007-02-07 18:19:09 +010065 if (pio > 1)
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +010066 master_data = master_data | control;
Jack Lee9c6712c2007-02-07 18:19:09 +010067 master_data = master_data | (timings[pio][0] << 12) | (timings[pio][1] << 8);
68 }
69 pci_write_config_word(dev, master_port, master_data);
70 if (is_slave)
71 pci_write_config_byte(dev, slave_port, slave_data);
72 spin_unlock_irqrestore(&tune_lock, flags);
73}
74
Jack Lee9c6712c2007-02-07 18:19:09 +010075/**
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020076 * it8213_set_dma_mode - set host controller for DMA mode
Bartlomiej Zolnierkiewicz87761682010-01-19 01:45:29 -080077 * @hwif: port
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020078 * @drive: drive
Jack Lee9c6712c2007-02-07 18:19:09 +010079 *
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020080 * Tune the ITE chipset for the DMA mode.
Jack Lee9c6712c2007-02-07 18:19:09 +010081 */
82
Bartlomiej Zolnierkiewicz87761682010-01-19 01:45:29 -080083static void it8213_set_dma_mode(ide_hwif_t *hwif, ide_drive_t *drive)
Jack Lee9c6712c2007-02-07 18:19:09 +010084{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010085 struct pci_dev *dev = to_pci_dev(hwif->dev);
Jack Lee9c6712c2007-02-07 18:19:09 +010086 u8 maslave = 0x40;
Jack Lee9c6712c2007-02-07 18:19:09 +010087 int a_speed = 3 << (drive->dn * 4);
88 int u_flag = 1 << drive->dn;
89 int v_flag = 0x01 << drive->dn;
90 int w_flag = 0x10 << drive->dn;
91 int u_speed = 0;
92 u16 reg4042, reg4a;
Bartlomiej Zolnierkiewicz1c54a932007-10-16 22:29:56 +020093 u8 reg48, reg54, reg55;
Bartlomiej Zolnierkiewicz87761682010-01-19 01:45:29 -080094 const u8 speed = drive->dma_mode;
Jack Lee9c6712c2007-02-07 18:19:09 +010095
96 pci_read_config_word(dev, maslave, &reg4042);
97 pci_read_config_byte(dev, 0x48, &reg48);
98 pci_read_config_word(dev, 0x4a, &reg4a);
99 pci_read_config_byte(dev, 0x54, &reg54);
100 pci_read_config_byte(dev, 0x55, &reg55);
101
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +0100102 if (speed >= XFER_UDMA_0) {
Bartlomiej Zolnierkiewicz4db90a12008-01-25 22:17:18 +0100103 u8 udma = speed - XFER_UDMA_0;
104
105 u_speed = min_t(u8, 2 - (udma & 1), udma) << (drive->dn * 4);
106
Jack Lee9c6712c2007-02-07 18:19:09 +0100107 if (!(reg48 & u_flag))
108 pci_write_config_byte(dev, 0x48, reg48 | u_flag);
Paolo Ciarrocchia2826192008-04-26 17:36:41 +0200109 if (speed >= XFER_UDMA_5)
Jack Lee9c6712c2007-02-07 18:19:09 +0100110 pci_write_config_byte(dev, 0x55, (u8) reg55|w_flag);
Paolo Ciarrocchia2826192008-04-26 17:36:41 +0200111 else
Jack Lee9c6712c2007-02-07 18:19:09 +0100112 pci_write_config_byte(dev, 0x55, (u8) reg55 & ~w_flag);
Jack Lee9c6712c2007-02-07 18:19:09 +0100113
114 if ((reg4a & a_speed) != u_speed)
115 pci_write_config_word(dev, 0x4a, (reg4a & ~a_speed) | u_speed);
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +0100116 if (speed > XFER_UDMA_2) {
Jack Lee9c6712c2007-02-07 18:19:09 +0100117 if (!(reg54 & v_flag))
118 pci_write_config_byte(dev, 0x54, reg54 | v_flag);
119 } else
120 pci_write_config_byte(dev, 0x54, reg54 & ~v_flag);
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +0100121 } else {
Bartlomiej Zolnierkiewicz8c91abf2007-10-16 22:29:54 +0200122 const u8 mwdma_to_pio[] = { 0, 3, 4 };
123
Jack Lee9c6712c2007-02-07 18:19:09 +0100124 if (reg48 & u_flag)
125 pci_write_config_byte(dev, 0x48, reg48 & ~u_flag);
126 if (reg4a & a_speed)
127 pci_write_config_word(dev, 0x4a, reg4a & ~a_speed);
128 if (reg54 & v_flag)
129 pci_write_config_byte(dev, 0x54, reg54 & ~v_flag);
130 if (reg55 & w_flag)
131 pci_write_config_byte(dev, 0x55, (u8) reg55 & ~w_flag);
Bartlomiej Zolnierkiewicz8c91abf2007-10-16 22:29:54 +0200132
133 if (speed >= XFER_MW_DMA_0)
Bartlomiej Zolnierkiewicze085b3c2010-01-19 01:44:41 -0800134 drive->pio_mode =
135 mwdma_to_pio[speed - XFER_MW_DMA_0] + XFER_PIO_0;
Bartlomiej Zolnierkiewicz8c91abf2007-10-16 22:29:54 +0200136 else
Bartlomiej Zolnierkiewicze085b3c2010-01-19 01:44:41 -0800137 drive->pio_mode = XFER_PIO_2; /* for SWDMA2 */
Bartlomiej Zolnierkiewicz68aaf812007-08-01 23:46:46 +0200138
Bartlomiej Zolnierkiewicze085b3c2010-01-19 01:44:41 -0800139 it8213_set_pio_mode(hwif, drive);
Bartlomiej Zolnierkiewicz1c54a932007-10-16 22:29:56 +0200140 }
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +0100141}
Jack Lee9c6712c2007-02-07 18:19:09 +0100142
Bartlomiej Zolnierkiewiczf454cbe2008-08-05 18:17:04 +0200143static u8 it8213_cable_detect(ide_hwif_t *hwif)
Bartlomiej Zolnierkiewiczbfa14b42008-02-02 19:56:31 +0100144{
145 struct pci_dev *dev = to_pci_dev(hwif->dev);
146 u8 reg42h = 0;
147
148 pci_read_config_byte(dev, 0x42, &reg42h);
149
150 return (reg42h & 0x02) ? ATA_CBL_PATA40 : ATA_CBL_PATA80;
151}
152
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200153static const struct ide_port_ops it8213_port_ops = {
154 .set_pio_mode = it8213_set_pio_mode,
155 .set_dma_mode = it8213_set_dma_mode,
156 .cable_detect = it8213_cable_detect,
157};
Jack Lee9c6712c2007-02-07 18:19:09 +0100158
Greg Kroah-Hartmanfe31edc2012-12-21 13:21:03 -0800159static const struct ide_port_info it8213_chipset = {
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +0200160 .name = DRV_NAME,
Bartlomiej Zolnierkiewicz29f1ca92008-07-24 22:53:32 +0200161 .enablebits = { {0x41, 0x80, 0x80} },
162 .port_ops = &it8213_port_ops,
163 .host_flags = IDE_HFLAG_SINGLE,
164 .pio_mask = ATA_PIO4,
165 .swdma_mask = ATA_SWDMA2_ONLY,
166 .mwdma_mask = ATA_MWDMA12_ONLY,
167 .udma_mask = ATA_UDMA6,
Jack Lee9c6712c2007-02-07 18:19:09 +0100168};
169
Jack Lee9c6712c2007-02-07 18:19:09 +0100170/**
171 * it8213_init_one - pci layer discovery entry
172 * @dev: PCI device
173 * @id: ident table entry
174 *
175 * Called by the PCI code when it finds an ITE8213 controller. As
176 * this device follows the standard interfaces we can use the
177 * standard helper functions to do almost all the work for us.
178 */
179
Greg Kroah-Hartmanfe31edc2012-12-21 13:21:03 -0800180static int it8213_init_one(struct pci_dev *dev, const struct pci_device_id *id)
Jack Lee9c6712c2007-02-07 18:19:09 +0100181{
Bartlomiej Zolnierkiewicz29f1ca92008-07-24 22:53:32 +0200182 return ide_pci_init_one(dev, &it8213_chipset, NULL);
Jack Lee9c6712c2007-02-07 18:19:09 +0100183}
184
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +0200185static const struct pci_device_id it8213_pci_tbl[] = {
186 { PCI_VDEVICE(ITE, PCI_DEVICE_ID_ITE_8213), 0 },
Jack Lee9c6712c2007-02-07 18:19:09 +0100187 { 0, },
188};
189
190MODULE_DEVICE_TABLE(pci, it8213_pci_tbl);
191
Bartlomiej Zolnierkiewicza9ab09e22008-10-13 21:39:41 +0200192static struct pci_driver it8213_pci_driver = {
Jack Lee9c6712c2007-02-07 18:19:09 +0100193 .name = "ITE8213_IDE",
194 .id_table = it8213_pci_tbl,
195 .probe = it8213_init_one,
Bartlomiej Zolnierkiewicz5102f762008-07-24 22:53:22 +0200196 .remove = ide_pci_remove,
Bartlomiej Zolnierkiewiczfeb22b72008-10-10 22:39:32 +0200197 .suspend = ide_pci_suspend,
198 .resume = ide_pci_resume,
Jack Lee9c6712c2007-02-07 18:19:09 +0100199};
200
201static int __init it8213_ide_init(void)
202{
Bartlomiej Zolnierkiewicza9ab09e22008-10-13 21:39:41 +0200203 return ide_pci_register_driver(&it8213_pci_driver);
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +0100204}
Jack Lee9c6712c2007-02-07 18:19:09 +0100205
Bartlomiej Zolnierkiewicz5102f762008-07-24 22:53:22 +0200206static void __exit it8213_ide_exit(void)
207{
Bartlomiej Zolnierkiewicza9ab09e22008-10-13 21:39:41 +0200208 pci_unregister_driver(&it8213_pci_driver);
Bartlomiej Zolnierkiewicz5102f762008-07-24 22:53:22 +0200209}
210
Jack Lee9c6712c2007-02-07 18:19:09 +0100211module_init(it8213_ide_init);
Bartlomiej Zolnierkiewicz5102f762008-07-24 22:53:22 +0200212module_exit(it8213_ide_exit);
Jack Lee9c6712c2007-02-07 18:19:09 +0100213
Bartlomiej Zolnierkiewicz67881822007-02-07 18:19:26 +0100214MODULE_AUTHOR("Jack Lee, Alan Cox");
Jack Lee9c6712c2007-02-07 18:19:09 +0100215MODULE_DESCRIPTION("PCI driver module for the ITE 8213");
216MODULE_LICENSE("GPL");