2 * Copyright (C) 1996 Linus Torvalds & author (see below)
5 #include <linux/module.h>
6 #include <linux/types.h>
7 #include <linux/kernel.h>
8 #include <linux/delay.h>
9 #include <linux/timer.h>
11 #include <linux/ioport.h>
12 #include <linux/blkdev.h>
13 #include <linux/ide.h>
14 #include <linux/init.h>
18 #define DRV_NAME "dtc2278"
21 * Changing this #undef to #define may solve start up problems in some systems.
23 #undef ALWAYS_SET_DTC2278_PIO_MODE
26 * From: andy@cercle.cts.com (Dyan Wile)
28 * Below is a patch for DTC-2278 - alike software-programmable controllers
29 * The code enables the secondary IDE controller and the PIO4 (3?) timings on
30 * the primary (EIDE). You may probably have to enable the 32-bit support to
31 * get the full speed. You better get the disk interrupts disabled ( hdparm -u0
32 * /dev/hd.. ) for the drives connected to the EIDE interface. (I get my
33 * filesystem corrupted with -u1, but under heavy disk load only :-)
35 * This card is now forced to use the "serialize" feature,
36 * and irq-unmasking is disallowed. If io_32bit is enabled,
37 * it must be done for BOTH drives on each interface.
39 * This code was written for the DTC2278E, but might work with any of these:
41 * DTC2278S has only a single IDE interface.
42 * DTC2278D has two IDE interfaces and is otherwise identical to the S version.
43 * DTC2278E also has serial ports and a printer port
44 * DTC2278EB: has onboard BIOS, and "works like a charm" -- Kent Bradford <kent@theory.caltech.edu>
46 * There may be a fourth controller type. The S and D versions use the
47 * Winbond chip, and I think the E version does also.
51 static void sub22 (char b
, char c
)
55 for(i
= 0; i
< 3; ++i
) {
69 static DEFINE_SPINLOCK(dtc2278_lock
);
71 static void dtc2278_set_pio_mode(ide_drive_t
*drive
, const u8 pio
)
76 spin_lock_irqsave(&dtc2278_lock
, flags
);
78 * This enables PIO mode4 (3?) on the first interface
82 spin_unlock_irqrestore(&dtc2278_lock
, flags
);
84 /* we don't know how to set it back again.. */
85 /* Actually we do - there is a data sheet available for the
86 Winbond but does anyone actually care */
90 static const struct ide_port_ops dtc2278_port_ops
= {
91 .set_pio_mode
= dtc2278_set_pio_mode
,
94 static const struct ide_port_info dtc2278_port_info __initdata
= {
96 .chipset
= ide_dtc2278
,
97 .port_ops
= &dtc2278_port_ops
,
98 .host_flags
= IDE_HFLAG_SERIALIZE
|
99 IDE_HFLAG_NO_UNMASK_IRQS
|
101 /* disallow ->io_32bit changes */
102 IDE_HFLAG_NO_IO_32BIT
|
105 .pio_mask
= ATA_PIO4
,
108 static int __init
dtc2278_probe(void)
112 local_irq_save(flags
);
114 * This enables the second interface
120 #ifdef ALWAYS_SET_DTC2278_PIO_MODE
122 * This enables PIO mode4 (3?) on the first interface
123 * and may solve start-up problems for some people.
128 local_irq_restore(flags
);
130 return ide_legacy_device_add(&dtc2278_port_info
, 0);
133 static int probe_dtc2278
;
135 module_param_named(probe
, probe_dtc2278
, bool, 0);
136 MODULE_PARM_DESC(probe
, "probe for DTC2278xx chipsets");
138 static int __init
dtc2278_init(void)
140 if (probe_dtc2278
== 0)
143 if (dtc2278_probe()) {
144 printk(KERN_ERR
"dtc2278: ide interfaces already in use!\n");
150 module_init(dtc2278_init
);
152 MODULE_AUTHOR("See Local File");
153 MODULE_DESCRIPTION("support of DTC-2278 VLB IDE chipsets");
154 MODULE_LICENSE("GPL");