diff options
author | Tejun Heo <htejun@gmail.com> | 2008-03-24 23:22:50 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-04-17 15:44:18 -0400 |
commit | a1efdaba2dbd6fb89e23a87b66d3f4dd92c9f5af (patch) | |
tree | 6197c537892e0d887b2a90e369b74abf0500b9ac /drivers/ata/pdc_adma.c | |
parent | 959471936241bd83da7d0a76411cef6772140fe6 (diff) |
libata: make reset related methods proper port operations
Currently reset methods are not specified directly in the
ata_port_operations table. If a LLD wants to use custom reset
methods, it should construct and use a error_handler which uses those
reset methods. It's done this way for two reasons.
First, the ops table already contained too many methods and adding
four more of them would noticeably increase the amount of necessary
boilerplate code all over low level drivers.
Second, as ->error_handler uses those reset methods, it can get
confusing. ie. By overriding ->error_handler, those reset ops can be
made useless making layering a bit hazy.
Now that ops table uses inheritance, the first problem doesn't exist
anymore. The second isn't completely solved but is relieved by
providing default values - most drivers can just override what it has
implemented and don't have to concern itself about higher level
callbacks. In fact, there currently is no driver which actually
modifies error handling behavior. Drivers which override
->error_handler just wraps the standard error handler only to prepare
the controller for EH. I don't think making ops layering strict has
any noticeable benefit.
This patch makes ->prereset, ->softreset, ->hardreset, ->postreset and
their PMP counterparts propoer ops. Default ops are provided in the
base ops tables and drivers are converted to override individual reset
methods instead of creating custom error_handler.
* ata_std_error_handler() doesn't use sata_std_hardreset() if SCRs
aren't accessible. sata_promise doesn't need to use separate
error_handlers for PATA and SATA anymore.
* softreset is broken for sata_inic162x and sata_sx4. As libata now
always prefers hardreset, this doesn't really matter but the ops are
forced to NULL using ATA_OP_NULL for documentation purpose.
* pata_hpt374 needs to use different prereset for the first and second
PCI functions. This used to be done by branching from
hpt374_error_handler(). The proper way to do this is to use
separate ops and port_info tables for each function. Converted.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Diffstat (limited to 'drivers/ata/pdc_adma.c')
-rw-r--r-- | drivers/ata/pdc_adma.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/drivers/ata/pdc_adma.c b/drivers/ata/pdc_adma.c index a5706149af6b..5ed065d0ab4c 100644 --- a/drivers/ata/pdc_adma.c +++ b/drivers/ata/pdc_adma.c | |||
@@ -140,7 +140,7 @@ static void adma_bmdma_stop(struct ata_queued_cmd *qc); | |||
140 | static u8 adma_bmdma_status(struct ata_port *ap); | 140 | static u8 adma_bmdma_status(struct ata_port *ap); |
141 | static void adma_freeze(struct ata_port *ap); | 141 | static void adma_freeze(struct ata_port *ap); |
142 | static void adma_thaw(struct ata_port *ap); | 142 | static void adma_thaw(struct ata_port *ap); |
143 | static void adma_error_handler(struct ata_port *ap); | 143 | static int adma_prereset(struct ata_link *link, unsigned long deadline); |
144 | 144 | ||
145 | static struct scsi_host_template adma_ata_sht = { | 145 | static struct scsi_host_template adma_ata_sht = { |
146 | ATA_BASE_SHT(DRV_NAME), | 146 | ATA_BASE_SHT(DRV_NAME), |
@@ -166,7 +166,8 @@ static struct ata_port_operations adma_ata_ops = { | |||
166 | 166 | ||
167 | .freeze = adma_freeze, | 167 | .freeze = adma_freeze, |
168 | .thaw = adma_thaw, | 168 | .thaw = adma_thaw, |
169 | .error_handler = adma_error_handler, | 169 | .prereset = adma_prereset, |
170 | .softreset = ata_std_softreset, | ||
170 | 171 | ||
171 | .port_start = adma_port_start, | 172 | .port_start = adma_port_start, |
172 | .port_stop = adma_port_stop, | 173 | .port_stop = adma_port_stop, |
@@ -292,12 +293,6 @@ static int adma_prereset(struct ata_link *link, unsigned long deadline) | |||
292 | return ata_std_prereset(link, deadline); | 293 | return ata_std_prereset(link, deadline); |
293 | } | 294 | } |
294 | 295 | ||
295 | static void adma_error_handler(struct ata_port *ap) | ||
296 | { | ||
297 | ata_do_eh(ap, adma_prereset, ata_std_softreset, NULL, | ||
298 | ata_std_postreset); | ||
299 | } | ||
300 | |||
301 | static int adma_fill_sg(struct ata_queued_cmd *qc) | 296 | static int adma_fill_sg(struct ata_queued_cmd *qc) |
302 | { | 297 | { |
303 | struct scatterlist *sg; | 298 | struct scatterlist *sg; |