static void sil680_set_piomode(struct ata_port *ap, struct ata_device *adev) { static u16 speed_p[5] = { 0x328A, 0x2283, 0x1104, 0x10C3, 0x10C1 }; static u16 speed_t[5] = { 0x328A, 0x1281, 0x1281, 0x10C3, 0x10C1 }; unsigned long tfaddr = sil680_selreg(ap, 0x02); unsigned long addr = sil680_seldev(ap, adev, 0x04); struct pci_dev *pdev = to_pci_dev(ap->host->dev); int pio = adev->pio_mode - XFER_PIO_0; int lowest_pio = pio; u16 reg; struct ata_device *pair = ata_dev_pair(adev); if (pair != NULL && adev->pio_mode > pair->pio_mode) lowest_pio = pair->pio_mode - XFER_PIO_0; pci_write_config_word(pdev, addr, speed_p[pio]); pci_write_config_word(pdev, tfaddr, speed_t[lowest_pio]); pci_read_config_word(pdev, tfaddr-2, ®); reg &= ~0x0200; /* Clear IORDY */ if (ata_pio_need_iordy(adev)) reg |= 0x0200; /* Enable IORDY */ pci_write_config_word(pdev, tfaddr-2, reg); }
static void radisys_set_piomode (struct ata_port *ap, struct ata_device *adev) { unsigned int pio = adev->pio_mode - XFER_PIO_0; struct pci_dev *dev = to_pci_dev(ap->host->dev); u16 idetm_data; int control = 0; static const u8 timings[][2] = { { 0, 0 }, { 0, 0 }, { 1, 1 }, { 2, 2 }, { 3, 3 }, }; if (pio > 0) control |= 1; if (ata_pio_need_iordy(adev)) control |= 2; pci_read_config_word(dev, 0x40, &idetm_data); idetm_data &= 0xCCCC; idetm_data |= (control << (4 * adev->devno)); idetm_data |= (timings[pio][0] << 12) | (timings[pio][1] << 8); pci_write_config_word(dev, 0x40, idetm_data); ap->private_data = adev; }
static void ns87415_set_mode(struct ata_port *ap, struct ata_device *adev, u8 mode) { struct pci_dev *dev = to_pci_dev(ap->host->dev); int unit = 2 * ap->port_no + adev->devno; int timing = 0x44 + 2 * unit; unsigned long T = 1000000000 / 33333; /* PCI clocks */ struct ata_timing t; u16 clocking; u8 iordy; u8 status; /* Timing register format is 17 - low nybble read timing with the high nybble being 16 - x for recovery time in PCI clocks */ ata_timing_compute(adev, adev->pio_mode, &t, T, 0); 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 */ }
static void ns87410_set_piomode(struct ata_port *ap, struct ata_device *adev) { struct pci_dev *pdev = to_pci_dev(ap->host->dev); int port = 0x40 + 4 * ap->port_no; u8 idetcr, idefr; struct ata_timing at; static const u8 activebits[15] = { 0, 1, 2, 3, 4, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7 }; static const u8 recoverbits[12] = { 0, 1, 2, 3, 4, 5, 6, 6, 7, 7, 7, 7 }; pci_read_config_byte(pdev, port + 3, &idefr); if (ata_pio_need_iordy(adev)) idefr |= 0x04; /* IORDY enable */ else idefr &= ~0x04; if (ata_timing_compute(adev, adev->pio_mode, &at, 30303, 1) < 0) { dev_printk(KERN_ERR, &pdev->dev, "unknown mode %d.\n", adev->pio_mode); return; } at.active = FIT(at.active, 2, 16) - 2; at.setup = FIT(at.setup, 1, 4) - 1; at.recover = FIT(at.recover, 1, 12) - 1; idetcr = (at.setup << 6) | (recoverbits[at.recover] << 3) | activebits[at.active]; pci_write_config_byte(pdev, port, idetcr); pci_write_config_byte(pdev, port + 3, idefr); /* We use ap->private_data as a pointer to the device currently loaded for timing */ ap->private_data = adev; }
static void sil680_set_piomode(struct ata_port *ap, struct ata_device *adev) { static const u16 speed_p[5] = { 0x328A, 0x2283, 0x1104, 0x10C3, 0x10C1 }; static const u16 speed_t[5] = { 0x328A, 0x2283, 0x1281, 0x10C3, 0x10C1 }; unsigned long tfaddr = sil680_selreg(ap, 0x02); unsigned long addr = sil680_seldev(ap, adev, 0x04); unsigned long addr_mask = 0x80 + 4 * ap->port_no; struct pci_dev *pdev = to_pci_dev(ap->host->dev); int pio = adev->pio_mode - XFER_PIO_0; int lowest_pio = pio; int port_shift = 4 * adev->devno; u16 reg; u8 mode; struct ata_device *pair = ata_dev_pair(adev); if (pair != NULL && adev->pio_mode > pair->pio_mode) lowest_pio = pair->pio_mode - XFER_PIO_0; pci_write_config_word(pdev, addr, speed_p[pio]); pci_write_config_word(pdev, tfaddr, speed_t[lowest_pio]); pci_read_config_word(pdev, tfaddr-2, ®); pci_read_config_byte(pdev, addr_mask, &mode); reg &= ~0x0200; /* Clear IORDY */ mode &= ~(3 << port_shift); /* Clear IORDY and DMA bits */ if (ata_pio_need_iordy(adev)) { reg |= 0x0200; /* Enable IORDY */ mode |= 1 << port_shift; } pci_write_config_word(pdev, tfaddr-2, reg); pci_write_config_byte(pdev, addr_mask, mode); }
static void radisys_set_piomode (struct ata_port *ap, struct ata_device *adev) { unsigned int pio = adev->pio_mode - XFER_PIO_0; struct pci_dev *dev = to_pci_dev(ap->host->dev); u16 idetm_data; int control = 0; /* * See Intel Document 298600-004 for the timing programing rules * for PIIX/ICH. Note that the early PIIX does not have the slave * timing port at 0x44. The Radisys is a relative of the PIIX * but not the same so be careful. */ static const /* ISP RTC */ u8 timings[][2] = { { 0, 0 }, /* Check me */ { 0, 0 }, { 1, 1 }, { 2, 2 }, { 3, 3 }, }; if (pio > 0) control |= 1; /* TIME1 enable */ if (ata_pio_need_iordy(adev)) control |= 2; /* IE IORDY */ pci_read_config_word(dev, 0x40, &idetm_data); /* Enable IE and TIME as appropriate. Clear the other drive timing bits */ idetm_data &= 0xCCCC; idetm_data |= (control << (4 * adev->devno)); idetm_data |= (timings[pio][0] << 12) | (timings[pio][1] << 8); pci_write_config_word(dev, 0x40, idetm_data); /* Track which port is configured */ ap->private_data = adev; }
static void ns87415_set_mode(struct ata_port *ap, struct ata_device *adev, u8 mode) { struct pci_dev *dev = to_pci_dev(ap->host->dev); int unit = 2 * ap->port_no + adev->devno; int timing = 0x44 + 2 * unit; unsigned long T = 1000000000 / 33333; struct ata_timing t; u16 clocking; u8 iordy; u8 status; ata_timing_compute(adev, adev->pio_mode, &t, T, 0); clocking = 17 - clamp_val(t.active, 2, 17); clocking |= (16 - clamp_val(t.recover, 1, 16)) << 4; clocking |= (clocking << 8); pci_write_config_word(dev, timing, clocking); 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)); pci_read_config_byte(dev, 0x43, &status); while (status & 0x03) { udelay(1); pci_read_config_byte(dev, 0x43, &status); } pci_write_config_byte(dev, 0x42, iordy); }
/** * Called after libata determines the needed PIO mode. This * function programs the Octeon bootbus regions to support the * timing requirements of the PIO mode. * * @ap: ATA port information * @dev: ATA device */ static void octeon_cf_set_piomode(struct ata_port *ap, struct ata_device *dev) { struct octeon_cf_data *ocd = ap->dev->platform_data; union cvmx_mio_boot_reg_timx reg_tim; int cs = ocd->base_region; int T; struct ata_timing timing; int use_iordy; int trh; int pause; /* These names are timing parameters from the ATA spec */ int t1; int t2; int t2i; T = (int)(2000000000000LL / octeon_get_clock_rate()); if (ata_timing_compute(dev, dev->pio_mode, &timing, T, T)) BUG(); t1 = timing.setup; if (t1) t1--; t2 = timing.active; if (t2) t2--; t2i = timing.act8b; if (t2i) t2i--; trh = ns_to_tim_reg(2, 20); if (trh) trh--; pause = timing.cycle - timing.active - timing.setup - trh; if (pause) pause--; octeon_cf_set_boot_reg_cfg(cs); if (ocd->dma_engine >= 0) /* True IDE mode, program both chip selects. */ octeon_cf_set_boot_reg_cfg(cs + 1); use_iordy = ata_pio_need_iordy(dev); reg_tim.u64 = cvmx_read_csr(CVMX_MIO_BOOT_REG_TIMX(cs)); /* Disable page mode */ reg_tim.s.pagem = 0; /* Enable dynamic timing */ reg_tim.s.waitm = use_iordy; /* Pages are disabled */ reg_tim.s.pages = 0; /* We don't use multiplexed address mode */ reg_tim.s.ale = 0; /* Not used */ reg_tim.s.page = 0; /* Time after IORDY to coninue to assert the data */ reg_tim.s.wait = 0; /* Time to wait to complete the cycle. */ reg_tim.s.pause = pause; /* How long to hold after a write to de-assert CE. */ reg_tim.s.wr_hld = trh; /* How long to wait after a read to de-assert CE. */ reg_tim.s.rd_hld = trh; /* How long write enable is asserted */ reg_tim.s.we = t2; /* How long read enable is asserted */ reg_tim.s.oe = t2; /* Time after CE that read/write starts */ reg_tim.s.ce = ns_to_tim_reg(2, 5); /* Time before CE that address is valid */ reg_tim.s.adr = 0; /* Program the bootbus region timing for the data port chip select. */ cvmx_write_csr(CVMX_MIO_BOOT_REG_TIMX(cs), reg_tim.u64); if (ocd->dma_engine >= 0) /* True IDE mode, program both chip selects. */ cvmx_write_csr(CVMX_MIO_BOOT_REG_TIMX(cs + 1), reg_tim.u64); }