aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2010-01-18 02:17:50 -0500
committerDavid S. Miller <davem@davemloft.net>2010-01-19 04:24:56 -0500
commit293f18ad720f7c10f9f4b8a87827a1f0989e19ee (patch)
tree6ffc8c3e755ad8c7d965cbd51caca4949974561f /drivers/ide
parent3c8cc8df5a67a539cd185026e6b6f49b576869ba (diff)
alim15x3: add ali_fifo_control() helper
Based on libata pata_ali host driver. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/ide')
-rw-r--r--drivers/ide/alim15x3.c31
1 files changed, 15 insertions, 16 deletions
diff --git a/drivers/ide/alim15x3.c b/drivers/ide/alim15x3.c
index 99c355e8785..4b47896df9f 100644
--- a/drivers/ide/alim15x3.c
+++ b/drivers/ide/alim15x3.c
@@ -48,6 +48,19 @@ static u8 m5229_revision;
48static u8 chip_is_1543c_e; 48static u8 chip_is_1543c_e;
49static struct pci_dev *isa_dev; 49static struct pci_dev *isa_dev;
50 50
51static void ali_fifo_control(ide_hwif_t *hwif, ide_drive_t *drive, int on)
52{
53 struct pci_dev *pdev = to_pci_dev(hwif->dev);
54 int pio_fifo = 0x54 + hwif->channel;
55 u8 fifo;
56 int shift = 4 * (drive->dn & 1);
57
58 pci_read_config_byte(pdev, pio_fifo, &fifo);
59 fifo &= ~(0x0F << shift);
60 fifo |= (on << shift);
61 pci_write_config_byte(pdev, pio_fifo, fifo);
62}
63
51/** 64/**
52 * ali_set_pio_mode - set host controller for PIO mode 65 * ali_set_pio_mode - set host controller for PIO mode
53 * @drive: drive 66 * @drive: drive
@@ -64,8 +77,7 @@ static void ali_set_pio_mode(ide_drive_t *drive, const u8 pio)
64 int bus_speed = ide_pci_clk ? ide_pci_clk : 33; 77 int bus_speed = ide_pci_clk ? ide_pci_clk : 33;
65 unsigned long T = 1000000 / bus_speed; /* PCI clock based */ 78 unsigned long T = 1000000 / bus_speed; /* PCI clock based */
66 int port = hwif->channel ? 0x5c : 0x58; 79 int port = hwif->channel ? 0x5c : 0x58;
67 int portFIFO = hwif->channel ? 0x55 : 0x54; 80 u8 unit = drive->dn & 1;
68 u8 cd_dma_fifo = 0, unit = drive->dn & 1;
69 struct ide_timing t; 81 struct ide_timing t;
70 82
71 ide_timing_compute(drive, XFER_PIO_0 + pio, &t, T, 1); 83 ide_timing_compute(drive, XFER_PIO_0 + pio, &t, T, 1);
@@ -79,20 +91,7 @@ static void ali_set_pio_mode(ide_drive_t *drive, const u8 pio)
79 /* 91 /*
80 * PIO mode => ATA FIFO on, ATAPI FIFO off 92 * PIO mode => ATA FIFO on, ATAPI FIFO off
81 */ 93 */
82 pci_read_config_byte(dev, portFIFO, &cd_dma_fifo); 94 ali_fifo_control(hwif, drive, (drive->media == ide_disk) ? 0x05 : 0x00);
83 if (drive->media==ide_disk) {
84 if (unit) {
85 pci_write_config_byte(dev, portFIFO, (cd_dma_fifo & 0x0F) | 0x50);
86 } else {
87 pci_write_config_byte(dev, portFIFO, (cd_dma_fifo & 0xF0) | 0x05);
88 }
89 } else {
90 if (unit) {
91 pci_write_config_byte(dev, portFIFO, cd_dma_fifo & 0x0F);
92 } else {
93 pci_write_config_byte(dev, portFIFO, cd_dma_fifo & 0xF0);
94 }
95 }
96 95
97 pci_write_config_byte(dev, port, t.setup); 96 pci_write_config_byte(dev, port, t.setup);
98 pci_write_config_byte(dev, port + unit + 2, 97 pci_write_config_byte(dev, port + unit + 2,