blob: 013697b8cef48aea1cf9db819bfc9b19c5b93adc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1995-1996 Linus Torvalds & authors (see below)
3 */
4
5/*
6 * Original authors: abramov@cecmow.enet.dec.com (Igor Abramov)
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +02007 * mlord@pobox.com (Mark Lord)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * See linux/MAINTAINERS for address of current maintainer.
10 *
11 * This file provides support for the advanced features and bugs
12 * of IDE interfaces using the CMD Technologies 0640 IDE interface chip.
13 *
14 * These chips are basically fucked by design, and getting this driver
15 * to work on every motherboard design that uses this screwed chip seems
16 * bloody well impossible. However, we're still trying.
17 *
18 * Version 0.97 worked for everybody.
19 *
20 * User feedback is essential. Many thanks to the beta test team:
21 *
22 * A.Hartgers@stud.tue.nl, JZDQC@CUNYVM.CUNY.edu, abramov@cecmow.enet.dec.com,
23 * bardj@utopia.ppp.sn.no, bart@gaga.tue.nl, bbol001@cs.auckland.ac.nz,
24 * chrisc@dbass.demon.co.uk, dalecki@namu26.Num.Math.Uni-Goettingen.de,
25 * derekn@vw.ece.cmu.edu, florian@btp2x3.phy.uni-bayreuth.de,
26 * flynn@dei.unipd.it, gadio@netvision.net.il, godzilla@futuris.net,
27 * j@pobox.com, jkemp1@mises.uni-paderborn.de, jtoppe@hiwaay.net,
28 * kerouac@ssnet.com, meskes@informatik.rwth-aachen.de, hzoli@cs.elte.hu,
29 * peter@udgaard.isgtec.com, phil@tazenda.demon.co.uk, roadcapw@cfw.com,
30 * s0033las@sun10.vsz.bme.hu, schaffer@tam.cornell.edu, sjd@slip.net,
31 * steve@ei.org, ulrpeg@bigcomm.gun.de, ism@tardis.ed.ac.uk, mack@cray.com
32 * liug@mama.indstate.edu, and others.
33 *
34 * Version 0.01 Initial version, hacked out of ide.c,
35 * and #include'd rather than compiled separately.
36 * This will get cleaned up in a subsequent release.
37 *
38 * Version 0.02 Fixes for vlb initialization code, enable prefetch
39 * for versions 'B' and 'C' of chip by default,
40 * some code cleanup.
41 *
42 * Version 0.03 Added reset of secondary interface,
43 * and black list for devices which are not compatible
44 * with prefetch mode. Separate function for setting
45 * prefetch is added, possibly it will be called some
46 * day from ioctl processing code.
47 *
48 * Version 0.04 Now configs/compiles separate from ide.c
49 *
50 * Version 0.05 Major rewrite of interface timing code.
51 * Added new function cmd640_set_mode to set PIO mode
52 * from ioctl call. New drives added to black list.
53 *
54 * Version 0.06 More code cleanup. Prefetch is enabled only for
55 * detected hard drives, not included in prefetch
56 * black list.
57 *
58 * Version 0.07 Changed to more conservative drive tuning policy.
59 * Unknown drives, which report PIO < 4 are set to
60 * (reported_PIO - 1) if it is supported, or to PIO0.
61 * List of known drives extended by info provided by
62 * CMD at their ftp site.
63 *
64 * Version 0.08 Added autotune/noautotune support.
65 *
66 * Version 0.09 Try to be smarter about 2nd port enabling.
67 * Version 0.10 Be nice and don't reset 2nd port.
68 * Version 0.11 Try to handle more weird situations.
69 *
70 * Version 0.12 Lots of bug fixes from Laszlo Peter
71 * irq unmasking disabled for reliability.
72 * try to be even smarter about the second port.
73 * tidy up source code formatting.
74 * Version 0.13 permit irq unmasking again.
75 * Version 0.90 massive code cleanup, some bugs fixed.
76 * defaults all drives to PIO mode0, prefetch off.
77 * autotune is OFF by default, with compile time flag.
78 * prefetch can be turned OFF/ON using "hdparm -p8/-p9"
79 * (requires hdparm-3.1 or newer)
80 * Version 0.91 first release to linux-kernel list.
81 * Version 0.92 move initial reg dump to separate callable function
82 * change "readahead" to "prefetch" to avoid confusion
83 * Version 0.95 respect original BIOS timings unless autotuning.
84 * tons of code cleanup and rearrangement.
85 * added CONFIG_BLK_DEV_CMD640_ENHANCED option
86 * prevent use of unmask when prefetch is on
87 * Version 0.96 prevent use of io_32bit when prefetch is off
88 * Version 0.97 fix VLB secondary interface for sjd@slip.net
89 * other minor tune-ups: 0.96 was very good.
90 * Version 0.98 ignore PCI version when disabled by BIOS
91 * Version 0.99 display setup/active/recovery clocks with PIO mode
92 * Version 1.00 Mmm.. cannot depend on PCMD_ENA in all systems
93 * Version 1.01 slow/fast devsel can be selected with "hdparm -p6/-p7"
94 * ("fast" is necessary for 32bit I/O in some systems)
95 * Version 1.02 fix bug that resulted in slow "setup times"
96 * (patch courtesy of Zoltan Hidvegi)
97 */
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#define CMD640_PREFETCH_MASKS 1
100
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200101/*#define CMD640_DUMP_REGS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#include <linux/types.h>
104#include <linux/kernel.h>
105#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#include <linux/hdreg.h>
107#include <linux/ide.h>
108#include <linux/init.h>
109
110#include <asm/io.h>
111
Bartlomiej Zolnierkiewicz7ebe5932008-04-26 22:25:19 +0200112#define DRV_NAME "cmd640"
113
Bartlomiej Zolnierkiewiczef87f8d2008-04-27 15:38:24 +0200114static int cmd640_vlb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116/*
117 * CMD640 specific registers definition.
118 */
119
120#define VID 0x00
121#define DID 0x02
122#define PCMD 0x04
123#define PCMD_ENA 0x01
124#define PSTTS 0x06
125#define REVID 0x08
126#define PROGIF 0x09
127#define SUBCL 0x0a
128#define BASCL 0x0b
129#define BaseA0 0x10
130#define BaseA1 0x14
131#define BaseA2 0x18
132#define BaseA3 0x1c
133#define INTLINE 0x3c
134#define INPINE 0x3d
135
136#define CFR 0x50
137#define CFR_DEVREV 0x03
138#define CFR_IDE01INTR 0x04
139#define CFR_DEVID 0x18
140#define CFR_AT_VESA_078h 0x20
141#define CFR_DSA1 0x40
142#define CFR_DSA0 0x80
143
144#define CNTRL 0x51
145#define CNTRL_DIS_RA0 0x40
146#define CNTRL_DIS_RA1 0x80
147#define CNTRL_ENA_2ND 0x08
148
149#define CMDTIM 0x52
150#define ARTTIM0 0x53
151#define DRWTIM0 0x54
152#define ARTTIM1 0x55
153#define DRWTIM1 0x56
154#define ARTTIM23 0x57
155#define ARTTIM23_DIS_RA2 0x04
156#define ARTTIM23_DIS_RA3 0x08
157#define DRWTIM23 0x58
158#define BRST 0x59
159
160/*
161 * Registers and masks for easy access by drive index:
162 */
163static u8 prefetch_regs[4] = {CNTRL, CNTRL, ARTTIM23, ARTTIM23};
164static u8 prefetch_masks[4] = {CNTRL_DIS_RA0, CNTRL_DIS_RA1, ARTTIM23_DIS_RA2, ARTTIM23_DIS_RA3};
165
166#ifdef CONFIG_BLK_DEV_CMD640_ENHANCED
167
168static u8 arttim_regs[4] = {ARTTIM0, ARTTIM1, ARTTIM23, ARTTIM23};
169static u8 drwtim_regs[4] = {DRWTIM0, DRWTIM1, DRWTIM23, DRWTIM23};
170
171/*
172 * Current cmd640 timing values for each drive.
173 * The defaults for each are the slowest possible timings.
174 */
175static u8 setup_counts[4] = {4, 4, 4, 4}; /* Address setup count (in clocks) */
176static u8 active_counts[4] = {16, 16, 16, 16}; /* Active count (encoded) */
177static u8 recovery_counts[4] = {16, 16, 16, 16}; /* Recovery count (encoded) */
178
179#endif /* CONFIG_BLK_DEV_CMD640_ENHANCED */
180
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200181static DEFINE_SPINLOCK(cmd640_lock);
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * Interface to access cmd640x registers
185 */
186static unsigned int cmd640_key;
187static void (*__put_cmd640_reg)(u16 reg, u8 val);
188static u8 (*__get_cmd640_reg)(u16 reg);
189
190/*
191 * This is read from the CFR reg, and is used in several places.
192 */
193static unsigned int cmd640_chip_version;
194
195/*
196 * The CMD640x chip does not support DWORD config write cycles, but some
197 * of the BIOSes use them to implement the config services.
198 * Therefore, we must use direct IO instead.
199 */
200
201/* PCI method 1 access */
202
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200203static void put_cmd640_reg_pci1(u16 reg, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 outl_p((reg & 0xfc) | cmd640_key, 0xcf8);
206 outb_p(val, (reg & 3) | 0xcfc);
207}
208
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200209static u8 get_cmd640_reg_pci1(u16 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 outl_p((reg & 0xfc) | cmd640_key, 0xcf8);
212 return inb_p((reg & 3) | 0xcfc);
213}
214
215/* PCI method 2 access (from CMD datasheet) */
216
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200217static void put_cmd640_reg_pci2(u16 reg, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
219 outb_p(0x10, 0xcf8);
220 outb_p(val, cmd640_key + reg);
221 outb_p(0, 0xcf8);
222}
223
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200224static u8 get_cmd640_reg_pci2(u16 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 u8 b;
227
228 outb_p(0x10, 0xcf8);
229 b = inb_p(cmd640_key + reg);
230 outb_p(0, 0xcf8);
231 return b;
232}
233
234/* VLB access */
235
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200236static void put_cmd640_reg_vlb(u16 reg, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 outb_p(reg, cmd640_key);
239 outb_p(val, cmd640_key + 4);
240}
241
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200242static u8 get_cmd640_reg_vlb(u16 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 outb_p(reg, cmd640_key);
245 return inb_p(cmd640_key + 4);
246}
247
248static u8 get_cmd640_reg(u16 reg)
249{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 unsigned long flags;
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200251 u8 b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200253 spin_lock_irqsave(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 b = __get_cmd640_reg(reg);
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200255 spin_unlock_irqrestore(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return b;
257}
258
259static void put_cmd640_reg(u16 reg, u8 val)
260{
261 unsigned long flags;
262
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200263 spin_lock_irqsave(&cmd640_lock, flags);
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200264 __put_cmd640_reg(reg, val);
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200265 spin_unlock_irqrestore(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200268static int __init match_pci_cmd640_device(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 const u8 ven_dev[4] = {0x95, 0x10, 0x40, 0x06};
271 unsigned int i;
272 for (i = 0; i < 4; i++) {
273 if (get_cmd640_reg(i) != ven_dev[i])
274 return 0;
275 }
276#ifdef STUPIDLY_TRUST_BROKEN_PCMD_ENA_BIT
277 if ((get_cmd640_reg(PCMD) & PCMD_ENA) == 0) {
278 printk("ide: cmd640 on PCI disabled by BIOS\n");
279 return 0;
280 }
281#endif /* STUPIDLY_TRUST_BROKEN_PCMD_ENA_BIT */
282 return 1; /* success */
283}
284
285/*
286 * Probe for CMD640x -- pci method 1
287 */
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200288static int __init probe_for_cmd640_pci1(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 __get_cmd640_reg = get_cmd640_reg_pci1;
291 __put_cmd640_reg = put_cmd640_reg_pci1;
292 for (cmd640_key = 0x80000000;
293 cmd640_key <= 0x8000f800;
294 cmd640_key += 0x800) {
295 if (match_pci_cmd640_device())
296 return 1; /* success */
297 }
298 return 0;
299}
300
301/*
302 * Probe for CMD640x -- pci method 2
303 */
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200304static int __init probe_for_cmd640_pci2(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 __get_cmd640_reg = get_cmd640_reg_pci2;
307 __put_cmd640_reg = put_cmd640_reg_pci2;
308 for (cmd640_key = 0xc000; cmd640_key <= 0xcf00; cmd640_key += 0x100) {
309 if (match_pci_cmd640_device())
310 return 1; /* success */
311 }
312 return 0;
313}
314
315/*
316 * Probe for CMD640x -- vlb
317 */
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200318static int __init probe_for_cmd640_vlb(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
320 u8 b;
321
322 __get_cmd640_reg = get_cmd640_reg_vlb;
323 __put_cmd640_reg = put_cmd640_reg_vlb;
324 cmd640_key = 0x178;
325 b = get_cmd640_reg(CFR);
326 if (b == 0xff || b == 0x00 || (b & CFR_AT_VESA_078h)) {
327 cmd640_key = 0x78;
328 b = get_cmd640_reg(CFR);
329 if (b == 0xff || b == 0x00 || !(b & CFR_AT_VESA_078h))
330 return 0;
331 }
332 return 1; /* success */
333}
334
335/*
336 * Returns 1 if an IDE interface/drive exists at 0x170,
337 * Returns 0 otherwise.
338 */
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200339static int __init secondary_port_responding(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 unsigned long flags;
342
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200343 spin_lock_irqsave(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200345 outb_p(0x0a, 0x176); /* select drive0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 udelay(100);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200347 if ((inb_p(0x176) & 0x1f) != 0x0a) {
348 outb_p(0x1a, 0x176); /* select drive1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 udelay(100);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200350 if ((inb_p(0x176) & 0x1f) != 0x1a) {
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200351 spin_unlock_irqrestore(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return 0; /* nothing responded */
353 }
354 }
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200355 spin_unlock_irqrestore(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return 1; /* success */
357}
358
359#ifdef CMD640_DUMP_REGS
360/*
361 * Dump out all cmd640 registers. May be called from ide.c
362 */
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200363static void cmd640_dump_regs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365 unsigned int reg = cmd640_vlb ? 0x50 : 0x00;
366
367 /* Dump current state of chip registers */
368 printk("ide: cmd640 internal register dump:");
369 for (; reg <= 0x59; reg++) {
370 if (!(reg & 0x0f))
371 printk("\n%04x:", reg);
372 printk(" %02x", get_cmd640_reg(reg));
373 }
374 printk("\n");
375}
376#endif
377
Bartlomiej Zolnierkiewiczbdffe5d2008-04-27 15:38:29 +0200378#ifndef CONFIG_BLK_DEV_CMD640_ENHANCED
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379/*
380 * Check whether prefetch is on for a drive,
381 * and initialize the unmask flags for safe operation.
382 */
Bartlomiej Zolnierkiewicz95230762008-04-26 17:36:33 +0200383static void __init check_prefetch(ide_drive_t *drive, unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 u8 b = get_cmd640_reg(prefetch_regs[index]);
386
387 if (b & prefetch_masks[index]) { /* is prefetch off? */
388 drive->no_unmask = 0;
389 drive->no_io_32bit = 1;
390 drive->io_32bit = 0;
391 } else {
392#if CMD640_PREFETCH_MASKS
393 drive->no_unmask = 1;
394 drive->unmask = 0;
395#endif
396 drive->no_io_32bit = 0;
397 }
398}
Bartlomiej Zolnierkiewiczbdffe5d2008-04-27 15:38:29 +0200399#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400/*
401 * Sets prefetch mode for a drive.
402 */
Bartlomiej Zolnierkiewicz95230762008-04-26 17:36:33 +0200403static void set_prefetch_mode(ide_drive_t *drive, unsigned int index, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200405 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 int reg = prefetch_regs[index];
407 u8 b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200409 spin_lock_irqsave(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 b = __get_cmd640_reg(reg);
411 if (mode) { /* want prefetch on? */
412#if CMD640_PREFETCH_MASKS
413 drive->no_unmask = 1;
414 drive->unmask = 0;
415#endif
416 drive->no_io_32bit = 0;
417 b &= ~prefetch_masks[index]; /* enable prefetch */
418 } else {
419 drive->no_unmask = 0;
420 drive->no_io_32bit = 1;
421 drive->io_32bit = 0;
422 b |= prefetch_masks[index]; /* disable prefetch */
423 }
424 __put_cmd640_reg(reg, b);
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200425 spin_unlock_irqrestore(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
428/*
429 * Dump out current drive clocks settings
430 */
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200431static void display_clocks(unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
433 u8 active_count, recovery_count;
434
435 active_count = active_counts[index];
436 if (active_count == 1)
437 ++active_count;
438 recovery_count = recovery_counts[index];
439 if (active_count > 3 && recovery_count == 1)
440 ++recovery_count;
441 if (cmd640_chip_version > 1)
442 recovery_count += 1; /* cmd640b uses (count + 1)*/
443 printk(", clocks=%d/%d/%d\n", setup_counts[index], active_count, recovery_count);
444}
445
446/*
447 * Pack active and recovery counts into single byte representation
448 * used by controller
449 */
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200450static inline u8 pack_nibbles(u8 upper, u8 lower)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
452 return ((upper & 0x0f) << 4) | (lower & 0x0f);
453}
454
455/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 * This routine writes the prepared setup/active/recovery counts
457 * for a drive into the cmd640 chipset registers to active them.
458 */
Bartlomiej Zolnierkiewicz95230762008-04-26 17:36:33 +0200459static void program_drive_counts(ide_drive_t *drive, unsigned int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
461 unsigned long flags;
462 u8 setup_count = setup_counts[index];
463 u8 active_count = active_counts[index];
464 u8 recovery_count = recovery_counts[index];
465
466 /*
467 * Set up address setup count and drive read/write timing registers.
468 * Primary interface has individual count/timing registers for
469 * each drive. Secondary interface has one common set of registers,
470 * so we merge the timings, using the slowest value for each timing.
471 */
472 if (index > 1) {
Bartlomiej Zolnierkiewicz95230762008-04-26 17:36:33 +0200473 ide_hwif_t *hwif = drive->hwif;
474 ide_drive_t *peer = &hwif->drives[!drive->select.b.unit];
475 unsigned int mate = index ^ 1;
476
477 if (peer->present) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (setup_count < setup_counts[mate])
479 setup_count = setup_counts[mate];
480 if (active_count < active_counts[mate])
481 active_count = active_counts[mate];
482 if (recovery_count < recovery_counts[mate])
483 recovery_count = recovery_counts[mate];
484 }
485 }
486
487 /*
488 * Convert setup_count to internal chipset representation
489 */
490 switch (setup_count) {
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200491 case 4: setup_count = 0x00; break;
492 case 3: setup_count = 0x80; break;
493 case 1:
494 case 2: setup_count = 0x40; break;
495 default: setup_count = 0xc0; /* case 5 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
497
498 /*
499 * Now that everything is ready, program the new timings
500 */
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200501 spin_lock_irqsave(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 /*
503 * Program the address_setup clocks into ARTTIM reg,
504 * and then the active/recovery counts into the DRWTIM reg
505 * (this converts counts of 16 into counts of zero -- okay).
506 */
507 setup_count |= __get_cmd640_reg(arttim_regs[index]) & 0x3f;
508 __put_cmd640_reg(arttim_regs[index], setup_count);
509 __put_cmd640_reg(drwtim_regs[index], pack_nibbles(active_count, recovery_count));
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200510 spin_unlock_irqrestore(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
513/*
514 * Set a specific pio_mode for a drive
515 */
Bartlomiej Zolnierkiewicz95230762008-04-26 17:36:33 +0200516static void cmd640_set_mode(ide_drive_t *drive, unsigned int index,
517 u8 pio_mode, unsigned int cycle_time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Bartlomiej Zolnierkiewicz17b500d2008-07-16 20:33:38 +0200519 struct ide_timing *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 int setup_time, active_time, recovery_time, clock_time;
521 u8 setup_count, active_count, recovery_count, recovery_count2, cycle_count;
Bartlomiej Zolnierkiewiczebae41a2008-04-27 15:38:29 +0200522 int bus_speed;
523
Bartlomiej Zolnierkiewicz30e5ee42008-07-15 21:21:46 +0200524 if (cmd640_vlb)
525 bus_speed = ide_vlb_clk ? ide_vlb_clk : 50;
Bartlomiej Zolnierkiewiczebae41a2008-04-27 15:38:29 +0200526 else
Bartlomiej Zolnierkiewicz30e5ee42008-07-15 21:21:46 +0200527 bus_speed = ide_pci_clk ? ide_pci_clk : 33;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 if (pio_mode > 5)
530 pio_mode = 5;
Bartlomiej Zolnierkiewicz17b500d2008-07-16 20:33:38 +0200531
532 t = ide_timing_find_mode(XFER_PIO_0 + pio_mode);
533 setup_time = t->setup;
534 active_time = t->active;
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 recovery_time = cycle_time - (setup_time + active_time);
537 clock_time = 1000 / bus_speed;
Julia Lawall00fe8b72008-04-26 17:36:35 +0200538 cycle_count = DIV_ROUND_UP(cycle_time, clock_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Julia Lawall00fe8b72008-04-26 17:36:35 +0200540 setup_count = DIV_ROUND_UP(setup_time, clock_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Julia Lawall00fe8b72008-04-26 17:36:35 +0200542 active_count = DIV_ROUND_UP(active_time, clock_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (active_count < 2)
544 active_count = 2; /* minimum allowed by cmd640 */
545
Julia Lawall00fe8b72008-04-26 17:36:35 +0200546 recovery_count = DIV_ROUND_UP(recovery_time, clock_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 recovery_count2 = cycle_count - (setup_count + active_count);
548 if (recovery_count2 > recovery_count)
549 recovery_count = recovery_count2;
550 if (recovery_count < 2)
551 recovery_count = 2; /* minimum allowed by cmd640 */
552 if (recovery_count > 17) {
553 active_count += recovery_count - 17;
554 recovery_count = 17;
555 }
556 if (active_count > 16)
557 active_count = 16; /* maximum allowed by cmd640 */
558 if (cmd640_chip_version > 1)
559 recovery_count -= 1; /* cmd640b uses (count + 1)*/
560 if (recovery_count > 16)
561 recovery_count = 16; /* maximum allowed by cmd640 */
562
563 setup_counts[index] = setup_count;
564 active_counts[index] = active_count;
565 recovery_counts[index] = recovery_count;
566
567 /*
568 * In a perfect world, we might set the drive pio mode here
569 * (using WIN_SETFEATURE) before continuing.
570 *
571 * But we do not, because:
572 * 1) this is the wrong place to do it (proper is do_special() in ide.c)
573 * 2) in practice this is rarely, if ever, necessary
574 */
Bartlomiej Zolnierkiewicz95230762008-04-26 17:36:33 +0200575 program_drive_counts(drive, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200578static void cmd640_set_pio_mode(ide_drive_t *drive, const u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200580 unsigned int index = 0, cycle_time;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 u8 b;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200583 switch (pio) {
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200584 case 6: /* set fast-devsel off */
585 case 7: /* set fast-devsel on */
586 b = get_cmd640_reg(CNTRL) & ~0x27;
587 if (pio & 1)
588 b |= 0x27;
589 put_cmd640_reg(CNTRL, b);
590 printk("%s: %sabled cmd640 fast host timing (devsel)\n",
591 drive->name, (pio & 1) ? "en" : "dis");
592 return;
593 case 8: /* set prefetch off */
594 case 9: /* set prefetch on */
595 set_prefetch_mode(drive, index, pio & 1);
596 printk("%s: %sabled cmd640 prefetch\n",
597 drive->name, (pio & 1) ? "en" : "dis");
598 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200601 cycle_time = ide_pio_cycle_time(drive, pio);
Bartlomiej Zolnierkiewicz95230762008-04-26 17:36:33 +0200602 cmd640_set_mode(drive, index, pio, cycle_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Bartlomiej Zolnierkiewicz342cdb62007-07-20 01:11:55 +0200604 printk("%s: selected cmd640 PIO mode%d (%dns)",
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200605 drive->name, pio, cycle_time);
Bartlomiej Zolnierkiewicz342cdb62007-07-20 01:11:55 +0200606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 display_clocks(index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
Bartlomiej Zolnierkiewiczb48c89a2008-07-16 20:33:42 +0200609#endif /* CONFIG_BLK_DEV_CMD640_ENHANCED */
610
611static void cmd640_init_dev(ide_drive_t *drive)
612{
613 unsigned int i = drive->hwif->channel * 2 + drive->select.b.unit;
614
615#ifdef CONFIG_BLK_DEV_CMD640_ENHANCED
616 /*
617 * Reset timing to the slowest speed and turn off prefetch.
618 * This way, the drive identify code has a better chance.
619 */
620 setup_counts[i] = 4; /* max possible */
621 active_counts[i] = 16; /* max possible */
622 recovery_counts[i] = 16; /* max possible */
623 program_drive_counts(drive, i);
624 set_prefetch_mode(drive, i, 0);
625 printk(KERN_INFO DRV_NAME ": drive%d timings/prefetch cleared\n", i);
626#else
627 /*
628 * Set the drive unmask flags to match the prefetch setting.
629 */
630 check_prefetch(drive, i);
631 printk(KERN_INFO DRV_NAME ": drive%d timings/prefetch(%s) preserved\n",
632 i, drive->no_io_32bit ? "off" : "on");
633#endif /* CONFIG_BLK_DEV_CMD640_ENHANCED */
634}
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200637static const struct ide_port_ops cmd640_port_ops = {
Bartlomiej Zolnierkiewiczb48c89a2008-07-16 20:33:42 +0200638 .init_dev = cmd640_init_dev,
639#ifdef CONFIG_BLK_DEV_CMD640_ENHANCED
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200640 .set_pio_mode = cmd640_set_pio_mode,
Bartlomiej Zolnierkiewiczb48c89a2008-07-16 20:33:42 +0200641#endif
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200642};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644static int pci_conf1(void)
645{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 unsigned long flags;
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200647 u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200649 spin_lock_irqsave(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 outb(0x01, 0xCFB);
651 tmp = inl(0xCF8);
652 outl(0x80000000, 0xCF8);
653 if (inl(0xCF8) == 0x80000000) {
654 outl(tmp, 0xCF8);
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200655 spin_unlock_irqrestore(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return 1;
657 }
658 outl(tmp, 0xCF8);
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200659 spin_unlock_irqrestore(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return 0;
661}
662
663static int pci_conf2(void)
664{
665 unsigned long flags;
666
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200667 spin_lock_irqsave(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 outb(0x00, 0xCFB);
669 outb(0x00, 0xCF8);
670 outb(0x00, 0xCFA);
671 if (inb(0xCF8) == 0x00 && inb(0xCF8) == 0x00) {
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200672 spin_unlock_irqrestore(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return 1;
674 }
Bartlomiej Zolnierkiewicz5bbcf922007-10-20 00:32:35 +0200675 spin_unlock_irqrestore(&cmd640_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return 0;
677}
678
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100679static const struct ide_port_info cmd640_port_info __initdata = {
680 .chipset = ide_cmd640,
681 .host_flags = IDE_HFLAG_SERIALIZE |
682 IDE_HFLAG_NO_DMA |
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100683 IDE_HFLAG_ABUSE_PREFETCH |
684 IDE_HFLAG_ABUSE_FAST_DEVSEL,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200685 .port_ops = &cmd640_port_ops,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100686 .pio_mask = ATA_PIO5,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100687};
688
Bartlomiej Zolnierkiewicz7ebe5932008-04-26 22:25:19 +0200689static int cmd640x_init_one(unsigned long base, unsigned long ctl)
690{
691 if (!request_region(base, 8, DRV_NAME)) {
692 printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n",
693 DRV_NAME, base, base + 7);
694 return -EBUSY;
695 }
696
697 if (!request_region(ctl, 1, DRV_NAME)) {
698 printk(KERN_ERR "%s: I/O resource 0x%lX not free.\n",
699 DRV_NAME, ctl);
700 release_region(base, 8);
701 return -EBUSY;
702 }
703
704 return 0;
705}
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707/*
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100708 * Probe for a cmd640 chipset, and initialize it if found.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 */
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100710static int __init cmd640x_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200712 struct ide_host *host;
Bartlomiej Zolnierkiewicz7ebe5932008-04-26 22:25:19 +0200713 int second_port_cmd640 = 0, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 const char *bus_type, *port2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 u8 b, cfr;
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +0200716 hw_regs_t hw[2], *hws[] = { NULL, NULL, NULL, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 if (cmd640_vlb && probe_for_cmd640_vlb()) {
719 bus_type = "VLB";
720 } else {
721 cmd640_vlb = 0;
722 /* Find out what kind of PCI probing is supported otherwise
723 Justin Gibbs will sulk.. */
724 if (pci_conf1() && probe_for_cmd640_pci1())
725 bus_type = "PCI (type1)";
726 else if (pci_conf2() && probe_for_cmd640_pci2())
727 bus_type = "PCI (type2)";
728 else
729 return 0;
730 }
731 /*
732 * Undocumented magic (there is no 0x5b reg in specs)
733 */
734 put_cmd640_reg(0x5b, 0xbd);
735 if (get_cmd640_reg(0x5b) != 0xbd) {
736 printk(KERN_ERR "ide: cmd640 init failed: wrong value in reg 0x5b\n");
737 return 0;
738 }
739 put_cmd640_reg(0x5b, 0);
740
741#ifdef CMD640_DUMP_REGS
742 cmd640_dump_regs();
743#endif
744
745 /*
746 * Documented magic begins here
747 */
748 cfr = get_cmd640_reg(CFR);
749 cmd640_chip_version = cfr & CFR_DEVREV;
750 if (cmd640_chip_version == 0) {
Paolo Ciarrocchi4752b5e2008-04-26 17:36:41 +0200751 printk("ide: bad cmd640 revision: %d\n", cmd640_chip_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return 0;
753 }
754
Bartlomiej Zolnierkiewicz7ebe5932008-04-26 22:25:19 +0200755 rc = cmd640x_init_one(0x1f0, 0x3f6);
756 if (rc)
757 return rc;
758
759 rc = cmd640x_init_one(0x170, 0x376);
760 if (rc) {
761 release_region(0x3f6, 1);
762 release_region(0x1f0, 8);
763 return rc;
764 }
765
Bartlomiej Zolnierkiewicz6d3803b2008-04-18 00:46:34 +0200766 memset(&hw, 0, sizeof(hw));
767
768 ide_std_init_ports(&hw[0], 0x1f0, 0x3f6);
769 hw[0].irq = 14;
Bartlomiej Zolnierkiewiczd427e832008-06-10 20:56:37 +0200770 hw[0].chipset = ide_cmd640;
Bartlomiej Zolnierkiewicz6d3803b2008-04-18 00:46:34 +0200771
772 ide_std_init_ports(&hw[1], 0x170, 0x376);
773 hw[1].irq = 15;
Bartlomiej Zolnierkiewiczd427e832008-06-10 20:56:37 +0200774 hw[1].chipset = ide_cmd640;
Bartlomiej Zolnierkiewicz6d3803b2008-04-18 00:46:34 +0200775
776 printk(KERN_INFO "cmd640: buggy cmd640%c interface on %s, config=0x%02x"
777 "\n", 'a' + cmd640_chip_version - 1, bus_type, cfr);
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 /*
780 * Initialize data for primary port
781 */
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200782 hws[0] = &hw[0];
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +0100783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 /*
785 * Ensure compatibility by always using the slowest timings
786 * for access to the drive's command register block,
787 * and reset the prefetch burstsize to default (512 bytes).
788 *
789 * Maybe we need a way to NOT do these on *some* systems?
790 */
791 put_cmd640_reg(CMDTIM, 0);
792 put_cmd640_reg(BRST, 0x40);
793
Bartlomiej Zolnierkiewicza6984002008-07-16 20:33:41 +0200794 b = get_cmd640_reg(CNTRL);
Bartlomiej Zolnierkiewicz84f05df2008-04-26 17:36:33 +0200795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 /*
797 * Try to enable the secondary interface, if not already enabled
798 */
Bartlomiej Zolnierkiewicza6984002008-07-16 20:33:41 +0200799 if (secondary_port_responding()) {
800 if ((b & CNTRL_ENA_2ND)) {
801 second_port_cmd640 = 1;
802 port2 = "okay";
803 } else if (cmd640_vlb) {
804 second_port_cmd640 = 1;
805 port2 = "alive";
806 } else
807 port2 = "not cmd640";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 } else {
Bartlomiej Zolnierkiewicza6984002008-07-16 20:33:41 +0200809 put_cmd640_reg(CNTRL, b ^ CNTRL_ENA_2ND); /* toggle the bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (secondary_port_responding()) {
Bartlomiej Zolnierkiewicza6984002008-07-16 20:33:41 +0200811 second_port_cmd640 = 1;
812 port2 = "enabled";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 } else {
Bartlomiej Zolnierkiewicza6984002008-07-16 20:33:41 +0200814 put_cmd640_reg(CNTRL, b); /* restore original setting */
815 port2 = "not responding";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 }
817 }
818
819 /*
820 * Initialize data for secondary cmd640 port, if enabled
821 */
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200822 if (second_port_cmd640)
823 hws[1] = &hw[1];
824
Bartlomiej Zolnierkiewicz84f05df2008-04-26 17:36:33 +0200825 printk(KERN_INFO "cmd640: %sserialized, secondary interface %s\n",
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100826 second_port_cmd640 ? "" : "not ", port2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828#ifdef CMD640_DUMP_REGS
829 cmd640_dump_regs();
830#endif
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +0100831
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +0200832 host = ide_host_alloc(&cmd640_port_info, hws);
833 if (host)
834 ide_host_register(host, &cmd640_port_info, hws);
Bartlomiej Zolnierkiewicz8ac4ce72008-01-26 20:13:06 +0100835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return 1;
837}
838
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100839module_param_named(probe_vlb, cmd640_vlb, bool, 0);
840MODULE_PARM_DESC(probe_vlb, "probe for VLB version of CMD640 chipset");
841
842module_init(cmd640x_init);
Adrian Bunk776c0bc2008-04-02 21:22:02 +0200843
844MODULE_LICENSE("GPL");