blob: f47ae1dc06ee2736f2d0fd2b2ca4aa29f2522243 [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
Jordan Crouse8f29e652005-12-15 02:17:46 +010051#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
Pete Popov26a940e2005-09-15 08:03:12 +000052
53void auide_insw(unsigned long port, void *addr, u32 count)
54{
Jordan Crouse8f29e652005-12-15 02:17:46 +010055 _auide_hwif *ahwif = &auide_hwif;
56 chan_tab_t *ctp;
57 au1x_ddma_desc_t *dp;
Pete Popov26a940e2005-09-15 08:03:12 +000058
Jordan Crouse8f29e652005-12-15 02:17:46 +010059 if(!put_dest_flags(ahwif->rx_chan, (void*)addr, count << 1,
60 DDMA_FLAGS_NOIE)) {
Harvey Harrisoneb639632008-04-26 22:25:20 +020061 printk(KERN_ERR "%s failed %d\n", __func__, __LINE__);
Jordan Crouse8f29e652005-12-15 02:17:46 +010062 return;
63 }
64 ctp = *((chan_tab_t **)ahwif->rx_chan);
65 dp = ctp->cur_ptr;
66 while (dp->dscr_cmd0 & DSCR_CMD0_V)
67 ;
68 ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
Pete Popov26a940e2005-09-15 08:03:12 +000069}
70
71void auide_outsw(unsigned long port, void *addr, u32 count)
72{
Jordan Crouse8f29e652005-12-15 02:17:46 +010073 _auide_hwif *ahwif = &auide_hwif;
74 chan_tab_t *ctp;
75 au1x_ddma_desc_t *dp;
Pete Popov26a940e2005-09-15 08:03:12 +000076
Jordan Crouse8f29e652005-12-15 02:17:46 +010077 if(!put_source_flags(ahwif->tx_chan, (void*)addr,
78 count << 1, DDMA_FLAGS_NOIE)) {
Harvey Harrisoneb639632008-04-26 22:25:20 +020079 printk(KERN_ERR "%s failed %d\n", __func__, __LINE__);
Jordan Crouse8f29e652005-12-15 02:17:46 +010080 return;
81 }
82 ctp = *((chan_tab_t **)ahwif->tx_chan);
83 dp = ctp->cur_ptr;
84 while (dp->dscr_cmd0 & DSCR_CMD0_V)
85 ;
86 ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
87}
88
Pete Popov26a940e2005-09-15 08:03:12 +000089#endif
Pete Popov26a940e2005-09-15 08:03:12 +000090
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +020091static void au1xxx_set_pio_mode(ide_drive_t *drive, const u8 pio)
Pete Popov26a940e2005-09-15 08:03:12 +000092{
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +020093 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +000094
Jordan Crouse8f29e652005-12-15 02:17:46 +010095 /* set pio mode! */
96 switch(pio) {
97 case 0:
98 mem_sttime = SBC_IDE_TIMING(PIO0);
Pete Popov26a940e2005-09-15 08:03:12 +000099
Jordan Crouse8f29e652005-12-15 02:17:46 +0100100 /* set configuration for RCS2# */
101 mem_stcfg |= TS_MASK;
102 mem_stcfg &= ~TCSOE_MASK;
103 mem_stcfg &= ~TOECS_MASK;
104 mem_stcfg |= SBC_IDE_PIO0_TCSOE | SBC_IDE_PIO0_TOECS;
105 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000106
Jordan Crouse8f29e652005-12-15 02:17:46 +0100107 case 1:
108 mem_sttime = SBC_IDE_TIMING(PIO1);
Pete Popov26a940e2005-09-15 08:03:12 +0000109
Jordan Crouse8f29e652005-12-15 02:17:46 +0100110 /* set configuration for RCS2# */
111 mem_stcfg |= TS_MASK;
112 mem_stcfg &= ~TCSOE_MASK;
113 mem_stcfg &= ~TOECS_MASK;
114 mem_stcfg |= SBC_IDE_PIO1_TCSOE | SBC_IDE_PIO1_TOECS;
115 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000116
Jordan Crouse8f29e652005-12-15 02:17:46 +0100117 case 2:
118 mem_sttime = SBC_IDE_TIMING(PIO2);
Pete Popov26a940e2005-09-15 08:03:12 +0000119
Jordan Crouse8f29e652005-12-15 02:17:46 +0100120 /* set configuration for RCS2# */
121 mem_stcfg &= ~TS_MASK;
122 mem_stcfg &= ~TCSOE_MASK;
123 mem_stcfg &= ~TOECS_MASK;
124 mem_stcfg |= SBC_IDE_PIO2_TCSOE | SBC_IDE_PIO2_TOECS;
125 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000126
Jordan Crouse8f29e652005-12-15 02:17:46 +0100127 case 3:
128 mem_sttime = SBC_IDE_TIMING(PIO3);
Pete Popov26a940e2005-09-15 08:03:12 +0000129
Jordan Crouse8f29e652005-12-15 02:17:46 +0100130 /* set configuration for RCS2# */
131 mem_stcfg &= ~TS_MASK;
132 mem_stcfg &= ~TCSOE_MASK;
133 mem_stcfg &= ~TOECS_MASK;
134 mem_stcfg |= SBC_IDE_PIO3_TCSOE | SBC_IDE_PIO3_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000135
Jordan Crouse8f29e652005-12-15 02:17:46 +0100136 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000137
Jordan Crouse8f29e652005-12-15 02:17:46 +0100138 case 4:
139 mem_sttime = SBC_IDE_TIMING(PIO4);
Pete Popov26a940e2005-09-15 08:03:12 +0000140
Jordan Crouse8f29e652005-12-15 02:17:46 +0100141 /* set configuration for RCS2# */
142 mem_stcfg &= ~TS_MASK;
143 mem_stcfg &= ~TCSOE_MASK;
144 mem_stcfg &= ~TOECS_MASK;
145 mem_stcfg |= SBC_IDE_PIO4_TCSOE | SBC_IDE_PIO4_TOECS;
146 break;
147 }
148
149 au_writel(mem_sttime,MEM_STTIME2);
150 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000151}
152
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200153static void auide_set_dma_mode(ide_drive_t *drive, const u8 speed)
Pete Popov26a940e2005-09-15 08:03:12 +0000154{
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200155 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000156
Jordan Crouse8f29e652005-12-15 02:17:46 +0100157 switch(speed) {
Pete Popov26a940e2005-09-15 08:03:12 +0000158#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Jordan Crouse8f29e652005-12-15 02:17:46 +0100159 case XFER_MW_DMA_2:
160 mem_sttime = SBC_IDE_TIMING(MDMA2);
Pete Popov26a940e2005-09-15 08:03:12 +0000161
Jordan Crouse8f29e652005-12-15 02:17:46 +0100162 /* set configuration for RCS2# */
163 mem_stcfg &= ~TS_MASK;
164 mem_stcfg &= ~TCSOE_MASK;
165 mem_stcfg &= ~TOECS_MASK;
166 mem_stcfg |= SBC_IDE_MDMA2_TCSOE | SBC_IDE_MDMA2_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000167
Jordan Crouse8f29e652005-12-15 02:17:46 +0100168 break;
169 case XFER_MW_DMA_1:
170 mem_sttime = SBC_IDE_TIMING(MDMA1);
Pete Popov26a940e2005-09-15 08:03:12 +0000171
Jordan Crouse8f29e652005-12-15 02:17:46 +0100172 /* set configuration for RCS2# */
173 mem_stcfg &= ~TS_MASK;
174 mem_stcfg &= ~TCSOE_MASK;
175 mem_stcfg &= ~TOECS_MASK;
176 mem_stcfg |= SBC_IDE_MDMA1_TCSOE | SBC_IDE_MDMA1_TOECS;
177
Jordan Crouse8f29e652005-12-15 02:17:46 +0100178 break;
179 case XFER_MW_DMA_0:
180 mem_sttime = SBC_IDE_TIMING(MDMA0);
181
182 /* set configuration for RCS2# */
183 mem_stcfg |= TS_MASK;
184 mem_stcfg &= ~TCSOE_MASK;
185 mem_stcfg &= ~TOECS_MASK;
186 mem_stcfg |= SBC_IDE_MDMA0_TCSOE | SBC_IDE_MDMA0_TOECS;
187
Jordan Crouse8f29e652005-12-15 02:17:46 +0100188 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000189#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100190 }
Bartlomiej Zolnierkiewicza523a172007-02-17 02:40:23 +0100191
Jordan Crouse8f29e652005-12-15 02:17:46 +0100192 au_writel(mem_sttime,MEM_STTIME2);
193 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000194}
195
196/*
197 * Multi-Word DMA + DbDMA functions
198 */
Pete Popov26a940e2005-09-15 08:03:12 +0000199
Jordan Crouse8f29e652005-12-15 02:17:46 +0100200#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Pete Popov26a940e2005-09-15 08:03:12 +0000201static int auide_build_dmatable(ide_drive_t *drive)
202{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100203 int i, iswrite, count = 0;
204 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000205
Jordan Crouse8f29e652005-12-15 02:17:46 +0100206 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000207
Jordan Crouse8f29e652005-12-15 02:17:46 +0100208 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
209 struct scatterlist *sg;
Pete Popov26a940e2005-09-15 08:03:12 +0000210
Jordan Crouse8f29e652005-12-15 02:17:46 +0100211 iswrite = (rq_data_dir(rq) == WRITE);
212 /* Save for interrupt context */
213 ahwif->drive = drive;
Pete Popov26a940e2005-09-15 08:03:12 +0000214
Bartlomiej Zolnierkiewicz062f9f02008-02-01 23:09:32 +0100215 hwif->sg_nents = i = ide_build_sglist(drive, rq);
Pete Popov26a940e2005-09-15 08:03:12 +0000216
Jordan Crouse8f29e652005-12-15 02:17:46 +0100217 if (!i)
218 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000219
Jordan Crouse8f29e652005-12-15 02:17:46 +0100220 /* fill the descriptors */
221 sg = hwif->sg_table;
222 while (i && sg_dma_len(sg)) {
223 u32 cur_addr;
224 u32 cur_len;
Pete Popov26a940e2005-09-15 08:03:12 +0000225
Jordan Crouse8f29e652005-12-15 02:17:46 +0100226 cur_addr = sg_dma_address(sg);
227 cur_len = sg_dma_len(sg);
Pete Popov26a940e2005-09-15 08:03:12 +0000228
Jordan Crouse8f29e652005-12-15 02:17:46 +0100229 while (cur_len) {
230 u32 flags = DDMA_FLAGS_NOIE;
231 unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;
Pete Popov26a940e2005-09-15 08:03:12 +0000232
Jordan Crouse8f29e652005-12-15 02:17:46 +0100233 if (++count >= PRD_ENTRIES) {
234 printk(KERN_WARNING "%s: DMA table too small\n",
235 drive->name);
236 goto use_pio_instead;
237 }
Pete Popov26a940e2005-09-15 08:03:12 +0000238
Jordan Crouse8f29e652005-12-15 02:17:46 +0100239 /* Lets enable intr for the last descriptor only */
240 if (1==i)
241 flags = DDMA_FLAGS_IE;
242 else
243 flags = DDMA_FLAGS_NOIE;
Pete Popov26a940e2005-09-15 08:03:12 +0000244
Jordan Crouse8f29e652005-12-15 02:17:46 +0100245 if (iswrite) {
246 if(!put_source_flags(ahwif->tx_chan,
Jens Axboe45711f12007-10-22 21:19:53 +0200247 (void*) sg_virt(sg),
Jordan Crouse8f29e652005-12-15 02:17:46 +0100248 tc, flags)) {
249 printk(KERN_ERR "%s failed %d\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200250 __func__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000251 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100252 } else
Pete Popov26a940e2005-09-15 08:03:12 +0000253 {
Jordan Crouse8f29e652005-12-15 02:17:46 +0100254 if(!put_dest_flags(ahwif->rx_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",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200258 __func__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000259 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100260 }
Pete Popov26a940e2005-09-15 08:03:12 +0000261
Jordan Crouse8f29e652005-12-15 02:17:46 +0100262 cur_addr += tc;
263 cur_len -= tc;
264 }
Jens Axboe55c16a72007-07-25 08:13:56 +0200265 sg = sg_next(sg);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100266 i--;
267 }
Pete Popov26a940e2005-09-15 08:03:12 +0000268
Jordan Crouse8f29e652005-12-15 02:17:46 +0100269 if (count)
270 return 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000271
Jordan Crouse8f29e652005-12-15 02:17:46 +0100272 use_pio_instead:
Bartlomiej Zolnierkiewicz062f9f02008-02-01 23:09:32 +0100273 ide_destroy_dmatable(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000274
Jordan Crouse8f29e652005-12-15 02:17:46 +0100275 return 0; /* revert to PIO for this request */
Pete Popov26a940e2005-09-15 08:03:12 +0000276}
277
278static int auide_dma_end(ide_drive_t *drive)
279{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100280 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000281
Jordan Crouse8f29e652005-12-15 02:17:46 +0100282 if (hwif->sg_nents) {
Bartlomiej Zolnierkiewicz062f9f02008-02-01 23:09:32 +0100283 ide_destroy_dmatable(drive);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100284 hwif->sg_nents = 0;
285 }
Pete Popov26a940e2005-09-15 08:03:12 +0000286
Jordan Crouse8f29e652005-12-15 02:17:46 +0100287 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000288}
289
290static void auide_dma_start(ide_drive_t *drive )
291{
Pete Popov26a940e2005-09-15 08:03:12 +0000292}
293
Pete Popov26a940e2005-09-15 08:03:12 +0000294
295static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command)
296{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100297 /* issue cmd to drive */
298 ide_execute_command(drive, command, &ide_dma_intr,
299 (2*WAIT_CMD), NULL);
Pete Popov26a940e2005-09-15 08:03:12 +0000300}
301
302static int auide_dma_setup(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100303{
304 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000305
Jordan Crouse8f29e652005-12-15 02:17:46 +0100306 if (!auide_build_dmatable(drive)) {
307 ide_map_sg(drive, rq);
308 return 1;
309 }
Pete Popov26a940e2005-09-15 08:03:12 +0000310
Jordan Crouse8f29e652005-12-15 02:17:46 +0100311 drive->waiting_for_dma = 1;
312 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000313}
314
Pete Popov26a940e2005-09-15 08:03:12 +0000315static int auide_dma_test_irq(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100316{
317 if (drive->waiting_for_dma == 0)
318 printk(KERN_WARNING "%s: ide_dma_test_irq \
Pete Popov26a940e2005-09-15 08:03:12 +0000319 called while not waiting\n", drive->name);
320
Jordan Crouse8f29e652005-12-15 02:17:46 +0100321 /* If dbdma didn't execute the STOP command yet, the
322 * active bit is still set
Pete Popov26a940e2005-09-15 08:03:12 +0000323 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100324 drive->waiting_for_dma++;
325 if (drive->waiting_for_dma >= DMA_WAIT_TIMEOUT) {
326 printk(KERN_WARNING "%s: timeout waiting for ddma to \
Pete Popov26a940e2005-09-15 08:03:12 +0000327 complete\n", drive->name);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100328 return 1;
329 }
330 udelay(10);
331 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000332}
333
Bartlomiej Zolnierkiewicz15ce9262008-01-26 20:13:03 +0100334static void auide_dma_host_set(ide_drive_t *drive, int on)
Pete Popov26a940e2005-09-15 08:03:12 +0000335{
Pete Popov26a940e2005-09-15 08:03:12 +0000336}
337
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200338static void auide_dma_lost_irq(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000339{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100340 printk(KERN_ERR "%s: IRQ lost\n", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000341}
342
Ralf Baechle53e62d32006-09-25 23:32:10 -0700343static void auide_ddma_tx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000344{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100345 _auide_hwif *ahwif = (_auide_hwif*)param;
346 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000347}
348
Ralf Baechle53e62d32006-09-25 23:32:10 -0700349static void auide_ddma_rx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000350{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100351 _auide_hwif *ahwif = (_auide_hwif*)param;
352 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000353}
354
Jordan Crouse8f29e652005-12-15 02:17:46 +0100355#endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
356
357static void auide_init_dbdma_dev(dbdev_tab_t *dev, u32 dev_id, u32 tsize, u32 devwidth, u32 flags)
358{
359 dev->dev_id = dev_id;
Sergei Shtylyovfcbd3b42008-04-28 19:54:38 +0400360 dev->dev_physaddr = (u32)IDE_PHYS_ADDR;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100361 dev->dev_intlevel = 0;
362 dev->dev_intpolarity = 0;
363 dev->dev_tsize = tsize;
364 dev->dev_devwidth = devwidth;
365 dev->dev_flags = flags;
366}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100367
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200368#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200369static void auide_dma_timeout(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000370{
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200371 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000372
Jordan Crouse8f29e652005-12-15 02:17:46 +0100373 printk(KERN_ERR "%s: DMA timeout occurred: ", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000374
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200375 if (auide_dma_test_irq(drive))
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200376 return;
Pete Popov26a940e2005-09-15 08:03:12 +0000377
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200378 auide_dma_end(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000379}
Pete Popov26a940e2005-09-15 08:03:12 +0000380
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +0200381static const struct ide_dma_ops au1xxx_dma_ops = {
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200382 .dma_host_set = auide_dma_host_set,
383 .dma_setup = auide_dma_setup,
384 .dma_exec_cmd = auide_dma_exec_cmd,
385 .dma_start = auide_dma_start,
386 .dma_end = auide_dma_end,
387 .dma_test_irq = auide_dma_test_irq,
388 .dma_lost_irq = auide_dma_lost_irq,
389 .dma_timeout = auide_dma_timeout,
390};
391
Bartlomiej Zolnierkiewicz85528652008-04-26 22:25:23 +0200392static int auide_ddma_init(ide_hwif_t *hwif, const struct ide_port_info *d)
393{
394 _auide_hwif *auide = (_auide_hwif *)hwif->hwif_data;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100395 dbdev_tab_t source_dev_tab, target_dev_tab;
396 u32 dev_id, tsize, devwidth, flags;
Pete Popov26a940e2005-09-15 08:03:12 +0000397
Sergei Shtylyovfcbd3b42008-04-28 19:54:38 +0400398 dev_id = IDE_DDMA_REQ;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100399
Bartlomiej Zolnierkiewiczf629b382008-04-26 22:25:22 +0200400 tsize = 8; /* 1 */
401 devwidth = 32; /* 16 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100402
403#ifdef IDE_AU1XXX_BURSTMODE
404 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
405#else
406 flags = DEV_FLAGS_SYNC;
407#endif
408
409 /* setup dev_tab for tx channel */
410 auide_init_dbdma_dev( &source_dev_tab,
411 dev_id,
412 tsize, devwidth, DEV_FLAGS_OUT | flags);
413 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
414
415 auide_init_dbdma_dev( &source_dev_tab,
416 dev_id,
417 tsize, devwidth, DEV_FLAGS_IN | flags);
418 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
419
420 /* We also need to add a target device for the DMA */
421 auide_init_dbdma_dev( &target_dev_tab,
422 (u32)DSCR_CMD0_ALWAYS,
423 tsize, devwidth, DEV_FLAGS_ANYUSE);
424 auide->target_dev_id = au1xxx_ddma_add_device(&target_dev_tab);
425
426 /* Get a channel for TX */
427 auide->tx_chan = au1xxx_dbdma_chan_alloc(auide->target_dev_id,
428 auide->tx_dev_id,
429 auide_ddma_tx_callback,
430 (void*)auide);
431
432 /* Get a channel for RX */
433 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
434 auide->target_dev_id,
435 auide_ddma_rx_callback,
436 (void*)auide);
437
438 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
439 NUM_DESCRIPTORS);
440 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
441 NUM_DESCRIPTORS);
442
Bartlomiej Zolnierkiewicz5df37c32008-02-01 23:09:31 +0100443 hwif->dmatable_cpu = dma_alloc_coherent(hwif->dev,
Jordan Crouse8f29e652005-12-15 02:17:46 +0100444 PRD_ENTRIES * PRD_BYTES, /* 1 Page */
445 &hwif->dmatable_dma, GFP_KERNEL);
446
447 au1xxx_dbdma_start( auide->tx_chan );
448 au1xxx_dbdma_start( auide->rx_chan );
449
450 return 0;
451}
452#else
Bartlomiej Zolnierkiewicz85528652008-04-26 22:25:23 +0200453static int auide_ddma_init(ide_hwif_t *hwif, const struct ide_port_info *d)
Pete Popov26a940e2005-09-15 08:03:12 +0000454{
Bartlomiej Zolnierkiewicz85528652008-04-26 22:25:23 +0200455 _auide_hwif *auide = (_auide_hwif *)hwif->hwif_data;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100456 dbdev_tab_t source_dev_tab;
457 int flags;
Pete Popov26a940e2005-09-15 08:03:12 +0000458
Jordan Crouse8f29e652005-12-15 02:17:46 +0100459#ifdef IDE_AU1XXX_BURSTMODE
460 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
Pete Popov26a940e2005-09-15 08:03:12 +0000461#else
Jordan Crouse8f29e652005-12-15 02:17:46 +0100462 flags = DEV_FLAGS_SYNC;
Pete Popov26a940e2005-09-15 08:03:12 +0000463#endif
464
Jordan Crouse8f29e652005-12-15 02:17:46 +0100465 /* setup dev_tab for tx channel */
466 auide_init_dbdma_dev( &source_dev_tab,
467 (u32)DSCR_CMD0_ALWAYS,
468 8, 32, DEV_FLAGS_OUT | flags);
469 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
Pete Popov26a940e2005-09-15 08:03:12 +0000470
Jordan Crouse8f29e652005-12-15 02:17:46 +0100471 auide_init_dbdma_dev( &source_dev_tab,
472 (u32)DSCR_CMD0_ALWAYS,
473 8, 32, DEV_FLAGS_IN | flags);
474 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
475
476 /* Get a channel for TX */
477 auide->tx_chan = au1xxx_dbdma_chan_alloc(DSCR_CMD0_ALWAYS,
478 auide->tx_dev_id,
479 NULL,
480 (void*)auide);
481
482 /* Get a channel for RX */
483 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
484 DSCR_CMD0_ALWAYS,
485 NULL,
486 (void*)auide);
487
488 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
489 NUM_DESCRIPTORS);
490 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
491 NUM_DESCRIPTORS);
492
493 au1xxx_dbdma_start( auide->tx_chan );
494 au1xxx_dbdma_start( auide->rx_chan );
495
496 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000497}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100498#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000499
500static void auide_setup_ports(hw_regs_t *hw, _auide_hwif *ahwif)
501{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100502 int i;
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200503 unsigned long *ata_regs = hw->io_ports_array;
Pete Popov26a940e2005-09-15 08:03:12 +0000504
Jordan Crouse8f29e652005-12-15 02:17:46 +0100505 /* FIXME? */
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200506 for (i = 0; i < 8; i++)
Sergei Shtylyovfcbd3b42008-04-28 19:54:38 +0400507 *ata_regs++ = ahwif->regbase + (i << IDE_REG_SHIFT);
Pete Popov26a940e2005-09-15 08:03:12 +0000508
Jordan Crouse8f29e652005-12-15 02:17:46 +0100509 /* set the Alternative Status register */
Sergei Shtylyovfcbd3b42008-04-28 19:54:38 +0400510 *ata_regs = ahwif->regbase + (14 << IDE_REG_SHIFT);
Pete Popov26a940e2005-09-15 08:03:12 +0000511}
512
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200513static const struct ide_port_ops au1xxx_port_ops = {
514 .set_pio_mode = au1xxx_set_pio_mode,
515 .set_dma_mode = auide_set_dma_mode,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200516};
517
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100518static const struct ide_port_info au1xxx_port_info = {
Bartlomiej Zolnierkiewicz85528652008-04-26 22:25:23 +0200519 .init_dma = auide_ddma_init,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200520 .port_ops = &au1xxx_port_ops,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200521#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
522 .dma_ops = &au1xxx_dma_ops,
523#endif
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100524 .host_flags = IDE_HFLAG_POST_SET_MODE |
Bartlomiej Zolnierkiewicz807b90d2008-02-02 19:56:40 +0100525 IDE_HFLAG_NO_IO_32BIT |
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100526 IDE_HFLAG_UNMASK_IRQS,
527 .pio_mask = ATA_PIO4,
528#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
529 .mwdma_mask = ATA_MWDMA2,
530#endif
531};
532
Pete Popov26a940e2005-09-15 08:03:12 +0000533static int au_ide_probe(struct device *dev)
534{
535 struct platform_device *pdev = to_platform_device(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100536 _auide_hwif *ahwif = &auide_hwif;
537 ide_hwif_t *hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000538 struct resource *res;
539 int ret = 0;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200540 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200541 hw_regs_t hw;
Pete Popov26a940e2005-09-15 08:03:12 +0000542
543#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100544 char *mode = "MWDMA2";
Pete Popov26a940e2005-09-15 08:03:12 +0000545#elif defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100546 char *mode = "PIO+DDMA(offload)";
Pete Popov26a940e2005-09-15 08:03:12 +0000547#endif
548
Jordan Crouse8f29e652005-12-15 02:17:46 +0100549 memset(&auide_hwif, 0, sizeof(_auide_hwif));
Pete Popov26a940e2005-09-15 08:03:12 +0000550 ahwif->irq = platform_get_irq(pdev, 0);
551
552 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
553
554 if (res == NULL) {
555 pr_debug("%s %d: no base address\n", DRV_NAME, pdev->id);
556 ret = -ENODEV;
557 goto out;
558 }
David Vrabel48944732006-01-19 17:56:29 +0000559 if (ahwif->irq < 0) {
560 pr_debug("%s %d: no IRQ\n", DRV_NAME, pdev->id);
561 ret = -ENODEV;
562 goto out;
563 }
Pete Popov26a940e2005-09-15 08:03:12 +0000564
Sergei Shtylyovb4dcaea2008-04-17 01:14:33 +0200565 if (!request_mem_region(res->start, res->end - res->start + 1,
566 pdev->name)) {
Pete Popov26a940e2005-09-15 08:03:12 +0000567 pr_debug("%s: request_mem_region failed\n", DRV_NAME);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100568 ret = -EBUSY;
Pete Popov26a940e2005-09-15 08:03:12 +0000569 goto out;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100570 }
Pete Popov26a940e2005-09-15 08:03:12 +0000571
Sergei Shtylyovb4dcaea2008-04-17 01:14:33 +0200572 ahwif->regbase = (u32)ioremap(res->start, res->end - res->start + 1);
Pete Popov26a940e2005-09-15 08:03:12 +0000573 if (ahwif->regbase == 0) {
574 ret = -ENOMEM;
575 goto out;
576 }
577
Bartlomiej Zolnierkiewicz4f7bada2008-04-26 17:36:33 +0200578 hwif = ide_find_port();
579 if (hwif == NULL) {
580 ret = -ENOENT;
581 goto out;
582 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100583
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200584 memset(&hw, 0, sizeof(hw));
585 auide_setup_ports(&hw, ahwif);
Bartlomiej Zolnierkiewiczaa79a2f2008-01-26 20:13:08 +0100586 hw.irq = ahwif->irq;
Bartlomiej Zolnierkiewiczed1f7882008-02-01 23:09:32 +0100587 hw.dev = dev;
Bartlomiej Zolnierkiewiczaa79a2f2008-01-26 20:13:08 +0100588 hw.chipset = ide_au1xxx;
589
590 ide_init_port_hw(hwif, &hw);
Pete Popov26a940e2005-09-15 08:03:12 +0000591
Bartlomiej Zolnierkiewicz5df37c32008-02-01 23:09:31 +0100592 hwif->dev = dev;
593
Jordan Crouse8f29e652005-12-15 02:17:46 +0100594 /* If the user has selected DDMA assisted copies,
595 then set up a few local I/O function entry points
596 */
597
598#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
599 hwif->INSW = auide_insw;
600 hwif->OUTSW = auide_outsw;
601#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100602 hwif->select_data = 0; /* no chipset-specific code */
603 hwif->config_data = 0; /* no chipset-specific code */
Pete Popov26a940e2005-09-15 08:03:12 +0000604
Jordan Crouse8f29e652005-12-15 02:17:46 +0100605 auide_hwif.hwif = hwif;
606 hwif->hwif_data = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000607
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200608 idx[0] = hwif->index;
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200609
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100610 ide_device_add(idx, &au1xxx_port_info);
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200611
Pete Popov26a940e2005-09-15 08:03:12 +0000612 dev_set_drvdata(dev, hwif);
613
Jordan Crouse8f29e652005-12-15 02:17:46 +0100614 printk(KERN_INFO "Au1xxx IDE(builtin) configured for %s\n", mode );
Pete Popov26a940e2005-09-15 08:03:12 +0000615
Jordan Crouse8f29e652005-12-15 02:17:46 +0100616 out:
617 return ret;
Pete Popov26a940e2005-09-15 08:03:12 +0000618}
619
620static int au_ide_remove(struct device *dev)
621{
622 struct platform_device *pdev = to_platform_device(dev);
623 struct resource *res;
624 ide_hwif_t *hwif = dev_get_drvdata(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100625 _auide_hwif *ahwif = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000626
Bartlomiej Zolnierkiewicz387750c2008-04-27 15:38:31 +0200627 ide_unregister(hwif);
Pete Popov26a940e2005-09-15 08:03:12 +0000628
629 iounmap((void *)ahwif->regbase);
630
631 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Sergei Shtylyovb4dcaea2008-04-17 01:14:33 +0200632 release_mem_region(res->start, res->end - res->start + 1);
Pete Popov26a940e2005-09-15 08:03:12 +0000633
634 return 0;
635}
636
637static struct device_driver au1200_ide_driver = {
638 .name = "au1200-ide",
639 .bus = &platform_bus_type,
640 .probe = au_ide_probe,
641 .remove = au_ide_remove,
642};
643
644static int __init au_ide_init(void)
645{
646 return driver_register(&au1200_ide_driver);
647}
648
Jordan Crouse8f29e652005-12-15 02:17:46 +0100649static void __exit au_ide_exit(void)
Pete Popov26a940e2005-09-15 08:03:12 +0000650{
651 driver_unregister(&au1200_ide_driver);
652}
653
Pete Popov26a940e2005-09-15 08:03:12 +0000654MODULE_LICENSE("GPL");
655MODULE_DESCRIPTION("AU1200 IDE driver");
656
657module_init(au_ide_init);
658module_exit(au_ide_exit);