diff options
author | Akira Iguchi <akira2.iguchi@toshiba.co.jp> | 2007-01-26 02:27:58 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-02-09 17:39:38 -0500 |
commit | 246ce3b675843e0369643cceb4faeb6cf6d19a30 (patch) | |
tree | b904fe7561e5eacd260d3f175a8f0c3b257598f2 /drivers/ata/pata_amd.c | |
parent | 836250069fc0eeebe8b6aed772281535cc6e34f9 (diff) |
libata: add another IRQ calls (libata drivers)
This patch is against each libata driver.
Two IRQ calls are added in ata_port_operations.
- irq_on() is used to enable interrupts.
- irq_ack() is used to acknowledge a device interrupt.
In most drivers, ata_irq_on() and ata_irq_ack() are used for
irq_on and irq_ack respectively.
In some drivers (ex: ahci, sata_sil24) which cannot use them
as is, ata_dummy_irq_on() and ata_dummy_irq_ack() are used.
Signed-off-by: Kou Ishizaki <kou.ishizaki@toshiba.co.jp>
Signed-off-by: Akira Iguchi <akira2.iguchi@toshiba.co.jp>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/pata_amd.c')
-rw-r--r-- | drivers/ata/pata_amd.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/ata/pata_amd.c b/drivers/ata/pata_amd.c index ed0e4f6fc715..619e44b04032 100644 --- a/drivers/ata/pata_amd.c +++ b/drivers/ata/pata_amd.c | |||
@@ -366,6 +366,8 @@ static struct ata_port_operations amd33_port_ops = { | |||
366 | 366 | ||
367 | .irq_handler = ata_interrupt, | 367 | .irq_handler = ata_interrupt, |
368 | .irq_clear = ata_bmdma_irq_clear, | 368 | .irq_clear = ata_bmdma_irq_clear, |
369 | .irq_on = ata_irq_on, | ||
370 | .irq_ack = ata_irq_ack, | ||
369 | 371 | ||
370 | .port_start = ata_port_start, | 372 | .port_start = ata_port_start, |
371 | }; | 373 | }; |
@@ -398,6 +400,8 @@ static struct ata_port_operations amd66_port_ops = { | |||
398 | 400 | ||
399 | .irq_handler = ata_interrupt, | 401 | .irq_handler = ata_interrupt, |
400 | .irq_clear = ata_bmdma_irq_clear, | 402 | .irq_clear = ata_bmdma_irq_clear, |
403 | .irq_on = ata_irq_on, | ||
404 | .irq_ack = ata_irq_ack, | ||
401 | 405 | ||
402 | .port_start = ata_port_start, | 406 | .port_start = ata_port_start, |
403 | }; | 407 | }; |
@@ -430,6 +434,8 @@ static struct ata_port_operations amd100_port_ops = { | |||
430 | 434 | ||
431 | .irq_handler = ata_interrupt, | 435 | .irq_handler = ata_interrupt, |
432 | .irq_clear = ata_bmdma_irq_clear, | 436 | .irq_clear = ata_bmdma_irq_clear, |
437 | .irq_on = ata_irq_on, | ||
438 | .irq_ack = ata_irq_ack, | ||
433 | 439 | ||
434 | .port_start = ata_port_start, | 440 | .port_start = ata_port_start, |
435 | }; | 441 | }; |
@@ -462,6 +468,8 @@ static struct ata_port_operations amd133_port_ops = { | |||
462 | 468 | ||
463 | .irq_handler = ata_interrupt, | 469 | .irq_handler = ata_interrupt, |
464 | .irq_clear = ata_bmdma_irq_clear, | 470 | .irq_clear = ata_bmdma_irq_clear, |
471 | .irq_on = ata_irq_on, | ||
472 | .irq_ack = ata_irq_ack, | ||
465 | 473 | ||
466 | .port_start = ata_port_start, | 474 | .port_start = ata_port_start, |
467 | }; | 475 | }; |
@@ -494,6 +502,8 @@ static struct ata_port_operations nv100_port_ops = { | |||
494 | 502 | ||
495 | .irq_handler = ata_interrupt, | 503 | .irq_handler = ata_interrupt, |
496 | .irq_clear = ata_bmdma_irq_clear, | 504 | .irq_clear = ata_bmdma_irq_clear, |
505 | .irq_on = ata_irq_on, | ||
506 | .irq_ack = ata_irq_ack, | ||
497 | 507 | ||
498 | .port_start = ata_port_start, | 508 | .port_start = ata_port_start, |
499 | }; | 509 | }; |
@@ -526,6 +536,8 @@ static struct ata_port_operations nv133_port_ops = { | |||
526 | 536 | ||
527 | .irq_handler = ata_interrupt, | 537 | .irq_handler = ata_interrupt, |
528 | .irq_clear = ata_bmdma_irq_clear, | 538 | .irq_clear = ata_bmdma_irq_clear, |
539 | .irq_on = ata_irq_on, | ||
540 | .irq_ack = ata_irq_ack, | ||
529 | 541 | ||
530 | .port_start = ata_port_start, | 542 | .port_start = ata_port_start, |
531 | }; | 543 | }; |