diff options
| author | Jordan Crouse <jordan.crouse@amd.com> | 2005-12-14 20:17:46 -0500 |
|---|---|---|
| committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2005-12-14 20:17:46 -0500 |
| commit | 8f29e650bffc1e22ed6b2d0b321bc77627f3bb7a (patch) | |
| tree | d6b785c09c57a8f742e9a81162ee0d176677dc21 /include | |
| parent | 65e5f2e3b457b6b20a5c4481312189d141a33d24 (diff) | |
[PATCH] ide: AU1200 IDE update
Changes here include removing all of CONFIG_PM while it is being repeatedly
smacked with a lead pipe, moving the BURSTMODE param to a #define (it should
be defined almost always anyway), fixing the rqsize stuff, pulling ide_ioreg_t,
and general cleanups and whatnot.
Signed-off-by: Jordan Crouse <jordan.crouse@amd.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-mips/mach-au1x00/au1xxx_ide.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/include/asm-mips/mach-au1x00/au1xxx_ide.h b/include/asm-mips/mach-au1x00/au1xxx_ide.h index 0c3c127e619e..e867b4ef96d1 100644 --- a/include/asm-mips/mach-au1x00/au1xxx_ide.h +++ b/include/asm-mips/mach-au1x00/au1xxx_ide.h | |||
| @@ -74,9 +74,6 @@ typedef struct | |||
| 74 | u8 white_list, black_list; | 74 | u8 white_list, black_list; |
| 75 | struct dbdma_cmd *dma_table_cpu; | 75 | struct dbdma_cmd *dma_table_cpu; |
| 76 | dma_addr_t dma_table_dma; | 76 | dma_addr_t dma_table_dma; |
| 77 | struct scatterlist *sg_table; | ||
| 78 | int sg_nents; | ||
| 79 | int sg_dma_direction; | ||
| 80 | #endif | 77 | #endif |
| 81 | struct device *dev; | 78 | struct device *dev; |
| 82 | int irq; | 79 | int irq; |
| @@ -162,13 +159,9 @@ int __init auide_probe(void); | |||
| 162 | * Multi-Word DMA + DbDMA functions | 159 | * Multi-Word DMA + DbDMA functions |
| 163 | */ | 160 | */ |
| 164 | #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA | 161 | #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA |
| 165 | |||
| 166 | static int in_drive_list(struct hd_driveid *id, | ||
| 167 | const struct drive_list_entry *drive_table); | ||
| 168 | static int auide_build_sglist(ide_drive_t *drive, struct request *rq); | 162 | static int auide_build_sglist(ide_drive_t *drive, struct request *rq); |
| 169 | static int auide_build_dmatable(ide_drive_t *drive); | 163 | static int auide_build_dmatable(ide_drive_t *drive); |
| 170 | static int auide_dma_end(ide_drive_t *drive); | 164 | static int auide_dma_end(ide_drive_t *drive); |
| 171 | static void auide_dma_start(ide_drive_t *drive ); | ||
| 172 | ide_startstop_t auide_dma_intr (ide_drive_t *drive); | 165 | ide_startstop_t auide_dma_intr (ide_drive_t *drive); |
| 173 | static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command); | 166 | static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command); |
| 174 | static int auide_dma_setup(ide_drive_t *drive); | 167 | static int auide_dma_setup(ide_drive_t *drive); |
| @@ -183,8 +176,6 @@ int __init auide_probe(void); | |||
| 183 | static void auide_ddma_rx_callback(int irq, void *param, | 176 | static void auide_ddma_rx_callback(int irq, void *param, |
| 184 | struct pt_regs *regs); | 177 | struct pt_regs *regs); |
| 185 | static int auide_dma_off_quietly(ide_drive_t *drive); | 178 | static int auide_dma_off_quietly(ide_drive_t *drive); |
| 186 | static int auide_dma_timeout(ide_drive_t *drive); | ||
| 187 | |||
| 188 | #endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */ | 179 | #endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */ |
| 189 | 180 | ||
| 190 | /******************************************************************************* | 181 | /******************************************************************************* |
| @@ -294,3 +285,11 @@ int __init auide_probe(void); | |||
| 294 | #define SBC_IDE_MDMA2_TPM (0x00<<6) | 285 | #define SBC_IDE_MDMA2_TPM (0x00<<6) |
| 295 | #define SBC_IDE_MDMA2_TA (0x12<<0) | 286 | #define SBC_IDE_MDMA2_TA (0x12<<0) |
| 296 | 287 | ||
| 288 | #define SBC_IDE_TIMING(mode) \ | ||
| 289 | SBC_IDE_##mode##_TWCS | \ | ||
| 290 | SBC_IDE_##mode##_TCSH | \ | ||
| 291 | SBC_IDE_##mode##_TCSOFF | \ | ||
| 292 | SBC_IDE_##mode##_TWP | \ | ||
| 293 | SBC_IDE_##mode##_TCSW | \ | ||
| 294 | SBC_IDE_##mode##_TPM | \ | ||
| 295 | SBC_IDE_##mode##_TA | ||
