blob: 3485a310c95b6f07c1a58c3b53047e8abfc0f098 [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>
Pete Popov26a940e2005-09-15 08:03:12 +000035#include <linux/init.h>
36#include <linux/ide.h>
Sergei Shtylyovfabd3a22008-04-17 01:14:33 +020037#include <linux/scatterlist.h>
Pete Popov26a940e2005-09-15 08:03:12 +000038
Pete Popov26a940e2005-09-15 08:03:12 +000039#include <asm/mach-au1x00/au1xxx.h>
40#include <asm/mach-au1x00/au1xxx_dbdma.h>
Pete Popov26a940e2005-09-15 08:03:12 +000041#include <asm/mach-au1x00/au1xxx_ide.h>
42
43#define DRV_NAME "au1200-ide"
Jordan Crouse8f29e652005-12-15 02:17:46 +010044#define DRV_AUTHOR "Enrico Walther <enrico.walther@amd.com> / Pete Popov <ppopov@embeddedalley.com>"
45
46/* enable the burstmode in the dbdma */
47#define IDE_AU1XXX_BURSTMODE 1
Pete Popov26a940e2005-09-15 08:03:12 +000048
49static _auide_hwif auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +000050
Sergei Shtylyov09a77442008-04-17 01:14:33 +020051static int auide_ddma_init(_auide_hwif *auide);
52
Jordan Crouse8f29e652005-12-15 02:17:46 +010053#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
Pete Popov26a940e2005-09-15 08:03:12 +000054
55void auide_insw(unsigned long port, void *addr, u32 count)
56{
Jordan Crouse8f29e652005-12-15 02:17:46 +010057 _auide_hwif *ahwif = &auide_hwif;
58 chan_tab_t *ctp;
59 au1x_ddma_desc_t *dp;
Pete Popov26a940e2005-09-15 08:03:12 +000060
Jordan Crouse8f29e652005-12-15 02:17:46 +010061 if(!put_dest_flags(ahwif->rx_chan, (void*)addr, count << 1,
62 DDMA_FLAGS_NOIE)) {
Harvey Harrisoneb639632008-04-26 22:25:20 +020063 printk(KERN_ERR "%s failed %d\n", __func__, __LINE__);
Jordan Crouse8f29e652005-12-15 02:17:46 +010064 return;
65 }
66 ctp = *((chan_tab_t **)ahwif->rx_chan);
67 dp = ctp->cur_ptr;
68 while (dp->dscr_cmd0 & DSCR_CMD0_V)
69 ;
70 ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
Pete Popov26a940e2005-09-15 08:03:12 +000071}
72
73void auide_outsw(unsigned long port, void *addr, u32 count)
74{
Jordan Crouse8f29e652005-12-15 02:17:46 +010075 _auide_hwif *ahwif = &auide_hwif;
76 chan_tab_t *ctp;
77 au1x_ddma_desc_t *dp;
Pete Popov26a940e2005-09-15 08:03:12 +000078
Jordan Crouse8f29e652005-12-15 02:17:46 +010079 if(!put_source_flags(ahwif->tx_chan, (void*)addr,
80 count << 1, DDMA_FLAGS_NOIE)) {
Harvey Harrisoneb639632008-04-26 22:25:20 +020081 printk(KERN_ERR "%s failed %d\n", __func__, __LINE__);
Jordan Crouse8f29e652005-12-15 02:17:46 +010082 return;
83 }
84 ctp = *((chan_tab_t **)ahwif->tx_chan);
85 dp = ctp->cur_ptr;
86 while (dp->dscr_cmd0 & DSCR_CMD0_V)
87 ;
88 ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
89}
90
Pete Popov26a940e2005-09-15 08:03:12 +000091#endif
Pete Popov26a940e2005-09-15 08:03:12 +000092
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +020093static void au1xxx_set_pio_mode(ide_drive_t *drive, const u8 pio)
Pete Popov26a940e2005-09-15 08:03:12 +000094{
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020095 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +000096
Jordan Crouse8f29e652005-12-15 02:17:46 +010097 /* set pio mode! */
98 switch(pio) {
99 case 0:
100 mem_sttime = SBC_IDE_TIMING(PIO0);
Pete Popov26a940e2005-09-15 08:03:12 +0000101
Jordan Crouse8f29e652005-12-15 02:17:46 +0100102 /* set configuration for RCS2# */
103 mem_stcfg |= TS_MASK;
104 mem_stcfg &= ~TCSOE_MASK;
105 mem_stcfg &= ~TOECS_MASK;
106 mem_stcfg |= SBC_IDE_PIO0_TCSOE | SBC_IDE_PIO0_TOECS;
107 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000108
Jordan Crouse8f29e652005-12-15 02:17:46 +0100109 case 1:
110 mem_sttime = SBC_IDE_TIMING(PIO1);
Pete Popov26a940e2005-09-15 08:03:12 +0000111
Jordan Crouse8f29e652005-12-15 02:17:46 +0100112 /* set configuration for RCS2# */
113 mem_stcfg |= TS_MASK;
114 mem_stcfg &= ~TCSOE_MASK;
115 mem_stcfg &= ~TOECS_MASK;
116 mem_stcfg |= SBC_IDE_PIO1_TCSOE | SBC_IDE_PIO1_TOECS;
117 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000118
Jordan Crouse8f29e652005-12-15 02:17:46 +0100119 case 2:
120 mem_sttime = SBC_IDE_TIMING(PIO2);
Pete Popov26a940e2005-09-15 08:03:12 +0000121
Jordan Crouse8f29e652005-12-15 02:17:46 +0100122 /* set configuration for RCS2# */
123 mem_stcfg &= ~TS_MASK;
124 mem_stcfg &= ~TCSOE_MASK;
125 mem_stcfg &= ~TOECS_MASK;
126 mem_stcfg |= SBC_IDE_PIO2_TCSOE | SBC_IDE_PIO2_TOECS;
127 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000128
Jordan Crouse8f29e652005-12-15 02:17:46 +0100129 case 3:
130 mem_sttime = SBC_IDE_TIMING(PIO3);
Pete Popov26a940e2005-09-15 08:03:12 +0000131
Jordan Crouse8f29e652005-12-15 02:17:46 +0100132 /* set configuration for RCS2# */
133 mem_stcfg &= ~TS_MASK;
134 mem_stcfg &= ~TCSOE_MASK;
135 mem_stcfg &= ~TOECS_MASK;
136 mem_stcfg |= SBC_IDE_PIO3_TCSOE | SBC_IDE_PIO3_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000137
Jordan Crouse8f29e652005-12-15 02:17:46 +0100138 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000139
Jordan Crouse8f29e652005-12-15 02:17:46 +0100140 case 4:
141 mem_sttime = SBC_IDE_TIMING(PIO4);
Pete Popov26a940e2005-09-15 08:03:12 +0000142
Jordan Crouse8f29e652005-12-15 02:17:46 +0100143 /* set configuration for RCS2# */
144 mem_stcfg &= ~TS_MASK;
145 mem_stcfg &= ~TCSOE_MASK;
146 mem_stcfg &= ~TOECS_MASK;
147 mem_stcfg |= SBC_IDE_PIO4_TCSOE | SBC_IDE_PIO4_TOECS;
148 break;
149 }
150
151 au_writel(mem_sttime,MEM_STTIME2);
152 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000153}
154
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200155static void auide_set_dma_mode(ide_drive_t *drive, const u8 speed)
Pete Popov26a940e2005-09-15 08:03:12 +0000156{
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200157 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000158
Jordan Crouse8f29e652005-12-15 02:17:46 +0100159 switch(speed) {
Pete Popov26a940e2005-09-15 08:03:12 +0000160#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Jordan Crouse8f29e652005-12-15 02:17:46 +0100161 case XFER_MW_DMA_2:
162 mem_sttime = SBC_IDE_TIMING(MDMA2);
Pete Popov26a940e2005-09-15 08:03:12 +0000163
Jordan Crouse8f29e652005-12-15 02:17:46 +0100164 /* set configuration for RCS2# */
165 mem_stcfg &= ~TS_MASK;
166 mem_stcfg &= ~TCSOE_MASK;
167 mem_stcfg &= ~TOECS_MASK;
168 mem_stcfg |= SBC_IDE_MDMA2_TCSOE | SBC_IDE_MDMA2_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000169
Jordan Crouse8f29e652005-12-15 02:17:46 +0100170 break;
171 case XFER_MW_DMA_1:
172 mem_sttime = SBC_IDE_TIMING(MDMA1);
Pete Popov26a940e2005-09-15 08:03:12 +0000173
Jordan Crouse8f29e652005-12-15 02:17:46 +0100174 /* set configuration for RCS2# */
175 mem_stcfg &= ~TS_MASK;
176 mem_stcfg &= ~TCSOE_MASK;
177 mem_stcfg &= ~TOECS_MASK;
178 mem_stcfg |= SBC_IDE_MDMA1_TCSOE | SBC_IDE_MDMA1_TOECS;
179
Jordan Crouse8f29e652005-12-15 02:17:46 +0100180 break;
181 case XFER_MW_DMA_0:
182 mem_sttime = SBC_IDE_TIMING(MDMA0);
183
184 /* set configuration for RCS2# */
185 mem_stcfg |= TS_MASK;
186 mem_stcfg &= ~TCSOE_MASK;
187 mem_stcfg &= ~TOECS_MASK;
188 mem_stcfg |= SBC_IDE_MDMA0_TCSOE | SBC_IDE_MDMA0_TOECS;
189
Jordan Crouse8f29e652005-12-15 02:17:46 +0100190 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000191#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100192 }
Bartlomiej Zolnierkiewicza523a172007-02-17 02:40:23 +0100193
Jordan Crouse8f29e652005-12-15 02:17:46 +0100194 au_writel(mem_sttime,MEM_STTIME2);
195 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000196}
197
198/*
199 * Multi-Word DMA + DbDMA functions
200 */
Pete Popov26a940e2005-09-15 08:03:12 +0000201
Jordan Crouse8f29e652005-12-15 02:17:46 +0100202#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Pete Popov26a940e2005-09-15 08:03:12 +0000203static int auide_build_dmatable(ide_drive_t *drive)
204{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100205 int i, iswrite, count = 0;
206 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000207
Jordan Crouse8f29e652005-12-15 02:17:46 +0100208 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000209
Jordan Crouse8f29e652005-12-15 02:17:46 +0100210 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
211 struct scatterlist *sg;
Pete Popov26a940e2005-09-15 08:03:12 +0000212
Jordan Crouse8f29e652005-12-15 02:17:46 +0100213 iswrite = (rq_data_dir(rq) == WRITE);
214 /* Save for interrupt context */
215 ahwif->drive = drive;
Pete Popov26a940e2005-09-15 08:03:12 +0000216
Bartlomiej Zolnierkiewicz062f9f02008-02-01 23:09:32 +0100217 hwif->sg_nents = i = ide_build_sglist(drive, rq);
Pete Popov26a940e2005-09-15 08:03:12 +0000218
Jordan Crouse8f29e652005-12-15 02:17:46 +0100219 if (!i)
220 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000221
Jordan Crouse8f29e652005-12-15 02:17:46 +0100222 /* fill the descriptors */
223 sg = hwif->sg_table;
224 while (i && sg_dma_len(sg)) {
225 u32 cur_addr;
226 u32 cur_len;
Pete Popov26a940e2005-09-15 08:03:12 +0000227
Jordan Crouse8f29e652005-12-15 02:17:46 +0100228 cur_addr = sg_dma_address(sg);
229 cur_len = sg_dma_len(sg);
Pete Popov26a940e2005-09-15 08:03:12 +0000230
Jordan Crouse8f29e652005-12-15 02:17:46 +0100231 while (cur_len) {
232 u32 flags = DDMA_FLAGS_NOIE;
233 unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;
Pete Popov26a940e2005-09-15 08:03:12 +0000234
Jordan Crouse8f29e652005-12-15 02:17:46 +0100235 if (++count >= PRD_ENTRIES) {
236 printk(KERN_WARNING "%s: DMA table too small\n",
237 drive->name);
238 goto use_pio_instead;
239 }
Pete Popov26a940e2005-09-15 08:03:12 +0000240
Jordan Crouse8f29e652005-12-15 02:17:46 +0100241 /* Lets enable intr for the last descriptor only */
242 if (1==i)
243 flags = DDMA_FLAGS_IE;
244 else
245 flags = DDMA_FLAGS_NOIE;
Pete Popov26a940e2005-09-15 08:03:12 +0000246
Jordan Crouse8f29e652005-12-15 02:17:46 +0100247 if (iswrite) {
248 if(!put_source_flags(ahwif->tx_chan,
Jens Axboe45711f12007-10-22 21:19:53 +0200249 (void*) sg_virt(sg),
Jordan Crouse8f29e652005-12-15 02:17:46 +0100250 tc, flags)) {
251 printk(KERN_ERR "%s failed %d\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200252 __func__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000253 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100254 } else
Pete Popov26a940e2005-09-15 08:03:12 +0000255 {
Jordan Crouse8f29e652005-12-15 02:17:46 +0100256 if(!put_dest_flags(ahwif->rx_chan,
Jens Axboe45711f12007-10-22 21:19:53 +0200257 (void*) sg_virt(sg),
Jordan Crouse8f29e652005-12-15 02:17:46 +0100258 tc, flags)) {
259 printk(KERN_ERR "%s failed %d\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200260 __func__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000261 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100262 }
Pete Popov26a940e2005-09-15 08:03:12 +0000263
Jordan Crouse8f29e652005-12-15 02:17:46 +0100264 cur_addr += tc;
265 cur_len -= tc;
266 }
Jens Axboe55c16a72007-07-25 08:13:56 +0200267 sg = sg_next(sg);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100268 i--;
269 }
Pete Popov26a940e2005-09-15 08:03:12 +0000270
Jordan Crouse8f29e652005-12-15 02:17:46 +0100271 if (count)
272 return 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000273
Jordan Crouse8f29e652005-12-15 02:17:46 +0100274 use_pio_instead:
Bartlomiej Zolnierkiewicz062f9f02008-02-01 23:09:32 +0100275 ide_destroy_dmatable(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000276
Jordan Crouse8f29e652005-12-15 02:17:46 +0100277 return 0; /* revert to PIO for this request */
Pete Popov26a940e2005-09-15 08:03:12 +0000278}
279
280static int auide_dma_end(ide_drive_t *drive)
281{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100282 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000283
Jordan Crouse8f29e652005-12-15 02:17:46 +0100284 if (hwif->sg_nents) {
Bartlomiej Zolnierkiewicz062f9f02008-02-01 23:09:32 +0100285 ide_destroy_dmatable(drive);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100286 hwif->sg_nents = 0;
287 }
Pete Popov26a940e2005-09-15 08:03:12 +0000288
Jordan Crouse8f29e652005-12-15 02:17:46 +0100289 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000290}
291
292static void auide_dma_start(ide_drive_t *drive )
293{
Pete Popov26a940e2005-09-15 08:03:12 +0000294}
295
Pete Popov26a940e2005-09-15 08:03:12 +0000296
297static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command)
298{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100299 /* issue cmd to drive */
300 ide_execute_command(drive, command, &ide_dma_intr,
301 (2*WAIT_CMD), NULL);
Pete Popov26a940e2005-09-15 08:03:12 +0000302}
303
304static int auide_dma_setup(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100305{
306 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000307
Jordan Crouse8f29e652005-12-15 02:17:46 +0100308 if (!auide_build_dmatable(drive)) {
309 ide_map_sg(drive, rq);
310 return 1;
311 }
Pete Popov26a940e2005-09-15 08:03:12 +0000312
Jordan Crouse8f29e652005-12-15 02:17:46 +0100313 drive->waiting_for_dma = 1;
314 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000315}
316
Pete Popov26a940e2005-09-15 08:03:12 +0000317static int auide_dma_test_irq(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100318{
319 if (drive->waiting_for_dma == 0)
320 printk(KERN_WARNING "%s: ide_dma_test_irq \
Pete Popov26a940e2005-09-15 08:03:12 +0000321 called while not waiting\n", drive->name);
322
Jordan Crouse8f29e652005-12-15 02:17:46 +0100323 /* If dbdma didn't execute the STOP command yet, the
324 * active bit is still set
Pete Popov26a940e2005-09-15 08:03:12 +0000325 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100326 drive->waiting_for_dma++;
327 if (drive->waiting_for_dma >= DMA_WAIT_TIMEOUT) {
328 printk(KERN_WARNING "%s: timeout waiting for ddma to \
Pete Popov26a940e2005-09-15 08:03:12 +0000329 complete\n", drive->name);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100330 return 1;
331 }
332 udelay(10);
333 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000334}
335
Bartlomiej Zolnierkiewicz15ce9262008-01-26 20:13:03 +0100336static void auide_dma_host_set(ide_drive_t *drive, int on)
Pete Popov26a940e2005-09-15 08:03:12 +0000337{
Pete Popov26a940e2005-09-15 08:03:12 +0000338}
339
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200340static void auide_dma_lost_irq(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000341{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100342 printk(KERN_ERR "%s: IRQ lost\n", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000343}
344
Ralf Baechle53e62d32006-09-25 23:32:10 -0700345static void auide_ddma_tx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000346{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100347 _auide_hwif *ahwif = (_auide_hwif*)param;
348 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000349}
350
Ralf Baechle53e62d32006-09-25 23:32:10 -0700351static void auide_ddma_rx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000352{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100353 _auide_hwif *ahwif = (_auide_hwif*)param;
354 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000355}
356
Jordan Crouse8f29e652005-12-15 02:17:46 +0100357#endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
358
359static void auide_init_dbdma_dev(dbdev_tab_t *dev, u32 dev_id, u32 tsize, u32 devwidth, u32 flags)
360{
361 dev->dev_id = dev_id;
362 dev->dev_physaddr = (u32)AU1XXX_ATA_PHYS_ADDR;
363 dev->dev_intlevel = 0;
364 dev->dev_intpolarity = 0;
365 dev->dev_tsize = tsize;
366 dev->dev_devwidth = devwidth;
367 dev->dev_flags = flags;
368}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100369
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200370#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200371static void auide_dma_timeout(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000372{
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200373 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000374
Jordan Crouse8f29e652005-12-15 02:17:46 +0100375 printk(KERN_ERR "%s: DMA timeout occurred: ", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000376
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200377 if (auide_dma_test_irq(drive))
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200378 return;
Pete Popov26a940e2005-09-15 08:03:12 +0000379
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200380 auide_dma_end(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000381}
Pete Popov26a940e2005-09-15 08:03:12 +0000382
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +0200383static const struct ide_dma_ops au1xxx_dma_ops = {
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200384 .dma_host_set = auide_dma_host_set,
385 .dma_setup = auide_dma_setup,
386 .dma_exec_cmd = auide_dma_exec_cmd,
387 .dma_start = auide_dma_start,
388 .dma_end = auide_dma_end,
389 .dma_test_irq = auide_dma_test_irq,
390 .dma_lost_irq = auide_dma_lost_irq,
391 .dma_timeout = auide_dma_timeout,
392};
393
Bartlomiej Zolnierkiewicz85528652008-04-26 22:25:23 +0200394static int auide_ddma_init(ide_hwif_t *hwif, const struct ide_port_info *d)
395{
396 _auide_hwif *auide = (_auide_hwif *)hwif->hwif_data;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100397 dbdev_tab_t source_dev_tab, target_dev_tab;
398 u32 dev_id, tsize, devwidth, flags;
Pete Popov26a940e2005-09-15 08:03:12 +0000399
Jordan Crouse8f29e652005-12-15 02:17:46 +0100400 dev_id = AU1XXX_ATA_DDMA_REQ;
401
Bartlomiej Zolnierkiewiczf629b382008-04-26 22:25:22 +0200402 tsize = 8; /* 1 */
403 devwidth = 32; /* 16 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100404
405#ifdef IDE_AU1XXX_BURSTMODE
406 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
407#else
408 flags = DEV_FLAGS_SYNC;
409#endif
410
411 /* setup dev_tab for tx channel */
412 auide_init_dbdma_dev( &source_dev_tab,
413 dev_id,
414 tsize, devwidth, DEV_FLAGS_OUT | flags);
415 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
416
417 auide_init_dbdma_dev( &source_dev_tab,
418 dev_id,
419 tsize, devwidth, DEV_FLAGS_IN | flags);
420 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
421
422 /* We also need to add a target device for the DMA */
423 auide_init_dbdma_dev( &target_dev_tab,
424 (u32)DSCR_CMD0_ALWAYS,
425 tsize, devwidth, DEV_FLAGS_ANYUSE);
426 auide->target_dev_id = au1xxx_ddma_add_device(&target_dev_tab);
427
428 /* Get a channel for TX */
429 auide->tx_chan = au1xxx_dbdma_chan_alloc(auide->target_dev_id,
430 auide->tx_dev_id,
431 auide_ddma_tx_callback,
432 (void*)auide);
433
434 /* Get a channel for RX */
435 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
436 auide->target_dev_id,
437 auide_ddma_rx_callback,
438 (void*)auide);
439
440 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
441 NUM_DESCRIPTORS);
442 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
443 NUM_DESCRIPTORS);
444
Bartlomiej Zolnierkiewicz5df37c32008-02-01 23:09:31 +0100445 hwif->dmatable_cpu = dma_alloc_coherent(hwif->dev,
Jordan Crouse8f29e652005-12-15 02:17:46 +0100446 PRD_ENTRIES * PRD_BYTES, /* 1 Page */
447 &hwif->dmatable_dma, GFP_KERNEL);
448
449 au1xxx_dbdma_start( auide->tx_chan );
450 au1xxx_dbdma_start( auide->rx_chan );
451
452 return 0;
453}
454#else
Bartlomiej Zolnierkiewicz85528652008-04-26 22:25:23 +0200455static int auide_ddma_init(ide_hwif_t *hwif, const struct ide_port_info *d)
Pete Popov26a940e2005-09-15 08:03:12 +0000456{
Bartlomiej Zolnierkiewicz85528652008-04-26 22:25:23 +0200457 _auide_hwif *auide = (_auide_hwif *)hwif->hwif_data;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100458 dbdev_tab_t source_dev_tab;
459 int flags;
Pete Popov26a940e2005-09-15 08:03:12 +0000460
Jordan Crouse8f29e652005-12-15 02:17:46 +0100461#ifdef IDE_AU1XXX_BURSTMODE
462 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
Pete Popov26a940e2005-09-15 08:03:12 +0000463#else
Jordan Crouse8f29e652005-12-15 02:17:46 +0100464 flags = DEV_FLAGS_SYNC;
Pete Popov26a940e2005-09-15 08:03:12 +0000465#endif
466
Jordan Crouse8f29e652005-12-15 02:17:46 +0100467 /* setup dev_tab for tx channel */
468 auide_init_dbdma_dev( &source_dev_tab,
469 (u32)DSCR_CMD0_ALWAYS,
470 8, 32, DEV_FLAGS_OUT | flags);
471 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
Pete Popov26a940e2005-09-15 08:03:12 +0000472
Jordan Crouse8f29e652005-12-15 02:17:46 +0100473 auide_init_dbdma_dev( &source_dev_tab,
474 (u32)DSCR_CMD0_ALWAYS,
475 8, 32, DEV_FLAGS_IN | flags);
476 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
477
478 /* Get a channel for TX */
479 auide->tx_chan = au1xxx_dbdma_chan_alloc(DSCR_CMD0_ALWAYS,
480 auide->tx_dev_id,
481 NULL,
482 (void*)auide);
483
484 /* Get a channel for RX */
485 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
486 DSCR_CMD0_ALWAYS,
487 NULL,
488 (void*)auide);
489
490 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
491 NUM_DESCRIPTORS);
492 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
493 NUM_DESCRIPTORS);
494
495 au1xxx_dbdma_start( auide->tx_chan );
496 au1xxx_dbdma_start( auide->rx_chan );
497
498 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000499}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100500#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000501
502static void auide_setup_ports(hw_regs_t *hw, _auide_hwif *ahwif)
503{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100504 int i;
505 unsigned long *ata_regs = hw->io_ports;
Pete Popov26a940e2005-09-15 08:03:12 +0000506
Jordan Crouse8f29e652005-12-15 02:17:46 +0100507 /* FIXME? */
508 for (i = 0; i < IDE_CONTROL_OFFSET; i++) {
509 *ata_regs++ = ahwif->regbase + (i << AU1XXX_ATA_REG_OFFSET);
510 }
Pete Popov26a940e2005-09-15 08:03:12 +0000511
Jordan Crouse8f29e652005-12-15 02:17:46 +0100512 /* set the Alternative Status register */
513 *ata_regs = ahwif->regbase + (14 << AU1XXX_ATA_REG_OFFSET);
Pete Popov26a940e2005-09-15 08:03:12 +0000514}
515
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200516static const struct ide_port_ops au1xxx_port_ops = {
517 .set_pio_mode = au1xxx_set_pio_mode,
518 .set_dma_mode = auide_set_dma_mode,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200519};
520
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100521static const struct ide_port_info au1xxx_port_info = {
Bartlomiej Zolnierkiewicz85528652008-04-26 22:25:23 +0200522 .init_dma = auide_ddma_init,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200523 .port_ops = &au1xxx_port_ops,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200524#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
525 .dma_ops = &au1xxx_dma_ops,
526#endif
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100527 .host_flags = IDE_HFLAG_POST_SET_MODE |
Bartlomiej Zolnierkiewicz807b90d2008-02-02 19:56:40 +0100528 IDE_HFLAG_NO_IO_32BIT |
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100529 IDE_HFLAG_UNMASK_IRQS,
530 .pio_mask = ATA_PIO4,
531#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
532 .mwdma_mask = ATA_MWDMA2,
533#endif
534};
535
Pete Popov26a940e2005-09-15 08:03:12 +0000536static int au_ide_probe(struct device *dev)
537{
538 struct platform_device *pdev = to_platform_device(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100539 _auide_hwif *ahwif = &auide_hwif;
540 ide_hwif_t *hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000541 struct resource *res;
542 int ret = 0;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200543 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200544 hw_regs_t hw;
Pete Popov26a940e2005-09-15 08:03:12 +0000545
546#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100547 char *mode = "MWDMA2";
Pete Popov26a940e2005-09-15 08:03:12 +0000548#elif defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100549 char *mode = "PIO+DDMA(offload)";
Pete Popov26a940e2005-09-15 08:03:12 +0000550#endif
551
Jordan Crouse8f29e652005-12-15 02:17:46 +0100552 memset(&auide_hwif, 0, sizeof(_auide_hwif));
Pete Popov26a940e2005-09-15 08:03:12 +0000553 ahwif->irq = platform_get_irq(pdev, 0);
554
555 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
556
557 if (res == NULL) {
558 pr_debug("%s %d: no base address\n", DRV_NAME, pdev->id);
559 ret = -ENODEV;
560 goto out;
561 }
David Vrabel48944732006-01-19 17:56:29 +0000562 if (ahwif->irq < 0) {
563 pr_debug("%s %d: no IRQ\n", DRV_NAME, pdev->id);
564 ret = -ENODEV;
565 goto out;
566 }
Pete Popov26a940e2005-09-15 08:03:12 +0000567
Sergei Shtylyovb4dcaea2008-04-17 01:14:33 +0200568 if (!request_mem_region(res->start, res->end - res->start + 1,
569 pdev->name)) {
Pete Popov26a940e2005-09-15 08:03:12 +0000570 pr_debug("%s: request_mem_region failed\n", DRV_NAME);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100571 ret = -EBUSY;
Pete Popov26a940e2005-09-15 08:03:12 +0000572 goto out;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100573 }
Pete Popov26a940e2005-09-15 08:03:12 +0000574
Sergei Shtylyovb4dcaea2008-04-17 01:14:33 +0200575 ahwif->regbase = (u32)ioremap(res->start, res->end - res->start + 1);
Pete Popov26a940e2005-09-15 08:03:12 +0000576 if (ahwif->regbase == 0) {
577 ret = -ENOMEM;
578 goto out;
579 }
580
Bartlomiej Zolnierkiewicz4f7bada2008-04-26 17:36:33 +0200581 hwif = ide_find_port();
582 if (hwif == NULL) {
583 ret = -ENOENT;
584 goto out;
585 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100586
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200587 memset(&hw, 0, sizeof(hw));
588 auide_setup_ports(&hw, ahwif);
Bartlomiej Zolnierkiewiczaa79a2f2008-01-26 20:13:08 +0100589 hw.irq = ahwif->irq;
Bartlomiej Zolnierkiewiczed1f7882008-02-01 23:09:32 +0100590 hw.dev = dev;
Bartlomiej Zolnierkiewiczaa79a2f2008-01-26 20:13:08 +0100591 hw.chipset = ide_au1xxx;
592
593 ide_init_port_hw(hwif, &hw);
Pete Popov26a940e2005-09-15 08:03:12 +0000594
Bartlomiej Zolnierkiewicz5df37c32008-02-01 23:09:31 +0100595 hwif->dev = dev;
596
Jordan Crouse8f29e652005-12-15 02:17:46 +0100597 /* If the user has selected DDMA assisted copies,
598 then set up a few local I/O function entry points
599 */
600
601#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
602 hwif->INSW = auide_insw;
603 hwif->OUTSW = auide_outsw;
604#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100605 hwif->select_data = 0; /* no chipset-specific code */
606 hwif->config_data = 0; /* no chipset-specific code */
Pete Popov26a940e2005-09-15 08:03:12 +0000607
Jordan Crouse8f29e652005-12-15 02:17:46 +0100608 auide_hwif.hwif = hwif;
609 hwif->hwif_data = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000610
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200611 idx[0] = hwif->index;
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200612
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100613 ide_device_add(idx, &au1xxx_port_info);
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200614
Pete Popov26a940e2005-09-15 08:03:12 +0000615 dev_set_drvdata(dev, hwif);
616
Jordan Crouse8f29e652005-12-15 02:17:46 +0100617 printk(KERN_INFO "Au1xxx IDE(builtin) configured for %s\n", mode );
Pete Popov26a940e2005-09-15 08:03:12 +0000618
Jordan Crouse8f29e652005-12-15 02:17:46 +0100619 out:
620 return ret;
Pete Popov26a940e2005-09-15 08:03:12 +0000621}
622
623static int au_ide_remove(struct device *dev)
624{
625 struct platform_device *pdev = to_platform_device(dev);
626 struct resource *res;
627 ide_hwif_t *hwif = dev_get_drvdata(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100628 _auide_hwif *ahwif = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000629
Bartlomiej Zolnierkiewicz93de00f2008-04-18 00:46:24 +0200630 ide_unregister(hwif->index);
Pete Popov26a940e2005-09-15 08:03:12 +0000631
632 iounmap((void *)ahwif->regbase);
633
634 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Sergei Shtylyovb4dcaea2008-04-17 01:14:33 +0200635 release_mem_region(res->start, res->end - res->start + 1);
Pete Popov26a940e2005-09-15 08:03:12 +0000636
637 return 0;
638}
639
640static struct device_driver au1200_ide_driver = {
641 .name = "au1200-ide",
642 .bus = &platform_bus_type,
643 .probe = au_ide_probe,
644 .remove = au_ide_remove,
645};
646
647static int __init au_ide_init(void)
648{
649 return driver_register(&au1200_ide_driver);
650}
651
Jordan Crouse8f29e652005-12-15 02:17:46 +0100652static void __exit au_ide_exit(void)
Pete Popov26a940e2005-09-15 08:03:12 +0000653{
654 driver_unregister(&au1200_ide_driver);
655}
656
Pete Popov26a940e2005-09-15 08:03:12 +0000657MODULE_LICENSE("GPL");
658MODULE_DESCRIPTION("AU1200 IDE driver");
659
660module_init(au_ide_init);
661module_exit(au_ide_exit);