blob: d81e49680c3fbc6a52fe89213ad01f9244c7cf34 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1995-2000 Linus Torvalds & author (see below)
3 */
4
5/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * HT-6560B EIDE-controller support
7 * To activate controller support use kernel parameter "ide0=ht6560b".
8 * Use hdparm utility to enable PIO mode support.
9 *
10 * Author: Mikko Ala-Fossi <maf@iki.fi>
Jan Evert van Grootheesteb34b2d2008-07-24 22:53:35 +020011 * Jan Evert van Grootheest <j.e.van.grootheest@caiway.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
13 * Try: http://www.maf.iki.fi/~maf/ht6560b/
14 */
15
Bartlomiej Zolnierkiewicz2e4ed292008-04-26 17:36:35 +020016#define DRV_NAME "ht6560b"
Jan Evert van Grootheest0e7d8d482008-02-19 01:41:26 +010017#define HT6560B_VERSION "v0.08"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/types.h>
21#include <linux/kernel.h>
22#include <linux/delay.h>
23#include <linux/timer.h>
24#include <linux/mm.h>
25#include <linux/ioport.h>
26#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/ide.h>
28#include <linux/init.h>
29
30#include <asm/io.h>
31
32/* #define DEBUG */ /* remove comments for DEBUG messages */
33
34/*
35 * The special i/o-port that HT-6560B uses to configuration:
36 * bit0 (0x01): "1" selects secondary interface
37 * bit2 (0x04): "1" enables FIFO function
38 * bit5 (0x20): "1" enables prefetched data read function (???)
39 *
40 * The special i/o-port that HT-6560A uses to configuration:
41 * bit0 (0x01): "1" selects secondary interface
42 * bit1 (0x02): "1" enables prefetched data read function
43 * bit2 (0x04): "0" enables multi-master system (?)
44 * bit3 (0x08): "1" 3 cycle time, "0" 2 cycle time (?)
45 */
46#define HT_CONFIG_PORT 0x3e6
Joao Ramos5bfb151f2009-06-15 22:13:44 +020047
48static inline u8 HT_CONFIG(ide_drive_t *drive)
49{
50 return ((unsigned long)ide_get_drivedata(drive) & 0xff00) >> 8;
51}
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*
54 * FIFO + PREFETCH (both a/b-model)
55 */
56#define HT_CONFIG_DEFAULT 0x1c /* no prefetch */
57/* #define HT_CONFIG_DEFAULT 0x3c */ /* with prefetch */
58#define HT_SECONDARY_IF 0x01
59#define HT_PREFETCH_MODE 0x20
60
61/*
62 * ht6560b Timing values:
63 *
64 * I reviewed some assembler source listings of htide drivers and found
65 * out how they setup those cycle time interfacing values, as they at Holtek
66 * call them. IDESETUP.COM that is supplied with the drivers figures out
67 * optimal values and fetches those values to drivers. I found out that
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +020068 * they use Select register to fetch timings to the ide board right after
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 * interface switching. After that it was quite easy to add code to
70 * ht6560b.c.
71 *
72 * IDESETUP.COM gave me values 0x24, 0x45, 0xaa, 0xff that worked fine
73 * for hda and hdc. But hdb needed higher values to work, so I guess
74 * that sometimes it is necessary to give higher value than IDESETUP
75 * gives. [see cmd640.c for an extreme example of this. -ml]
76 *
77 * Perhaps I should explain something about these timing values:
78 * The higher nibble of value is the Recovery Time (rt) and the lower nibble
79 * of the value is the Active Time (at). Minimum value 2 is the fastest and
80 * the maximum value 15 is the slowest. Default values should be 15 for both.
81 * So 0x24 means 2 for rt and 4 for at. Each of the drives should have
82 * both values, and IDESETUP gives automatically rt=15 st=15 for CDROMs or
83 * similar. If value is too small there will be all sorts of failures.
84 *
85 * Timing byte consists of
86 * High nibble: Recovery Cycle Time (rt)
87 * The valid values range from 2 to 15. The default is 15.
88 *
89 * Low nibble: Active Cycle Time (at)
90 * The valid values range from 2 to 15. The default is 15.
91 *
92 * You can obtain optimized timing values by running Holtek IDESETUP.COM
93 * for DOS. DOS drivers get their timing values from command line, where
94 * the first value is the Recovery Time and the second value is the
95 * Active Time for each drive. Smaller value gives higher speed.
96 * In case of failures you should probably fall back to a higher value.
97 */
Joao Ramos5bfb151f2009-06-15 22:13:44 +020098static inline u8 HT_TIMING(ide_drive_t *drive)
99{
100 return (unsigned long)ide_get_drivedata(drive) & 0x00ff;
101}
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#define HT_TIMING_DEFAULT 0xff
104
105/*
106 * This routine handles interface switching for the peculiar hardware design
107 * on the F.G.I./Holtek HT-6560B VLB IDE interface.
108 * The HT-6560B can only enable one IDE port at a time, and requires a
109 * silly sequence (below) whenever we switch between primary and secondary.
110 */
111
112/*
113 * This routine is invoked from ide.c to prepare for access to a given drive.
114 */
Sergei Shtylyovabb596b2009-03-31 20:15:32 +0200115static void ht6560b_dev_select(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200117 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 unsigned long flags;
119 static u8 current_select = 0;
120 static u8 current_timing = 0;
121 u8 select, timing;
122
123 local_irq_save(flags);
Jan Evert van Grootheest0e7d8d482008-02-19 01:41:26 +0100124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 select = HT_CONFIG(drive);
126 timing = HT_TIMING(drive);
Jan Evert van Grootheest0e7d8d482008-02-19 01:41:26 +0100127
128 /*
129 * Need to enforce prefetch sometimes because otherwise
130 * it'll hang (hard).
131 */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200132 if (drive->media != ide_disk ||
133 (drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
Jan Evert van Grootheest0e7d8d482008-02-19 01:41:26 +0100134 select |= HT_PREFETCH_MODE;
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 if (select != current_select || timing != current_timing) {
137 current_select = select;
138 current_timing = timing;
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100139 (void)inb(HT_CONFIG_PORT);
140 (void)inb(HT_CONFIG_PORT);
141 (void)inb(HT_CONFIG_PORT);
142 (void)inb(HT_CONFIG_PORT);
143 outb(select, HT_CONFIG_PORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 /*
145 * Set timing for this drive:
146 */
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200147 outb(timing, hwif->io_ports.device_addr);
148 (void)inb(hwif->io_ports.status_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149#ifdef DEBUG
150 printk("ht6560b: %s: select=%#x timing=%#x\n",
151 drive->name, select, timing);
152#endif
153 }
154 local_irq_restore(flags);
Sergei Shtylyovabb596b2009-03-31 20:15:32 +0200155
156 outb(drive->select | ATA_DEVICE_OBS, hwif->io_ports.device_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159/*
160 * Autodetection and initialization of ht6560b
161 */
162static int __init try_to_init_ht6560b(void)
163{
164 u8 orig_value;
165 int i;
166
167 /* Autodetect ht6560b */
168 if ((orig_value = inb(HT_CONFIG_PORT)) == 0xff)
169 return 0;
170
171 for (i=3;i>0;i--) {
172 outb(0x00, HT_CONFIG_PORT);
173 if (!( (~inb(HT_CONFIG_PORT)) & 0x3f )) {
174 outb(orig_value, HT_CONFIG_PORT);
175 return 0;
176 }
177 }
178 outb(0x00, HT_CONFIG_PORT);
179 if ((~inb(HT_CONFIG_PORT))& 0x3f) {
180 outb(orig_value, HT_CONFIG_PORT);
181 return 0;
182 }
183 /*
184 * Ht6560b autodetected
185 */
186 outb(HT_CONFIG_DEFAULT, HT_CONFIG_PORT);
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200187 outb(HT_TIMING_DEFAULT, 0x1f6); /* Select register */
188 (void)inb(0x1f7); /* Status register */
189
Jan Evert van Grootheest0e7d8d482008-02-19 01:41:26 +0100190 printk("ht6560b " HT6560B_VERSION
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 ": chipset detected and initialized"
192#ifdef DEBUG
193 " with debug enabled"
194#endif
Jan Evert van Grootheest0e7d8d482008-02-19 01:41:26 +0100195 "\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 );
197 return 1;
198}
199
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200200static u8 ht_pio2timings(ide_drive_t *drive, const u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 int active_time, recovery_time;
203 int active_cycles, recovery_cycles;
Bartlomiej Zolnierkiewicz30e5ee42008-07-15 21:21:46 +0200204 int bus_speed = ide_vlb_clk ? ide_vlb_clk : 50;
Bartlomiej Zolnierkiewiczebae41a2008-04-27 15:38:29 +0200205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (pio) {
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200207 unsigned int cycle_time;
Bartlomiej Zolnierkiewiczb32b76f2008-07-16 20:33:37 +0200208 struct ide_timing *t = ide_timing_find_mode(XFER_PIO_0 + pio);
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200209
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200210 cycle_time = ide_pio_cycle_time(drive, pio);
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /*
213 * Just like opti621.c we try to calculate the
214 * actual cycle time for recovery and activity
215 * according system bus speed.
216 */
Bartlomiej Zolnierkiewiczb32b76f2008-07-16 20:33:37 +0200217 active_time = t->active;
218 recovery_time = cycle_time - active_time - t->setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 /*
220 * Cycle times should be Vesa bus cycles
221 */
222 active_cycles = (active_time * bus_speed + 999) / 1000;
223 recovery_cycles = (recovery_time * bus_speed + 999) / 1000;
224 /*
225 * Upper and lower limits
226 */
227 if (active_cycles < 2) active_cycles = 2;
228 if (recovery_cycles < 2) recovery_cycles = 2;
229 if (active_cycles > 15) active_cycles = 15;
230 if (recovery_cycles > 15) recovery_cycles = 0; /* 0==16 */
231
232#ifdef DEBUG
233 printk("ht6560b: drive %s setting pio=%d recovery=%d (%dns) active=%d (%dns)\n", drive->name, pio, recovery_cycles, recovery_time, active_cycles, active_time);
234#endif
235
236 return (u8)((recovery_cycles << 4) | active_cycles);
237 } else {
238
239#ifdef DEBUG
240 printk("ht6560b: drive %s setting pio=0\n", drive->name);
241#endif
242
243 return HT_TIMING_DEFAULT; /* default setting */
244 }
245}
246
Bartlomiej Zolnierkiewicz69e88d22007-10-20 00:32:35 +0200247static DEFINE_SPINLOCK(ht6560b_lock);
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249/*
250 * Enable/Disable so called prefetch mode
251 */
252static void ht_set_prefetch(ide_drive_t *drive, u8 state)
253{
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200254 unsigned long flags, config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 int t = HT_PREFETCH_MODE << 8;
Bartlomiej Zolnierkiewicz69e88d22007-10-20 00:32:35 +0200256
257 spin_lock_irqsave(&ht6560b_lock, flags);
258
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200259 config = (unsigned long)ide_get_drivedata(drive);
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 /*
262 * Prefetch mode and unmask irq seems to conflict
263 */
264 if (state) {
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200265 config |= t; /* enable prefetch mode */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200266 drive->dev_flags |= IDE_DFLAG_NO_UNMASK;
267 drive->dev_flags &= ~IDE_DFLAG_UNMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 } else {
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200269 config &= ~t; /* disable prefetch mode */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200270 drive->dev_flags &= ~IDE_DFLAG_NO_UNMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
Bartlomiej Zolnierkiewicz69e88d22007-10-20 00:32:35 +0200272
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200273 ide_set_drivedata(drive, (void *)config);
274
Bartlomiej Zolnierkiewicz69e88d22007-10-20 00:32:35 +0200275 spin_unlock_irqrestore(&ht6560b_lock, flags);
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277#ifdef DEBUG
278 printk("ht6560b: drive %s prefetch mode %sabled\n", drive->name, (state ? "en" : "dis"));
279#endif
280}
281
Bartlomiej Zolnierkiewicze085b3c2010-01-19 01:44:41 -0800282static void ht6560b_set_pio_mode(ide_hwif_t *hwif, ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200284 unsigned long flags, config;
Bartlomiej Zolnierkiewicze085b3c2010-01-19 01:44:41 -0800285 const u8 pio = drive->pio_mode - XFER_PIO_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 u8 timing;
287
288 switch (pio) {
289 case 8: /* set prefetch off */
290 case 9: /* set prefetch on */
291 ht_set_prefetch(drive, pio & 1);
292 return;
293 }
Bartlomiej Zolnierkiewicz69e88d22007-10-20 00:32:35 +0200294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 timing = ht_pio2timings(drive, pio);
Bartlomiej Zolnierkiewicz69e88d22007-10-20 00:32:35 +0200296
297 spin_lock_irqsave(&ht6560b_lock, flags);
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200298 config = (unsigned long)ide_get_drivedata(drive);
299 config &= 0xff00;
300 config |= timing;
301 ide_set_drivedata(drive, (void *)config);
Bartlomiej Zolnierkiewicz69e88d22007-10-20 00:32:35 +0200302 spin_unlock_irqrestore(&ht6560b_lock, flags);
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304#ifdef DEBUG
305 printk("ht6560b: drive %s tuned to pio mode %#x timing=%#x\n", drive->name, pio, timing);
306#endif
307}
308
Bartlomiej Zolnierkiewicze6d95bd2008-07-16 20:33:42 +0200309static void __init ht6560b_init_dev(ide_drive_t *drive)
Bartlomiej Zolnierkiewicz1f2cf8b2008-02-02 19:56:40 +0100310{
Bartlomiej Zolnierkiewicze6d95bd2008-07-16 20:33:42 +0200311 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz1f2cf8b2008-02-02 19:56:40 +0100312 /* Setting default configurations for drives. */
313 int t = (HT_CONFIG_DEFAULT << 8) | HT_TIMING_DEFAULT;
314
315 if (hwif->channel)
316 t |= (HT_SECONDARY_IF << 8);
317
Joao Ramos5bfb151f2009-06-15 22:13:44 +0200318 ide_set_drivedata(drive, (void *)t);
Bartlomiej Zolnierkiewicz1f2cf8b2008-02-02 19:56:40 +0100319}
320
Bartlomiej Zolnierkiewiczef87f8d2008-04-27 15:38:24 +0200321static int probe_ht6560b;
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +0100322
323module_param_named(probe, probe_ht6560b, bool, 0);
324MODULE_PARM_DESC(probe, "probe for HT6560B chipset");
325
Sergei Shtylyovabb596b2009-03-31 20:15:32 +0200326static const struct ide_tp_ops ht6560b_tp_ops = {
327 .exec_command = ide_exec_command,
328 .read_status = ide_read_status,
329 .read_altstatus = ide_read_altstatus,
330 .write_devctl = ide_write_devctl,
331
332 .dev_select = ht6560b_dev_select,
333 .tf_load = ide_tf_load,
334 .tf_read = ide_tf_read,
335
336 .input_data = ide_input_data,
337 .output_data = ide_output_data,
338};
339
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200340static const struct ide_port_ops ht6560b_port_ops = {
Bartlomiej Zolnierkiewicze6d95bd2008-07-16 20:33:42 +0200341 .init_dev = ht6560b_init_dev,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200342 .set_pio_mode = ht6560b_set_pio_mode,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200343};
344
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100345static const struct ide_port_info ht6560b_port_info __initdata = {
Bartlomiej Zolnierkiewiczd92f1a22008-04-26 22:25:18 +0200346 .name = DRV_NAME,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100347 .chipset = ide_ht6560b,
Sergei Shtylyovabb596b2009-03-31 20:15:32 +0200348 .tp_ops = &ht6560b_tp_ops,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200349 .port_ops = &ht6560b_port_ops,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100350 .host_flags = IDE_HFLAG_SERIALIZE | /* is this needed? */
351 IDE_HFLAG_NO_DMA |
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100352 IDE_HFLAG_ABUSE_PREFETCH,
Jan Evert van Grootheest1a1990f2008-02-19 01:41:26 +0100353 .pio_mask = ATA_PIO4,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100354};
355
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100356static int __init ht6560b_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +0100358 if (probe_ht6560b == 0)
359 return -ENODEV;
360
Bartlomiej Zolnierkiewicz2e4ed292008-04-26 17:36:35 +0200361 if (!request_region(HT_CONFIG_PORT, 1, DRV_NAME)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 printk(KERN_NOTICE "%s: HT_CONFIG_PORT not found\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200363 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return -ENODEV;
365 }
366
367 if (!try_to_init_ht6560b()) {
Harvey Harrisoneb639632008-04-26 22:25:20 +0200368 printk(KERN_NOTICE "%s: HBA not found\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 goto release_region;
370 }
371
Bartlomiej Zolnierkiewicz0bfeee72008-04-26 22:25:16 +0200372 return ide_legacy_device_add(&ht6560b_port_info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374release_region:
375 release_region(HT_CONFIG_PORT, 1);
376 return -ENODEV;
377}
378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379module_init(ht6560b_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381MODULE_AUTHOR("See Local File");
382MODULE_DESCRIPTION("HT-6560B EIDE-controller support");
383MODULE_LICENSE("GPL");