blob: b80d77a260da0d89350c97823f7040e622ca4f85 [file] [log] [blame]
Pete Popov26a940e2005-09-15 08:03:12 +00001/*
Pete Popov26a940e2005-09-15 08:03:12 +00002 * BRIEF MODULE DESCRIPTION
3 * AMD Alchemy Au1xxx IDE interface routines over the Static Bus
4 *
5 * Copyright (c) 2003-2005 AMD, Personal Connectivity Solutions
6 *
7 * This program is free software; you can redistribute it and/or modify it under
8 * the terms of the GNU General Public License as published by the Free Software
9 * Foundation; either version 2 of the License, or (at your option) any later
10 * version.
11 *
12 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
13 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
14 * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR
15 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
16 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
17 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
18 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
19 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
20 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
21 * POSSIBILITY OF SUCH DAMAGE.
22 *
23 * You should have received a copy of the GNU General Public License along with
24 * this program; if not, write to the Free Software Foundation, Inc.,
25 * 675 Mass Ave, Cambridge, MA 02139, USA.
26 *
27 * Note: for more information, please refer "AMD Alchemy Au1200/Au1550 IDE
28 * Interface and Linux Device Driver" Application Note.
29 */
Pete Popov26a940e2005-09-15 08:03:12 +000030#include <linux/types.h>
31#include <linux/module.h>
32#include <linux/kernel.h>
33#include <linux/delay.h>
Jordan Crouse8f29e652005-12-15 02:17:46 +010034#include <linux/platform_device.h>
35
Pete Popov26a940e2005-09-15 08:03:12 +000036#include <linux/init.h>
37#include <linux/ide.h>
38#include <linux/sysdev.h>
39
40#include <linux/dma-mapping.h>
41
Jordan Crouse8f29e652005-12-15 02:17:46 +010042#include "ide-timing.h"
43
Pete Popov26a940e2005-09-15 08:03:12 +000044#include <asm/io.h>
45#include <asm/mach-au1x00/au1xxx.h>
46#include <asm/mach-au1x00/au1xxx_dbdma.h>
47
Pete Popov26a940e2005-09-15 08:03:12 +000048#include <asm/mach-au1x00/au1xxx_ide.h>
49
50#define DRV_NAME "au1200-ide"
Jordan Crouse8f29e652005-12-15 02:17:46 +010051#define DRV_AUTHOR "Enrico Walther <enrico.walther@amd.com> / Pete Popov <ppopov@embeddedalley.com>"
52
53/* enable the burstmode in the dbdma */
54#define IDE_AU1XXX_BURSTMODE 1
Pete Popov26a940e2005-09-15 08:03:12 +000055
56static _auide_hwif auide_hwif;
Jordan Crouse8f29e652005-12-15 02:17:46 +010057static int dbdma_init_done;
Pete Popov26a940e2005-09-15 08:03:12 +000058
Jordan Crouse8f29e652005-12-15 02:17:46 +010059#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
Pete Popov26a940e2005-09-15 08:03:12 +000060
61void auide_insw(unsigned long port, void *addr, u32 count)
62{
Jordan Crouse8f29e652005-12-15 02:17:46 +010063 _auide_hwif *ahwif = &auide_hwif;
64 chan_tab_t *ctp;
65 au1x_ddma_desc_t *dp;
Pete Popov26a940e2005-09-15 08:03:12 +000066
Jordan Crouse8f29e652005-12-15 02:17:46 +010067 if(!put_dest_flags(ahwif->rx_chan, (void*)addr, count << 1,
68 DDMA_FLAGS_NOIE)) {
69 printk(KERN_ERR "%s failed %d\n", __FUNCTION__, __LINE__);
70 return;
71 }
72 ctp = *((chan_tab_t **)ahwif->rx_chan);
73 dp = ctp->cur_ptr;
74 while (dp->dscr_cmd0 & DSCR_CMD0_V)
75 ;
76 ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
Pete Popov26a940e2005-09-15 08:03:12 +000077}
78
79void auide_outsw(unsigned long port, void *addr, u32 count)
80{
Jordan Crouse8f29e652005-12-15 02:17:46 +010081 _auide_hwif *ahwif = &auide_hwif;
82 chan_tab_t *ctp;
83 au1x_ddma_desc_t *dp;
Pete Popov26a940e2005-09-15 08:03:12 +000084
Jordan Crouse8f29e652005-12-15 02:17:46 +010085 if(!put_source_flags(ahwif->tx_chan, (void*)addr,
86 count << 1, DDMA_FLAGS_NOIE)) {
87 printk(KERN_ERR "%s failed %d\n", __FUNCTION__, __LINE__);
88 return;
89 }
90 ctp = *((chan_tab_t **)ahwif->tx_chan);
91 dp = ctp->cur_ptr;
92 while (dp->dscr_cmd0 & DSCR_CMD0_V)
93 ;
94 ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
95}
96
Pete Popov26a940e2005-09-15 08:03:12 +000097#endif
Pete Popov26a940e2005-09-15 08:03:12 +000098
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +020099static void au1xxx_set_pio_mode(ide_drive_t *drive, const u8 pio)
Pete Popov26a940e2005-09-15 08:03:12 +0000100{
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200101 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000102
Jordan Crouse8f29e652005-12-15 02:17:46 +0100103 /* set pio mode! */
104 switch(pio) {
105 case 0:
106 mem_sttime = SBC_IDE_TIMING(PIO0);
Pete Popov26a940e2005-09-15 08:03:12 +0000107
Jordan Crouse8f29e652005-12-15 02:17:46 +0100108 /* set configuration for RCS2# */
109 mem_stcfg |= TS_MASK;
110 mem_stcfg &= ~TCSOE_MASK;
111 mem_stcfg &= ~TOECS_MASK;
112 mem_stcfg |= SBC_IDE_PIO0_TCSOE | SBC_IDE_PIO0_TOECS;
113 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000114
Jordan Crouse8f29e652005-12-15 02:17:46 +0100115 case 1:
116 mem_sttime = SBC_IDE_TIMING(PIO1);
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_PIO1_TCSOE | SBC_IDE_PIO1_TOECS;
123 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000124
Jordan Crouse8f29e652005-12-15 02:17:46 +0100125 case 2:
126 mem_sttime = SBC_IDE_TIMING(PIO2);
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_PIO2_TCSOE | SBC_IDE_PIO2_TOECS;
133 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000134
Jordan Crouse8f29e652005-12-15 02:17:46 +0100135 case 3:
136 mem_sttime = SBC_IDE_TIMING(PIO3);
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_PIO3_TCSOE | SBC_IDE_PIO3_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000143
Jordan Crouse8f29e652005-12-15 02:17:46 +0100144 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000145
Jordan Crouse8f29e652005-12-15 02:17:46 +0100146 case 4:
147 mem_sttime = SBC_IDE_TIMING(PIO4);
Pete Popov26a940e2005-09-15 08:03:12 +0000148
Jordan Crouse8f29e652005-12-15 02:17:46 +0100149 /* set configuration for RCS2# */
150 mem_stcfg &= ~TS_MASK;
151 mem_stcfg &= ~TCSOE_MASK;
152 mem_stcfg &= ~TOECS_MASK;
153 mem_stcfg |= SBC_IDE_PIO4_TCSOE | SBC_IDE_PIO4_TOECS;
154 break;
155 }
156
157 au_writel(mem_sttime,MEM_STTIME2);
158 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000159}
160
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200161static void auide_set_dma_mode(ide_drive_t *drive, const u8 speed)
Pete Popov26a940e2005-09-15 08:03:12 +0000162{
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200163 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000164
Jordan Crouse8f29e652005-12-15 02:17:46 +0100165 switch(speed) {
Pete Popov26a940e2005-09-15 08:03:12 +0000166#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Jordan Crouse8f29e652005-12-15 02:17:46 +0100167 case XFER_MW_DMA_2:
168 mem_sttime = SBC_IDE_TIMING(MDMA2);
Pete Popov26a940e2005-09-15 08:03:12 +0000169
Jordan Crouse8f29e652005-12-15 02:17:46 +0100170 /* set configuration for RCS2# */
171 mem_stcfg &= ~TS_MASK;
172 mem_stcfg &= ~TCSOE_MASK;
173 mem_stcfg &= ~TOECS_MASK;
174 mem_stcfg |= SBC_IDE_MDMA2_TCSOE | SBC_IDE_MDMA2_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000175
Jordan Crouse8f29e652005-12-15 02:17:46 +0100176 break;
177 case XFER_MW_DMA_1:
178 mem_sttime = SBC_IDE_TIMING(MDMA1);
Pete Popov26a940e2005-09-15 08:03:12 +0000179
Jordan Crouse8f29e652005-12-15 02:17:46 +0100180 /* set configuration for RCS2# */
181 mem_stcfg &= ~TS_MASK;
182 mem_stcfg &= ~TCSOE_MASK;
183 mem_stcfg &= ~TOECS_MASK;
184 mem_stcfg |= SBC_IDE_MDMA1_TCSOE | SBC_IDE_MDMA1_TOECS;
185
Jordan Crouse8f29e652005-12-15 02:17:46 +0100186 break;
187 case XFER_MW_DMA_0:
188 mem_sttime = SBC_IDE_TIMING(MDMA0);
189
190 /* set configuration for RCS2# */
191 mem_stcfg |= TS_MASK;
192 mem_stcfg &= ~TCSOE_MASK;
193 mem_stcfg &= ~TOECS_MASK;
194 mem_stcfg |= SBC_IDE_MDMA0_TCSOE | SBC_IDE_MDMA0_TOECS;
195
Jordan Crouse8f29e652005-12-15 02:17:46 +0100196 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000197#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100198 }
Bartlomiej Zolnierkiewicza523a172007-02-17 02:40:23 +0100199
Jordan Crouse8f29e652005-12-15 02:17:46 +0100200 au_writel(mem_sttime,MEM_STTIME2);
201 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000202}
203
204/*
205 * Multi-Word DMA + DbDMA functions
206 */
Pete Popov26a940e2005-09-15 08:03:12 +0000207
Jordan Crouse8f29e652005-12-15 02:17:46 +0100208#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Pete Popov26a940e2005-09-15 08:03:12 +0000209static int auide_build_dmatable(ide_drive_t *drive)
210{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100211 int i, iswrite, count = 0;
212 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000213
Jordan Crouse8f29e652005-12-15 02:17:46 +0100214 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000215
Jordan Crouse8f29e652005-12-15 02:17:46 +0100216 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
217 struct scatterlist *sg;
Pete Popov26a940e2005-09-15 08:03:12 +0000218
Jordan Crouse8f29e652005-12-15 02:17:46 +0100219 iswrite = (rq_data_dir(rq) == WRITE);
220 /* Save for interrupt context */
221 ahwif->drive = drive;
Pete Popov26a940e2005-09-15 08:03:12 +0000222
Bartlomiej Zolnierkiewicz062f9f02008-02-01 23:09:32 +0100223 hwif->sg_nents = i = ide_build_sglist(drive, rq);
Pete Popov26a940e2005-09-15 08:03:12 +0000224
Jordan Crouse8f29e652005-12-15 02:17:46 +0100225 if (!i)
226 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000227
Jordan Crouse8f29e652005-12-15 02:17:46 +0100228 /* fill the descriptors */
229 sg = hwif->sg_table;
230 while (i && sg_dma_len(sg)) {
231 u32 cur_addr;
232 u32 cur_len;
Pete Popov26a940e2005-09-15 08:03:12 +0000233
Jordan Crouse8f29e652005-12-15 02:17:46 +0100234 cur_addr = sg_dma_address(sg);
235 cur_len = sg_dma_len(sg);
Pete Popov26a940e2005-09-15 08:03:12 +0000236
Jordan Crouse8f29e652005-12-15 02:17:46 +0100237 while (cur_len) {
238 u32 flags = DDMA_FLAGS_NOIE;
239 unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;
Pete Popov26a940e2005-09-15 08:03:12 +0000240
Jordan Crouse8f29e652005-12-15 02:17:46 +0100241 if (++count >= PRD_ENTRIES) {
242 printk(KERN_WARNING "%s: DMA table too small\n",
243 drive->name);
244 goto use_pio_instead;
245 }
Pete Popov26a940e2005-09-15 08:03:12 +0000246
Jordan Crouse8f29e652005-12-15 02:17:46 +0100247 /* Lets enable intr for the last descriptor only */
248 if (1==i)
249 flags = DDMA_FLAGS_IE;
250 else
251 flags = DDMA_FLAGS_NOIE;
Pete Popov26a940e2005-09-15 08:03:12 +0000252
Jordan Crouse8f29e652005-12-15 02:17:46 +0100253 if (iswrite) {
254 if(!put_source_flags(ahwif->tx_chan,
Jens Axboe45711f12007-10-22 21:19:53 +0200255 (void*) sg_virt(sg),
Jordan Crouse8f29e652005-12-15 02:17:46 +0100256 tc, flags)) {
257 printk(KERN_ERR "%s failed %d\n",
258 __FUNCTION__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000259 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100260 } else
Pete Popov26a940e2005-09-15 08:03:12 +0000261 {
Jordan Crouse8f29e652005-12-15 02:17:46 +0100262 if(!put_dest_flags(ahwif->rx_chan,
Jens Axboe45711f12007-10-22 21:19:53 +0200263 (void*) sg_virt(sg),
Jordan Crouse8f29e652005-12-15 02:17:46 +0100264 tc, flags)) {
265 printk(KERN_ERR "%s failed %d\n",
266 __FUNCTION__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000267 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100268 }
Pete Popov26a940e2005-09-15 08:03:12 +0000269
Jordan Crouse8f29e652005-12-15 02:17:46 +0100270 cur_addr += tc;
271 cur_len -= tc;
272 }
Jens Axboe55c16a72007-07-25 08:13:56 +0200273 sg = sg_next(sg);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100274 i--;
275 }
Pete Popov26a940e2005-09-15 08:03:12 +0000276
Jordan Crouse8f29e652005-12-15 02:17:46 +0100277 if (count)
278 return 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000279
Jordan Crouse8f29e652005-12-15 02:17:46 +0100280 use_pio_instead:
Bartlomiej Zolnierkiewicz062f9f02008-02-01 23:09:32 +0100281 ide_destroy_dmatable(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000282
Jordan Crouse8f29e652005-12-15 02:17:46 +0100283 return 0; /* revert to PIO for this request */
Pete Popov26a940e2005-09-15 08:03:12 +0000284}
285
286static int auide_dma_end(ide_drive_t *drive)
287{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100288 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000289
Jordan Crouse8f29e652005-12-15 02:17:46 +0100290 if (hwif->sg_nents) {
Bartlomiej Zolnierkiewicz062f9f02008-02-01 23:09:32 +0100291 ide_destroy_dmatable(drive);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100292 hwif->sg_nents = 0;
293 }
Pete Popov26a940e2005-09-15 08:03:12 +0000294
Jordan Crouse8f29e652005-12-15 02:17:46 +0100295 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000296}
297
298static void auide_dma_start(ide_drive_t *drive )
299{
Pete Popov26a940e2005-09-15 08:03:12 +0000300}
301
Pete Popov26a940e2005-09-15 08:03:12 +0000302
303static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command)
304{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100305 /* issue cmd to drive */
306 ide_execute_command(drive, command, &ide_dma_intr,
307 (2*WAIT_CMD), NULL);
Pete Popov26a940e2005-09-15 08:03:12 +0000308}
309
310static int auide_dma_setup(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100311{
312 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000313
Jordan Crouse8f29e652005-12-15 02:17:46 +0100314 if (!auide_build_dmatable(drive)) {
315 ide_map_sg(drive, rq);
316 return 1;
317 }
Pete Popov26a940e2005-09-15 08:03:12 +0000318
Jordan Crouse8f29e652005-12-15 02:17:46 +0100319 drive->waiting_for_dma = 1;
320 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000321}
322
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200323static u8 auide_mdma_filter(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000324{
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200325 /*
326 * FIXME: ->white_list and ->black_list are based on completely bogus
327 * ->ide_dma_check implementation which didn't set neither the host
328 * controller timings nor the device for the desired transfer mode.
329 *
330 * They should be either removed or 0x00 MWDMA mask should be
331 * returned for devices on the ->black_list.
332 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100333
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200334 if (dbdma_init_done == 0) {
Jordan Crouse8f29e652005-12-15 02:17:46 +0100335 auide_hwif.white_list = ide_in_drive_list(drive->id,
336 dma_white_list);
337 auide_hwif.black_list = ide_in_drive_list(drive->id,
338 dma_black_list);
339 auide_hwif.drive = drive;
340 auide_ddma_init(&auide_hwif);
341 dbdma_init_done = 1;
342 }
Pete Popov26a940e2005-09-15 08:03:12 +0000343
Jordan Crouse8f29e652005-12-15 02:17:46 +0100344 /* Is the drive in our DMA black list? */
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200345 if (auide_hwif.black_list)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100346 printk(KERN_WARNING "%s: Disabling DMA for %s (blacklisted)\n",
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200347 drive->name, drive->id->model);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100348
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200349 return drive->hwif->mwdma_mask;
350}
351
Pete Popov26a940e2005-09-15 08:03:12 +0000352static int auide_dma_test_irq(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100353{
354 if (drive->waiting_for_dma == 0)
355 printk(KERN_WARNING "%s: ide_dma_test_irq \
Pete Popov26a940e2005-09-15 08:03:12 +0000356 called while not waiting\n", drive->name);
357
Jordan Crouse8f29e652005-12-15 02:17:46 +0100358 /* If dbdma didn't execute the STOP command yet, the
359 * active bit is still set
Pete Popov26a940e2005-09-15 08:03:12 +0000360 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100361 drive->waiting_for_dma++;
362 if (drive->waiting_for_dma >= DMA_WAIT_TIMEOUT) {
363 printk(KERN_WARNING "%s: timeout waiting for ddma to \
Pete Popov26a940e2005-09-15 08:03:12 +0000364 complete\n", drive->name);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100365 return 1;
366 }
367 udelay(10);
368 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000369}
370
Bartlomiej Zolnierkiewicz15ce9262008-01-26 20:13:03 +0100371static void auide_dma_host_set(ide_drive_t *drive, int on)
Pete Popov26a940e2005-09-15 08:03:12 +0000372{
Pete Popov26a940e2005-09-15 08:03:12 +0000373}
374
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200375static void auide_dma_lost_irq(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000376{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100377 printk(KERN_ERR "%s: IRQ lost\n", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000378}
379
Ralf Baechle53e62d32006-09-25 23:32:10 -0700380static void auide_ddma_tx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000381{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100382 _auide_hwif *ahwif = (_auide_hwif*)param;
383 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000384}
385
Ralf Baechle53e62d32006-09-25 23:32:10 -0700386static void auide_ddma_rx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000387{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100388 _auide_hwif *ahwif = (_auide_hwif*)param;
389 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000390}
391
Jordan Crouse8f29e652005-12-15 02:17:46 +0100392#endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
393
394static void auide_init_dbdma_dev(dbdev_tab_t *dev, u32 dev_id, u32 tsize, u32 devwidth, u32 flags)
395{
396 dev->dev_id = dev_id;
397 dev->dev_physaddr = (u32)AU1XXX_ATA_PHYS_ADDR;
398 dev->dev_intlevel = 0;
399 dev->dev_intpolarity = 0;
400 dev->dev_tsize = tsize;
401 dev->dev_devwidth = devwidth;
402 dev->dev_flags = flags;
403}
404
405#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
406
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200407static void auide_dma_timeout(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000408{
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200409 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000410
Jordan Crouse8f29e652005-12-15 02:17:46 +0100411 printk(KERN_ERR "%s: DMA timeout occurred: ", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000412
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200413 if (hwif->ide_dma_test_irq(drive))
414 return;
Pete Popov26a940e2005-09-15 08:03:12 +0000415
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200416 hwif->ide_dma_end(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000417}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100418
Pete Popov26a940e2005-09-15 08:03:12 +0000419
Jordan Crouse8f29e652005-12-15 02:17:46 +0100420static int auide_ddma_init(_auide_hwif *auide) {
421
422 dbdev_tab_t source_dev_tab, target_dev_tab;
423 u32 dev_id, tsize, devwidth, flags;
424 ide_hwif_t *hwif = auide->hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000425
Jordan Crouse8f29e652005-12-15 02:17:46 +0100426 dev_id = AU1XXX_ATA_DDMA_REQ;
427
428 if (auide->white_list || auide->black_list) {
429 tsize = 8;
430 devwidth = 32;
431 }
432 else {
433 tsize = 1;
434 devwidth = 16;
435
436 printk(KERN_ERR "au1xxx-ide: %s is not on ide driver whitelist.\n",auide_hwif.drive->id->model);
437 printk(KERN_ERR " please read 'Documentation/mips/AU1xxx_IDE.README'");
438 }
439
440#ifdef IDE_AU1XXX_BURSTMODE
441 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
442#else
443 flags = DEV_FLAGS_SYNC;
444#endif
445
446 /* setup dev_tab for tx channel */
447 auide_init_dbdma_dev( &source_dev_tab,
448 dev_id,
449 tsize, devwidth, DEV_FLAGS_OUT | flags);
450 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
451
452 auide_init_dbdma_dev( &source_dev_tab,
453 dev_id,
454 tsize, devwidth, DEV_FLAGS_IN | flags);
455 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
456
457 /* We also need to add a target device for the DMA */
458 auide_init_dbdma_dev( &target_dev_tab,
459 (u32)DSCR_CMD0_ALWAYS,
460 tsize, devwidth, DEV_FLAGS_ANYUSE);
461 auide->target_dev_id = au1xxx_ddma_add_device(&target_dev_tab);
462
463 /* Get a channel for TX */
464 auide->tx_chan = au1xxx_dbdma_chan_alloc(auide->target_dev_id,
465 auide->tx_dev_id,
466 auide_ddma_tx_callback,
467 (void*)auide);
468
469 /* Get a channel for RX */
470 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
471 auide->target_dev_id,
472 auide_ddma_rx_callback,
473 (void*)auide);
474
475 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
476 NUM_DESCRIPTORS);
477 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
478 NUM_DESCRIPTORS);
479
Bartlomiej Zolnierkiewicz5df37c32008-02-01 23:09:31 +0100480 hwif->dmatable_cpu = dma_alloc_coherent(hwif->dev,
Jordan Crouse8f29e652005-12-15 02:17:46 +0100481 PRD_ENTRIES * PRD_BYTES, /* 1 Page */
482 &hwif->dmatable_dma, GFP_KERNEL);
483
484 au1xxx_dbdma_start( auide->tx_chan );
485 au1xxx_dbdma_start( auide->rx_chan );
486
487 return 0;
488}
489#else
490
Pete Popov26a940e2005-09-15 08:03:12 +0000491static int auide_ddma_init( _auide_hwif *auide )
492{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100493 dbdev_tab_t source_dev_tab;
494 int flags;
Pete Popov26a940e2005-09-15 08:03:12 +0000495
Jordan Crouse8f29e652005-12-15 02:17:46 +0100496#ifdef IDE_AU1XXX_BURSTMODE
497 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
Pete Popov26a940e2005-09-15 08:03:12 +0000498#else
Jordan Crouse8f29e652005-12-15 02:17:46 +0100499 flags = DEV_FLAGS_SYNC;
Pete Popov26a940e2005-09-15 08:03:12 +0000500#endif
501
Jordan Crouse8f29e652005-12-15 02:17:46 +0100502 /* setup dev_tab for tx channel */
503 auide_init_dbdma_dev( &source_dev_tab,
504 (u32)DSCR_CMD0_ALWAYS,
505 8, 32, DEV_FLAGS_OUT | flags);
506 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
Pete Popov26a940e2005-09-15 08:03:12 +0000507
Jordan Crouse8f29e652005-12-15 02:17:46 +0100508 auide_init_dbdma_dev( &source_dev_tab,
509 (u32)DSCR_CMD0_ALWAYS,
510 8, 32, DEV_FLAGS_IN | flags);
511 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
512
513 /* Get a channel for TX */
514 auide->tx_chan = au1xxx_dbdma_chan_alloc(DSCR_CMD0_ALWAYS,
515 auide->tx_dev_id,
516 NULL,
517 (void*)auide);
518
519 /* Get a channel for RX */
520 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
521 DSCR_CMD0_ALWAYS,
522 NULL,
523 (void*)auide);
524
525 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
526 NUM_DESCRIPTORS);
527 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
528 NUM_DESCRIPTORS);
529
530 au1xxx_dbdma_start( auide->tx_chan );
531 au1xxx_dbdma_start( auide->rx_chan );
532
533 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000534}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100535#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000536
537static void auide_setup_ports(hw_regs_t *hw, _auide_hwif *ahwif)
538{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100539 int i;
540 unsigned long *ata_regs = hw->io_ports;
Pete Popov26a940e2005-09-15 08:03:12 +0000541
Jordan Crouse8f29e652005-12-15 02:17:46 +0100542 /* FIXME? */
543 for (i = 0; i < IDE_CONTROL_OFFSET; i++) {
544 *ata_regs++ = ahwif->regbase + (i << AU1XXX_ATA_REG_OFFSET);
545 }
Pete Popov26a940e2005-09-15 08:03:12 +0000546
Jordan Crouse8f29e652005-12-15 02:17:46 +0100547 /* set the Alternative Status register */
548 *ata_regs = ahwif->regbase + (14 << AU1XXX_ATA_REG_OFFSET);
Pete Popov26a940e2005-09-15 08:03:12 +0000549}
550
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100551static const struct ide_port_info au1xxx_port_info = {
552 .host_flags = IDE_HFLAG_POST_SET_MODE |
553 IDE_HFLAG_NO_DMA | /* no SFF-style DMA */
554 IDE_HFLAG_UNMASK_IRQS,
555 .pio_mask = ATA_PIO4,
556#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
557 .mwdma_mask = ATA_MWDMA2,
558#endif
559};
560
Pete Popov26a940e2005-09-15 08:03:12 +0000561static int au_ide_probe(struct device *dev)
562{
563 struct platform_device *pdev = to_platform_device(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100564 _auide_hwif *ahwif = &auide_hwif;
565 ide_hwif_t *hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000566 struct resource *res;
567 int ret = 0;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200568 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200569 hw_regs_t hw;
Pete Popov26a940e2005-09-15 08:03:12 +0000570
571#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100572 char *mode = "MWDMA2";
Pete Popov26a940e2005-09-15 08:03:12 +0000573#elif defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100574 char *mode = "PIO+DDMA(offload)";
Pete Popov26a940e2005-09-15 08:03:12 +0000575#endif
576
Jordan Crouse8f29e652005-12-15 02:17:46 +0100577 memset(&auide_hwif, 0, sizeof(_auide_hwif));
Pete Popov26a940e2005-09-15 08:03:12 +0000578 ahwif->irq = platform_get_irq(pdev, 0);
579
580 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
581
582 if (res == NULL) {
583 pr_debug("%s %d: no base address\n", DRV_NAME, pdev->id);
584 ret = -ENODEV;
585 goto out;
586 }
David Vrabel48944732006-01-19 17:56:29 +0000587 if (ahwif->irq < 0) {
588 pr_debug("%s %d: no IRQ\n", DRV_NAME, pdev->id);
589 ret = -ENODEV;
590 goto out;
591 }
Pete Popov26a940e2005-09-15 08:03:12 +0000592
Jordan Crouse8f29e652005-12-15 02:17:46 +0100593 if (!request_mem_region (res->start, res->end-res->start, pdev->name)) {
Pete Popov26a940e2005-09-15 08:03:12 +0000594 pr_debug("%s: request_mem_region failed\n", DRV_NAME);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100595 ret = -EBUSY;
Pete Popov26a940e2005-09-15 08:03:12 +0000596 goto out;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100597 }
Pete Popov26a940e2005-09-15 08:03:12 +0000598
599 ahwif->regbase = (u32)ioremap(res->start, res->end-res->start);
600 if (ahwif->regbase == 0) {
601 ret = -ENOMEM;
602 goto out;
603 }
604
Jordan Crouse8f29e652005-12-15 02:17:46 +0100605 /* FIXME: This might possibly break PCMCIA IDE devices */
Pete Popov26a940e2005-09-15 08:03:12 +0000606
Jordan Crouse8f29e652005-12-15 02:17:46 +0100607 hwif = &ide_hwifs[pdev->id];
Jordan Crouse8f29e652005-12-15 02:17:46 +0100608
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200609 memset(&hw, 0, sizeof(hw));
610 auide_setup_ports(&hw, ahwif);
Bartlomiej Zolnierkiewiczaa79a2f2008-01-26 20:13:08 +0100611 hw.irq = ahwif->irq;
Bartlomiej Zolnierkiewiczed1f7882008-02-01 23:09:32 +0100612 hw.dev = dev;
Bartlomiej Zolnierkiewiczaa79a2f2008-01-26 20:13:08 +0100613 hw.chipset = ide_au1xxx;
614
615 ide_init_port_hw(hwif, &hw);
Pete Popov26a940e2005-09-15 08:03:12 +0000616
Bartlomiej Zolnierkiewicz5df37c32008-02-01 23:09:31 +0100617 hwif->dev = dev;
618
Jordan Crouse8f29e652005-12-15 02:17:46 +0100619 /* hold should be on in all cases */
620 hwif->hold = 1;
Bartlomiej Zolnierkiewicz2ad1e552007-02-17 02:40:25 +0100621
622 hwif->mmio = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000623
Jordan Crouse8f29e652005-12-15 02:17:46 +0100624 /* If the user has selected DDMA assisted copies,
625 then set up a few local I/O function entry points
626 */
627
628#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
629 hwif->INSW = auide_insw;
630 hwif->OUTSW = auide_outsw;
631#endif
632
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200633 hwif->set_pio_mode = &au1xxx_set_pio_mode;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200634 hwif->set_dma_mode = &auide_set_dma_mode;
Pete Popov26a940e2005-09-15 08:03:12 +0000635
636#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200637 hwif->dma_timeout = &auide_dma_timeout;
Pete Popov26a940e2005-09-15 08:03:12 +0000638
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200639 hwif->mdma_filter = &auide_mdma_filter;
640
Bartlomiej Zolnierkiewicz15ce9262008-01-26 20:13:03 +0100641 hwif->dma_host_set = &auide_dma_host_set;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100642 hwif->dma_exec_cmd = &auide_dma_exec_cmd;
643 hwif->dma_start = &auide_dma_start;
644 hwif->ide_dma_end = &auide_dma_end;
645 hwif->dma_setup = &auide_dma_setup;
646 hwif->ide_dma_test_irq = &auide_dma_test_irq;
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200647 hwif->dma_lost_irq = &auide_dma_lost_irq;
Bartlomiej Zolnierkiewicza42bcc02008-01-26 20:13:07 +0100648#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100649 hwif->select_data = 0; /* no chipset-specific code */
650 hwif->config_data = 0; /* no chipset-specific code */
Pete Popov26a940e2005-09-15 08:03:12 +0000651
Bartlomiej Zolnierkiewiczbd38dd32008-02-02 19:56:29 +0100652 hwif->no_io_32bit = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000653
Jordan Crouse8f29e652005-12-15 02:17:46 +0100654 auide_hwif.hwif = hwif;
655 hwif->hwif_data = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000656
Jordan Crouse8f29e652005-12-15 02:17:46 +0100657#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
658 auide_ddma_init(&auide_hwif);
659 dbdma_init_done = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000660#endif
661
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200662 idx[0] = hwif->index;
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200663
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100664 ide_device_add(idx, &au1xxx_port_info);
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200665
Pete Popov26a940e2005-09-15 08:03:12 +0000666 dev_set_drvdata(dev, hwif);
667
Jordan Crouse8f29e652005-12-15 02:17:46 +0100668 printk(KERN_INFO "Au1xxx IDE(builtin) configured for %s\n", mode );
Pete Popov26a940e2005-09-15 08:03:12 +0000669
Jordan Crouse8f29e652005-12-15 02:17:46 +0100670 out:
671 return ret;
Pete Popov26a940e2005-09-15 08:03:12 +0000672}
673
674static int au_ide_remove(struct device *dev)
675{
676 struct platform_device *pdev = to_platform_device(dev);
677 struct resource *res;
678 ide_hwif_t *hwif = dev_get_drvdata(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100679 _auide_hwif *ahwif = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000680
Bartlomiej Zolnierkiewiczfadd11c2008-02-01 23:09:33 +0100681 ide_unregister(hwif->index);
Pete Popov26a940e2005-09-15 08:03:12 +0000682
683 iounmap((void *)ahwif->regbase);
684
685 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
686 release_mem_region(res->start, res->end - res->start);
687
688 return 0;
689}
690
691static struct device_driver au1200_ide_driver = {
692 .name = "au1200-ide",
693 .bus = &platform_bus_type,
694 .probe = au_ide_probe,
695 .remove = au_ide_remove,
696};
697
698static int __init au_ide_init(void)
699{
700 return driver_register(&au1200_ide_driver);
701}
702
Jordan Crouse8f29e652005-12-15 02:17:46 +0100703static void __exit au_ide_exit(void)
Pete Popov26a940e2005-09-15 08:03:12 +0000704{
705 driver_unregister(&au1200_ide_driver);
706}
707
Pete Popov26a940e2005-09-15 08:03:12 +0000708MODULE_LICENSE("GPL");
709MODULE_DESCRIPTION("AU1200 IDE driver");
710
711module_init(au_ide_init);
712module_exit(au_ide_exit);