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

📄 hpt366.c

📁 linux-2.6.15.6
💻 C
📖 第 1 页 / 共 4 页
字号:
/* * linux/drivers/ide/pci/hpt366.c		Version 0.36	April 25, 2003 * * Copyright (C) 1999-2003		Andre Hedrick <andre@linux-ide.org> * Portions Copyright (C) 2001	        Sun Microsystems, Inc. * Portions Copyright (C) 2003		Red Hat Inc * * Thanks to HighPoint Technologies for their assistance, and hardware. * Special Thanks to Jon Burchmore in SanDiego for the deep pockets, his * donation of an ABit BP6 mainboard, processor, and memory acellerated * development and support. * * * Highpoint have their own driver (source except for the raid part) * available from http://www.highpoint-tech.com/hpt3xx-opensource-v131.tgz * This may be useful to anyone wanting to work on the mainstream hpt IDE. * * Note that final HPT370 support was done by force extraction of GPL. * * - add function for getting/setting power status of drive * - the HPT370's state machine can get confused. reset it before each dma  *   xfer to prevent that from happening. * - reset state engine whenever we get an error. * - check for busmaster state at end of dma.  * - use new highpoint timings. * - detect bus speed using highpoint register. * - use pll if we don't have a clock table. added a 66MHz table that's *   just 2x the 33MHz table. * - removed turnaround. NOTE: we never want to switch between pll and *   pci clocks as the chip can glitch in those cases. the highpoint *   approved workaround slows everything down too much to be useful. in *   addition, we would have to serialize access to each chip. * 	Adrian Sun <a.sun@sun.com> * * add drive timings for 66MHz PCI bus, * fix ATA Cable signal detection, fix incorrect /proc info * add /proc display for per-drive PIO/DMA/UDMA mode and * per-channel ATA-33/66 Cable detect. * 	Duncan Laurie <void@sun.com> * * fixup /proc output for multiple controllers *	Tim Hockin <thockin@sun.com> * * On hpt366:  * Reset the hpt366 on error, reset on dma * Fix disabling Fast Interrupt hpt366. * 	Mike Waychison <crlf@sun.com> * * Added support for 372N clocking and clock switching. The 372N needs * different clocks on read/write. This requires overloading rw_disk and * other deeply crazy things. Thanks to <http://www.hoerstreich.de> for * keeping me sane.  *		Alan Cox <alan@redhat.com> * */#include <linux/config.h>#include <linux/types.h>#include <linux/module.h>#include <linux/kernel.h>#include <linux/delay.h>#include <linux/timer.h>#include <linux/mm.h>#include <linux/ioport.h>#include <linux/blkdev.h>#include <linux/hdreg.h>#include <linux/interrupt.h>#include <linux/pci.h>#include <linux/init.h>#include <linux/ide.h>#include <asm/uaccess.h>#include <asm/io.h>#include <asm/irq.h>/* various tuning parameters */#define HPT_RESET_STATE_ENGINE#undef HPT_DELAY_INTERRUPT#undef HPT_SERIALIZE_IOstatic const char *quirk_drives[] = {	"QUANTUM FIREBALLlct08 08",	"QUANTUM FIREBALLP KA6.4",	"QUANTUM FIREBALLP LM20.4",	"QUANTUM FIREBALLP LM20.5",	NULL};static const char *bad_ata100_5[] = {	"IBM-DTLA-307075",	"IBM-DTLA-307060",	"IBM-DTLA-307045",	"IBM-DTLA-307030",	"IBM-DTLA-307020",	"IBM-DTLA-307015",	"IBM-DTLA-305040",	"IBM-DTLA-305030",	"IBM-DTLA-305020",	"IC35L010AVER07-0",	"IC35L020AVER07-0",	"IC35L030AVER07-0",	"IC35L040AVER07-0",	"IC35L060AVER07-0",	"WDC AC310200R",	NULL};static const char *bad_ata66_4[] = {	"IBM-DTLA-307075",	"IBM-DTLA-307060",	"IBM-DTLA-307045",	"IBM-DTLA-307030",	"IBM-DTLA-307020",	"IBM-DTLA-307015",	"IBM-DTLA-305040",	"IBM-DTLA-305030",	"IBM-DTLA-305020",	"IC35L010AVER07-0",	"IC35L020AVER07-0",	"IC35L030AVER07-0",	"IC35L040AVER07-0",	"IC35L060AVER07-0",	"WDC AC310200R",	NULL};static const char *bad_ata66_3[] = {	"WDC AC310200R",	NULL};static const char *bad_ata33[] = {	"Maxtor 92720U8", "Maxtor 92040U6", "Maxtor 91360U4", "Maxtor 91020U3", "Maxtor 90845U3", "Maxtor 90650U2",	"Maxtor 91360D8", "Maxtor 91190D7", "Maxtor 91020D6", "Maxtor 90845D5", "Maxtor 90680D4", "Maxtor 90510D3", "Maxtor 90340D2",	"Maxtor 91152D8", "Maxtor 91008D7", "Maxtor 90845D6", "Maxtor 90840D6", "Maxtor 90720D5", "Maxtor 90648D5", "Maxtor 90576D4",	"Maxtor 90510D4",	"Maxtor 90432D3", "Maxtor 90288D2", "Maxtor 90256D2",	"Maxtor 91000D8", "Maxtor 90910D8", "Maxtor 90875D7", "Maxtor 90840D7", "Maxtor 90750D6", "Maxtor 90625D5", "Maxtor 90500D4",	"Maxtor 91728D8", "Maxtor 91512D7", "Maxtor 91303D6", "Maxtor 91080D5", "Maxtor 90845D4", "Maxtor 90680D4", "Maxtor 90648D3", "Maxtor 90432D2",	NULL};struct chipset_bus_clock_list_entry {	u8		xfer_speed;	unsigned int	chipset_settings;};/* key for bus clock timings * bit * 0:3    data_high_time. inactive time of DIOW_/DIOR_ for PIO and MW *        DMA. cycles = value + 1 * 4:8    data_low_time. active time of DIOW_/DIOR_ for PIO and MW *        DMA. cycles = value + 1 * 9:12   cmd_high_time. inactive time of DIOW_/DIOR_ during task file *        register access. * 13:17  cmd_low_time. active time of DIOW_/DIOR_ during task file *        register access. * 18:21  udma_cycle_time. clock freq and clock cycles for UDMA xfer. *        during task file register access. * 22:24  pre_high_time. time to initialize 1st cycle for PIO and MW DMA *        xfer. * 25:27  cmd_pre_high_time. time to initialize 1st PIO cycle for task *        register access. * 28     UDMA enable * 29     DMA enable * 30     PIO_MST enable. if set, the chip is in bus master mode during *        PIO. * 31     FIFO enable. */static struct chipset_bus_clock_list_entry forty_base_hpt366[] = {	{	XFER_UDMA_4,	0x900fd943	},	{	XFER_UDMA_3,	0x900ad943	},	{	XFER_UDMA_2,	0x900bd943	},	{	XFER_UDMA_1,	0x9008d943	},	{	XFER_UDMA_0,	0x9008d943	},	{	XFER_MW_DMA_2,	0xa008d943	},	{	XFER_MW_DMA_1,	0xa010d955	},	{	XFER_MW_DMA_0,	0xa010d9fc	},	{	XFER_PIO_4,	0xc008d963	},	{	XFER_PIO_3,	0xc010d974	},	{	XFER_PIO_2,	0xc010d997	},	{	XFER_PIO_1,	0xc010d9c7	},	{	XFER_PIO_0,	0xc018d9d9	},	{	0,		0x0120d9d9	}};static struct chipset_bus_clock_list_entry thirty_three_base_hpt366[] = {	{	XFER_UDMA_4,	0x90c9a731	},	{	XFER_UDMA_3,	0x90cfa731	},	{	XFER_UDMA_2,	0x90caa731	},	{	XFER_UDMA_1,	0x90cba731	},	{	XFER_UDMA_0,	0x90c8a731	},	{	XFER_MW_DMA_2,	0xa0c8a731	},	{	XFER_MW_DMA_1,	0xa0c8a732	},	/* 0xa0c8a733 */	{	XFER_MW_DMA_0,	0xa0c8a797	},	{	XFER_PIO_4,	0xc0c8a731	},	{	XFER_PIO_3,	0xc0c8a742	},	{	XFER_PIO_2,	0xc0d0a753	},	{	XFER_PIO_1,	0xc0d0a7a3	},	/* 0xc0d0a793 */	{	XFER_PIO_0,	0xc0d0a7aa	},	/* 0xc0d0a7a7 */	{	0,		0x0120a7a7	}};static struct chipset_bus_clock_list_entry twenty_five_base_hpt366[] = {	{	XFER_UDMA_4,	0x90c98521	},	{	XFER_UDMA_3,	0x90cf8521	},	{	XFER_UDMA_2,	0x90cf8521	},	{	XFER_UDMA_1,	0x90cb8521	},	{	XFER_UDMA_0,	0x90cb8521	},	{	XFER_MW_DMA_2,	0xa0ca8521	},	{	XFER_MW_DMA_1,	0xa0ca8532	},	{	XFER_MW_DMA_0,	0xa0ca8575	},	{	XFER_PIO_4,	0xc0ca8521	},	{	XFER_PIO_3,	0xc0ca8532	},	{	XFER_PIO_2,	0xc0ca8542	},	{	XFER_PIO_1,	0xc0d08572	},	{	XFER_PIO_0,	0xc0d08585	},	{	0,		0x01208585	}};/* from highpoint documentation. these are old values */static struct chipset_bus_clock_list_entry thirty_three_base_hpt370[] = {/*	{	XFER_UDMA_5,	0x1A85F442,	0x16454e31	}, */	{	XFER_UDMA_5,	0x16454e31	},	{	XFER_UDMA_4,	0x16454e31	},	{	XFER_UDMA_3,	0x166d4e31	},	{	XFER_UDMA_2,	0x16494e31	},	{	XFER_UDMA_1,	0x164d4e31	},	{	XFER_UDMA_0,	0x16514e31	},	{	XFER_MW_DMA_2,	0x26514e21	},	{	XFER_MW_DMA_1,	0x26514e33	},	{	XFER_MW_DMA_0,	0x26514e97	},	{	XFER_PIO_4,	0x06514e21	},	{	XFER_PIO_3,	0x06514e22	},	{	XFER_PIO_2,	0x06514e33	},	{	XFER_PIO_1,	0x06914e43	},	{	XFER_PIO_0,	0x06914e57	},	{	0,		0x06514e57	}};static struct chipset_bus_clock_list_entry sixty_six_base_hpt370[] = {	{	XFER_UDMA_5,	0x14846231	},	{	XFER_UDMA_4,	0x14886231	},	{	XFER_UDMA_3,	0x148c6231	},	{	XFER_UDMA_2,	0x148c6231	},	{	XFER_UDMA_1,	0x14906231	},	{	XFER_UDMA_0,	0x14986231	},	{	XFER_MW_DMA_2,	0x26514e21	},	{	XFER_MW_DMA_1,	0x26514e33	},	{	XFER_MW_DMA_0,	0x26514e97	},	{	XFER_PIO_4,	0x06514e21	},	{	XFER_PIO_3,	0x06514e22	},	{	XFER_PIO_2,	0x06514e33	},	{	XFER_PIO_1,	0x06914e43	},	{	XFER_PIO_0,	0x06914e57	},	{	0,		0x06514e57	}};/* these are the current (4 sep 2001) timings from highpoint */static struct chipset_bus_clock_list_entry thirty_three_base_hpt370a[] = {	{	XFER_UDMA_5,	0x12446231	},	{	XFER_UDMA_4,	0x12446231	},	{	XFER_UDMA_3,	0x126c6231	},	{	XFER_UDMA_2,	0x12486231	},	{	XFER_UDMA_1,	0x124c6233	},	{	XFER_UDMA_0,	0x12506297	},	{	XFER_MW_DMA_2,	0x22406c31	},	{	XFER_MW_DMA_1,	0x22406c33	},	{	XFER_MW_DMA_0,	0x22406c97	},	{	XFER_PIO_4,	0x06414e31	},	{	XFER_PIO_3,	0x06414e42	},	{	XFER_PIO_2,	0x06414e53	},	{	XFER_PIO_1,	0x06814e93	},	{	XFER_PIO_0,	0x06814ea7	},	{	0,		0x06814ea7	}};/* 2x 33MHz timings */static struct chipset_bus_clock_list_entry sixty_six_base_hpt370a[] = {	{	XFER_UDMA_5,	0x1488e673	},	{	XFER_UDMA_4,	0x1488e673	},	{	XFER_UDMA_3,	0x1498e673	},	{	XFER_UDMA_2,	0x1490e673	},	{	XFER_UDMA_1,	0x1498e677	},	{	XFER_UDMA_0,	0x14a0e73f	},	{	XFER_MW_DMA_2,	0x2480fa73	},	{	XFER_MW_DMA_1,	0x2480fa77	}, 	{	XFER_MW_DMA_0,	0x2480fb3f	},	{	XFER_PIO_4,	0x0c82be73	},	{	XFER_PIO_3,	0x0c82be95	},	{	XFER_PIO_2,	0x0c82beb7	},	{	XFER_PIO_1,	0x0d02bf37	},	{	XFER_PIO_0,	0x0d02bf5f	},	{	0,		0x0d02bf5f	}};static struct chipset_bus_clock_list_entry fifty_base_hpt370a[] = {	{	XFER_UDMA_5,	0x12848242	},	{	XFER_UDMA_4,	0x12ac8242	},	{	XFER_UDMA_3,	0x128c8242	},	{	XFER_UDMA_2,	0x120c8242	},	{	XFER_UDMA_1,	0x12148254	},	{	XFER_UDMA_0,	0x121882ea	},	{	XFER_MW_DMA_2,	0x22808242	},	{	XFER_MW_DMA_1,	0x22808254	},	{	XFER_MW_DMA_0,	0x228082ea	},	{	XFER_PIO_4,	0x0a81f442	},	{	XFER_PIO_3,	0x0a81f443	},	{	XFER_PIO_2,	0x0a81f454	},	{	XFER_PIO_1,	0x0ac1f465	},	{	XFER_PIO_0,	0x0ac1f48a	},	{	0,		0x0ac1f48a	}};static struct chipset_bus_clock_list_entry thirty_three_base_hpt372[] = {	{	XFER_UDMA_6,	0x1c81dc62	},	{	XFER_UDMA_5,	0x1c6ddc62	},	{	XFER_UDMA_4,	0x1c8ddc62	},	{	XFER_UDMA_3,	0x1c8edc62	},	/* checkme */	{	XFER_UDMA_2,	0x1c91dc62	},	{	XFER_UDMA_1,	0x1c9adc62	},	/* checkme */	{	XFER_UDMA_0,	0x1c82dc62	},	/* checkme */	{	XFER_MW_DMA_2,	0x2c829262	},	{	XFER_MW_DMA_1,	0x2c829266	},	/* checkme */	{	XFER_MW_DMA_0,	0x2c82922e	},	/* checkme */	{	XFER_PIO_4,	0x0c829c62	},	{	XFER_PIO_3,	0x0c829c84	},	{	XFER_PIO_2,	0x0c829ca6	},	{	XFER_PIO_1,	0x0d029d26	},	{	XFER_PIO_0,	0x0d029d5e	},	{	0,		0x0d029d5e	}};static struct chipset_bus_clock_list_entry fifty_base_hpt372[] = {	{	XFER_UDMA_5,	0x12848242	},	{	XFER_UDMA_4,	0x12ac8242	},	{	XFER_UDMA_3,	0x128c8242	},	{	XFER_UDMA_2,	0x120c8242	},	{	XFER_UDMA_1,	0x12148254	},	{	XFER_UDMA_0,	0x121882ea	},	{	XFER_MW_DMA_2,	0x22808242	},	{	XFER_MW_DMA_1,	0x22808254	},	{	XFER_MW_DMA_0,	0x228082ea	},	{	XFER_PIO_4,	0x0a81f442	},	{	XFER_PIO_3,	0x0a81f443	},	{	XFER_PIO_2,	0x0a81f454	},	{	XFER_PIO_1,	0x0ac1f465	},	{	XFER_PIO_0,	0x0ac1f48a	},	{	0,		0x0a81f443	}};static struct chipset_bus_clock_list_entry sixty_six_base_hpt372[] = {	{	XFER_UDMA_6,	0x1c869c62	},	{	XFER_UDMA_5,	0x1cae9c62	},	{	XFER_UDMA_4,	0x1c8a9c62	},	{	XFER_UDMA_3,	0x1c8e9c62	},	{	XFER_UDMA_2,	0x1c929c62	},	{	XFER_UDMA_1,	0x1c9a9c62	},	{	XFER_UDMA_0,	0x1c829c62	},	{	XFER_MW_DMA_2,	0x2c829c62	},	{	XFER_MW_DMA_1,	0x2c829c66	},	{	XFER_MW_DMA_0,	0x2c829d2e	},	{	XFER_PIO_4,	0x0c829c62	},	{	XFER_PIO_3,	0x0c829c84	},	{	XFER_PIO_2,	0x0c829ca6	},	{	XFER_PIO_1,	0x0d029d26	},	{	XFER_PIO_0,	0x0d029d5e	},	{	0,		0x0d029d26	}};static struct chipset_bus_clock_list_entry thirty_three_base_hpt374[] = {	{	XFER_UDMA_6,	0x12808242	},	{	XFER_UDMA_5,	0x12848242	},	{	XFER_UDMA_4,	0x12ac8242	},	{	XFER_UDMA_3,	0x128c8242	},	{	XFER_UDMA_2,	0x120c8242	},	{	XFER_UDMA_1,	0x12148254	},	{	XFER_UDMA_0,	0x121882ea	},	{	XFER_MW_DMA_2,	0x22808242	},	{	XFER_MW_DMA_1,	0x22808254	},	{	XFER_MW_DMA_0,	0x228082ea	},	{	XFER_PIO_4,	0x0a81f442	},	{	XFER_PIO_3,	0x0a81f443	},	{	XFER_PIO_2,	0x0a81f454	},	{	XFER_PIO_1,	0x0ac1f465	},	{	XFER_PIO_0,	0x0ac1f48a	},	{	0,		0x06814e93	}};/* FIXME: 50MHz timings for HPT374 */#if 0static struct chipset_bus_clock_list_entry sixty_six_base_hpt374[] = {	{	XFER_UDMA_6,	0x12406231	},	/* checkme */	{	XFER_UDMA_5,	0x12446231	},	/* 0x14846231 */	{	XFER_UDMA_4,	0x16814ea7	},	/* 0x14886231 */	{	XFER_UDMA_3,	0x16814ea7	},	/* 0x148c6231 */	{	XFER_UDMA_2,	0x16814ea7	},	/* 0x148c6231 */	{	XFER_UDMA_1,	0x16814ea7	},	/* 0x14906231 */	{	XFER_UDMA_0,	0x16814ea7	},	/* 0x14986231 */	{	XFER_MW_DMA_2,	0x16814ea7	},	/* 0x26514e21 */	{	XFER_MW_DMA_1,	0x16814ea7	},	/* 0x26514e97 */	{	XFER_MW_DMA_0,	0x16814ea7	},	/* 0x26514e97 */	{	XFER_PIO_4,	0x06814ea7	},	/* 0x06514e21 */	{	XFER_PIO_3,	0x06814ea7	},	/* 0x06514e22 */	{	XFER_PIO_2,	0x06814ea7	},	/* 0x06514e33 */	{	XFER_PIO_1,	0x06814ea7	},	/* 0x06914e43 */	{	XFER_PIO_0,	0x06814ea7	},	/* 0x06914e57 */

⌨️ 快捷键说明

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