Blame view

drivers/ide/sl82c105.c 9.47 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
6
7
8
9
10
11
   * SL82C105/Winbond 553 IDE driver
   *
   * Maintainer unknown.
   *
   * Drive tuning added from Rebel.com's kernel sources
   *  -- Russell King (15/11/98) linux@arm.linux.org.uk
   * 
   * Merge in Russell's HW workarounds, fix various problems
   * with the timing registers setup.
   *  -- Benjamin Herrenschmidt (01/11/03) benh@kernel.crashing.org
e93df705a   Sergei Shtylyov   sl82c105: rework ...
12
   *
75c2d7d71   Sergei Shtylyov   sl82c105: add pri...
13
   * Copyright (C) 2006-2007,2009 MontaVista Software, Inc. <source@mvista.com>
6ae8b1efc   Bartlomiej Zolnierkiewicz   sl82c105: program...
14
   * Copyright (C)      2007 Bartlomiej Zolnierkiewicz
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
17
18
  #include <linux/types.h>
  #include <linux/module.h>
  #include <linux/kernel.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19
20
21
22
  #include <linux/pci.h>
  #include <linux/ide.h>
  
  #include <asm/io.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
23

ced3ec8aa   Bartlomiej Zolnierkiewicz   ide: prefix messa...
24
  #define DRV_NAME "sl82c105"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
25
26
27
28
29
30
31
32
33
34
35
36
  /*
   * SL82C105 PCI config register 0x40 bits.
   */
  #define CTRL_IDE_IRQB   (1 << 30)
  #define CTRL_IDE_IRQA   (1 << 28)
  #define CTRL_LEGIRQ     (1 << 11)
  #define CTRL_P1F16      (1 << 5)
  #define CTRL_P1EN       (1 << 4)
  #define CTRL_P0F16      (1 << 1)
  #define CTRL_P0EN       (1 << 0)
  
  /*
e93df705a   Sergei Shtylyov   sl82c105: rework ...
37
38
   * Convert a PIO mode and cycle time to the required on/off times
   * for the interface.  This has protection against runaway timings.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
39
   */
7dd00083b   Bartlomiej Zolnierkiewicz   ide: add ide_pio_...
40
  static unsigned int get_pio_timings(ide_drive_t *drive, u8 pio)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
41
  {
3f847571a   Bartlomiej Zolnierkiewicz   sl82c105: convert...
42
  	struct ide_timing *t = ide_timing_find_mode(XFER_PIO_0 + pio);
e93df705a   Sergei Shtylyov   sl82c105: rework ...
43
  	unsigned int cmd_on, cmd_off;
2229833c1   Bartlomiej Zolnierkiewicz   ide: add ide_dev_...
44
  	u8 iordy = 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
45

3f847571a   Bartlomiej Zolnierkiewicz   sl82c105: convert...
46
  	cmd_on  = (t->active + 29) / 30;
7dd00083b   Bartlomiej Zolnierkiewicz   ide: add ide_pio_...
47
  	cmd_off = (ide_pio_cycle_time(drive, pio) - 30 * cmd_on + 29) / 30;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
48

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49
50
  	if (cmd_on == 0)
  		cmd_on = 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
51
52
  	if (cmd_off == 0)
  		cmd_off = 1;
c9ef59ff0   Bartlomiej Zolnierkiewicz   ide: IORDY handli...
53
  	if (ide_pio_need_iordy(drive, pio))
2229833c1   Bartlomiej Zolnierkiewicz   ide: add ide_dev_...
54
55
56
  		iordy = 0x40;
  
  	return (cmd_on - 1) << 8 | (cmd_off - 1) | iordy;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
57
58
59
  }
  
  /*
e93df705a   Sergei Shtylyov   sl82c105: rework ...
60
   * Configure the chipset for PIO mode.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
61
   */
e085b3cae   Bartlomiej Zolnierkiewicz   ide: change ->set...
62
  static void sl82c105_set_pio_mode(ide_hwif_t *hwif, ide_drive_t *drive)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
