Linux Audio

Check our new training course

Loading...
v3.1
 
  1/*
  2 *  sata_sil.c - Silicon Image SATA
  3 *
  4 *  Maintained by:  Jeff Garzik <jgarzik@pobox.com>
  5 *  		    Please ALWAYS copy linux-ide@vger.kernel.org
  6 *		    on emails.
  7 *
  8 *  Copyright 2003-2005 Red Hat, Inc.
  9 *  Copyright 2003 Benjamin Herrenschmidt
 10 *
 11 *
 12 *  This program is free software; you can redistribute it and/or modify
 13 *  it under the terms of the GNU General Public License as published by
 14 *  the Free Software Foundation; either version 2, or (at your option)
 15 *  any later version.
 16 *
 17 *  This program is distributed in the hope that it will be useful,
 18 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 19 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 20 *  GNU General Public License for more details.
 21 *
 22 *  You should have received a copy of the GNU General Public License
 23 *  along with this program; see the file COPYING.  If not, write to
 24 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 25 *
 26 *
 27 *  libata documentation is available via 'make {ps|pdf}docs',
 28 *  as Documentation/DocBook/libata.*
 29 *
 30 *  Documentation for SiI 3112:
 31 *  http://gkernel.sourceforge.net/specs/sii/3112A_SiI-DS-0095-B2.pdf.bz2
 32 *
 33 *  Other errata and documentation available under NDA.
 34 *
 35 */
 36
 37#include <linux/kernel.h>
 38#include <linux/module.h>
 39#include <linux/pci.h>
 40#include <linux/init.h>
 41#include <linux/blkdev.h>
 42#include <linux/delay.h>
 43#include <linux/interrupt.h>
 44#include <linux/device.h>
 45#include <scsi/scsi_host.h>
 46#include <linux/libata.h>
 47#include <linux/dmi.h>
 48
 49#define DRV_NAME	"sata_sil"
 50#define DRV_VERSION	"2.4"
 51
 52#define SIL_DMA_BOUNDARY	0x7fffffffUL
 53
 54enum {
 55	SIL_MMIO_BAR		= 5,
 56
 57	/*
 58	 * host flags
 59	 */
 60	SIL_FLAG_NO_SATA_IRQ	= (1 << 28),
 61	SIL_FLAG_RERR_ON_DMA_ACT = (1 << 29),
 62	SIL_FLAG_MOD15WRITE	= (1 << 30),
 63
 64	SIL_DFL_PORT_FLAGS	= ATA_FLAG_SATA,
 65
 66	/*
 67	 * Controller IDs
 68	 */
 69	sil_3112		= 0,
 70	sil_3112_no_sata_irq	= 1,
 71	sil_3512		= 2,
 72	sil_3114		= 3,
 73
 74	/*
 75	 * Register offsets
 76	 */
 77	SIL_SYSCFG		= 0x48,
 78
 79	/*
 80	 * Register bits
 81	 */
 82	/* SYSCFG */
 83	SIL_MASK_IDE0_INT	= (1 << 22),
 84	SIL_MASK_IDE1_INT	= (1 << 23),
 85	SIL_MASK_IDE2_INT	= (1 << 24),
 86	SIL_MASK_IDE3_INT	= (1 << 25),
 87	SIL_MASK_2PORT		= SIL_MASK_IDE0_INT | SIL_MASK_IDE1_INT,
 88	SIL_MASK_4PORT		= SIL_MASK_2PORT |
 89				  SIL_MASK_IDE2_INT | SIL_MASK_IDE3_INT,
 90
 91	/* BMDMA/BMDMA2 */
 92	SIL_INTR_STEERING	= (1 << 1),
 93
 94	SIL_DMA_ENABLE		= (1 << 0),  /* DMA run switch */
 95	SIL_DMA_RDWR		= (1 << 3),  /* DMA Rd-Wr */
 96	SIL_DMA_SATA_IRQ	= (1 << 4),  /* OR of all SATA IRQs */
 97	SIL_DMA_ACTIVE		= (1 << 16), /* DMA running */
 98	SIL_DMA_ERROR		= (1 << 17), /* PCI bus error */
 99	SIL_DMA_COMPLETE	= (1 << 18), /* cmd complete / IRQ pending */
100	SIL_DMA_N_SATA_IRQ	= (1 << 6),  /* SATA_IRQ for the next channel */
101	SIL_DMA_N_ACTIVE	= (1 << 24), /* ACTIVE for the next channel */
102	SIL_DMA_N_ERROR		= (1 << 25), /* ERROR for the next channel */
103	SIL_DMA_N_COMPLETE	= (1 << 26), /* COMPLETE for the next channel */
104
105	/* SIEN */
106	SIL_SIEN_N		= (1 << 16), /* triggered by SError.N */
107
108	/*
109	 * Others
110	 */
111	SIL_QUIRK_MOD15WRITE	= (1 << 0),
112	SIL_QUIRK_UDMA5MAX	= (1 << 1),
113};
114
115static int sil_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
116#ifdef CONFIG_PM
117static int sil_pci_device_resume(struct pci_dev *pdev);
118#endif
119static void sil_dev_config(struct ata_device *dev);
120static int sil_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val);
121static int sil_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val);
122static int sil_set_mode(struct ata_link *link, struct ata_device **r_failed);
123static void sil_qc_prep(struct ata_queued_cmd *qc);
124static void sil_bmdma_setup(struct ata_queued_cmd *qc);
125static void sil_bmdma_start(struct ata_queued_cmd *qc);
126static void sil_bmdma_stop(struct ata_queued_cmd *qc);
127static void sil_freeze(struct ata_port *ap);
128static void sil_thaw(struct ata_port *ap);
129
130
131static const struct pci_device_id sil_pci_tbl[] = {
132	{ PCI_VDEVICE(CMD, 0x3112), sil_3112 },
133	{ PCI_VDEVICE(CMD, 0x0240), sil_3112 },
134	{ PCI_VDEVICE(CMD, 0x3512), sil_3512 },
135	{ PCI_VDEVICE(CMD, 0x3114), sil_3114 },
136	{ PCI_VDEVICE(ATI, 0x436e), sil_3112 },
137	{ PCI_VDEVICE(ATI, 0x4379), sil_3112_no_sata_irq },
138	{ PCI_VDEVICE(ATI, 0x437a), sil_3112_no_sata_irq },
139
140	{ }	/* terminate list */
141};
142
143
144/* TODO firmware versions should be added - eric */
145static const struct sil_drivelist {
146	const char *product;
147	unsigned int quirk;
148} sil_blacklist [] = {
149	{ "ST320012AS",		SIL_QUIRK_MOD15WRITE },
150	{ "ST330013AS",		SIL_QUIRK_MOD15WRITE },
151	{ "ST340017AS",		SIL_QUIRK_MOD15WRITE },
152	{ "ST360015AS",		SIL_QUIRK_MOD15WRITE },
153	{ "ST380023AS",		SIL_QUIRK_MOD15WRITE },
154	{ "ST3120023AS",	SIL_QUIRK_MOD15WRITE },
155	{ "ST340014ASL",	SIL_QUIRK_MOD15WRITE },
156	{ "ST360014ASL",	SIL_QUIRK_MOD15WRITE },
157	{ "ST380011ASL",	SIL_QUIRK_MOD15WRITE },
158	{ "ST3120022ASL",	SIL_QUIRK_MOD15WRITE },
159	{ "ST3160021ASL",	SIL_QUIRK_MOD15WRITE },
 
160	{ "Maxtor 4D060H3",	SIL_QUIRK_UDMA5MAX },
161	{ }
162};
163
164static struct pci_driver sil_pci_driver = {
165	.name			= DRV_NAME,
166	.id_table		= sil_pci_tbl,
167	.probe			= sil_init_one,
168	.remove			= ata_pci_remove_one,
169#ifdef CONFIG_PM
170	.suspend		= ata_pci_device_suspend,
171	.resume			= sil_pci_device_resume,
172#endif
173};
174
175static struct scsi_host_template sil_sht = {
176	ATA_BASE_SHT(DRV_NAME),
177	/** These controllers support Large Block Transfer which allows
178	    transfer chunks up to 2GB and which cross 64KB boundaries,
179	    therefore the DMA limits are more relaxed than standard ATA SFF. */
180	.dma_boundary		= SIL_DMA_BOUNDARY,
181	.sg_tablesize		= ATA_MAX_PRD
182};
183
184static struct ata_port_operations sil_ops = {
185	.inherits		= &ata_bmdma32_port_ops,
186	.dev_config		= sil_dev_config,
187	.set_mode		= sil_set_mode,
188	.bmdma_setup            = sil_bmdma_setup,
189	.bmdma_start            = sil_bmdma_start,
190	.bmdma_stop		= sil_bmdma_stop,
191	.qc_prep		= sil_qc_prep,
192	.freeze			= sil_freeze,
193	.thaw			= sil_thaw,
194	.scr_read		= sil_scr_read,
195	.scr_write		= sil_scr_write,
196};
197
198static const struct ata_port_info sil_port_info[] = {
199	/* sil_3112 */
200	{
201		.flags		= SIL_DFL_PORT_FLAGS | SIL_FLAG_MOD15WRITE,
202		.pio_mask	= ATA_PIO4,
203		.mwdma_mask	= ATA_MWDMA2,
204		.udma_mask	= ATA_UDMA5,
205		.port_ops	= &sil_ops,
206	},
207	/* sil_3112_no_sata_irq */
208	{
209		.flags		= SIL_DFL_PORT_FLAGS | SIL_FLAG_MOD15WRITE |
210				  SIL_FLAG_NO_SATA_IRQ,
211		.pio_mask	= ATA_PIO4,
212		.mwdma_mask	= ATA_MWDMA2,
213		.udma_mask	= ATA_UDMA5,
214		.port_ops	= &sil_ops,
215	},
216	/* sil_3512 */
217	{
218		.flags		= SIL_DFL_PORT_FLAGS | SIL_FLAG_RERR_ON_DMA_ACT,
219		.pio_mask	= ATA_PIO4,
220		.mwdma_mask	= ATA_MWDMA2,
221		.udma_mask	= ATA_UDMA5,
222		.port_ops	= &sil_ops,
223	},
224	/* sil_3114 */
225	{
226		.flags		= SIL_DFL_PORT_FLAGS | SIL_FLAG_RERR_ON_DMA_ACT,
227		.pio_mask	= ATA_PIO4,
228		.mwdma_mask	= ATA_MWDMA2,
229		.udma_mask	= ATA_UDMA5,
230		.port_ops	= &sil_ops,
231	},
232};
233
234/* per-port register offsets */
235/* TODO: we can probably calculate rather than use a table */
236static const struct {
237	unsigned long tf;	/* ATA taskfile register block */
238	unsigned long ctl;	/* ATA control/altstatus register block */
239	unsigned long bmdma;	/* DMA register block */
240	unsigned long bmdma2;	/* DMA register block #2 */
241	unsigned long fifo_cfg;	/* FIFO Valid Byte Count and Control */
242	unsigned long scr;	/* SATA control register block */
243	unsigned long sien;	/* SATA Interrupt Enable register */
244	unsigned long xfer_mode;/* data transfer mode register */
245	unsigned long sfis_cfg;	/* SATA FIS reception config register */
246} sil_port[] = {
247	/* port 0 ... */
248	/*   tf    ctl  bmdma  bmdma2  fifo    scr   sien   mode   sfis */
249	{  0x80,  0x8A,   0x0,  0x10,  0x40, 0x100, 0x148,  0xb4, 0x14c },
250	{  0xC0,  0xCA,   0x8,  0x18,  0x44, 0x180, 0x1c8,  0xf4, 0x1cc },
251	{ 0x280, 0x28A, 0x200, 0x210, 0x240, 0x300, 0x348, 0x2b4, 0x34c },
252	{ 0x2C0, 0x2CA, 0x208, 0x218, 0x244, 0x380, 0x3c8, 0x2f4, 0x3cc },
253	/* ... port 3 */
254};
255
256MODULE_AUTHOR("Jeff Garzik");
257MODULE_DESCRIPTION("low-level driver for Silicon Image SATA controller");
258MODULE_LICENSE("GPL");
259MODULE_DEVICE_TABLE(pci, sil_pci_tbl);
260MODULE_VERSION(DRV_VERSION);
261
262static int slow_down;
263module_param(slow_down, int, 0444);
264MODULE_PARM_DESC(slow_down, "Sledgehammer used to work around random problems, by limiting commands to 15 sectors (0=off, 1=on)");
265
266
267static void sil_bmdma_stop(struct ata_queued_cmd *qc)
268{
269	struct ata_port *ap = qc->ap;
270	void __iomem *mmio_base = ap->host->iomap[SIL_MMIO_BAR];
271	void __iomem *bmdma2 = mmio_base + sil_port[ap->port_no].bmdma2;
272
273	/* clear start/stop bit - can safely always write 0 */
274	iowrite8(0, bmdma2);
275
276	/* one-PIO-cycle guaranteed wait, per spec, for HDMA1:0 transition */
277	ata_sff_dma_pause(ap);
278}
279
280static void sil_bmdma_setup(struct ata_queued_cmd *qc)
281{
282	struct ata_port *ap = qc->ap;
283	void __iomem *bmdma = ap->ioaddr.bmdma_addr;
284
285	/* load PRD table addr. */
286	iowrite32(ap->bmdma_prd_dma, bmdma + ATA_DMA_TABLE_OFS);
287
288	/* issue r/w command */
289	ap->ops->sff_exec_command(ap, &qc->tf);
290}
291
292static void sil_bmdma_start(struct ata_queued_cmd *qc)
293{
294	unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
295	struct ata_port *ap = qc->ap;
296	void __iomem *mmio_base = ap->host->iomap[SIL_MMIO_BAR];
297	void __iomem *bmdma2 = mmio_base + sil_port[ap->port_no].bmdma2;
298	u8 dmactl = ATA_DMA_START;
299
300	/* set transfer direction, start host DMA transaction
301	   Note: For Large Block Transfer to work, the DMA must be started
302	   using the bmdma2 register. */
303	if (!rw)
304		dmactl |= ATA_DMA_WR;
305	iowrite8(dmactl, bmdma2);
306}
307
308/* The way God intended PCI IDE scatter/gather lists to look and behave... */
309static void sil_fill_sg(struct ata_queued_cmd *qc)
310{
311	struct scatterlist *sg;
312	struct ata_port *ap = qc->ap;
313	struct ata_bmdma_prd *prd, *last_prd = NULL;
314	unsigned int si;
315
316	prd = &ap->bmdma_prd[0];
317	for_each_sg(qc->sg, sg, qc->n_elem, si) {
318		/* Note h/w doesn't support 64-bit, so we unconditionally
319		 * truncate dma_addr_t to u32.
320		 */
321		u32 addr = (u32) sg_dma_address(sg);
322		u32 sg_len = sg_dma_len(sg);
323
324		prd->addr = cpu_to_le32(addr);
325		prd->flags_len = cpu_to_le32(sg_len);
326		VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", si, addr, sg_len);
327
328		last_prd = prd;
329		prd++;
330	}
331
332	if (likely(last_prd))
333		last_prd->flags_len |= cpu_to_le32(ATA_PRD_EOT);
334}
335
336static void sil_qc_prep(struct ata_queued_cmd *qc)
337{
338	if (!(qc->flags & ATA_QCFLAG_DMAMAP))
339		return;
340
341	sil_fill_sg(qc);
342}
343
344static unsigned char sil_get_device_cache_line(struct pci_dev *pdev)
345{
346	u8 cache_line = 0;
347	pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &cache_line);
348	return cache_line;
349}
350
351/**
352 *	sil_set_mode		-	wrap set_mode functions
353 *	@link: link to set up
354 *	@r_failed: returned device when we fail
355 *
356 *	Wrap the libata method for device setup as after the setup we need
357 *	to inspect the results and do some configuration work
358 */
359
360static int sil_set_mode(struct ata_link *link, struct ata_device **r_failed)
361{
362	struct ata_port *ap = link->ap;
363	void __iomem *mmio_base = ap->host->iomap[SIL_MMIO_BAR];
364	void __iomem *addr = mmio_base + sil_port[ap->port_no].xfer_mode;
365	struct ata_device *dev;
366	u32 tmp, dev_mode[2] = { };
367	int rc;
368
369	rc = ata_do_set_mode(link, r_failed);
370	if (rc)
371		return rc;
372
373	ata_for_each_dev(dev, link, ALL) {
374		if (!ata_dev_enabled(dev))
375			dev_mode[dev->devno] = 0;	/* PIO0/1/2 */
376		else if (dev->flags & ATA_DFLAG_PIO)
377			dev_mode[dev->devno] = 1;	/* PIO3/4 */
378		else
379			dev_mode[dev->devno] = 3;	/* UDMA */
380		/* value 2 indicates MDMA */
381	}
382
383	tmp = readl(addr);
384	tmp &= ~((1<<5) | (1<<4) | (1<<1) | (1<<0));
385	tmp |= dev_mode[0];
386	tmp |= (dev_mode[1] << 4);
387	writel(tmp, addr);
388	readl(addr);	/* flush */
389	return 0;
390}
391
392static inline void __iomem *sil_scr_addr(struct ata_port *ap,
393					 unsigned int sc_reg)
394{
395	void __iomem *offset = ap->ioaddr.scr_addr;
396
397	switch (sc_reg) {
398	case SCR_STATUS:
399		return offset + 4;
400	case SCR_ERROR:
401		return offset + 8;
402	case SCR_CONTROL:
403		return offset;
404	default:
405		/* do nothing */
406		break;
407	}
408
409	return NULL;
410}
411
412static int sil_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val)
413{
414	void __iomem *mmio = sil_scr_addr(link->ap, sc_reg);
415
416	if (mmio) {
417		*val = readl(mmio);
418		return 0;
419	}
420	return -EINVAL;
421}
422
423static int sil_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val)
424{
425	void __iomem *mmio = sil_scr_addr(link->ap, sc_reg);
426
427	if (mmio) {
428		writel(val, mmio);
429		return 0;
430	}
431	return -EINVAL;
432}
433
434static void sil_host_intr(struct ata_port *ap, u32 bmdma2)
435{
436	struct ata_eh_info *ehi = &ap->link.eh_info;
437	struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->link.active_tag);
438	u8 status;
439
440	if (unlikely(bmdma2 & SIL_DMA_SATA_IRQ)) {
441		u32 serror = 0xffffffff;
442
443		/* SIEN doesn't mask SATA IRQs on some 3112s.  Those
444		 * controllers continue to assert IRQ as long as
445		 * SError bits are pending.  Clear SError immediately.
446		 */
447		sil_scr_read(&ap->link, SCR_ERROR, &serror);
448		sil_scr_write(&ap->link, SCR_ERROR, serror);
449
450		/* Sometimes spurious interrupts occur, double check
451		 * it's PHYRDY CHG.
452		 */
453		if (serror & SERR_PHYRDY_CHG) {
454			ap->link.eh_info.serror |= serror;
455			goto freeze;
456		}
457
458		if (!(bmdma2 & SIL_DMA_COMPLETE))
459			return;
460	}
461
462	if (unlikely(!qc || (qc->tf.flags & ATA_TFLAG_POLLING))) {
463		/* this sometimes happens, just clear IRQ */
464		ap->ops->sff_check_status(ap);
465		return;
466	}
467
468	/* Check whether we are expecting interrupt in this state */
469	switch (ap->hsm_task_state) {
470	case HSM_ST_FIRST:
471		/* Some pre-ATAPI-4 devices assert INTRQ
472		 * at this state when ready to receive CDB.
473		 */
474
475		/* Check the ATA_DFLAG_CDB_INTR flag is enough here.
476		 * The flag was turned on only for atapi devices.  No
477		 * need to check ata_is_atapi(qc->tf.protocol) again.
478		 */
479		if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
480			goto err_hsm;
481		break;
482	case HSM_ST_LAST:
483		if (ata_is_dma(qc->tf.protocol)) {
484			/* clear DMA-Start bit */
485			ap->ops->bmdma_stop(qc);
486
487			if (bmdma2 & SIL_DMA_ERROR) {
488				qc->err_mask |= AC_ERR_HOST_BUS;
489				ap->hsm_task_state = HSM_ST_ERR;
490			}
491		}
492		break;
493	case HSM_ST:
494		break;
495	default:
496		goto err_hsm;
497	}
498
499	/* check main status, clearing INTRQ */
500	status = ap->ops->sff_check_status(ap);
501	if (unlikely(status & ATA_BUSY))
502		goto err_hsm;
503
504	/* ack bmdma irq events */
505	ata_bmdma_irq_clear(ap);
506
507	/* kick HSM in the ass */
508	ata_sff_hsm_move(ap, qc, status, 0);
509
510	if (unlikely(qc->err_mask) && ata_is_dma(qc->tf.protocol))
511		ata_ehi_push_desc(ehi, "BMDMA2 stat 0x%x", bmdma2);
512
513	return;
514
515 err_hsm:
516	qc->err_mask |= AC_ERR_HSM;
517 freeze:
518	ata_port_freeze(ap);
519}
520
521static irqreturn_t sil_interrupt(int irq, void *dev_instance)
522{
523	struct ata_host *host = dev_instance;
524	void __iomem *mmio_base = host->iomap[SIL_MMIO_BAR];
525	int handled = 0;
526	int i;
527
528	spin_lock(&host->lock);
529
530	for (i = 0; i < host->n_ports; i++) {
531		struct ata_port *ap = host->ports[i];
532		u32 bmdma2 = readl(mmio_base + sil_port[ap->port_no].bmdma2);
533
534		/* turn off SATA_IRQ if not supported */
535		if (ap->flags & SIL_FLAG_NO_SATA_IRQ)
536			bmdma2 &= ~SIL_DMA_SATA_IRQ;
537
538		if (bmdma2 == 0xffffffff ||
539		    !(bmdma2 & (SIL_DMA_COMPLETE | SIL_DMA_SATA_IRQ)))
540			continue;
541
542		sil_host_intr(ap, bmdma2);
543		handled = 1;
544	}
545
546	spin_unlock(&host->lock);
547
548	return IRQ_RETVAL(handled);
549}
550
551static void sil_freeze(struct ata_port *ap)
552{
553	void __iomem *mmio_base = ap->host->iomap[SIL_MMIO_BAR];
554	u32 tmp;
555
556	/* global IRQ mask doesn't block SATA IRQ, turn off explicitly */
557	writel(0, mmio_base + sil_port[ap->port_no].sien);
558
559	/* plug IRQ */
560	tmp = readl(mmio_base + SIL_SYSCFG);
561	tmp |= SIL_MASK_IDE0_INT << ap->port_no;
562	writel(tmp, mmio_base + SIL_SYSCFG);
563	readl(mmio_base + SIL_SYSCFG);	/* flush */
564
565	/* Ensure DMA_ENABLE is off.
566	 *
567	 * This is because the controller will not give us access to the
568	 * taskfile registers while a DMA is in progress
569	 */
570	iowrite8(ioread8(ap->ioaddr.bmdma_addr) & ~SIL_DMA_ENABLE,
571		 ap->ioaddr.bmdma_addr);
572
573	/* According to ata_bmdma_stop, an HDMA transition requires
574	 * on PIO cycle. But we can't read a taskfile register.
575	 */
576	ioread8(ap->ioaddr.bmdma_addr);
577}
578
579static void sil_thaw(struct ata_port *ap)
580{
581	void __iomem *mmio_base = ap->host->iomap[SIL_MMIO_BAR];
582	u32 tmp;
583
584	/* clear IRQ */
585	ap->ops->sff_check_status(ap);
586	ata_bmdma_irq_clear(ap);
587
588	/* turn on SATA IRQ if supported */
589	if (!(ap->flags & SIL_FLAG_NO_SATA_IRQ))
590		writel(SIL_SIEN_N, mmio_base + sil_port[ap->port_no].sien);
591
592	/* turn on IRQ */
593	tmp = readl(mmio_base + SIL_SYSCFG);
594	tmp &= ~(SIL_MASK_IDE0_INT << ap->port_no);
595	writel(tmp, mmio_base + SIL_SYSCFG);
596}
597
598/**
599 *	sil_dev_config - Apply device/host-specific errata fixups
600 *	@dev: Device to be examined
601 *
602 *	After the IDENTIFY [PACKET] DEVICE step is complete, and a
603 *	device is known to be present, this function is called.
604 *	We apply two errata fixups which are specific to Silicon Image,
605 *	a Seagate and a Maxtor fixup.
606 *
607 *	For certain Seagate devices, we must limit the maximum sectors
608 *	to under 8K.
609 *
610 *	For certain Maxtor devices, we must not program the drive
611 *	beyond udma5.
612 *
613 *	Both fixups are unfairly pessimistic.  As soon as I get more
614 *	information on these errata, I will create a more exhaustive
615 *	list, and apply the fixups to only the specific
616 *	devices/hosts/firmwares that need it.
617 *
618 *	20040111 - Seagate drives affected by the Mod15Write bug are blacklisted
619 *	The Maxtor quirk is in the blacklist, but I'm keeping the original
620 *	pessimistic fix for the following reasons...
621 *	- There seems to be less info on it, only one device gleaned off the
622 *	Windows	driver, maybe only one is affected.  More info would be greatly
623 *	appreciated.
624 *	- But then again UDMA5 is hardly anything to complain about
625 */
626static void sil_dev_config(struct ata_device *dev)
627{
628	struct ata_port *ap = dev->link->ap;
629	int print_info = ap->link.eh_context.i.flags & ATA_EHI_PRINTINFO;
630	unsigned int n, quirks = 0;
631	unsigned char model_num[ATA_ID_PROD_LEN + 1];
632
 
 
 
633	ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
634
635	for (n = 0; sil_blacklist[n].product; n++)
636		if (!strcmp(sil_blacklist[n].product, model_num)) {
637			quirks = sil_blacklist[n].quirk;
638			break;
639		}
640
641	/* limit requests to 15 sectors */
642	if (slow_down ||
643	    ((ap->flags & SIL_FLAG_MOD15WRITE) &&
644	     (quirks & SIL_QUIRK_MOD15WRITE))) {
645		if (print_info)
646			ata_dev_info(dev,
647		"applying Seagate errata fix (mod15write workaround)\n");
648		dev->max_sectors = 15;
649		return;
650	}
651
652	/* limit to udma5 */
653	if (quirks & SIL_QUIRK_UDMA5MAX) {
654		if (print_info)
655			ata_dev_info(dev, "applying Maxtor errata fix %s\n",
656				     model_num);
657		dev->udma_mask &= ATA_UDMA5;
658		return;
659	}
660}
661
662static void sil_init_controller(struct ata_host *host)
663{
664	struct pci_dev *pdev = to_pci_dev(host->dev);
665	void __iomem *mmio_base = host->iomap[SIL_MMIO_BAR];
666	u8 cls;
667	u32 tmp;
668	int i;
669
670	/* Initialize FIFO PCI bus arbitration */
671	cls = sil_get_device_cache_line(pdev);
672	if (cls) {
673		cls >>= 3;
674		cls++;  /* cls = (line_size/8)+1 */
675		for (i = 0; i < host->n_ports; i++)
676			writew(cls << 8 | cls,
677			       mmio_base + sil_port[i].fifo_cfg);
678	} else
679		dev_warn(&pdev->dev,
680			 "cache line size not set.  Driver may not function\n");
681
682	/* Apply R_ERR on DMA activate FIS errata workaround */
683	if (host->ports[0]->flags & SIL_FLAG_RERR_ON_DMA_ACT) {
684		int cnt;
685
686		for (i = 0, cnt = 0; i < host->n_ports; i++) {
687			tmp = readl(mmio_base + sil_port[i].sfis_cfg);
688			if ((tmp & 0x3) != 0x01)
689				continue;
690			if (!cnt)
691				dev_info(&pdev->dev,
692					 "Applying R_ERR on DMA activate FIS errata fix\n");
693			writel(tmp & ~0x3, mmio_base + sil_port[i].sfis_cfg);
694			cnt++;
695		}
696	}
697
698	if (host->n_ports == 4) {
699		/* flip the magic "make 4 ports work" bit */
700		tmp = readl(mmio_base + sil_port[2].bmdma);
701		if ((tmp & SIL_INTR_STEERING) == 0)
702			writel(tmp | SIL_INTR_STEERING,
703			       mmio_base + sil_port[2].bmdma);
704	}
705}
706
707static bool sil_broken_system_poweroff(struct pci_dev *pdev)
708{
709	static const struct dmi_system_id broken_systems[] = {
710		{
711			.ident = "HP Compaq nx6325",
712			.matches = {
713				DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
714				DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6325"),
715			},
716			/* PCI slot number of the controller */
717			.driver_data = (void *)0x12UL,
718		},
719
720		{ }	/* terminate list */
721	};
722	const struct dmi_system_id *dmi = dmi_first_match(broken_systems);
723
724	if (dmi) {
725		unsigned long slot = (unsigned long)dmi->driver_data;
726		/* apply the quirk only to on-board controllers */
727		return slot == PCI_SLOT(pdev->devfn);
728	}
729
730	return false;
731}
732
733static int sil_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
734{
735	int board_id = ent->driver_data;
736	struct ata_port_info pi = sil_port_info[board_id];
737	const struct ata_port_info *ppi[] = { &pi, NULL };
738	struct ata_host *host;
739	void __iomem *mmio_base;
740	int n_ports, rc;
741	unsigned int i;
742
743	ata_print_version_once(&pdev->dev, DRV_VERSION);
744
745	/* allocate host */
746	n_ports = 2;
747	if (board_id == sil_3114)
748		n_ports = 4;
749
750	if (sil_broken_system_poweroff(pdev)) {
751		pi.flags |= ATA_FLAG_NO_POWEROFF_SPINDOWN |
752					ATA_FLAG_NO_HIBERNATE_SPINDOWN;
753		dev_info(&pdev->dev, "quirky BIOS, skipping spindown "
754				"on poweroff and hibernation\n");
755	}
756
757	host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
758	if (!host)
759		return -ENOMEM;
760
761	/* acquire resources and fill host */
762	rc = pcim_enable_device(pdev);
763	if (rc)
764		return rc;
765
766	rc = pcim_iomap_regions(pdev, 1 << SIL_MMIO_BAR, DRV_NAME);
767	if (rc == -EBUSY)
768		pcim_pin_device(pdev);
769	if (rc)
770		return rc;
771	host->iomap = pcim_iomap_table(pdev);
772
773	rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
774	if (rc)
775		return rc;
776	rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
777	if (rc)
778		return rc;
779
780	mmio_base = host->iomap[SIL_MMIO_BAR];
781
782	for (i = 0; i < host->n_ports; i++) {
783		struct ata_port *ap = host->ports[i];
784		struct ata_ioports *ioaddr = &ap->ioaddr;
785
786		ioaddr->cmd_addr = mmio_base + sil_port[i].tf;
787		ioaddr->altstatus_addr =
788		ioaddr->ctl_addr = mmio_base + sil_port[i].ctl;
789		ioaddr->bmdma_addr = mmio_base + sil_port[i].bmdma;
790		ioaddr->scr_addr = mmio_base + sil_port[i].scr;
791		ata_sff_std_ports(ioaddr);
792
793		ata_port_pbar_desc(ap, SIL_MMIO_BAR, -1, "mmio");
794		ata_port_pbar_desc(ap, SIL_MMIO_BAR, sil_port[i].tf, "tf");
795	}
796
797	/* initialize and activate */
798	sil_init_controller(host);
799
800	pci_set_master(pdev);
801	return ata_host_activate(host, pdev->irq, sil_interrupt, IRQF_SHARED,
802				 &sil_sht);
803}
804
805#ifdef CONFIG_PM
806static int sil_pci_device_resume(struct pci_dev *pdev)
807{
808	struct ata_host *host = dev_get_drvdata(&pdev->dev);
809	int rc;
810
811	rc = ata_pci_device_do_resume(pdev);
812	if (rc)
813		return rc;
814
815	sil_init_controller(host);
816	ata_host_resume(host);
817
818	return 0;
819}
820#endif
821
822static int __init sil_init(void)
823{
824	return pci_register_driver(&sil_pci_driver);
825}
826
827static void __exit sil_exit(void)
828{
829	pci_unregister_driver(&sil_pci_driver);
830}
831
832
833module_init(sil_init);
834module_exit(sil_exit);
v5.4
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 *  sata_sil.c - Silicon Image SATA
  4 *
  5 *  Maintained by:  Tejun Heo <tj@kernel.org>
  6 *  		    Please ALWAYS copy linux-ide@vger.kernel.org
  7 *		    on emails.
  8 *
  9 *  Copyright 2003-2005 Red Hat, Inc.
 10 *  Copyright 2003 Benjamin Herrenschmidt
 11 *
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 12 *  libata documentation is available via 'make {ps|pdf}docs',
 13 *  as Documentation/driver-api/libata.rst
 14 *
 15 *  Documentation for SiI 3112:
 16 *  http://gkernel.sourceforge.net/specs/sii/3112A_SiI-DS-0095-B2.pdf.bz2
 17 *
 18 *  Other errata and documentation available under NDA.
 
 19 */
 20
 21#include <linux/kernel.h>
 22#include <linux/module.h>
 23#include <linux/pci.h>
 
 24#include <linux/blkdev.h>
 25#include <linux/delay.h>
 26#include <linux/interrupt.h>
 27#include <linux/device.h>
 28#include <scsi/scsi_host.h>
 29#include <linux/libata.h>
 30#include <linux/dmi.h>
 31
 32#define DRV_NAME	"sata_sil"
 33#define DRV_VERSION	"2.4"
 34
 35#define SIL_DMA_BOUNDARY	0x7fffffffUL
 36
 37enum {
 38	SIL_MMIO_BAR		= 5,
 39
 40	/*
 41	 * host flags
 42	 */
 43	SIL_FLAG_NO_SATA_IRQ	= (1 << 28),
 44	SIL_FLAG_RERR_ON_DMA_ACT = (1 << 29),
 45	SIL_FLAG_MOD15WRITE	= (1 << 30),
 46
 47	SIL_DFL_PORT_FLAGS	= ATA_FLAG_SATA,
 48
 49	/*
 50	 * Controller IDs
 51	 */
 52	sil_3112		= 0,
 53	sil_3112_no_sata_irq	= 1,
 54	sil_3512		= 2,
 55	sil_3114		= 3,
 56
 57	/*
 58	 * Register offsets
 59	 */
 60	SIL_SYSCFG		= 0x48,
 61
 62	/*
 63	 * Register bits
 64	 */
 65	/* SYSCFG */
 66	SIL_MASK_IDE0_INT	= (1 << 22),
 67	SIL_MASK_IDE1_INT	= (1 << 23),
 68	SIL_MASK_IDE2_INT	= (1 << 24),
 69	SIL_MASK_IDE3_INT	= (1 << 25),
 70	SIL_MASK_2PORT		= SIL_MASK_IDE0_INT | SIL_MASK_IDE1_INT,
 71	SIL_MASK_4PORT		= SIL_MASK_2PORT |
 72				  SIL_MASK_IDE2_INT | SIL_MASK_IDE3_INT,
 73
 74	/* BMDMA/BMDMA2 */
 75	SIL_INTR_STEERING	= (1 << 1),
 76
 77	SIL_DMA_ENABLE		= (1 << 0),  /* DMA run switch */
 78	SIL_DMA_RDWR		= (1 << 3),  /* DMA Rd-Wr */
 79	SIL_DMA_SATA_IRQ	= (1 << 4),  /* OR of all SATA IRQs */
 80	SIL_DMA_ACTIVE		= (1 << 16), /* DMA running */
 81	SIL_DMA_ERROR		= (1 << 17), /* PCI bus error */
 82	SIL_DMA_COMPLETE	= (1 << 18), /* cmd complete / IRQ pending */
 83	SIL_DMA_N_SATA_IRQ	= (1 << 6),  /* SATA_IRQ for the next channel */
 84	SIL_DMA_N_ACTIVE	= (1 << 24), /* ACTIVE for the next channel */
 85	SIL_DMA_N_ERROR		= (1 << 25), /* ERROR for the next channel */
 86	SIL_DMA_N_COMPLETE	= (1 << 26), /* COMPLETE for the next channel */
 87
 88	/* SIEN */
 89	SIL_SIEN_N		= (1 << 16), /* triggered by SError.N */
 90
 91	/*
 92	 * Others
 93	 */
 94	SIL_QUIRK_MOD15WRITE	= (1 << 0),
 95	SIL_QUIRK_UDMA5MAX	= (1 << 1),
 96};
 97
 98static int sil_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);
 99#ifdef CONFIG_PM_SLEEP
