Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux...
[linux-2.6-block.git] / drivers / ide / legacy / dtc2278.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * Copyright (C) 1996 Linus Torvalds & author (see below)
3 */
4
1da177e4 5#include <linux/module.h>
1da177e4
LT
6#include <linux/types.h>
7#include <linux/kernel.h>
8#include <linux/delay.h>
9#include <linux/timer.h>
10#include <linux/mm.h>
11#include <linux/ioport.h>
12#include <linux/blkdev.h>
13#include <linux/hdreg.h>
14#include <linux/ide.h>
15#include <linux/init.h>
16
17#include <asm/io.h>
18
19/*
20 * Changing this #undef to #define may solve start up problems in some systems.
21 */
22#undef ALWAYS_SET_DTC2278_PIO_MODE
23
24/*
25 * From: andy@cercle.cts.com (Dyan Wile)
26 *
27 * Below is a patch for DTC-2278 - alike software-programmable controllers
28 * The code enables the secondary IDE controller and the PIO4 (3?) timings on
29 * the primary (EIDE). You may probably have to enable the 32-bit support to
30 * get the full speed. You better get the disk interrupts disabled ( hdparm -u0
31 * /dev/hd.. ) for the drives connected to the EIDE interface. (I get my
32 * filesystem corrupted with -u1, but under heavy disk load only :-)
33 *
34 * This card is now forced to use the "serialize" feature,
35 * and irq-unmasking is disallowed. If io_32bit is enabled,
36 * it must be done for BOTH drives on each interface.
37 *
38 * This code was written for the DTC2278E, but might work with any of these:
39 *
40 * DTC2278S has only a single IDE interface.
41 * DTC2278D has two IDE interfaces and is otherwise identical to the S version.
42 * DTC2278E also has serial ports and a printer port
43 * DTC2278EB: has onboard BIOS, and "works like a charm" -- Kent Bradford <kent@theory.caltech.edu>
44 *
45 * There may be a fourth controller type. The S and D versions use the
46 * Winbond chip, and I think the E version does also.
47 *
48 */
49
50static void sub22 (char b, char c)
51{
52 int i;
53
54 for(i = 0; i < 3; ++i) {
55 inb(0x3f6);
56 outb_p(b,0xb0);
57 inb(0x3f6);
58 outb_p(c,0xb4);
59 inb(0x3f6);
60 if(inb(0xb4) == c) {
61 outb_p(7,0xb0);
62 inb(0x3f6);
63 return; /* success */
64 }
65 }
66}
67
a34a8751
BZ
68static DEFINE_SPINLOCK(dtc2278_lock);
69
26bcb879 70static void dtc2278_set_pio_mode(ide_drive_t *drive, const u8 pio)
1da177e4
LT
71{
72 unsigned long flags;
73
1da177e4 74 if (pio >= 3) {
a34a8751 75 spin_lock_irqsave(&dtc2278_lock, flags);
1da177e4
LT
76 /*
77 * This enables PIO mode4 (3?) on the first interface
78 */
79 sub22(1,0xc3);
80 sub22(0,0xa0);
a34a8751 81 spin_unlock_irqrestore(&dtc2278_lock, flags);
1da177e4
LT
82 } else {
83 /* we don't know how to set it back again.. */
d3bad45f
AC
84 /* Actually we do - there is a data sheet available for the
85 Winbond but does anyone actually care */
1da177e4 86 }
1da177e4
LT
87}
88
c413b9b9
BZ
89static const struct ide_port_info dtc2278_port_info __initdata = {
90 .chipset = ide_dtc2278,
91 .host_flags = IDE_HFLAG_SERIALIZE |
807b90d0 92 IDE_HFLAG_NO_UNMASK_IRQS |
c413b9b9 93 IDE_HFLAG_IO_32BIT |
807b90d0
BZ
94 /* disallow ->io_32bit changes */
95 IDE_HFLAG_NO_IO_32BIT |
c413b9b9
BZ
96 IDE_HFLAG_NO_DMA |
97 IDE_HFLAG_NO_AUTOTUNE,
98 .pio_mask = ATA_PIO4,
99};
100
84913882 101static int __init dtc2278_probe(void)
1da177e4
LT
102{
103 unsigned long flags;
104 ide_hwif_t *hwif, *mate;
e277f91f 105 static u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
dfd87842 106 hw_regs_t hw[2];
1da177e4 107
1da177e4
LT
108 local_irq_save(flags);
109 /*
110 * This enables the second interface
111 */
112 outb_p(4,0xb0);
113 inb(0x3f6);
114 outb_p(0x20,0xb4);
115 inb(0x3f6);
116#ifdef ALWAYS_SET_DTC2278_PIO_MODE
117 /*
118 * This enables PIO mode4 (3?) on the first interface
119 * and may solve start-up problems for some people.
120 */
121 sub22(1,0xc3);
122 sub22(0,0xa0);
123#endif
124 local_irq_restore(flags);
125
dfd87842
BZ
126 memset(&hw, 0, sizeof(hw));
127
128 ide_std_init_ports(&hw[0], 0x1f0, 0x3f6);
129 hw[0].irq = 14;
130
131 ide_std_init_ports(&hw[1], 0x170, 0x376);
132 hw[1].irq = 15;
133
e277f91f
BZ
134 hwif = ide_find_port();
135 if (hwif) {
136 ide_init_port_hw(hwif, &hw[0]);
137 hwif->set_pio_mode = dtc2278_set_pio_mode;
138 idx[0] = hwif->index;
139 }
dfd87842 140
e277f91f
BZ
141 mate = ide_find_port();
142 if (mate) {
143 ide_init_port_hw(mate, &hw[1]);
144 idx[1] = mate->index;
145 }
1da177e4 146
c413b9b9 147 ide_device_add(idx, &dtc2278_port_info);
1da177e4
LT
148
149 return 0;
150}
151
84913882
BZ
152int probe_dtc2278 = 0;
153
154module_param_named(probe, probe_dtc2278, bool, 0);
155MODULE_PARM_DESC(probe, "probe for DTC2278xx chipsets");
156
ade2daf9 157static int __init dtc2278_init(void)
1da177e4 158{
84913882
BZ
159 if (probe_dtc2278 == 0)
160 return -ENODEV;
161
162 if (dtc2278_probe()) {
1da177e4
LT
163 printk(KERN_ERR "dtc2278: ide interfaces already in use!\n");
164 return -EBUSY;
165 }
166 return 0;
167}
168
1da177e4 169module_init(dtc2278_init);
1da177e4
LT
170
171MODULE_AUTHOR("See Local File");
172MODULE_DESCRIPTION("support of DTC-2278 VLB IDE chipsets");
173MODULE_LICENSE("GPL");