Import 2.3.9pre5
[davej-history.git] / drivers / block / umc8672.c
blob13f5f39a7f55fda3b860d4f1cdd35a13899c353a
1 /*
2 * linux/drivers/block/umc8672.c Version 0.05 Jul 31, 1996
4 * Copyright (C) 1995-1996 Linus Torvalds & author (see below)
5 */
7 /*
8 * Principal Author/Maintainer: PODIEN@hml2.atlas.de (Wolfram Podien)
10 * This file provides support for the advanced features
11 * of the UMC 8672 IDE interface.
13 * Version 0.01 Initial version, hacked out of ide.c,
14 * and #include'd rather than compiled separately.
15 * This will get cleaned up in a subsequent release.
17 * Version 0.02 now configs/compiles separate from ide.c -ml
18 * Version 0.03 enhanced auto-tune, fix display bug
19 * Version 0.05 replace sti() with restore_flags() -ml
20 * add detection of possible race condition -ml
24 * VLB Controller Support from
25 * Wolfram Podien
26 * Rohoefe 3
27 * D28832 Achim
28 * Germany
30 * To enable UMC8672 support there must a lilo line like
31 * append="ide0=umc8672"...
32 * To set the speed according to the abilities of the hardware there must be a
33 * line like
34 * #define UMC_DRIVE0 11
35 * in the beginning of the driver, which sets the speed of drive 0 to 11 (there
36 * are some lines present). 0 - 11 are allowed speed values. These values are
37 * the results from the DOS speed test program supplied from UMC. 11 is the
38 * highest speed (about PIO mode 3)
40 #define REALLY_SLOW_IO /* some systems can safely undef this */
42 #include <linux/types.h>
43 #include <linux/kernel.h>
44 #include <linux/delay.h>
45 #include <linux/timer.h>
46 #include <linux/mm.h>
47 #include <linux/ioport.h>
48 #include <linux/blkdev.h>
49 #include <linux/hdreg.h>
50 #include <linux/ide.h>
52 #include <asm/io.h>
54 #include "ide_modes.h"
57 * Default speeds. These can be changed with "auto-tune" and/or hdparm.
59 #define UMC_DRIVE0 1 /* DOS measured drive speeds */
60 #define UMC_DRIVE1 1 /* 0 to 11 allowed */
61 #define UMC_DRIVE2 1 /* 11 = Fastest Speed */
62 #define UMC_DRIVE3 1 /* In case of crash reduce speed */
64 static byte current_speeds[4] = {UMC_DRIVE0, UMC_DRIVE1, UMC_DRIVE2, UMC_DRIVE3};
65 static const byte pio_to_umc [5] = {0,3,7,10,11}; /* rough guesses */
67 /* 0 1 2 3 4 5 6 7 8 9 10 11 */
68 static const byte speedtab [3][12] = {
69 {0xf, 0xb, 0x2, 0x2, 0x2, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1 },
70 {0x3, 0x2, 0x2, 0x2, 0x2, 0x2, 0x1, 0x1, 0x1, 0x1, 0x1, 0x1 },
71 {0xff,0xcb,0xc0,0x58,0x36,0x33,0x23,0x22,0x21,0x11,0x10,0x0}};
73 static void out_umc (char port,char wert)
75 outb_p (port,0x108);
76 outb_p (wert,0x109);
79 static byte in_umc (char port)
81 outb_p (port,0x108);
82 return inb_p (0x109);
85 static void umc_set_speeds (byte speeds[])
87 int i, tmp;
89 outb_p (0x5A,0x108); /* enable umc */
91 out_umc (0xd7,(speedtab[0][speeds[2]] | (speedtab[0][speeds[3]]<<4)));
92 out_umc (0xd6,(speedtab[0][speeds[0]] | (speedtab[0][speeds[1]]<<4)));
93 tmp = 0;
94 for (i = 3; i >= 0; i--)
96 tmp = (tmp << 2) | speedtab[1][speeds[i]];
98 out_umc (0xdc,tmp);
99 for (i = 0;i < 4; i++)
101 out_umc (0xd0+i,speedtab[2][speeds[i]]);
102 out_umc (0xd8+i,speedtab[2][speeds[i]]);
104 outb_p (0xa5,0x108); /* disable umc */
106 printk ("umc8672: drive speeds [0 to 11]: %d %d %d %d\n",
107 speeds[0], speeds[1], speeds[2], speeds[3]);
110 static void tune_umc (ide_drive_t *drive, byte pio)
112 unsigned long flags;
113 ide_hwgroup_t *hwgroup = ide_hwifs[HWIF(drive)->index^1].hwgroup;
115 pio = ide_get_best_pio_mode(drive, pio, 4, NULL);
116 printk("%s: setting umc8672 to PIO mode%d (speed %d)\n", drive->name, pio, pio_to_umc[pio]);
117 save_flags(flags); /* all CPUs */
118 cli(); /* all CPUs */
119 if (hwgroup && hwgroup->handler != NULL) {
120 printk("umc8672: other interface is busy: exiting tune_umc()\n");
121 } else {
122 current_speeds[drive->name[2] - 'a'] = pio_to_umc[pio];
123 umc_set_speeds (current_speeds);
125 restore_flags(flags); /* all CPUs */
128 void init_umc8672 (void) /* called from ide.c */
130 unsigned long flags;
132 __save_flags(flags); /* local CPU only */
133 __cli(); /* local CPU only */
134 if (check_region(0x108, 2)) {
135 __restore_flags(flags);
136 printk("\numc8672: PORTS 0x108-0x109 ALREADY IN USE\n");
137 return;
139 outb_p (0x5A,0x108); /* enable umc */
140 if (in_umc (0xd5) != 0xa0)
142 __restore_flags(flags); /* local CPU only */
143 printk ("umc8672: not found\n");
144 return;
146 outb_p (0xa5,0x108); /* disable umc */
148 umc_set_speeds (current_speeds);
149 __restore_flags(flags); /* local CPU only */
151 request_region(0x108, 2, "umc8672");
152 ide_hwifs[0].chipset = ide_umc8672;
153 ide_hwifs[1].chipset = ide_umc8672;
154 ide_hwifs[0].tuneproc = &tune_umc;
155 ide_hwifs[1].tuneproc = &tune_umc;
156 ide_hwifs[0].mate = &ide_hwifs[1];
157 ide_hwifs[1].mate = &ide_hwifs[0];
158 ide_hwifs[1].channel = 1;