diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-16 14:33:39 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-07-16 14:33:39 -0400 |
commit | c9d6c1a2379373219bb3271bdcbdc0ab2edf349d (patch) | |
tree | 9807c4ff5c92df9fd914c39db6bdd0179ecb1b27 | |
parent | 8a97206e31dc2e2f8f9b4d97e234b5c701fe9894 (diff) |
ide: move ide_pio_cycle_time() to ide-timings.c
All ide_pio_cycle_time() users already select CONFIG_IDE_TIMINGS
so move the function from ide-lib.c to ide-timings.c.
While at it:
- convert ide_pio_cycle_time() to use ide_timing_find_mode()
- cleanup ide_pio_cycle_time() a bit
There should be no functional changes caused by this patch.
Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
-rw-r--r-- | drivers/ide/ide-lib.c | 23 | ||||
-rw-r--r-- | drivers/ide/ide-timings.c | 22 | ||||
-rw-r--r-- | include/linux/ide.h | 2 |
3 files changed, 23 insertions, 24 deletions
diff --git a/drivers/ide/ide-lib.c b/drivers/ide/ide-lib.c index 7e053d217732..efa5bfa64d01 100644 --- a/drivers/ide/ide-lib.c +++ b/drivers/ide/ide-lib.c | |||
@@ -188,29 +188,6 @@ static int ide_scan_pio_blacklist (char *model) | |||
188 | return -1; | 188 | return -1; |
189 | } | 189 | } |
190 | 190 | ||
191 | unsigned int ide_pio_cycle_time(ide_drive_t *drive, u8 pio) | ||
192 | { | ||
193 | struct hd_driveid *id = drive->id; | ||
194 | int cycle_time = 0; | ||
195 | |||
196 | if (id->field_valid & 2) { | ||
197 | if (id->capability & 8) | ||
198 | cycle_time = id->eide_pio_iordy; | ||
199 | else | ||
200 | cycle_time = id->eide_pio; | ||
201 | } | ||
202 | |||
203 | /* conservative "downgrade" for all pre-ATA2 drives */ | ||
204 | if (pio < 3) { | ||
205 | if (cycle_time && cycle_time < ide_pio_timings[pio].cycle_time) | ||
206 | cycle_time = 0; /* use standard timing */ | ||
207 | } | ||
208 | |||
209 | return cycle_time ? cycle_time : ide_pio_timings[pio].cycle_time; | ||
210 | } | ||
211 | |||
212 | EXPORT_SYMBOL_GPL(ide_pio_cycle_time); | ||
213 | |||
214 | /** | 191 | /** |
215 | * ide_get_best_pio_mode - get PIO mode from drive | 192 | * ide_get_best_pio_mode - get PIO mode from drive |
216 | * @drive: drive to consider | 193 | * @drive: drive to consider |
diff --git a/drivers/ide/ide-timings.c b/drivers/ide/ide-timings.c index ebef6d4e3f63..8c2f8327f487 100644 --- a/drivers/ide/ide-timings.c +++ b/drivers/ide/ide-timings.c | |||
@@ -1,5 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) 1999-2001 Vojtech Pavlik | 2 | * Copyright (c) 1999-2001 Vojtech Pavlik |
3 | * Copyright (c) 2007-2008 Bartlomiej Zolnierkiewicz | ||
3 | * | 4 | * |
4 | * This program is free software; you can redistribute it and/or modify | 5 | * This program is free software; you can redistribute it and/or modify |
5 | * it under the terms of the GNU General Public License as published by | 6 | * it under the terms of the GNU General Public License as published by |
@@ -75,6 +76,27 @@ struct ide_timing *ide_timing_find_mode(u8 speed) | |||
75 | } | 76 | } |
76 | EXPORT_SYMBOL_GPL(ide_timing_find_mode); | 77 | EXPORT_SYMBOL_GPL(ide_timing_find_mode); |
77 | 78 | ||
79 | u16 ide_pio_cycle_time(ide_drive_t *drive, u8 pio) | ||
80 | { | ||
81 | struct hd_driveid *id = drive->id; | ||
82 | struct ide_timing *t = ide_timing_find_mode(XFER_PIO_0 + pio); | ||
83 | u16 cycle = 0; | ||
84 | |||
85 | if (id->field_valid & 2) { | ||
86 | if (id->capability & 8) | ||
87 | cycle = id->eide_pio_iordy; | ||
88 | else | ||
89 | cycle = id->eide_pio; | ||
90 | |||
91 | /* conservative "downgrade" for all pre-ATA2 drives */ | ||
92 | if (pio < 3 && cycle < t->cycle) | ||
93 | cycle = 0; /* use standard timing */ | ||
94 | } | ||
95 | |||
96 | return cycle ? cycle : t->cycle; | ||
97 | } | ||
98 | EXPORT_SYMBOL_GPL(ide_pio_cycle_time); | ||
99 | |||
78 | #define ENOUGH(v, unit) (((v) - 1) / (unit) + 1) | 100 | #define ENOUGH(v, unit) (((v) - 1) / (unit) + 1) |
79 | #define EZ(v, unit) ((v) ? ENOUGH(v, unit) : 0) | 101 | #define EZ(v, unit) ((v) ? ENOUGH(v, unit) : 0) |
80 | 102 | ||
diff --git a/include/linux/ide.h b/include/linux/ide.h index 057001f6b1dc..3899c761b302 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
@@ -1300,6 +1300,7 @@ enum { | |||
1300 | }; | 1300 | }; |
1301 | 1301 | ||
1302 | struct ide_timing *ide_timing_find_mode(u8); | 1302 | struct ide_timing *ide_timing_find_mode(u8); |
1303 | u16 ide_pio_cycle_time(ide_drive_t *, u8); | ||
1303 | void ide_timing_merge(struct ide_timing *, struct ide_timing *, | 1304 | void ide_timing_merge(struct ide_timing *, struct ide_timing *, |
1304 | struct ide_timing *, unsigned int); | 1305 | struct ide_timing *, unsigned int); |
1305 | int ide_timing_compute(ide_drive_t *, u8, struct ide_timing *, int, int); | 1306 | int ide_timing_compute(ide_drive_t *, u8, struct ide_timing *, int, int); |
@@ -1311,7 +1312,6 @@ typedef struct ide_pio_timings_s { | |||
1311 | /* active + recovery (+ setup for some chips) */ | 1312 | /* active + recovery (+ setup for some chips) */ |
1312 | } ide_pio_timings_t; | 1313 | } ide_pio_timings_t; |
1313 | 1314 | ||
1314 | unsigned int ide_pio_cycle_time(ide_drive_t *, u8); | ||
1315 | u8 ide_get_best_pio_mode(ide_drive_t *, u8, u8); | 1315 | u8 ide_get_best_pio_mode(ide_drive_t *, u8, u8); |
1316 | extern const ide_pio_timings_t ide_pio_timings[6]; | 1316 | extern const ide_pio_timings_t ide_pio_timings[6]; |
1317 | 1317 | ||