blob: a14abb2c23ed4a8d6e02bbd8baf0c0cb80d039b6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1996 Linus Torvalds & author (see below)
3 */
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#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
Bartlomiej Zolnierkiewicza34a8752007-10-20 00:32:35 +020068static DEFINE_SPINLOCK(dtc2278_lock);
69
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +020070static void dtc2278_set_pio_mode(ide_drive_t *drive, const u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 unsigned long flags;
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 if (pio >= 3) {
Bartlomiej Zolnierkiewicza34a8752007-10-20 00:32:35 +020075 spin_lock_irqsave(&dtc2278_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 /*
77 * This enables PIO mode4 (3?) on the first interface
78 */
79 sub22(1,0xc3);
80 sub22(0,0xa0);
Bartlomiej Zolnierkiewicza34a8752007-10-20 00:32:35 +020081 spin_unlock_irqrestore(&dtc2278_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 } else {
83 /* we don't know how to set it back again.. */
Alan Coxd3bad452007-10-20 00:32:37 +020084 /* Actually we do - there is a data sheet available for the
85 Winbond but does anyone actually care */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +020089static const struct ide_port_ops dtc2278_port_ops = {
90 .set_pio_mode = dtc2278_set_pio_mode,
91};
92
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +010093static const struct ide_port_info dtc2278_port_info __initdata = {
94 .chipset = ide_dtc2278,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +020095 .port_ops = &dtc2278_port_ops,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +010096 .host_flags = IDE_HFLAG_SERIALIZE |
Bartlomiej Zolnierkiewicz807b90d2008-02-02 19:56:40 +010097 IDE_HFLAG_NO_UNMASK_IRQS |
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +010098 IDE_HFLAG_IO_32BIT |
Bartlomiej Zolnierkiewicz807b90d2008-02-02 19:56:40 +010099 /* disallow ->io_32bit changes */
100 IDE_HFLAG_NO_IO_32BIT |
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100101 IDE_HFLAG_NO_DMA |
102 IDE_HFLAG_NO_AUTOTUNE,
103 .pio_mask = ATA_PIO4,
104};
105
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +0100106static int __init dtc2278_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 unsigned long flags;
109 ide_hwif_t *hwif, *mate;
Bartlomiej Zolnierkiewicze277f912008-04-26 17:36:36 +0200110 static u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Bartlomiej Zolnierkiewiczdfd87842008-04-18 00:46:35 +0200111 hw_regs_t hw[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 local_irq_save(flags);
114 /*
115 * This enables the second interface
116 */
117 outb_p(4,0xb0);
118 inb(0x3f6);
119 outb_p(0x20,0xb4);
120 inb(0x3f6);
121#ifdef ALWAYS_SET_DTC2278_PIO_MODE
122 /*
123 * This enables PIO mode4 (3?) on the first interface
124 * and may solve start-up problems for some people.
125 */
126 sub22(1,0xc3);
127 sub22(0,0xa0);
128#endif
129 local_irq_restore(flags);
130
Bartlomiej Zolnierkiewiczdfd87842008-04-18 00:46:35 +0200131 memset(&hw, 0, sizeof(hw));
132
133 ide_std_init_ports(&hw[0], 0x1f0, 0x3f6);
134 hw[0].irq = 14;
135
136 ide_std_init_ports(&hw[1], 0x170, 0x376);
137 hw[1].irq = 15;
138
Bartlomiej Zolnierkiewicze277f912008-04-26 17:36:36 +0200139 hwif = ide_find_port();
140 if (hwif) {
141 ide_init_port_hw(hwif, &hw[0]);
Bartlomiej Zolnierkiewicze277f912008-04-26 17:36:36 +0200142 idx[0] = hwif->index;
143 }
Bartlomiej Zolnierkiewiczdfd87842008-04-18 00:46:35 +0200144
Bartlomiej Zolnierkiewicze277f912008-04-26 17:36:36 +0200145 mate = ide_find_port();
146 if (mate) {
147 ide_init_port_hw(mate, &hw[1]);
148 idx[1] = mate->index;
149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100151 ide_device_add(idx, &dtc2278_port_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 return 0;
154}
155
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +0100156int probe_dtc2278 = 0;
157
158module_param_named(probe, probe_dtc2278, bool, 0);
159MODULE_PARM_DESC(probe, "probe for DTC2278xx chipsets");
160
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +0100161static int __init dtc2278_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Bartlomiej Zolnierkiewicz84913882007-03-03 17:48:55 +0100163 if (probe_dtc2278 == 0)
164 return -ENODEV;
165
166 if (dtc2278_probe()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 printk(KERN_ERR "dtc2278: ide interfaces already in use!\n");
168 return -EBUSY;
169 }
170 return 0;
171}
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173module_init(dtc2278_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175MODULE_AUTHOR("See Local File");
176MODULE_DESCRIPTION("support of DTC-2278 VLB IDE chipsets");
177MODULE_LICENSE("GPL");