sata_promise.c

来自「Linux Kernel 2.6.9 for OMAP1710」· C语言 代码 · 共 667 行 · 第 1/2 页

C
667
字号
	DPRINTK("EXIT\n");}static inline unsigned int pdc_host_intr( struct ata_port *ap,                                          struct ata_queued_cmd *qc){	u8 status;	unsigned int handled = 0, have_err = 0;	u32 tmp;	void *mmio = (void *) ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;	tmp = readl(mmio);	if (tmp & PDC_ERR_MASK) {		have_err = 1;		pdc_reset_port(ap);	}	switch (qc->tf.protocol) {	case ATA_PROT_DMA:	case ATA_PROT_NODATA:		status = ata_wait_idle(ap);		if (have_err)			status |= ATA_ERR;		ata_qc_complete(qc, status);		handled = 1;		break;        default:                ap->stats.idle_irq++;                break;        }        return handled;}static void pdc_irq_clear(struct ata_port *ap){	struct ata_host_set *host_set = ap->host_set;	void *mmio = host_set->mmio_base;	readl(mmio + PDC_INT_SEQMASK);}static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs){	struct ata_host_set *host_set = dev_instance;	struct ata_port *ap;	u32 mask = 0;	unsigned int i, tmp;	unsigned int handled = 0;	void *mmio_base;	VPRINTK("ENTER\n");	if (!host_set || !host_set->mmio_base) {		VPRINTK("QUICK EXIT\n");		return IRQ_NONE;	}	mmio_base = host_set->mmio_base;	/* reading should also clear interrupts */	mask = readl(mmio_base + PDC_INT_SEQMASK);	if (mask == 0xffffffff) {		VPRINTK("QUICK EXIT 2\n");		return IRQ_NONE;	}	mask &= 0xffff;		/* only 16 tags possible */	if (!mask) {		VPRINTK("QUICK EXIT 3\n");		return IRQ_NONE;	}        spin_lock(&host_set->lock);        for (i = 0; i < host_set->n_ports; i++) {		VPRINTK("port %u\n", i);		ap = host_set->ports[i];		tmp = mask & (1 << (i + 1));		if (tmp && ap && (!(ap->flags & ATA_FLAG_PORT_DISABLED))) {			struct ata_queued_cmd *qc;			qc = ata_qc_from_tag(ap, ap->active_tag);			if (qc && (!(qc->tf.ctl & ATA_NIEN)))				handled += pdc_host_intr(ap, qc);		}	}        spin_unlock(&host_set->lock);	VPRINTK("EXIT\n");	return IRQ_RETVAL(handled);}static inline void pdc_packet_start(struct ata_queued_cmd *qc){	struct ata_port *ap = qc->ap;	struct pdc_port_priv *pp = ap->private_data;	unsigned int port_no = ap->port_no;	u8 seq = (u8) (port_no + 1);	VPRINTK("ENTER, ap %p\n", ap);	writel(0x00000001, ap->host_set->mmio_base + (seq * 4));	readl(ap->host_set->mmio_base + (seq * 4));	/* flush */	pp->pkt[2] = seq;	wmb();			/* flush PRD, pkt writes */	writel(pp->pkt_dma, (void *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);	readl((void *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */}static int pdc_qc_issue_prot(struct ata_queued_cmd *qc){	switch (qc->tf.protocol) {	case ATA_PROT_DMA:	case ATA_PROT_NODATA:		pdc_packet_start(qc);		return 0;	case ATA_PROT_ATAPI_DMA:		BUG();		break;	default:		break;	}	return ata_qc_issue_prot(qc);}static void pdc_tf_load_mmio(struct ata_port *ap, struct ata_taskfile *tf){	WARN_ON (tf->protocol == ATA_PROT_DMA ||		 tf->protocol == ATA_PROT_NODATA);	ata_tf_load(ap, tf);}static void pdc_exec_command_mmio(struct ata_port *ap, struct ata_taskfile *tf){	WARN_ON (tf->protocol == ATA_PROT_DMA ||		 tf->protocol == ATA_PROT_NODATA);	ata_exec_command(ap, tf);}static void pdc_sata_setup_port(struct ata_ioports *port, unsigned long base){	port->cmd_addr		= base;	port->data_addr		= base;	port->feature_addr	=	port->error_addr	= base + 0x4;	port->nsect_addr	= base + 0x8;	port->lbal_addr		= base + 0xc;	port->lbam_addr		= base + 0x10;	port->lbah_addr		= base + 0x14;	port->device_addr	= base + 0x18;	port->command_addr	=	port->status_addr	= base + 0x1c;	port->altstatus_addr	=	port->ctl_addr		= base + 0x38;}static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe){	void *mmio = pe->mmio_base;	u32 tmp;	/*	 * Except for the hotplug stuff, this is voodoo from the	 * Promise driver.  Label this entire section	 * "TODO: figure out why we do this"	 */	/* change FIFO_SHD to 8 dwords, enable BMR_BURST */	tmp = readl(mmio + PDC_FLASH_CTL);	tmp |= 0x12000;	/* bit 16 (fifo 8 dw) and 13 (bmr burst?) */	writel(tmp, mmio + PDC_FLASH_CTL);	/* clear plug/unplug flags for all ports */	tmp = readl(mmio + PDC_SATA_PLUG_CSR);	writel(tmp | 0xff, mmio + PDC_SATA_PLUG_CSR);	/* mask plug/unplug ints */	tmp = readl(mmio + PDC_SATA_PLUG_CSR);	writel(tmp | 0xff0000, mmio + PDC_SATA_PLUG_CSR);	/* reduce TBG clock to 133 Mhz. */	tmp = readl(mmio + PDC_TBG_MODE);	tmp &= ~0x30000; /* clear bit 17, 16*/	tmp |= 0x10000;  /* set bit 17:16 = 0:1 */	writel(tmp, mmio + PDC_TBG_MODE);	readl(mmio + PDC_TBG_MODE);	/* flush */	msleep(10);	/* adjust slew rate control register. */	tmp = readl(mmio + PDC_SLEW_CTL);	tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */	tmp  |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */	writel(tmp, mmio + PDC_SLEW_CTL);}static int pdc_sata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent){	static int printed_version;	struct ata_probe_ent *probe_ent = NULL;	unsigned long base;	void *mmio_base;	unsigned int board_idx = (unsigned int) ent->driver_data;	int rc;	if (!printed_version++)		printk(KERN_DEBUG DRV_NAME " version " DRV_VERSION "\n");	/*	 * If this driver happens to only be useful on Apple's K2, then	 * we should check that here as it has a normal Serverworks ID	 */	rc = pci_enable_device(pdev);	if (rc)		return rc;	rc = pci_request_regions(pdev, DRV_NAME);	if (rc)		goto err_out;	rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);	if (rc)		goto err_out_regions;	rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);	if (rc)		goto err_out_regions;	probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);	if (probe_ent == NULL) {		rc = -ENOMEM;		goto err_out_regions;	}	memset(probe_ent, 0, sizeof(*probe_ent));	probe_ent->pdev = pdev;	INIT_LIST_HEAD(&probe_ent->node);	mmio_base = ioremap(pci_resource_start(pdev, 3),		            pci_resource_len(pdev, 3));	if (mmio_base == NULL) {		rc = -ENOMEM;		goto err_out_free_ent;	}	base = (unsigned long) mmio_base;	probe_ent->sht		= pdc_port_info[board_idx].sht;	probe_ent->host_flags	= pdc_port_info[board_idx].host_flags;	probe_ent->pio_mask	= pdc_port_info[board_idx].pio_mask;	probe_ent->mwdma_mask	= pdc_port_info[board_idx].mwdma_mask;	probe_ent->udma_mask	= pdc_port_info[board_idx].udma_mask;	probe_ent->port_ops	= pdc_port_info[board_idx].port_ops;       	probe_ent->irq = pdev->irq;       	probe_ent->irq_flags = SA_SHIRQ;	probe_ent->mmio_base = mmio_base;	pdc_sata_setup_port(&probe_ent->port[0], base + 0x200);	pdc_sata_setup_port(&probe_ent->port[1], base + 0x280);	probe_ent->port[0].scr_addr = base + 0x400;	probe_ent->port[1].scr_addr = base + 0x500;	/* notice 4-port boards */	switch (board_idx) {	case board_20319:       		probe_ent->n_ports = 4;		pdc_sata_setup_port(&probe_ent->port[2], base + 0x300);		pdc_sata_setup_port(&probe_ent->port[3], base + 0x380);		probe_ent->port[2].scr_addr = base + 0x600;		probe_ent->port[3].scr_addr = base + 0x700;		break;	case board_2037x:       		probe_ent->n_ports = 2;		break;	default:		BUG();		break;	}	pci_set_master(pdev);	/* initialize adapter */	pdc_host_init(board_idx, probe_ent);	/* FIXME: check ata_device_add return value */	ata_device_add(probe_ent);	kfree(probe_ent);	return 0;err_out_free_ent:	kfree(probe_ent);err_out_regions:	pci_release_regions(pdev);err_out:	pci_disable_device(pdev);	return rc;}static int __init pdc_sata_init(void){	return pci_module_init(&pdc_sata_pci_driver);}static void __exit pdc_sata_exit(void){	pci_unregister_driver(&pdc_sata_pci_driver);}MODULE_AUTHOR("Jeff Garzik");MODULE_DESCRIPTION("Promise SATA TX2/TX4 low-level driver");MODULE_LICENSE("GPL");MODULE_DEVICE_TABLE(pci, pdc_sata_pci_tbl);module_init(pdc_sata_init);module_exit(pdc_sata_exit);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?