blob: 7ec96a030041b61c842f578ee1658c0516775392 [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{
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200104 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000105
Jordan Crouse8f29e652005-12-15 02:17:46 +0100106 /* set pio mode! */
107 switch(pio) {
108 case 0:
109 mem_sttime = SBC_IDE_TIMING(PIO0);
Pete Popov26a940e2005-09-15 08:03:12 +0000110
Jordan Crouse8f29e652005-12-15 02:17:46 +0100111 /* set configuration for RCS2# */
112 mem_stcfg |= TS_MASK;
113 mem_stcfg &= ~TCSOE_MASK;
114 mem_stcfg &= ~TOECS_MASK;
115 mem_stcfg |= SBC_IDE_PIO0_TCSOE | SBC_IDE_PIO0_TOECS;
116 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000117
Jordan Crouse8f29e652005-12-15 02:17:46 +0100118 case 1:
119 mem_sttime = SBC_IDE_TIMING(PIO1);
Pete Popov26a940e2005-09-15 08:03:12 +0000120
Jordan Crouse8f29e652005-12-15 02:17:46 +0100121 /* set configuration for RCS2# */
122 mem_stcfg |= TS_MASK;
123 mem_stcfg &= ~TCSOE_MASK;
124 mem_stcfg &= ~TOECS_MASK;
125 mem_stcfg |= SBC_IDE_PIO1_TCSOE | SBC_IDE_PIO1_TOECS;
126 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000127
Jordan Crouse8f29e652005-12-15 02:17:46 +0100128 case 2:
129 mem_sttime = SBC_IDE_TIMING(PIO2);
Pete Popov26a940e2005-09-15 08:03:12 +0000130
Jordan Crouse8f29e652005-12-15 02:17:46 +0100131 /* set configuration for RCS2# */
132 mem_stcfg &= ~TS_MASK;
133 mem_stcfg &= ~TCSOE_MASK;
134 mem_stcfg &= ~TOECS_MASK;
135 mem_stcfg |= SBC_IDE_PIO2_TCSOE | SBC_IDE_PIO2_TOECS;
136 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000137
Jordan Crouse8f29e652005-12-15 02:17:46 +0100138 case 3:
139 mem_sttime = SBC_IDE_TIMING(PIO3);
Pete Popov26a940e2005-09-15 08:03:12 +0000140
Jordan Crouse8f29e652005-12-15 02:17:46 +0100141 /* set configuration for RCS2# */
142 mem_stcfg &= ~TS_MASK;
143 mem_stcfg &= ~TCSOE_MASK;
144 mem_stcfg &= ~TOECS_MASK;
145 mem_stcfg |= SBC_IDE_PIO3_TCSOE | SBC_IDE_PIO3_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000146
Jordan Crouse8f29e652005-12-15 02:17:46 +0100147 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000148
Jordan Crouse8f29e652005-12-15 02:17:46 +0100149 case 4:
150 mem_sttime = SBC_IDE_TIMING(PIO4);
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_PIO4_TCSOE | SBC_IDE_PIO4_TOECS;
157 break;
158 }
159
160 au_writel(mem_sttime,MEM_STTIME2);
161 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000162}
163
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200164static void auide_set_dma_mode(ide_drive_t *drive, const u8 speed)
Pete Popov26a940e2005-09-15 08:03:12 +0000165{
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200166 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000167
Jordan Crouse8f29e652005-12-15 02:17:46 +0100168 switch(speed) {
Pete Popov26a940e2005-09-15 08:03:12 +0000169#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Jordan Crouse8f29e652005-12-15 02:17:46 +0100170 case XFER_MW_DMA_2:
171 mem_sttime = SBC_IDE_TIMING(MDMA2);
Pete Popov26a940e2005-09-15 08:03:12 +0000172
Jordan Crouse8f29e652005-12-15 02:17:46 +0100173 /* set configuration for RCS2# */
174 mem_stcfg &= ~TS_MASK;
175 mem_stcfg &= ~TCSOE_MASK;
176 mem_stcfg &= ~TOECS_MASK;
177 mem_stcfg |= SBC_IDE_MDMA2_TCSOE | SBC_IDE_MDMA2_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000178
Jordan Crouse8f29e652005-12-15 02:17:46 +0100179 break;
180 case XFER_MW_DMA_1:
181 mem_sttime = SBC_IDE_TIMING(MDMA1);
Pete Popov26a940e2005-09-15 08:03:12 +0000182
Jordan Crouse8f29e652005-12-15 02:17:46 +0100183 /* set configuration for RCS2# */
184 mem_stcfg &= ~TS_MASK;
185 mem_stcfg &= ~TCSOE_MASK;
186 mem_stcfg &= ~TOECS_MASK;
187 mem_stcfg |= SBC_IDE_MDMA1_TCSOE | SBC_IDE_MDMA1_TOECS;
188
Jordan Crouse8f29e652005-12-15 02:17:46 +0100189 break;
190 case XFER_MW_DMA_0:
191 mem_sttime = SBC_IDE_TIMING(MDMA0);
192
193 /* set configuration for RCS2# */
194 mem_stcfg |= TS_MASK;
195 mem_stcfg &= ~TCSOE_MASK;
196 mem_stcfg &= ~TOECS_MASK;
197 mem_stcfg |= SBC_IDE_MDMA0_TCSOE | SBC_IDE_MDMA0_TOECS;
198
Jordan Crouse8f29e652005-12-15 02:17:46 +0100199 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000200#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100201 }
Bartlomiej Zolnierkiewicza523a172007-02-17 02:40:23 +0100202
Jordan Crouse8f29e652005-12-15 02:17:46 +0100203 au_writel(mem_sttime,MEM_STTIME2);
204 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000205}
206
207/*
208 * Multi-Word DMA + DbDMA functions
209 */
Pete Popov26a940e2005-09-15 08:03:12 +0000210
Jordan Crouse8f29e652005-12-15 02:17:46 +0100211#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Pete Popov26a940e2005-09-15 08:03:12 +0000212
213static int auide_build_sglist(ide_drive_t *drive, struct request *rq)
214{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100215 ide_hwif_t *hwif = drive->hwif;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100216 struct scatterlist *sg = hwif->sg_table;
Pete Popov26a940e2005-09-15 08:03:12 +0000217
Jordan Crouse8f29e652005-12-15 02:17:46 +0100218 ide_map_sg(drive, rq);
Pete Popov26a940e2005-09-15 08:03:12 +0000219
Jordan Crouse8f29e652005-12-15 02:17:46 +0100220 if (rq_data_dir(rq) == READ)
221 hwif->sg_dma_direction = DMA_FROM_DEVICE;
222 else
223 hwif->sg_dma_direction = DMA_TO_DEVICE;
Pete Popov26a940e2005-09-15 08:03:12 +0000224
Bartlomiej Zolnierkiewicz5df37c32008-02-01 23:09:31 +0100225 return dma_map_sg(hwif->dev, sg, hwif->sg_nents,
Jordan Crouse8f29e652005-12-15 02:17:46 +0100226 hwif->sg_dma_direction);
Pete Popov26a940e2005-09-15 08:03:12 +0000227}
228
229static int auide_build_dmatable(ide_drive_t *drive)
230{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100231 int i, iswrite, count = 0;
232 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000233
Jordan Crouse8f29e652005-12-15 02:17:46 +0100234 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000235
Jordan Crouse8f29e652005-12-15 02:17:46 +0100236 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
237 struct scatterlist *sg;
Pete Popov26a940e2005-09-15 08:03:12 +0000238
Jordan Crouse8f29e652005-12-15 02:17:46 +0100239 iswrite = (rq_data_dir(rq) == WRITE);
240 /* Save for interrupt context */
241 ahwif->drive = drive;
Pete Popov26a940e2005-09-15 08:03:12 +0000242
Jordan Crouse8f29e652005-12-15 02:17:46 +0100243 /* Build sglist */
244 hwif->sg_nents = i = auide_build_sglist(drive, rq);
Pete Popov26a940e2005-09-15 08:03:12 +0000245
Jordan Crouse8f29e652005-12-15 02:17:46 +0100246 if (!i)
247 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000248
Jordan Crouse8f29e652005-12-15 02:17:46 +0100249 /* fill the descriptors */
250 sg = hwif->sg_table;
251 while (i && sg_dma_len(sg)) {
252 u32 cur_addr;
253 u32 cur_len;
Pete Popov26a940e2005-09-15 08:03:12 +0000254
Jordan Crouse8f29e652005-12-15 02:17:46 +0100255 cur_addr = sg_dma_address(sg);
256 cur_len = sg_dma_len(sg);
Pete Popov26a940e2005-09-15 08:03:12 +0000257
Jordan Crouse8f29e652005-12-15 02:17:46 +0100258 while (cur_len) {
259 u32 flags = DDMA_FLAGS_NOIE;
260 unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;
Pete Popov26a940e2005-09-15 08:03:12 +0000261
Jordan Crouse8f29e652005-12-15 02:17:46 +0100262 if (++count >= PRD_ENTRIES) {
263 printk(KERN_WARNING "%s: DMA table too small\n",
264 drive->name);
265 goto use_pio_instead;
266 }
Pete Popov26a940e2005-09-15 08:03:12 +0000267
Jordan Crouse8f29e652005-12-15 02:17:46 +0100268 /* Lets enable intr for the last descriptor only */
269 if (1==i)
270 flags = DDMA_FLAGS_IE;
271 else
272 flags = DDMA_FLAGS_NOIE;
Pete Popov26a940e2005-09-15 08:03:12 +0000273
Jordan Crouse8f29e652005-12-15 02:17:46 +0100274 if (iswrite) {
275 if(!put_source_flags(ahwif->tx_chan,
Jens Axboe45711f12007-10-22 21:19:53 +0200276 (void*) sg_virt(sg),
Jordan Crouse8f29e652005-12-15 02:17:46 +0100277 tc, flags)) {
278 printk(KERN_ERR "%s failed %d\n",
279 __FUNCTION__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000280 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100281 } else
Pete Popov26a940e2005-09-15 08:03:12 +0000282 {
Jordan Crouse8f29e652005-12-15 02:17:46 +0100283 if(!put_dest_flags(ahwif->rx_chan,
Jens Axboe45711f12007-10-22 21:19:53 +0200284 (void*) sg_virt(sg),
Jordan Crouse8f29e652005-12-15 02:17:46 +0100285 tc, flags)) {
286 printk(KERN_ERR "%s failed %d\n",
287 __FUNCTION__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000288 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100289 }
Pete Popov26a940e2005-09-15 08:03:12 +0000290
Jordan Crouse8f29e652005-12-15 02:17:46 +0100291 cur_addr += tc;
292 cur_len -= tc;
293 }
Jens Axboe55c16a72007-07-25 08:13:56 +0200294 sg = sg_next(sg);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100295 i--;
296 }
Pete Popov26a940e2005-09-15 08:03:12 +0000297
Jordan Crouse8f29e652005-12-15 02:17:46 +0100298 if (count)
299 return 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000300
Jordan Crouse8f29e652005-12-15 02:17:46 +0100301 use_pio_instead:
Bartlomiej Zolnierkiewicz5df37c32008-02-01 23:09:31 +0100302 dma_unmap_sg(hwif->dev,
Jordan Crouse8f29e652005-12-15 02:17:46 +0100303 hwif->sg_table,
304 hwif->sg_nents,
305 hwif->sg_dma_direction);
Pete Popov26a940e2005-09-15 08:03:12 +0000306
Jordan Crouse8f29e652005-12-15 02:17:46 +0100307 return 0; /* revert to PIO for this request */
Pete Popov26a940e2005-09-15 08:03:12 +0000308}
309
310static int auide_dma_end(ide_drive_t *drive)
311{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100312 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000313
Jordan Crouse8f29e652005-12-15 02:17:46 +0100314 if (hwif->sg_nents) {
Bartlomiej Zolnierkiewicz5df37c32008-02-01 23:09:31 +0100315 dma_unmap_sg(hwif->dev, hwif->sg_table, hwif->sg_nents,
Jordan Crouse8f29e652005-12-15 02:17:46 +0100316 hwif->sg_dma_direction);
317 hwif->sg_nents = 0;
318 }
Pete Popov26a940e2005-09-15 08:03:12 +0000319
Jordan Crouse8f29e652005-12-15 02:17:46 +0100320 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000321}
322
323static void auide_dma_start(ide_drive_t *drive )
324{
Pete Popov26a940e2005-09-15 08:03:12 +0000325}
326
Pete Popov26a940e2005-09-15 08:03:12 +0000327
328static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command)
329{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100330 /* issue cmd to drive */
331 ide_execute_command(drive, command, &ide_dma_intr,
332 (2*WAIT_CMD), NULL);
Pete Popov26a940e2005-09-15 08:03:12 +0000333}
334
335static int auide_dma_setup(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100336{
337 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000338
Jordan Crouse8f29e652005-12-15 02:17:46 +0100339 if (!auide_build_dmatable(drive)) {
340 ide_map_sg(drive, rq);
341 return 1;
342 }
Pete Popov26a940e2005-09-15 08:03:12 +0000343
Jordan Crouse8f29e652005-12-15 02:17:46 +0100344 drive->waiting_for_dma = 1;
345 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000346}
347
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200348static u8 auide_mdma_filter(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000349{
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200350 /*
351 * FIXME: ->white_list and ->black_list are based on completely bogus
352 * ->ide_dma_check implementation which didn't set neither the host
353 * controller timings nor the device for the desired transfer mode.
354 *
355 * They should be either removed or 0x00 MWDMA mask should be
356 * returned for devices on the ->black_list.
357 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100358
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200359 if (dbdma_init_done == 0) {
Jordan Crouse8f29e652005-12-15 02:17:46 +0100360 auide_hwif.white_list = ide_in_drive_list(drive->id,
361 dma_white_list);
362 auide_hwif.black_list = ide_in_drive_list(drive->id,
363 dma_black_list);
364 auide_hwif.drive = drive;
365 auide_ddma_init(&auide_hwif);
366 dbdma_init_done = 1;
367 }
Pete Popov26a940e2005-09-15 08:03:12 +0000368
Jordan Crouse8f29e652005-12-15 02:17:46 +0100369 /* Is the drive in our DMA black list? */
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200370 if (auide_hwif.black_list)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100371 printk(KERN_WARNING "%s: Disabling DMA for %s (blacklisted)\n",
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200372 drive->name, drive->id->model);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100373
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200374 return drive->hwif->mwdma_mask;
375}
376
Pete Popov26a940e2005-09-15 08:03:12 +0000377static int auide_dma_test_irq(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100378{
379 if (drive->waiting_for_dma == 0)
380 printk(KERN_WARNING "%s: ide_dma_test_irq \
Pete Popov26a940e2005-09-15 08:03:12 +0000381 called while not waiting\n", drive->name);
382
Jordan Crouse8f29e652005-12-15 02:17:46 +0100383 /* If dbdma didn't execute the STOP command yet, the
384 * active bit is still set
Pete Popov26a940e2005-09-15 08:03:12 +0000385 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100386 drive->waiting_for_dma++;
387 if (drive->waiting_for_dma >= DMA_WAIT_TIMEOUT) {
388 printk(KERN_WARNING "%s: timeout waiting for ddma to \
Pete Popov26a940e2005-09-15 08:03:12 +0000389 complete\n", drive->name);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100390 return 1;
391 }
392 udelay(10);
393 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000394}
395
Bartlomiej Zolnierkiewicz15ce9262008-01-26 20:13:03 +0100396static void auide_dma_host_set(ide_drive_t *drive, int on)
Pete Popov26a940e2005-09-15 08:03:12 +0000397{
Pete Popov26a940e2005-09-15 08:03:12 +0000398}
399
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200400static void auide_dma_lost_irq(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000401{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100402 printk(KERN_ERR "%s: IRQ lost\n", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000403}
404
Ralf Baechle53e62d32006-09-25 23:32:10 -0700405static void auide_ddma_tx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000406{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100407 _auide_hwif *ahwif = (_auide_hwif*)param;
408 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000409}
410
Ralf Baechle53e62d32006-09-25 23:32:10 -0700411static void auide_ddma_rx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000412{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100413 _auide_hwif *ahwif = (_auide_hwif*)param;
414 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000415}
416
Jordan Crouse8f29e652005-12-15 02:17:46 +0100417#endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
418
419static void auide_init_dbdma_dev(dbdev_tab_t *dev, u32 dev_id, u32 tsize, u32 devwidth, u32 flags)
420{
421 dev->dev_id = dev_id;
422 dev->dev_physaddr = (u32)AU1XXX_ATA_PHYS_ADDR;
423 dev->dev_intlevel = 0;
424 dev->dev_intpolarity = 0;
425 dev->dev_tsize = tsize;
426 dev->dev_devwidth = devwidth;
427 dev->dev_flags = flags;
428}
429
430#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
431
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200432static void auide_dma_timeout(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000433{
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200434 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000435
Jordan Crouse8f29e652005-12-15 02:17:46 +0100436 printk(KERN_ERR "%s: DMA timeout occurred: ", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000437
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200438 if (hwif->ide_dma_test_irq(drive))
439 return;
Pete Popov26a940e2005-09-15 08:03:12 +0000440
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200441 hwif->ide_dma_end(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000442}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100443
Pete Popov26a940e2005-09-15 08:03:12 +0000444
Jordan Crouse8f29e652005-12-15 02:17:46 +0100445static int auide_ddma_init(_auide_hwif *auide) {
446
447 dbdev_tab_t source_dev_tab, target_dev_tab;
448 u32 dev_id, tsize, devwidth, flags;
449 ide_hwif_t *hwif = auide->hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000450
Jordan Crouse8f29e652005-12-15 02:17:46 +0100451 dev_id = AU1XXX_ATA_DDMA_REQ;
452
453 if (auide->white_list || auide->black_list) {
454 tsize = 8;
455 devwidth = 32;
456 }
457 else {
458 tsize = 1;
459 devwidth = 16;
460
461 printk(KERN_ERR "au1xxx-ide: %s is not on ide driver whitelist.\n",auide_hwif.drive->id->model);
462 printk(KERN_ERR " please read 'Documentation/mips/AU1xxx_IDE.README'");
463 }
464
465#ifdef IDE_AU1XXX_BURSTMODE
466 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
467#else
468 flags = DEV_FLAGS_SYNC;
469#endif
470
471 /* setup dev_tab for tx channel */
472 auide_init_dbdma_dev( &source_dev_tab,
473 dev_id,
474 tsize, devwidth, DEV_FLAGS_OUT | flags);
475 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
476
477 auide_init_dbdma_dev( &source_dev_tab,
478 dev_id,
479 tsize, devwidth, DEV_FLAGS_IN | flags);
480 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
481
482 /* We also need to add a target device for the DMA */
483 auide_init_dbdma_dev( &target_dev_tab,
484 (u32)DSCR_CMD0_ALWAYS,
485 tsize, devwidth, DEV_FLAGS_ANYUSE);
486 auide->target_dev_id = au1xxx_ddma_add_device(&target_dev_tab);
487
488 /* Get a channel for TX */
489 auide->tx_chan = au1xxx_dbdma_chan_alloc(auide->target_dev_id,
490 auide->tx_dev_id,
491 auide_ddma_tx_callback,
492 (void*)auide);
493
494 /* Get a channel for RX */
495 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
496 auide->target_dev_id,
497 auide_ddma_rx_callback,
498 (void*)auide);
499
500 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
501 NUM_DESCRIPTORS);
502 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
503 NUM_DESCRIPTORS);
504
Bartlomiej Zolnierkiewicz5df37c32008-02-01 23:09:31 +0100505 hwif->dmatable_cpu = dma_alloc_coherent(hwif->dev,
Jordan Crouse8f29e652005-12-15 02:17:46 +0100506 PRD_ENTRIES * PRD_BYTES, /* 1 Page */
507 &hwif->dmatable_dma, GFP_KERNEL);
508
509 au1xxx_dbdma_start( auide->tx_chan );
510 au1xxx_dbdma_start( auide->rx_chan );
511
512 return 0;
513}
514#else
515
Pete Popov26a940e2005-09-15 08:03:12 +0000516static int auide_ddma_init( _auide_hwif *auide )
517{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100518 dbdev_tab_t source_dev_tab;
519 int flags;
Pete Popov26a940e2005-09-15 08:03:12 +0000520
Jordan Crouse8f29e652005-12-15 02:17:46 +0100521#ifdef IDE_AU1XXX_BURSTMODE
522 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
Pete Popov26a940e2005-09-15 08:03:12 +0000523#else
Jordan Crouse8f29e652005-12-15 02:17:46 +0100524 flags = DEV_FLAGS_SYNC;
Pete Popov26a940e2005-09-15 08:03:12 +0000525#endif
526
Jordan Crouse8f29e652005-12-15 02:17:46 +0100527 /* setup dev_tab for tx channel */
528 auide_init_dbdma_dev( &source_dev_tab,
529 (u32)DSCR_CMD0_ALWAYS,
530 8, 32, DEV_FLAGS_OUT | flags);
531 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
Pete Popov26a940e2005-09-15 08:03:12 +0000532
Jordan Crouse8f29e652005-12-15 02:17:46 +0100533 auide_init_dbdma_dev( &source_dev_tab,
534 (u32)DSCR_CMD0_ALWAYS,
535 8, 32, DEV_FLAGS_IN | flags);
536 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
537
538 /* Get a channel for TX */
539 auide->tx_chan = au1xxx_dbdma_chan_alloc(DSCR_CMD0_ALWAYS,
540 auide->tx_dev_id,
541 NULL,
542 (void*)auide);
543
544 /* Get a channel for RX */
545 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
546 DSCR_CMD0_ALWAYS,
547 NULL,
548 (void*)auide);
549
550 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
551 NUM_DESCRIPTORS);
552 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
553 NUM_DESCRIPTORS);
554
555 au1xxx_dbdma_start( auide->tx_chan );
556 au1xxx_dbdma_start( auide->rx_chan );
557
558 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000559}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100560#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000561
562static void auide_setup_ports(hw_regs_t *hw, _auide_hwif *ahwif)
563{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100564 int i;
565 unsigned long *ata_regs = hw->io_ports;
Pete Popov26a940e2005-09-15 08:03:12 +0000566
Jordan Crouse8f29e652005-12-15 02:17:46 +0100567 /* FIXME? */
568 for (i = 0; i < IDE_CONTROL_OFFSET; i++) {
569 *ata_regs++ = ahwif->regbase + (i << AU1XXX_ATA_REG_OFFSET);
570 }
Pete Popov26a940e2005-09-15 08:03:12 +0000571
Jordan Crouse8f29e652005-12-15 02:17:46 +0100572 /* set the Alternative Status register */
573 *ata_regs = ahwif->regbase + (14 << AU1XXX_ATA_REG_OFFSET);
Pete Popov26a940e2005-09-15 08:03:12 +0000574}
575
576static int au_ide_probe(struct device *dev)
577{
578 struct platform_device *pdev = to_platform_device(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100579 _auide_hwif *ahwif = &auide_hwif;
580 ide_hwif_t *hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000581 struct resource *res;
582 int ret = 0;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200583 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200584 hw_regs_t hw;
Pete Popov26a940e2005-09-15 08:03:12 +0000585
586#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100587 char *mode = "MWDMA2";
Pete Popov26a940e2005-09-15 08:03:12 +0000588#elif defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100589 char *mode = "PIO+DDMA(offload)";
Pete Popov26a940e2005-09-15 08:03:12 +0000590#endif
591
Jordan Crouse8f29e652005-12-15 02:17:46 +0100592 memset(&auide_hwif, 0, sizeof(_auide_hwif));
Pete Popov26a940e2005-09-15 08:03:12 +0000593 ahwif->irq = platform_get_irq(pdev, 0);
594
595 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
596
597 if (res == NULL) {
598 pr_debug("%s %d: no base address\n", DRV_NAME, pdev->id);
599 ret = -ENODEV;
600 goto out;
601 }
David Vrabel48944732006-01-19 17:56:29 +0000602 if (ahwif->irq < 0) {
603 pr_debug("%s %d: no IRQ\n", DRV_NAME, pdev->id);
604 ret = -ENODEV;
605 goto out;
606 }
Pete Popov26a940e2005-09-15 08:03:12 +0000607
Jordan Crouse8f29e652005-12-15 02:17:46 +0100608 if (!request_mem_region (res->start, res->end-res->start, pdev->name)) {
Pete Popov26a940e2005-09-15 08:03:12 +0000609 pr_debug("%s: request_mem_region failed\n", DRV_NAME);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100610 ret = -EBUSY;
Pete Popov26a940e2005-09-15 08:03:12 +0000611 goto out;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100612 }
Pete Popov26a940e2005-09-15 08:03:12 +0000613
614 ahwif->regbase = (u32)ioremap(res->start, res->end-res->start);
615 if (ahwif->regbase == 0) {
616 ret = -ENOMEM;
617 goto out;
618 }
619
Jordan Crouse8f29e652005-12-15 02:17:46 +0100620 /* FIXME: This might possibly break PCMCIA IDE devices */
Pete Popov26a940e2005-09-15 08:03:12 +0000621
Jordan Crouse8f29e652005-12-15 02:17:46 +0100622 hwif = &ide_hwifs[pdev->id];
Jordan Crouse8f29e652005-12-15 02:17:46 +0100623
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200624 memset(&hw, 0, sizeof(hw));
625 auide_setup_ports(&hw, ahwif);
Bartlomiej Zolnierkiewiczaa79a2f2008-01-26 20:13:08 +0100626 hw.irq = ahwif->irq;
627 hw.chipset = ide_au1xxx;
628
629 ide_init_port_hw(hwif, &hw);
Pete Popov26a940e2005-09-15 08:03:12 +0000630
Bartlomiej Zolnierkiewicz5df37c32008-02-01 23:09:31 +0100631 hwif->dev = dev;
632
Jordan Crouse8f29e652005-12-15 02:17:46 +0100633 hwif->ultra_mask = 0x0; /* Disable Ultra DMA */
Pete Popov26a940e2005-09-15 08:03:12 +0000634#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Jordan Crouse8f29e652005-12-15 02:17:46 +0100635 hwif->mwdma_mask = 0x07; /* Multimode-2 DMA */
636 hwif->swdma_mask = 0x00;
Pete Popov26a940e2005-09-15 08:03:12 +0000637#else
Jordan Crouse8f29e652005-12-15 02:17:46 +0100638 hwif->mwdma_mask = 0x0;
639 hwif->swdma_mask = 0x0;
Pete Popov26a940e2005-09-15 08:03:12 +0000640#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000641
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200642 hwif->pio_mask = ATA_PIO4;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200643 hwif->host_flags = IDE_HFLAG_POST_SET_MODE;
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200644
Jordan Crouse8f29e652005-12-15 02:17:46 +0100645 hwif->drives[0].unmask = 1;
646 hwif->drives[1].unmask = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000647
Jordan Crouse8f29e652005-12-15 02:17:46 +0100648 /* hold should be on in all cases */
649 hwif->hold = 1;
Bartlomiej Zolnierkiewicz2ad1e552007-02-17 02:40:25 +0100650
651 hwif->mmio = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000652
Jordan Crouse8f29e652005-12-15 02:17:46 +0100653 /* If the user has selected DDMA assisted copies,
654 then set up a few local I/O function entry points
655 */
656
657#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
658 hwif->INSW = auide_insw;
659 hwif->OUTSW = auide_outsw;
660#endif
661
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200662 hwif->set_pio_mode = &au1xxx_set_pio_mode;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200663 hwif->set_dma_mode = &auide_set_dma_mode;
Pete Popov26a940e2005-09-15 08:03:12 +0000664
665#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200666 hwif->dma_timeout = &auide_dma_timeout;
Pete Popov26a940e2005-09-15 08:03:12 +0000667
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200668 hwif->mdma_filter = &auide_mdma_filter;
669
Bartlomiej Zolnierkiewicz15ce9262008-01-26 20:13:03 +0100670 hwif->dma_host_set = &auide_dma_host_set;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100671 hwif->dma_exec_cmd = &auide_dma_exec_cmd;
672 hwif->dma_start = &auide_dma_start;
673 hwif->ide_dma_end = &auide_dma_end;
674 hwif->dma_setup = &auide_dma_setup;
675 hwif->ide_dma_test_irq = &auide_dma_test_irq;
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200676 hwif->dma_lost_irq = &auide_dma_lost_irq;
Bartlomiej Zolnierkiewicza42bcc02008-01-26 20:13:07 +0100677#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100678 hwif->channel = 0;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100679 hwif->select_data = 0; /* no chipset-specific code */
680 hwif->config_data = 0; /* no chipset-specific code */
Pete Popov26a940e2005-09-15 08:03:12 +0000681
Jordan Crouse8f29e652005-12-15 02:17:46 +0100682 hwif->drives[0].autotune = 1; /* 1=autotune, 2=noautotune, 0=default */
Bartlomiej Zolnierkiewicza05e2fa2007-10-20 00:32:33 +0200683 hwif->drives[1].autotune = 1;
Bartlomiej Zolnierkiewicza42bcc02008-01-26 20:13:07 +0100684
Bartlomiej Zolnierkiewicza05e2fa2007-10-20 00:32:33 +0200685 hwif->drives[0].no_io_32bit = 1;
686 hwif->drives[1].no_io_32bit = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000687
Jordan Crouse8f29e652005-12-15 02:17:46 +0100688 auide_hwif.hwif = hwif;
689 hwif->hwif_data = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000690
Jordan Crouse8f29e652005-12-15 02:17:46 +0100691#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
692 auide_ddma_init(&auide_hwif);
693 dbdma_init_done = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000694#endif
695
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200696 idx[0] = hwif->index;
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200697
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200698 ide_device_add(idx);
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200699
Pete Popov26a940e2005-09-15 08:03:12 +0000700 dev_set_drvdata(dev, hwif);
701
Jordan Crouse8f29e652005-12-15 02:17:46 +0100702 printk(KERN_INFO "Au1xxx IDE(builtin) configured for %s\n", mode );
Pete Popov26a940e2005-09-15 08:03:12 +0000703
Jordan Crouse8f29e652005-12-15 02:17:46 +0100704 out:
705 return ret;
Pete Popov26a940e2005-09-15 08:03:12 +0000706}
707
708static int au_ide_remove(struct device *dev)
709{
710 struct platform_device *pdev = to_platform_device(dev);
711 struct resource *res;
712 ide_hwif_t *hwif = dev_get_drvdata(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100713 _auide_hwif *ahwif = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000714
715 ide_unregister(hwif - ide_hwifs);
716
717 iounmap((void *)ahwif->regbase);
718
719 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
720 release_mem_region(res->start, res->end - res->start);
721
722 return 0;
723}
724
725static struct device_driver au1200_ide_driver = {
726 .name = "au1200-ide",
727 .bus = &platform_bus_type,
728 .probe = au_ide_probe,
729 .remove = au_ide_remove,
730};
731
732static int __init au_ide_init(void)
733{
734 return driver_register(&au1200_ide_driver);
735}
736
Jordan Crouse8f29e652005-12-15 02:17:46 +0100737static void __exit au_ide_exit(void)
Pete Popov26a940e2005-09-15 08:03:12 +0000738{
739 driver_unregister(&au1200_ide_driver);
740}
741
Pete Popov26a940e2005-09-15 08:03:12 +0000742MODULE_LICENSE("GPL");
743MODULE_DESCRIPTION("AU1200 IDE driver");
744
745module_init(au_ide_init);
746module_exit(au_ide_exit);