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

📄 pata_legacy.c

📁 linux 内核源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* *   pata-legacy.c - Legacy port PATA/SATA controller driver. *   Copyright 2005/2006 Red Hat <alan@redhat.com>, all rights reserved. * *  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. * *   An ATA driver for the legacy ATA ports. * *   Data Sources: *	Opti 82C465/82C611 support: Data sheets at opti-inc.com *	HT6560 series: *	Promise 20230/20620: *		http://www.ryston.cz/petr/vlb/pdc20230b.html *		http://www.ryston.cz/petr/vlb/pdc20230c.html *		http://www.ryston.cz/petr/vlb/pdc20630.html * *  Unsupported but docs exist: *	Appian/Adaptec AIC25VL01/Cirrus Logic PD7220 *	Winbond W83759A * *  This driver handles legacy (that is "ISA/VLB side") IDE ports found *  on PC class systems. There are three hybrid devices that are exceptions *  The Cyrix 5510/5520 where a pre SFF ATA device is on the bridge and *  the MPIIX where the tuning is PCI side but the IDE is "ISA side". * *  Specific support is included for the ht6560a/ht6560b/opti82c611a/ *  opti82c465mv/promise 20230c/20630 * *  Use the autospeed and pio_mask options with: *	Appian ADI/2 aka CLPD7220 or AIC25VL01. *  Use the jumpers, autospeed and set pio_mask to the mode on the jumpers with *	Goldstar GM82C711, PIC-1288A-125, UMC 82C871F, Winbond W83759, *	Winbond W83759A, Promise PDC20230-B * *  For now use autospeed and pio_mask as above with the W83759A. This may *  change. * *  TODO *	Merge existing pata_qdi driver * */#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 <scsi/scsi_host.h>#include <linux/ata.h>#include <linux/libata.h>#include <linux/platform_device.h>#define DRV_NAME "pata_legacy"#define DRV_VERSION "0.5.5"#define NR_HOST 6static int legacy_port[NR_HOST] = { 0x1f0, 0x170, 0x1e8, 0x168, 0x1e0, 0x160 };static int legacy_irq[NR_HOST] = { 14, 15, 11, 10, 8, 12 };struct legacy_data {	unsigned long timing;	u8 clock[2];	u8 last;	int fast;	struct platform_device *platform_dev;};static struct legacy_data legacy_data[NR_HOST];static struct ata_host *legacy_host[NR_HOST];static int nr_legacy_host;static int probe_all;			/* Set to check all ISA port ranges */static int ht6560a;			/* HT 6560A on primary 1, secondary 2, both 3 */static int ht6560b;			/* HT 6560A on primary 1, secondary 2, both 3 */static int opti82c611a;			/* Opti82c611A on primary 1, secondary 2, both 3 */static int opti82c46x;			/* Opti 82c465MV present (pri/sec autodetect) */static int autospeed;			/* Chip present which snoops speed changes */static int pio_mask = 0x1F;		/* PIO range for autospeed devices */static int iordy_mask = 0xFFFFFFFF;	/* Use iordy if available *//** *	legacy_set_mode		-	mode setting *	@link: IDE link *	@unused: Device that failed when error is returned * *	Use a non standard set_mode function. We don't want to be tuned. * *	The BIOS configured everything. Our job is not to fiddle. Just use *	whatever PIO the hardware is using and leave it at that. When we *	get some kind of nice user driven API for control then we can *	expand on this as per hdparm in the base kernel. */static int legacy_set_mode(struct ata_link *link, struct ata_device **unused){	struct ata_device *dev;	ata_link_for_each_dev(dev, link) {		if (ata_dev_enabled(dev)) {			ata_dev_printk(dev, KERN_INFO, "configured for PIO\n");			dev->pio_mode = XFER_PIO_0;			dev->xfer_mode = XFER_PIO_0;			dev->xfer_shift = ATA_SHIFT_PIO;			dev->flags |= ATA_DFLAG_PIO;		}	}	return 0;}static struct scsi_host_template legacy_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		= LIBATA_MAX_PRD,	.cmd_per_lun		= ATA_SHT_CMD_PER_LUN,	.emulated		= ATA_SHT_EMULATED,	.use_clustering		= ATA_SHT_USE_CLUSTERING,	.proc_name		= DRV_NAME,	.dma_boundary		= ATA_DMA_BOUNDARY,	.slave_configure	= ata_scsi_slave_config,	.slave_destroy		= ata_scsi_slave_destroy,	.bios_param		= ata_std_bios_param,};/* *	These ops are used if the user indicates the hardware *	snoops the commands to decide on the mode and handles the *	mode selection "magically" itself. Several legacy controllers *	do this. The mode range can be set if it is not 0x1F by setting *	pio_mask as well. */static struct ata_port_operations simple_port_ops = {	.tf_load	= ata_tf_load,	.tf_read	= ata_tf_read,	.check_status 	= ata_check_status,	.exec_command	= ata_exec_command,	.dev_select 	= ata_std_dev_select,	.freeze		= ata_bmdma_freeze,	.thaw		= ata_bmdma_thaw,	.error_handler	= ata_bmdma_error_handler,	.post_internal_cmd = ata_bmdma_post_internal_cmd,	.cable_detect	= ata_cable_40wire,	.qc_prep 	= ata_qc_prep,	.qc_issue	= ata_qc_issue_prot,	.data_xfer	= ata_data_xfer_noirq,	.irq_handler	= ata_interrupt,	.irq_clear	= ata_bmdma_irq_clear,	.irq_on		= ata_irq_on,	.port_start	= ata_port_start,};static struct ata_port_operations legacy_port_ops = {	.set_mode	= legacy_set_mode,	.tf_load	= ata_tf_load,	.tf_read	= ata_tf_read,	.check_status 	= ata_check_status,	.exec_command	= ata_exec_command,	.dev_select 	= ata_std_dev_select,	.cable_detect	= ata_cable_40wire,	.freeze		= ata_bmdma_freeze,	.thaw		= ata_bmdma_thaw,	.error_handler	= ata_bmdma_error_handler,	.post_internal_cmd = ata_bmdma_post_internal_cmd,	.qc_prep 	= ata_qc_prep,	.qc_issue	= ata_qc_issue_prot,	.data_xfer	= ata_data_xfer_noirq,	.irq_handler	= ata_interrupt,	.irq_clear	= ata_bmdma_irq_clear,	.irq_on		= ata_irq_on,	.port_start	= ata_port_start,};/* *	Promise 20230C and 20620 support * *	This controller supports PIO0 to PIO2. We set PIO timings conservatively to *	allow for 50MHz Vesa Local Bus. The 20620 DMA support is weird being DMA to *	controller and PIO'd to the host and not supported. */static void pdc20230_set_piomode(struct ata_port *ap, struct ata_device *adev){	int tries = 5;	int pio = adev->pio_mode - XFER_PIO_0;	u8 rt;	unsigned long flags;	/* Safe as UP only. Force I/Os to occur together */	local_irq_save(flags);	/* Unlock the control interface */	do	{		inb(0x1F5);		outb(inb(0x1F2) | 0x80, 0x1F2);		inb(0x1F2);		inb(0x3F6);		inb(0x3F6);		inb(0x1F2);		inb(0x1F2);	}	while((inb(0x1F2) & 0x80) && --tries);	local_irq_restore(flags);	outb(inb(0x1F4) & 0x07, 0x1F4);	rt = inb(0x1F3);	rt &= 0x07 << (3 * adev->devno);	if (pio)		rt |= (1 + 3 * pio) << (3 * adev->devno);	udelay(100);	outb(inb(0x1F2) | 0x01, 0x1F2);	udelay(100);	inb(0x1F5);}static void pdc_data_xfer_vlb(struct ata_device *adev, unsigned char *buf, unsigned int buflen, int write_data){	struct ata_port *ap = adev->link->ap;	int slop = buflen & 3;	unsigned long flags;	if (ata_id_has_dword_io(adev->id)) {		local_irq_save(flags);		/* Perform the 32bit I/O synchronization sequence */		ioread8(ap->ioaddr.nsect_addr);		ioread8(ap->ioaddr.nsect_addr);		ioread8(ap->ioaddr.nsect_addr);		/* Now the data */		if (write_data)			iowrite32_rep(ap->ioaddr.data_addr, buf, buflen >> 2);		else			ioread32_rep(ap->ioaddr.data_addr, buf, buflen >> 2);		if (unlikely(slop)) {			__le32 pad = 0;			if (write_data) {				memcpy(&pad, buf + buflen - slop, slop);				iowrite32(le32_to_cpu(pad), ap->ioaddr.data_addr);			} else {				pad = cpu_to_le32(ioread32(ap->ioaddr.data_addr));				memcpy(buf + buflen - slop, &pad, slop);			}		}		local_irq_restore(flags);	}	else		ata_data_xfer_noirq(adev, buf, buflen, write_data);}static struct ata_port_operations pdc20230_port_ops = {	.set_piomode	= pdc20230_set_piomode,	.tf_load	= ata_tf_load,	.tf_read	= ata_tf_read,	.check_status 	= ata_check_status,	.exec_command	= ata_exec_command,	.dev_select 	= ata_std_dev_select,	.freeze		= ata_bmdma_freeze,	.thaw		= ata_bmdma_thaw,	.error_handler	= ata_bmdma_error_handler,	.post_internal_cmd = ata_bmdma_post_internal_cmd,	.cable_detect	= ata_cable_40wire,	.qc_prep 	= ata_qc_prep,	.qc_issue	= ata_qc_issue_prot,	.data_xfer	= pdc_data_xfer_vlb,	.irq_handler	= ata_interrupt,	.irq_clear	= ata_bmdma_irq_clear,	.irq_on		= ata_irq_on,	.port_start	= ata_port_start,};/* *	Holtek 6560A support * *	This controller supports PIO0 to PIO2 (no IORDY even though higher timings *	can be loaded). */static void ht6560a_set_piomode(struct ata_port *ap, struct ata_device *adev){	u8 active, recover;	struct ata_timing t;	/* Get the timing data in cycles. For now play safe at 50Mhz */	ata_timing_compute(adev, adev->pio_mode, &t, 20000, 1000);	active = FIT(t.active, 2, 15);	recover = FIT(t.recover, 4, 15);	inb(0x3E6);	inb(0x3E6);	inb(0x3E6);	inb(0x3E6);	iowrite8(recover << 4 | active, ap->ioaddr.device_addr);	ioread8(ap->ioaddr.status_addr);}static struct ata_port_operations ht6560a_port_ops = {	.set_piomode	= ht6560a_set_piomode,	.tf_load	= ata_tf_load,	.tf_read	= ata_tf_read,	.check_status 	= ata_check_status,	.exec_command	= ata_exec_command,	.dev_select 	= ata_std_dev_select,	.freeze		= ata_bmdma_freeze,	.thaw		= ata_bmdma_thaw,	.error_handler	= ata_bmdma_error_handler,	.post_internal_cmd = ata_bmdma_post_internal_cmd,	.cable_detect	= ata_cable_40wire,	.qc_prep 	= ata_qc_prep,	.qc_issue	= ata_qc_issue_prot,	.data_xfer	= ata_data_xfer,	/* Check vlb/noirq */	.irq_handler	= ata_interrupt,	.irq_clear	= ata_bmdma_irq_clear,	.irq_on		= ata_irq_on,	.port_start	= ata_port_start,};/* *	Holtek 6560B support * *	This controller supports PIO0 to PIO4. We honour the BIOS/jumper FIFO setting *	unless we see an ATAPI device in which case we force it off. * *	FIXME: need to implement 2nd channel support. */static void ht6560b_set_piomode(struct ata_port *ap, struct ata_device *adev){	u8 active, recover;	struct ata_timing t;	/* Get the timing data in cycles. For now play safe at 50Mhz */	ata_timing_compute(adev, adev->pio_mode, &t, 20000, 1000);	active = FIT(t.active, 2, 15);	recover = FIT(t.recover, 2, 16);	recover &= 0x15;	inb(0x3E6);	inb(0x3E6);	inb(0x3E6);	inb(0x3E6);	iowrite8(recover << 4 | active, ap->ioaddr.device_addr);	if (adev->class != ATA_DEV_ATA) {		u8 rconf = inb(0x3E6);		if (rconf & 0x24) {			rconf &= ~ 0x24;			outb(rconf, 0x3E6);		}	}	ioread8(ap->ioaddr.status_addr);}static struct ata_port_operations ht6560b_port_ops = {	.set_piomode	= ht6560b_set_piomode,	.tf_load	= ata_tf_load,	.tf_read	= ata_tf_read,	.check_status 	= ata_check_status,	.exec_command	= ata_exec_command,	.dev_select 	= ata_std_dev_select,	.freeze		= ata_bmdma_freeze,	.thaw		= ata_bmdma_thaw,	.error_handler	= ata_bmdma_error_handler,	.post_internal_cmd = ata_bmdma_post_internal_cmd,	.cable_detect	= ata_cable_40wire,	.qc_prep 	= ata_qc_prep,	.qc_issue	= ata_qc_issue_prot,	.data_xfer	= ata_data_xfer,	/* FIXME: Check 32bit and noirq */	.irq_handler	= ata_interrupt,	.irq_clear	= ata_bmdma_irq_clear,	.irq_on		= ata_irq_on,	.port_start	= ata_port_start,};/* *	Opti core chipset helpers *//** *	opti_syscfg	-	read OPTI chipset configuration *	@reg: Configuration register to read * *	Returns the value of an OPTI system board configuration register. */static u8 opti_syscfg(u8 reg){	unsigned long flags;	u8 r;	/* Uniprocessor chipset and must force cycles adjancent */	local_irq_save(flags);	outb(reg, 0x22);	r = inb(0x24);	local_irq_restore(flags);	return r;}/* *	Opti 82C611A * *	This controller supports PIO0 to PIO3. */static void opti82c611a_set_piomode(struct ata_port *ap, struct ata_device *adev){	u8 active, recover, setup;	struct ata_timing t;	struct ata_device *pair = ata_dev_pair(adev);	int clock;	int khz[4] = { 50000, 40000, 33000, 25000 };	u8 rc;	/* Enter configuration mode */	ioread16(ap->ioaddr.error_addr);	ioread16(ap->ioaddr.error_addr);	iowrite8(3, ap->ioaddr.nsect_addr);	/* Read VLB clock strapping */	clock = 1000000000 / khz[ioread8(ap->ioaddr.lbah_addr) & 0x03];	/* Get the timing data in cycles */	ata_timing_compute(adev, adev->pio_mode, &t, clock, 1000);	/* Setup timing is shared */

⌨️ 快捷键说明

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