blob: a0d66480a797a9a99521ff781a8b481e8bd209a0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Support for IDE interfaces on PowerMacs.
Bartlomiej Zolnierkiewicz58f189f2008-02-01 23:09:33 +01003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * These IDE interfaces are memory-mapped and have a DBDMA channel
5 * for doing DMA.
6 *
7 * Copyright (C) 1998-2003 Paul Mackerras & Ben. Herrenschmidt
Bartlomiej Zolnierkiewicz8a972062008-07-16 20:33:38 +02008 * Copyright (C) 2007-2008 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 *
15 * Some code taken from drivers/ide/ide-dma.c:
16 *
17 * Copyright (c) 1995-1998 Mark Lord
18 *
19 * TODO: - Use pre-calculated (kauai) timing tables all the time and
20 * get rid of the "rounded" tables used previously, so we have the
21 * same table format for all controllers and can then just have one
22 * big table
23 *
24 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/types.h>
26#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/init.h>
28#include <linux/delay.h>
29#include <linux/ide.h>
30#include <linux/notifier.h>
31#include <linux/reboot.h>
32#include <linux/pci.h>
33#include <linux/adb.h>
34#include <linux/pmu.h>
35#include <linux/scatterlist.h>
36
37#include <asm/prom.h>
38#include <asm/io.h>
39#include <asm/dbdma.h>
40#include <asm/ide.h>
41#include <asm/pci-bridge.h>
42#include <asm/machdep.h>
43#include <asm/pmac_feature.h>
44#include <asm/sections.h>
45#include <asm/irq.h>
46
47#ifndef CONFIG_PPC64
48#include <asm/mediabay.h>
49#endif
50
Bartlomiej Zolnierkiewiczb36ba532008-07-23 19:55:49 +020051#define DRV_NAME "ide-pmac"
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#undef IDE_PMAC_DEBUG
54
55#define DMA_WAIT_TIMEOUT 50
56
57typedef struct pmac_ide_hwif {
58 unsigned long regbase;
59 int irq;
60 int kind;
61 int aapl_bus_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 unsigned mediabay : 1;
63 unsigned broken_dma : 1;
64 unsigned broken_dma_warn : 1;
65 struct device_node* node;
66 struct macio_dev *mdev;
67 u32 timings[4];
68 volatile u32 __iomem * *kauai_fcr;
69#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
70 /* Those fields are duplicating what is in hwif. We currently
71 * can't use the hwif ones because of some assumptions that are
72 * beeing done by the generic code about the kind of dma controller
73 * and format of the dma table. This will have to be fixed though.
74 */
75 volatile struct dbdma_regs __iomem * dma_regs;
76 struct dbdma_cmd* dma_table_cpu;
77#endif
78
79} pmac_ide_hwif_t;
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081enum {
82 controller_ohare, /* OHare based */
83 controller_heathrow, /* Heathrow/Paddington */
84 controller_kl_ata3, /* KeyLargo ATA-3 */
85 controller_kl_ata4, /* KeyLargo ATA-4 */
86 controller_un_ata6, /* UniNorth2 ATA-6 */
87 controller_k2_ata6, /* K2 ATA-6 */
88 controller_sh_ata6, /* Shasta ATA-6 */
89};
90
91static const char* model_name[] = {
92 "OHare ATA", /* OHare based */
93 "Heathrow ATA", /* Heathrow/Paddington */
94 "KeyLargo ATA-3", /* KeyLargo ATA-3 (MDMA only) */
95 "KeyLargo ATA-4", /* KeyLargo ATA-4 (UDMA/66) */
96 "UniNorth ATA-6", /* UniNorth2 ATA-6 (UDMA/100) */
97 "K2 ATA-6", /* K2 ATA-6 (UDMA/100) */
98 "Shasta ATA-6", /* Shasta ATA-6 (UDMA/133) */
99};
100
101/*
102 * Extra registers, both 32-bit little-endian
103 */
104#define IDE_TIMING_CONFIG 0x200
105#define IDE_INTERRUPT 0x300
106
107/* Kauai (U2) ATA has different register setup */
108#define IDE_KAUAI_PIO_CONFIG 0x200
109#define IDE_KAUAI_ULTRA_CONFIG 0x210
110#define IDE_KAUAI_POLL_CONFIG 0x220
111
112/*
113 * Timing configuration register definitions
114 */
115
116/* Number of IDE_SYSCLK_NS ticks, argument is in nanoseconds */
117#define SYSCLK_TICKS(t) (((t) + IDE_SYSCLK_NS - 1) / IDE_SYSCLK_NS)
118#define SYSCLK_TICKS_66(t) (((t) + IDE_SYSCLK_66_NS - 1) / IDE_SYSCLK_66_NS)
119#define IDE_SYSCLK_NS 30 /* 33Mhz cell */
120#define IDE_SYSCLK_66_NS 15 /* 66Mhz cell */
121
122/* 133Mhz cell, found in shasta.
123 * See comments about 100 Mhz Uninorth 2...
124 * Note that PIO_MASK and MDMA_MASK seem to overlap
125 */
126#define TR_133_PIOREG_PIO_MASK 0xff000fff
127#define TR_133_PIOREG_MDMA_MASK 0x00fff800
128#define TR_133_UDMAREG_UDMA_MASK 0x0003ffff
129#define TR_133_UDMAREG_UDMA_EN 0x00000001
130
131/* 100Mhz cell, found in Uninorth 2. I don't have much infos about
132 * this one yet, it appears as a pci device (106b/0033) on uninorth
133 * internal PCI bus and it's clock is controlled like gem or fw. It
134 * appears to be an evolution of keylargo ATA4 with a timing register
135 * extended to 2 32bits registers and a similar DBDMA channel. Other
136 * registers seem to exist but I can't tell much about them.
137 *
138 * So far, I'm using pre-calculated tables for this extracted from
139 * the values used by the MacOS X driver.
140 *
141 * The "PIO" register controls PIO and MDMA timings, the "ULTRA"
142 * register controls the UDMA timings. At least, it seems bit 0
143 * of this one enables UDMA vs. MDMA, and bits 4..7 are the
144 * cycle time in units of 10ns. Bits 8..15 are used by I don't
145 * know their meaning yet
146 */
147#define TR_100_PIOREG_PIO_MASK 0xff000fff
148#define TR_100_PIOREG_MDMA_MASK 0x00fff000
149#define TR_100_UDMAREG_UDMA_MASK 0x0000ffff
150#define TR_100_UDMAREG_UDMA_EN 0x00000001
151
152
153/* 66Mhz cell, found in KeyLargo. Can do ultra mode 0 to 2 on
154 * 40 connector cable and to 4 on 80 connector one.
155 * Clock unit is 15ns (66Mhz)
156 *
157 * 3 Values can be programmed:
158 * - Write data setup, which appears to match the cycle time. They
159 * also call it DIOW setup.
160 * - Ready to pause time (from spec)
161 * - Address setup. That one is weird. I don't see where exactly
162 * it fits in UDMA cycles, I got it's name from an obscure piece
163 * of commented out code in Darwin. They leave it to 0, we do as
164 * well, despite a comment that would lead to think it has a
165 * min value of 45ns.
166 * Apple also add 60ns to the write data setup (or cycle time ?) on
167 * reads.
168 */
169#define TR_66_UDMA_MASK 0xfff00000
170#define TR_66_UDMA_EN 0x00100000 /* Enable Ultra mode for DMA */
171#define TR_66_UDMA_ADDRSETUP_MASK 0xe0000000 /* Address setup */
172#define TR_66_UDMA_ADDRSETUP_SHIFT 29
173#define TR_66_UDMA_RDY2PAUS_MASK 0x1e000000 /* Ready 2 pause time */
174#define TR_66_UDMA_RDY2PAUS_SHIFT 25
175#define TR_66_UDMA_WRDATASETUP_MASK 0x01e00000 /* Write data setup time */
176#define TR_66_UDMA_WRDATASETUP_SHIFT 21
177#define TR_66_MDMA_MASK 0x000ffc00
178#define TR_66_MDMA_RECOVERY_MASK 0x000f8000
179#define TR_66_MDMA_RECOVERY_SHIFT 15
180#define TR_66_MDMA_ACCESS_MASK 0x00007c00
181#define TR_66_MDMA_ACCESS_SHIFT 10
182#define TR_66_PIO_MASK 0x000003ff
183#define TR_66_PIO_RECOVERY_MASK 0x000003e0
184#define TR_66_PIO_RECOVERY_SHIFT 5
185#define TR_66_PIO_ACCESS_MASK 0x0000001f
186#define TR_66_PIO_ACCESS_SHIFT 0
187
188/* 33Mhz cell, found in OHare, Heathrow (& Paddington) and KeyLargo
189 * Can do pio & mdma modes, clock unit is 30ns (33Mhz)
190 *
191 * The access time and recovery time can be programmed. Some older
192 * Darwin code base limit OHare to 150ns cycle time. I decided to do
193 * the same here fore safety against broken old hardware ;)
194 * The HalfTick bit, when set, adds half a clock (15ns) to the access
195 * time and removes one from recovery. It's not supported on KeyLargo
196 * implementation afaik. The E bit appears to be set for PIO mode 0 and
197 * is used to reach long timings used in this mode.
198 */
199#define TR_33_MDMA_MASK 0x003ff800
200#define TR_33_MDMA_RECOVERY_MASK 0x001f0000
201#define TR_33_MDMA_RECOVERY_SHIFT 16
202#define TR_33_MDMA_ACCESS_MASK 0x0000f800
203#define TR_33_MDMA_ACCESS_SHIFT 11
204#define TR_33_MDMA_HALFTICK 0x00200000
205#define TR_33_PIO_MASK 0x000007ff
206#define TR_33_PIO_E 0x00000400
207#define TR_33_PIO_RECOVERY_MASK 0x000003e0
208#define TR_33_PIO_RECOVERY_SHIFT 5
209#define TR_33_PIO_ACCESS_MASK 0x0000001f
210#define TR_33_PIO_ACCESS_SHIFT 0
211
212/*
213 * Interrupt register definitions
214 */
215#define IDE_INTR_DMA 0x80000000
216#define IDE_INTR_DEVICE 0x40000000
217
218/*
219 * FCR Register on Kauai. Not sure what bit 0x4 is ...
220 */
221#define KAUAI_FCR_UATA_MAGIC 0x00000004
222#define KAUAI_FCR_UATA_RESET_N 0x00000002
223#define KAUAI_FCR_UATA_ENABLE 0x00000001
224
225#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
226
227/* Rounded Multiword DMA timings
228 *
229 * I gave up finding a generic formula for all controller
230 * types and instead, built tables based on timing values
231 * used by Apple in Darwin's implementation.
232 */
233struct mdma_timings_t {
234 int accessTime;
235 int recoveryTime;
236 int cycleTime;
237};
238
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500239struct mdma_timings_t mdma_timings_33[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
241 { 240, 240, 480 },
242 { 180, 180, 360 },
243 { 135, 135, 270 },
244 { 120, 120, 240 },
245 { 105, 105, 210 },
246 { 90, 90, 180 },
247 { 75, 75, 150 },
248 { 75, 45, 120 },
249 { 0, 0, 0 }
250};
251
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500252struct mdma_timings_t mdma_timings_33k[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 { 240, 240, 480 },
255 { 180, 180, 360 },
256 { 150, 150, 300 },
257 { 120, 120, 240 },
258 { 90, 120, 210 },
259 { 90, 90, 180 },
260 { 90, 60, 150 },
261 { 90, 30, 120 },
262 { 0, 0, 0 }
263};
264
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500265struct mdma_timings_t mdma_timings_66[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 { 240, 240, 480 },
268 { 180, 180, 360 },
269 { 135, 135, 270 },
270 { 120, 120, 240 },
271 { 105, 105, 210 },
272 { 90, 90, 180 },
273 { 90, 75, 165 },
274 { 75, 45, 120 },
275 { 0, 0, 0 }
276};
277
278/* KeyLargo ATA-4 Ultra DMA timings (rounded) */
279struct {
280 int addrSetup; /* ??? */
281 int rdy2pause;
282 int wrDataSetup;
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500283} kl66_udma_timings[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
285 { 0, 180, 120 }, /* Mode 0 */
286 { 0, 150, 90 }, /* 1 */
287 { 0, 120, 60 }, /* 2 */
288 { 0, 90, 45 }, /* 3 */
289 { 0, 90, 30 } /* 4 */
290};
291
292/* UniNorth 2 ATA/100 timings */
293struct kauai_timing {
294 int cycle_time;
295 u32 timing_reg;
296};
297
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500298static struct kauai_timing kauai_pio_timings[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 { 930 , 0x08000fff },
301 { 600 , 0x08000a92 },
302 { 383 , 0x0800060f },
303 { 360 , 0x08000492 },
304 { 330 , 0x0800048f },
305 { 300 , 0x080003cf },
306 { 270 , 0x080003cc },
307 { 240 , 0x0800038b },
308 { 239 , 0x0800030c },
309 { 180 , 0x05000249 },
Bartlomiej Zolnierkiewiczc15d5d42007-10-11 23:54:01 +0200310 { 120 , 0x04000148 },
311 { 0 , 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312};
313
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500314static struct kauai_timing kauai_mdma_timings[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
316 { 1260 , 0x00fff000 },
317 { 480 , 0x00618000 },
318 { 360 , 0x00492000 },
319 { 270 , 0x0038e000 },
320 { 240 , 0x0030c000 },
321 { 210 , 0x002cb000 },
322 { 180 , 0x00249000 },
323 { 150 , 0x00209000 },
324 { 120 , 0x00148000 },
325 { 0 , 0 },
326};
327
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500328static struct kauai_timing kauai_udma_timings[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 { 120 , 0x000070c0 },
331 { 90 , 0x00005d80 },
332 { 60 , 0x00004a60 },
333 { 45 , 0x00003a50 },
334 { 30 , 0x00002a30 },
335 { 20 , 0x00002921 },
336 { 0 , 0 },
337};
338
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500339static struct kauai_timing shasta_pio_timings[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 { 930 , 0x08000fff },
342 { 600 , 0x0A000c97 },
343 { 383 , 0x07000712 },
344 { 360 , 0x040003cd },
345 { 330 , 0x040003cd },
346 { 300 , 0x040003cd },
347 { 270 , 0x040003cd },
348 { 240 , 0x040003cd },
349 { 239 , 0x040003cd },
350 { 180 , 0x0400028b },
Bartlomiej Zolnierkiewiczc15d5d42007-10-11 23:54:01 +0200351 { 120 , 0x0400010a },
352 { 0 , 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353};
354
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500355static struct kauai_timing shasta_mdma_timings[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 { 1260 , 0x00fff000 },
358 { 480 , 0x00820800 },
359 { 360 , 0x00820800 },
360 { 270 , 0x00820800 },
361 { 240 , 0x00820800 },
362 { 210 , 0x00820800 },
363 { 180 , 0x00820800 },
364 { 150 , 0x0028b000 },
365 { 120 , 0x001ca000 },
366 { 0 , 0 },
367};
368
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500369static struct kauai_timing shasta_udma133_timings[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
371 { 120 , 0x00035901, },
372 { 90 , 0x000348b1, },
373 { 60 , 0x00033881, },
374 { 45 , 0x00033861, },
375 { 30 , 0x00033841, },
376 { 20 , 0x00033031, },
377 { 15 , 0x00033021, },
378 { 0 , 0 },
379};
380
381
382static inline u32
383kauai_lookup_timing(struct kauai_timing* table, int cycle_time)
384{
385 int i;
386
387 for (i=0; table[i].cycle_time; i++)
388 if (cycle_time > table[i+1].cycle_time)
389 return table[i].timing_reg;
Bartlomiej Zolnierkiewicz90a87ea2007-10-13 17:47:48 +0200390 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return 0;
392}
393
394/* allow up to 256 DBDMA commands per xfer */
395#define MAX_DCMDS 256
396
397/*
398 * Wait 1s for disk to answer on IDE bus after a hard reset
399 * of the device (via GPIO/FCR).
400 *
401 * Some devices seem to "pollute" the bus even after dropping
402 * the BSY bit (typically some combo drives slave on the UDMA
403 * bus) after a hard reset. Since we hard reset all drives on
404 * KeyLargo ATA66, we have to keep that delay around. I may end
405 * up not hard resetting anymore on these and keep the delay only
406 * for older interfaces instead (we have to reset when coming
407 * from MacOS...) --BenH.
408 */
409#define IDE_WAKEUP_DELAY (1*HZ)
410
Bartlomiej Zolnierkiewicz0d071922008-04-26 22:25:22 +0200411static int pmac_ide_init_dma(ide_hwif_t *, const struct ide_port_info *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412static int pmac_ide_build_dmatable(ide_drive_t *drive, struct request *rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413static void pmac_ide_selectproc(ide_drive_t *drive);
414static void pmac_ide_kauai_selectproc(ide_drive_t *drive);
415
416#endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */
417
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200418#define PMAC_IDE_REG(x) \
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200419 ((void __iomem *)((drive)->hwif->io_ports.data_addr + (x)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421/*
422 * Apply the timings of the proper unit (master/slave) to the shared
423 * timing register when selecting that unit. This version is for
424 * ASICs with a single timing register
425 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500426static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427pmac_ide_selectproc(ide_drive_t *drive)
428{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +0200429 ide_hwif_t *hwif = drive->hwif;
430 pmac_ide_hwif_t *pmif =
431 (pmac_ide_hwif_t *)dev_get_drvdata(hwif->gendev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 if (pmif == NULL)
434 return;
435
436 if (drive->select.b.unit & 0x01)
437 writel(pmif->timings[1], PMAC_IDE_REG(IDE_TIMING_CONFIG));
438 else
439 writel(pmif->timings[0], PMAC_IDE_REG(IDE_TIMING_CONFIG));
440 (void)readl(PMAC_IDE_REG(IDE_TIMING_CONFIG));
441}
442
443/*
444 * Apply the timings of the proper unit (master/slave) to the shared
445 * timing register when selecting that unit. This version is for
446 * ASICs with a dual timing register (Kauai)
447 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500448static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449pmac_ide_kauai_selectproc(ide_drive_t *drive)
450{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +0200451 ide_hwif_t *hwif = drive->hwif;
452 pmac_ide_hwif_t *pmif =
453 (pmac_ide_hwif_t *)dev_get_drvdata(hwif->gendev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 if (pmif == NULL)
456 return;
457
458 if (drive->select.b.unit & 0x01) {
459 writel(pmif->timings[1], PMAC_IDE_REG(IDE_KAUAI_PIO_CONFIG));
460 writel(pmif->timings[3], PMAC_IDE_REG(IDE_KAUAI_ULTRA_CONFIG));
461 } else {
462 writel(pmif->timings[0], PMAC_IDE_REG(IDE_KAUAI_PIO_CONFIG));
463 writel(pmif->timings[2], PMAC_IDE_REG(IDE_KAUAI_ULTRA_CONFIG));
464 }
465 (void)readl(PMAC_IDE_REG(IDE_KAUAI_PIO_CONFIG));
466}
467
468/*
469 * Force an update of controller timing values for a given drive
470 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500471static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472pmac_ide_do_update_timings(ide_drive_t *drive)
473{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +0200474 ide_hwif_t *hwif = drive->hwif;
475 pmac_ide_hwif_t *pmif =
476 (pmac_ide_hwif_t *)dev_get_drvdata(hwif->gendev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 if (pmif == NULL)
479 return;
480
481 if (pmif->kind == controller_sh_ata6 ||
482 pmif->kind == controller_un_ata6 ||
483 pmif->kind == controller_k2_ata6)
484 pmac_ide_kauai_selectproc(drive);
485 else
486 pmac_ide_selectproc(drive);
487}
488
Bartlomiej Zolnierkiewiczf8c4bd0a2008-07-15 21:21:49 +0200489static void pmac_outbsync(ide_hwif_t *hwif, u8 value, unsigned long port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
491 u32 tmp;
492
493 writeb(value, (void __iomem *) port);
Bartlomiej Zolnierkiewiczf8c4bd0a2008-07-15 21:21:49 +0200494 tmp = readl((void __iomem *)(hwif->io_ports.data_addr
495 + IDE_TIMING_CONFIG));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Bartlomiej Zolnierkiewiczc6dfa862008-07-23 19:55:51 +0200498static void pmac_exec_command(ide_hwif_t *hwif, u8 cmd)
499{
500 writeb(cmd, (void __iomem *)hwif->io_ports.command_addr);
501 (void)readl((void __iomem *)(hwif->io_ports.data_addr
502 + IDE_TIMING_CONFIG));
503}
504
Bartlomiej Zolnierkiewicz6e6afb32008-07-23 19:55:52 +0200505static void pmac_set_irq(ide_hwif_t *hwif, int on)
506{
507 u8 ctl = ATA_DEVCTL_OBS;
508
509 if (on == 4) { /* hack for SRST */
510 ctl |= 4;
511 on &= ~4;
512 }
513
514 ctl |= on ? 0 : 2;
515
516 writeb(ctl, (void __iomem *)hwif->io_ports.ctl_addr);
517 (void)readl((void __iomem *)(hwif->io_ports.data_addr
518 + IDE_TIMING_CONFIG));
519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 * Old tuning functions (called on hdparm -p), sets up drive PIO timings
523 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500524static void
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200525pmac_ide_set_pio_mode(ide_drive_t *drive, const u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +0200527 ide_hwif_t *hwif = drive->hwif;
528 pmac_ide_hwif_t *pmif =
529 (pmac_ide_hwif_t *)dev_get_drvdata(hwif->gendev.parent);
Bartlomiej Zolnierkiewicz8a972062008-07-16 20:33:38 +0200530 struct ide_timing *tim = ide_timing_find_mode(XFER_PIO_0 + pio);
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200531 u32 *timings, t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 unsigned accessTicks, recTicks;
533 unsigned accessTime, recTime;
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200534 unsigned int cycle_time;
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (pmif == NULL)
537 return;
538
539 /* which drive is it ? */
540 timings = &pmif->timings[drive->select.b.unit & 0x01];
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200541 t = *timings;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200543 cycle_time = ide_pio_cycle_time(drive, pio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 switch (pmif->kind) {
546 case controller_sh_ata6: {
547 /* 133Mhz cell */
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200548 u32 tr = kauai_lookup_timing(shasta_pio_timings, cycle_time);
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200549 t = (t & ~TR_133_PIOREG_PIO_MASK) | tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 break;
551 }
552 case controller_un_ata6:
553 case controller_k2_ata6: {
554 /* 100Mhz cell */
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200555 u32 tr = kauai_lookup_timing(kauai_pio_timings, cycle_time);
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200556 t = (t & ~TR_100_PIOREG_PIO_MASK) | tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 break;
558 }
559 case controller_kl_ata4:
560 /* 66Mhz cell */
Bartlomiej Zolnierkiewicz8a972062008-07-16 20:33:38 +0200561 recTime = cycle_time - tim->active - tim->setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 recTime = max(recTime, 150U);
Bartlomiej Zolnierkiewicz8a972062008-07-16 20:33:38 +0200563 accessTime = tim->active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 accessTime = max(accessTime, 150U);
565 accessTicks = SYSCLK_TICKS_66(accessTime);
566 accessTicks = min(accessTicks, 0x1fU);
567 recTicks = SYSCLK_TICKS_66(recTime);
568 recTicks = min(recTicks, 0x1fU);
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200569 t = (t & ~TR_66_PIO_MASK) |
570 (accessTicks << TR_66_PIO_ACCESS_SHIFT) |
571 (recTicks << TR_66_PIO_RECOVERY_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 break;
573 default: {
574 /* 33Mhz cell */
575 int ebit = 0;
Bartlomiej Zolnierkiewicz8a972062008-07-16 20:33:38 +0200576 recTime = cycle_time - tim->active - tim->setup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 recTime = max(recTime, 150U);
Bartlomiej Zolnierkiewicz8a972062008-07-16 20:33:38 +0200578 accessTime = tim->active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 accessTime = max(accessTime, 150U);
580 accessTicks = SYSCLK_TICKS(accessTime);
581 accessTicks = min(accessTicks, 0x1fU);
582 accessTicks = max(accessTicks, 4U);
583 recTicks = SYSCLK_TICKS(recTime);
584 recTicks = min(recTicks, 0x1fU);
585 recTicks = max(recTicks, 5U) - 4;
586 if (recTicks > 9) {
587 recTicks--; /* guess, but it's only for PIO0, so... */
588 ebit = 1;
589 }
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200590 t = (t & ~TR_33_PIO_MASK) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 (accessTicks << TR_33_PIO_ACCESS_SHIFT) |
592 (recTicks << TR_33_PIO_RECOVERY_SHIFT);
593 if (ebit)
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200594 t |= TR_33_PIO_E;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 break;
596 }
597 }
598
599#ifdef IDE_PMAC_DEBUG
600 printk(KERN_ERR "%s: Set PIO timing for mode %d, reg: 0x%08x\n",
601 drive->name, pio, *timings);
602#endif
603
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200604 *timings = t;
Bartlomiej Zolnierkiewiczc15d5d42007-10-11 23:54:01 +0200605 pmac_ide_do_update_timings(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
609
610/*
611 * Calculate KeyLargo ATA/66 UDMA timings
612 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500613static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614set_timings_udma_ata4(u32 *timings, u8 speed)
615{
616 unsigned rdyToPauseTicks, wrDataSetupTicks, addrTicks;
617
618 if (speed > XFER_UDMA_4)
619 return 1;
620
621 rdyToPauseTicks = SYSCLK_TICKS_66(kl66_udma_timings[speed & 0xf].rdy2pause);
622 wrDataSetupTicks = SYSCLK_TICKS_66(kl66_udma_timings[speed & 0xf].wrDataSetup);
623 addrTicks = SYSCLK_TICKS_66(kl66_udma_timings[speed & 0xf].addrSetup);
624
625 *timings = ((*timings) & ~(TR_66_UDMA_MASK | TR_66_MDMA_MASK)) |
626 (wrDataSetupTicks << TR_66_UDMA_WRDATASETUP_SHIFT) |
627 (rdyToPauseTicks << TR_66_UDMA_RDY2PAUS_SHIFT) |
628 (addrTicks <<TR_66_UDMA_ADDRSETUP_SHIFT) |
629 TR_66_UDMA_EN;
630#ifdef IDE_PMAC_DEBUG
631 printk(KERN_ERR "ide_pmac: Set UDMA timing for mode %d, reg: 0x%08x\n",
632 speed & 0xf, *timings);
633#endif
634
635 return 0;
636}
637
638/*
639 * Calculate Kauai ATA/100 UDMA timings
640 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500641static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642set_timings_udma_ata6(u32 *pio_timings, u32 *ultra_timings, u8 speed)
643{
644 struct ide_timing *t = ide_timing_find_mode(speed);
645 u32 tr;
646
647 if (speed > XFER_UDMA_5 || t == NULL)
648 return 1;
649 tr = kauai_lookup_timing(kauai_udma_timings, (int)t->udma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 *ultra_timings = ((*ultra_timings) & ~TR_100_UDMAREG_UDMA_MASK) | tr;
651 *ultra_timings = (*ultra_timings) | TR_100_UDMAREG_UDMA_EN;
652
653 return 0;
654}
655
656/*
657 * Calculate Shasta ATA/133 UDMA timings
658 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500659static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660set_timings_udma_shasta(u32 *pio_timings, u32 *ultra_timings, u8 speed)
661{
662 struct ide_timing *t = ide_timing_find_mode(speed);
663 u32 tr;
664
665 if (speed > XFER_UDMA_6 || t == NULL)
666 return 1;
667 tr = kauai_lookup_timing(shasta_udma133_timings, (int)t->udma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 *ultra_timings = ((*ultra_timings) & ~TR_133_UDMAREG_UDMA_MASK) | tr;
669 *ultra_timings = (*ultra_timings) | TR_133_UDMAREG_UDMA_EN;
670
671 return 0;
672}
673
674/*
675 * Calculate MDMA timings for all cells
676 */
Bartlomiej Zolnierkiewicz90f72ec2007-10-13 17:47:48 +0200677static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678set_timings_mdma(ide_drive_t *drive, int intf_type, u32 *timings, u32 *timings2,
Bartlomiej Zolnierkiewicz90f72ec2007-10-13 17:47:48 +0200679 u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
681 int cycleTime, accessTime = 0, recTime = 0;
682 unsigned accessTicks, recTicks;
Bartlomiej Zolnierkiewicz90f72ec2007-10-13 17:47:48 +0200683 struct hd_driveid *id = drive->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 struct mdma_timings_t* tm = NULL;
685 int i;
686
687 /* Get default cycle time for mode */
688 switch(speed & 0xf) {
689 case 0: cycleTime = 480; break;
690 case 1: cycleTime = 150; break;
691 case 2: cycleTime = 120; break;
692 default:
Bartlomiej Zolnierkiewicz90f72ec2007-10-13 17:47:48 +0200693 BUG();
694 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
Bartlomiej Zolnierkiewicz90f72ec2007-10-13 17:47:48 +0200696
697 /* Check if drive provides explicit DMA cycle time */
698 if ((id->field_valid & 2) && id->eide_dma_time)
699 cycleTime = max_t(int, id->eide_dma_time, cycleTime);
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 /* OHare limits according to some old Apple sources */
702 if ((intf_type == controller_ohare) && (cycleTime < 150))
703 cycleTime = 150;
704 /* Get the proper timing array for this controller */
705 switch(intf_type) {
706 case controller_sh_ata6:
707 case controller_un_ata6:
708 case controller_k2_ata6:
709 break;
710 case controller_kl_ata4:
711 tm = mdma_timings_66;
712 break;
713 case controller_kl_ata3:
714 tm = mdma_timings_33k;
715 break;
716 default:
717 tm = mdma_timings_33;
718 break;
719 }
720 if (tm != NULL) {
721 /* Lookup matching access & recovery times */
722 i = -1;
723 for (;;) {
724 if (tm[i+1].cycleTime < cycleTime)
725 break;
726 i++;
727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 cycleTime = tm[i].cycleTime;
729 accessTime = tm[i].accessTime;
730 recTime = tm[i].recoveryTime;
731
732#ifdef IDE_PMAC_DEBUG
733 printk(KERN_ERR "%s: MDMA, cycleTime: %d, accessTime: %d, recTime: %d\n",
734 drive->name, cycleTime, accessTime, recTime);
735#endif
736 }
737 switch(intf_type) {
738 case controller_sh_ata6: {
739 /* 133Mhz cell */
740 u32 tr = kauai_lookup_timing(shasta_mdma_timings, cycleTime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 *timings = ((*timings) & ~TR_133_PIOREG_MDMA_MASK) | tr;
742 *timings2 = (*timings2) & ~TR_133_UDMAREG_UDMA_EN;
743 }
744 case controller_un_ata6:
745 case controller_k2_ata6: {
746 /* 100Mhz cell */
747 u32 tr = kauai_lookup_timing(kauai_mdma_timings, cycleTime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 *timings = ((*timings) & ~TR_100_PIOREG_MDMA_MASK) | tr;
749 *timings2 = (*timings2) & ~TR_100_UDMAREG_UDMA_EN;
750 }
751 break;
752 case controller_kl_ata4:
753 /* 66Mhz cell */
754 accessTicks = SYSCLK_TICKS_66(accessTime);
755 accessTicks = min(accessTicks, 0x1fU);
756 accessTicks = max(accessTicks, 0x1U);
757 recTicks = SYSCLK_TICKS_66(recTime);
758 recTicks = min(recTicks, 0x1fU);
759 recTicks = max(recTicks, 0x3U);
760 /* Clear out mdma bits and disable udma */
761 *timings = ((*timings) & ~(TR_66_MDMA_MASK | TR_66_UDMA_MASK)) |
762 (accessTicks << TR_66_MDMA_ACCESS_SHIFT) |
763 (recTicks << TR_66_MDMA_RECOVERY_SHIFT);
764 break;
765 case controller_kl_ata3:
766 /* 33Mhz cell on KeyLargo */
767 accessTicks = SYSCLK_TICKS(accessTime);
768 accessTicks = max(accessTicks, 1U);
769 accessTicks = min(accessTicks, 0x1fU);
770 accessTime = accessTicks * IDE_SYSCLK_NS;
771 recTicks = SYSCLK_TICKS(recTime);
772 recTicks = max(recTicks, 1U);
773 recTicks = min(recTicks, 0x1fU);
774 *timings = ((*timings) & ~TR_33_MDMA_MASK) |
775 (accessTicks << TR_33_MDMA_ACCESS_SHIFT) |
776 (recTicks << TR_33_MDMA_RECOVERY_SHIFT);
777 break;
778 default: {
779 /* 33Mhz cell on others */
780 int halfTick = 0;
781 int origAccessTime = accessTime;
782 int origRecTime = recTime;
783
784 accessTicks = SYSCLK_TICKS(accessTime);
785 accessTicks = max(accessTicks, 1U);
786 accessTicks = min(accessTicks, 0x1fU);
787 accessTime = accessTicks * IDE_SYSCLK_NS;
788 recTicks = SYSCLK_TICKS(recTime);
789 recTicks = max(recTicks, 2U) - 1;
790 recTicks = min(recTicks, 0x1fU);
791 recTime = (recTicks + 1) * IDE_SYSCLK_NS;
792 if ((accessTicks > 1) &&
793 ((accessTime - IDE_SYSCLK_NS/2) >= origAccessTime) &&
794 ((recTime - IDE_SYSCLK_NS/2) >= origRecTime)) {
795 halfTick = 1;
796 accessTicks--;
797 }
798 *timings = ((*timings) & ~TR_33_MDMA_MASK) |
799 (accessTicks << TR_33_MDMA_ACCESS_SHIFT) |
800 (recTicks << TR_33_MDMA_RECOVERY_SHIFT);
801 if (halfTick)
802 *timings |= TR_33_MDMA_HALFTICK;
803 }
804 }
805#ifdef IDE_PMAC_DEBUG
806 printk(KERN_ERR "%s: Set MDMA timing for mode %d, reg: 0x%08x\n",
807 drive->name, speed & 0xf, *timings);
808#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810#endif /* #ifdef CONFIG_BLK_DEV_IDEDMA_PMAC */
811
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200812static void pmac_ide_set_dma_mode(ide_drive_t *drive, const u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +0200814 ide_hwif_t *hwif = drive->hwif;
815 pmac_ide_hwif_t *pmif =
816 (pmac_ide_hwif_t *)dev_get_drvdata(hwif->gendev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 int unit = (drive->select.b.unit & 0x01);
818 int ret = 0;
Bartlomiej Zolnierkiewicz085798b2007-10-13 17:47:48 +0200819 u32 *timings, *timings2, tl[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 timings = &pmif->timings[unit];
822 timings2 = &pmif->timings[unit+2];
Bartlomiej Zolnierkiewicz085798b2007-10-13 17:47:48 +0200823
824 /* Copy timings to local image */
825 tl[0] = *timings;
826 tl[1] = *timings2;
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
Bartlomiej Zolnierkiewicz4db90a12008-01-25 22:17:18 +0100829 if (speed >= XFER_UDMA_0) {
830 if (pmif->kind == controller_kl_ata4)
831 ret = set_timings_udma_ata4(&tl[0], speed);
832 else if (pmif->kind == controller_un_ata6
833 || pmif->kind == controller_k2_ata6)
834 ret = set_timings_udma_ata6(&tl[0], &tl[1], speed);
835 else if (pmif->kind == controller_sh_ata6)
836 ret = set_timings_udma_shasta(&tl[0], &tl[1], speed);
837 else
838 ret = -1;
839 } else
840 set_timings_mdma(drive, pmif->kind, &tl[0], &tl[1], speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841#endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 if (ret)
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200843 return;
Bartlomiej Zolnierkiewicz085798b2007-10-13 17:47:48 +0200844
845 /* Apply timings to controller */
846 *timings = tl[0];
847 *timings2 = tl[1];
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 pmac_ide_do_update_timings(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
852/*
853 * Blast some well known "safe" values to the timing registers at init or
854 * wakeup from sleep time, before we do real calculation
855 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500856static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857sanitize_timings(pmac_ide_hwif_t *pmif)
858{
859 unsigned int value, value2 = 0;
860
861 switch(pmif->kind) {
862 case controller_sh_ata6:
863 value = 0x0a820c97;
864 value2 = 0x00033031;
865 break;
866 case controller_un_ata6:
867 case controller_k2_ata6:
868 value = 0x08618a92;
869 value2 = 0x00002921;
870 break;
871 case controller_kl_ata4:
872 value = 0x0008438c;
873 break;
874 case controller_kl_ata3:
875 value = 0x00084526;
876 break;
877 case controller_heathrow:
878 case controller_ohare:
879 default:
880 value = 0x00074526;
881 break;
882 }
883 pmif->timings[0] = pmif->timings[1] = value;
884 pmif->timings[2] = pmif->timings[3] = value2;
885}
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887/* Suspend call back, should be called after the child devices
888 * have actually been suspended
889 */
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +0200890static int pmac_ide_do_suspend(pmac_ide_hwif_t *pmif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 /* We clear the timings */
893 pmif->timings[0] = 0;
894 pmif->timings[1] = 0;
895
Benjamin Herrenschmidt616299a2005-05-01 08:58:41 -0700896 disable_irq(pmif->irq);
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 /* The media bay will handle itself just fine */
899 if (pmif->mediabay)
900 return 0;
901
902 /* Kauai has bus control FCRs directly here */
903 if (pmif->kauai_fcr) {
904 u32 fcr = readl(pmif->kauai_fcr);
905 fcr &= ~(KAUAI_FCR_UATA_RESET_N | KAUAI_FCR_UATA_ENABLE);
906 writel(fcr, pmif->kauai_fcr);
907 }
908
909 /* Disable the bus on older machines and the cell on kauai */
910 ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, pmif->node, pmif->aapl_bus_id,
911 0);
912
913 return 0;
914}
915
916/* Resume call back, should be called before the child devices
917 * are resumed
918 */
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +0200919static int pmac_ide_do_resume(pmac_ide_hwif_t *pmif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 /* Hard reset & re-enable controller (do we really need to reset ? -BenH) */
922 if (!pmif->mediabay) {
923 ppc_md.feature_call(PMAC_FTR_IDE_RESET, pmif->node, pmif->aapl_bus_id, 1);
924 ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, pmif->node, pmif->aapl_bus_id, 1);
925 msleep(10);
926 ppc_md.feature_call(PMAC_FTR_IDE_RESET, pmif->node, pmif->aapl_bus_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 /* Kauai has it different */
929 if (pmif->kauai_fcr) {
930 u32 fcr = readl(pmif->kauai_fcr);
931 fcr |= KAUAI_FCR_UATA_RESET_N | KAUAI_FCR_UATA_ENABLE;
932 writel(fcr, pmif->kauai_fcr);
933 }
Benjamin Herrenschmidt616299a2005-05-01 08:58:41 -0700934
935 msleep(jiffies_to_msecs(IDE_WAKEUP_DELAY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937
938 /* Sanitize drive timings */
939 sanitize_timings(pmif);
940
Benjamin Herrenschmidt616299a2005-05-01 08:58:41 -0700941 enable_irq(pmif->irq);
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return 0;
944}
945
Bartlomiej Zolnierkiewicz07a6c662008-06-15 21:00:23 +0200946static u8 pmac_ide_cable_detect(ide_hwif_t *hwif)
947{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +0200948 pmac_ide_hwif_t *pmif =
949 (pmac_ide_hwif_t *)dev_get_drvdata(hwif->gendev.parent);
Bartlomiej Zolnierkiewicz07a6c662008-06-15 21:00:23 +0200950 struct device_node *np = pmif->node;
951 const char *cable = of_get_property(np, "cable-type", NULL);
952
953 /* Get cable type from device-tree. */
954 if (cable && !strncmp(cable, "80-", 3))
955 return ATA_CBL_PATA80;
956
957 /*
958 * G5's seem to have incorrect cable type in device-tree.
959 * Let's assume they have a 80 conductor cable, this seem
960 * to be always the case unless the user mucked around.
961 */
962 if (of_device_is_compatible(np, "K2-UATA") ||
963 of_device_is_compatible(np, "shasta-ata"))
964 return ATA_CBL_PATA80;
965
966 return ATA_CBL_PATA40;
967}
968
Bartlomiej Zolnierkiewicz07eb1062008-07-23 19:55:49 +0200969static void pmac_ide_init_dev(ide_drive_t *drive)
970{
971 ide_hwif_t *hwif = drive->hwif;
972 pmac_ide_hwif_t *pmif =
973 (pmac_ide_hwif_t *)dev_get_drvdata(hwif->gendev.parent);
974
975 if (pmif->mediabay) {
976#ifdef CONFIG_PMAC_MEDIABAY
977 if (check_media_bay_by_base(pmif->regbase, MB_CD) == 0) {
978 drive->noprobe = 0;
979 return;
980 }
981#endif
982 drive->noprobe = 1;
983 }
984}
985
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200986static const struct ide_port_ops pmac_ide_ata6_port_ops = {
Bartlomiej Zolnierkiewicz07eb1062008-07-23 19:55:49 +0200987 .init_dev = pmac_ide_init_dev,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200988 .set_pio_mode = pmac_ide_set_pio_mode,
989 .set_dma_mode = pmac_ide_set_dma_mode,
990 .selectproc = pmac_ide_kauai_selectproc,
Bartlomiej Zolnierkiewicz07a6c662008-06-15 21:00:23 +0200991 .cable_detect = pmac_ide_cable_detect,
992};
993
994static const struct ide_port_ops pmac_ide_ata4_port_ops = {
Bartlomiej Zolnierkiewicz07eb1062008-07-23 19:55:49 +0200995 .init_dev = pmac_ide_init_dev,
Bartlomiej Zolnierkiewicz07a6c662008-06-15 21:00:23 +0200996 .set_pio_mode = pmac_ide_set_pio_mode,
997 .set_dma_mode = pmac_ide_set_dma_mode,
998 .selectproc = pmac_ide_selectproc,
999 .cable_detect = pmac_ide_cable_detect,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001000};
1001
1002static const struct ide_port_ops pmac_ide_port_ops = {
Bartlomiej Zolnierkiewicz07eb1062008-07-23 19:55:49 +02001003 .init_dev = pmac_ide_init_dev,
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001004 .set_pio_mode = pmac_ide_set_pio_mode,
1005 .set_dma_mode = pmac_ide_set_dma_mode,
1006 .selectproc = pmac_ide_selectproc,
1007};
1008
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +02001009static const struct ide_dma_ops pmac_dma_ops;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +02001010
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001011static const struct ide_port_info pmac_port_info = {
Bartlomiej Zolnierkiewiczb36ba532008-07-23 19:55:49 +02001012 .name = DRV_NAME,
Bartlomiej Zolnierkiewicz0d071922008-04-26 22:25:22 +02001013 .init_dma = pmac_ide_init_dma,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001014 .chipset = ide_pmac,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +02001015#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
1016 .dma_ops = &pmac_dma_ops,
1017#endif
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001018 .port_ops = &pmac_ide_port_ops,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001019 .host_flags = IDE_HFLAG_SET_PIO_MODE_KEEP_DMA |
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001020 IDE_HFLAG_POST_SET_MODE |
Bartlomiej Zolnierkiewiczc5dd43e2008-04-28 23:44:37 +02001021 IDE_HFLAG_MMIO |
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001022 IDE_HFLAG_UNMASK_IRQS,
1023 .pio_mask = ATA_PIO4,
1024 .mwdma_mask = ATA_MWDMA2,
1025};
1026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027/*
1028 * Setup, register & probe an IDE channel driven by this driver, this is
Bartlomiej Zolnierkiewicz5b164642008-06-15 21:00:23 +02001029 * called by one of the 2 probe functions (macio or PCI).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 */
Bartlomiej Zolnierkiewiczb36ba532008-07-23 19:55:49 +02001031static int __devinit pmac_ide_setup_device(pmac_ide_hwif_t *pmif, hw_regs_t *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
1033 struct device_node *np = pmif->node;
Jeremy Kerr018a3d12006-07-12 15:40:29 +10001034 const int *bidp;
Bartlomiej Zolnierkiewiczb36ba532008-07-23 19:55:49 +02001035 ide_hwif_t *hwif;
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +02001036 hw_regs_t *hws[] = { hw, NULL, NULL, NULL };
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001037 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001038 struct ide_port_info d = pmac_port_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 pmif->broken_dma = pmif->broken_dma_warn = 0;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001041 if (of_device_is_compatible(np, "shasta-ata")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 pmif->kind = controller_sh_ata6;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001043 d.port_ops = &pmac_ide_ata6_port_ops;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001044 d.udma_mask = ATA_UDMA6;
1045 } else if (of_device_is_compatible(np, "kauai-ata")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 pmif->kind = controller_un_ata6;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001047 d.port_ops = &pmac_ide_ata6_port_ops;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001048 d.udma_mask = ATA_UDMA5;
1049 } else if (of_device_is_compatible(np, "K2-UATA")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 pmif->kind = controller_k2_ata6;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001051 d.port_ops = &pmac_ide_ata6_port_ops;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001052 d.udma_mask = ATA_UDMA5;
1053 } else if (of_device_is_compatible(np, "keylargo-ata")) {
1054 if (strcmp(np->name, "ata-4") == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 pmif->kind = controller_kl_ata4;
Bartlomiej Zolnierkiewicz07a6c662008-06-15 21:00:23 +02001056 d.port_ops = &pmac_ide_ata4_port_ops;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001057 d.udma_mask = ATA_UDMA4;
1058 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 pmif->kind = controller_kl_ata3;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001060 } else if (of_device_is_compatible(np, "heathrow-ata")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 pmif->kind = controller_heathrow;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001062 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 pmif->kind = controller_ohare;
1064 pmif->broken_dma = 1;
1065 }
1066
Stephen Rothwell40cd3a42007-05-01 13:54:02 +10001067 bidp = of_get_property(np, "AAPL,bus-id", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 pmif->aapl_bus_id = bidp ? *bidp : 0;
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 /* On Kauai-type controllers, we make sure the FCR is correct */
1071 if (pmif->kauai_fcr)
1072 writel(KAUAI_FCR_UATA_MAGIC |
1073 KAUAI_FCR_UATA_RESET_N |
1074 KAUAI_FCR_UATA_ENABLE, pmif->kauai_fcr);
1075
1076 pmif->mediabay = 0;
1077
1078 /* Make sure we have sane timings */
1079 sanitize_timings(pmif);
1080
1081#ifndef CONFIG_PPC64
1082 /* XXX FIXME: Media bay stuff need re-organizing */
1083 if (np->parent && np->parent->name
1084 && strcasecmp(np->parent->name, "media-bay") == 0) {
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -07001085#ifdef CONFIG_PMAC_MEDIABAY
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +02001086 media_bay_set_ide_infos(np->parent, pmif->regbase, pmif->irq,
1087 hwif);
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -07001088#endif /* CONFIG_PMAC_MEDIABAY */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 pmif->mediabay = 1;
1090 if (!bidp)
1091 pmif->aapl_bus_id = 1;
1092 } else if (pmif->kind == controller_ohare) {
1093 /* The code below is having trouble on some ohare machines
1094 * (timing related ?). Until I can put my hand on one of these
1095 * units, I keep the old way
1096 */
1097 ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, np, 0, 1);
1098 } else
1099#endif
1100 {
1101 /* This is necessary to enable IDE when net-booting */
1102 ppc_md.feature_call(PMAC_FTR_IDE_RESET, np, pmif->aapl_bus_id, 1);
1103 ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, np, pmif->aapl_bus_id, 1);
1104 msleep(10);
1105 ppc_md.feature_call(PMAC_FTR_IDE_RESET, np, pmif->aapl_bus_id, 0);
1106 msleep(jiffies_to_msecs(IDE_WAKEUP_DELAY));
1107 }
1108
Bartlomiej Zolnierkiewiczb36ba532008-07-23 19:55:49 +02001109 printk(KERN_INFO DRV_NAME ": Found Apple %s controller (%s), "
1110 "bus ID %d%s, irq %d\n", model_name[pmif->kind],
1111 pmif->mdev ? "macio" : "PCI", pmif->aapl_bus_id,
1112 pmif->mediabay ? " (mediabay)" : "", hw->irq);
1113
1114 hwif = ide_find_port_slot(&d);
1115 if (hwif == NULL)
1116 return -ENOENT;
1117
Bartlomiej Zolnierkiewiczc6dfa862008-07-23 19:55:51 +02001118 hwif->exec_command = pmac_exec_command;
Bartlomiej Zolnierkiewicz6e6afb32008-07-23 19:55:52 +02001119 hwif->set_irq = pmac_set_irq;
Bartlomiej Zolnierkiewiczc6dfa862008-07-23 19:55:51 +02001120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 /* Setup MMIO ops */
1122 default_hwif_mmiops(hwif);
1123 hwif->OUTBSYNC = pmac_outbsync;
1124
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001125 idx[0] = hwif->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +02001127 ide_device_add(idx, &d, hws);
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +02001128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return 0;
1130}
1131
Bartlomiej Zolnierkiewicz5c586662008-04-18 00:46:29 +02001132static void __devinit pmac_ide_init_ports(hw_regs_t *hw, unsigned long base)
1133{
1134 int i;
1135
1136 for (i = 0; i < 8; ++i)
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001137 hw->io_ports_array[i] = base + i * 0x10;
1138
1139 hw->io_ports.ctl_addr = base + 0x160;
Bartlomiej Zolnierkiewicz5c586662008-04-18 00:46:29 +02001140}
1141
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142/*
1143 * Attach to a macio probed interface
1144 */
1145static int __devinit
Jeff Mahoney5e655772005-07-06 15:44:41 -04001146pmac_ide_macio_attach(struct macio_dev *mdev, const struct of_device_id *match)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
1148 void __iomem *base;
1149 unsigned long regbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 pmac_ide_hwif_t *pmif;
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001151 int irq, rc;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +01001152 hw_regs_t hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001154 pmif = kzalloc(sizeof(*pmif), GFP_KERNEL);
1155 if (pmif == NULL)
1156 return -ENOMEM;
1157
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001158 if (macio_resource_count(mdev) == 0) {
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001159 printk(KERN_WARNING "ide-pmac: no address for %s\n",
1160 mdev->ofdev.node->full_name);
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001161 rc = -ENXIO;
1162 goto out_free_pmif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164
1165 /* Request memory resource for IO ports */
1166 if (macio_request_resource(mdev, 0, "ide-pmac (ports)")) {
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001167 printk(KERN_ERR "ide-pmac: can't request MMIO resource for "
1168 "%s!\n", mdev->ofdev.node->full_name);
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001169 rc = -EBUSY;
1170 goto out_free_pmif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
1172
1173 /* XXX This is bogus. Should be fixed in the registry by checking
1174 * the kind of host interrupt controller, a bit like gatwick
1175 * fixes in irq.c. That works well enough for the single case
1176 * where that happens though...
1177 */
1178 if (macio_irq_count(mdev) == 0) {
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001179 printk(KERN_WARNING "ide-pmac: no intrs for device %s, using "
1180 "13\n", mdev->ofdev.node->full_name);
Benjamin Herrenschmidt69917c22006-09-22 12:56:30 +10001181 irq = irq_create_mapping(NULL, 13);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 } else
1183 irq = macio_irq(mdev, 0);
1184
1185 base = ioremap(macio_resource_start(mdev, 0), 0x400);
1186 regbase = (unsigned long) base;
1187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 pmif->mdev = mdev;
1189 pmif->node = mdev->ofdev.node;
1190 pmif->regbase = regbase;
1191 pmif->irq = irq;
1192 pmif->kauai_fcr = NULL;
1193#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
1194 if (macio_resource_count(mdev) >= 2) {
1195 if (macio_request_resource(mdev, 1, "ide-pmac (dma)"))
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001196 printk(KERN_WARNING "ide-pmac: can't request DMA "
1197 "resource for %s!\n",
1198 mdev->ofdev.node->full_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 else
1200 pmif->dma_regs = ioremap(macio_resource_start(mdev, 1), 0x1000);
1201 } else
1202 pmif->dma_regs = NULL;
1203#endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001204 dev_set_drvdata(&mdev->ofdev.dev, pmif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +01001206 memset(&hw, 0, sizeof(hw));
Bartlomiej Zolnierkiewicz5c586662008-04-18 00:46:29 +02001207 pmac_ide_init_ports(&hw, pmif->regbase);
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +01001208 hw.irq = irq;
Bartlomiej Zolnierkiewiczc56c5642008-07-16 20:33:40 +02001209 hw.dev = &mdev->bus->pdev->dev;
1210 hw.parent = &mdev->ofdev.dev;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +01001211
Bartlomiej Zolnierkiewiczb36ba532008-07-23 19:55:49 +02001212 rc = pmac_ide_setup_device(pmif, &hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 if (rc != 0) {
1214 /* The inteface is released to the common IDE layer */
1215 dev_set_drvdata(&mdev->ofdev.dev, NULL);
1216 iounmap(base);
Bartlomiej Zolnierkiewiczed908fa2008-02-01 23:09:32 +01001217 if (pmif->dma_regs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 iounmap(pmif->dma_regs);
Bartlomiej Zolnierkiewiczed908fa2008-02-01 23:09:32 +01001219 macio_release_resource(mdev, 1);
1220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 macio_release_resource(mdev, 0);
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001222 kfree(pmif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224
1225 return rc;
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001226
1227out_free_pmif:
1228 kfree(pmif);
1229 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230}
1231
1232static int
David Brownell8b4b8a22006-08-14 23:11:03 -07001233pmac_ide_macio_suspend(struct macio_dev *mdev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001235 pmac_ide_hwif_t *pmif =
1236 (pmac_ide_hwif_t *)dev_get_drvdata(&mdev->ofdev.dev);
1237 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
David Brownell8b4b8a22006-08-14 23:11:03 -07001239 if (mesg.event != mdev->ofdev.dev.power.power_state.event
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01001240 && (mesg.event & PM_EVENT_SLEEP)) {
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001241 rc = pmac_ide_do_suspend(pmif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 if (rc == 0)
David Brownell8b4b8a22006-08-14 23:11:03 -07001243 mdev->ofdev.dev.power.power_state = mesg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
1245
1246 return rc;
1247}
1248
1249static int
1250pmac_ide_macio_resume(struct macio_dev *mdev)
1251{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001252 pmac_ide_hwif_t *pmif =
1253 (pmac_ide_hwif_t *)dev_get_drvdata(&mdev->ofdev.dev);
1254 int rc = 0;
1255
Pavel Machekca078ba2005-09-03 15:56:57 -07001256 if (mdev->ofdev.dev.power.power_state.event != PM_EVENT_ON) {
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001257 rc = pmac_ide_do_resume(pmif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (rc == 0)
Pavel Machek829ca9a2005-09-03 15:56:56 -07001259 mdev->ofdev.dev.power.power_state = PMSG_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
1261
1262 return rc;
1263}
1264
1265/*
1266 * Attach to a PCI probed interface
1267 */
1268static int __devinit
1269pmac_ide_pci_attach(struct pci_dev *pdev, const struct pci_device_id *id)
1270{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 struct device_node *np;
1272 pmac_ide_hwif_t *pmif;
1273 void __iomem *base;
1274 unsigned long rbase, rlen;
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001275 int rc;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +01001276 hw_regs_t hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 np = pci_device_to_OF_node(pdev);
1279 if (np == NULL) {
1280 printk(KERN_ERR "ide-pmac: cannot find MacIO node for Kauai ATA interface\n");
1281 return -ENODEV;
1282 }
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001283
1284 pmif = kzalloc(sizeof(*pmif), GFP_KERNEL);
1285 if (pmif == NULL)
1286 return -ENOMEM;
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (pci_enable_device(pdev)) {
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001289 printk(KERN_WARNING "ide-pmac: Can't enable PCI device for "
1290 "%s\n", np->full_name);
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001291 rc = -ENXIO;
1292 goto out_free_pmif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 }
1294 pci_set_master(pdev);
1295
1296 if (pci_request_regions(pdev, "Kauai ATA")) {
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001297 printk(KERN_ERR "ide-pmac: Cannot obtain PCI resources for "
1298 "%s\n", np->full_name);
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001299 rc = -ENXIO;
1300 goto out_free_pmif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
1302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 pmif->mdev = NULL;
1304 pmif->node = np;
1305
1306 rbase = pci_resource_start(pdev, 0);
1307 rlen = pci_resource_len(pdev, 0);
1308
1309 base = ioremap(rbase, rlen);
1310 pmif->regbase = (unsigned long) base + 0x2000;
1311#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
1312 pmif->dma_regs = base + 0x1000;
1313#endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */
1314 pmif->kauai_fcr = base;
1315 pmif->irq = pdev->irq;
1316
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001317 pci_set_drvdata(pdev, pmif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +01001319 memset(&hw, 0, sizeof(hw));
Bartlomiej Zolnierkiewicz5c586662008-04-18 00:46:29 +02001320 pmac_ide_init_ports(&hw, pmif->regbase);
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +01001321 hw.irq = pdev->irq;
1322 hw.dev = &pdev->dev;
1323
Bartlomiej Zolnierkiewiczb36ba532008-07-23 19:55:49 +02001324 rc = pmac_ide_setup_device(pmif, &hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 if (rc != 0) {
1326 /* The inteface is released to the common IDE layer */
1327 pci_set_drvdata(pdev, NULL);
1328 iounmap(base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 pci_release_regions(pdev);
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001330 kfree(pmif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 }
1332
1333 return rc;
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001334
1335out_free_pmif:
1336 kfree(pmif);
1337 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338}
1339
1340static int
David Brownell8b4b8a22006-08-14 23:11:03 -07001341pmac_ide_pci_suspend(struct pci_dev *pdev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001343 pmac_ide_hwif_t *pmif = (pmac_ide_hwif_t *)pci_get_drvdata(pdev);
1344 int rc = 0;
1345
David Brownell8b4b8a22006-08-14 23:11:03 -07001346 if (mesg.event != pdev->dev.power.power_state.event
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01001347 && (mesg.event & PM_EVENT_SLEEP)) {
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001348 rc = pmac_ide_do_suspend(pmif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 if (rc == 0)
David Brownell8b4b8a22006-08-14 23:11:03 -07001350 pdev->dev.power.power_state = mesg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
1352
1353 return rc;
1354}
1355
1356static int
1357pmac_ide_pci_resume(struct pci_dev *pdev)
1358{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001359 pmac_ide_hwif_t *pmif = (pmac_ide_hwif_t *)pci_get_drvdata(pdev);
1360 int rc = 0;
1361
Pavel Machekca078ba2005-09-03 15:56:57 -07001362 if (pdev->dev.power.power_state.event != PM_EVENT_ON) {
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001363 rc = pmac_ide_do_resume(pmif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (rc == 0)
Pavel Machek829ca9a2005-09-03 15:56:56 -07001365 pdev->dev.power.power_state = PMSG_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 }
1367
1368 return rc;
1369}
1370
Jeff Mahoney5e655772005-07-06 15:44:41 -04001371static struct of_device_id pmac_ide_macio_match[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
1373 {
1374 .name = "IDE",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 },
1376 {
1377 .name = "ATA",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 },
1379 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 .type = "ide",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 },
1382 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 .type = "ata",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 },
1385 {},
1386};
1387
1388static struct macio_driver pmac_ide_macio_driver =
1389{
1390 .name = "ide-pmac",
1391 .match_table = pmac_ide_macio_match,
1392 .probe = pmac_ide_macio_attach,
1393 .suspend = pmac_ide_macio_suspend,
1394 .resume = pmac_ide_macio_resume,
1395};
1396
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +02001397static const struct pci_device_id pmac_ide_pci_match[] = {
1398 { PCI_VDEVICE(APPLE, PCI_DEVICE_ID_APPLE_UNI_N_ATA), 0 },
1399 { PCI_VDEVICE(APPLE, PCI_DEVICE_ID_APPLE_IPID_ATA100), 0 },
1400 { PCI_VDEVICE(APPLE, PCI_DEVICE_ID_APPLE_K2_ATA100), 0 },
1401 { PCI_VDEVICE(APPLE, PCI_DEVICE_ID_APPLE_SH_ATA), 0 },
1402 { PCI_VDEVICE(APPLE, PCI_DEVICE_ID_APPLE_IPID2_ATA), 0 },
Benjamin Herrenschmidt71e4eda2007-10-06 18:52:27 +10001403 {},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404};
1405
1406static struct pci_driver pmac_ide_pci_driver = {
1407 .name = "ide-pmac",
1408 .id_table = pmac_ide_pci_match,
1409 .probe = pmac_ide_pci_attach,
1410 .suspend = pmac_ide_pci_suspend,
1411 .resume = pmac_ide_pci_resume,
1412};
1413MODULE_DEVICE_TABLE(pci, pmac_ide_pci_match);
1414
Andrew Morton9e5755b2007-03-03 17:48:54 +01001415int __init pmac_ide_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
Andrew Morton9e5755b2007-03-03 17:48:54 +01001417 int error;
1418
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001419 if (!machine_is(powermac))
Andrew Morton9e5755b2007-03-03 17:48:54 +01001420 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422#ifdef CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST
Andrew Morton9e5755b2007-03-03 17:48:54 +01001423 error = pci_register_driver(&pmac_ide_pci_driver);
1424 if (error)
1425 goto out;
1426 error = macio_register_driver(&pmac_ide_macio_driver);
1427 if (error) {
1428 pci_unregister_driver(&pmac_ide_pci_driver);
1429 goto out;
1430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431#else
Andrew Morton9e5755b2007-03-03 17:48:54 +01001432 error = macio_register_driver(&pmac_ide_macio_driver);
1433 if (error)
1434 goto out;
1435 error = pci_register_driver(&pmac_ide_pci_driver);
1436 if (error) {
1437 macio_unregister_driver(&pmac_ide_macio_driver);
1438 goto out;
1439 }
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +11001440#endif
Andrew Morton9e5755b2007-03-03 17:48:54 +01001441out:
1442 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443}
1444
1445#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
1446
1447/*
1448 * pmac_ide_build_dmatable builds the DBDMA command list
1449 * for a transfer and sets the DBDMA channel to point to it.
1450 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -05001451static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452pmac_ide_build_dmatable(ide_drive_t *drive, struct request *rq)
1453{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001454 ide_hwif_t *hwif = drive->hwif;
1455 pmac_ide_hwif_t *pmif =
1456 (pmac_ide_hwif_t *)dev_get_drvdata(hwif->gendev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 struct dbdma_cmd *table;
1458 int i, count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 volatile struct dbdma_regs __iomem *dma = pmif->dma_regs;
1460 struct scatterlist *sg;
1461 int wr = (rq_data_dir(rq) == WRITE);
1462
1463 /* DMA table is already aligned */
1464 table = (struct dbdma_cmd *) pmif->dma_table_cpu;
1465
1466 /* Make sure DMA controller is stopped (necessary ?) */
1467 writel((RUN|PAUSE|FLUSH|WAKE|DEAD) << 16, &dma->control);
1468 while (readl(&dma->status) & RUN)
1469 udelay(1);
1470
1471 hwif->sg_nents = i = ide_build_sglist(drive, rq);
1472
1473 if (!i)
1474 return 0;
1475
1476 /* Build DBDMA commands list */
1477 sg = hwif->sg_table;
1478 while (i && sg_dma_len(sg)) {
1479 u32 cur_addr;
1480 u32 cur_len;
1481
1482 cur_addr = sg_dma_address(sg);
1483 cur_len = sg_dma_len(sg);
1484
1485 if (pmif->broken_dma && cur_addr & (L1_CACHE_BYTES - 1)) {
1486 if (pmif->broken_dma_warn == 0) {
Joe Perchesaca38a52007-11-27 21:35:55 +01001487 printk(KERN_WARNING "%s: DMA on non aligned address, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 "switching to PIO on Ohare chipset\n", drive->name);
1489 pmif->broken_dma_warn = 1;
1490 }
1491 goto use_pio_instead;
1492 }
1493 while (cur_len) {
1494 unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;
1495
1496 if (count++ >= MAX_DCMDS) {
1497 printk(KERN_WARNING "%s: DMA table too small\n",
1498 drive->name);
1499 goto use_pio_instead;
1500 }
1501 st_le16(&table->command, wr? OUTPUT_MORE: INPUT_MORE);
1502 st_le16(&table->req_count, tc);
1503 st_le32(&table->phy_addr, cur_addr);
1504 table->cmd_dep = 0;
1505 table->xfer_status = 0;
1506 table->res_count = 0;
1507 cur_addr += tc;
1508 cur_len -= tc;
1509 ++table;
1510 }
Jens Axboe55c16a72007-07-25 08:13:56 +02001511 sg = sg_next(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 i--;
1513 }
1514
1515 /* convert the last command to an input/output last command */
1516 if (count) {
1517 st_le16(&table[-1].command, wr? OUTPUT_LAST: INPUT_LAST);
1518 /* add the stop command to the end of the list */
1519 memset(table, 0, sizeof(struct dbdma_cmd));
1520 st_le16(&table->command, DBDMA_STOP);
1521 mb();
1522 writel(hwif->dmatable_dma, &dma->cmdptr);
1523 return 1;
1524 }
1525
1526 printk(KERN_DEBUG "%s: empty DMA table?\n", drive->name);
Bartlomiej Zolnierkiewiczf6fb7862008-02-01 23:09:31 +01001527
1528use_pio_instead:
1529 ide_destroy_dmatable(drive);
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 return 0; /* revert to PIO for this request */
1532}
1533
1534/* Teardown mappings after DMA has completed. */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -05001535static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536pmac_ide_destroy_dmatable (ide_drive_t *drive)
1537{
1538 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Bartlomiej Zolnierkiewiczf6fb7862008-02-01 23:09:31 +01001540 if (hwif->sg_nents) {
1541 ide_destroy_dmatable(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 hwif->sg_nents = 0;
1543 }
1544}
1545
1546/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 * Prepare a DMA transfer. We build the DMA table, adjust the timings for
1548 * a read on KeyLargo ATA/66 and mark us as waiting for DMA completion
1549 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -05001550static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551pmac_ide_dma_setup(ide_drive_t *drive)
1552{
1553 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001554 pmac_ide_hwif_t *pmif =
1555 (pmac_ide_hwif_t *)dev_get_drvdata(hwif->gendev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 struct request *rq = HWGROUP(drive)->rq;
1557 u8 unit = (drive->select.b.unit & 0x01);
1558 u8 ata4;
1559
1560 if (pmif == NULL)
1561 return 1;
1562 ata4 = (pmif->kind == controller_kl_ata4);
1563
1564 if (!pmac_ide_build_dmatable(drive, rq)) {
1565 ide_map_sg(drive, rq);
1566 return 1;
1567 }
1568
1569 /* Apple adds 60ns to wrDataSetup on reads */
1570 if (ata4 && (pmif->timings[unit] & TR_66_UDMA_EN)) {
1571 writel(pmif->timings[unit] + (!rq_data_dir(rq) ? 0x00800000UL : 0),
1572 PMAC_IDE_REG(IDE_TIMING_CONFIG));
1573 (void)readl(PMAC_IDE_REG(IDE_TIMING_CONFIG));
1574 }
1575
1576 drive->waiting_for_dma = 1;
1577
1578 return 0;
1579}
1580
Jon Loeligeraacaf9b2005-09-17 10:36:54 -05001581static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582pmac_ide_dma_exec_cmd(ide_drive_t *drive, u8 command)
1583{
1584 /* issue cmd to drive */
1585 ide_execute_command(drive, command, &ide_dma_intr, 2*WAIT_CMD, NULL);
1586}
1587
1588/*
1589 * Kick the DMA controller into life after the DMA command has been issued
1590 * to the drive.
1591 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -05001592static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593pmac_ide_dma_start(ide_drive_t *drive)
1594{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001595 ide_hwif_t *hwif = drive->hwif;
1596 pmac_ide_hwif_t *pmif =
1597 (pmac_ide_hwif_t *)dev_get_drvdata(hwif->gendev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 volatile struct dbdma_regs __iomem *dma;
1599
1600 dma = pmif->dma_regs;
1601
1602 writel((RUN << 16) | RUN, &dma->control);
1603 /* Make sure it gets to the controller right now */
1604 (void)readl(&dma->control);
1605}
1606
1607/*
1608 * After a DMA transfer, make sure the controller is stopped
1609 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -05001610static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611pmac_ide_dma_end (ide_drive_t *drive)
1612{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001613 ide_hwif_t *hwif = drive->hwif;
1614 pmac_ide_hwif_t *pmif =
1615 (pmac_ide_hwif_t *)dev_get_drvdata(hwif->gendev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 volatile struct dbdma_regs __iomem *dma;
1617 u32 dstat;
1618
1619 if (pmif == NULL)
1620 return 0;
1621 dma = pmif->dma_regs;
1622
1623 drive->waiting_for_dma = 0;
1624 dstat = readl(&dma->status);
1625 writel(((RUN|WAKE|DEAD) << 16), &dma->control);
1626 pmac_ide_destroy_dmatable(drive);
1627 /* verify good dma status. we don't check for ACTIVE beeing 0. We should...
1628 * in theory, but with ATAPI decices doing buffer underruns, that would
1629 * cause us to disable DMA, which isn't what we want
1630 */
1631 return (dstat & (RUN|DEAD)) != RUN;
1632}
1633
1634/*
1635 * Check out that the interrupt we got was for us. We can't always know this
1636 * for sure with those Apple interfaces (well, we could on the recent ones but
1637 * that's not implemented yet), on the other hand, we don't have shared interrupts
1638 * so it's not really a problem
1639 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -05001640static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641pmac_ide_dma_test_irq (ide_drive_t *drive)
1642{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001643 ide_hwif_t *hwif = drive->hwif;
1644 pmac_ide_hwif_t *pmif =
1645 (pmac_ide_hwif_t *)dev_get_drvdata(hwif->gendev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 volatile struct dbdma_regs __iomem *dma;
1647 unsigned long status, timeout;
1648
1649 if (pmif == NULL)
1650 return 0;
1651 dma = pmif->dma_regs;
1652
1653 /* We have to things to deal with here:
1654 *
1655 * - The dbdma won't stop if the command was started
1656 * but completed with an error without transferring all
1657 * datas. This happens when bad blocks are met during
1658 * a multi-block transfer.
1659 *
1660 * - The dbdma fifo hasn't yet finished flushing to
1661 * to system memory when the disk interrupt occurs.
1662 *
1663 */
1664
1665 /* If ACTIVE is cleared, the STOP command have passed and
1666 * transfer is complete.
1667 */
1668 status = readl(&dma->status);
1669 if (!(status & ACTIVE))
1670 return 1;
1671 if (!drive->waiting_for_dma)
1672 printk(KERN_WARNING "ide%d, ide_dma_test_irq \
1673 called while not waiting\n", HWIF(drive)->index);
1674
1675 /* If dbdma didn't execute the STOP command yet, the
1676 * active bit is still set. We consider that we aren't
1677 * sharing interrupts (which is hopefully the case with
1678 * those controllers) and so we just try to flush the
1679 * channel for pending data in the fifo
1680 */
1681 udelay(1);
1682 writel((FLUSH << 16) | FLUSH, &dma->control);
1683 timeout = 0;
1684 for (;;) {
1685 udelay(1);
1686 status = readl(&dma->status);
1687 if ((status & FLUSH) == 0)
1688 break;
1689 if (++timeout > 100) {
1690 printk(KERN_WARNING "ide%d, ide_dma_test_irq \
1691 timeout flushing channel\n", HWIF(drive)->index);
1692 break;
1693 }
1694 }
1695 return 1;
1696}
1697
Bartlomiej Zolnierkiewicz15ce9262008-01-26 20:13:03 +01001698static void pmac_ide_dma_host_set(ide_drive_t *drive, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700}
1701
Sergei Shtylyov841d2a92007-07-09 23:17:54 +02001702static void
1703pmac_ide_dma_lost_irq (ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001705 ide_hwif_t *hwif = drive->hwif;
1706 pmac_ide_hwif_t *pmif =
1707 (pmac_ide_hwif_t *)dev_get_drvdata(hwif->gendev.parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 volatile struct dbdma_regs __iomem *dma;
1709 unsigned long status;
1710
1711 if (pmif == NULL)
Sergei Shtylyov841d2a92007-07-09 23:17:54 +02001712 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 dma = pmif->dma_regs;
1714
1715 status = readl(&dma->status);
1716 printk(KERN_ERR "ide-pmac lost interrupt, dma status: %lx\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717}
1718
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +02001719static const struct ide_dma_ops pmac_dma_ops = {
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +02001720 .dma_host_set = pmac_ide_dma_host_set,
1721 .dma_setup = pmac_ide_dma_setup,
1722 .dma_exec_cmd = pmac_ide_dma_exec_cmd,
1723 .dma_start = pmac_ide_dma_start,
1724 .dma_end = pmac_ide_dma_end,
1725 .dma_test_irq = pmac_ide_dma_test_irq,
1726 .dma_timeout = ide_dma_timeout,
1727 .dma_lost_irq = pmac_ide_dma_lost_irq,
1728};
1729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730/*
1731 * Allocate the data structures needed for using DMA with an interface
1732 * and fill the proper list of functions pointers
1733 */
Bartlomiej Zolnierkiewicz0d071922008-04-26 22:25:22 +02001734static int __devinit pmac_ide_init_dma(ide_hwif_t *hwif,
1735 const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736{
Bartlomiej Zolnierkiewicz7b8797a2008-07-23 19:55:48 +02001737 pmac_ide_hwif_t *pmif =
1738 (pmac_ide_hwif_t *)dev_get_drvdata(hwif->gendev.parent);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +01001739 struct pci_dev *dev = to_pci_dev(hwif->dev);
1740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 /* We won't need pci_dev if we switch to generic consistent
1742 * DMA routines ...
1743 */
Bartlomiej Zolnierkiewicz0d071922008-04-26 22:25:22 +02001744 if (dev == NULL || pmif->dma_regs == 0)
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001745 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 /*
1747 * Allocate space for the DBDMA commands.
1748 * The +2 is +1 for the stop command and +1 to allow for
1749 * aligning the start address to a multiple of 16 bytes.
1750 */
1751 pmif->dma_table_cpu = (struct dbdma_cmd*)pci_alloc_consistent(
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +01001752 dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 (MAX_DCMDS + 2) * sizeof(struct dbdma_cmd),
1754 &hwif->dmatable_dma);
1755 if (pmif->dma_table_cpu == NULL) {
1756 printk(KERN_ERR "%s: unable to allocate DMA command list\n",
1757 hwif->name);
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001758 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 }
1760
Bartlomiej Zolnierkiewicz4f52a322008-01-26 20:13:08 +01001761 hwif->sg_max_nents = MAX_DCMDS;
1762
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001763 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
Bartlomiej Zolnierkiewicz0d071922008-04-26 22:25:22 +02001765#else
1766static int __devinit pmac_ide_init_dma(ide_hwif_t *hwif,
1767 const struct ide_port_info *d)
1768{
1769 return -EOPNOTSUPP;
1770}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771#endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +01001772
1773module_init(pmac_ide_probe);
Adrian Bunkde9facb2008-04-02 21:22:03 +02001774
1775MODULE_LICENSE("GPL");