blob: e8935519edbe0a202deb05b932183bb6b1ca05ef [file] [log] [blame]
Pete Popov26a940e2005-09-15 08:03:12 +00001/*
2 * linux/drivers/ide/mips/au1xxx-ide.c version 01.30.00 Aug. 02 2005
3 *
4 * BRIEF MODULE DESCRIPTION
5 * AMD Alchemy Au1xxx IDE interface routines over the Static Bus
6 *
7 * Copyright (c) 2003-2005 AMD, Personal Connectivity Solutions
8 *
9 * This program is free software; you can redistribute it and/or modify it under
10 * the terms of the GNU General Public License as published by the Free Software
11 * Foundation; either version 2 of the License, or (at your option) any later
12 * version.
13 *
14 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
15 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
16 * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
23 * POSSIBILITY OF SUCH DAMAGE.
24 *
25 * You should have received a copy of the GNU General Public License along with
26 * this program; if not, write to the Free Software Foundation, Inc.,
27 * 675 Mass Ave, Cambridge, MA 02139, USA.
28 *
29 * Note: for more information, please refer "AMD Alchemy Au1200/Au1550 IDE
30 * Interface and Linux Device Driver" Application Note.
31 */
Pete Popov26a940e2005-09-15 08:03:12 +000032#include <linux/types.h>
33#include <linux/module.h>
34#include <linux/kernel.h>
35#include <linux/delay.h>
Jordan Crouse8f29e652005-12-15 02:17:46 +010036#include <linux/platform_device.h>
37
Pete Popov26a940e2005-09-15 08:03:12 +000038#include <linux/init.h>
39#include <linux/ide.h>
40#include <linux/sysdev.h>
41
42#include <linux/dma-mapping.h>
43
Jordan Crouse8f29e652005-12-15 02:17:46 +010044#include "ide-timing.h"
45
Pete Popov26a940e2005-09-15 08:03:12 +000046#include <asm/io.h>
47#include <asm/mach-au1x00/au1xxx.h>
48#include <asm/mach-au1x00/au1xxx_dbdma.h>
49
Pete Popov26a940e2005-09-15 08:03:12 +000050#include <asm/mach-au1x00/au1xxx_ide.h>
51
52#define DRV_NAME "au1200-ide"
53#define DRV_VERSION "1.0"
Jordan Crouse8f29e652005-12-15 02:17:46 +010054#define DRV_AUTHOR "Enrico Walther <enrico.walther@amd.com> / Pete Popov <ppopov@embeddedalley.com>"
55
56/* enable the burstmode in the dbdma */
57#define IDE_AU1XXX_BURSTMODE 1
Pete Popov26a940e2005-09-15 08:03:12 +000058
59static _auide_hwif auide_hwif;
Jordan Crouse8f29e652005-12-15 02:17:46 +010060static int dbdma_init_done;
Pete Popov26a940e2005-09-15 08:03:12 +000061
Jordan Crouse8f29e652005-12-15 02:17:46 +010062#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
Pete Popov26a940e2005-09-15 08:03:12 +000063
64void auide_insw(unsigned long port, void *addr, u32 count)
65{
Jordan Crouse8f29e652005-12-15 02:17:46 +010066 _auide_hwif *ahwif = &auide_hwif;
67 chan_tab_t *ctp;
68 au1x_ddma_desc_t *dp;
Pete Popov26a940e2005-09-15 08:03:12 +000069
Jordan Crouse8f29e652005-12-15 02:17:46 +010070 if(!put_dest_flags(ahwif->rx_chan, (void*)addr, count << 1,
71 DDMA_FLAGS_NOIE)) {
72 printk(KERN_ERR "%s failed %d\n", __FUNCTION__, __LINE__);
73 return;
74 }
75 ctp = *((chan_tab_t **)ahwif->rx_chan);
76 dp = ctp->cur_ptr;
77 while (dp->dscr_cmd0 & DSCR_CMD0_V)
78 ;
79 ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
Pete Popov26a940e2005-09-15 08:03:12 +000080}
81
82void auide_outsw(unsigned long port, void *addr, u32 count)
83{
Jordan Crouse8f29e652005-12-15 02:17:46 +010084 _auide_hwif *ahwif = &auide_hwif;
85 chan_tab_t *ctp;
86 au1x_ddma_desc_t *dp;
Pete Popov26a940e2005-09-15 08:03:12 +000087
Jordan Crouse8f29e652005-12-15 02:17:46 +010088 if(!put_source_flags(ahwif->tx_chan, (void*)addr,
89 count << 1, DDMA_FLAGS_NOIE)) {
90 printk(KERN_ERR "%s failed %d\n", __FUNCTION__, __LINE__);
91 return;
92 }
93 ctp = *((chan_tab_t **)ahwif->tx_chan);
94 dp = ctp->cur_ptr;
95 while (dp->dscr_cmd0 & DSCR_CMD0_V)
96 ;
97 ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
98}
99
Pete Popov26a940e2005-09-15 08:03:12 +0000100#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000101
102static void auide_tune_drive(ide_drive_t *drive, byte pio)
103{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100104 int mem_sttime;
105 int mem_stcfg;
106 u8 speed;
Pete Popov26a940e2005-09-15 08:03:12 +0000107
Jordan Crouse8f29e652005-12-15 02:17:46 +0100108 /* get the best pio mode for the drive */
109 pio = ide_get_best_pio_mode(drive, pio, 4, NULL);
Pete Popov26a940e2005-09-15 08:03:12 +0000110
Jordan Crouse8f29e652005-12-15 02:17:46 +0100111 printk(KERN_INFO "%s: setting Au1XXX IDE to PIO mode%d\n",
112 drive->name, pio);
Pete Popov26a940e2005-09-15 08:03:12 +0000113
Jordan Crouse8f29e652005-12-15 02:17:46 +0100114 mem_sttime = 0;
115 mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000116
Jordan Crouse8f29e652005-12-15 02:17:46 +0100117 /* set pio mode! */
118 switch(pio) {
119 case 0:
120 mem_sttime = SBC_IDE_TIMING(PIO0);
Pete Popov26a940e2005-09-15 08:03:12 +0000121
Jordan Crouse8f29e652005-12-15 02:17:46 +0100122 /* set configuration for RCS2# */
123 mem_stcfg |= TS_MASK;
124 mem_stcfg &= ~TCSOE_MASK;
125 mem_stcfg &= ~TOECS_MASK;
126 mem_stcfg |= SBC_IDE_PIO0_TCSOE | SBC_IDE_PIO0_TOECS;
127 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000128
Jordan Crouse8f29e652005-12-15 02:17:46 +0100129 case 1:
130 mem_sttime = SBC_IDE_TIMING(PIO1);
Pete Popov26a940e2005-09-15 08:03:12 +0000131
Jordan Crouse8f29e652005-12-15 02:17:46 +0100132 /* set configuration for RCS2# */
133 mem_stcfg |= TS_MASK;
134 mem_stcfg &= ~TCSOE_MASK;
135 mem_stcfg &= ~TOECS_MASK;
136 mem_stcfg |= SBC_IDE_PIO1_TCSOE | SBC_IDE_PIO1_TOECS;
137 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000138
Jordan Crouse8f29e652005-12-15 02:17:46 +0100139 case 2:
140 mem_sttime = SBC_IDE_TIMING(PIO2);
Pete Popov26a940e2005-09-15 08:03:12 +0000141
Jordan Crouse8f29e652005-12-15 02:17:46 +0100142 /* set configuration for RCS2# */
143 mem_stcfg &= ~TS_MASK;
144 mem_stcfg &= ~TCSOE_MASK;
145 mem_stcfg &= ~TOECS_MASK;
146 mem_stcfg |= SBC_IDE_PIO2_TCSOE | SBC_IDE_PIO2_TOECS;
147 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000148
Jordan Crouse8f29e652005-12-15 02:17:46 +0100149 case 3:
150 mem_sttime = SBC_IDE_TIMING(PIO3);
Pete Popov26a940e2005-09-15 08:03:12 +0000151
Jordan Crouse8f29e652005-12-15 02:17:46 +0100152 /* set configuration for RCS2# */
153 mem_stcfg &= ~TS_MASK;
154 mem_stcfg &= ~TCSOE_MASK;
155 mem_stcfg &= ~TOECS_MASK;
156 mem_stcfg |= SBC_IDE_PIO3_TCSOE | SBC_IDE_PIO3_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000157
Jordan Crouse8f29e652005-12-15 02:17:46 +0100158 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000159
Jordan Crouse8f29e652005-12-15 02:17:46 +0100160 case 4:
161 mem_sttime = SBC_IDE_TIMING(PIO4);
Pete Popov26a940e2005-09-15 08:03:12 +0000162
Jordan Crouse8f29e652005-12-15 02:17:46 +0100163 /* set configuration for RCS2# */
164 mem_stcfg &= ~TS_MASK;
165 mem_stcfg &= ~TCSOE_MASK;
166 mem_stcfg &= ~TOECS_MASK;
167 mem_stcfg |= SBC_IDE_PIO4_TCSOE | SBC_IDE_PIO4_TOECS;
168 break;
169 }
170
171 au_writel(mem_sttime,MEM_STTIME2);
172 au_writel(mem_stcfg,MEM_STCFG2);
173
174 speed = pio + XFER_PIO_0;
175 ide_config_drive_speed(drive, speed);
Pete Popov26a940e2005-09-15 08:03:12 +0000176}
177
178static int auide_tune_chipset (ide_drive_t *drive, u8 speed)
179{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100180 int mem_sttime;
181 int mem_stcfg;
Pete Popov26a940e2005-09-15 08:03:12 +0000182
Jordan Crouse8f29e652005-12-15 02:17:46 +0100183 mem_sttime = 0;
184 mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000185
Jordan Crouse8f29e652005-12-15 02:17:46 +0100186 if (speed >= XFER_PIO_0 && speed <= XFER_PIO_4) {
187 auide_tune_drive(drive, speed - XFER_PIO_0);
188 return 0;
189 }
Bartlomiej Zolnierkiewicza523a172007-02-17 02:40:23 +0100190
Jordan Crouse8f29e652005-12-15 02:17:46 +0100191 switch(speed) {
Pete Popov26a940e2005-09-15 08:03:12 +0000192#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Jordan Crouse8f29e652005-12-15 02:17:46 +0100193 case XFER_MW_DMA_2:
194 mem_sttime = SBC_IDE_TIMING(MDMA2);
Pete Popov26a940e2005-09-15 08:03:12 +0000195
Jordan Crouse8f29e652005-12-15 02:17:46 +0100196 /* set configuration for RCS2# */
197 mem_stcfg &= ~TS_MASK;
198 mem_stcfg &= ~TCSOE_MASK;
199 mem_stcfg &= ~TOECS_MASK;
200 mem_stcfg |= SBC_IDE_MDMA2_TCSOE | SBC_IDE_MDMA2_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000201
Jordan Crouse8f29e652005-12-15 02:17:46 +0100202 break;
203 case XFER_MW_DMA_1:
204 mem_sttime = SBC_IDE_TIMING(MDMA1);
Pete Popov26a940e2005-09-15 08:03:12 +0000205
Jordan Crouse8f29e652005-12-15 02:17:46 +0100206 /* set configuration for RCS2# */
207 mem_stcfg &= ~TS_MASK;
208 mem_stcfg &= ~TCSOE_MASK;
209 mem_stcfg &= ~TOECS_MASK;
210 mem_stcfg |= SBC_IDE_MDMA1_TCSOE | SBC_IDE_MDMA1_TOECS;
211
Jordan Crouse8f29e652005-12-15 02:17:46 +0100212 break;
213 case XFER_MW_DMA_0:
214 mem_sttime = SBC_IDE_TIMING(MDMA0);
215
216 /* set configuration for RCS2# */
217 mem_stcfg |= TS_MASK;
218 mem_stcfg &= ~TCSOE_MASK;
219 mem_stcfg &= ~TOECS_MASK;
220 mem_stcfg |= SBC_IDE_MDMA0_TCSOE | SBC_IDE_MDMA0_TOECS;
221
Jordan Crouse8f29e652005-12-15 02:17:46 +0100222 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000223#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100224 default:
225 return 1;
226 }
Bartlomiej Zolnierkiewicza523a172007-02-17 02:40:23 +0100227
228 if (ide_config_drive_speed(drive, speed))
Jordan Crouse8f29e652005-12-15 02:17:46 +0100229 return 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000230
Jordan Crouse8f29e652005-12-15 02:17:46 +0100231 au_writel(mem_sttime,MEM_STTIME2);
232 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000233
Jordan Crouse8f29e652005-12-15 02:17:46 +0100234 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000235}
236
237/*
238 * Multi-Word DMA + DbDMA functions
239 */
Pete Popov26a940e2005-09-15 08:03:12 +0000240
Jordan Crouse8f29e652005-12-15 02:17:46 +0100241#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Pete Popov26a940e2005-09-15 08:03:12 +0000242
243static int auide_build_sglist(ide_drive_t *drive, struct request *rq)
244{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100245 ide_hwif_t *hwif = drive->hwif;
246 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
247 struct scatterlist *sg = hwif->sg_table;
Pete Popov26a940e2005-09-15 08:03:12 +0000248
Jordan Crouse8f29e652005-12-15 02:17:46 +0100249 ide_map_sg(drive, rq);
Pete Popov26a940e2005-09-15 08:03:12 +0000250
Jordan Crouse8f29e652005-12-15 02:17:46 +0100251 if (rq_data_dir(rq) == READ)
252 hwif->sg_dma_direction = DMA_FROM_DEVICE;
253 else
254 hwif->sg_dma_direction = DMA_TO_DEVICE;
Pete Popov26a940e2005-09-15 08:03:12 +0000255
Jordan Crouse8f29e652005-12-15 02:17:46 +0100256 return dma_map_sg(ahwif->dev, sg, hwif->sg_nents,
257 hwif->sg_dma_direction);
Pete Popov26a940e2005-09-15 08:03:12 +0000258}
259
260static int auide_build_dmatable(ide_drive_t *drive)
261{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100262 int i, iswrite, count = 0;
263 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000264
Jordan Crouse8f29e652005-12-15 02:17:46 +0100265 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000266
Jordan Crouse8f29e652005-12-15 02:17:46 +0100267 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
268 struct scatterlist *sg;
Pete Popov26a940e2005-09-15 08:03:12 +0000269
Jordan Crouse8f29e652005-12-15 02:17:46 +0100270 iswrite = (rq_data_dir(rq) == WRITE);
271 /* Save for interrupt context */
272 ahwif->drive = drive;
Pete Popov26a940e2005-09-15 08:03:12 +0000273
Jordan Crouse8f29e652005-12-15 02:17:46 +0100274 /* Build sglist */
275 hwif->sg_nents = i = auide_build_sglist(drive, rq);
Pete Popov26a940e2005-09-15 08:03:12 +0000276
Jordan Crouse8f29e652005-12-15 02:17:46 +0100277 if (!i)
278 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000279
Jordan Crouse8f29e652005-12-15 02:17:46 +0100280 /* fill the descriptors */
281 sg = hwif->sg_table;
282 while (i && sg_dma_len(sg)) {
283 u32 cur_addr;
284 u32 cur_len;
Pete Popov26a940e2005-09-15 08:03:12 +0000285
Jordan Crouse8f29e652005-12-15 02:17:46 +0100286 cur_addr = sg_dma_address(sg);
287 cur_len = sg_dma_len(sg);
Pete Popov26a940e2005-09-15 08:03:12 +0000288
Jordan Crouse8f29e652005-12-15 02:17:46 +0100289 while (cur_len) {
290 u32 flags = DDMA_FLAGS_NOIE;
291 unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;
Pete Popov26a940e2005-09-15 08:03:12 +0000292
Jordan Crouse8f29e652005-12-15 02:17:46 +0100293 if (++count >= PRD_ENTRIES) {
294 printk(KERN_WARNING "%s: DMA table too small\n",
295 drive->name);
296 goto use_pio_instead;
297 }
Pete Popov26a940e2005-09-15 08:03:12 +0000298
Jordan Crouse8f29e652005-12-15 02:17:46 +0100299 /* Lets enable intr for the last descriptor only */
300 if (1==i)
301 flags = DDMA_FLAGS_IE;
302 else
303 flags = DDMA_FLAGS_NOIE;
Pete Popov26a940e2005-09-15 08:03:12 +0000304
Jordan Crouse8f29e652005-12-15 02:17:46 +0100305 if (iswrite) {
306 if(!put_source_flags(ahwif->tx_chan,
307 (void*)(page_address(sg->page)
308 + sg->offset),
309 tc, flags)) {
310 printk(KERN_ERR "%s failed %d\n",
311 __FUNCTION__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000312 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100313 } else
Pete Popov26a940e2005-09-15 08:03:12 +0000314 {
Jordan Crouse8f29e652005-12-15 02:17:46 +0100315 if(!put_dest_flags(ahwif->rx_chan,
316 (void*)(page_address(sg->page)
317 + sg->offset),
318 tc, flags)) {
319 printk(KERN_ERR "%s failed %d\n",
320 __FUNCTION__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000321 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100322 }
Pete Popov26a940e2005-09-15 08:03:12 +0000323
Jordan Crouse8f29e652005-12-15 02:17:46 +0100324 cur_addr += tc;
325 cur_len -= tc;
326 }
327 sg++;
328 i--;
329 }
Pete Popov26a940e2005-09-15 08:03:12 +0000330
Jordan Crouse8f29e652005-12-15 02:17:46 +0100331 if (count)
332 return 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000333
Jordan Crouse8f29e652005-12-15 02:17:46 +0100334 use_pio_instead:
335 dma_unmap_sg(ahwif->dev,
336 hwif->sg_table,
337 hwif->sg_nents,
338 hwif->sg_dma_direction);
Pete Popov26a940e2005-09-15 08:03:12 +0000339
Jordan Crouse8f29e652005-12-15 02:17:46 +0100340 return 0; /* revert to PIO for this request */
Pete Popov26a940e2005-09-15 08:03:12 +0000341}
342
343static int auide_dma_end(ide_drive_t *drive)
344{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100345 ide_hwif_t *hwif = HWIF(drive);
346 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
Pete Popov26a940e2005-09-15 08:03:12 +0000347
Jordan Crouse8f29e652005-12-15 02:17:46 +0100348 if (hwif->sg_nents) {
349 dma_unmap_sg(ahwif->dev, hwif->sg_table, hwif->sg_nents,
350 hwif->sg_dma_direction);
351 hwif->sg_nents = 0;
352 }
Pete Popov26a940e2005-09-15 08:03:12 +0000353
Jordan Crouse8f29e652005-12-15 02:17:46 +0100354 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000355}
356
357static void auide_dma_start(ide_drive_t *drive )
358{
Pete Popov26a940e2005-09-15 08:03:12 +0000359}
360
Pete Popov26a940e2005-09-15 08:03:12 +0000361
362static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command)
363{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100364 /* issue cmd to drive */
365 ide_execute_command(drive, command, &ide_dma_intr,
366 (2*WAIT_CMD), NULL);
Pete Popov26a940e2005-09-15 08:03:12 +0000367}
368
369static int auide_dma_setup(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100370{
371 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000372
Jordan Crouse8f29e652005-12-15 02:17:46 +0100373 if (!auide_build_dmatable(drive)) {
374 ide_map_sg(drive, rq);
375 return 1;
376 }
Pete Popov26a940e2005-09-15 08:03:12 +0000377
Jordan Crouse8f29e652005-12-15 02:17:46 +0100378 drive->waiting_for_dma = 1;
379 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000380}
381
382static int auide_dma_check(ide_drive_t *drive)
383{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100384 u8 speed;
Pete Popov26a940e2005-09-15 08:03:12 +0000385
386#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Jordan Crouse8f29e652005-12-15 02:17:46 +0100387
388 if( dbdma_init_done == 0 ){
389 auide_hwif.white_list = ide_in_drive_list(drive->id,
390 dma_white_list);
391 auide_hwif.black_list = ide_in_drive_list(drive->id,
392 dma_black_list);
393 auide_hwif.drive = drive;
394 auide_ddma_init(&auide_hwif);
395 dbdma_init_done = 1;
396 }
Pete Popov26a940e2005-09-15 08:03:12 +0000397#endif
398
Jordan Crouse8f29e652005-12-15 02:17:46 +0100399 /* Is the drive in our DMA black list? */
Pete Popov26a940e2005-09-15 08:03:12 +0000400
Jordan Crouse8f29e652005-12-15 02:17:46 +0100401 if ( auide_hwif.black_list ) {
402 drive->using_dma = 0;
403
404 /* Borrowed the warning message from ide-dma.c */
405
406 printk(KERN_WARNING "%s: Disabling DMA for %s (blacklisted)\n",
407 drive->name, drive->id->model);
408 }
409 else
410 drive->using_dma = 1;
411
412 speed = ide_find_best_mode(drive, XFER_PIO | XFER_MWDMA);
413
414 if (drive->autodma && (speed & XFER_MODE) != XFER_PIO)
Bartlomiej Zolnierkiewicz3608b5d2007-02-17 02:40:26 +0100415 return 0;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100416
Bartlomiej Zolnierkiewicz3608b5d2007-02-17 02:40:26 +0100417 return -1;
Pete Popov26a940e2005-09-15 08:03:12 +0000418}
419
420static int auide_dma_test_irq(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100421{
422 if (drive->waiting_for_dma == 0)
423 printk(KERN_WARNING "%s: ide_dma_test_irq \
Pete Popov26a940e2005-09-15 08:03:12 +0000424 called while not waiting\n", drive->name);
425
Jordan Crouse8f29e652005-12-15 02:17:46 +0100426 /* If dbdma didn't execute the STOP command yet, the
427 * active bit is still set
Pete Popov26a940e2005-09-15 08:03:12 +0000428 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100429 drive->waiting_for_dma++;
430 if (drive->waiting_for_dma >= DMA_WAIT_TIMEOUT) {
431 printk(KERN_WARNING "%s: timeout waiting for ddma to \
Pete Popov26a940e2005-09-15 08:03:12 +0000432 complete\n", drive->name);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100433 return 1;
434 }
435 udelay(10);
436 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000437}
438
Bartlomiej Zolnierkiewiczccf35282007-02-17 02:40:26 +0100439static void auide_dma_host_on(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000440{
Pete Popov26a940e2005-09-15 08:03:12 +0000441}
442
443static int auide_dma_on(ide_drive_t *drive)
444{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100445 drive->using_dma = 1;
Bartlomiej Zolnierkiewiczccf35282007-02-17 02:40:26 +0100446
447 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000448}
449
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100450static void auide_dma_host_off(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000451{
Pete Popov26a940e2005-09-15 08:03:12 +0000452}
453
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100454static void auide_dma_off_quietly(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000455{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100456 drive->using_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000457}
458
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200459static void auide_dma_lost_irq(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000460{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100461 printk(KERN_ERR "%s: IRQ lost\n", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000462}
463
Ralf Baechle53e62d32006-09-25 23:32:10 -0700464static void auide_ddma_tx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000465{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100466 _auide_hwif *ahwif = (_auide_hwif*)param;
467 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000468}
469
Ralf Baechle53e62d32006-09-25 23:32:10 -0700470static void auide_ddma_rx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000471{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100472 _auide_hwif *ahwif = (_auide_hwif*)param;
473 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000474}
475
Jordan Crouse8f29e652005-12-15 02:17:46 +0100476#endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
477
478static void auide_init_dbdma_dev(dbdev_tab_t *dev, u32 dev_id, u32 tsize, u32 devwidth, u32 flags)
479{
480 dev->dev_id = dev_id;
481 dev->dev_physaddr = (u32)AU1XXX_ATA_PHYS_ADDR;
482 dev->dev_intlevel = 0;
483 dev->dev_intpolarity = 0;
484 dev->dev_tsize = tsize;
485 dev->dev_devwidth = devwidth;
486 dev->dev_flags = flags;
487}
488
489#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
490
Pete Popov26a940e2005-09-15 08:03:12 +0000491static int auide_dma_timeout(ide_drive_t *drive)
492{
493// printk("%s\n", __FUNCTION__);
494
Jordan Crouse8f29e652005-12-15 02:17:46 +0100495 printk(KERN_ERR "%s: DMA timeout occurred: ", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000496
Jordan Crouse8f29e652005-12-15 02:17:46 +0100497 if (HWIF(drive)->ide_dma_test_irq(drive))
498 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000499
Jordan Crouse8f29e652005-12-15 02:17:46 +0100500 return HWIF(drive)->ide_dma_end(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000501}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100502
Pete Popov26a940e2005-09-15 08:03:12 +0000503
Jordan Crouse8f29e652005-12-15 02:17:46 +0100504static int auide_ddma_init(_auide_hwif *auide) {
505
506 dbdev_tab_t source_dev_tab, target_dev_tab;
507 u32 dev_id, tsize, devwidth, flags;
508 ide_hwif_t *hwif = auide->hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000509
Jordan Crouse8f29e652005-12-15 02:17:46 +0100510 dev_id = AU1XXX_ATA_DDMA_REQ;
511
512 if (auide->white_list || auide->black_list) {
513 tsize = 8;
514 devwidth = 32;
515 }
516 else {
517 tsize = 1;
518 devwidth = 16;
519
520 printk(KERN_ERR "au1xxx-ide: %s is not on ide driver whitelist.\n",auide_hwif.drive->id->model);
521 printk(KERN_ERR " please read 'Documentation/mips/AU1xxx_IDE.README'");
522 }
523
524#ifdef IDE_AU1XXX_BURSTMODE
525 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
526#else
527 flags = DEV_FLAGS_SYNC;
528#endif
529
530 /* setup dev_tab for tx channel */
531 auide_init_dbdma_dev( &source_dev_tab,
532 dev_id,
533 tsize, devwidth, DEV_FLAGS_OUT | flags);
534 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
535
536 auide_init_dbdma_dev( &source_dev_tab,
537 dev_id,
538 tsize, devwidth, DEV_FLAGS_IN | flags);
539 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
540
541 /* We also need to add a target device for the DMA */
542 auide_init_dbdma_dev( &target_dev_tab,
543 (u32)DSCR_CMD0_ALWAYS,
544 tsize, devwidth, DEV_FLAGS_ANYUSE);
545 auide->target_dev_id = au1xxx_ddma_add_device(&target_dev_tab);
546
547 /* Get a channel for TX */
548 auide->tx_chan = au1xxx_dbdma_chan_alloc(auide->target_dev_id,
549 auide->tx_dev_id,
550 auide_ddma_tx_callback,
551 (void*)auide);
552
553 /* Get a channel for RX */
554 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
555 auide->target_dev_id,
556 auide_ddma_rx_callback,
557 (void*)auide);
558
559 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
560 NUM_DESCRIPTORS);
561 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
562 NUM_DESCRIPTORS);
563
564 hwif->dmatable_cpu = dma_alloc_coherent(auide->dev,
565 PRD_ENTRIES * PRD_BYTES, /* 1 Page */
566 &hwif->dmatable_dma, GFP_KERNEL);
567
568 au1xxx_dbdma_start( auide->tx_chan );
569 au1xxx_dbdma_start( auide->rx_chan );
570
571 return 0;
572}
573#else
574
Pete Popov26a940e2005-09-15 08:03:12 +0000575static int auide_ddma_init( _auide_hwif *auide )
576{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100577 dbdev_tab_t source_dev_tab;
578 int flags;
Pete Popov26a940e2005-09-15 08:03:12 +0000579
Jordan Crouse8f29e652005-12-15 02:17:46 +0100580#ifdef IDE_AU1XXX_BURSTMODE
581 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
Pete Popov26a940e2005-09-15 08:03:12 +0000582#else
Jordan Crouse8f29e652005-12-15 02:17:46 +0100583 flags = DEV_FLAGS_SYNC;
Pete Popov26a940e2005-09-15 08:03:12 +0000584#endif
585
Jordan Crouse8f29e652005-12-15 02:17:46 +0100586 /* setup dev_tab for tx channel */
587 auide_init_dbdma_dev( &source_dev_tab,
588 (u32)DSCR_CMD0_ALWAYS,
589 8, 32, DEV_FLAGS_OUT | flags);
590 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
Pete Popov26a940e2005-09-15 08:03:12 +0000591
Jordan Crouse8f29e652005-12-15 02:17:46 +0100592 auide_init_dbdma_dev( &source_dev_tab,
593 (u32)DSCR_CMD0_ALWAYS,
594 8, 32, DEV_FLAGS_IN | flags);
595 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
596
597 /* Get a channel for TX */
598 auide->tx_chan = au1xxx_dbdma_chan_alloc(DSCR_CMD0_ALWAYS,
599 auide->tx_dev_id,
600 NULL,
601 (void*)auide);
602
603 /* Get a channel for RX */
604 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
605 DSCR_CMD0_ALWAYS,
606 NULL,
607 (void*)auide);
608
609 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
610 NUM_DESCRIPTORS);
611 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
612 NUM_DESCRIPTORS);
613
614 au1xxx_dbdma_start( auide->tx_chan );
615 au1xxx_dbdma_start( auide->rx_chan );
616
617 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000618}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100619#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000620
621static void auide_setup_ports(hw_regs_t *hw, _auide_hwif *ahwif)
622{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100623 int i;
624 unsigned long *ata_regs = hw->io_ports;
Pete Popov26a940e2005-09-15 08:03:12 +0000625
Jordan Crouse8f29e652005-12-15 02:17:46 +0100626 /* FIXME? */
627 for (i = 0; i < IDE_CONTROL_OFFSET; i++) {
628 *ata_regs++ = ahwif->regbase + (i << AU1XXX_ATA_REG_OFFSET);
629 }
Pete Popov26a940e2005-09-15 08:03:12 +0000630
Jordan Crouse8f29e652005-12-15 02:17:46 +0100631 /* set the Alternative Status register */
632 *ata_regs = ahwif->regbase + (14 << AU1XXX_ATA_REG_OFFSET);
Pete Popov26a940e2005-09-15 08:03:12 +0000633}
634
635static int au_ide_probe(struct device *dev)
636{
637 struct platform_device *pdev = to_platform_device(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100638 _auide_hwif *ahwif = &auide_hwif;
639 ide_hwif_t *hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000640 struct resource *res;
Ralf Baechle1918fd62007-03-17 21:57:24 +0100641 hw_regs_t *hw;
Pete Popov26a940e2005-09-15 08:03:12 +0000642 int ret = 0;
643
644#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100645 char *mode = "MWDMA2";
Pete Popov26a940e2005-09-15 08:03:12 +0000646#elif defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100647 char *mode = "PIO+DDMA(offload)";
Pete Popov26a940e2005-09-15 08:03:12 +0000648#endif
649
Jordan Crouse8f29e652005-12-15 02:17:46 +0100650 memset(&auide_hwif, 0, sizeof(_auide_hwif));
651 auide_hwif.dev = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000652
653 ahwif->dev = dev;
654 ahwif->irq = platform_get_irq(pdev, 0);
655
656 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
657
658 if (res == NULL) {
659 pr_debug("%s %d: no base address\n", DRV_NAME, pdev->id);
660 ret = -ENODEV;
661 goto out;
662 }
David Vrabel48944732006-01-19 17:56:29 +0000663 if (ahwif->irq < 0) {
664 pr_debug("%s %d: no IRQ\n", DRV_NAME, pdev->id);
665 ret = -ENODEV;
666 goto out;
667 }
Pete Popov26a940e2005-09-15 08:03:12 +0000668
Jordan Crouse8f29e652005-12-15 02:17:46 +0100669 if (!request_mem_region (res->start, res->end-res->start, pdev->name)) {
Pete Popov26a940e2005-09-15 08:03:12 +0000670 pr_debug("%s: request_mem_region failed\n", DRV_NAME);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100671 ret = -EBUSY;
Pete Popov26a940e2005-09-15 08:03:12 +0000672 goto out;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100673 }
Pete Popov26a940e2005-09-15 08:03:12 +0000674
675 ahwif->regbase = (u32)ioremap(res->start, res->end-res->start);
676 if (ahwif->regbase == 0) {
677 ret = -ENOMEM;
678 goto out;
679 }
680
Jordan Crouse8f29e652005-12-15 02:17:46 +0100681 /* FIXME: This might possibly break PCMCIA IDE devices */
Pete Popov26a940e2005-09-15 08:03:12 +0000682
Jordan Crouse8f29e652005-12-15 02:17:46 +0100683 hwif = &ide_hwifs[pdev->id];
Ralf Baechle1918fd62007-03-17 21:57:24 +0100684 hw = &hwif->hw;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100685 hwif->irq = hw->irq = ahwif->irq;
686 hwif->chipset = ide_au1xxx;
687
688 auide_setup_ports(hw, ahwif);
Pete Popov26a940e2005-09-15 08:03:12 +0000689 memcpy(hwif->io_ports, hw->io_ports, sizeof(hwif->io_ports));
690
Jordan Crouse8f29e652005-12-15 02:17:46 +0100691 hwif->ultra_mask = 0x0; /* Disable Ultra DMA */
Pete Popov26a940e2005-09-15 08:03:12 +0000692#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Jordan Crouse8f29e652005-12-15 02:17:46 +0100693 hwif->mwdma_mask = 0x07; /* Multimode-2 DMA */
694 hwif->swdma_mask = 0x00;
Pete Popov26a940e2005-09-15 08:03:12 +0000695#else
Jordan Crouse8f29e652005-12-15 02:17:46 +0100696 hwif->mwdma_mask = 0x0;
697 hwif->swdma_mask = 0x0;
Pete Popov26a940e2005-09-15 08:03:12 +0000698#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000699
Jordan Crouse8f29e652005-12-15 02:17:46 +0100700 hwif->noprobe = 0;
701 hwif->drives[0].unmask = 1;
702 hwif->drives[1].unmask = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000703
Jordan Crouse8f29e652005-12-15 02:17:46 +0100704 /* hold should be on in all cases */
705 hwif->hold = 1;
Bartlomiej Zolnierkiewicz2ad1e552007-02-17 02:40:25 +0100706
707 hwif->mmio = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000708
Jordan Crouse8f29e652005-12-15 02:17:46 +0100709 /* If the user has selected DDMA assisted copies,
710 then set up a few local I/O function entry points
711 */
712
713#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
714 hwif->INSW = auide_insw;
715 hwif->OUTSW = auide_outsw;
716#endif
717
718 hwif->tuneproc = &auide_tune_drive;
719 hwif->speedproc = &auide_tune_chipset;
Pete Popov26a940e2005-09-15 08:03:12 +0000720
721#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100722 hwif->dma_off_quietly = &auide_dma_off_quietly;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100723 hwif->ide_dma_timeout = &auide_dma_timeout;
Pete Popov26a940e2005-09-15 08:03:12 +0000724
Jordan Crouse8f29e652005-12-15 02:17:46 +0100725 hwif->ide_dma_check = &auide_dma_check;
726 hwif->dma_exec_cmd = &auide_dma_exec_cmd;
727 hwif->dma_start = &auide_dma_start;
728 hwif->ide_dma_end = &auide_dma_end;
729 hwif->dma_setup = &auide_dma_setup;
730 hwif->ide_dma_test_irq = &auide_dma_test_irq;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100731 hwif->dma_host_off = &auide_dma_host_off;
Bartlomiej Zolnierkiewiczccf35282007-02-17 02:40:26 +0100732 hwif->dma_host_on = &auide_dma_host_on;
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200733 hwif->dma_lost_irq = &auide_dma_lost_irq;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100734 hwif->ide_dma_on = &auide_dma_on;
Pete Popov26a940e2005-09-15 08:03:12 +0000735
Jordan Crouse8f29e652005-12-15 02:17:46 +0100736 hwif->autodma = 1;
737 hwif->drives[0].autodma = hwif->autodma;
738 hwif->drives[1].autodma = hwif->autodma;
739 hwif->atapi_dma = 1;
740
Pete Popov26a940e2005-09-15 08:03:12 +0000741#else /* !CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100742 hwif->autodma = 0;
743 hwif->channel = 0;
744 hwif->hold = 1;
745 hwif->select_data = 0; /* no chipset-specific code */
746 hwif->config_data = 0; /* no chipset-specific code */
Pete Popov26a940e2005-09-15 08:03:12 +0000747
Jordan Crouse8f29e652005-12-15 02:17:46 +0100748 hwif->drives[0].autodma = 0;
749 hwif->drives[0].autotune = 1; /* 1=autotune, 2=noautotune, 0=default */
Pete Popov26a940e2005-09-15 08:03:12 +0000750#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100751 hwif->drives[0].no_io_32bit = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000752
Jordan Crouse8f29e652005-12-15 02:17:46 +0100753 auide_hwif.hwif = hwif;
754 hwif->hwif_data = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000755
Jordan Crouse8f29e652005-12-15 02:17:46 +0100756#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
757 auide_ddma_init(&auide_hwif);
758 dbdma_init_done = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000759#endif
760
761 probe_hwif_init(hwif);
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200762
763 ide_proc_register_port(hwif);
764
Pete Popov26a940e2005-09-15 08:03:12 +0000765 dev_set_drvdata(dev, hwif);
766
Jordan Crouse8f29e652005-12-15 02:17:46 +0100767 printk(KERN_INFO "Au1xxx IDE(builtin) configured for %s\n", mode );
Pete Popov26a940e2005-09-15 08:03:12 +0000768
Jordan Crouse8f29e652005-12-15 02:17:46 +0100769 out:
770 return ret;
Pete Popov26a940e2005-09-15 08:03:12 +0000771}
772
773static int au_ide_remove(struct device *dev)
774{
775 struct platform_device *pdev = to_platform_device(dev);
776 struct resource *res;
777 ide_hwif_t *hwif = dev_get_drvdata(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100778 _auide_hwif *ahwif = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000779
780 ide_unregister(hwif - ide_hwifs);
781
782 iounmap((void *)ahwif->regbase);
783
784 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
785 release_mem_region(res->start, res->end - res->start);
786
787 return 0;
788}
789
790static struct device_driver au1200_ide_driver = {
791 .name = "au1200-ide",
792 .bus = &platform_bus_type,
793 .probe = au_ide_probe,
794 .remove = au_ide_remove,
795};
796
797static int __init au_ide_init(void)
798{
799 return driver_register(&au1200_ide_driver);
800}
801
Jordan Crouse8f29e652005-12-15 02:17:46 +0100802static void __exit au_ide_exit(void)
Pete Popov26a940e2005-09-15 08:03:12 +0000803{
804 driver_unregister(&au1200_ide_driver);
805}
806
Pete Popov26a940e2005-09-15 08:03:12 +0000807MODULE_LICENSE("GPL");
808MODULE_DESCRIPTION("AU1200 IDE driver");
809
810module_init(au_ide_init);
811module_exit(au_ide_exit);