blob: c319f61631276c289549a9fbb38014e521010772 [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
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200102static void au1xxx_set_pio_mode(ide_drive_t *drive, const u8 pio)
Pete Popov26a940e2005-09-15 08:03:12 +0000103{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100104 int mem_sttime;
105 int mem_stcfg;
Bartlomiej Zolnierkiewicz0f458942007-10-13 17:47:51 +0200106
107 if (ide_config_drive_speed(drive, pio + XFER_PIO_0))
108 return;
Pete Popov26a940e2005-09-15 08:03:12 +0000109
Jordan Crouse8f29e652005-12-15 02:17:46 +0100110 mem_sttime = 0;
111 mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000112
Jordan Crouse8f29e652005-12-15 02:17:46 +0100113 /* set pio mode! */
114 switch(pio) {
115 case 0:
116 mem_sttime = SBC_IDE_TIMING(PIO0);
Pete Popov26a940e2005-09-15 08:03:12 +0000117
Jordan Crouse8f29e652005-12-15 02:17:46 +0100118 /* set configuration for RCS2# */
119 mem_stcfg |= TS_MASK;
120 mem_stcfg &= ~TCSOE_MASK;
121 mem_stcfg &= ~TOECS_MASK;
122 mem_stcfg |= SBC_IDE_PIO0_TCSOE | SBC_IDE_PIO0_TOECS;
123 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000124
Jordan Crouse8f29e652005-12-15 02:17:46 +0100125 case 1:
126 mem_sttime = SBC_IDE_TIMING(PIO1);
Pete Popov26a940e2005-09-15 08:03:12 +0000127
Jordan Crouse8f29e652005-12-15 02:17:46 +0100128 /* set configuration for RCS2# */
129 mem_stcfg |= TS_MASK;
130 mem_stcfg &= ~TCSOE_MASK;
131 mem_stcfg &= ~TOECS_MASK;
132 mem_stcfg |= SBC_IDE_PIO1_TCSOE | SBC_IDE_PIO1_TOECS;
133 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000134
Jordan Crouse8f29e652005-12-15 02:17:46 +0100135 case 2:
136 mem_sttime = SBC_IDE_TIMING(PIO2);
Pete Popov26a940e2005-09-15 08:03:12 +0000137
Jordan Crouse8f29e652005-12-15 02:17:46 +0100138 /* set configuration for RCS2# */
139 mem_stcfg &= ~TS_MASK;
140 mem_stcfg &= ~TCSOE_MASK;
141 mem_stcfg &= ~TOECS_MASK;
142 mem_stcfg |= SBC_IDE_PIO2_TCSOE | SBC_IDE_PIO2_TOECS;
143 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000144
Jordan Crouse8f29e652005-12-15 02:17:46 +0100145 case 3:
146 mem_sttime = SBC_IDE_TIMING(PIO3);
Pete Popov26a940e2005-09-15 08:03:12 +0000147
Jordan Crouse8f29e652005-12-15 02:17:46 +0100148 /* set configuration for RCS2# */
149 mem_stcfg &= ~TS_MASK;
150 mem_stcfg &= ~TCSOE_MASK;
151 mem_stcfg &= ~TOECS_MASK;
152 mem_stcfg |= SBC_IDE_PIO3_TCSOE | SBC_IDE_PIO3_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000153
Jordan Crouse8f29e652005-12-15 02:17:46 +0100154 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000155
Jordan Crouse8f29e652005-12-15 02:17:46 +0100156 case 4:
157 mem_sttime = SBC_IDE_TIMING(PIO4);
Pete Popov26a940e2005-09-15 08:03:12 +0000158
Jordan Crouse8f29e652005-12-15 02:17:46 +0100159 /* set configuration for RCS2# */
160 mem_stcfg &= ~TS_MASK;
161 mem_stcfg &= ~TCSOE_MASK;
162 mem_stcfg &= ~TOECS_MASK;
163 mem_stcfg |= SBC_IDE_PIO4_TCSOE | SBC_IDE_PIO4_TOECS;
164 break;
165 }
166
167 au_writel(mem_sttime,MEM_STTIME2);
168 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000169}
170
Bartlomiej Zolnierkiewiczf212ff22007-10-11 23:53:59 +0200171static int auide_tune_chipset(ide_drive_t *drive, const u8 speed)
Pete Popov26a940e2005-09-15 08:03:12 +0000172{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100173 int mem_sttime;
174 int mem_stcfg;
Pete Popov26a940e2005-09-15 08:03:12 +0000175
Jordan Crouse8f29e652005-12-15 02:17:46 +0100176 mem_sttime = 0;
177 mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000178
Jordan Crouse8f29e652005-12-15 02:17:46 +0100179 switch(speed) {
Pete Popov26a940e2005-09-15 08:03:12 +0000180#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Jordan Crouse8f29e652005-12-15 02:17:46 +0100181 case XFER_MW_DMA_2:
182 mem_sttime = SBC_IDE_TIMING(MDMA2);
Pete Popov26a940e2005-09-15 08:03:12 +0000183
Jordan Crouse8f29e652005-12-15 02:17:46 +0100184 /* set configuration for RCS2# */
185 mem_stcfg &= ~TS_MASK;
186 mem_stcfg &= ~TCSOE_MASK;
187 mem_stcfg &= ~TOECS_MASK;
188 mem_stcfg |= SBC_IDE_MDMA2_TCSOE | SBC_IDE_MDMA2_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000189
Jordan Crouse8f29e652005-12-15 02:17:46 +0100190 break;
191 case XFER_MW_DMA_1:
192 mem_sttime = SBC_IDE_TIMING(MDMA1);
Pete Popov26a940e2005-09-15 08:03:12 +0000193
Jordan Crouse8f29e652005-12-15 02:17:46 +0100194 /* set configuration for RCS2# */
195 mem_stcfg &= ~TS_MASK;
196 mem_stcfg &= ~TCSOE_MASK;
197 mem_stcfg &= ~TOECS_MASK;
198 mem_stcfg |= SBC_IDE_MDMA1_TCSOE | SBC_IDE_MDMA1_TOECS;
199
Jordan Crouse8f29e652005-12-15 02:17:46 +0100200 break;
201 case XFER_MW_DMA_0:
202 mem_sttime = SBC_IDE_TIMING(MDMA0);
203
204 /* set configuration for RCS2# */
205 mem_stcfg |= TS_MASK;
206 mem_stcfg &= ~TCSOE_MASK;
207 mem_stcfg &= ~TOECS_MASK;
208 mem_stcfg |= SBC_IDE_MDMA0_TCSOE | SBC_IDE_MDMA0_TOECS;
209
Jordan Crouse8f29e652005-12-15 02:17:46 +0100210 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000211#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100212 default:
213 return 1;
214 }
Bartlomiej Zolnierkiewicza523a172007-02-17 02:40:23 +0100215
216 if (ide_config_drive_speed(drive, speed))
Jordan Crouse8f29e652005-12-15 02:17:46 +0100217 return 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000218
Jordan Crouse8f29e652005-12-15 02:17:46 +0100219 au_writel(mem_sttime,MEM_STTIME2);
220 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000221
Jordan Crouse8f29e652005-12-15 02:17:46 +0100222 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000223}
224
225/*
226 * Multi-Word DMA + DbDMA functions
227 */
Pete Popov26a940e2005-09-15 08:03:12 +0000228
Jordan Crouse8f29e652005-12-15 02:17:46 +0100229#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Pete Popov26a940e2005-09-15 08:03:12 +0000230
231static int auide_build_sglist(ide_drive_t *drive, struct request *rq)
232{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100233 ide_hwif_t *hwif = drive->hwif;
234 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
235 struct scatterlist *sg = hwif->sg_table;
Pete Popov26a940e2005-09-15 08:03:12 +0000236
Jordan Crouse8f29e652005-12-15 02:17:46 +0100237 ide_map_sg(drive, rq);
Pete Popov26a940e2005-09-15 08:03:12 +0000238
Jordan Crouse8f29e652005-12-15 02:17:46 +0100239 if (rq_data_dir(rq) == READ)
240 hwif->sg_dma_direction = DMA_FROM_DEVICE;
241 else
242 hwif->sg_dma_direction = DMA_TO_DEVICE;
Pete Popov26a940e2005-09-15 08:03:12 +0000243
Jordan Crouse8f29e652005-12-15 02:17:46 +0100244 return dma_map_sg(ahwif->dev, sg, hwif->sg_nents,
245 hwif->sg_dma_direction);
Pete Popov26a940e2005-09-15 08:03:12 +0000246}
247
248static int auide_build_dmatable(ide_drive_t *drive)
249{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100250 int i, iswrite, count = 0;
251 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000252
Jordan Crouse8f29e652005-12-15 02:17:46 +0100253 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000254
Jordan Crouse8f29e652005-12-15 02:17:46 +0100255 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
256 struct scatterlist *sg;
Pete Popov26a940e2005-09-15 08:03:12 +0000257
Jordan Crouse8f29e652005-12-15 02:17:46 +0100258 iswrite = (rq_data_dir(rq) == WRITE);
259 /* Save for interrupt context */
260 ahwif->drive = drive;
Pete Popov26a940e2005-09-15 08:03:12 +0000261
Jordan Crouse8f29e652005-12-15 02:17:46 +0100262 /* Build sglist */
263 hwif->sg_nents = i = auide_build_sglist(drive, rq);
Pete Popov26a940e2005-09-15 08:03:12 +0000264
Jordan Crouse8f29e652005-12-15 02:17:46 +0100265 if (!i)
266 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000267
Jordan Crouse8f29e652005-12-15 02:17:46 +0100268 /* fill the descriptors */
269 sg = hwif->sg_table;
270 while (i && sg_dma_len(sg)) {
271 u32 cur_addr;
272 u32 cur_len;
Pete Popov26a940e2005-09-15 08:03:12 +0000273
Jordan Crouse8f29e652005-12-15 02:17:46 +0100274 cur_addr = sg_dma_address(sg);
275 cur_len = sg_dma_len(sg);
Pete Popov26a940e2005-09-15 08:03:12 +0000276
Jordan Crouse8f29e652005-12-15 02:17:46 +0100277 while (cur_len) {
278 u32 flags = DDMA_FLAGS_NOIE;
279 unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;
Pete Popov26a940e2005-09-15 08:03:12 +0000280
Jordan Crouse8f29e652005-12-15 02:17:46 +0100281 if (++count >= PRD_ENTRIES) {
282 printk(KERN_WARNING "%s: DMA table too small\n",
283 drive->name);
284 goto use_pio_instead;
285 }
Pete Popov26a940e2005-09-15 08:03:12 +0000286
Jordan Crouse8f29e652005-12-15 02:17:46 +0100287 /* Lets enable intr for the last descriptor only */
288 if (1==i)
289 flags = DDMA_FLAGS_IE;
290 else
291 flags = DDMA_FLAGS_NOIE;
Pete Popov26a940e2005-09-15 08:03:12 +0000292
Jordan Crouse8f29e652005-12-15 02:17:46 +0100293 if (iswrite) {
294 if(!put_source_flags(ahwif->tx_chan,
295 (void*)(page_address(sg->page)
296 + sg->offset),
297 tc, flags)) {
298 printk(KERN_ERR "%s failed %d\n",
299 __FUNCTION__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000300 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100301 } else
Pete Popov26a940e2005-09-15 08:03:12 +0000302 {
Jordan Crouse8f29e652005-12-15 02:17:46 +0100303 if(!put_dest_flags(ahwif->rx_chan,
304 (void*)(page_address(sg->page)
305 + sg->offset),
306 tc, flags)) {
307 printk(KERN_ERR "%s failed %d\n",
308 __FUNCTION__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000309 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100310 }
Pete Popov26a940e2005-09-15 08:03:12 +0000311
Jordan Crouse8f29e652005-12-15 02:17:46 +0100312 cur_addr += tc;
313 cur_len -= tc;
314 }
315 sg++;
316 i--;
317 }
Pete Popov26a940e2005-09-15 08:03:12 +0000318
Jordan Crouse8f29e652005-12-15 02:17:46 +0100319 if (count)
320 return 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000321
Jordan Crouse8f29e652005-12-15 02:17:46 +0100322 use_pio_instead:
323 dma_unmap_sg(ahwif->dev,
324 hwif->sg_table,
325 hwif->sg_nents,
326 hwif->sg_dma_direction);
Pete Popov26a940e2005-09-15 08:03:12 +0000327
Jordan Crouse8f29e652005-12-15 02:17:46 +0100328 return 0; /* revert to PIO for this request */
Pete Popov26a940e2005-09-15 08:03:12 +0000329}
330
331static int auide_dma_end(ide_drive_t *drive)
332{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100333 ide_hwif_t *hwif = HWIF(drive);
334 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
Pete Popov26a940e2005-09-15 08:03:12 +0000335
Jordan Crouse8f29e652005-12-15 02:17:46 +0100336 if (hwif->sg_nents) {
337 dma_unmap_sg(ahwif->dev, hwif->sg_table, hwif->sg_nents,
338 hwif->sg_dma_direction);
339 hwif->sg_nents = 0;
340 }
Pete Popov26a940e2005-09-15 08:03:12 +0000341
Jordan Crouse8f29e652005-12-15 02:17:46 +0100342 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000343}
344
345static void auide_dma_start(ide_drive_t *drive )
346{
Pete Popov26a940e2005-09-15 08:03:12 +0000347}
348
Pete Popov26a940e2005-09-15 08:03:12 +0000349
350static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command)
351{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100352 /* issue cmd to drive */
353 ide_execute_command(drive, command, &ide_dma_intr,
354 (2*WAIT_CMD), NULL);
Pete Popov26a940e2005-09-15 08:03:12 +0000355}
356
357static int auide_dma_setup(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100358{
359 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000360
Jordan Crouse8f29e652005-12-15 02:17:46 +0100361 if (!auide_build_dmatable(drive)) {
362 ide_map_sg(drive, rq);
363 return 1;
364 }
Pete Popov26a940e2005-09-15 08:03:12 +0000365
Jordan Crouse8f29e652005-12-15 02:17:46 +0100366 drive->waiting_for_dma = 1;
367 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000368}
369
370static int auide_dma_check(ide_drive_t *drive)
371{
Bartlomiej Zolnierkiewicz75b1d972007-07-09 23:17:57 +0200372 u8 speed = ide_max_dma_mode(drive);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100373
374 if( dbdma_init_done == 0 ){
375 auide_hwif.white_list = ide_in_drive_list(drive->id,
376 dma_white_list);
377 auide_hwif.black_list = ide_in_drive_list(drive->id,
378 dma_black_list);
379 auide_hwif.drive = drive;
380 auide_ddma_init(&auide_hwif);
381 dbdma_init_done = 1;
382 }
Pete Popov26a940e2005-09-15 08:03:12 +0000383
Jordan Crouse8f29e652005-12-15 02:17:46 +0100384 /* Is the drive in our DMA black list? */
Pete Popov26a940e2005-09-15 08:03:12 +0000385
Jordan Crouse8f29e652005-12-15 02:17:46 +0100386 if ( auide_hwif.black_list ) {
387 drive->using_dma = 0;
388
389 /* Borrowed the warning message from ide-dma.c */
390
391 printk(KERN_WARNING "%s: Disabling DMA for %s (blacklisted)\n",
392 drive->name, drive->id->model);
393 }
394 else
395 drive->using_dma = 1;
396
Jordan Crouse8f29e652005-12-15 02:17:46 +0100397 if (drive->autodma && (speed & XFER_MODE) != XFER_PIO)
Bartlomiej Zolnierkiewicz3608b5d2007-02-17 02:40:26 +0100398 return 0;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100399
Bartlomiej Zolnierkiewicz3608b5d2007-02-17 02:40:26 +0100400 return -1;
Pete Popov26a940e2005-09-15 08:03:12 +0000401}
402
403static int auide_dma_test_irq(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100404{
405 if (drive->waiting_for_dma == 0)
406 printk(KERN_WARNING "%s: ide_dma_test_irq \
Pete Popov26a940e2005-09-15 08:03:12 +0000407 called while not waiting\n", drive->name);
408
Jordan Crouse8f29e652005-12-15 02:17:46 +0100409 /* If dbdma didn't execute the STOP command yet, the
410 * active bit is still set
Pete Popov26a940e2005-09-15 08:03:12 +0000411 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100412 drive->waiting_for_dma++;
413 if (drive->waiting_for_dma >= DMA_WAIT_TIMEOUT) {
414 printk(KERN_WARNING "%s: timeout waiting for ddma to \
Pete Popov26a940e2005-09-15 08:03:12 +0000415 complete\n", drive->name);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100416 return 1;
417 }
418 udelay(10);
419 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000420}
421
Bartlomiej Zolnierkiewiczccf35282007-02-17 02:40:26 +0100422static void auide_dma_host_on(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000423{
Pete Popov26a940e2005-09-15 08:03:12 +0000424}
425
426static int auide_dma_on(ide_drive_t *drive)
427{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100428 drive->using_dma = 1;
Bartlomiej Zolnierkiewiczccf35282007-02-17 02:40:26 +0100429
430 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000431}
432
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100433static void auide_dma_host_off(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000434{
Pete Popov26a940e2005-09-15 08:03:12 +0000435}
436
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100437static void auide_dma_off_quietly(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000438{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100439 drive->using_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000440}
441
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200442static void auide_dma_lost_irq(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000443{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100444 printk(KERN_ERR "%s: IRQ lost\n", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000445}
446
Ralf Baechle53e62d32006-09-25 23:32:10 -0700447static void auide_ddma_tx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000448{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100449 _auide_hwif *ahwif = (_auide_hwif*)param;
450 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000451}
452
Ralf Baechle53e62d32006-09-25 23:32:10 -0700453static void auide_ddma_rx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000454{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100455 _auide_hwif *ahwif = (_auide_hwif*)param;
456 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000457}
458
Jordan Crouse8f29e652005-12-15 02:17:46 +0100459#endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
460
461static void auide_init_dbdma_dev(dbdev_tab_t *dev, u32 dev_id, u32 tsize, u32 devwidth, u32 flags)
462{
463 dev->dev_id = dev_id;
464 dev->dev_physaddr = (u32)AU1XXX_ATA_PHYS_ADDR;
465 dev->dev_intlevel = 0;
466 dev->dev_intpolarity = 0;
467 dev->dev_tsize = tsize;
468 dev->dev_devwidth = devwidth;
469 dev->dev_flags = flags;
470}
471
472#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
473
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200474static void auide_dma_timeout(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000475{
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200476 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000477
Jordan Crouse8f29e652005-12-15 02:17:46 +0100478 printk(KERN_ERR "%s: DMA timeout occurred: ", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000479
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200480 if (hwif->ide_dma_test_irq(drive))
481 return;
Pete Popov26a940e2005-09-15 08:03:12 +0000482
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200483 hwif->ide_dma_end(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000484}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100485
Pete Popov26a940e2005-09-15 08:03:12 +0000486
Jordan Crouse8f29e652005-12-15 02:17:46 +0100487static int auide_ddma_init(_auide_hwif *auide) {
488
489 dbdev_tab_t source_dev_tab, target_dev_tab;
490 u32 dev_id, tsize, devwidth, flags;
491 ide_hwif_t *hwif = auide->hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000492
Jordan Crouse8f29e652005-12-15 02:17:46 +0100493 dev_id = AU1XXX_ATA_DDMA_REQ;
494
495 if (auide->white_list || auide->black_list) {
496 tsize = 8;
497 devwidth = 32;
498 }
499 else {
500 tsize = 1;
501 devwidth = 16;
502
503 printk(KERN_ERR "au1xxx-ide: %s is not on ide driver whitelist.\n",auide_hwif.drive->id->model);
504 printk(KERN_ERR " please read 'Documentation/mips/AU1xxx_IDE.README'");
505 }
506
507#ifdef IDE_AU1XXX_BURSTMODE
508 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
509#else
510 flags = DEV_FLAGS_SYNC;
511#endif
512
513 /* setup dev_tab for tx channel */
514 auide_init_dbdma_dev( &source_dev_tab,
515 dev_id,
516 tsize, devwidth, DEV_FLAGS_OUT | flags);
517 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
518
519 auide_init_dbdma_dev( &source_dev_tab,
520 dev_id,
521 tsize, devwidth, DEV_FLAGS_IN | flags);
522 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
523
524 /* We also need to add a target device for the DMA */
525 auide_init_dbdma_dev( &target_dev_tab,
526 (u32)DSCR_CMD0_ALWAYS,
527 tsize, devwidth, DEV_FLAGS_ANYUSE);
528 auide->target_dev_id = au1xxx_ddma_add_device(&target_dev_tab);
529
530 /* Get a channel for TX */
531 auide->tx_chan = au1xxx_dbdma_chan_alloc(auide->target_dev_id,
532 auide->tx_dev_id,
533 auide_ddma_tx_callback,
534 (void*)auide);
535
536 /* Get a channel for RX */
537 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
538 auide->target_dev_id,
539 auide_ddma_rx_callback,
540 (void*)auide);
541
542 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
543 NUM_DESCRIPTORS);
544 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
545 NUM_DESCRIPTORS);
546
547 hwif->dmatable_cpu = dma_alloc_coherent(auide->dev,
548 PRD_ENTRIES * PRD_BYTES, /* 1 Page */
549 &hwif->dmatable_dma, GFP_KERNEL);
550
551 au1xxx_dbdma_start( auide->tx_chan );
552 au1xxx_dbdma_start( auide->rx_chan );
553
554 return 0;
555}
556#else
557
Pete Popov26a940e2005-09-15 08:03:12 +0000558static int auide_ddma_init( _auide_hwif *auide )
559{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100560 dbdev_tab_t source_dev_tab;
561 int flags;
Pete Popov26a940e2005-09-15 08:03:12 +0000562
Jordan Crouse8f29e652005-12-15 02:17:46 +0100563#ifdef IDE_AU1XXX_BURSTMODE
564 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
Pete Popov26a940e2005-09-15 08:03:12 +0000565#else
Jordan Crouse8f29e652005-12-15 02:17:46 +0100566 flags = DEV_FLAGS_SYNC;
Pete Popov26a940e2005-09-15 08:03:12 +0000567#endif
568
Jordan Crouse8f29e652005-12-15 02:17:46 +0100569 /* setup dev_tab for tx channel */
570 auide_init_dbdma_dev( &source_dev_tab,
571 (u32)DSCR_CMD0_ALWAYS,
572 8, 32, DEV_FLAGS_OUT | flags);
573 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
Pete Popov26a940e2005-09-15 08:03:12 +0000574
Jordan Crouse8f29e652005-12-15 02:17:46 +0100575 auide_init_dbdma_dev( &source_dev_tab,
576 (u32)DSCR_CMD0_ALWAYS,
577 8, 32, DEV_FLAGS_IN | flags);
578 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
579
580 /* Get a channel for TX */
581 auide->tx_chan = au1xxx_dbdma_chan_alloc(DSCR_CMD0_ALWAYS,
582 auide->tx_dev_id,
583 NULL,
584 (void*)auide);
585
586 /* Get a channel for RX */
587 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
588 DSCR_CMD0_ALWAYS,
589 NULL,
590 (void*)auide);
591
592 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
593 NUM_DESCRIPTORS);
594 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
595 NUM_DESCRIPTORS);
596
597 au1xxx_dbdma_start( auide->tx_chan );
598 au1xxx_dbdma_start( auide->rx_chan );
599
600 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000601}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100602#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000603
604static void auide_setup_ports(hw_regs_t *hw, _auide_hwif *ahwif)
605{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100606 int i;
607 unsigned long *ata_regs = hw->io_ports;
Pete Popov26a940e2005-09-15 08:03:12 +0000608
Jordan Crouse8f29e652005-12-15 02:17:46 +0100609 /* FIXME? */
610 for (i = 0; i < IDE_CONTROL_OFFSET; i++) {
611 *ata_regs++ = ahwif->regbase + (i << AU1XXX_ATA_REG_OFFSET);
612 }
Pete Popov26a940e2005-09-15 08:03:12 +0000613
Jordan Crouse8f29e652005-12-15 02:17:46 +0100614 /* set the Alternative Status register */
615 *ata_regs = ahwif->regbase + (14 << AU1XXX_ATA_REG_OFFSET);
Pete Popov26a940e2005-09-15 08:03:12 +0000616}
617
618static int au_ide_probe(struct device *dev)
619{
620 struct platform_device *pdev = to_platform_device(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100621 _auide_hwif *ahwif = &auide_hwif;
622 ide_hwif_t *hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000623 struct resource *res;
Ralf Baechle1918fd62007-03-17 21:57:24 +0100624 hw_regs_t *hw;
Pete Popov26a940e2005-09-15 08:03:12 +0000625 int ret = 0;
626
627#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100628 char *mode = "MWDMA2";
Pete Popov26a940e2005-09-15 08:03:12 +0000629#elif defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100630 char *mode = "PIO+DDMA(offload)";
Pete Popov26a940e2005-09-15 08:03:12 +0000631#endif
632
Jordan Crouse8f29e652005-12-15 02:17:46 +0100633 memset(&auide_hwif, 0, sizeof(_auide_hwif));
634 auide_hwif.dev = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000635
636 ahwif->dev = dev;
637 ahwif->irq = platform_get_irq(pdev, 0);
638
639 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
640
641 if (res == NULL) {
642 pr_debug("%s %d: no base address\n", DRV_NAME, pdev->id);
643 ret = -ENODEV;
644 goto out;
645 }
David Vrabel48944732006-01-19 17:56:29 +0000646 if (ahwif->irq < 0) {
647 pr_debug("%s %d: no IRQ\n", DRV_NAME, pdev->id);
648 ret = -ENODEV;
649 goto out;
650 }
Pete Popov26a940e2005-09-15 08:03:12 +0000651
Jordan Crouse8f29e652005-12-15 02:17:46 +0100652 if (!request_mem_region (res->start, res->end-res->start, pdev->name)) {
Pete Popov26a940e2005-09-15 08:03:12 +0000653 pr_debug("%s: request_mem_region failed\n", DRV_NAME);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100654 ret = -EBUSY;
Pete Popov26a940e2005-09-15 08:03:12 +0000655 goto out;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100656 }
Pete Popov26a940e2005-09-15 08:03:12 +0000657
658 ahwif->regbase = (u32)ioremap(res->start, res->end-res->start);
659 if (ahwif->regbase == 0) {
660 ret = -ENOMEM;
661 goto out;
662 }
663
Jordan Crouse8f29e652005-12-15 02:17:46 +0100664 /* FIXME: This might possibly break PCMCIA IDE devices */
Pete Popov26a940e2005-09-15 08:03:12 +0000665
Jordan Crouse8f29e652005-12-15 02:17:46 +0100666 hwif = &ide_hwifs[pdev->id];
Ralf Baechle1918fd62007-03-17 21:57:24 +0100667 hw = &hwif->hw;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100668 hwif->irq = hw->irq = ahwif->irq;
669 hwif->chipset = ide_au1xxx;
670
671 auide_setup_ports(hw, ahwif);
Pete Popov26a940e2005-09-15 08:03:12 +0000672 memcpy(hwif->io_ports, hw->io_ports, sizeof(hwif->io_ports));
673
Jordan Crouse8f29e652005-12-15 02:17:46 +0100674 hwif->ultra_mask = 0x0; /* Disable Ultra DMA */
Pete Popov26a940e2005-09-15 08:03:12 +0000675#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Jordan Crouse8f29e652005-12-15 02:17:46 +0100676 hwif->mwdma_mask = 0x07; /* Multimode-2 DMA */
677 hwif->swdma_mask = 0x00;
Pete Popov26a940e2005-09-15 08:03:12 +0000678#else
Jordan Crouse8f29e652005-12-15 02:17:46 +0100679 hwif->mwdma_mask = 0x0;
680 hwif->swdma_mask = 0x0;
Pete Popov26a940e2005-09-15 08:03:12 +0000681#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000682
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200683 hwif->pio_mask = ATA_PIO4;
684
Jordan Crouse8f29e652005-12-15 02:17:46 +0100685 hwif->noprobe = 0;
686 hwif->drives[0].unmask = 1;
687 hwif->drives[1].unmask = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000688
Jordan Crouse8f29e652005-12-15 02:17:46 +0100689 /* hold should be on in all cases */
690 hwif->hold = 1;
Bartlomiej Zolnierkiewicz2ad1e552007-02-17 02:40:25 +0100691
692 hwif->mmio = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000693
Jordan Crouse8f29e652005-12-15 02:17:46 +0100694 /* If the user has selected DDMA assisted copies,
695 then set up a few local I/O function entry points
696 */
697
698#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
699 hwif->INSW = auide_insw;
700 hwif->OUTSW = auide_outsw;
701#endif
702
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200703 hwif->set_pio_mode = &au1xxx_set_pio_mode;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100704 hwif->speedproc = &auide_tune_chipset;
Pete Popov26a940e2005-09-15 08:03:12 +0000705
706#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100707 hwif->dma_off_quietly = &auide_dma_off_quietly;
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200708 hwif->dma_timeout = &auide_dma_timeout;
Pete Popov26a940e2005-09-15 08:03:12 +0000709
Jordan Crouse8f29e652005-12-15 02:17:46 +0100710 hwif->ide_dma_check = &auide_dma_check;
711 hwif->dma_exec_cmd = &auide_dma_exec_cmd;
712 hwif->dma_start = &auide_dma_start;
713 hwif->ide_dma_end = &auide_dma_end;
714 hwif->dma_setup = &auide_dma_setup;
715 hwif->ide_dma_test_irq = &auide_dma_test_irq;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100716 hwif->dma_host_off = &auide_dma_host_off;
Bartlomiej Zolnierkiewiczccf35282007-02-17 02:40:26 +0100717 hwif->dma_host_on = &auide_dma_host_on;
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200718 hwif->dma_lost_irq = &auide_dma_lost_irq;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100719 hwif->ide_dma_on = &auide_dma_on;
Pete Popov26a940e2005-09-15 08:03:12 +0000720
Jordan Crouse8f29e652005-12-15 02:17:46 +0100721 hwif->autodma = 1;
722 hwif->drives[0].autodma = hwif->autodma;
723 hwif->drives[1].autodma = hwif->autodma;
724 hwif->atapi_dma = 1;
725
Pete Popov26a940e2005-09-15 08:03:12 +0000726#else /* !CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100727 hwif->autodma = 0;
728 hwif->channel = 0;
729 hwif->hold = 1;
730 hwif->select_data = 0; /* no chipset-specific code */
731 hwif->config_data = 0; /* no chipset-specific code */
Pete Popov26a940e2005-09-15 08:03:12 +0000732
Jordan Crouse8f29e652005-12-15 02:17:46 +0100733 hwif->drives[0].autodma = 0;
734 hwif->drives[0].autotune = 1; /* 1=autotune, 2=noautotune, 0=default */
Pete Popov26a940e2005-09-15 08:03:12 +0000735#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100736 hwif->drives[0].no_io_32bit = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000737
Jordan Crouse8f29e652005-12-15 02:17:46 +0100738 auide_hwif.hwif = hwif;
739 hwif->hwif_data = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000740
Jordan Crouse8f29e652005-12-15 02:17:46 +0100741#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
742 auide_ddma_init(&auide_hwif);
743 dbdma_init_done = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000744#endif
745
746 probe_hwif_init(hwif);
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200747
748 ide_proc_register_port(hwif);
749
Pete Popov26a940e2005-09-15 08:03:12 +0000750 dev_set_drvdata(dev, hwif);
751
Jordan Crouse8f29e652005-12-15 02:17:46 +0100752 printk(KERN_INFO "Au1xxx IDE(builtin) configured for %s\n", mode );
Pete Popov26a940e2005-09-15 08:03:12 +0000753
Jordan Crouse8f29e652005-12-15 02:17:46 +0100754 out:
755 return ret;
Pete Popov26a940e2005-09-15 08:03:12 +0000756}
757
758static int au_ide_remove(struct device *dev)
759{
760 struct platform_device *pdev = to_platform_device(dev);
761 struct resource *res;
762 ide_hwif_t *hwif = dev_get_drvdata(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100763 _auide_hwif *ahwif = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000764
765 ide_unregister(hwif - ide_hwifs);
766
767 iounmap((void *)ahwif->regbase);
768
769 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
770 release_mem_region(res->start, res->end - res->start);
771
772 return 0;
773}
774
775static struct device_driver au1200_ide_driver = {
776 .name = "au1200-ide",
777 .bus = &platform_bus_type,
778 .probe = au_ide_probe,
779 .remove = au_ide_remove,
780};
781
782static int __init au_ide_init(void)
783{
784 return driver_register(&au1200_ide_driver);
785}
786
Jordan Crouse8f29e652005-12-15 02:17:46 +0100787static void __exit au_ide_exit(void)
Pete Popov26a940e2005-09-15 08:03:12 +0000788{
789 driver_unregister(&au1200_ide_driver);
790}
791
Pete Popov26a940e2005-09-15 08:03:12 +0000792MODULE_LICENSE("GPL");
793MODULE_DESCRIPTION("AU1200 IDE driver");
794
795module_init(au_ide_init);
796module_exit(au_ide_exit);