63
  {
e085b3cae   Bartlomiej Zolnierkiewicz   ide: change ->set...
64
  	struct pci_dev *dev	= to_pci_dev(hwif->dev);
5bfb151f1   Joao Ramos   ide: do not acces...
65
  	unsigned long timings	= (unsigned long)ide_get_drivedata(drive);
e93df705a   Sergei Shtylyov   sl82c105: rework ...
66
  	int reg			= 0x44 + drive->dn * 4;
e93df705a   Sergei Shtylyov   sl82c105: rework ...
67
  	u16 drv_ctrl;
e085b3cae   Bartlomiej Zolnierkiewicz   ide: change ->set...
68
  	const u8 pio		= drive->pio_mode - XFER_PIO_0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
69

7dd00083b   Bartlomiej Zolnierkiewicz   ide: add ide_pio_...
70
  	drv_ctrl = get_pio_timings(drive, pio);
46cedc9b7   Sergei Shtylyov   sl82c105: add spe...
71
72
73
74
75
  
  	/*
  	 * Store the PIO timings so that we can restore them
  	 * in case DMA will be turned off...
  	 */
5bfb151f1   Joao Ramos   ide: do not acces...
76
77
78
  	timings &= 0xffff0000;
  	timings |= drv_ctrl;
  	ide_set_drivedata(drive, (void *)timings);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
79

6ae8b1efc   Bartlomiej Zolnierkiewicz   sl82c105: program...
80
81
  	pci_write_config_word(dev, reg,  drv_ctrl);
  	pci_read_config_word (dev, reg, &drv_ctrl);
e93df705a   Sergei Shtylyov   sl82c105: rework ...
82
83
84
  
  	printk(KERN_DEBUG "%s: selected %s (%dns) (%04X)
  ", drive->name,
7dd00083b   Bartlomiej Zolnierkiewicz   ide: add ide_pio_...
85
86
  			  ide_xfer_verbose(pio + XFER_PIO_0),
  			  ide_pio_cycle_time(drive, pio), drv_ctrl);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
87
88
89
  }
  
  /*
88b2b32ba   Bartlomiej Zolnierkiewicz   ide: move ide_con...
90
   * Configure the chipset for DMA mode.
46cedc9b7   Sergei Shtylyov   sl82c105: add spe...
91
   */
8776168ca   Bartlomiej Zolnierkiewicz   ide: change ->set...
92
  static void sl82c105_set_dma_mode(ide_hwif_t *hwif, ide_drive_t *drive)
46cedc9b7   Sergei Shtylyov   sl82c105: add spe...
93
94
  {
  	static u16 mwdma_timings[] = {0x0707, 0x0201, 0x0200};
5bfb151f1   Joao Ramos   ide: do not acces...
95
  	unsigned long timings = (unsigned long)ide_get_drivedata(drive);
46cedc9b7   Sergei Shtylyov   sl82c105: add spe...
96
  	u16 drv_ctrl;
8776168ca   Bartlomiej Zolnierkiewicz   ide: change ->set...
97
  	const u8 speed = drive->dma_mode;
46cedc9b7   Sergei Shtylyov   sl82c105: add spe...
98

4db90a145   Bartlomiej Zolnierkiewicz   ide: add IDE_HFLA...
99
  	drv_ctrl = mwdma_timings[speed - XFER_MW_DMA_0];
46cedc9b7   Sergei Shtylyov   sl82c105: add spe...
100

4db90a145   Bartlomiej Zolnierkiewicz   ide: add IDE_HFLA...
101
102
103
104
  	/*
  	 * Store the DMA timings so that we can actually program
  	 * them when DMA will be turned on...
  	 */
5bfb151f1   Joao Ramos   ide: do not acces...
105
106
107
  	timings &= 0x0000ffff;
  	timings |= (unsigned long)drv_ctrl << 16;
  	ide_set_drivedata(drive, (void *)timings);
46cedc9b7   Sergei Shtylyov   sl82c105: add spe...
108
  }
3779f818a   Sergei Shtylyov   sl82c105: impleme...
109
110
111
112
113
114
115
116
117
  static int sl82c105_test_irq(ide_hwif_t *hwif)
  {
  	struct pci_dev *dev	= to_pci_dev(hwif->dev);
  	u32 val, mask		= hwif->channel ? CTRL_IDE_IRQB : CTRL_IDE_IRQA;
  
  	pci_read_config_dword(dev, 0x40, &val);
  
  	return (val & mask) ? 1 : 0;
  }