100static int sil_pci_device_resume(struct pci_dev *pdev);
101#endif
102static void sil_dev_config(struct ata_device *dev);
103static int sil_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val);
104static int sil_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val);
105static int sil_set_mode(struct ata_link *link, struct ata_device **r_failed);
106static void sil_qc_prep(struct ata_queued_cmd *qc);
107static void sil_bmdma_setup(struct ata_queued_cmd *qc);
108static void sil_bmdma_start(struct ata_queued_cmd *qc);
109static void sil_bmdma_stop(struct ata_queued_cmd *qc);
110static void sil_freeze(struct ata_port *ap);
111static void sil_thaw(struct ata_port *ap);
112
113
114static const struct pci_device_id sil_pci_tbl[] = {
115	{ PCI_VDEVICE(CMD, 0x3112), sil_3112 },
116	{ PCI_VDEVICE(CMD, 0x0240), sil_3112 },
117	{ PCI_VDEVICE(CMD, 0x3512), sil_3512 },
118	{ PCI_VDEVICE(CMD, 0x3114), sil_3114 },
119	{ PCI_VDEVICE(ATI, 0x436e), sil_3112 },
120	{ PCI_VDEVICE(ATI, 0x4379), sil_3112_no_sata_irq },
121	{ PCI_VDEVICE(ATI, 0x437a), sil_3112_no_sata_irq },
122
123	{ }	/* terminate list */
124};
125
126
127/* TODO firmware versions should be added - eric */
128static const struct sil_drivelist {
129	const char *product;
130	unsigned int quirk;
131} sil_blacklist [] = {
132	{ "ST320012AS",		SIL_QUIRK_MOD15WRITE },
133	{ "ST330013AS",		SIL_QUIRK_MOD15WRITE },
134	{ "ST340017AS",		SIL_QUIRK_MOD15WRITE },
135	{ "ST360015AS",		SIL_QUIRK_MOD15WRITE },
136	{ "ST380023AS",		SIL_QUIRK_MOD15WRITE },
137	{ "ST3120023AS",	SIL_QUIRK_MOD15WRITE },
138	{ "ST340014ASL",	SIL_QUIRK_MOD15WRITE },
139	{ "ST360014ASL",	SIL_QUIRK_MOD15WRITE },
140	{ "ST380011ASL",	SIL_QUIRK_MOD15WRITE },
141	{ "ST3120022ASL",	SIL_QUIRK_MOD15WRITE },
142	{ "ST3160021ASL",	SIL_QUIRK_MOD15WRITE },
143	{ "TOSHIBA MK2561GSYN",	SIL_QUIRK_MOD15WRITE },
144	{ "Maxtor 4D060H3",	SIL_QUIRK_UDMA5MAX },
145	{ }
146};
147
148static struct pci_driver sil_pci_driver = {
149	.name			= DRV_NAME,
150	.id_table		= sil_pci_tbl,
151	.probe			= sil_init_one,
152	.remove			= ata_pci_remove_one,
153#ifdef CONFIG_PM_SLEEP
154	.suspend		= ata_pci_device_suspend,
155	.resume			= sil_pci_device_resume,
156#endif
157};
158
159static struct scsi_host_template sil_sht = {
160	ATA_BASE_SHT(DRV_NAME),
161	/** These controllers support Large Block Transfer which allows
162	    transfer chunks up to 2GB and which cross 64KB boundaries,
163	    therefore the DMA limits are more relaxed than standard ATA SFF. */
164	.dma_boundary		= SIL_DMA_BOUNDARY,
165	.sg_tablesize		= ATA_MAX_PRD
166};
167
168static struct ata_port_operations sil_ops = {
169	.inherits		= &ata_bmdma32_port_ops,
170	.dev_config		= sil_dev_config,
171	.set_mode		= sil_set_mode,
172	.bmdma_setup            = sil_bmdma_setup,
173	.bmdma_start            = sil_bmdma_start,
174	.bmdma_stop		= sil_bmdma_stop,
175	.qc_prep		= sil_qc_prep,
176	.freeze			= sil_freeze,
177	.thaw			= sil_thaw,
178	.scr_read		= sil_scr_read,
179	.scr_write		= sil_scr_write,
180};
181
182static const struct ata_port_info sil_port_info[] = {
183	/* sil_3112 */
184	{
185		.flags		= SIL_DFL_PORT_FLAGS | SIL_FLAG_MOD15WRITE,
186		.pio_mask	= ATA_PIO4,
187		.mwdma_mask	= ATA_MWDMA2,
188		.udma_mask	= ATA_UDMA5,
189		.port_ops	= &sil_ops,
190	},
191	/* sil_3112_no_sata_irq */
192	{
193		.flags		= SIL_DFL_PORT_FLAGS | SIL_FLAG_MOD15WRITE |
194				  SIL_FLAG_NO_SATA_IRQ,
195		.pio_mask	= ATA_PIO4,
196		.mwdma_mask	= ATA_MWDMA2,
197		.udma_mask	= ATA_UDMA5,
198		.port_ops	= &sil_ops,
199	},
200	/* sil_3512 */
201	{
202		.flags		= SIL_DFL_PORT_FLAGS | SIL_FLAG_RERR_ON_DMA_ACT,
203		.pio_mask	= ATA_PIO4,
204		.mwdma_mask	= ATA_MWDMA2,
205		.udma_mask	= ATA_UDMA5,
206		.port_ops	= &sil_ops,
207	},
208	/* sil_3114 */
209	{
210		.flags		= SIL_DFL_PORT_FLAGS | SIL_FLAG_RERR_ON_DMA_ACT,
211		.pio_mask	= ATA_PIO4,
212		.mwdma_mask	= ATA_MWDMA2,
213		.udma_mask	= ATA_UDMA5,
214		.port_ops	= &sil_ops,
215	},
216};
217
218/* per-port register offsets */
219/* TODO: we can probably calculate rather than use a table */
220static const struct {
221	unsigned long tf;	/* ATA taskfile register block */
222	unsigned long ctl;	/* ATA control/altstatus register block */
223	unsigned long bmdma;	/* DMA register block */
224	unsigned long bmdma2;	/* DMA register block #2 */
225	unsigned long fifo_cfg;	/* FIFO Valid Byte Count and Control */
226	unsigned long scr;	/* SATA control register block */
227	unsigned long sien;	/* SATA Interrupt Enable register */
228	unsigned long xfer_mode;/* data transfer mode register */
229	unsigned long sfis_cfg;	/* SATA FIS reception config register */
230} sil_port[] = {
231	/* port 0 ... */
232	/*   tf    ctl  bmdma  bmdma2  fifo    scr   sien   mode   sfis */
233	{  0x80,  0x8A,   0x0,  0x10,  0x40, 0x100, 0x148,  0xb4, 0x14c },
234	{  0xC0,  0xCA,   0x8,  0x18,  0x44, 0x180, 0x1c8,  0xf4, 0x1cc },
235	{ 0x280, 0x28A, 0x200, 0x210, 0x240, 0x300, 0x348, 0x2b4, 0x34c },
236	{ 0x2C0, 0x2CA, 0x208, 0x218, 0x244, 0x380, 0x3c8, 0x2f4, 0x3cc },
237	/* ... port 3 */
238};
239
240MODULE_AUTHOR("Jeff Garzik");
241MODULE_DESCRIPTION("low-level driver for Silicon Image SATA controller");
242MODULE_LICENSE("GPL");
243MODULE_DEVICE_TABLE(pci, sil_pci_tbl);
244MODULE_VERSION(DRV_VERSION);
245
246static int slow_down;
247module_param(slow_down, int, 0444);
248MODULE_PARM_DESC(slow_down, "Sledgehammer used to work around random problems, by limiting commands to 15 sectors (0=off, 1=on)");
249
250
251static void sil_bmdma_stop(struct ata_queued_cmd *qc)
252{
253	struct ata_port *ap = qc->ap;
254	void __iomem *mmio_base = ap->host->iomap[SIL_MMIO_BAR];
255	void __iomem *bmdma2 = mmio_base + sil_port[ap->port_no].bmdma2;
256
257	/* clear start/stop bit - can safely always write 0 */
258	iowrite8(0, bmdma2);
259
260	/* one-PIO-cycle guaranteed wait, per spec, for HDMA1:0 transition */
261	ata_sff_dma_pause(ap);
262}
263
264static void sil_bmdma_setup(struct ata_queued_cmd *qc)
265{
266	struct ata_port *ap = qc->ap;
267	void __iomem *bmdma = ap->ioaddr.bmdma_addr;
268
269	/* load PRD table addr. */
270	iowrite32(ap->bmdma_prd_dma, bmdma + ATA_DMA_TABLE_OFS);
271
272	/* issue r/w command */
273	ap->ops->sff_exec_command(ap, &qc->tf);
274}
275
276static void sil_bmdma_start(struct ata_queued_cmd *qc)
277{
278	unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
279	struct ata_port *ap = qc->ap;
280	void __iomem *mmio_base = ap->host->iomap[SIL_MMIO_BAR];
281	void __iomem *bmdma2 = mmio_base + sil_port[ap->port_no].bmdma2;
282	u8 dmactl = ATA_DMA_START;
283
284	/* set transfer direction, start host DMA transaction
285	   Note: For Large Block Transfer to work, the DMA must be started
286	   using the bmdma2 register. */
287	if (!rw)
288		dmactl |= ATA_DMA_WR;
289	iowrite8(dmactl, bmdma2);
290}
291
292/* The way God intended PCI IDE scatter/gather lists to look and behave... */
293static void sil_fill_sg(struct ata_queued_cmd *qc)
294{
295	struct scatterlist *sg;
296	struct ata_port *ap = qc->ap;
297	struct ata_bmdma_prd *prd, *last_prd = NULL;
298	unsigned int si;
299
300	prd = &ap->bmdma_prd[0];
301	for_each_sg(qc->sg, sg, qc->n_elem, si) {
302		/* Note h/w doesn't support 64-bit, so we unconditionally
303		 * truncate dma_addr_t to u32.
304		 */
305		u32 addr = (u32) sg_dma_address(sg);
306		u32 sg_len = sg_dma_len(sg);
307
308		prd->addr = cpu_to_le32(addr);
309		prd->flags_len = cpu_to_le32(sg_len);
310		VPRINTK("PRD[%u] = (0x%X, 0x%X)\n", si, addr, sg_len);
311
312		last_prd = prd;
313		prd++;
314	}
315
316	if (likely(last_prd))
317		last_prd->flags_len |= cpu_to_le32(ATA_PRD_EOT);
318}
319
320static void sil_qc_prep(struct ata_queued_cmd *qc)
321{
322	if (!(qc->flags & ATA_QCFLAG_DMAMAP))
323		return;
324
325	sil_fill_sg(qc);
326}
327
328static unsigned char sil_get_device_cache_line(struct pci_dev *pdev)
329{
330	u8 cache_line = 0;
331	pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &cache_line);
332	return cache_line;
333}
334
335/**
336 *	sil_set_mode		-	wrap set_mode functions
337 *	@link: link to set up
338 *	@r_failed: returned device when we fail
339 *
340 *	Wrap the libata method for device setup as after the setup we need
341 *	to inspect the results and do some configuration work
342 */
343
344static int sil_set_mode(struct ata_link *link, struct ata_device **r_failed)
345{
346	struct ata_port *ap = link->ap;
347	void __iomem *mmio_base = ap->host->iomap[SIL_MMIO_BAR];
348	void __iomem *addr = mmio_base + sil_port[ap->port_no].xfer_mode;
349	struct ata_device *dev;
350	u32 tmp, dev_mode[2] = { };
351	int rc;
352
353	rc = ata_do_set_mode(link, r_failed);
354	if (rc)
355		return rc;
356
357	ata_for_each_dev(dev, link, ALL) {
358		if (!ata_dev_enabled(dev))
359			dev_mode[dev->devno] = 0;	/* PIO0/1/2 */
360		else if (dev->flags & ATA_DFLAG_PIO)
361			dev_mode[dev->devno] = 1;	/* PIO3/4 */
362		else
363			dev_mode[dev->devno] = 3;	/* UDMA */
364		/* value 2 indicates MDMA */
365	}
366
367	tmp = readl(addr);
368	tmp &= ~((1<<5) | (1<<4) | (1<<1) | (1<<0));
369	tmp |= dev_mode[0];
370	tmp |= (dev_mode[1] << 4);
371	writel(tmp, addr);
372	readl(addr);	/* flush */
373	return 0;
374}
375
376static inline void __iomem *sil_scr_addr(struct ata_port *ap,
377					 unsigned int sc_reg)
378{
379	void __iomem *offset = ap->ioaddr.scr_addr;
380
381	switch (sc_reg) {
382	case SCR_STATUS:
383		return offset + 4;
384	case SCR_ERROR:
385		return offset + 8;
386	case SCR_CONTROL:
387		return offset;
388	default:
389		/* do nothing */
390		break;
391	}
392
393	return NULL;
394}
395
396static int sil_scr_read(struct ata_link *link, unsigned int sc_reg, u32 *val)
397{
398	void __iomem *mmio = sil_scr_addr(link->ap, sc_reg);
399
400	if (mmio) {
401		*val = readl(mmio);
402		return 0;
403	}
404	return -EINVAL;
405}
406
407static int sil_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val)
408{
409	void __iomem *mmio = sil_scr_addr(link->ap, sc_reg);
410
411	if (mmio) {
412		writel(val, mmio);
413		return 0;
414	}
415	return -EINVAL;
416}
417
418static void sil_host_intr(struct ata_port *ap, u32 bmdma2)
419{
420	struct ata_eh_info *ehi = &ap->link.eh_info;
421	struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->link.active_tag);
422	u8 status;
423
424	if (unlikely(bmdma2 & SIL_DMA_SATA_IRQ)) {
425		u32 serror = 0xffffffff;
426
427		/* SIEN doesn't mask SATA IRQs on some 3112s.  Those
428		 * controllers continue to assert IRQ as long as
429		 * SError bits are pending.  Clear SError immediately.
430		 */
431		sil_scr_read(&ap->link, SCR_ERROR, &serror);
432		sil_scr_write(&ap->link, SCR_ERROR, serror);
433
434		/* Sometimes spurious interrupts occur, double check
435		 * it's PHYRDY CHG.
436		 */
437		if (serror & SERR_PHYRDY_CHG) {
438			ap->link.eh_info.serror |= serror;
439			goto freeze;
440		}
441
442		if (!(bmdma2 & SIL_DMA_COMPLETE))
443			return;
444	}
445
446	if (unlikely(!qc || (qc->tf.flags & ATA_TFLAG_POLLING))) {
447		/* this sometimes happens, just clear IRQ */
448		ap->ops->sff_check_status(ap);
449		return;
450	}
451
452	/* Check whether we are expecting interrupt in this state */
453	switch (ap->hsm_task_state) {
454	case HSM_ST_FIRST:
455		/* Some pre-ATAPI-4 devices assert INTRQ
456		 * at this state when ready to receive CDB.
457		 */
458
459		/* Check the ATA_DFLAG_CDB_INTR flag is enough here.
460		 * The flag was turned on only for atapi devices.  No
461		 * need to check ata_is_atapi(qc->tf.protocol) again.
462		 */
463		if (!(qc->dev->flags & ATA_DFLAG_CDB_INTR))
464			goto err_hsm;
465		break;
466	case HSM_ST_LAST:
467		if (ata_is_dma(qc->tf.protocol)) {
468			/* clear DMA-Start bit */
469			ap->ops->bmdma_stop(qc);
470
471			if (bmdma2 & SIL_DMA_ERROR) {
472				qc->err_mask |= AC_ERR_HOST_BUS;
473				ap->hsm_task_state = HSM_ST_ERR;
474			}
475		}
476		break;
477	case HSM_ST:
478		break;
479	default:
480		goto err_hsm;
481	}
482
483	/* check main status, clearing INTRQ */
484	status = ap->ops->sff_check_status(ap);
485	if (unlikely(status & ATA_BUSY))
486		goto err_hsm;
487
488	/* ack bmdma irq events */
489	ata_bmdma_irq_clear(ap);
490
491	/* kick HSM in the ass */
492	ata_sff_hsm_move(ap, qc, status, 0);
493
494	if (unlikely(qc->err_mask) && ata_is_dma(qc->tf.protocol))
495		ata_ehi_push_desc(ehi, "BMDMA2 stat 0x%x", bmdma2);
496
497	return;
498
499 err_hsm:
500	qc->err_mask |= AC_ERR_HSM;
501 freeze:
502	ata_port_freeze(ap);
503}
504
505static irqreturn_t sil_interrupt(int irq, void *dev_instance)
506{
507	struct ata_host *host = dev_instance;
508	void __iomem *mmio_base = host->iomap[SIL_MMIO_BAR];
509	int handled = 0;
510	int i;
511
512	spin_lock(&host->lock);
513
514	for (i = 0; i < host->n_ports; i++) {
515		struct ata_port *ap = host->ports[i];
516		u32 bmdma2 = readl(mmio_base + sil_port[ap->port_no].bmdma2);
517
518		/* turn off SATA_IRQ if not supported */
519		if (ap->flags & SIL_FLAG_NO_SATA_IRQ)
520			bmdma2 &= ~SIL_DMA_SATA_IRQ;
521
522		if (bmdma2 == 0xffffffff ||
523		    !(bmdma2 & (SIL_DMA_COMPLETE | SIL_DMA_SATA_IRQ)))
524			continue;
525
526		sil_host_intr(ap, bmdma2);
527		handled = 1;
528	}
529
530	spin_unlock(&host->lock);
531
532	return IRQ_RETVAL(handled);
533}
534
535static void sil_freeze(struct ata_port *ap)
536{
537	void __iomem *mmio_base = ap->host->iomap[SIL_MMIO_BAR];
538	u32 tmp;
539
540	/* global IRQ mask doesn't block SATA IRQ, turn off explicitly */
541	writel(0, mmio_base + sil_port[ap->port_no].sien);
542
543	/* plug IRQ */
544	tmp = readl(mmio_base + SIL_SYSCFG);
545	tmp |= SIL_MASK_IDE0_INT << ap->port_no;
546	writel(tmp, mmio_base + SIL_SYSCFG);
547	readl(mmio_base + SIL_SYSCFG);	/* flush */
548
549	/* Ensure DMA_ENABLE is off.
550	 *
551	 * This is because the controller will not give us access to the
552	 * taskfile registers while a DMA is in progress
553	 */
554	iowrite8(ioread8(ap->ioaddr.bmdma_addr) & ~SIL_DMA_ENABLE,
555		 ap->ioaddr.bmdma_addr);
556
557	/* According to ata_bmdma_stop, an HDMA transition requires
558	 * on PIO cycle. But we can't read a taskfile register.
559	 */
560	ioread8(ap->ioaddr.bmdma_addr);
561}
562
563static void sil_thaw(struct ata_port *ap)
564{
565	void __iomem *mmio_base = ap->host->iomap[SIL_MMIO_BAR];
566	u32 tmp;
567
568	/* clear IRQ */
569	ap->ops->sff_check_status(ap);
570	ata_bmdma_irq_clear(ap);
571
572	/* turn on SATA IRQ if supported */
573	if (!(ap->flags & SIL_FLAG_NO_SATA_IRQ))
574		writel(SIL_SIEN_N, mmio_base + sil_port[ap->port_no].sien);
575
576	/* turn on IRQ */
577	tmp = readl(mmio_base + SIL_SYSCFG);
578	tmp &= ~(SIL_MASK_IDE0_INT << ap->port_no);
579	writel(tmp, mmio_base + SIL_SYSCFG);
580}
581
582/**
583 *	sil_dev_config - Apply device/host-specific errata fixups
584 *	@dev: Device to be examined
585 *
586 *	After the IDENTIFY [PACKET] DEVICE step is complete, and a
587 *	device is known to be present, this function is called.
588 *	We apply two errata fixups which are specific to Silicon Image,
589 *	a Seagate and a Maxtor fixup.
590 *
591 *	For certain Seagate devices, we must limit the maximum sectors
592 *	to under 8K.
593 *
594 *	For certain Maxtor devices, we must not program the drive
595 *	beyond udma5.
596 *
597 *	Both fixups are unfairly pessimistic.  As soon as I get more
598 *	information on these errata, I will create a more exhaustive
599 *	list, and apply the fixups to only the specific
600 *	devices/hosts/firmwares that need it.
601 *
602 *	20040111 - Seagate drives affected by the Mod15Write bug are blacklisted
603 *	The Maxtor quirk is in the blacklist, but I'm keeping the original
604 *	pessimistic fix for the following reasons...
605 *	- There seems to be less info on it, only one device gleaned off the
606 *	Windows	driver, maybe only one is affected.  More info would be greatly
607 *	appreciated.
608 *	- But then again UDMA5 is hardly anything to complain about
609 */
610static void sil_dev_config(struct ata_device *dev)
611{
612	struct ata_port *ap = dev->link->ap;
613	int print_info = ap->link.eh_context.i.flags & ATA_EHI_PRINTINFO;
614	unsigned int n, quirks = 0;
615	unsigned char model_num[ATA_ID_PROD_LEN + 1];
616
617	/* This controller doesn't support trim */
618	dev->horkage |= ATA_HORKAGE_NOTRIM;
619
620	ata_id_c_string(dev->id, model_num, ATA_ID_PROD, sizeof(model_num));
621
622	for (n = 0; sil_blacklist[n].product; n++)
623		if (!strcmp(sil_blacklist[n].product, model_num)) {
624			quirks = sil_blacklist[n].quirk;
625			break;
626		}
627
628	/* limit requests to 15 sectors */
629	if (slow_down ||
630	    ((ap->flags & SIL_FLAG_MOD15WRITE) &&
631	     (quirks & SIL_QUIRK_MOD15WRITE))) {
632		if (print_info)
633			ata_dev_info(dev,
634		"applying Seagate errata fix (mod15write workaround)\n");
635		dev->max_sectors = 15;
636		return;
637	}
638
639	/* limit to udma5 */
640	if (quirks & SIL_QUIRK_UDMA5MAX) {
641		if (print_info)
642			ata_dev_info(dev, "applying Maxtor errata fix %s\n",
643				     model_num);
644		dev->udma_mask &= ATA_UDMA5;
645		return;
646	}
647}
648
649static void sil_init_controller(struct ata_host *host)
650{
651	struct pci_dev *pdev = to_pci_dev(host->dev);
652	void __iomem *mmio_base = host->iomap[SIL_MMIO_BAR];
653	u8 cls;
654	u32 tmp;
655	int i;
656
657	/* Initialize FIFO PCI bus arbitration */
658	cls = sil_get_device_cache_line(pdev);
659	if (cls) {
660		cls >>= 3;
661		cls++;  /* cls = (line_size/8)+1 */
662		for (i = 0; i < host->n_ports; i++)
663			writew(cls << 8 | cls,
664			       mmio_base + sil_port[i].fifo_cfg);
665	} else
666		dev_warn(&pdev->dev,
667			 "cache line size not set.  Driver may not function\n");
668
669	/* Apply R_ERR on DMA activate FIS errata workaround */
670	if (host->ports[0]->flags & SIL_FLAG_RERR_ON_DMA_ACT) {
671		int cnt;
672
673		for (i = 0, cnt = 0; i < host->n_ports; i++) {
674			tmp = readl(mmio_base + sil_port[i].sfis_cfg);
675			if ((tmp & 0x3) != 0x01)
676				continue;
677			if (!cnt)
678				dev_info(&pdev->dev,
679					 "Applying R_ERR on DMA activate FIS errata fix\n");
680			writel(tmp & ~0x3, mmio_base + sil_port[i].sfis_cfg);
681			cnt++;
682		}
683	}
684
685	if (host->n_ports == 4) {
686		/* flip the magic "make 4 ports work" bit */
687		tmp = readl(mmio_base + sil_port[2].bmdma);
688		if ((tmp & SIL_INTR_STEERING) == 0)
689			writel(tmp | SIL_INTR_STEERING,
690			       mmio_base + sil_port[2].bmdma);
691	}
692}
693
694static bool sil_broken_system_poweroff(struct pci_dev *pdev)
695{
696	static const struct dmi_system_id broken_systems[] = {
697		{
698			.ident = "HP Compaq nx6325",
699			.matches = {
700				DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
701				DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nx6325"),
702			},
703			/* PCI slot number of the controller */
704			.driver_data = (void *)0x12UL,
705		},
706
707		{ }	/* terminate list */
708	};
709	const struct dmi_system_id *dmi = dmi_first_match(broken_systems);
710
711	if (dmi) {
712		unsigned long slot = (unsigned long)dmi->driver_data;
713		/* apply the quirk only to on-board controllers */
714		return slot == PCI_SLOT(pdev->devfn);
715	}
716
717	return false;
718}
719
720static int sil_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
721{
722	int board_id = ent->driver_data;
723	struct ata_port_info pi = sil_port_info[board_id];
724	const struct ata_port_info *ppi[] = { &pi, NULL };
725	struct ata_host *host;
726	void __iomem *mmio_base;
727	int n_ports, rc;
728	unsigned int i;
729
730	ata_print_version_once(&pdev->dev, DRV_VERSION);
731
732	/* allocate host */
733	n_ports = 2;
734	if (board_id == sil_3114)
735		n_ports = 4;
736
737	if (sil_broken_system_poweroff(pdev)) {
738		pi.flags |= ATA_FLAG_NO_POWEROFF_SPINDOWN |
739					ATA_FLAG_NO_HIBERNATE_SPINDOWN;
740		dev_info(&pdev->dev, "quirky BIOS, skipping spindown "
741				"on poweroff and hibernation\n");
742	}
743
744	host = ata_host_alloc_pinfo(&pdev->dev, ppi, n_ports);
745	if (!host)
746		return -ENOMEM;
747
748	/* acquire resources and fill host */
749	rc = pcim_enable_device(pdev);
750	if (rc)
751		return rc;
752
753	rc = pcim_iomap_regions(pdev, 1 << SIL_MMIO_BAR, DRV_NAME);
754	if (rc == -EBUSY)
755		pcim_pin_device(pdev);
756	if (rc)
757		return rc;
758	host->iomap = pcim_iomap_table(pdev);
759
760	rc = dma_set_mask_and_coherent(&pdev->dev, ATA_DMA_MASK);
 
 
 
761	if (rc)
762		return rc;
763
764	mmio_base = host->iomap[SIL_MMIO_BAR];
765
766	for (i = 0; i < host->n_ports; i++) {
767		struct ata_port *ap = host->ports[i];
768		struct ata_ioports *ioaddr = &ap->ioaddr;
769
770		ioaddr->cmd_addr = mmio_base + sil_port[i].tf;
771		ioaddr->altstatus_addr =
772		ioaddr->ctl_addr = mmio_base + sil_port[i].ctl;
773		ioaddr->bmdma_addr = mmio_base + sil_port[i].bmdma;
774		ioaddr->scr_addr = mmio_base + sil_port[i].scr;
775		ata_sff_std_ports(ioaddr);
776
777		ata_port_pbar_desc(ap, SIL_MMIO_BAR, -1, "mmio");
778		ata_port_pbar_desc(ap, SIL_MMIO_BAR, sil_port[i].tf, "tf");
779	}
780
781	/* initialize and activate */
782	sil_init_controller(host);
783
784	pci_set_master(pdev);
785	return ata_host_activate(host, pdev->irq, sil_interrupt, IRQF_SHARED,
786				 &sil_sht);
787}
788
789#ifdef CONFIG_PM_SLEEP
790static int sil_pci_device_resume(struct pci_dev *pdev)
791{
792	struct ata_host *host = pci_get_drvdata(pdev);
793	int rc;
794
795	rc = ata_pci_device_do_resume(pdev);
796	if (rc)
797		return rc;
798
799	sil_init_controller(host);
800	ata_host_resume(host);
801
802	return 0;
803}
804#endif
805
806module_pci_driver(sil_pci_driver);