// SPDX-License-Identifier: GPL-2.0-only /* * pata_ns87415.c - NS87415 (and PARISC SUPERIO 87560) PATA * * (C) 2005 Red Hat <alan@lxorguk.ukuu.org.uk> * * This is a fairly generic MWDMA controller. It has some limitations * as it requires timing reloads on PIO/DMA transitions but it is otherwise * fairly well designed. * * This driver assumes the firmware has left the chip in a valid ST506 * compliant state, either legacy IRQ 14/15 or native INTA shared. You * may need to add platform code if your system fails to do this. * * The same cell appears in the 87560 controller used by some PARISC * systems. This has its own special mountain of errata. * * TODO: * Get someone to test on SPARC * Implement lazy pio/dma switching for better performance * 8bit shared timing. * See if we need to kill the FIFO for ATAPI
*/
/** * ns87415_set_mode - Initialize host controller mode timings * @ap: Port whose timings we are configuring * @adev: Device whose timings we are configuring * @mode: Mode to set * * Program the mode registers for this controller, channel and * device. Because the chip is quite an old design we have to do this * for PIO/DMA switches. * * LOCKING: * None (inherited from caller).
*/
clocking = 17 - clamp_val(t.active, 2, 17);
clocking |= (16 - clamp_val(t.recover, 1, 16)) << 4; /* Use the same timing for read and write bytes */
clocking |= (clocking << 8);
pci_write_config_word(dev, timing, clocking);
/* Set the IORDY enable versus DMA enable on or off properly */
pci_read_config_byte(dev, 0x42, &iordy);
iordy &= ~(1 << (4 + unit)); if (mode >= XFER_MW_DMA_0 || !ata_pio_need_iordy(adev))
iordy |= (1 << (4 + unit));
/* Paranoia: We shouldn't ever get here with busy write buffers
but if so wait */
pci_read_config_byte(dev, 0x43, &status); while (status & 0x03) {
udelay(1);
pci_read_config_byte(dev, 0x43, &status);
} /* Flip the IORDY/DMA bits now we are sure the write buffers are
clear */
pci_write_config_byte(dev, 0x42, iordy);
/* TODO: Set byte 54 command timing to the best 8bit
mode shared by all four devices */
}
/** * ns87415_set_piomode - Initialize host controller PATA PIO timings * @ap: Port whose timings we are configuring * @adev: Device to program * * Set PIO mode for device, in host controller PCI config space. * * LOCKING: * None (inherited from caller).
*/
/** * ns87415_bmdma_setup - Set up DMA * @qc: Command block * * Set up for bus mastering DMA. We have to do this ourselves * rather than use the helper due to a chip erratum
*/
/* load PRD table addr. */
mb(); /* make sure PRD table writes are visible to controller */
iowrite32(ap->bmdma_prd_dma, ap->ioaddr.bmdma_addr + ATA_DMA_TABLE_OFS);
/* specify data direction, triple-check start bit is clear */
dmactl = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
dmactl &= ~(ATA_DMA_WR | ATA_DMA_START); /* Due to an erratum we need to write these bits to the wrong
place - which does save us an I/O bizarrely */
dmactl |= ATA_DMA_INTR | ATA_DMA_ERR; if (!rw)
dmactl |= ATA_DMA_WR;
iowrite8(dmactl, ap->ioaddr.bmdma_addr + ATA_DMA_CMD); /* issue r/w command */
ap->ops->sff_exec_command(ap, &qc->tf);
}
/** * ns87415_bmdma_start - Begin DMA transfer * @qc: Command block * * Switch the timings for the chip and set up for a DMA transfer * before the DMA burst begins. * * FIXME: We should do lazy switching on bmdma_start versus * ata_pio_data_xfer for better performance.
*/
/** * ns87415_irq_clear - Clear interrupt * @ap: Channel to clear * * Erratum: Due to a chip bug registers 02 and 0A bit 1 and 2 (the * error bits) are reset by writing to register 00 or 08.
*/
/** * ns87415_check_atapi_dma - ATAPI DMA filter * @qc: Command block * * Disable ATAPI DMA (for now). We may be able to do DMA if we * kill the prefetching. This isn't clear.
*/
/* SUPERIO 87560 is a PoS chip that NatSem denies exists. * Unfortunately, it's built-in on all Astro-based PA-RISC workstations * which use the integrated NS87514 cell for CD-ROM support. * i.e we have to support for CD-ROM installs. * See drivers/parisc/superio.c for more gory details. * * Workarounds taken from drivers/ide/pci/ns87415.c
*/
#include <asm/superio.h>
#define SUPERIO_IDE_MAX_RETRIES 25
/** * ns87560_read_buggy - workaround buggy Super I/O chip * @port: Port to read * * Work around chipset problems in the 87560 SuperIO chip
*/
/** * ns87560_tf_read - input device's ATA taskfile shadow registers * @ap: Port from which input is read * @tf: ATA taskfile register set for storing input * * Reads ATA taskfile registers for currently-selected device * into @tf. Work around the 87560 bugs. * * LOCKING: * Inherited from caller.
*/ staticvoid ns87560_tf_read(struct ata_port *ap, struct ata_taskfile *tf)
{ struct ata_ioports *ioaddr = &ap->ioaddr;
/** * ns87415_init_one - Register 87415 ATA PCI device with kernel services * @pdev: PCI device to register * @ent: Entry in ns87415_pci_tbl matching with @pdev * * Called from kernel PCI layer. We probe for combined mode (sigh), * and then hand over control to libata, for it to do the rest. * * LOCKING: * Inherited from PCI layer (may sleep). * * RETURNS: * Zero on success, or -ERRNO value.
*/
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.