aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorSergei Shtylyov <sshtylyov@ru.mvista.com>2009-12-07 14:30:06 -0500
committerJeff Garzik <jgarzik@redhat.com>2010-03-01 14:58:43 -0500
commit1a1b172b9672e88d37adb5925b509e9236625d7e (patch)
tree9ccb1bb12343ed4ab5799d9ab08bd67f5b75bfba /drivers
parent60661933995bc7a09686c901439e17c2a4ea7d5d (diff)
pata_hpt{37x|3x2n}: unify mode programming
As these drivers' set_piomode() and set_dmamode() methods are almost identical, factor out the common hpt{37x|3x2n}_set_mode() function to be called by both of them, the same as in 'pata_hpt366' driver. This results in ~5% decrease in the 'pata_hpt37x' driver binary size and in ~4% decrease in the 'pata_hpt3x2n' driver binary size (as measured on x86-32). Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/ata/pata_hpt37x.c137
-rw-r--r--drivers/ata/pata_hpt3x2n.c69
2 files changed, 90 insertions, 116 deletions
diff --git a/drivers/ata/pata_hpt37x.c b/drivers/ata/pata_hpt37x.c
index 342aaaaf383..9b191763e6e 100644
--- a/drivers/ata/pata_hpt37x.c
+++ b/drivers/ata/pata_hpt37x.c
@@ -24,7 +24,7 @@
24#include <linux/libata.h> 24#include <linux/libata.h>
25 25
26#define DRV_NAME "pata_hpt37x" 26#define DRV_NAME "pata_hpt37x"
27#define DRV_VERSION "0.6.14" 27#define DRV_VERSION "0.6.15"
28 28
29struct hpt_clock { 29struct hpt_clock {
30 u8 xfer_speed; 30 u8 xfer_speed;
@@ -384,20 +384,12 @@ static int hpt37x_pre_reset(struct ata_link *link, unsigned long deadline)
384 return ata_sff_prereset(link, deadline); 384 return ata_sff_prereset(link, deadline);
385} 385}
386 386
387/** 387static void hpt370_set_mode(struct ata_port *ap, struct ata_device *adev,
388 * hpt370_set_piomode - PIO setup 388 u8 mode)
389 * @ap: ATA interface
390 * @adev: device on the interface
391 *
392 * Perform PIO mode setup.
393 */
394
395static void hpt370_set_piomode(struct ata_port *ap, struct ata_device *adev)
396{ 389{
397 struct pci_dev *pdev = to_pci_dev(ap->host->dev); 390 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
398 u32 addr1, addr2; 391 u32 addr1, addr2;
399 u32 reg; 392 u32 reg, timing, mask;
400 u32 mode;
401 u8 fast; 393 u8 fast;
402 394
403 addr1 = 0x40 + 4 * (adev->devno + 2 * ap->port_no); 395 addr1 = 0x40 + 4 * (adev->devno + 2 * ap->port_no);
@@ -409,11 +401,31 @@ static void hpt370_set_piomode(struct ata_port *ap, struct ata_device *adev)
409 fast |= 0x01; 401 fast |= 0x01;
410 pci_write_config_byte(pdev, addr2, fast); 402 pci_write_config_byte(pdev, addr2, fast);
411 403
404 /* Determine timing mask and find matching mode entry */
405 if (mode < XFER_MW_DMA_0)
406 mask = 0xcfc3ffff;
407 else if (mode < XFER_UDMA_0)
408 mask = 0x31c001ff;
409 else
410 mask = 0x303c0000;
411
412 timing = hpt37x_find_mode(ap, mode);
413
412 pci_read_config_dword(pdev, addr1, &reg); 414 pci_read_config_dword(pdev, addr1, &reg);
413 mode = hpt37x_find_mode(ap, adev->pio_mode); 415 reg = (reg & ~mask) | (timing & mask);
414 mode &= 0xCFC3FFFF; /* Leave DMA bits alone */ 416 pci_write_config_dword(pdev, addr1, reg);
415 reg &= ~0xCFC3FFFF; /* Strip timing bits */ 417}
416 pci_write_config_dword(pdev, addr1, reg | mode); 418/**
419 * hpt370_set_piomode - PIO setup
420 * @ap: ATA interface
421 * @adev: device on the interface
422 *
423 * Perform PIO mode setup.
424 */
425
426static void hpt370_set_piomode(struct ata_port *ap, struct ata_device *adev)
427{
428 hpt370_set_mode(ap, adev, adev->pio_mode);
417} 429}
418 430
419/** 431/**
@@ -421,33 +433,12 @@ static void hpt370_set_piomode(struct ata_port *ap, struct ata_device *adev)
421 * @ap: ATA interface 433 * @ap: ATA interface
422 * @adev: Device being configured 434 * @adev: Device being configured
423 * 435 *
424 * Set up the channel for MWDMA or UDMA modes. Much the same as with 436 * Set up the channel for MWDMA or UDMA modes.
425 * PIO, load the mode number and then set MWDMA or UDMA flag.
426 */ 437 */
427 438
428static void hpt370_set_dmamode(struct ata_port *ap, struct ata_device *adev) 439static void hpt370_set_dmamode(struct ata_port *ap, struct ata_device *adev)
429{ 440{
430 struct pci_dev *pdev = to_pci_dev(ap->host->dev); 441 hpt370_set_mode(ap, adev, adev->dma_mode);
431 u32 addr1, addr2;
432 u32 reg, mode, mask;
433 u8 fast;
434
435 addr1 = 0x40 + 4 * (adev->devno + 2 * ap->port_no);
436 addr2 = 0x51 + 4 * ap->port_no;
437
438 /* Fast interrupt prediction disable, hold off interrupt disable */
439 pci_read_config_byte(pdev, addr2, &fast);
440 fast &= ~0x02;
441 fast |= 0x01;
442 pci_write_config_byte(pdev, addr2, fast);
443
444 mask = adev->dma_mode < XFER_UDMA_0 ? 0x31C001FF : 0x303C0000;
445
446 pci_read_config_dword(pdev, addr1, &reg);
447 mode = hpt37x_find_mode(ap, adev->dma_mode);
448 mode &= mask;
449 reg &= ~mask;
450 pci_write_config_dword(pdev, addr1, reg | mode);
451} 442}
452 443
453/** 444/**
@@ -487,20 +478,12 @@ static void hpt370_bmdma_stop(struct ata_queued_cmd *qc)
487 ata_bmdma_stop(qc); 478 ata_bmdma_stop(qc);
488} 479}
489 480
490/** 481static void hpt372_set_mode(struct ata_port *ap, struct ata_device *adev,
491 * hpt372_set_piomode - PIO setup 482 u8 mode)
492 * @ap: ATA interface
493 * @adev: device on the interface
494 *
495 * Perform PIO mode setup.
496 */
497
498static void hpt372_set_piomode(struct ata_port *ap, struct ata_device *adev)
499{ 483{
500 struct pci_dev *pdev = to_pci_dev(ap->host->dev); 484 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
501 u32 addr1, addr2; 485 u32 addr1, addr2;
502 u32 reg; 486 u32 reg, timing, mask;
503 u32 mode;
504 u8 fast; 487 u8 fast;
505 488
506 addr1 = 0x40 + 4 * (adev->devno + 2 * ap->port_no); 489 addr1 = 0x40 + 4 * (adev->devno + 2 * ap->port_no);
@@ -511,13 +494,32 @@ static void hpt372_set_piomode(struct ata_port *ap, struct ata_device *adev)
511 fast &= ~0x07; 494 fast &= ~0x07;
512 pci_write_config_byte(pdev, addr2, fast); 495 pci_write_config_byte(pdev, addr2, fast);
513 496
497 /* Determine timing mask and find matching mode entry */
498 if (mode < XFER_MW_DMA_0)
499 mask = 0xcfc3ffff;
500 else if (mode < XFER_UDMA_0)
501 mask = 0x31c001ff;
502 else
503 mask = 0x303c0000;
504
505 timing = hpt37x_find_mode(ap, mode);
506
514 pci_read_config_dword(pdev, addr1, &reg); 507 pci_read_config_dword(pdev, addr1, &reg);
515 mode = hpt37x_find_mode(ap, adev->pio_mode); 508 reg = (reg & ~mask) | (timing & mask);
509 pci_write_config_dword(pdev, addr1, reg);
510}
516 511
517 printk("Find mode for %d reports %X\n", adev->pio_mode, mode); 512/**
518 mode &= 0xCFC3FFFF; /* Leave DMA bits alone */ 513 * hpt372_set_piomode - PIO setup
519 reg &= ~0xCFC3FFFF; /* Strip timing bits */ 514 * @ap: ATA interface
520 pci_write_config_dword(pdev, addr1, reg | mode); 515 * @adev: device on the interface
516 *
517 * Perform PIO mode setup.
518 */
519
520static void hpt372_set_piomode(struct ata_port *ap, struct ata_device *adev)
521{
522 hpt372_set_mode(ap, adev, adev->pio_mode);
521} 523}
522 524
523/** 525/**
@@ -525,33 +527,12 @@ static void hpt372_set_piomode(struct ata_port *ap, struct ata_device *adev)
525 * @ap: ATA interface 527 * @ap: ATA interface
526 * @adev: Device being configured 528 * @adev: Device being configured
527 * 529 *
528 * Set up the channel for MWDMA or UDMA modes. Much the same as with 530 * Set up the channel for MWDMA or UDMA modes.
529 * PIO, load the mode number and then set MWDMA or UDMA flag.
530 */ 531 */
531 532
532static void hpt372_set_dmamode(struct ata_port *ap, struct ata_device *adev) 533static void hpt372_set_dmamode(struct ata_port *ap, struct ata_device *adev)
533{ 534{
534 struct pci_dev *pdev = to_pci_dev(ap->host->dev); 535 hpt372_set_mode(ap, adev, adev->dma_mode);
535 u32 addr1, addr2;
536 u32 reg, mode, mask;
537 u8 fast;
538
539 addr1 = 0x40 + 4 * (adev->devno + 2 * ap->port_no);
540 addr2 = 0x51 + 4 * ap->port_no;
541
542 /* Fast interrupt prediction disable, hold off interrupt disable */
543 pci_read_config_byte(pdev, addr2, &fast);
544 fast &= ~0x07;
545 pci_write_config_byte(pdev, addr2, fast);
546
547 mask = adev->dma_mode < XFER_UDMA_0 ? 0x31C001FF : 0x303C0000;
548
549 pci_read_config_dword(pdev, addr1, &reg);
550 mode = hpt37x_find_mode(ap, adev->dma_mode);
551 printk("Find mode for DMA %d reports %X\n", adev->dma_mode, mode);
552 mode &= mask;
553 reg &= ~mask;
554 pci_write_config_dword(pdev, addr1, reg | mode);
555} 536}
556 537
557/** 538/**
diff --git a/drivers/ata/pata_hpt3x2n.c b/drivers/ata/pata_hpt3x2n.c
index 269b5dbe51b..b131c8f824d 100644
--- a/drivers/ata/pata_hpt3x2n.c
+++ b/drivers/ata/pata_hpt3x2n.c
@@ -25,7 +25,7 @@
25#include <linux/libata.h> 25#include <linux/libata.h>
26 26
27#define DRV_NAME "pata_hpt3x2n" 27#define DRV_NAME "pata_hpt3x2n"
28#define DRV_VERSION "0.3.9" 28#define DRV_VERSION "0.3.10"
29 29
30enum { 30enum {
31 HPT_PCI_FAST = (1 << 31), 31 HPT_PCI_FAST = (1 << 31),
@@ -161,20 +161,12 @@ static int hpt3x2n_pre_reset(struct ata_link *link, unsigned long deadline)
161 return ata_sff_prereset(link, deadline); 161 return ata_sff_prereset(link, deadline);
162} 162}
163 163
164/** 164static void hpt3x2n_set_mode(struct ata_port *ap, struct ata_device *adev,
165 * hpt3x2n_set_piomode - PIO setup 165 u8 mode)
166 * @ap: ATA interface
167 * @adev: device on the interface
168 *
169 * Perform PIO mode setup.
170 */
171
172static void hpt3x2n_set_piomode(struct ata_port *ap, struct ata_device *adev)
173{ 166{
174 struct pci_dev *pdev = to_pci_dev(ap->host->dev); 167 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
175 u32 addr1, addr2; 168 u32 addr1, addr2;
176 u32 reg; 169 u32 reg, timing, mask;
177 u32 mode;
178 u8 fast; 170 u8 fast;
179 171
180 addr1 = 0x40 + 4 * (adev->devno + 2 * ap->port_no); 172 addr1 = 0x40 + 4 * (adev->devno + 2 * ap->port_no);
@@ -185,11 +177,32 @@ static void hpt3x2n_set_piomode(struct ata_port *ap, struct ata_device *adev)
185 fast &= ~0x07; 177 fast &= ~0x07;
186 pci_write_config_byte(pdev, addr2, fast); 178 pci_write_config_byte(pdev, addr2, fast);
187 179
180 /* Determine timing mask and find matching mode entry */
181 if (mode < XFER_MW_DMA_0)
182 mask = 0xcfc3ffff;
183 else if (mode < XFER_UDMA_0)
184 mask = 0x31c001ff;
185 else
186 mask = 0x303c0000;
187
188 timing = hpt3x2n_find_mode(ap, mode);
189
188 pci_read_config_dword(pdev, addr1, &reg); 190 pci_read_config_dword(pdev, addr1, &reg);
189 mode = hpt3x2n_find_mode(ap, adev->pio_mode); 191 reg = (reg & ~mask) | (timing & mask);
190 mode &= 0xCFC3FFFF; /* Leave DMA bits alone */ 192 pci_write_config_dword(pdev, addr1, reg);
191 reg &= ~0xCFC3FFFF; /* Strip timing bits */ 193}
192 pci_write_config_dword(pdev, addr1, reg | mode); 194
195/**
196 * hpt3x2n_set_piomode - PIO setup
197 * @ap: ATA interface
198 * @adev: device on the interface
199 *
200 * Perform PIO mode setup.
201 */
202
203static void hpt3x2n_set_piomode(struct ata_port *ap, struct ata_device *adev)
204{
205 hpt3x2n_set_mode(ap, adev, adev->pio_mode);
193} 206}
194 207
195/** 208/**
@@ -197,32 +210,12 @@ static void hpt3x2n_set_piomode(struct ata_port *ap, struct ata_device *adev)
197 * @ap: ATA interface 210 * @ap: ATA interface
198 * @adev: Device being configured 211 * @adev: Device being configured
199 * 212 *
200 * Set up the channel for MWDMA or UDMA modes. Much the same as with 213 * Set up the channel for MWDMA or UDMA modes.
201 * PIO, load the mode number and then set MWDMA or UDMA flag.
202 */ 214 */
203 215
204static void hpt3x2n_set_dmamode(struct ata_port *ap, struct ata_device *adev) 216static void hpt3x2n_set_dmamode(struct ata_port *ap, struct ata_device *adev)
205{ 217{
206 struct pci_dev *pdev = to_pci_dev(ap->host->dev); 218 hpt3x2n_set_mode(ap, adev, adev->dma_mode);
207 u32 addr1, addr2;
208 u32 reg, mode, mask;
209 u8 fast;
210
211 addr1 = 0x40 + 4 * (adev->devno + 2 * ap->port_no);
212 addr2 = 0x51 + 4 * ap->port_no;
213
214 /* Fast interrupt prediction disable, hold off interrupt disable */
215 pci_read_config_byte(pdev, addr2, &fast);
216 fast &= ~0x07;
217 pci_write_config_byte(pdev, addr2, fast);
218
219 mask = adev->dma_mode < XFER_UDMA_0 ? 0x31C001FF : 0x303C0000;
220
221 pci_read_config_dword(pdev, addr1, &reg);
222 mode = hpt3x2n_find_mode(ap, adev->dma_mode);
223 mode &= mask;
224 reg &= ~mask;
225 pci_write_config_dword(pdev, addr1, reg | mode);
226} 219}
227 220
228/** 221/**