blob: 51dddc0f154ef7df310194b0966278d350003efe [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;
Jordan Crouse8f29e652005-12-15 02:17:46 +010050static int dbdma_init_done;
Pete Popov26a940e2005-09-15 08:03:12 +000051
Sergei Shtylyov09a77442008-04-17 01:14:33 +020052static int auide_ddma_init(_auide_hwif *auide);
53
Jordan Crouse8f29e652005-12-15 02:17:46 +010054#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
Pete Popov26a940e2005-09-15 08:03:12 +000055
56void auide_insw(unsigned long port, void *addr, u32 count)
57{
Jordan Crouse8f29e652005-12-15 02:17:46 +010058 _auide_hwif *ahwif = &auide_hwif;
59 chan_tab_t *ctp;
60 au1x_ddma_desc_t *dp;
Pete Popov26a940e2005-09-15 08:03:12 +000061
Jordan Crouse8f29e652005-12-15 02:17:46 +010062 if(!put_dest_flags(ahwif->rx_chan, (void*)addr, count << 1,
63 DDMA_FLAGS_NOIE)) {
64 printk(KERN_ERR "%s failed %d\n", __FUNCTION__, __LINE__);
65 return;
66 }
67 ctp = *((chan_tab_t **)ahwif->rx_chan);
68 dp = ctp->cur_ptr;
69 while (dp->dscr_cmd0 & DSCR_CMD0_V)
70 ;
71 ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
Pete Popov26a940e2005-09-15 08:03:12 +000072}
73
74void auide_outsw(unsigned long port, void *addr, u32 count)
75{
Jordan Crouse8f29e652005-12-15 02:17:46 +010076 _auide_hwif *ahwif = &auide_hwif;
77 chan_tab_t *ctp;
78 au1x_ddma_desc_t *dp;
Pete Popov26a940e2005-09-15 08:03:12 +000079
Jordan Crouse8f29e652005-12-15 02:17:46 +010080 if(!put_source_flags(ahwif->tx_chan, (void*)addr,
81 count << 1, DDMA_FLAGS_NOIE)) {
82 printk(KERN_ERR "%s failed %d\n", __FUNCTION__, __LINE__);
83 return;
84 }
85 ctp = *((chan_tab_t **)ahwif->tx_chan);
86 dp = ctp->cur_ptr;
87 while (dp->dscr_cmd0 & DSCR_CMD0_V)
88 ;
89 ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
90}
91
Pete Popov26a940e2005-09-15 08:03:12 +000092#endif
Pete Popov26a940e2005-09-15 08:03:12 +000093
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +020094static void au1xxx_set_pio_mode(ide_drive_t *drive, const u8 pio)
Pete Popov26a940e2005-09-15 08:03:12 +000095{
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020096 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +000097
Jordan Crouse8f29e652005-12-15 02:17:46 +010098 /* set pio mode! */
99 switch(pio) {
100 case 0:
101 mem_sttime = SBC_IDE_TIMING(PIO0);
Pete Popov26a940e2005-09-15 08:03:12 +0000102
Jordan Crouse8f29e652005-12-15 02:17:46 +0100103 /* set configuration for RCS2# */
104 mem_stcfg |= TS_MASK;
105 mem_stcfg &= ~TCSOE_MASK;
106 mem_stcfg &= ~TOECS_MASK;
107 mem_stcfg |= SBC_IDE_PIO0_TCSOE | SBC_IDE_PIO0_TOECS;
108 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000109
Jordan Crouse8f29e652005-12-15 02:17:46 +0100110 case 1:
111 mem_sttime = SBC_IDE_TIMING(PIO1);
Pete Popov26a940e2005-09-15 08:03:12 +0000112
Jordan Crouse8f29e652005-12-15 02:17:46 +0100113 /* set configuration for RCS2# */
114 mem_stcfg |= TS_MASK;
115 mem_stcfg &= ~TCSOE_MASK;
116 mem_stcfg &= ~TOECS_MASK;
117 mem_stcfg |= SBC_IDE_PIO1_TCSOE | SBC_IDE_PIO1_TOECS;
118 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000119
Jordan Crouse8f29e652005-12-15 02:17:46 +0100120 case 2:
121 mem_sttime = SBC_IDE_TIMING(PIO2);
Pete Popov26a940e2005-09-15 08:03:12 +0000122
Jordan Crouse8f29e652005-12-15 02:17:46 +0100123 /* set configuration for RCS2# */
124 mem_stcfg &= ~TS_MASK;
125 mem_stcfg &= ~TCSOE_MASK;
126 mem_stcfg &= ~TOECS_MASK;
127 mem_stcfg |= SBC_IDE_PIO2_TCSOE | SBC_IDE_PIO2_TOECS;
128 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000129
Jordan Crouse8f29e652005-12-15 02:17:46 +0100130 case 3:
131 mem_sttime = SBC_IDE_TIMING(PIO3);
Pete Popov26a940e2005-09-15 08:03:12 +0000132
Jordan Crouse8f29e652005-12-15 02:17:46 +0100133 /* set configuration for RCS2# */
134 mem_stcfg &= ~TS_MASK;
135 mem_stcfg &= ~TCSOE_MASK;
136 mem_stcfg &= ~TOECS_MASK;
137 mem_stcfg |= SBC_IDE_PIO3_TCSOE | SBC_IDE_PIO3_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000138
Jordan Crouse8f29e652005-12-15 02:17:46 +0100139 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000140
Jordan Crouse8f29e652005-12-15 02:17:46 +0100141 case 4:
142 mem_sttime = SBC_IDE_TIMING(PIO4);
Pete Popov26a940e2005-09-15 08:03:12 +0000143
Jordan Crouse8f29e652005-12-15 02:17:46 +0100144 /* set configuration for RCS2# */
145 mem_stcfg &= ~TS_MASK;
146 mem_stcfg &= ~TCSOE_MASK;
147 mem_stcfg &= ~TOECS_MASK;
148 mem_stcfg |= SBC_IDE_PIO4_TCSOE | SBC_IDE_PIO4_TOECS;
149 break;
150 }
151
152 au_writel(mem_sttime,MEM_STTIME2);
153 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000154}
155
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200156static void auide_set_dma_mode(ide_drive_t *drive, const u8 speed)
Pete Popov26a940e2005-09-15 08:03:12 +0000157{
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200158 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000159
Jordan Crouse8f29e652005-12-15 02:17:46 +0100160 switch(speed) {
Pete Popov26a940e2005-09-15 08:03:12 +0000161#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Jordan Crouse8f29e652005-12-15 02:17:46 +0100162 case XFER_MW_DMA_2:
163 mem_sttime = SBC_IDE_TIMING(MDMA2);
Pete Popov26a940e2005-09-15 08:03:12 +0000164
Jordan Crouse8f29e652005-12-15 02:17:46 +0100165 /* set configuration for RCS2# */
166 mem_stcfg &= ~TS_MASK;
167 mem_stcfg &= ~TCSOE_MASK;
168 mem_stcfg &= ~TOECS_MASK;
169 mem_stcfg |= SBC_IDE_MDMA2_TCSOE | SBC_IDE_MDMA2_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000170
Jordan Crouse8f29e652005-12-15 02:17:46 +0100171 break;
172 case XFER_MW_DMA_1:
173 mem_sttime = SBC_IDE_TIMING(MDMA1);
Pete Popov26a940e2005-09-15 08:03:12 +0000174
Jordan Crouse8f29e652005-12-15 02:17:46 +0100175 /* set configuration for RCS2# */
176 mem_stcfg &= ~TS_MASK;
177 mem_stcfg &= ~TCSOE_MASK;
178 mem_stcfg &= ~TOECS_MASK;
179 mem_stcfg |= SBC_IDE_MDMA1_TCSOE | SBC_IDE_MDMA1_TOECS;
180
Jordan Crouse8f29e652005-12-15 02:17:46 +0100181 break;
182 case XFER_MW_DMA_0:
183 mem_sttime = SBC_IDE_TIMING(MDMA0);
184
185 /* set configuration for RCS2# */
186 mem_stcfg |= TS_MASK;
187 mem_stcfg &= ~TCSOE_MASK;
188 mem_stcfg &= ~TOECS_MASK;
189 mem_stcfg |= SBC_IDE_MDMA0_TCSOE | SBC_IDE_MDMA0_TOECS;
190
Jordan Crouse8f29e652005-12-15 02:17:46 +0100191 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000192#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100193 }
Bartlomiej Zolnierkiewicza523a172007-02-17 02:40:23 +0100194
Jordan Crouse8f29e652005-12-15 02:17:46 +0100195 au_writel(mem_sttime,MEM_STTIME2);
196 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000197}
198
199/*
200 * Multi-Word DMA + DbDMA functions
201 */
Pete Popov26a940e2005-09-15 08:03:12 +0000202
Jordan Crouse8f29e652005-12-15 02:17:46 +0100203#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Pete Popov26a940e2005-09-15 08:03:12 +0000204static int auide_build_dmatable(ide_drive_t *drive)
205{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100206 int i, iswrite, count = 0;
207 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000208
Jordan Crouse8f29e652005-12-15 02:17:46 +0100209 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000210
Jordan Crouse8f29e652005-12-15 02:17:46 +0100211 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
212 struct scatterlist *sg;
Pete Popov26a940e2005-09-15 08:03:12 +0000213
Jordan Crouse8f29e652005-12-15 02:17:46 +0100214 iswrite = (rq_data_dir(rq) == WRITE);
215 /* Save for interrupt context */
216 ahwif->drive = drive;
Pete Popov26a940e2005-09-15 08:03:12 +0000217
Bartlomiej Zolnierkiewicz062f9f02008-02-01 23:09:32 +0100218 hwif->sg_nents = i = ide_build_sglist(drive, rq);
Pete Popov26a940e2005-09-15 08:03:12 +0000219
Jordan Crouse8f29e652005-12-15 02:17:46 +0100220 if (!i)
221 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000222
Jordan Crouse8f29e652005-12-15 02:17:46 +0100223 /* fill the descriptors */
224 sg = hwif->sg_table;
225 while (i && sg_dma_len(sg)) {
226 u32 cur_addr;
227 u32 cur_len;
Pete Popov26a940e2005-09-15 08:03:12 +0000228
Jordan Crouse8f29e652005-12-15 02:17:46 +0100229 cur_addr = sg_dma_address(sg);
230 cur_len = sg_dma_len(sg);
Pete Popov26a940e2005-09-15 08:03:12 +0000231
Jordan Crouse8f29e652005-12-15 02:17:46 +0100232 while (cur_len) {
233 u32 flags = DDMA_FLAGS_NOIE;
234 unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;
Pete Popov26a940e2005-09-15 08:03:12 +0000235
Jordan Crouse8f29e652005-12-15 02:17:46 +0100236 if (++count >= PRD_ENTRIES) {
237 printk(KERN_WARNING "%s: DMA table too small\n",
238 drive->name);
239 goto use_pio_instead;
240 }
Pete Popov26a940e2005-09-15 08:03:12 +0000241
Jordan Crouse8f29e652005-12-15 02:17:46 +0100242 /* Lets enable intr for the last descriptor only */
243 if (1==i)
244 flags = DDMA_FLAGS_IE;
245 else
246 flags = DDMA_FLAGS_NOIE;
Pete Popov26a940e2005-09-15 08:03:12 +0000247
Jordan Crouse8f29e652005-12-15 02:17:46 +0100248 if (iswrite) {
249 if(!put_source_flags(ahwif->tx_chan,
Jens Axboe45711f12007-10-22 21:19:53 +0200250 (void*) sg_virt(sg),
Jordan Crouse8f29e652005-12-15 02:17:46 +0100251 tc, flags)) {
252 printk(KERN_ERR "%s failed %d\n",
253 __FUNCTION__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000254 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100255 } else
Pete Popov26a940e2005-09-15 08:03:12 +0000256 {
Jordan Crouse8f29e652005-12-15 02:17:46 +0100257 if(!put_dest_flags(ahwif->rx_chan,
Jens Axboe45711f12007-10-22 21:19:53 +0200258 (void*) sg_virt(sg),
Jordan Crouse8f29e652005-12-15 02:17:46 +0100259 tc, flags)) {
260 printk(KERN_ERR "%s failed %d\n",
261 __FUNCTION__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000262 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100263 }
Pete Popov26a940e2005-09-15 08:03:12 +0000264
Jordan Crouse8f29e652005-12-15 02:17:46 +0100265 cur_addr += tc;
266 cur_len -= tc;
267 }
Jens Axboe55c16a72007-07-25 08:13:56 +0200268 sg = sg_next(sg);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100269 i--;
270 }
Pete Popov26a940e2005-09-15 08:03:12 +0000271
Jordan Crouse8f29e652005-12-15 02:17:46 +0100272 if (count)
273 return 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000274
Jordan Crouse8f29e652005-12-15 02:17:46 +0100275 use_pio_instead:
Bartlomiej Zolnierkiewicz062f9f02008-02-01 23:09:32 +0100276 ide_destroy_dmatable(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000277
Jordan Crouse8f29e652005-12-15 02:17:46 +0100278 return 0; /* revert to PIO for this request */
Pete Popov26a940e2005-09-15 08:03:12 +0000279}
280
281static int auide_dma_end(ide_drive_t *drive)
282{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100283 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000284
Jordan Crouse8f29e652005-12-15 02:17:46 +0100285 if (hwif->sg_nents) {
Bartlomiej Zolnierkiewicz062f9f02008-02-01 23:09:32 +0100286 ide_destroy_dmatable(drive);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100287 hwif->sg_nents = 0;
288 }
Pete Popov26a940e2005-09-15 08:03:12 +0000289
Jordan Crouse8f29e652005-12-15 02:17:46 +0100290 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000291}
292
293static void auide_dma_start(ide_drive_t *drive )
294{
Pete Popov26a940e2005-09-15 08:03:12 +0000295}
296
Pete Popov26a940e2005-09-15 08:03:12 +0000297
298static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command)
299{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100300 /* issue cmd to drive */
301 ide_execute_command(drive, command, &ide_dma_intr,
302 (2*WAIT_CMD), NULL);
Pete Popov26a940e2005-09-15 08:03:12 +0000303}
304
305static int auide_dma_setup(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100306{
307 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000308
Jordan Crouse8f29e652005-12-15 02:17:46 +0100309 if (!auide_build_dmatable(drive)) {
310 ide_map_sg(drive, rq);
311 return 1;
312 }
Pete Popov26a940e2005-09-15 08:03:12 +0000313
Jordan Crouse8f29e652005-12-15 02:17:46 +0100314 drive->waiting_for_dma = 1;
315 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000316}
317
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200318static u8 auide_mdma_filter(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000319{
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200320 /*
321 * FIXME: ->white_list and ->black_list are based on completely bogus
322 * ->ide_dma_check implementation which didn't set neither the host
323 * controller timings nor the device for the desired transfer mode.
324 *
325 * They should be either removed or 0x00 MWDMA mask should be
326 * returned for devices on the ->black_list.
327 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100328
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200329 if (dbdma_init_done == 0) {
Jordan Crouse8f29e652005-12-15 02:17:46 +0100330 auide_hwif.white_list = ide_in_drive_list(drive->id,
331 dma_white_list);
332 auide_hwif.black_list = ide_in_drive_list(drive->id,
333 dma_black_list);
334 auide_hwif.drive = drive;
335 auide_ddma_init(&auide_hwif);
336 dbdma_init_done = 1;
337 }
Pete Popov26a940e2005-09-15 08:03:12 +0000338
Jordan Crouse8f29e652005-12-15 02:17:46 +0100339 /* Is the drive in our DMA black list? */
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200340 if (auide_hwif.black_list)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100341 printk(KERN_WARNING "%s: Disabling DMA for %s (blacklisted)\n",
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200342 drive->name, drive->id->model);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100343
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200344 return drive->hwif->mwdma_mask;
345}
346
Pete Popov26a940e2005-09-15 08:03:12 +0000347static int auide_dma_test_irq(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100348{
349 if (drive->waiting_for_dma == 0)
350 printk(KERN_WARNING "%s: ide_dma_test_irq \
Pete Popov26a940e2005-09-15 08:03:12 +0000351 called while not waiting\n", drive->name);
352
Jordan Crouse8f29e652005-12-15 02:17:46 +0100353 /* If dbdma didn't execute the STOP command yet, the
354 * active bit is still set
Pete Popov26a940e2005-09-15 08:03:12 +0000355 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100356 drive->waiting_for_dma++;
357 if (drive->waiting_for_dma >= DMA_WAIT_TIMEOUT) {
358 printk(KERN_WARNING "%s: timeout waiting for ddma to \
Pete Popov26a940e2005-09-15 08:03:12 +0000359 complete\n", drive->name);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100360 return 1;
361 }
362 udelay(10);
363 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000364}
365
Bartlomiej Zolnierkiewicz15ce9262008-01-26 20:13:03 +0100366static void auide_dma_host_set(ide_drive_t *drive, int on)
Pete Popov26a940e2005-09-15 08:03:12 +0000367{
Pete Popov26a940e2005-09-15 08:03:12 +0000368}
369
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200370static void auide_dma_lost_irq(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000371{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100372 printk(KERN_ERR "%s: IRQ lost\n", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000373}
374
Ralf Baechle53e62d32006-09-25 23:32:10 -0700375static void auide_ddma_tx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000376{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100377 _auide_hwif *ahwif = (_auide_hwif*)param;
378 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000379}
380
Ralf Baechle53e62d32006-09-25 23:32:10 -0700381static void auide_ddma_rx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000382{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100383 _auide_hwif *ahwif = (_auide_hwif*)param;
384 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000385}
386
Jordan Crouse8f29e652005-12-15 02:17:46 +0100387#endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
388
389static void auide_init_dbdma_dev(dbdev_tab_t *dev, u32 dev_id, u32 tsize, u32 devwidth, u32 flags)
390{
391 dev->dev_id = dev_id;
392 dev->dev_physaddr = (u32)AU1XXX_ATA_PHYS_ADDR;
393 dev->dev_intlevel = 0;
394 dev->dev_intpolarity = 0;
395 dev->dev_tsize = tsize;
396 dev->dev_devwidth = devwidth;
397 dev->dev_flags = flags;
398}
399
400#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
401
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200402static void auide_dma_timeout(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000403{
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200404 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000405
Jordan Crouse8f29e652005-12-15 02:17:46 +0100406 printk(KERN_ERR "%s: DMA timeout occurred: ", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000407
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200408 if (hwif->ide_dma_test_irq(drive))
409 return;
Pete Popov26a940e2005-09-15 08:03:12 +0000410
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200411 hwif->ide_dma_end(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000412}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100413
Pete Popov26a940e2005-09-15 08:03:12 +0000414
Jordan Crouse8f29e652005-12-15 02:17:46 +0100415static int auide_ddma_init(_auide_hwif *auide) {
416
417 dbdev_tab_t source_dev_tab, target_dev_tab;
418 u32 dev_id, tsize, devwidth, flags;
419 ide_hwif_t *hwif = auide->hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000420
Jordan Crouse8f29e652005-12-15 02:17:46 +0100421 dev_id = AU1XXX_ATA_DDMA_REQ;
422
423 if (auide->white_list || auide->black_list) {
424 tsize = 8;
425 devwidth = 32;
426 }
427 else {
428 tsize = 1;
429 devwidth = 16;
430
431 printk(KERN_ERR "au1xxx-ide: %s is not on ide driver whitelist.\n",auide_hwif.drive->id->model);
432 printk(KERN_ERR " please read 'Documentation/mips/AU1xxx_IDE.README'");
433 }
434
435#ifdef IDE_AU1XXX_BURSTMODE
436 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
437#else
438 flags = DEV_FLAGS_SYNC;
439#endif
440
441 /* setup dev_tab for tx channel */
442 auide_init_dbdma_dev( &source_dev_tab,
443 dev_id,
444 tsize, devwidth, DEV_FLAGS_OUT | flags);
445 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
446
447 auide_init_dbdma_dev( &source_dev_tab,
448 dev_id,
449 tsize, devwidth, DEV_FLAGS_IN | flags);
450 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
451
452 /* We also need to add a target device for the DMA */
453 auide_init_dbdma_dev( &target_dev_tab,
454 (u32)DSCR_CMD0_ALWAYS,
455 tsize, devwidth, DEV_FLAGS_ANYUSE);
456 auide->target_dev_id = au1xxx_ddma_add_device(&target_dev_tab);
457
458 /* Get a channel for TX */
459 auide->tx_chan = au1xxx_dbdma_chan_alloc(auide->target_dev_id,
460 auide->tx_dev_id,
461 auide_ddma_tx_callback,
462 (void*)auide);
463
464 /* Get a channel for RX */
465 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
466 auide->target_dev_id,
467 auide_ddma_rx_callback,
468 (void*)auide);
469
470 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
471 NUM_DESCRIPTORS);
472 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
473 NUM_DESCRIPTORS);
474
Bartlomiej Zolnierkiewicz5df37c32008-02-01 23:09:31 +0100475 hwif->dmatable_cpu = dma_alloc_coherent(hwif->dev,
Jordan Crouse8f29e652005-12-15 02:17:46 +0100476 PRD_ENTRIES * PRD_BYTES, /* 1 Page */
477 &hwif->dmatable_dma, GFP_KERNEL);
478
479 au1xxx_dbdma_start( auide->tx_chan );
480 au1xxx_dbdma_start( auide->rx_chan );
481
482 return 0;
483}
484#else
485
Pete Popov26a940e2005-09-15 08:03:12 +0000486static int auide_ddma_init( _auide_hwif *auide )
487{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100488 dbdev_tab_t source_dev_tab;
489 int flags;
Pete Popov26a940e2005-09-15 08:03:12 +0000490
Jordan Crouse8f29e652005-12-15 02:17:46 +0100491#ifdef IDE_AU1XXX_BURSTMODE
492 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
Pete Popov26a940e2005-09-15 08:03:12 +0000493#else
Jordan Crouse8f29e652005-12-15 02:17:46 +0100494 flags = DEV_FLAGS_SYNC;
Pete Popov26a940e2005-09-15 08:03:12 +0000495#endif
496
Jordan Crouse8f29e652005-12-15 02:17:46 +0100497 /* setup dev_tab for tx channel */
498 auide_init_dbdma_dev( &source_dev_tab,
499 (u32)DSCR_CMD0_ALWAYS,
500 8, 32, DEV_FLAGS_OUT | flags);
501 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
Pete Popov26a940e2005-09-15 08:03:12 +0000502
Jordan Crouse8f29e652005-12-15 02:17:46 +0100503 auide_init_dbdma_dev( &source_dev_tab,
504 (u32)DSCR_CMD0_ALWAYS,
505 8, 32, DEV_FLAGS_IN | flags);
506 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
507
508 /* Get a channel for TX */
509 auide->tx_chan = au1xxx_dbdma_chan_alloc(DSCR_CMD0_ALWAYS,
510 auide->tx_dev_id,
511 NULL,
512 (void*)auide);
513
514 /* Get a channel for RX */
515 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
516 DSCR_CMD0_ALWAYS,
517 NULL,
518 (void*)auide);
519
520 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
521 NUM_DESCRIPTORS);
522 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
523 NUM_DESCRIPTORS);
524
525 au1xxx_dbdma_start( auide->tx_chan );
526 au1xxx_dbdma_start( auide->rx_chan );
527
528 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000529}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100530#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000531
532static void auide_setup_ports(hw_regs_t *hw, _auide_hwif *ahwif)
533{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100534 int i;
535 unsigned long *ata_regs = hw->io_ports;
Pete Popov26a940e2005-09-15 08:03:12 +0000536
Jordan Crouse8f29e652005-12-15 02:17:46 +0100537 /* FIXME? */
538 for (i = 0; i < IDE_CONTROL_OFFSET; i++) {
539 *ata_regs++ = ahwif->regbase + (i << AU1XXX_ATA_REG_OFFSET);
540 }
Pete Popov26a940e2005-09-15 08:03:12 +0000541
Jordan Crouse8f29e652005-12-15 02:17:46 +0100542 /* set the Alternative Status register */
543 *ata_regs = ahwif->regbase + (14 << AU1XXX_ATA_REG_OFFSET);
Pete Popov26a940e2005-09-15 08:03:12 +0000544}
545
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200546static const struct ide_port_ops au1xxx_port_ops = {
547 .set_pio_mode = au1xxx_set_pio_mode,
548 .set_dma_mode = auide_set_dma_mode,
549#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
550 .mdma_filter = auide_mdma_filter,
551#endif
552};
553
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100554static const struct ide_port_info au1xxx_port_info = {
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200555 .port_ops = &au1xxx_port_ops,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100556 .host_flags = IDE_HFLAG_POST_SET_MODE |
557 IDE_HFLAG_NO_DMA | /* no SFF-style DMA */
Bartlomiej Zolnierkiewicz807b90d2008-02-02 19:56:40 +0100558 IDE_HFLAG_NO_IO_32BIT |
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100559 IDE_HFLAG_UNMASK_IRQS,
560 .pio_mask = ATA_PIO4,
561#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
562 .mwdma_mask = ATA_MWDMA2,
563#endif
564};
565
Pete Popov26a940e2005-09-15 08:03:12 +0000566static int au_ide_probe(struct device *dev)
567{
568 struct platform_device *pdev = to_platform_device(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100569 _auide_hwif *ahwif = &auide_hwif;
570 ide_hwif_t *hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000571 struct resource *res;
572 int ret = 0;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200573 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200574 hw_regs_t hw;
Pete Popov26a940e2005-09-15 08:03:12 +0000575
576#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100577 char *mode = "MWDMA2";
Pete Popov26a940e2005-09-15 08:03:12 +0000578#elif defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100579 char *mode = "PIO+DDMA(offload)";
Pete Popov26a940e2005-09-15 08:03:12 +0000580#endif
581
Jordan Crouse8f29e652005-12-15 02:17:46 +0100582 memset(&auide_hwif, 0, sizeof(_auide_hwif));
Pete Popov26a940e2005-09-15 08:03:12 +0000583 ahwif->irq = platform_get_irq(pdev, 0);
584
585 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
586
587 if (res == NULL) {
588 pr_debug("%s %d: no base address\n", DRV_NAME, pdev->id);
589 ret = -ENODEV;
590 goto out;
591 }
David Vrabel48944732006-01-19 17:56:29 +0000592 if (ahwif->irq < 0) {
593 pr_debug("%s %d: no IRQ\n", DRV_NAME, pdev->id);
594 ret = -ENODEV;
595 goto out;
596 }
Pete Popov26a940e2005-09-15 08:03:12 +0000597
Sergei Shtylyovb4dcaea2008-04-17 01:14:33 +0200598 if (!request_mem_region(res->start, res->end - res->start + 1,
599 pdev->name)) {
Pete Popov26a940e2005-09-15 08:03:12 +0000600 pr_debug("%s: request_mem_region failed\n", DRV_NAME);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100601 ret = -EBUSY;
Pete Popov26a940e2005-09-15 08:03:12 +0000602 goto out;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100603 }
Pete Popov26a940e2005-09-15 08:03:12 +0000604
Sergei Shtylyovb4dcaea2008-04-17 01:14:33 +0200605 ahwif->regbase = (u32)ioremap(res->start, res->end - res->start + 1);
Pete Popov26a940e2005-09-15 08:03:12 +0000606 if (ahwif->regbase == 0) {
607 ret = -ENOMEM;
608 goto out;
609 }
610
Bartlomiej Zolnierkiewicz4f7bada2008-04-26 17:36:33 +0200611 hwif = ide_find_port();
612 if (hwif == NULL) {
613 ret = -ENOENT;
614 goto out;
615 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100616
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200617 memset(&hw, 0, sizeof(hw));
618 auide_setup_ports(&hw, ahwif);
Bartlomiej Zolnierkiewiczaa79a2f2008-01-26 20:13:08 +0100619 hw.irq = ahwif->irq;
Bartlomiej Zolnierkiewiczed1f7882008-02-01 23:09:32 +0100620 hw.dev = dev;
Bartlomiej Zolnierkiewiczaa79a2f2008-01-26 20:13:08 +0100621 hw.chipset = ide_au1xxx;
622
623 ide_init_port_hw(hwif, &hw);
Pete Popov26a940e2005-09-15 08:03:12 +0000624
Bartlomiej Zolnierkiewicz5df37c32008-02-01 23:09:31 +0100625 hwif->dev = dev;
626
Bartlomiej Zolnierkiewicz2ad1e552007-02-17 02:40:25 +0100627 hwif->mmio = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000628
Jordan Crouse8f29e652005-12-15 02:17:46 +0100629 /* If the user has selected DDMA assisted copies,
630 then set up a few local I/O function entry points
631 */
632
633#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
634 hwif->INSW = auide_insw;
635 hwif->OUTSW = auide_outsw;
636#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000637#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200638 hwif->dma_timeout = &auide_dma_timeout;
Bartlomiej Zolnierkiewicz15ce9262008-01-26 20:13:03 +0100639 hwif->dma_host_set = &auide_dma_host_set;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100640 hwif->dma_exec_cmd = &auide_dma_exec_cmd;
641 hwif->dma_start = &auide_dma_start;
642 hwif->ide_dma_end = &auide_dma_end;
643 hwif->dma_setup = &auide_dma_setup;
644 hwif->ide_dma_test_irq = &auide_dma_test_irq;
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200645 hwif->dma_lost_irq = &auide_dma_lost_irq;
Bartlomiej Zolnierkiewicza42bcc02008-01-26 20:13:07 +0100646#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100647 hwif->select_data = 0; /* no chipset-specific code */
648 hwif->config_data = 0; /* no chipset-specific code */
Pete Popov26a940e2005-09-15 08:03:12 +0000649
Jordan Crouse8f29e652005-12-15 02:17:46 +0100650 auide_hwif.hwif = hwif;
651 hwif->hwif_data = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000652
Jordan Crouse8f29e652005-12-15 02:17:46 +0100653#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
654 auide_ddma_init(&auide_hwif);
655 dbdma_init_done = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000656#endif
657
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200658 idx[0] = hwif->index;
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200659
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100660 ide_device_add(idx, &au1xxx_port_info);
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200661
Pete Popov26a940e2005-09-15 08:03:12 +0000662 dev_set_drvdata(dev, hwif);
663
Jordan Crouse8f29e652005-12-15 02:17:46 +0100664 printk(KERN_INFO "Au1xxx IDE(builtin) configured for %s\n", mode );
Pete Popov26a940e2005-09-15 08:03:12 +0000665
Jordan Crouse8f29e652005-12-15 02:17:46 +0100666 out:
667 return ret;
Pete Popov26a940e2005-09-15 08:03:12 +0000668}
669
670static int au_ide_remove(struct device *dev)
671{
672 struct platform_device *pdev = to_platform_device(dev);
673 struct resource *res;
674 ide_hwif_t *hwif = dev_get_drvdata(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100675 _auide_hwif *ahwif = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000676
Bartlomiej Zolnierkiewicz93de00f2008-04-18 00:46:24 +0200677 ide_unregister(hwif->index);
Pete Popov26a940e2005-09-15 08:03:12 +0000678
679 iounmap((void *)ahwif->regbase);
680
681 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Sergei Shtylyovb4dcaea2008-04-17 01:14:33 +0200682 release_mem_region(res->start, res->end - res->start + 1);
Pete Popov26a940e2005-09-15 08:03:12 +0000683
684 return 0;
685}
686
687static struct device_driver au1200_ide_driver = {
688 .name = "au1200-ide",
689 .bus = &platform_bus_type,
690 .probe = au_ide_probe,
691 .remove = au_ide_remove,
692};
693
694static int __init au_ide_init(void)
695{
696 return driver_register(&au1200_ide_driver);
697}
698
Jordan Crouse8f29e652005-12-15 02:17:46 +0100699static void __exit au_ide_exit(void)
Pete Popov26a940e2005-09-15 08:03:12 +0000700{
701 driver_unregister(&au1200_ide_driver);
702}
703
Pete Popov26a940e2005-09-15 08:03:12 +0000704MODULE_LICENSE("GPL");
705MODULE_DESCRIPTION("AU1200 IDE driver");
706
707module_init(au_ide_init);
708module_exit(au_ide_exit);