blob: 7bfb28edf5112bfbb738d79ff40375bb220020cf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1996 Linus Torvalds & author (see below)
3 */
4
5/*
6 * ALI M14xx chipset EIDE controller
7 *
8 * Works for ALI M1439/1443/1445/1487/1489 chipsets.
9 *
10 * Adapted from code developed by derekn@vw.ece.cmu.edu. -ml
11 * Derek's notes follow:
12 *
13 * I think the code should be pretty understandable,
14 * but I'll be happy to (try to) answer questions.
15 *
16 * The critical part is in the setupDrive function. The initRegisters
17 * function doesn't seem to be necessary, but the DOS driver does it, so
18 * I threw it in.
19 *
20 * I've only tested this on my system, which only has one disk. I posted
21 * it to comp.sys.linux.hardware, so maybe some other people will try it
22 * out.
23 *
24 * Derek Noonburg (derekn@ece.cmu.edu)
25 * 95-sep-26
26 *
27 * Update 96-jul-13:
28 *
29 * I've since upgraded to two disks and a CD-ROM, with no trouble, and
30 * I've also heard from several others who have used it successfully.
31 * This driver appears to work with both the 1443/1445 and the 1487/1489
32 * chipsets. I've added support for PIO mode 4 for the 1487. This
33 * seems to work just fine on the 1443 also, although I'm not sure it's
34 * advertised as supporting mode 4. (I've been running a WDC AC21200 in
35 * mode 4 for a while now with no trouble.) -Derek
36 */
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/types.h>
40#include <linux/kernel.h>
41#include <linux/delay.h>
42#include <linux/timer.h>
43#include <linux/mm.h>
44#include <linux/ioport.h>
45#include <linux/blkdev.h>
46#include <linux/hdreg.h>
47#include <linux/ide.h>
48#include <linux/init.h>
49
50#include <asm/io.h>
51
52/* port addresses for auto-detection */
53#define ALI_NUM_PORTS 4
Bartlomiej Zolnierkiewicz498f26b2007-11-27 21:35:57 +010054static const int ports[ALI_NUM_PORTS] __initdata =
55 { 0x074, 0x0f4, 0x034, 0x0e4 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/* register initialization data */
58typedef struct { u8 reg, data; } RegInitializer;
59
Bartlomiej Zolnierkiewicz498f26b2007-11-27 21:35:57 +010060static const RegInitializer initData[] __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 {0x01, 0x0f}, {0x02, 0x00}, {0x03, 0x00}, {0x04, 0x00},
62 {0x05, 0x00}, {0x06, 0x00}, {0x07, 0x2b}, {0x0a, 0x0f},
63 {0x25, 0x00}, {0x26, 0x00}, {0x27, 0x00}, {0x28, 0x00},
64 {0x29, 0x00}, {0x2a, 0x00}, {0x2f, 0x00}, {0x2b, 0x00},
65 {0x2c, 0x00}, {0x2d, 0x00}, {0x2e, 0x00}, {0x30, 0x00},
66 {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00}, {0x34, 0xff},
67 {0x35, 0x03}, {0x00, 0x00}
68};
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/* timing parameter registers for each drive */
71static struct { u8 reg1, reg2, reg3, reg4; } regTab[4] = {
72 {0x03, 0x26, 0x04, 0x27}, /* drive 0 */
73 {0x05, 0x28, 0x06, 0x29}, /* drive 1 */
74 {0x2b, 0x30, 0x2c, 0x31}, /* drive 2 */
75 {0x2d, 0x32, 0x2e, 0x33}, /* drive 3 */
76};
77
78static int basePort; /* base port address */
79static int regPort; /* port for register number */
80static int dataPort; /* port for register data */
81static u8 regOn; /* output to base port to access registers */
82static u8 regOff; /* output to base port to close registers */
83
84/*------------------------------------------------------------------------*/
85
86/*
87 * Read a controller register.
88 */
Paolo Ciarrocchi38bdb412008-04-26 17:36:41 +020089static inline u8 inReg(u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 outb_p(reg, regPort);
92 return inb(dataPort);
93}
94
95/*
96 * Write a controller register.
97 */
Paolo Ciarrocchi38bdb412008-04-26 17:36:41 +020098static void outReg(u8 data, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 outb_p(reg, regPort);
101 outb_p(data, dataPort);
102}
103
Bartlomiej Zolnierkiewicz2047e152007-10-20 00:32:35 +0200104static DEFINE_SPINLOCK(ali14xx_lock);
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*
107 * Set PIO mode for the specified drive.
108 * This function computes timing parameters
109 * and sets controller registers accordingly.
110 */
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200111static void ali14xx_set_pio_mode(ide_drive_t *drive, const u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
113 int driveNum;
114 int time1, time2;
115 u8 param1, param2, param3, param4;
116 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 int bus_speed = system_bus_clock();
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 /* calculate timing, according to PIO mode */
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200120 time1 = ide_pio_cycle_time(drive, pio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 time2 = ide_pio_timings[pio].active_time;
122 param3 = param1 = (time2 * bus_speed + 999) / 1000;
123 param4 = param2 = (time1 * bus_speed + 999) / 1000 - param1;
124 if (pio < 3) {
125 param3 += 8;
126 param4 += 8;
127 }
128 printk(KERN_DEBUG "%s: PIO mode%d, t1=%dns, t2=%dns, cycles = %d+%d, %d+%d\n",
129 drive->name, pio, time1, time2, param1, param2, param3, param4);
130
131 /* stuff timing parameters into controller registers */
132 driveNum = (HWIF(drive)->index << 1) + drive->select.b.unit;
Bartlomiej Zolnierkiewicz2047e152007-10-20 00:32:35 +0200133 spin_lock_irqsave(&ali14xx_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 outb_p(regOn, basePort);
135 outReg(param1, regTab[driveNum].reg1);
136 outReg(param2, regTab[driveNum].reg2);
137 outReg(param3, regTab[driveNum].reg3);
138 outReg(param4, regTab[driveNum].reg4);
139 outb_p(regOff, basePort);
Bartlomiej Zolnierkiewicz2047e152007-10-20 00:32:35 +0200140 spin_unlock_irqrestore(&ali14xx_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
143/*
144 * Auto-detect the IDE controller port.
145 */
Paolo Ciarrocchi38bdb412008-04-26 17:36:41 +0200146static int __init findPort(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 int i;
149 u8 t;
150 unsigned long flags;
151
152 local_irq_save(flags);
153 for (i = 0; i < ALI_NUM_PORTS; ++i) {
154 basePort = ports[i];
155 regOff = inb(basePort);
156 for (regOn = 0x30; regOn <= 0x33; ++regOn) {
157 outb_p(regOn, basePort);
158 if (inb(basePort) == regOn) {
159 regPort = basePort + 4;
160 dataPort = basePort + 8;
161 t = inReg(0) & 0xf0;
162 outb_p(regOff, basePort);
163 local_irq_restore(flags);
164 if (t != 0x50)
165 return 0;
166 return 1; /* success */
167 }
168 }
169 outb_p(regOff, basePort);
170 }
171 local_irq_restore(flags);
172 return 0;
173}
174
175/*
176 * Initialize controller registers with default values.
177 */
Paolo Ciarrocchi38bdb412008-04-26 17:36:41 +0200178static int __init initRegisters(void)
179{
Bartlomiej Zolnierkiewicz498f26b2007-11-27 21:35:57 +0100180 const RegInitializer *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 u8 t;
182 unsigned long flags;
183
184 local_irq_save(flags);
185 outb_p(regOn, basePort);
186 for (p = initData; p->reg != 0; ++p)
187 outReg(p->data, p->reg);
188 outb_p(0x01, regPort);
189 t = inb(regPort) & 0x01;
190 outb_p(regOff, basePort);
191 local_irq_restore(flags);
192 return t;
193}
194
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200195static const struct ide_port_ops ali14xx_port_ops = {
196 .set_pio_mode = ali14xx_set_pio_mode,
197};
198
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100199static const struct ide_port_info ali14xx_port_info = {
200 .chipset = ide_ali14xx,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200201 .port_ops = &ali14xx_port_ops,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100202 .host_flags = IDE_HFLAG_NO_DMA | IDE_HFLAG_NO_AUTOTUNE,
203 .pio_mask = ATA_PIO4,
204};
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206static int __init ali14xx_probe(void)
207{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 printk(KERN_DEBUG "ali14xx: base=0x%03x, regOn=0x%02x.\n",
209 basePort, regOn);
210
211 /* initialize controller registers */
212 if (!initRegisters()) {
213 printk(KERN_ERR "ali14xx: Chip initialization failed.\n");
214 return 1;
215 }
216
Bartlomiej Zolnierkiewicz0bfeee72008-04-26 22:25:16 +0200217 return ide_legacy_device_add(&ali14xx_port_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Paolo Ciarrocchi38bdb412008-04-26 17:36:41 +0200220int probe_ali14xx;
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +0100221
222module_param_named(probe, probe_ali14xx, bool, 0);
223MODULE_PARM_DESC(probe, "probe for ALI M14xx chipsets");
224
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100225static int __init ali14xx_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +0100227 if (probe_ali14xx == 0)
228 goto out;
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 /* auto-detect IDE controller port */
231 if (findPort()) {
232 if (ali14xx_probe())
233 return -ENODEV;
234 return 0;
235 }
236 printk(KERN_ERR "ali14xx: not found.\n");
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +0100237out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return -ENODEV;
239}
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241module_init(ali14xx_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243MODULE_AUTHOR("see local file");
244MODULE_DESCRIPTION("support of ALI 14XX IDE chipsets");
245MODULE_LICENSE("GPL");