⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sata_qstor.c

📁 linux 内核源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* *  sata_qstor.c - Pacific Digital Corporation QStor SATA * *  Maintained by:  Mark Lord <mlord@pobox.com> * *  Copyright 2005 Pacific Digital Corporation. *  (OSL/GPL code release authorized by Jalil Fadavi). * * *  This program is free software; you can redistribute it and/or modify *  it under the terms of the GNU General Public License as published by *  the Free Software Foundation; either version 2, or (at your option) *  any later version. * *  This program is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *  GNU General Public License for more details. * *  You should have received a copy of the GNU General Public License *  along with this program; see the file COPYING.  If not, write to *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. * * *  libata documentation is available via 'make {ps|pdf}docs', *  as Documentation/DocBook/libata.* * */#include <linux/kernel.h>#include <linux/module.h>#include <linux/pci.h>#include <linux/init.h>#include <linux/blkdev.h>#include <linux/delay.h>#include <linux/interrupt.h>#include <linux/device.h>#include <scsi/scsi_host.h>#include <linux/libata.h>#define DRV_NAME	"sata_qstor"#define DRV_VERSION	"0.09"enum {	QS_MMIO_BAR		= 4,	QS_PORTS		= 4,	QS_MAX_PRD		= LIBATA_MAX_PRD,	QS_CPB_ORDER		= 6,	QS_CPB_BYTES		= (1 << QS_CPB_ORDER),	QS_PRD_BYTES		= QS_MAX_PRD * 16,	QS_PKT_BYTES		= QS_CPB_BYTES + QS_PRD_BYTES,	/* global register offsets */	QS_HCF_CNFG3		= 0x0003, /* host configuration offset */	QS_HID_HPHY		= 0x0004, /* host physical interface info */	QS_HCT_CTRL		= 0x00e4, /* global interrupt mask offset */	QS_HST_SFF		= 0x0100, /* host status fifo offset */	QS_HVS_SERD3		= 0x0393, /* PHY enable offset */	/* global control bits */	QS_HPHY_64BIT		= (1 << 1), /* 64-bit bus detected */	QS_CNFG3_GSRST		= 0x01,     /* global chip reset */	QS_SERD3_PHY_ENA	= 0xf0,     /* PHY detection ENAble*/	/* per-channel register offsets */	QS_CCF_CPBA		= 0x0710, /* chan CPB base address */	QS_CCF_CSEP		= 0x0718, /* chan CPB separation factor */	QS_CFC_HUFT		= 0x0800, /* host upstream fifo threshold */	QS_CFC_HDFT		= 0x0804, /* host downstream fifo threshold */	QS_CFC_DUFT		= 0x0808, /* dev upstream fifo threshold */	QS_CFC_DDFT		= 0x080c, /* dev downstream fifo threshold */	QS_CCT_CTR0		= 0x0900, /* chan control-0 offset */	QS_CCT_CTR1		= 0x0901, /* chan control-1 offset */	QS_CCT_CFF		= 0x0a00, /* chan command fifo offset */	/* channel control bits */	QS_CTR0_REG		= (1 << 1),   /* register mode (vs. pkt mode) */	QS_CTR0_CLER		= (1 << 2),   /* clear channel errors */	QS_CTR1_RDEV		= (1 << 1),   /* sata phy/comms reset */	QS_CTR1_RCHN		= (1 << 4),   /* reset channel logic */	QS_CCF_RUN_PKT		= 0x107,      /* RUN a new dma PKT */	/* pkt sub-field headers */	QS_HCB_HDR		= 0x01,   /* Host Control Block header */	QS_DCB_HDR		= 0x02,   /* Device Control Block header */	/* pkt HCB flag bits */	QS_HF_DIRO		= (1 << 0),   /* data DIRection Out */	QS_HF_DAT		= (1 << 3),   /* DATa pkt */	QS_HF_IEN		= (1 << 4),   /* Interrupt ENable */	QS_HF_VLD		= (1 << 5),   /* VaLiD pkt */	/* pkt DCB flag bits */	QS_DF_PORD		= (1 << 2),   /* Pio OR Dma */	QS_DF_ELBA		= (1 << 3),   /* Extended LBA (lba48) */	/* PCI device IDs */	board_2068_idx		= 0,	/* QStor 4-port SATA/RAID */};enum {	QS_DMA_BOUNDARY		= ~0UL};typedef enum { qs_state_mmio, qs_state_pkt } qs_state_t;struct qs_port_priv {	u8			*pkt;	dma_addr_t		pkt_dma;	qs_state_t		state;};static int qs_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val);static int qs_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val);static int qs_ata_init_one(struct pci_dev *pdev, const struct pci_device_id *ent);static int qs_port_start(struct ata_port *ap);static void qs_host_stop(struct ata_host *host);static void qs_qc_prep(struct ata_queued_cmd *qc);static unsigned int qs_qc_issue(struct ata_queued_cmd *qc);static int qs_check_atapi_dma(struct ata_queued_cmd *qc);static void qs_bmdma_stop(struct ata_queued_cmd *qc);static u8 qs_bmdma_status(struct ata_port *ap);static void qs_irq_clear(struct ata_port *ap);static void qs_freeze(struct ata_port *ap);static void qs_thaw(struct ata_port *ap);static void qs_error_handler(struct ata_port *ap);static struct scsi_host_template qs_ata_sht = {	.module			= THIS_MODULE,	.name			= DRV_NAME,	.ioctl			= ata_scsi_ioctl,	.queuecommand		= ata_scsi_queuecmd,	.can_queue		= ATA_DEF_QUEUE,	.this_id		= ATA_SHT_THIS_ID,	.sg_tablesize		= QS_MAX_PRD,	.cmd_per_lun		= ATA_SHT_CMD_PER_LUN,	.emulated		= ATA_SHT_EMULATED,	.use_clustering		= ENABLE_CLUSTERING,	.proc_name		= DRV_NAME,	.dma_boundary		= QS_DMA_BOUNDARY,	.slave_configure	= ata_scsi_slave_config,	.slave_destroy		= ata_scsi_slave_destroy,	.bios_param		= ata_std_bios_param,};static const struct ata_port_operations qs_ata_ops = {	.tf_load		= ata_tf_load,	.tf_read		= ata_tf_read,	.check_status		= ata_check_status,	.check_atapi_dma	= qs_check_atapi_dma,	.exec_command		= ata_exec_command,	.dev_select		= ata_std_dev_select,	.qc_prep		= qs_qc_prep,	.qc_issue		= qs_qc_issue,	.data_xfer		= ata_data_xfer,	.freeze			= qs_freeze,	.thaw			= qs_thaw,	.error_handler		= qs_error_handler,	.irq_clear		= qs_irq_clear,	.irq_on			= ata_irq_on,	.scr_read		= qs_scr_read,	.scr_write		= qs_scr_write,	.port_start		= qs_port_start,	.host_stop		= qs_host_stop,	.bmdma_stop		= qs_bmdma_stop,	.bmdma_status		= qs_bmdma_status,};static const struct ata_port_info qs_port_info[] = {	/* board_2068_idx */	{		.flags		= ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |				  ATA_FLAG_MMIO | ATA_FLAG_PIO_POLLING,		.pio_mask	= 0x10, /* pio4 */		.udma_mask	= ATA_UDMA6,		.port_ops	= &qs_ata_ops,	},};static const struct pci_device_id qs_ata_pci_tbl[] = {	{ PCI_VDEVICE(PDC, 0x2068), board_2068_idx },	{ }	/* terminate list */};static struct pci_driver qs_ata_pci_driver = {	.name			= DRV_NAME,	.id_table		= qs_ata_pci_tbl,	.probe			= qs_ata_init_one,	.remove			= ata_pci_remove_one,};static void __iomem *qs_mmio_base(struct ata_host *host){	return host->iomap[QS_MMIO_BAR];}static int qs_check_atapi_dma(struct ata_queued_cmd *qc){	return 1;	/* ATAPI DMA not supported */}static void qs_bmdma_stop(struct ata_queued_cmd *qc){	/* nothing */}static u8 qs_bmdma_status(struct ata_port *ap){	return 0;}static void qs_irq_clear(struct ata_port *ap){	/* nothing */}static inline void qs_enter_reg_mode(struct ata_port *ap){	u8 __iomem *chan = qs_mmio_base(ap->host) + (ap->port_no * 0x4000);	struct qs_port_priv *pp = ap->private_data;	pp->state = qs_state_mmio;	writeb(QS_CTR0_REG, chan + QS_CCT_CTR0);	readb(chan + QS_CCT_CTR0);        /* flush */}static inline void qs_reset_channel_logic(struct ata_port *ap){	u8 __iomem *chan = qs_mmio_base(ap->host) + (ap->port_no * 0x4000);	writeb(QS_CTR1_RCHN, chan + QS_CCT_CTR1);	readb(chan + QS_CCT_CTR0);        /* flush */	qs_enter_reg_mode(ap);}static void qs_freeze(struct ata_port *ap){	u8 __iomem *mmio_base = qs_mmio_base(ap->host);	writeb(0, mmio_base + QS_HCT_CTRL); /* disable host interrupts */	qs_enter_reg_mode(ap);}static void qs_thaw(struct ata_port *ap){	u8 __iomem *mmio_base = qs_mmio_base(ap->host);	qs_enter_reg_mode(ap);	writeb(1, mmio_base + QS_HCT_CTRL); /* enable host interrupts */}static int qs_prereset(struct ata_link *link, unsigned long deadline){	struct ata_port *ap = link->ap;	qs_reset_channel_logic(ap);	return ata_std_prereset(link, deadline);}static int qs_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val){	if (sc_reg > SCR_CONTROL)		return -EINVAL;	*val = readl(ap->ioaddr.scr_addr + (sc_reg * 8));	return 0;}static void qs_error_handler(struct ata_port *ap){	qs_enter_reg_mode(ap);	ata_do_eh(ap, qs_prereset, NULL, sata_std_hardreset,		  ata_std_postreset);}static int qs_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val){	if (sc_reg > SCR_CONTROL)		return -EINVAL;	writel(val, ap->ioaddr.scr_addr + (sc_reg * 8));	return 0;}static unsigned int qs_fill_sg(struct ata_queued_cmd *qc){	struct scatterlist *sg;	struct ata_port *ap = qc->ap;	struct qs_port_priv *pp = ap->private_data;	unsigned int nelem;	u8 *prd = pp->pkt + QS_CPB_BYTES;	WARN_ON(qc->__sg == NULL);	WARN_ON(qc->n_elem == 0 && qc->pad_len == 0);	nelem = 0;	ata_for_each_sg(sg, qc) {		u64 addr;		u32 len;		addr = sg_dma_address(sg);		*(__le64 *)prd = cpu_to_le64(addr);		prd += sizeof(u64);		len = sg_dma_len(sg);		*(__le32 *)prd = cpu_to_le32(len);		prd += sizeof(u64);		VPRINTK("PRD[%u] = (0x%llX, 0x%X)\n", nelem,					(unsigned long long)addr, len);		nelem++;	}	return nelem;}static void qs_qc_prep(struct ata_queued_cmd *qc){	struct qs_port_priv *pp = qc->ap->private_data;	u8 dflags = QS_DF_PORD, *buf = pp->pkt;	u8 hflags = QS_HF_DAT | QS_HF_IEN | QS_HF_VLD;	u64 addr;	unsigned int nelem;	VPRINTK("ENTER\n");	qs_enter_reg_mode(qc->ap);	if (qc->tf.protocol != ATA_PROT_DMA) {		ata_qc_prep(qc);		return;	}	nelem = qs_fill_sg(qc);	if ((qc->tf.flags & ATA_TFLAG_WRITE))		hflags |= QS_HF_DIRO;	if ((qc->tf.flags & ATA_TFLAG_LBA48))		dflags |= QS_DF_ELBA;	/* host control block (HCB) */	buf[ 0] = QS_HCB_HDR;	buf[ 1] = hflags;	*(__le32 *)(&buf[ 4]) = cpu_to_le32(qc->nbytes);	*(__le32 *)(&buf[ 8]) = cpu_to_le32(nelem);	addr = ((u64)pp->pkt_dma) + QS_CPB_BYTES;	*(__le64 *)(&buf[16]) = cpu_to_le64(addr);	/* device control block (DCB) */	buf[24] = QS_DCB_HDR;	buf[28] = dflags;	/* frame information structure (FIS) */	ata_tf_to_fis(&qc->tf, 0, 1, &buf[32]);}

⌨️ 快捷键说明

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