46cedc9b7   Sergei Shtylyov   sl82c105: add spe...
118
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
   * The SL82C105 holds off all IDE interrupts while in DMA mode until
   * all DMA activity is completed.  Sometimes this causes problems (eg,
   * when the drive wants to report an error condition).
   *
   * 0x7e is a "chip testing" register.  Bit 2 resets the DMA controller
   * state machine.  We need to kick this to work around various bugs.
   */
  static inline void sl82c105_reset_host(struct pci_dev *dev)
  {
  	u16 val;
  
  	pci_read_config_word(dev, 0x7e, &val);
  	pci_write_config_word(dev, 0x7e, val | (1 << 2));
  	pci_write_config_word(dev, 0x7e, val & ~(1 << 2));
  }
  
  /*
   * If we get an IRQ timeout, it might be that the DMA state machine
   * got confused.  Fix from Todd Inglett.  Details from Winbond.
   *
   * This function is called when the IDE timer expires, the drive
   * indicates that it is READY, and we were waiting for DMA to complete.
   */
841d2a9bf   Sergei Shtylyov   ide: make void an...
142
  static void sl82c105_dma_lost_irq(ide_drive_t *drive)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
143
  {
898ec223f   Bartlomiej Zolnierkiewicz   ide: remove HWIF(...
144
  	ide_hwif_t *hwif	= drive->hwif;
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
145
  	struct pci_dev *dev	= to_pci_dev(hwif->dev);
688a87d14   Sergei Shtylyov   sl82c105: DMA sup...
146
147
  	u32 val, mask		= hwif->channel ? CTRL_IDE_IRQB : CTRL_IDE_IRQA;
  	u8 dma_cmd;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
148

75c2d7d71   Sergei Shtylyov   sl82c105: add pri...
149
150
  	printk(KERN_WARNING "sl82c105: lost IRQ, resetting host
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
151
152
153
154
155
156
  
  	/*
  	 * Check the raw interrupt from the drive.
  	 */
  	pci_read_config_dword(dev, 0x40, &val);
  	if (val & mask)
75c2d7d71   Sergei Shtylyov   sl82c105: add pri...
157
158
159
  		printk(KERN_INFO "sl82c105: drive was requesting IRQ, "
  		       "but host lost it
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
160
161
162
163
164
  
  	/*
  	 * Was DMA enabled?  If so, disable it - we're resetting the
  	 * host.  The IDE layer will be handling the drive for us.
  	 */
cab7f8eda   Bartlomiej Zolnierkiewicz   ide: remove ->dma...
165
  	dma_cmd = inb(hwif->dma_base + ATA_DMA_CMD);
688a87d14   Sergei Shtylyov   sl82c105: DMA sup...
166
  	if (dma_cmd & 1) {
cab7f8eda   Bartlomiej Zolnierkiewicz   ide: remove ->dma...
167
  		outb(dma_cmd & ~1, hwif->dma_base + ATA_DMA_CMD);
75c2d7d71   Sergei Shtylyov   sl82c105: add pri...
168
169
  		printk(KERN_INFO "sl82c105: DMA was enabled
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
170
171
172
  	}
  
  	sl82c105_reset_host(dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
173
174
175
176
177
178
179
180
181
182
  }
  
  /*
   * ATAPI devices can cause the SL82C105 DMA state machine to go gaga.
   * Winbond recommend that the DMA state machine is reset prior to
   * setting the bus master DMA enable bit.
   *
   * The generic IDE core will have disabled the BMEN bit before this
   * function is called.
   */
688a87d14   Sergei Shtylyov   sl82c105: DMA sup...
183
  static void sl82c105_dma_start(ide_drive_t *drive)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
184
  {
898ec223f   Bartlomiej Zolnierkiewicz   ide: remove HWIF(...
185
  	ide_hwif_t *hwif	= drive->hwif;
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
186
  	struct pci_dev *dev	= to_pci_dev(hwif->dev);
6ae8b1efc   Bartlomiej Zolnierkiewicz   sl82c105: program...
187
  	int reg 		= 0x44 + drive->dn * 4;
5bfb151f1   Joao Ramos   ide: do not acces...
188
189
  	pci_write_config_word(dev, reg,
  			      (unsigned long)ide_get_drivedata(drive) >> 16);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
190
191
192
193
  
  	sl82c105_reset_host(dev);
  	ide_dma_start(drive);
  }
35c9b4daf   Bartlomiej Zolnierkiewicz   ide: add ->dma_cl...
194
  static void sl82c105_dma_clear(ide_drive_t *drive)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
195
  {
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
196
  	struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
197
  	sl82c105_reset_host(dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
198
  }
6ae8b1efc   Bartlomiej Zolnierkiewicz   sl82c105: program...
199
  static int sl82c105_dma_end(ide_drive_t *drive)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
200
  {
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
201
  	struct pci_dev *dev	= to_pci_dev(drive->hwif->dev);
e93df705a   Sergei Shtylyov   sl82c105: rework ...
202
  	int reg 		= 0x44 + drive->dn * 4;
f9288e152   Bartlomiej Zolnierkiewicz   sl82c105: remove ...
203
  	int ret			= ide_dma_end(drive);
7469aaf6a   Bartlomiej Zolnierkiewicz   ide: make ide_hwi...
204

5bfb151f1   Joao Ramos   ide: do not acces...
205
206
  	pci_write_config_word(dev, reg,
  			      (unsigned long)ide_get_drivedata(drive));
e93df705a   Sergei Shtylyov   sl82c105: rework ...
207

6ae8b1efc   Bartlomiej Zolnierkiewicz   sl82c105: program...
208
  	return ret;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
209
210
211
  }
  
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
212
   * ATA reset will clear the 16 bits mode in the control
08590556d   Bartlomiej Zolnierkiewicz   sl82c105: remove ...
213
   * register, we need to reprogram it
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
214
215
216
   */
  static void sl82c105_resetproc(ide_drive_t *drive)
  {
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
217
  	struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
218
  	u32 val;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
219
  	pci_read_config_dword(dev, 0x40, &val);
08590556d   Bartlomiej Zolnierkiewicz   sl82c105: remove ...
220
221
  	val |= (CTRL_P1F16 | CTRL_P0F16);
  	pci_write_config_dword(dev, 0x40, val);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
222
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
223
224
225
226
227
  
  /*
   * Return the revision of the Winbond bridge
   * which this function is part of.
   */
6c6106416   Bartlomiej Zolnierkiewicz   sl82c105: check b...
228
  static u8 sl82c105_bridge_revision(struct pci_dev *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
229
230
  {
  	struct pci_dev *bridge;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
231
232
233
234
  
  	/*
  	 * The bridge should be part of the same device, but function 0.
  	 */
640b31bf1   Alan Cox   sl82c105: Switch ...
235
  	bridge = pci_get_bus_and_slot(dev->bus->number,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
236
237
238
239
240
241
242
243
244
  			       PCI_DEVFN(PCI_SLOT(dev->devfn), 0));
  	if (!bridge)
  		return -1;
  
  	/*
  	 * Make sure it is a Winbond 553 and is an ISA bridge.
  	 */
  	if (bridge->vendor != PCI_VENDOR_ID_WINBOND ||
  	    bridge->device != PCI_DEVICE_ID_WINBOND_83C553 ||
640b31bf1   Alan Cox   sl82c105: Switch ...
245
246
  	    bridge->class >> 8 != PCI_CLASS_BRIDGE_ISA) {
  	    	pci_dev_put(bridge);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
247
  		return -1;
640b31bf1   Alan Cox   sl82c105: Switch ...
248
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
249
250
251
  	/*
  	 * We need to find function 0's revision, not function 1
  	 */
640b31bf1   Alan Cox   sl82c105: Switch ...
252
  	pci_dev_put(bridge);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
253

44c10138f   Auke Kok   PCI: Change all d...
254
  	return bridge->revision;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
255
256
257
258
259
260
261
262
263
264
  }
  
  /*
   * Enable the PCI device
   * 
   * --BenH: It's arch fixup code that should enable channels that
   * have not been enabled by firmware. I decided we can still enable
   * channel 0 here at least, but channel 1 has to be enabled by
   * firmware or arch code. We still set both to 16 bits mode.
   */
2ed0ef543   Bartlomiej Zolnierkiewicz   ide: fix ->init_c...
265
  static int init_chipset_sl82c105(struct pci_dev *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
266
267
  {
  	u32 val;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
268
269
270
  	pci_read_config_dword(dev, 0x40, &val);
  	val |= CTRL_P0EN | CTRL_P0F16 | CTRL_P1F16;
  	pci_write_config_dword(dev, 0x40, val);
2ed0ef543   Bartlomiej Zolnierkiewicz   ide: fix ->init_c...
271
  	return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
272
  }
ac95beedf   Bartlomiej Zolnierkiewicz   ide: add struct i...
273
274
275
276
  static const struct ide_port_ops sl82c105_port_ops = {
  	.set_pio_mode		= sl82c105_set_pio_mode,
  	.set_dma_mode		= sl82c105_set_dma_mode,
  	.resetproc		= sl82c105_resetproc,
3779f818a   Sergei Shtylyov   sl82c105: impleme...
277
  	.test_irq		= sl82c105_test_irq,
ac95beedf   Bartlomiej Zolnierkiewicz   ide: add struct i...
278
  };
f37afdaca   Bartlomiej Zolnierkiewicz   ide: constify str...
279
280
281
  static const struct ide_dma_ops sl82c105_dma_ops = {
  	.dma_host_set		= ide_dma_host_set,
  	.dma_setup		= ide_dma_setup,
5e37bdc08   Bartlomiej Zolnierkiewicz   ide: add struct i...
282
283
  	.dma_start		= sl82c105_dma_start,
  	.dma_end		= sl82c105_dma_end,
f37afdaca   Bartlomiej Zolnierkiewicz   ide: constify str...
284
  	.dma_test_irq		= ide_dma_test_irq,
5e37bdc08   Bartlomiej Zolnierkiewicz   ide: add struct i...
285
  	.dma_lost_irq		= sl82c105_dma_lost_irq,
22117d6ea   Bartlomiej Zolnierkiewicz   ide: add ->dma_ti...
286
  	.dma_timer_expiry	= ide_dma_sff_timer_expiry,
35c9b4daf   Bartlomiej Zolnierkiewicz   ide: add ->dma_cl...
287
  	.dma_clear		= sl82c105_dma_clear,
592b53152   Sergei Shtylyov   ide: move read_sf...
288
  	.dma_sff_read_status	= ide_dma_sff_read_status,
5e37bdc08   Bartlomiej Zolnierkiewicz   ide: add struct i...
289
  };
856204360   Bartlomiej Zolnierkiewicz   ide: constify str...
290
  static const struct ide_port_info sl82c105_chipset __devinitdata = {
ced3ec8aa   Bartlomiej Zolnierkiewicz   ide: prefix messa...
291
  	.name		= DRV_NAME,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
292
  	.init_chipset	= init_chipset_sl82c105,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
293
  	.enablebits	= {{0x40,0x01,0x01}, {0x40,0x10,0x10}},
ac95beedf   Bartlomiej Zolnierkiewicz   ide: add struct i...
294
  	.port_ops	= &sl82c105_port_ops,
5e37bdc08   Bartlomiej Zolnierkiewicz   ide: add struct i...
295
  	.dma_ops	= &sl82c105_dma_ops,
caea7602f   Bartlomiej Zolnierkiewicz   ide: add IDE_HFLA...
296
297
  	.host_flags	= IDE_HFLAG_IO_32BIT |
  			  IDE_HFLAG_UNMASK_IRQS |
1fd189059   Bartlomiej Zolnierkiewicz   ide: add IDE_HFLA...
298
  			  IDE_HFLAG_SERIALIZE_DMA |
5e71d9c5a   Bartlomiej Zolnierkiewicz   ide: IDE_HFLAG_BO...
299
  			  IDE_HFLAG_NO_AUTODMA,
4099d1432   Bartlomiej Zolnierkiewicz   ide: add PIO masks
300
  	.pio_mask	= ATA_PIO5,
6c6106416   Bartlomiej Zolnierkiewicz   sl82c105: check b...
301
  	.mwdma_mask	= ATA_MWDMA2,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
302
303
304
305
  };
  
  static int __devinit sl82c105_init_one(struct pci_dev *dev, const struct pci_device_id *id)
  {
6c6106416   Bartlomiej Zolnierkiewicz   sl82c105: check b...
306
307
308
309
310
311
312
313
  	struct ide_port_info d = sl82c105_chipset;
  	u8 rev = sl82c105_bridge_revision(dev);
  
  	if (rev <= 5) {
  		/*
  		 * Never ever EVER under any circumstances enable
  		 * DMA when the bridge is this old.
  		 */
ced3ec8aa   Bartlomiej Zolnierkiewicz   ide: prefix messa...
314
  		printk(KERN_INFO DRV_NAME ": Winbond W83C553 bridge "
6c6106416   Bartlomiej Zolnierkiewicz   sl82c105: check b...
315
316
  				 "revision %d, BM-DMA disabled
  ", rev);
5e37bdc08   Bartlomiej Zolnierkiewicz   ide: add struct i...
317
  		d.dma_ops = NULL;
6c6106416   Bartlomiej Zolnierkiewicz   sl82c105: check b...
318
  		d.mwdma_mask = 0;
1fd189059   Bartlomiej Zolnierkiewicz   ide: add IDE_HFLA...
319
  		d.host_flags &= ~IDE_HFLAG_SERIALIZE_DMA;
6c6106416   Bartlomiej Zolnierkiewicz   sl82c105: check b...
320
  	}
6cdf6eb35   Bartlomiej Zolnierkiewicz   ide: add ->dev an...
321
  	return ide_pci_init_one(dev, &d, NULL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
322
  }
9cbcc5e3c   Bartlomiej Zolnierkiewicz   ide: use PCI_VDEV...
323
324
  static const struct pci_device_id sl82c105_pci_tbl[] = {
  	{ PCI_VDEVICE(WINBOND, PCI_DEVICE_ID_WINBOND_82C105), 0 },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
325
326
327
  	{ 0, },
  };
  MODULE_DEVICE_TABLE(pci, sl82c105_pci_tbl);
a9ab09e26   Bartlomiej Zolnierkiewicz   ide: use unique n...
328
  static struct pci_driver sl82c105_pci_driver = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
329
330
331
  	.name		= "W82C105_IDE",
  	.id_table	= sl82c105_pci_tbl,
  	.probe		= sl82c105_init_one,
6ce719989   Bartlomiej Zolnierkiewicz   sl82c105: add ->r...
332
  	.remove		= ide_pci_remove,
feb22b7f8   Bartlomiej Zolnierkiewicz   ide: add proper P...
333
334
  	.suspend	= ide_pci_suspend,
  	.resume		= ide_pci_resume,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
335
  };
82ab1eece   Bartlomiej Zolnierkiewicz   ide: add missing ...
336
  static int __init sl82c105_ide_init(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
337
  {
a9ab09e26   Bartlomiej Zolnierkiewicz   ide: use unique n...
338
  	return ide_pci_register_driver(&sl82c105_pci_driver);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
339
  }
6ce719989   Bartlomiej Zolnierkiewicz   sl82c105: add ->r...
340
341
  static void __exit sl82c105_ide_exit(void)
  {
a9ab09e26   Bartlomiej Zolnierkiewicz   ide: use unique n...
342
  	pci_unregister_driver(&sl82c105_pci_driver);
6ce719989   Bartlomiej Zolnierkiewicz   sl82c105: add ->r...
343
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
344
  module_init(sl82c105_ide_init);
6ce719989   Bartlomiej Zolnierkiewicz   sl82c105: add ->r...
345
  module_exit(sl82c105_ide_exit);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
346
347
348
  
  MODULE_DESCRIPTION("PCI driver module for W82C105 IDE");
  MODULE_LICENSE("GPL");