📄 cy82c693.c
字号:
/* * linux/drivers/ide/pci/cy82c693.c Version 0.40 Sep. 10, 2002 * * Copyright (C) 1998-2000 Andreas S. Krebs (akrebs@altavista.net), Maintainer * Copyright (C) 1998-2002 Andre Hedrick <andre@linux-ide.org>, Integrator * * CYPRESS CY82C693 chipset IDE controller * * The CY82C693 chipset is used on Digital's PC-Alpha 164SX boards. * Writing the driver was quite simple, since most of the job is * done by the generic pci-ide support. * The hard part was finding the CY82C693's datasheet on Cypress's * web page :-(. But Altavista solved this problem :-). * * * Notes: * - I recently got a 16.8G IBM DTTA, so I was able to test it with * a large and fast disk - the results look great, so I'd say the * driver is working fine :-) * hdparm -t reports 8.17 MB/sec at about 6% CPU usage for the DTTA * - this is my first linux driver, so there's probably a lot of room * for optimizations and bug fixing, so feel free to do it. * - use idebus=xx parameter to set PCI bus speed - needed to calc * timings for PIO modes (default will be 40) * - if using PIO mode it's a good idea to set the PIO mode and * 32-bit I/O support (if possible), e.g. hdparm -p2 -c1 /dev/hda * - I had some problems with my IBM DHEA with PIO modes < 2 * (lost interrupts) ????? * - first tests with DMA look okay, they seem to work, but there is a * problem with sound - the BusMaster IDE TimeOut should fixed this * * Ancient History: * AMH@1999-08-24: v0.34 init_cy82c693_chip moved to pci_init_cy82c693 * ASK@1999-01-23: v0.33 made a few minor code clean ups * removed DMA clock speed setting by default * added boot message * ASK@1998-11-01: v0.32 added support to set BusMaster IDE TimeOut * added support to set DMA Controller Clock Speed * ASK@1998-10-31: v0.31 fixed problem with setting to high DMA modes * on some drives. * ASK@1998-10-29: v0.3 added support to set DMA modes * ASK@1998-10-28: v0.2 added support to set PIO modes * ASK@1998-10-27: v0.1 first version - chipset detection * */#include <linux/config.h>#include <linux/module.h>#include <linux/types.h>#include <linux/pci.h>#include <linux/delay.h>#include <linux/ide.h>#include <linux/init.h>#include <asm/io.h>/* the current version */#define CY82_VERSION "CY82C693U driver v0.34 99-13-12 Andreas S. Krebs (akrebs@altavista.net)"/* * The following are used to debug the driver. */#define CY82C693_DEBUG_LOGS 0#define CY82C693_DEBUG_INFO 0/* define CY82C693_SETDMA_CLOCK to set DMA Controller Clock Speed to ATCLK */#undef CY82C693_SETDMA_CLOCK/* * NOTE: the value for busmaster timeout is tricky and I got it by * trial and error! By using a to low value will cause DMA timeouts * and drop IDE performance, and by using a to high value will cause * audio playback to scatter. * If you know a better value or how to calc it, please let me know. *//* twice the value written in cy82c693ub datasheet */#define BUSMASTER_TIMEOUT 0x50/* * the value above was tested on my machine and it seems to work okay *//* here are the offset definitions for the registers */#define CY82_IDE_CMDREG 0x04#define CY82_IDE_ADDRSETUP 0x48#define CY82_IDE_MASTER_IOR 0x4C#define CY82_IDE_MASTER_IOW 0x4D#define CY82_IDE_SLAVE_IOR 0x4E#define CY82_IDE_SLAVE_IOW 0x4F#define CY82_IDE_MASTER_8BIT 0x50#define CY82_IDE_SLAVE_8BIT 0x51#define CY82_INDEX_PORT 0x22#define CY82_DATA_PORT 0x23#define CY82_INDEX_CTRLREG1 0x01#define CY82_INDEX_CHANNEL0 0x30#define CY82_INDEX_CHANNEL1 0x31#define CY82_INDEX_TIMEOUT 0x32/* the max PIO mode - from datasheet */#define CY82C693_MAX_PIO 4/* the min and max PCI bus speed in MHz - from datasheet */#define CY82C963_MIN_BUS_SPEED 25#define CY82C963_MAX_BUS_SPEED 33/* the struct for the PIO mode timings */typedef struct pio_clocks_s { u8 address_time; /* Address setup (clocks) */ u8 time_16r; /* clocks for 16bit IOR (0xF0=Active/data, 0x0F=Recovery) */ u8 time_16w; /* clocks for 16bit IOW (0xF0=Active/data, 0x0F=Recovery) */ u8 time_8; /* clocks for 8bit (0xF0=Active/data, 0x0F=Recovery) */} pio_clocks_t;/* * calc clocks using bus_speed * returns (rounded up) time in bus clocks for time in ns */static int calc_clk (int time, int bus_speed){ int clocks; clocks = (time*bus_speed+999)/1000 -1; if (clocks < 0) clocks = 0; if (clocks > 0x0F) clocks = 0x0F; return clocks;}/* * compute the values for the clock registers for PIO * mode and pci_clk [MHz] speed * * NOTE: for mode 0,1 and 2 drives 8-bit IDE command control registers are used * for mode 3 and 4 drives 8 and 16-bit timings are the same * */ static void compute_clocks (u8 pio, pio_clocks_t *p_pclk){ int clk1, clk2; int bus_speed = system_bus_clock(); /* get speed of PCI bus */ /* we don't check against CY82C693's min and max speed, * so you can play with the idebus=xx parameter */ if (pio > CY82C693_MAX_PIO) pio = CY82C693_MAX_PIO; /* let's calc the address setup time clocks */ p_pclk->address_time = (u8)calc_clk(ide_pio_timings[pio].setup_time, bus_speed); /* let's calc the active and recovery time clocks */ clk1 = calc_clk(ide_pio_timings[pio].active_time, bus_speed); /* calc recovery timing */ clk2 = ide_pio_timings[pio].cycle_time - ide_pio_timings[pio].active_time - ide_pio_timings[pio].setup_time; clk2 = calc_clk(clk2, bus_speed); clk1 = (clk1<<4)|clk2; /* combine active and recovery clocks */ /* note: we use the same values for 16bit IOR and IOW * those are all the same, since I don't have other * timings than those from ide-lib.c */ p_pclk->time_16r = (u8)clk1; p_pclk->time_16w = (u8)clk1; /* what are good values for 8bit ?? */ p_pclk->time_8 = (u8)clk1;}/* * set DMA mode a specific channel for CY82C693 */static void cy82c693_dma_enable (ide_drive_t *drive, int mode, int single){ u8 index = 0, data = 0; if (mode>2) /* make sure we set a valid mode */ mode = 2; if (mode > drive->id->tDMA) /* to be absolutly sure we have a valid mode */ mode = drive->id->tDMA; index = (HWIF(drive)->channel==0) ? CY82_INDEX_CHANNEL0 : CY82_INDEX_CHANNEL1;#if CY82C693_DEBUG_LOGS /* for debug let's show the previous values */ HWIF(drive)->OUTB(index, CY82_INDEX_PORT); data = HWIF(drive)->INB(CY82_DATA_PORT); printk (KERN_INFO "%s (ch=%d, dev=%d): DMA mode is %d (single=%d)\n", drive->name, HWIF(drive)->channel, drive->select.b.unit, (data&0x3), ((data>>2)&1));#endif /* CY82C693_DEBUG_LOGS */ data = (u8)mode|(u8)(single<<2); HWIF(drive)->OUTB(index, CY82_INDEX_PORT); HWIF(drive)->OUTB(data, CY82_DATA_PORT);#if CY82C693_DEBUG_INFO printk(KERN_INFO "%s (ch=%d, dev=%d): set DMA mode to %d (single=%d)\n", drive->name, HWIF(drive)->channel, drive->select.b.unit, mode, single);#endif /* CY82C693_DEBUG_INFO */ /* * note: below we set the value for Bus Master IDE TimeOut Register * I'm not absolutly sure what this does, but it solved my problem * with IDE DMA and sound, so I now can play sound and work with * my IDE driver at the same time :-) * * If you know the correct (best) value for this register please * let me know - ASK */ data = BUSMASTER_TIMEOUT; HWIF(drive)->OUTB(CY82_INDEX_TIMEOUT, CY82_INDEX_PORT); HWIF(drive)->OUTB(data, CY82_DATA_PORT);#if CY82C693_DEBUG_INFO printk (KERN_INFO "%s: Set IDE Bus Master TimeOut Register to 0x%X\n", drive->name, data);#endif /* CY82C693_DEBUG_INFO */}/* * used to set DMA mode for CY82C693 (single and multi modes) */static int cy82c693_ide_dma_on (ide_drive_t *drive){ struct hd_driveid *id = drive->id;#if CY82C693_DEBUG_INFO printk (KERN_INFO "dma_on: %s\n", drive->name);#endif /* CY82C693_DEBUG_INFO */ if (id != NULL) { /* Enable DMA on any drive that has DMA * (multi or single) enabled */ if (id->field_valid & 2) { /* regular DMA */ int mmode, smode; mmode = id->dma_mword & (id->dma_mword >> 8); smode = id->dma_1word & (id->dma_1word >> 8); if (mmode != 0) { /* enable multi */ cy82c693_dma_enable(drive, (mmode >> 1), 0); } else if (smode != 0) { /* enable single */ cy82c693_dma_enable(drive, (smode >> 1), 1);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -