OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [drivers/] [ide/] [pci/] [triflex.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1275 phoenix
/*
2
 * triflex.c
3
 *
4
 * IDE Chipset driver for the Compaq TriFlex IDE controller.
5
 *
6
 * Known to work with the Compaq Workstation 5x00 series.
7
 *
8
 * Copyright (C) 2002 Hewlett-Packard Development Group, L.P.
9
 * Author: Torben Mathiasen <torben.mathiasen@hp.com>
10
 *
11
 * This program is free software; you can redistribute it and/or modify
12
 * it under the terms of the GNU General Public License version 2 as
13
 * published by the Free Software Foundation.
14
 *
15
 * This program is distributed in the hope that it will be useful,
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 * GNU General Public License for more details.
19
 *
20
 * You should have received a copy of the GNU General Public License
21
 * along with this program; if not, write to the Free Software
22
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23
 *
24
 * Loosely based on the piix & svwks drivers.
25
 *
26
 * Documentation:
27
 *      Not publically available.
28
 */
29
 
30
#include <linux/config.h>
31
#include <linux/types.h>
32
#include <linux/module.h>
33
#include <linux/kernel.h>
34
#include <linux/delay.h>
35
#include <linux/timer.h>
36
#include <linux/mm.h>
37
#include <linux/ioport.h>
38
#include <linux/blkdev.h>
39
#include <linux/hdreg.h>
40
#include <linux/pci.h>
41
#include <linux/ide.h>
42
#include <linux/init.h>
43
 
44
#include "ide_modes.h"
45
#include "triflex.h"
46
 
47
static struct pci_dev *triflex_dev;
48
 
49
static int triflex_get_info(char *buf, char **addr, off_t offset, int count)
50
{
51
        char *p = buf;
52
        int len;
53
 
54
        struct pci_dev *dev     = triflex_dev;
55
        unsigned long bibma = pci_resource_start(dev, 4);
56
        u8  c0 = 0, c1 = 0;
57
        u32 pri_timing, sec_timing;
58
 
59
        p += sprintf(p, "\n                                Compaq Triflex Chipset\n");
60
 
61
        pci_read_config_dword(dev, 0x70, &pri_timing);
62
        pci_read_config_dword(dev, 0x74, &sec_timing);
63
 
64
        /*
65
         * at that point bibma+0x2 et bibma+0xa are byte registers
66
         * to investigate:
67
         */
68
        c0 = inb((unsigned short)bibma + 0x02);
69
        c1 = inb((unsigned short)bibma + 0x0a);
70
 
71
        p += sprintf(p, "--------------- Primary Channel "
72
                        "---------------- Secondary Channel "
73
                        "-------------\n");
74
        p += sprintf(p, "                %sabled "
75
                        "                        %sabled\n",
76
                        (c0&0x80) ? "dis" : " en",
77
                        (c1&0x80) ? "dis" : " en");
78
        p += sprintf(p, "--------------- drive0 --------- drive1 "
79
                        "-------- drive0 ---------- drive1 ------\n");
80
        p += sprintf(p, "DMA enabled:    %s              %s "
81
                        "            %s               %s\n",
82
                        (c0&0x20) ? "yes" : "no ",
83
                        (c0&0x40) ? "yes" : "no ",
84
                        (c1&0x20) ? "yes" : "no ",
85
                        (c1&0x40) ? "yes" : "no " );
86
 
87
        p += sprintf(p, "DMA\n");
88
        p += sprintf(p, "PIO\n");
89
 
90
        len = (p - buf) - offset;
91
        *addr = buf + offset;
92
 
93
        return len > count ? count : len;
94
}
95
 
96
static int triflex_tune_chipset(ide_drive_t *drive, u8 xferspeed)
97
{
98
        ide_hwif_t *hwif = HWIF(drive);
99
        struct pci_dev *dev = hwif->pci_dev;
100
        u8 channel_offset = hwif->channel ? 0x74 : 0x70;
101
        u16 timing = 0;
102
        u32 triflex_timings = 0;
103
        u8 unit = (drive->select.b.unit & 0x01);
104
        u8 speed = ide_rate_filter(0, xferspeed);
105
 
106
        pci_read_config_dword(dev, channel_offset, &triflex_timings);
107
 
108
        switch(speed) {
109
                case XFER_MW_DMA_2:
110
                        timing = 0x0103;
111
                        break;
112
                case XFER_MW_DMA_1:
113
                        timing = 0x0203;
114
                        break;
115
                case XFER_MW_DMA_0:
116
                        timing = 0x0808;
117
                        break;
118
                case XFER_SW_DMA_2:
119
                case XFER_SW_DMA_1:
120
                case XFER_SW_DMA_0:
121
                        timing = 0x0f0f;
122
                        break;
123
                case XFER_PIO_4:
124
                        timing = 0x0202;
125
                        break;
126
                case XFER_PIO_3:
127
                        timing = 0x0204;
128
                        break;
129
                case XFER_PIO_2:
130
                        timing = 0x0404;
131
                        break;
132
                case XFER_PIO_1:
133
                        timing = 0x0508;
134
                        break;
135
                case XFER_PIO_0:
136
                        timing = 0x0808;
137
                        break;
138
                default:
139
                        return -1;
140
        }
141
 
142
        triflex_timings &= ~(0xFFFF << (16 * unit));
143
        triflex_timings |= (timing << (16 * unit));
144
 
145
        pci_write_config_dword(dev, channel_offset, triflex_timings);
146
 
147
        return (ide_config_drive_speed(drive, speed));
148
}
149
 
150
static void triflex_tune_drive(ide_drive_t *drive, u8 pio)
151
{
152
        int use_pio = ide_get_best_pio_mode(drive, pio, 4, NULL);
153
        (void) triflex_tune_chipset(drive, (XFER_PIO_0 + use_pio));
154
}
155
 
156
static int triflex_config_drive_for_dma(ide_drive_t *drive)
157
{
158
        int speed = ide_dma_speed(drive, 0); /* No ultra speeds */
159
 
160
        if (!speed) {
161
                u8 pspeed = ide_get_best_pio_mode(drive, 255, 4, NULL);
162
                speed = XFER_PIO_0 + pspeed;
163
        }
164
 
165
        (void) triflex_tune_chipset(drive, speed);
166
         return ide_dma_enable(drive);
167
}
168
 
169
static int triflex_config_drive_xfer_rate(ide_drive_t *drive)
170
{
171
        ide_hwif_t *hwif        = HWIF(drive);
172
        struct hd_driveid *id   = drive->id;
173
 
174
        if ((id->capability & 1) && drive->autodma) {
175
                if (hwif->ide_dma_bad_drive(drive))
176
                        goto tune_pio;
177
                if (id->field_valid & 2) {
178
                        if ((id->dma_mword & hwif->mwdma_mask) ||
179
                                (id->dma_1word & hwif->swdma_mask)) {
180
                                if (!triflex_config_drive_for_dma(drive))
181
                                        goto tune_pio;
182
                        }
183
                } else
184
                        goto tune_pio;
185
        } else {
186
tune_pio:
187
                hwif->tuneproc(drive, 255);
188
                return hwif->ide_dma_off_quietly(drive);
189
        }
190
 
191
        return hwif->ide_dma_on(drive);
192
}
193
 
194
static void __init init_hwif_triflex(ide_hwif_t *hwif)
195
{
196
        hwif->tuneproc = &triflex_tune_drive;
197
        hwif->speedproc = &triflex_tune_chipset;
198
 
199
        hwif->atapi_dma  = 1;
200
        hwif->mwdma_mask = 0x07;
201
        hwif->swdma_mask = 0x07;
202
        hwif->ide_dma_check = &triflex_config_drive_xfer_rate;
203
 
204
        if (!noautodma)
205
                hwif->autodma = 1;
206
        hwif->drives[0].autodma = hwif->autodma;
207
        hwif->drives[1].autodma = hwif->autodma;
208
}
209
 
210
static unsigned int __init init_chipset_triflex(struct pci_dev *dev,
211
                const char *name)
212
{
213
#ifdef CONFIG_PROC_FS
214
        ide_pci_register_host_proc(&triflex_proc);
215
#endif
216
        return 0;
217
}
218
 
219
static int __devinit triflex_init_one(struct pci_dev *dev,
220
                const struct pci_device_id *id)
221
{
222
        ide_pci_device_t *d = &triflex_devices[id->driver_data];
223
        if (dev->device != d->device)
224
                BUG();
225
 
226
        ide_setup_pci_device(dev, d);
227
        triflex_dev = dev;
228
        MOD_INC_USE_COUNT;
229
 
230
        return 0;
231
}
232
 
233
static struct pci_driver driver = {
234
        .name           = "TRIFLEX IDE",
235
        .id_table       = triflex_pci_tbl,
236
        .probe          = triflex_init_one,
237
};
238
 
239
static int triflex_ide_init(void)
240
{
241
        return ide_pci_register_driver(&driver);
242
}
243
 
244
static void triflex_ide_exit(void)
245
{
246
        ide_pci_unregister_driver(&driver);
247
}
248
 
249
module_init(triflex_ide_init);
250
module_exit(triflex_ide_exit);
251
 
252
MODULE_AUTHOR("Torben Mathiasen");
253
MODULE_DESCRIPTION("PCI driver module for Compaq Triflex IDE");
254
MODULE_LICENSE("GPL");
255
 
256
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.