• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/ata/
1/*
2 * pata_pdc202xx_old.c 	- Promise PDC202xx PATA for new ATA layer
3 *			  (C) 2005 Red Hat Inc
4 *			  Alan Cox <alan@lxorguk.ukuu.org.uk>
5 *			  (C) 2007,2009,2010 Bartlomiej Zolnierkiewicz
6 *
7 * Based in part on linux/drivers/ide/pci/pdc202xx_old.c
8 *
9 * First cut with LBA48/ATAPI
10 *
11 * TODO:
12 *	Channel interlock/reset on both required ?
13 */
14
15#include <linux/kernel.h>
16#include <linux/module.h>
17#include <linux/pci.h>
18#include <linux/init.h>
19#include <linux/blkdev.h>
20#include <linux/delay.h>
21#include <scsi/scsi_host.h>
22#include <linux/libata.h>
23
24#define DRV_NAME "pata_pdc202xx_old"
25#define DRV_VERSION "0.4.3"
26
27static int pdc2026x_cable_detect(struct ata_port *ap)
28{
29	struct pci_dev *pdev = to_pci_dev(ap->host->dev);
30	u16 cis;
31
32	pci_read_config_word(pdev, 0x50, &cis);
33	if (cis & (1 << (10 + ap->port_no)))
34		return ATA_CBL_PATA40;
35	return ATA_CBL_PATA80;
36}
37
38static void pdc202xx_exec_command(struct ata_port *ap,
39				  const struct ata_taskfile *tf)
40{
41	DPRINTK("ata%u: cmd 0x%X\n", ap->print_id, tf->command);
42
43	iowrite8(tf->command, ap->ioaddr.command_addr);
44	ndelay(400);
45}
46
47/**
48 *	pdc202xx_configure_piomode	-	set chip PIO timing
49 *	@ap: ATA interface
50 *	@adev: ATA device
51 *	@pio: PIO mode
52 *
53 *	Called to do the PIO mode setup. Our timing registers are shared
54 *	so a configure_dmamode call will undo any work we do here and vice
55 *	versa
56 */
57
58static void pdc202xx_configure_piomode(struct ata_port *ap, struct ata_device *adev, int pio)
59{
60	struct pci_dev *pdev = to_pci_dev(ap->host->dev);
61	int port = 0x60 + 8 * ap->port_no + 4 * adev->devno;
62	static u16 pio_timing[5] = {
63		0x0913, 0x050C , 0x0308, 0x0206, 0x0104
64	};
65	u8 r_ap, r_bp;
66
67	pci_read_config_byte(pdev, port, &r_ap);
68	pci_read_config_byte(pdev, port + 1, &r_bp);
69	r_ap &= ~0x3F;	/* Preserve ERRDY_EN, SYNC_IN */
70	r_bp &= ~0x1F;
71	r_ap |= (pio_timing[pio] >> 8);
72	r_bp |= (pio_timing[pio] & 0xFF);
73
74	if (ata_pio_need_iordy(adev))
75		r_ap |= 0x20;	/* IORDY enable */
76	if (adev->class == ATA_DEV_ATA)
77		r_ap |= 0x10;	/* FIFO enable */
78	pci_write_config_byte(pdev, port, r_ap);
79	pci_write_config_byte(pdev, port + 1, r_bp);
80}
81
82/**
83 *	pdc202xx_set_piomode	-	set initial PIO mode data
84 *	@ap: ATA interface
85 *	@adev: ATA device
86 *
87 *	Called to do the PIO mode setup. Our timing registers are shared
88 *	but we want to set the PIO timing by default.
89 */
90
91static void pdc202xx_set_piomode(struct ata_port *ap, struct ata_device *adev)
92{
93	pdc202xx_configure_piomode(ap, adev, adev->pio_mode - XFER_PIO_0);
94}
95
96/**
97 *	pdc202xx_configure_dmamode	-	set DMA mode in chip
98 *	@ap: ATA interface
99 *	@adev: ATA device
100 *
101 *	Load DMA cycle times into the chip ready for a DMA transfer
102 *	to occur.
103 */
104
105static void pdc202xx_set_dmamode(struct ata_port *ap, struct ata_device *adev)
106{
107	struct pci_dev *pdev = to_pci_dev(ap->host->dev);
108	int port = 0x60 + 8 * ap->port_no + 4 * adev->devno;
109	static u8 udma_timing[6][2] = {
110		{ 0x60, 0x03 },	/* 33 Mhz Clock */
111		{ 0x40, 0x02 },
112		{ 0x20, 0x01 },
113		{ 0x40, 0x02 },	/* 66 Mhz Clock */
114		{ 0x20, 0x01 },
115		{ 0x20, 0x01 }
116	};
117	static u8 mdma_timing[3][2] = {
118		{ 0xe0, 0x0f },
119		{ 0x60, 0x04 },
120		{ 0x60, 0x03 },
121	};
122	u8 r_bp, r_cp;
123
124	pci_read_config_byte(pdev, port + 1, &r_bp);
125	pci_read_config_byte(pdev, port + 2, &r_cp);
126
127	r_bp &= ~0xE0;
128	r_cp &= ~0x0F;
129
130	if (adev->dma_mode >= XFER_UDMA_0) {
131		int speed = adev->dma_mode - XFER_UDMA_0;
132		r_bp |= udma_timing[speed][0];
133		r_cp |= udma_timing[speed][1];
134
135	} else {
136		int speed = adev->dma_mode - XFER_MW_DMA_0;
137		r_bp |= mdma_timing[speed][0];
138		r_cp |= mdma_timing[speed][1];
139	}
140	pci_write_config_byte(pdev, port + 1, r_bp);
141	pci_write_config_byte(pdev, port + 2, r_cp);
142
143}
144
145/**
146 *	pdc2026x_bmdma_start		-	DMA engine begin
147 *	@qc: ATA command
148 *
149 *	In UDMA3 or higher we have to clock switch for the duration of the
150 *	DMA transfer sequence.
151 *
152 *	Note: The host lock held by the libata layer protects
153 *	us from two channels both trying to set DMA bits at once
154 */
155
156static void pdc2026x_bmdma_start(struct ata_queued_cmd *qc)
157{
158	struct ata_port *ap = qc->ap;
159	struct ata_device *adev = qc->dev;
160	struct ata_taskfile *tf = &qc->tf;
161	int sel66 = ap->port_no ? 0x08: 0x02;
162
163	void __iomem *master = ap->host->ports[0]->ioaddr.bmdma_addr;
164	void __iomem *clock = master + 0x11;
165	void __iomem *atapi_reg = master + 0x20 + (4 * ap->port_no);
166
167	u32 len;
168
169	/* Check we keep host level locking here */
170	if (adev->dma_mode > XFER_UDMA_2)
171		iowrite8(ioread8(clock) | sel66, clock);
172	else
173		iowrite8(ioread8(clock) & ~sel66, clock);
174
175	pdc202xx_set_dmamode(ap, qc->dev);
176
177	/* Cases the state machine will not complete correctly without help */
178	if ((tf->flags & ATA_TFLAG_LBA48) ||  tf->protocol == ATAPI_PROT_DMA) {
179		len = qc->nbytes / 2;
180
181		if (tf->flags & ATA_TFLAG_WRITE)
182			len |= 0x06000000;
183		else
184			len |= 0x05000000;
185
186		iowrite32(len, atapi_reg);
187	}
188
189	/* Activate DMA */
190	ata_bmdma_start(qc);
191}
192
193/**
194 *	pdc2026x_bmdma_end		-	DMA engine stop
195 *	@qc: ATA command
196 *
197 *	After a DMA completes we need to put the clock back to 33MHz for
198 *	PIO timings.
199 *
200 *	Note: The host lock held by the libata layer protects
201 *	us from two channels both trying to set DMA bits at once
202 */
203
204static void pdc2026x_bmdma_stop(struct ata_queued_cmd *qc)
205{
206	struct ata_port *ap = qc->ap;
207	struct ata_device *adev = qc->dev;
208	struct ata_taskfile *tf = &qc->tf;
209
210	int sel66 = ap->port_no ? 0x08: 0x02;
211	/* The clock bits are in the same register for both channels */
212	void __iomem *master = ap->host->ports[0]->ioaddr.bmdma_addr;
213	void __iomem *clock = master + 0x11;
214	void __iomem *atapi_reg = master + 0x20 + (4 * ap->port_no);
215
216	/* Cases the state machine will not complete correctly */
217	if (tf->protocol == ATAPI_PROT_DMA || (tf->flags & ATA_TFLAG_LBA48)) {
218		iowrite32(0, atapi_reg);
219		iowrite8(ioread8(clock) & ~sel66, clock);
220	}
221	/* Flip back to 33Mhz for PIO */
222	if (adev->dma_mode > XFER_UDMA_2)
223		iowrite8(ioread8(clock) & ~sel66, clock);
224	ata_bmdma_stop(qc);
225	pdc202xx_set_piomode(ap, adev);
226}
227
228/**
229 *	pdc2026x_dev_config	-	device setup hook
230 *	@adev: newly found device
231 *
232 *	Perform chip specific early setup. We need to lock the transfer
233 *	sizes to 8bit to avoid making the state engine on the 2026x cards
234 *	barf.
235 */
236
237static void pdc2026x_dev_config(struct ata_device *adev)
238{
239	adev->max_sectors = 256;
240}
241
242static int pdc2026x_port_start(struct ata_port *ap)
243{
244	void __iomem *bmdma = ap->ioaddr.bmdma_addr;
245	if (bmdma) {
246		/* Enable burst mode */
247		u8 burst = ioread8(bmdma + 0x1f);
248		iowrite8(burst | 0x01, bmdma + 0x1f);
249	}
250	return ata_bmdma_port_start(ap);
251}
252
253/**
254 *	pdc2026x_check_atapi_dma - Check whether ATAPI DMA can be supported for this command
255 *	@qc: Metadata associated with taskfile to check
256 *
257 *	Just say no - not supported on older Promise.
258 *
259 *	LOCKING:
260 *	None (inherited from caller).
261 *
262 *	RETURNS: 0 when ATAPI DMA can be used
263 *		 1 otherwise
264 */
265
266static int pdc2026x_check_atapi_dma(struct ata_queued_cmd *qc)
267{
268	return 1;
269}
270
271static struct scsi_host_template pdc202xx_sht = {
272	ATA_BMDMA_SHT(DRV_NAME),
273};
274
275static struct ata_port_operations pdc2024x_port_ops = {
276	.inherits		= &ata_bmdma_port_ops,
277
278	.cable_detect		= ata_cable_40wire,
279	.set_piomode		= pdc202xx_set_piomode,
280	.set_dmamode		= pdc202xx_set_dmamode,
281
282	.sff_exec_command	= pdc202xx_exec_command,
283};
284
285static struct ata_port_operations pdc2026x_port_ops = {
286	.inherits		= &pdc2024x_port_ops,
287
288	.check_atapi_dma	= pdc2026x_check_atapi_dma,
289	.bmdma_start		= pdc2026x_bmdma_start,
290	.bmdma_stop		= pdc2026x_bmdma_stop,
291
292	.cable_detect		= pdc2026x_cable_detect,
293	.dev_config		= pdc2026x_dev_config,
294
295	.port_start		= pdc2026x_port_start,
296
297	.sff_exec_command	= pdc202xx_exec_command,
298};
299
300static int pdc202xx_init_one(struct pci_dev *dev, const struct pci_device_id *id)
301{
302	static const struct ata_port_info info[3] = {
303		{
304			.flags = ATA_FLAG_SLAVE_POSS,
305			.pio_mask = ATA_PIO4,
306			.mwdma_mask = ATA_MWDMA2,
307			.udma_mask = ATA_UDMA2,
308			.port_ops = &pdc2024x_port_ops
309		},
310		{
311			.flags = ATA_FLAG_SLAVE_POSS,
312			.pio_mask = ATA_PIO4,
313			.mwdma_mask = ATA_MWDMA2,
314			.udma_mask = ATA_UDMA4,
315			.port_ops = &pdc2026x_port_ops
316		},
317		{
318			.flags = ATA_FLAG_SLAVE_POSS,
319			.pio_mask = ATA_PIO4,
320			.mwdma_mask = ATA_MWDMA2,
321			.udma_mask = ATA_UDMA5,
322			.port_ops = &pdc2026x_port_ops
323		}
324
325	};
326	const struct ata_port_info *ppi[] = { &info[id->driver_data], NULL };
327
328	if (dev->device == PCI_DEVICE_ID_PROMISE_20265) {
329		struct pci_dev *bridge = dev->bus->self;
330		/* Don't grab anything behind a Promise I2O RAID */
331		if (bridge && bridge->vendor == PCI_VENDOR_ID_INTEL) {
332			if (bridge->device == PCI_DEVICE_ID_INTEL_I960)
333				return -ENODEV;
334			if (bridge->device == PCI_DEVICE_ID_INTEL_I960RM)
335				return -ENODEV;
336		}
337	}
338	return ata_pci_bmdma_init_one(dev, ppi, &pdc202xx_sht, NULL, 0);
339}
340
341static const struct pci_device_id pdc202xx[] = {
342	{ PCI_VDEVICE(PROMISE, PCI_DEVICE_ID_PROMISE_20246), 0 },
343	{ PCI_VDEVICE(PROMISE, PCI_DEVICE_ID_PROMISE_20262), 1 },
344	{ PCI_VDEVICE(PROMISE, PCI_DEVICE_ID_PROMISE_20263), 1 },
345	{ PCI_VDEVICE(PROMISE, PCI_DEVICE_ID_PROMISE_20265), 2 },
346	{ PCI_VDEVICE(PROMISE, PCI_DEVICE_ID_PROMISE_20267), 2 },
347
348	{ },
349};
350
351static struct pci_driver pdc202xx_pci_driver = {
352	.name 		= DRV_NAME,
353	.id_table	= pdc202xx,
354	.probe 		= pdc202xx_init_one,
355	.remove		= ata_pci_remove_one,
356#ifdef CONFIG_PM
357	.suspend	= ata_pci_device_suspend,
358	.resume		= ata_pci_device_resume,
359#endif
360};
361
362static int __init pdc202xx_init(void)
363{
364	return pci_register_driver(&pdc202xx_pci_driver);
365}
366
367static void __exit pdc202xx_exit(void)
368{
369	pci_unregister_driver(&pdc202xx_pci_driver);
370}
371
372MODULE_AUTHOR("Alan Cox");
373MODULE_DESCRIPTION("low-level driver for Promise 2024x and 20262-20267");
374MODULE_LICENSE("GPL");
375MODULE_DEVICE_TABLE(pci, pdc202xx);
376MODULE_VERSION(DRV_VERSION);
377
378module_init(pdc202xx_init);
379module_exit(pdc202xx_exit);
380