2006-08-29 22:12:40 +00:00
|
|
|
/*
|
|
|
|
* pata_optidma.c - Opti DMA PATA for new ATA layer
|
|
|
|
* (C) 2006 Red Hat Inc
|
|
|
|
* Alan Cox <alan@redhat.com>
|
|
|
|
*
|
|
|
|
* The Opti DMA controllers are related to the older PIO PCI controllers
|
|
|
|
* and indeed the VLB ones. The main differences are that the timing
|
|
|
|
* numbers are now based off PCI clocks not VLB and differ, and that
|
|
|
|
* MWDMA is supported.
|
|
|
|
*
|
|
|
|
* This driver should support Viper-N+, FireStar, FireStar Plus.
|
|
|
|
*
|
|
|
|
* These devices support virtual DMA for read (aka the CS5520). Later
|
|
|
|
* chips support UDMA33, but only if the rest of the board logic does,
|
|
|
|
* so you have to get this right. We don't support the virtual DMA
|
|
|
|
* but we do handle UDMA.
|
|
|
|
*
|
|
|
|
* Bits that are worth knowing
|
|
|
|
* Most control registers are shadowed into I/O registers
|
|
|
|
* 0x1F5 bit 0 tells you if the PCI/VLB clock is 33 or 25Mhz
|
|
|
|
* Virtual DMA registers *move* between rev 0x02 and rev 0x10
|
|
|
|
* UDMA requires a 66MHz FSB
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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/libata.h>
|
|
|
|
|
|
|
|
#define DRV_NAME "pata_optidma"
|
2007-03-27 05:43:43 +00:00
|
|
|
#define DRV_VERSION "0.3.2"
|
2006-08-29 22:12:40 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
READ_REG = 0, /* index of Read cycle timing register */
|
|
|
|
WRITE_REG = 1, /* index of Write cycle timing register */
|
|
|
|
CNTRL_REG = 3, /* index of Control register */
|
|
|
|
STRAP_REG = 5, /* index of Strap register */
|
|
|
|
MISC_REG = 6 /* index of Miscellaneous register */
|
|
|
|
};
|
|
|
|
|
|
|
|
static int pci_clock; /* 0 = 33 1 = 25 */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* optidma_pre_reset - probe begin
|
2007-08-06 09:36:23 +00:00
|
|
|
* @link: ATA link
|
libata: add deadline support to prereset and reset methods
Add @deadline to prereset and reset methods and make them honor it.
ata_wait_ready() which directly takes @deadline is implemented to be
used as the wait function. This patch is in preparation for EH timing
improvements.
* ata_wait_ready() never does busy sleep. It's only used from EH and
no wait in EH is that urgent. This function also prints 'be
patient' message automatically after 5 secs of waiting if more than
3 secs is remaining till deadline.
* ata_bus_post_reset() now fails with error code if any of its wait
fails. This is important because earlier reset tries will have
shorter timeout than the spec requires. If a device fails to
respond before the short timeout, reset should be retried with
longer timeout rather than silently ignoring the device.
There are three behavior differences.
1. Timeout is applied to both devices at once, not separately. This
is more consistent with what the spec says.
2. When a device passes devchk but fails to become ready before
deadline. Previouly, post_reset would just succeed and let
device classification remove the device. New code fails the
reset thus causing reset retry. After a few times, EH will give
up disabling the port.
3. When slave device passes devchk but fails to become accessible
(TF-wise) after reset. Original code disables dev1 after 30s
timeout and continues as if the device doesn't exist, while the
patched code fails reset. When this happens, new code fails
reset on whole port rather than proceeding with only the primary
device.
If the failing device is suffering transient problems, new code
retries reset which is a better behavior. If the failing device is
actually broken, the net effect is identical to it, but not to the
other device sharing the channel. In the previous code, reset would
have succeeded after 30s thus detecting the working one. In the new
code, reset fails and whole port gets disabled. IMO, it's a
pathological case anyway (broken device sharing bus with working
one) and doesn't really matter.
* ata_bus_softreset() is changed to return error code from
ata_bus_post_reset(). It used to return 0 unconditionally.
* Spin up waiting is to be removed and not converted to honor
deadline.
* To be on the safe side, deadline is set to 40s for the time being.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
2007-02-02 07:50:52 +00:00
|
|
|
* @deadline: deadline jiffies for the operation
|
2006-08-29 22:12:40 +00:00
|
|
|
*
|
|
|
|
* Set up cable type and use generic probe init
|
|
|
|
*/
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2007-08-06 09:36:23 +00:00
|
|
|
static int optidma_pre_reset(struct ata_link *link, unsigned long deadline)
|
2006-08-29 22:12:40 +00:00
|
|
|
{
|
2007-08-06 09:36:23 +00:00
|
|
|
struct ata_port *ap = link->ap;
|
2006-08-29 22:12:40 +00:00
|
|
|
struct pci_dev *pdev = to_pci_dev(ap->host->dev);
|
2006-08-31 04:03:49 +00:00
|
|
|
static const struct pci_bits optidma_enable_bits = {
|
2006-08-29 22:12:40 +00:00
|
|
|
0x40, 1, 0x08, 0x00
|
|
|
|
};
|
|
|
|
|
2006-09-26 16:53:38 +00:00
|
|
|
if (ap->port_no && !pci_test_config_bits(pdev, &optidma_enable_bits))
|
|
|
|
return -ENOENT;
|
|
|
|
|
2008-04-07 13:47:16 +00:00
|
|
|
return ata_sff_prereset(link, deadline);
|
2006-08-29 22:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* optidma_unlock - unlock control registers
|
|
|
|
* @ap: ATA port
|
|
|
|
*
|
|
|
|
* Unlock the control register block for this adapter. Registers must not
|
|
|
|
* be unlocked in a situation where libata might look at them.
|
|
|
|
*/
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
static void optidma_unlock(struct ata_port *ap)
|
|
|
|
{
|
2007-02-01 06:06:36 +00:00
|
|
|
void __iomem *regio = ap->ioaddr.cmd_addr;
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
/* These 3 unlock the control register access */
|
2007-02-01 06:06:36 +00:00
|
|
|
ioread16(regio + 1);
|
|
|
|
ioread16(regio + 1);
|
|
|
|
iowrite8(3, regio + 2);
|
2006-08-29 22:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* optidma_lock - issue temporary relock
|
|
|
|
* @ap: ATA port
|
|
|
|
*
|
|
|
|
* Re-lock the configuration register settings.
|
|
|
|
*/
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
static void optidma_lock(struct ata_port *ap)
|
|
|
|
{
|
2007-02-01 06:06:36 +00:00
|
|
|
void __iomem *regio = ap->ioaddr.cmd_addr;
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
/* Relock */
|
2007-02-01 06:06:36 +00:00
|
|
|
iowrite8(0x83, regio + 2);
|
2006-08-29 22:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-03-27 05:43:43 +00:00
|
|
|
* optidma_mode_setup - set mode data
|
2006-08-29 22:12:40 +00:00
|
|
|
* @ap: ATA interface
|
|
|
|
* @adev: ATA device
|
|
|
|
* @mode: Mode to set
|
|
|
|
*
|
|
|
|
* Called to do the DMA or PIO mode setup. Timing numbers are all
|
|
|
|
* pre computed to keep the code clean. There are two tables depending
|
|
|
|
* on the hardware clock speed.
|
|
|
|
*
|
|
|
|
* WARNING: While we do this the IDE registers vanish. If we take an
|
|
|
|
* IRQ here we depend on the host set locking to avoid catastrophe.
|
|
|
|
*/
|
|
|
|
|
2007-03-27 05:43:43 +00:00
|
|
|
static void optidma_mode_setup(struct ata_port *ap, struct ata_device *adev, u8 mode)
|
2006-08-29 22:12:40 +00:00
|
|
|
{
|
|
|
|
struct ata_device *pair = ata_dev_pair(adev);
|
|
|
|
int pio = adev->pio_mode - XFER_PIO_0;
|
|
|
|
int dma = adev->dma_mode - XFER_MW_DMA_0;
|
2007-02-01 06:06:36 +00:00
|
|
|
void __iomem *regio = ap->ioaddr.cmd_addr;
|
2006-08-29 22:12:40 +00:00
|
|
|
u8 addr;
|
|
|
|
|
|
|
|
/* Address table precomputed with a DCLK of 2 */
|
|
|
|
static const u8 addr_timing[2][5] = {
|
|
|
|
{ 0x30, 0x20, 0x20, 0x10, 0x10 },
|
|
|
|
{ 0x20, 0x20, 0x10, 0x10, 0x10 }
|
|
|
|
};
|
|
|
|
static const u8 data_rec_timing[2][5] = {
|
|
|
|
{ 0x59, 0x46, 0x30, 0x20, 0x20 },
|
|
|
|
{ 0x46, 0x32, 0x20, 0x20, 0x10 }
|
|
|
|
};
|
|
|
|
static const u8 dma_data_rec_timing[2][3] = {
|
|
|
|
{ 0x76, 0x20, 0x20 },
|
|
|
|
{ 0x54, 0x20, 0x10 }
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Switch from IDE to control mode */
|
|
|
|
optidma_unlock(ap);
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* As with many controllers the address setup time is shared
|
|
|
|
* and must suit both devices if present. FIXME: Check if we
|
|
|
|
* need to look at slowest of PIO/DMA mode of either device
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (mode >= XFER_MW_DMA_0)
|
|
|
|
addr = 0;
|
|
|
|
else
|
|
|
|
addr = addr_timing[pci_clock][pio];
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
if (pair) {
|
|
|
|
u8 pair_addr;
|
|
|
|
/* Hardware constraint */
|
|
|
|
if (pair->dma_mode)
|
|
|
|
pair_addr = 0;
|
|
|
|
else
|
|
|
|
pair_addr = addr_timing[pci_clock][pair->pio_mode - XFER_PIO_0];
|
|
|
|
if (pair_addr > addr)
|
|
|
|
addr = pair_addr;
|
|
|
|
}
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
/* Commence primary programming sequence */
|
|
|
|
/* First we load the device number into the timing select */
|
2007-02-01 06:06:36 +00:00
|
|
|
iowrite8(adev->devno, regio + MISC_REG);
|
2006-08-29 22:12:40 +00:00
|
|
|
/* Now we load the data timings into read data/write data */
|
|
|
|
if (mode < XFER_MW_DMA_0) {
|
2007-02-01 06:06:36 +00:00
|
|
|
iowrite8(data_rec_timing[pci_clock][pio], regio + READ_REG);
|
|
|
|
iowrite8(data_rec_timing[pci_clock][pio], regio + WRITE_REG);
|
2006-08-29 22:12:40 +00:00
|
|
|
} else if (mode < XFER_UDMA_0) {
|
2007-02-01 06:06:36 +00:00
|
|
|
iowrite8(dma_data_rec_timing[pci_clock][dma], regio + READ_REG);
|
|
|
|
iowrite8(dma_data_rec_timing[pci_clock][dma], regio + WRITE_REG);
|
2006-08-29 22:12:40 +00:00
|
|
|
}
|
|
|
|
/* Finally we load the address setup into the misc register */
|
2007-02-01 06:06:36 +00:00
|
|
|
iowrite8(addr | adev->devno, regio + MISC_REG);
|
2006-08-29 22:12:40 +00:00
|
|
|
|
|
|
|
/* Programming sequence complete, timing 0 dev 0, timing 1 dev 1 */
|
2007-02-01 06:06:36 +00:00
|
|
|
iowrite8(0x85, regio + CNTRL_REG);
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
/* Switch back to IDE mode */
|
|
|
|
optidma_lock(ap);
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
/* Note: at this point our programming is incomplete. We are
|
|
|
|
not supposed to program PCI 0x43 "things we hacked onto the chip"
|
|
|
|
until we've done both sets of PIO/DMA timings */
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-03-27 05:43:43 +00:00
|
|
|
* optiplus_mode_setup - DMA setup for Firestar Plus
|
2006-08-29 22:12:40 +00:00
|
|
|
* @ap: ATA port
|
|
|
|
* @adev: device
|
|
|
|
* @mode: desired mode
|
|
|
|
*
|
|
|
|
* The Firestar plus has additional UDMA functionality for UDMA0-2 and
|
|
|
|
* requires we do some additional work. Because the base work we must do
|
|
|
|
* is mostly shared we wrap the Firestar setup functionality in this
|
|
|
|
* one
|
|
|
|
*/
|
|
|
|
|
2007-03-27 05:43:43 +00:00
|
|
|
static void optiplus_mode_setup(struct ata_port *ap, struct ata_device *adev, u8 mode)
|
2006-08-29 22:12:40 +00:00
|
|
|
{
|
|
|
|
struct pci_dev *pdev = to_pci_dev(ap->host->dev);
|
|
|
|
u8 udcfg;
|
|
|
|
u8 udslave;
|
|
|
|
int dev2 = 2 * adev->devno;
|
|
|
|
int unit = 2 * ap->port_no + adev->devno;
|
|
|
|
int udma = mode - XFER_UDMA_0;
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
pci_read_config_byte(pdev, 0x44, &udcfg);
|
|
|
|
if (mode <= XFER_UDMA_0) {
|
|
|
|
udcfg &= ~(1 << unit);
|
2007-03-27 05:43:43 +00:00
|
|
|
optidma_mode_setup(ap, adev, adev->dma_mode);
|
2006-08-29 22:12:40 +00:00
|
|
|
} else {
|
|
|
|
udcfg |= (1 << unit);
|
|
|
|
if (ap->port_no) {
|
|
|
|
pci_read_config_byte(pdev, 0x45, &udslave);
|
|
|
|
udslave &= ~(0x03 << dev2);
|
|
|
|
udslave |= (udma << dev2);
|
|
|
|
pci_write_config_byte(pdev, 0x45, udslave);
|
|
|
|
} else {
|
|
|
|
udcfg &= ~(0x30 << dev2);
|
|
|
|
udcfg |= (udma << dev2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pci_write_config_byte(pdev, 0x44, udcfg);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* optidma_set_pio_mode - PIO setup callback
|
|
|
|
* @ap: ATA port
|
|
|
|
* @adev: Device
|
|
|
|
*
|
|
|
|
* The libata core provides separate functions for handling PIO and
|
|
|
|
* DMA programming. The architecture of the Firestar makes it easier
|
|
|
|
* for us to have a common function so we provide wrappers
|
|
|
|
*/
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
static void optidma_set_pio_mode(struct ata_port *ap, struct ata_device *adev)
|
|
|
|
{
|
2007-03-27 05:43:43 +00:00
|
|
|
optidma_mode_setup(ap, adev, adev->pio_mode);
|
2006-08-29 22:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* optidma_set_dma_mode - DMA setup callback
|
|
|
|
* @ap: ATA port
|
|
|
|
* @adev: Device
|
|
|
|
*
|
|
|
|
* The libata core provides separate functions for handling PIO and
|
|
|
|
* DMA programming. The architecture of the Firestar makes it easier
|
|
|
|
* for us to have a common function so we provide wrappers
|
|
|
|
*/
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
static void optidma_set_dma_mode(struct ata_port *ap, struct ata_device *adev)
|
|
|
|
{
|
2007-03-27 05:43:43 +00:00
|
|
|
optidma_mode_setup(ap, adev, adev->dma_mode);
|
2006-08-29 22:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* optiplus_set_pio_mode - PIO setup callback
|
|
|
|
* @ap: ATA port
|
|
|
|
* @adev: Device
|
|
|
|
*
|
|
|
|
* The libata core provides separate functions for handling PIO and
|
|
|
|
* DMA programming. The architecture of the Firestar makes it easier
|
|
|
|
* for us to have a common function so we provide wrappers
|
|
|
|
*/
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
static void optiplus_set_pio_mode(struct ata_port *ap, struct ata_device *adev)
|
|
|
|
{
|
2007-03-27 05:43:43 +00:00
|
|
|
optiplus_mode_setup(ap, adev, adev->pio_mode);
|
2006-08-29 22:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* optiplus_set_dma_mode - DMA setup callback
|
|
|
|
* @ap: ATA port
|
|
|
|
* @adev: Device
|
|
|
|
*
|
|
|
|
* The libata core provides separate functions for handling PIO and
|
|
|
|
* DMA programming. The architecture of the Firestar makes it easier
|
|
|
|
* for us to have a common function so we provide wrappers
|
|
|
|
*/
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
static void optiplus_set_dma_mode(struct ata_port *ap, struct ata_device *adev)
|
|
|
|
{
|
2007-03-27 05:43:43 +00:00
|
|
|
optiplus_mode_setup(ap, adev, adev->dma_mode);
|
2006-08-29 22:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* optidma_make_bits - PCI setup helper
|
|
|
|
* @adev: ATA device
|
|
|
|
*
|
|
|
|
* Turn the ATA device setup into PCI configuration bits
|
|
|
|
* for register 0x43 and return the two bits needed.
|
|
|
|
*/
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
static u8 optidma_make_bits43(struct ata_device *adev)
|
|
|
|
{
|
|
|
|
static const u8 bits43[5] = {
|
|
|
|
0, 0, 0, 1, 2
|
|
|
|
};
|
|
|
|
if (!ata_dev_enabled(adev))
|
|
|
|
return 0;
|
|
|
|
if (adev->dma_mode)
|
|
|
|
return adev->dma_mode - XFER_MW_DMA_0;
|
|
|
|
return bits43[adev->pio_mode - XFER_PIO_0];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-03-27 05:43:43 +00:00
|
|
|
* optidma_set_mode - mode setup
|
2007-08-06 09:36:23 +00:00
|
|
|
* @link: link to set up
|
2006-08-29 22:12:40 +00:00
|
|
|
*
|
2007-03-27 05:43:43 +00:00
|
|
|
* Use the standard setup to tune the chipset and then finalise the
|
|
|
|
* configuration by writing the nibble of extra bits of data into
|
|
|
|
* the chip.
|
2006-08-29 22:12:40 +00:00
|
|
|
*/
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2007-08-06 09:36:23 +00:00
|
|
|
static int optidma_set_mode(struct ata_link *link, struct ata_device **r_failed)
|
2006-08-29 22:12:40 +00:00
|
|
|
{
|
2007-08-06 09:36:23 +00:00
|
|
|
struct ata_port *ap = link->ap;
|
2006-08-29 22:12:40 +00:00
|
|
|
u8 r;
|
|
|
|
int nybble = 4 * ap->port_no;
|
|
|
|
struct pci_dev *pdev = to_pci_dev(ap->host->dev);
|
2007-08-06 09:36:23 +00:00
|
|
|
int rc = ata_do_set_mode(link, r_failed);
|
2007-03-27 05:43:43 +00:00
|
|
|
if (rc == 0) {
|
|
|
|
pci_read_config_byte(pdev, 0x43, &r);
|
|
|
|
|
|
|
|
r &= (0x0F << nybble);
|
2007-08-06 09:36:23 +00:00
|
|
|
r |= (optidma_make_bits43(&link->device[0]) +
|
|
|
|
(optidma_make_bits43(&link->device[0]) << 2)) << nybble;
|
2007-03-27 05:43:43 +00:00
|
|
|
pci_write_config_byte(pdev, 0x43, r);
|
|
|
|
}
|
|
|
|
return rc;
|
2006-08-29 22:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct scsi_host_template optidma_sht = {
|
2008-03-25 03:22:49 +00:00
|
|
|
ATA_BMDMA_SHT(DRV_NAME),
|
2006-08-29 22:12:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct ata_port_operations optidma_port_ops = {
|
libata: implement and use ops inheritance
libata lets low level drivers build ata_port_operations table and
register it with libata core layer. This allows low level drivers
high level of flexibility but also burdens them with lots of
boilerplate entries.
This becomes worse for drivers which support related similar
controllers which differ slightly. They share most of the operations
except for a few. However, the driver still needs to list all
operations for each variant. This results in large number of
duplicate entries, which is not only inefficient but also error-prone
as it becomes very difficult to tell what the actual differences are.
This duplicate boilerplates all over the low level drivers also make
updating the core layer exteremely difficult and error-prone. When
compounded with multi-branched development model, it ends up
accumulating inconsistencies over time. Some of those inconsistencies
cause immediate problems and fixed. Others just remain there dormant
making maintenance increasingly difficult.
To rectify the problem, this patch implements ata_port_operations
inheritance. To allow LLDs to easily re-use their own ops tables
overriding only specific methods, this patch implements poor man's
class inheritance. An ops table has ->inherits field which can be set
to any ops table as long as it doesn't create a loop. When the host
is started, the inheritance chain is followed and any operation which
isn't specified is taken from the nearest ancestor which has it
specified. This operation is called finalization and done only once
per an ops table and the LLD doesn't have to do anything special about
it other than making the ops table non-const such that libata can
update it.
libata provides four base ops tables lower drivers can inherit from -
base, sata, pmp, sff and bmdma. To avoid overriding these ops
accidentaly, these ops are declared const and LLDs should always
inherit these instead of using them directly.
After finalization, all the ops table are identical before and after
the patch except for setting .irq_handler to ata_interrupt in drivers
which didn't use to. The .irq_handler doesn't have any actual effect
and the field will soon be removed by later patch.
* sata_sx4 is still using old style EH and currently doesn't take
advantage of ops inheritance.
Signed-off-by: Tejun Heo <htejun@gmail.com>
2008-03-25 03:22:49 +00:00
|
|
|
.inherits = &ata_bmdma_port_ops,
|
|
|
|
.cable_detect = ata_cable_40wire,
|
2006-08-29 22:12:40 +00:00
|
|
|
.set_piomode = optidma_set_pio_mode,
|
|
|
|
.set_dmamode = optidma_set_dma_mode,
|
2007-03-27 05:43:43 +00:00
|
|
|
.set_mode = optidma_set_mode,
|
libata: make reset related methods proper port operations
Currently reset methods are not specified directly in the
ata_port_operations table. If a LLD wants to use custom reset
methods, it should construct and use a error_handler which uses those
reset methods. It's done this way for two reasons.
First, the ops table already contained too many methods and adding
four more of them would noticeably increase the amount of necessary
boilerplate code all over low level drivers.
Second, as ->error_handler uses those reset methods, it can get
confusing. ie. By overriding ->error_handler, those reset ops can be
made useless making layering a bit hazy.
Now that ops table uses inheritance, the first problem doesn't exist
anymore. The second isn't completely solved but is relieved by
providing default values - most drivers can just override what it has
implemented and don't have to concern itself about higher level
callbacks. In fact, there currently is no driver which actually
modifies error handling behavior. Drivers which override
->error_handler just wraps the standard error handler only to prepare
the controller for EH. I don't think making ops layering strict has
any noticeable benefit.
This patch makes ->prereset, ->softreset, ->hardreset, ->postreset and
their PMP counterparts propoer ops. Default ops are provided in the
base ops tables and drivers are converted to override individual reset
methods instead of creating custom error_handler.
* ata_std_error_handler() doesn't use sata_std_hardreset() if SCRs
aren't accessible. sata_promise doesn't need to use separate
error_handlers for PATA and SATA anymore.
* softreset is broken for sata_inic162x and sata_sx4. As libata now
always prefers hardreset, this doesn't really matter but the ops are
forced to NULL using ATA_OP_NULL for documentation purpose.
* pata_hpt374 needs to use different prereset for the first and second
PCI functions. This used to be done by branching from
hpt374_error_handler(). The proper way to do this is to use
separate ops and port_info tables for each function. Converted.
Signed-off-by: Tejun Heo <htejun@gmail.com>
2008-03-25 03:22:50 +00:00
|
|
|
.prereset = optidma_pre_reset,
|
2006-08-29 22:12:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct ata_port_operations optiplus_port_ops = {
|
libata: implement and use ops inheritance
libata lets low level drivers build ata_port_operations table and
register it with libata core layer. This allows low level drivers
high level of flexibility but also burdens them with lots of
boilerplate entries.
This becomes worse for drivers which support related similar
controllers which differ slightly. They share most of the operations
except for a few. However, the driver still needs to list all
operations for each variant. This results in large number of
duplicate entries, which is not only inefficient but also error-prone
as it becomes very difficult to tell what the actual differences are.
This duplicate boilerplates all over the low level drivers also make
updating the core layer exteremely difficult and error-prone. When
compounded with multi-branched development model, it ends up
accumulating inconsistencies over time. Some of those inconsistencies
cause immediate problems and fixed. Others just remain there dormant
making maintenance increasingly difficult.
To rectify the problem, this patch implements ata_port_operations
inheritance. To allow LLDs to easily re-use their own ops tables
overriding only specific methods, this patch implements poor man's
class inheritance. An ops table has ->inherits field which can be set
to any ops table as long as it doesn't create a loop. When the host
is started, the inheritance chain is followed and any operation which
isn't specified is taken from the nearest ancestor which has it
specified. This operation is called finalization and done only once
per an ops table and the LLD doesn't have to do anything special about
it other than making the ops table non-const such that libata can
update it.
libata provides four base ops tables lower drivers can inherit from -
base, sata, pmp, sff and bmdma. To avoid overriding these ops
accidentaly, these ops are declared const and LLDs should always
inherit these instead of using them directly.
After finalization, all the ops table are identical before and after
the patch except for setting .irq_handler to ata_interrupt in drivers
which didn't use to. The .irq_handler doesn't have any actual effect
and the field will soon be removed by later patch.
* sata_sx4 is still using old style EH and currently doesn't take
advantage of ops inheritance.
Signed-off-by: Tejun Heo <htejun@gmail.com>
2008-03-25 03:22:49 +00:00
|
|
|
.inherits = &optidma_port_ops,
|
2006-08-29 22:12:40 +00:00
|
|
|
.set_piomode = optiplus_set_pio_mode,
|
|
|
|
.set_dmamode = optiplus_set_dma_mode,
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* optiplus_with_udma - Look for UDMA capable setup
|
|
|
|
* @pdev; ATA controller
|
|
|
|
*/
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
static int optiplus_with_udma(struct pci_dev *pdev)
|
|
|
|
{
|
|
|
|
u8 r;
|
|
|
|
int ret = 0;
|
|
|
|
int ioport = 0x22;
|
|
|
|
struct pci_dev *dev1;
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
/* Find function 1 */
|
|
|
|
dev1 = pci_get_device(0x1045, 0xC701, NULL);
|
2007-10-26 00:47:30 +00:00
|
|
|
if (dev1 == NULL)
|
2006-08-29 22:12:40 +00:00
|
|
|
return 0;
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
/* Rev must be >= 0x10 */
|
|
|
|
pci_read_config_byte(dev1, 0x08, &r);
|
|
|
|
if (r < 0x10)
|
|
|
|
goto done_nomsg;
|
|
|
|
/* Read the chipset system configuration to check our mode */
|
|
|
|
pci_read_config_byte(dev1, 0x5F, &r);
|
|
|
|
ioport |= (r << 8);
|
|
|
|
outb(0x10, ioport);
|
|
|
|
/* Must be 66Mhz sync */
|
|
|
|
if ((inb(ioport + 2) & 1) == 0)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
/* Check the ATA arbitration/timing is suitable */
|
|
|
|
pci_read_config_byte(pdev, 0x42, &r);
|
|
|
|
if ((r & 0x36) != 0x36)
|
|
|
|
goto done;
|
|
|
|
pci_read_config_byte(dev1, 0x52, &r);
|
|
|
|
if (r & 0x80) /* IDEDIR disabled */
|
|
|
|
ret = 1;
|
2006-08-31 04:03:49 +00:00
|
|
|
done:
|
2006-08-29 22:12:40 +00:00
|
|
|
printk(KERN_WARNING "UDMA not supported in this configuration.\n");
|
|
|
|
done_nomsg: /* Wrong chip revision */
|
|
|
|
pci_dev_put(dev1);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int optidma_init_one(struct pci_dev *dev, const struct pci_device_id *id)
|
|
|
|
{
|
2007-05-04 10:43:58 +00:00
|
|
|
static const struct ata_port_info info_82c700 = {
|
2007-05-28 10:59:48 +00:00
|
|
|
.flags = ATA_FLAG_SLAVE_POSS,
|
2006-08-29 22:12:40 +00:00
|
|
|
.pio_mask = 0x1f,
|
|
|
|
.mwdma_mask = 0x07,
|
|
|
|
.port_ops = &optidma_port_ops
|
|
|
|
};
|
2007-05-04 10:43:58 +00:00
|
|
|
static const struct ata_port_info info_82c700_udma = {
|
2007-05-28 10:59:48 +00:00
|
|
|
.flags = ATA_FLAG_SLAVE_POSS,
|
2006-08-29 22:12:40 +00:00
|
|
|
.pio_mask = 0x1f,
|
|
|
|
.mwdma_mask = 0x07,
|
|
|
|
.udma_mask = 0x07,
|
|
|
|
.port_ops = &optiplus_port_ops
|
|
|
|
};
|
2007-05-04 10:43:58 +00:00
|
|
|
const struct ata_port_info *ppi[] = { &info_82c700, NULL };
|
2006-08-29 22:12:40 +00:00
|
|
|
static int printed_version;
|
2008-03-25 03:22:47 +00:00
|
|
|
int rc;
|
2006-08-29 22:12:40 +00:00
|
|
|
|
|
|
|
if (!printed_version++)
|
|
|
|
dev_printk(KERN_DEBUG, &dev->dev, "version " DRV_VERSION "\n");
|
|
|
|
|
2008-03-25 03:22:47 +00:00
|
|
|
rc = pcim_enable_device(dev);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
/* Fixed location chipset magic */
|
|
|
|
inw(0x1F1);
|
|
|
|
inw(0x1F1);
|
|
|
|
pci_clock = inb(0x1F5) & 1; /* 0 = 33Mhz, 1 = 25Mhz */
|
2006-08-31 04:03:49 +00:00
|
|
|
|
2006-08-29 22:12:40 +00:00
|
|
|
if (optiplus_with_udma(dev))
|
2007-05-04 10:43:58 +00:00
|
|
|
ppi[0] = &info_82c700_udma;
|
2006-08-29 22:12:40 +00:00
|
|
|
|
2008-04-07 13:47:16 +00:00
|
|
|
return ata_pci_sff_init_one(dev, ppi, &optidma_sht, NULL);
|
2006-08-29 22:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct pci_device_id optidma[] = {
|
2006-09-29 00:21:59 +00:00
|
|
|
{ PCI_VDEVICE(OPTI, 0xD568), }, /* Opti 82C700 */
|
|
|
|
|
|
|
|
{ },
|
2006-08-29 22:12:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct pci_driver optidma_pci_driver = {
|
2006-09-29 00:21:59 +00:00
|
|
|
.name = DRV_NAME,
|
2006-08-29 22:12:40 +00:00
|
|
|
.id_table = optidma,
|
|
|
|
.probe = optidma_init_one,
|
2006-11-22 16:57:36 +00:00
|
|
|
.remove = ata_pci_remove_one,
|
2007-03-02 08:31:26 +00:00
|
|
|
#ifdef CONFIG_PM
|
2006-11-22 16:57:36 +00:00
|
|
|
.suspend = ata_pci_device_suspend,
|
|
|
|
.resume = ata_pci_device_resume,
|
2007-03-02 08:31:26 +00:00
|
|
|
#endif
|
2006-08-29 22:12:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int __init optidma_init(void)
|
|
|
|
{
|
|
|
|
return pci_register_driver(&optidma_pci_driver);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit optidma_exit(void)
|
|
|
|
{
|
|
|
|
pci_unregister_driver(&optidma_pci_driver);
|
|
|
|
}
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Alan Cox");
|
|
|
|
MODULE_DESCRIPTION("low-level driver for Opti Firestar/Firestar Plus");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_DEVICE_TABLE(pci, optidma);
|
|
|
|
MODULE_VERSION(DRV_VERSION);
|
|
|
|
|
|
|
|
module_init(optidma_init);
|
|
|
|
module_exit(optidma_exit);
|