blob: 185faa0dce94b52745abd8d68fd51c86b6463521 [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 Zolnierkiewiczc15d5d42007-10-11 23:54:01 +02008 * Copyright (C) 2007 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
Andrew Morton9e5755b2007-03-03 17:48:54 +010051#include "../ide-timing.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#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;
62 unsigned cable_80 : 1;
63 unsigned mediabay : 1;
64 unsigned broken_dma : 1;
65 unsigned broken_dma_warn : 1;
66 struct device_node* node;
67 struct macio_dev *mdev;
68 u32 timings[4];
69 volatile u32 __iomem * *kauai_fcr;
70#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
71 /* Those fields are duplicating what is in hwif. We currently
72 * can't use the hwif ones because of some assumptions that are
73 * beeing done by the generic code about the kind of dma controller
74 * and format of the dma table. This will have to be fixed though.
75 */
76 volatile struct dbdma_regs __iomem * dma_regs;
77 struct dbdma_cmd* dma_table_cpu;
78#endif
79
80} pmac_ide_hwif_t;
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082enum {
83 controller_ohare, /* OHare based */
84 controller_heathrow, /* Heathrow/Paddington */
85 controller_kl_ata3, /* KeyLargo ATA-3 */
86 controller_kl_ata4, /* KeyLargo ATA-4 */
87 controller_un_ata6, /* UniNorth2 ATA-6 */
88 controller_k2_ata6, /* K2 ATA-6 */
89 controller_sh_ata6, /* Shasta ATA-6 */
90};
91
92static const char* model_name[] = {
93 "OHare ATA", /* OHare based */
94 "Heathrow ATA", /* Heathrow/Paddington */
95 "KeyLargo ATA-3", /* KeyLargo ATA-3 (MDMA only) */
96 "KeyLargo ATA-4", /* KeyLargo ATA-4 (UDMA/66) */
97 "UniNorth ATA-6", /* UniNorth2 ATA-6 (UDMA/100) */
98 "K2 ATA-6", /* K2 ATA-6 (UDMA/100) */
99 "Shasta ATA-6", /* Shasta ATA-6 (UDMA/133) */
100};
101
102/*
103 * Extra registers, both 32-bit little-endian
104 */
105#define IDE_TIMING_CONFIG 0x200
106#define IDE_INTERRUPT 0x300
107
108/* Kauai (U2) ATA has different register setup */
109#define IDE_KAUAI_PIO_CONFIG 0x200
110#define IDE_KAUAI_ULTRA_CONFIG 0x210
111#define IDE_KAUAI_POLL_CONFIG 0x220
112
113/*
114 * Timing configuration register definitions
115 */
116
117/* Number of IDE_SYSCLK_NS ticks, argument is in nanoseconds */
118#define SYSCLK_TICKS(t) (((t) + IDE_SYSCLK_NS - 1) / IDE_SYSCLK_NS)
119#define SYSCLK_TICKS_66(t) (((t) + IDE_SYSCLK_66_NS - 1) / IDE_SYSCLK_66_NS)
120#define IDE_SYSCLK_NS 30 /* 33Mhz cell */
121#define IDE_SYSCLK_66_NS 15 /* 66Mhz cell */
122
123/* 133Mhz cell, found in shasta.
124 * See comments about 100 Mhz Uninorth 2...
125 * Note that PIO_MASK and MDMA_MASK seem to overlap
126 */
127#define TR_133_PIOREG_PIO_MASK 0xff000fff
128#define TR_133_PIOREG_MDMA_MASK 0x00fff800
129#define TR_133_UDMAREG_UDMA_MASK 0x0003ffff
130#define TR_133_UDMAREG_UDMA_EN 0x00000001
131
132/* 100Mhz cell, found in Uninorth 2. I don't have much infos about
133 * this one yet, it appears as a pci device (106b/0033) on uninorth
134 * internal PCI bus and it's clock is controlled like gem or fw. It
135 * appears to be an evolution of keylargo ATA4 with a timing register
136 * extended to 2 32bits registers and a similar DBDMA channel. Other
137 * registers seem to exist but I can't tell much about them.
138 *
139 * So far, I'm using pre-calculated tables for this extracted from
140 * the values used by the MacOS X driver.
141 *
142 * The "PIO" register controls PIO and MDMA timings, the "ULTRA"
143 * register controls the UDMA timings. At least, it seems bit 0
144 * of this one enables UDMA vs. MDMA, and bits 4..7 are the
145 * cycle time in units of 10ns. Bits 8..15 are used by I don't
146 * know their meaning yet
147 */
148#define TR_100_PIOREG_PIO_MASK 0xff000fff
149#define TR_100_PIOREG_MDMA_MASK 0x00fff000
150#define TR_100_UDMAREG_UDMA_MASK 0x0000ffff
151#define TR_100_UDMAREG_UDMA_EN 0x00000001
152
153
154/* 66Mhz cell, found in KeyLargo. Can do ultra mode 0 to 2 on
155 * 40 connector cable and to 4 on 80 connector one.
156 * Clock unit is 15ns (66Mhz)
157 *
158 * 3 Values can be programmed:
159 * - Write data setup, which appears to match the cycle time. They
160 * also call it DIOW setup.
161 * - Ready to pause time (from spec)
162 * - Address setup. That one is weird. I don't see where exactly
163 * it fits in UDMA cycles, I got it's name from an obscure piece
164 * of commented out code in Darwin. They leave it to 0, we do as
165 * well, despite a comment that would lead to think it has a
166 * min value of 45ns.
167 * Apple also add 60ns to the write data setup (or cycle time ?) on
168 * reads.
169 */
170#define TR_66_UDMA_MASK 0xfff00000
171#define TR_66_UDMA_EN 0x00100000 /* Enable Ultra mode for DMA */
172#define TR_66_UDMA_ADDRSETUP_MASK 0xe0000000 /* Address setup */
173#define TR_66_UDMA_ADDRSETUP_SHIFT 29
174#define TR_66_UDMA_RDY2PAUS_MASK 0x1e000000 /* Ready 2 pause time */
175#define TR_66_UDMA_RDY2PAUS_SHIFT 25
176#define TR_66_UDMA_WRDATASETUP_MASK 0x01e00000 /* Write data setup time */
177#define TR_66_UDMA_WRDATASETUP_SHIFT 21
178#define TR_66_MDMA_MASK 0x000ffc00
179#define TR_66_MDMA_RECOVERY_MASK 0x000f8000
180#define TR_66_MDMA_RECOVERY_SHIFT 15
181#define TR_66_MDMA_ACCESS_MASK 0x00007c00
182#define TR_66_MDMA_ACCESS_SHIFT 10
183#define TR_66_PIO_MASK 0x000003ff
184#define TR_66_PIO_RECOVERY_MASK 0x000003e0
185#define TR_66_PIO_RECOVERY_SHIFT 5
186#define TR_66_PIO_ACCESS_MASK 0x0000001f
187#define TR_66_PIO_ACCESS_SHIFT 0
188
189/* 33Mhz cell, found in OHare, Heathrow (& Paddington) and KeyLargo
190 * Can do pio & mdma modes, clock unit is 30ns (33Mhz)
191 *
192 * The access time and recovery time can be programmed. Some older
193 * Darwin code base limit OHare to 150ns cycle time. I decided to do
194 * the same here fore safety against broken old hardware ;)
195 * The HalfTick bit, when set, adds half a clock (15ns) to the access
196 * time and removes one from recovery. It's not supported on KeyLargo
197 * implementation afaik. The E bit appears to be set for PIO mode 0 and
198 * is used to reach long timings used in this mode.
199 */
200#define TR_33_MDMA_MASK 0x003ff800
201#define TR_33_MDMA_RECOVERY_MASK 0x001f0000
202#define TR_33_MDMA_RECOVERY_SHIFT 16
203#define TR_33_MDMA_ACCESS_MASK 0x0000f800
204#define TR_33_MDMA_ACCESS_SHIFT 11
205#define TR_33_MDMA_HALFTICK 0x00200000
206#define TR_33_PIO_MASK 0x000007ff
207#define TR_33_PIO_E 0x00000400
208#define TR_33_PIO_RECOVERY_MASK 0x000003e0
209#define TR_33_PIO_RECOVERY_SHIFT 5
210#define TR_33_PIO_ACCESS_MASK 0x0000001f
211#define TR_33_PIO_ACCESS_SHIFT 0
212
213/*
214 * Interrupt register definitions
215 */
216#define IDE_INTR_DMA 0x80000000
217#define IDE_INTR_DEVICE 0x40000000
218
219/*
220 * FCR Register on Kauai. Not sure what bit 0x4 is ...
221 */
222#define KAUAI_FCR_UATA_MAGIC 0x00000004
223#define KAUAI_FCR_UATA_RESET_N 0x00000002
224#define KAUAI_FCR_UATA_ENABLE 0x00000001
225
226#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
227
228/* Rounded Multiword DMA timings
229 *
230 * I gave up finding a generic formula for all controller
231 * types and instead, built tables based on timing values
232 * used by Apple in Darwin's implementation.
233 */
234struct mdma_timings_t {
235 int accessTime;
236 int recoveryTime;
237 int cycleTime;
238};
239
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500240struct mdma_timings_t mdma_timings_33[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 { 240, 240, 480 },
243 { 180, 180, 360 },
244 { 135, 135, 270 },
245 { 120, 120, 240 },
246 { 105, 105, 210 },
247 { 90, 90, 180 },
248 { 75, 75, 150 },
249 { 75, 45, 120 },
250 { 0, 0, 0 }
251};
252
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500253struct mdma_timings_t mdma_timings_33k[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 { 240, 240, 480 },
256 { 180, 180, 360 },
257 { 150, 150, 300 },
258 { 120, 120, 240 },
259 { 90, 120, 210 },
260 { 90, 90, 180 },
261 { 90, 60, 150 },
262 { 90, 30, 120 },
263 { 0, 0, 0 }
264};
265
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500266struct mdma_timings_t mdma_timings_66[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
268 { 240, 240, 480 },
269 { 180, 180, 360 },
270 { 135, 135, 270 },
271 { 120, 120, 240 },
272 { 105, 105, 210 },
273 { 90, 90, 180 },
274 { 90, 75, 165 },
275 { 75, 45, 120 },
276 { 0, 0, 0 }
277};
278
279/* KeyLargo ATA-4 Ultra DMA timings (rounded) */
280struct {
281 int addrSetup; /* ??? */
282 int rdy2pause;
283 int wrDataSetup;
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500284} kl66_udma_timings[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 { 0, 180, 120 }, /* Mode 0 */
287 { 0, 150, 90 }, /* 1 */
288 { 0, 120, 60 }, /* 2 */
289 { 0, 90, 45 }, /* 3 */
290 { 0, 90, 30 } /* 4 */
291};
292
293/* UniNorth 2 ATA/100 timings */
294struct kauai_timing {
295 int cycle_time;
296 u32 timing_reg;
297};
298
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500299static struct kauai_timing kauai_pio_timings[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 { 930 , 0x08000fff },
302 { 600 , 0x08000a92 },
303 { 383 , 0x0800060f },
304 { 360 , 0x08000492 },
305 { 330 , 0x0800048f },
306 { 300 , 0x080003cf },
307 { 270 , 0x080003cc },
308 { 240 , 0x0800038b },
309 { 239 , 0x0800030c },
310 { 180 , 0x05000249 },
Bartlomiej Zolnierkiewiczc15d5d42007-10-11 23:54:01 +0200311 { 120 , 0x04000148 },
312 { 0 , 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313};
314
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500315static struct kauai_timing kauai_mdma_timings[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 { 1260 , 0x00fff000 },
318 { 480 , 0x00618000 },
319 { 360 , 0x00492000 },
320 { 270 , 0x0038e000 },
321 { 240 , 0x0030c000 },
322 { 210 , 0x002cb000 },
323 { 180 , 0x00249000 },
324 { 150 , 0x00209000 },
325 { 120 , 0x00148000 },
326 { 0 , 0 },
327};
328
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500329static struct kauai_timing kauai_udma_timings[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
331 { 120 , 0x000070c0 },
332 { 90 , 0x00005d80 },
333 { 60 , 0x00004a60 },
334 { 45 , 0x00003a50 },
335 { 30 , 0x00002a30 },
336 { 20 , 0x00002921 },
337 { 0 , 0 },
338};
339
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500340static struct kauai_timing shasta_pio_timings[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 { 930 , 0x08000fff },
343 { 600 , 0x0A000c97 },
344 { 383 , 0x07000712 },
345 { 360 , 0x040003cd },
346 { 330 , 0x040003cd },
347 { 300 , 0x040003cd },
348 { 270 , 0x040003cd },
349 { 240 , 0x040003cd },
350 { 239 , 0x040003cd },
351 { 180 , 0x0400028b },
Bartlomiej Zolnierkiewiczc15d5d42007-10-11 23:54:01 +0200352 { 120 , 0x0400010a },
353 { 0 , 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354};
355
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500356static struct kauai_timing shasta_mdma_timings[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 { 1260 , 0x00fff000 },
359 { 480 , 0x00820800 },
360 { 360 , 0x00820800 },
361 { 270 , 0x00820800 },
362 { 240 , 0x00820800 },
363 { 210 , 0x00820800 },
364 { 180 , 0x00820800 },
365 { 150 , 0x0028b000 },
366 { 120 , 0x001ca000 },
367 { 0 , 0 },
368};
369
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500370static struct kauai_timing shasta_udma133_timings[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 { 120 , 0x00035901, },
373 { 90 , 0x000348b1, },
374 { 60 , 0x00033881, },
375 { 45 , 0x00033861, },
376 { 30 , 0x00033841, },
377 { 20 , 0x00033031, },
378 { 15 , 0x00033021, },
379 { 0 , 0 },
380};
381
382
383static inline u32
384kauai_lookup_timing(struct kauai_timing* table, int cycle_time)
385{
386 int i;
387
388 for (i=0; table[i].cycle_time; i++)
389 if (cycle_time > table[i+1].cycle_time)
390 return table[i].timing_reg;
Bartlomiej Zolnierkiewicz90a87ea2007-10-13 17:47:48 +0200391 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return 0;
393}
394
395/* allow up to 256 DBDMA commands per xfer */
396#define MAX_DCMDS 256
397
398/*
399 * Wait 1s for disk to answer on IDE bus after a hard reset
400 * of the device (via GPIO/FCR).
401 *
402 * Some devices seem to "pollute" the bus even after dropping
403 * the BSY bit (typically some combo drives slave on the UDMA
404 * bus) after a hard reset. Since we hard reset all drives on
405 * KeyLargo ATA66, we have to keep that delay around. I may end
406 * up not hard resetting anymore on these and keep the delay only
407 * for older interfaces instead (we have to reset when coming
408 * from MacOS...) --BenH.
409 */
410#define IDE_WAKEUP_DELAY (1*HZ)
411
Bartlomiej Zolnierkiewicz0d071922008-04-26 22:25:22 +0200412static int pmac_ide_init_dma(ide_hwif_t *, const struct ide_port_info *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413static int pmac_ide_build_dmatable(ide_drive_t *drive, struct request *rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414static void pmac_ide_selectproc(ide_drive_t *drive);
415static void pmac_ide_kauai_selectproc(ide_drive_t *drive);
416
417#endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */
418
Bartlomiej Zolnierkiewicz23579a22008-04-18 00:46:26 +0200419#define PMAC_IDE_REG(x) \
420 ((void __iomem *)((drive)->hwif->io_ports[IDE_DATA_OFFSET] + (x)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422/*
423 * Apply the timings of the proper unit (master/slave) to the shared
424 * timing register when selecting that unit. This version is for
425 * ASICs with a single timing register
426 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500427static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428pmac_ide_selectproc(ide_drive_t *drive)
429{
430 pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
431
432 if (pmif == NULL)
433 return;
434
435 if (drive->select.b.unit & 0x01)
436 writel(pmif->timings[1], PMAC_IDE_REG(IDE_TIMING_CONFIG));
437 else
438 writel(pmif->timings[0], PMAC_IDE_REG(IDE_TIMING_CONFIG));
439 (void)readl(PMAC_IDE_REG(IDE_TIMING_CONFIG));
440}
441
442/*
443 * Apply the timings of the proper unit (master/slave) to the shared
444 * timing register when selecting that unit. This version is for
445 * ASICs with a dual timing register (Kauai)
446 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500447static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448pmac_ide_kauai_selectproc(ide_drive_t *drive)
449{
450 pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
451
452 if (pmif == NULL)
453 return;
454
455 if (drive->select.b.unit & 0x01) {
456 writel(pmif->timings[1], PMAC_IDE_REG(IDE_KAUAI_PIO_CONFIG));
457 writel(pmif->timings[3], PMAC_IDE_REG(IDE_KAUAI_ULTRA_CONFIG));
458 } else {
459 writel(pmif->timings[0], PMAC_IDE_REG(IDE_KAUAI_PIO_CONFIG));
460 writel(pmif->timings[2], PMAC_IDE_REG(IDE_KAUAI_ULTRA_CONFIG));
461 }
462 (void)readl(PMAC_IDE_REG(IDE_KAUAI_PIO_CONFIG));
463}
464
465/*
466 * Force an update of controller timing values for a given drive
467 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500468static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469pmac_ide_do_update_timings(ide_drive_t *drive)
470{
471 pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
472
473 if (pmif == NULL)
474 return;
475
476 if (pmif->kind == controller_sh_ata6 ||
477 pmif->kind == controller_un_ata6 ||
478 pmif->kind == controller_k2_ata6)
479 pmac_ide_kauai_selectproc(drive);
480 else
481 pmac_ide_selectproc(drive);
482}
483
484static void
485pmac_outbsync(ide_drive_t *drive, u8 value, unsigned long port)
486{
487 u32 tmp;
488
489 writeb(value, (void __iomem *) port);
490 tmp = readl(PMAC_IDE_REG(IDE_TIMING_CONFIG));
491}
492
493/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 * Old tuning functions (called on hdparm -p), sets up drive PIO timings
495 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500496static void
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200497pmac_ide_set_pio_mode(ide_drive_t *drive, const u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200499 u32 *timings, t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 unsigned accessTicks, recTicks;
501 unsigned accessTime, recTime;
502 pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200503 unsigned int cycle_time;
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (pmif == NULL)
506 return;
507
508 /* which drive is it ? */
509 timings = &pmif->timings[drive->select.b.unit & 0x01];
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200510 t = *timings;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200512 cycle_time = ide_pio_cycle_time(drive, pio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 switch (pmif->kind) {
515 case controller_sh_ata6: {
516 /* 133Mhz cell */
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200517 u32 tr = kauai_lookup_timing(shasta_pio_timings, cycle_time);
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200518 t = (t & ~TR_133_PIOREG_PIO_MASK) | tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 break;
520 }
521 case controller_un_ata6:
522 case controller_k2_ata6: {
523 /* 100Mhz cell */
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200524 u32 tr = kauai_lookup_timing(kauai_pio_timings, cycle_time);
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200525 t = (t & ~TR_100_PIOREG_PIO_MASK) | tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 break;
527 }
528 case controller_kl_ata4:
529 /* 66Mhz cell */
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200530 recTime = cycle_time - ide_pio_timings[pio].active_time
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 - ide_pio_timings[pio].setup_time;
532 recTime = max(recTime, 150U);
533 accessTime = ide_pio_timings[pio].active_time;
534 accessTime = max(accessTime, 150U);
535 accessTicks = SYSCLK_TICKS_66(accessTime);
536 accessTicks = min(accessTicks, 0x1fU);
537 recTicks = SYSCLK_TICKS_66(recTime);
538 recTicks = min(recTicks, 0x1fU);
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200539 t = (t & ~TR_66_PIO_MASK) |
540 (accessTicks << TR_66_PIO_ACCESS_SHIFT) |
541 (recTicks << TR_66_PIO_RECOVERY_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 break;
543 default: {
544 /* 33Mhz cell */
545 int ebit = 0;
Bartlomiej Zolnierkiewicz7dd00082007-07-20 01:11:56 +0200546 recTime = cycle_time - ide_pio_timings[pio].active_time
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 - ide_pio_timings[pio].setup_time;
548 recTime = max(recTime, 150U);
549 accessTime = ide_pio_timings[pio].active_time;
550 accessTime = max(accessTime, 150U);
551 accessTicks = SYSCLK_TICKS(accessTime);
552 accessTicks = min(accessTicks, 0x1fU);
553 accessTicks = max(accessTicks, 4U);
554 recTicks = SYSCLK_TICKS(recTime);
555 recTicks = min(recTicks, 0x1fU);
556 recTicks = max(recTicks, 5U) - 4;
557 if (recTicks > 9) {
558 recTicks--; /* guess, but it's only for PIO0, so... */
559 ebit = 1;
560 }
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200561 t = (t & ~TR_33_PIO_MASK) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 (accessTicks << TR_33_PIO_ACCESS_SHIFT) |
563 (recTicks << TR_33_PIO_RECOVERY_SHIFT);
564 if (ebit)
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200565 t |= TR_33_PIO_E;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 break;
567 }
568 }
569
570#ifdef IDE_PMAC_DEBUG
571 printk(KERN_ERR "%s: Set PIO timing for mode %d, reg: 0x%08x\n",
572 drive->name, pio, *timings);
573#endif
574
Benjamin Herrenschmidt0b46ff22007-10-13 17:47:50 +0200575 *timings = t;
Bartlomiej Zolnierkiewiczc15d5d42007-10-11 23:54:01 +0200576 pmac_ide_do_update_timings(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
579#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
580
581/*
582 * Calculate KeyLargo ATA/66 UDMA timings
583 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500584static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585set_timings_udma_ata4(u32 *timings, u8 speed)
586{
587 unsigned rdyToPauseTicks, wrDataSetupTicks, addrTicks;
588
589 if (speed > XFER_UDMA_4)
590 return 1;
591
592 rdyToPauseTicks = SYSCLK_TICKS_66(kl66_udma_timings[speed & 0xf].rdy2pause);
593 wrDataSetupTicks = SYSCLK_TICKS_66(kl66_udma_timings[speed & 0xf].wrDataSetup);
594 addrTicks = SYSCLK_TICKS_66(kl66_udma_timings[speed & 0xf].addrSetup);
595
596 *timings = ((*timings) & ~(TR_66_UDMA_MASK | TR_66_MDMA_MASK)) |
597 (wrDataSetupTicks << TR_66_UDMA_WRDATASETUP_SHIFT) |
598 (rdyToPauseTicks << TR_66_UDMA_RDY2PAUS_SHIFT) |
599 (addrTicks <<TR_66_UDMA_ADDRSETUP_SHIFT) |
600 TR_66_UDMA_EN;
601#ifdef IDE_PMAC_DEBUG
602 printk(KERN_ERR "ide_pmac: Set UDMA timing for mode %d, reg: 0x%08x\n",
603 speed & 0xf, *timings);
604#endif
605
606 return 0;
607}
608
609/*
610 * Calculate Kauai ATA/100 UDMA timings
611 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500612static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613set_timings_udma_ata6(u32 *pio_timings, u32 *ultra_timings, u8 speed)
614{
615 struct ide_timing *t = ide_timing_find_mode(speed);
616 u32 tr;
617
618 if (speed > XFER_UDMA_5 || t == NULL)
619 return 1;
620 tr = kauai_lookup_timing(kauai_udma_timings, (int)t->udma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 *ultra_timings = ((*ultra_timings) & ~TR_100_UDMAREG_UDMA_MASK) | tr;
622 *ultra_timings = (*ultra_timings) | TR_100_UDMAREG_UDMA_EN;
623
624 return 0;
625}
626
627/*
628 * Calculate Shasta ATA/133 UDMA timings
629 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500630static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631set_timings_udma_shasta(u32 *pio_timings, u32 *ultra_timings, u8 speed)
632{
633 struct ide_timing *t = ide_timing_find_mode(speed);
634 u32 tr;
635
636 if (speed > XFER_UDMA_6 || t == NULL)
637 return 1;
638 tr = kauai_lookup_timing(shasta_udma133_timings, (int)t->udma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 *ultra_timings = ((*ultra_timings) & ~TR_133_UDMAREG_UDMA_MASK) | tr;
640 *ultra_timings = (*ultra_timings) | TR_133_UDMAREG_UDMA_EN;
641
642 return 0;
643}
644
645/*
646 * Calculate MDMA timings for all cells
647 */
Bartlomiej Zolnierkiewicz90f72ec2007-10-13 17:47:48 +0200648static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649set_timings_mdma(ide_drive_t *drive, int intf_type, u32 *timings, u32 *timings2,
Bartlomiej Zolnierkiewicz90f72ec2007-10-13 17:47:48 +0200650 u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 int cycleTime, accessTime = 0, recTime = 0;
653 unsigned accessTicks, recTicks;
Bartlomiej Zolnierkiewicz90f72ec2007-10-13 17:47:48 +0200654 struct hd_driveid *id = drive->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 struct mdma_timings_t* tm = NULL;
656 int i;
657
658 /* Get default cycle time for mode */
659 switch(speed & 0xf) {
660 case 0: cycleTime = 480; break;
661 case 1: cycleTime = 150; break;
662 case 2: cycleTime = 120; break;
663 default:
Bartlomiej Zolnierkiewicz90f72ec2007-10-13 17:47:48 +0200664 BUG();
665 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
Bartlomiej Zolnierkiewicz90f72ec2007-10-13 17:47:48 +0200667
668 /* Check if drive provides explicit DMA cycle time */
669 if ((id->field_valid & 2) && id->eide_dma_time)
670 cycleTime = max_t(int, id->eide_dma_time, cycleTime);
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 /* OHare limits according to some old Apple sources */
673 if ((intf_type == controller_ohare) && (cycleTime < 150))
674 cycleTime = 150;
675 /* Get the proper timing array for this controller */
676 switch(intf_type) {
677 case controller_sh_ata6:
678 case controller_un_ata6:
679 case controller_k2_ata6:
680 break;
681 case controller_kl_ata4:
682 tm = mdma_timings_66;
683 break;
684 case controller_kl_ata3:
685 tm = mdma_timings_33k;
686 break;
687 default:
688 tm = mdma_timings_33;
689 break;
690 }
691 if (tm != NULL) {
692 /* Lookup matching access & recovery times */
693 i = -1;
694 for (;;) {
695 if (tm[i+1].cycleTime < cycleTime)
696 break;
697 i++;
698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 cycleTime = tm[i].cycleTime;
700 accessTime = tm[i].accessTime;
701 recTime = tm[i].recoveryTime;
702
703#ifdef IDE_PMAC_DEBUG
704 printk(KERN_ERR "%s: MDMA, cycleTime: %d, accessTime: %d, recTime: %d\n",
705 drive->name, cycleTime, accessTime, recTime);
706#endif
707 }
708 switch(intf_type) {
709 case controller_sh_ata6: {
710 /* 133Mhz cell */
711 u32 tr = kauai_lookup_timing(shasta_mdma_timings, cycleTime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 *timings = ((*timings) & ~TR_133_PIOREG_MDMA_MASK) | tr;
713 *timings2 = (*timings2) & ~TR_133_UDMAREG_UDMA_EN;
714 }
715 case controller_un_ata6:
716 case controller_k2_ata6: {
717 /* 100Mhz cell */
718 u32 tr = kauai_lookup_timing(kauai_mdma_timings, cycleTime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 *timings = ((*timings) & ~TR_100_PIOREG_MDMA_MASK) | tr;
720 *timings2 = (*timings2) & ~TR_100_UDMAREG_UDMA_EN;
721 }
722 break;
723 case controller_kl_ata4:
724 /* 66Mhz cell */
725 accessTicks = SYSCLK_TICKS_66(accessTime);
726 accessTicks = min(accessTicks, 0x1fU);
727 accessTicks = max(accessTicks, 0x1U);
728 recTicks = SYSCLK_TICKS_66(recTime);
729 recTicks = min(recTicks, 0x1fU);
730 recTicks = max(recTicks, 0x3U);
731 /* Clear out mdma bits and disable udma */
732 *timings = ((*timings) & ~(TR_66_MDMA_MASK | TR_66_UDMA_MASK)) |
733 (accessTicks << TR_66_MDMA_ACCESS_SHIFT) |
734 (recTicks << TR_66_MDMA_RECOVERY_SHIFT);
735 break;
736 case controller_kl_ata3:
737 /* 33Mhz cell on KeyLargo */
738 accessTicks = SYSCLK_TICKS(accessTime);
739 accessTicks = max(accessTicks, 1U);
740 accessTicks = min(accessTicks, 0x1fU);
741 accessTime = accessTicks * IDE_SYSCLK_NS;
742 recTicks = SYSCLK_TICKS(recTime);
743 recTicks = max(recTicks, 1U);
744 recTicks = min(recTicks, 0x1fU);
745 *timings = ((*timings) & ~TR_33_MDMA_MASK) |
746 (accessTicks << TR_33_MDMA_ACCESS_SHIFT) |
747 (recTicks << TR_33_MDMA_RECOVERY_SHIFT);
748 break;
749 default: {
750 /* 33Mhz cell on others */
751 int halfTick = 0;
752 int origAccessTime = accessTime;
753 int origRecTime = recTime;
754
755 accessTicks = SYSCLK_TICKS(accessTime);
756 accessTicks = max(accessTicks, 1U);
757 accessTicks = min(accessTicks, 0x1fU);
758 accessTime = accessTicks * IDE_SYSCLK_NS;
759 recTicks = SYSCLK_TICKS(recTime);
760 recTicks = max(recTicks, 2U) - 1;
761 recTicks = min(recTicks, 0x1fU);
762 recTime = (recTicks + 1) * IDE_SYSCLK_NS;
763 if ((accessTicks > 1) &&
764 ((accessTime - IDE_SYSCLK_NS/2) >= origAccessTime) &&
765 ((recTime - IDE_SYSCLK_NS/2) >= origRecTime)) {
766 halfTick = 1;
767 accessTicks--;
768 }
769 *timings = ((*timings) & ~TR_33_MDMA_MASK) |
770 (accessTicks << TR_33_MDMA_ACCESS_SHIFT) |
771 (recTicks << TR_33_MDMA_RECOVERY_SHIFT);
772 if (halfTick)
773 *timings |= TR_33_MDMA_HALFTICK;
774 }
775 }
776#ifdef IDE_PMAC_DEBUG
777 printk(KERN_ERR "%s: Set MDMA timing for mode %d, reg: 0x%08x\n",
778 drive->name, speed & 0xf, *timings);
779#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781#endif /* #ifdef CONFIG_BLK_DEV_IDEDMA_PMAC */
782
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200783static void pmac_ide_set_dma_mode(ide_drive_t *drive, const u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
785 int unit = (drive->select.b.unit & 0x01);
786 int ret = 0;
787 pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
Bartlomiej Zolnierkiewicz085798b2007-10-13 17:47:48 +0200788 u32 *timings, *timings2, tl[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 timings = &pmif->timings[unit];
791 timings2 = &pmif->timings[unit+2];
Bartlomiej Zolnierkiewicz085798b2007-10-13 17:47:48 +0200792
793 /* Copy timings to local image */
794 tl[0] = *timings;
795 tl[1] = *timings2;
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
Bartlomiej Zolnierkiewicz4db90a12008-01-25 22:17:18 +0100798 if (speed >= XFER_UDMA_0) {
799 if (pmif->kind == controller_kl_ata4)
800 ret = set_timings_udma_ata4(&tl[0], speed);
801 else if (pmif->kind == controller_un_ata6
802 || pmif->kind == controller_k2_ata6)
803 ret = set_timings_udma_ata6(&tl[0], &tl[1], speed);
804 else if (pmif->kind == controller_sh_ata6)
805 ret = set_timings_udma_shasta(&tl[0], &tl[1], speed);
806 else
807 ret = -1;
808 } else
809 set_timings_mdma(drive, pmif->kind, &tl[0], &tl[1], speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810#endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (ret)
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200812 return;
Bartlomiej Zolnierkiewicz085798b2007-10-13 17:47:48 +0200813
814 /* Apply timings to controller */
815 *timings = tl[0];
816 *timings2 = tl[1];
817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 pmac_ide_do_update_timings(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
821/*
822 * Blast some well known "safe" values to the timing registers at init or
823 * wakeup from sleep time, before we do real calculation
824 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -0500825static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826sanitize_timings(pmac_ide_hwif_t *pmif)
827{
828 unsigned int value, value2 = 0;
829
830 switch(pmif->kind) {
831 case controller_sh_ata6:
832 value = 0x0a820c97;
833 value2 = 0x00033031;
834 break;
835 case controller_un_ata6:
836 case controller_k2_ata6:
837 value = 0x08618a92;
838 value2 = 0x00002921;
839 break;
840 case controller_kl_ata4:
841 value = 0x0008438c;
842 break;
843 case controller_kl_ata3:
844 value = 0x00084526;
845 break;
846 case controller_heathrow:
847 case controller_ohare:
848 default:
849 value = 0x00074526;
850 break;
851 }
852 pmif->timings[0] = pmif->timings[1] = value;
853 pmif->timings[2] = pmif->timings[3] = value2;
854}
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856/* Suspend call back, should be called after the child devices
857 * have actually been suspended
858 */
859static int
860pmac_ide_do_suspend(ide_hwif_t *hwif)
861{
862 pmac_ide_hwif_t *pmif = (pmac_ide_hwif_t *)hwif->hwif_data;
863
864 /* We clear the timings */
865 pmif->timings[0] = 0;
866 pmif->timings[1] = 0;
867
Benjamin Herrenschmidt616299a2005-05-01 08:58:41 -0700868 disable_irq(pmif->irq);
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 /* The media bay will handle itself just fine */
871 if (pmif->mediabay)
872 return 0;
873
874 /* Kauai has bus control FCRs directly here */
875 if (pmif->kauai_fcr) {
876 u32 fcr = readl(pmif->kauai_fcr);
877 fcr &= ~(KAUAI_FCR_UATA_RESET_N | KAUAI_FCR_UATA_ENABLE);
878 writel(fcr, pmif->kauai_fcr);
879 }
880
881 /* Disable the bus on older machines and the cell on kauai */
882 ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, pmif->node, pmif->aapl_bus_id,
883 0);
884
885 return 0;
886}
887
888/* Resume call back, should be called before the child devices
889 * are resumed
890 */
891static int
892pmac_ide_do_resume(ide_hwif_t *hwif)
893{
894 pmac_ide_hwif_t *pmif = (pmac_ide_hwif_t *)hwif->hwif_data;
895
896 /* Hard reset & re-enable controller (do we really need to reset ? -BenH) */
897 if (!pmif->mediabay) {
898 ppc_md.feature_call(PMAC_FTR_IDE_RESET, pmif->node, pmif->aapl_bus_id, 1);
899 ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, pmif->node, pmif->aapl_bus_id, 1);
900 msleep(10);
901 ppc_md.feature_call(PMAC_FTR_IDE_RESET, pmif->node, pmif->aapl_bus_id, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 /* Kauai has it different */
904 if (pmif->kauai_fcr) {
905 u32 fcr = readl(pmif->kauai_fcr);
906 fcr |= KAUAI_FCR_UATA_RESET_N | KAUAI_FCR_UATA_ENABLE;
907 writel(fcr, pmif->kauai_fcr);
908 }
Benjamin Herrenschmidt616299a2005-05-01 08:58:41 -0700909
910 msleep(jiffies_to_msecs(IDE_WAKEUP_DELAY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 }
912
913 /* Sanitize drive timings */
914 sanitize_timings(pmif);
915
Benjamin Herrenschmidt616299a2005-05-01 08:58:41 -0700916 enable_irq(pmif->irq);
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return 0;
919}
920
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200921static const struct ide_port_ops pmac_ide_ata6_port_ops = {
922 .set_pio_mode = pmac_ide_set_pio_mode,
923 .set_dma_mode = pmac_ide_set_dma_mode,
924 .selectproc = pmac_ide_kauai_selectproc,
925};
926
927static const struct ide_port_ops pmac_ide_port_ops = {
928 .set_pio_mode = pmac_ide_set_pio_mode,
929 .set_dma_mode = pmac_ide_set_dma_mode,
930 .selectproc = pmac_ide_selectproc,
931};
932
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +0200933static const struct ide_dma_ops pmac_dma_ops;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200934
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100935static const struct ide_port_info pmac_port_info = {
Bartlomiej Zolnierkiewicz0d071922008-04-26 22:25:22 +0200936 .init_dma = pmac_ide_init_dma,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100937 .chipset = ide_pmac,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200938#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
939 .dma_ops = &pmac_dma_ops,
940#endif
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200941 .port_ops = &pmac_ide_port_ops,
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100942 .host_flags = IDE_HFLAG_SET_PIO_MODE_KEEP_DMA |
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100943 IDE_HFLAG_POST_SET_MODE |
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100944 IDE_HFLAG_UNMASK_IRQS,
945 .pio_mask = ATA_PIO4,
946 .mwdma_mask = ATA_MWDMA2,
947};
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949/*
950 * Setup, register & probe an IDE channel driven by this driver, this is
951 * called by one of the 2 probe functions (macio or PCI). Note that a channel
952 * that ends up beeing free of any device is not kept around by this driver
953 * (it is kept in 2.4). This introduce an interface numbering change on some
954 * rare machines unfortunately, but it's better this way.
955 */
Adrian Bunk468e4682008-02-01 23:09:16 +0100956static int __devinit
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +0100957pmac_ide_setup_device(pmac_ide_hwif_t *pmif, ide_hwif_t *hwif, hw_regs_t *hw)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
959 struct device_node *np = pmif->node;
Jeremy Kerr018a3d12006-07-12 15:40:29 +1000960 const int *bidp;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200961 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100962 struct ide_port_info d = pmac_port_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 pmif->cable_80 = 0;
965 pmif->broken_dma = pmif->broken_dma_warn = 0;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100966 if (of_device_is_compatible(np, "shasta-ata")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 pmif->kind = controller_sh_ata6;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200968 d.port_ops = &pmac_ide_ata6_port_ops;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100969 d.udma_mask = ATA_UDMA6;
970 } else if (of_device_is_compatible(np, "kauai-ata")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 pmif->kind = controller_un_ata6;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200972 d.port_ops = &pmac_ide_ata6_port_ops;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100973 d.udma_mask = ATA_UDMA5;
974 } else if (of_device_is_compatible(np, "K2-UATA")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 pmif->kind = controller_k2_ata6;
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200976 d.port_ops = &pmac_ide_ata6_port_ops;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100977 d.udma_mask = ATA_UDMA5;
978 } else if (of_device_is_compatible(np, "keylargo-ata")) {
979 if (strcmp(np->name, "ata-4") == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 pmif->kind = controller_kl_ata4;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100981 d.udma_mask = ATA_UDMA4;
982 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 pmif->kind = controller_kl_ata3;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100984 } else if (of_device_is_compatible(np, "heathrow-ata")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 pmif->kind = controller_heathrow;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100986 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 pmif->kind = controller_ohare;
988 pmif->broken_dma = 1;
989 }
990
Stephen Rothwell40cd3a42007-05-01 13:54:02 +1000991 bidp = of_get_property(np, "AAPL,bus-id", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 pmif->aapl_bus_id = bidp ? *bidp : 0;
993
994 /* Get cable type from device-tree */
995 if (pmif->kind == controller_kl_ata4 || pmif->kind == controller_un_ata6
996 || pmif->kind == controller_k2_ata6
997 || pmif->kind == controller_sh_ata6) {
Stephen Rothwell40cd3a42007-05-01 13:54:02 +1000998 const char* cable = of_get_property(np, "cable-type", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (cable && !strncmp(cable, "80-", 3))
1000 pmif->cable_80 = 1;
1001 }
1002 /* G5's seem to have incorrect cable type in device-tree. Let's assume
1003 * they have a 80 conductor cable, this seem to be always the case unless
1004 * the user mucked around
1005 */
Stephen Rothwell55b61fe2007-05-03 17:26:52 +10001006 if (of_device_is_compatible(np, "K2-UATA") ||
1007 of_device_is_compatible(np, "shasta-ata"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 pmif->cable_80 = 1;
1009
1010 /* On Kauai-type controllers, we make sure the FCR is correct */
1011 if (pmif->kauai_fcr)
1012 writel(KAUAI_FCR_UATA_MAGIC |
1013 KAUAI_FCR_UATA_RESET_N |
1014 KAUAI_FCR_UATA_ENABLE, pmif->kauai_fcr);
1015
1016 pmif->mediabay = 0;
1017
1018 /* Make sure we have sane timings */
1019 sanitize_timings(pmif);
1020
1021#ifndef CONFIG_PPC64
1022 /* XXX FIXME: Media bay stuff need re-organizing */
1023 if (np->parent && np->parent->name
1024 && strcasecmp(np->parent->name, "media-bay") == 0) {
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -07001025#ifdef CONFIG_PMAC_MEDIABAY
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +02001026 media_bay_set_ide_infos(np->parent, pmif->regbase, pmif->irq,
1027 hwif);
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -07001028#endif /* CONFIG_PMAC_MEDIABAY */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 pmif->mediabay = 1;
1030 if (!bidp)
1031 pmif->aapl_bus_id = 1;
1032 } else if (pmif->kind == controller_ohare) {
1033 /* The code below is having trouble on some ohare machines
1034 * (timing related ?). Until I can put my hand on one of these
1035 * units, I keep the old way
1036 */
1037 ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, np, 0, 1);
1038 } else
1039#endif
1040 {
1041 /* This is necessary to enable IDE when net-booting */
1042 ppc_md.feature_call(PMAC_FTR_IDE_RESET, np, pmif->aapl_bus_id, 1);
1043 ppc_md.feature_call(PMAC_FTR_IDE_ENABLE, np, pmif->aapl_bus_id, 1);
1044 msleep(10);
1045 ppc_md.feature_call(PMAC_FTR_IDE_RESET, np, pmif->aapl_bus_id, 0);
1046 msleep(jiffies_to_msecs(IDE_WAKEUP_DELAY));
1047 }
1048
1049 /* Setup MMIO ops */
1050 default_hwif_mmiops(hwif);
1051 hwif->OUTBSYNC = pmac_outbsync;
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 hwif->hwif_data = pmif;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +01001054 ide_init_port_hw(hwif, hw);
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +02001055 hwif->cbl = pmif->cable_80 ? ATA_CBL_PATA80 : ATA_CBL_PATA40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 printk(KERN_INFO "ide%d: Found Apple %s controller, bus ID %d%s, irq %d\n",
1058 hwif->index, model_name[pmif->kind], pmif->aapl_bus_id,
1059 pmif->mediabay ? " (mediabay)" : "", hwif->irq);
Bartlomiej Zolnierkiewicze53cd452008-04-26 22:25:16 +02001060
1061 if (pmif->mediabay) {
Benjamin Herrenschmidt8c870932005-06-27 14:36:34 -07001062#ifdef CONFIG_PMAC_MEDIABAY
Bartlomiej Zolnierkiewicze53cd452008-04-26 22:25:16 +02001063 if (check_media_bay_by_base(pmif->regbase, MB_CD)) {
1064#else
1065 if (1) {
1066#endif
1067 hwif->drives[0].noprobe = 1;
1068 hwif->drives[1].noprobe = 1;
1069 }
1070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001073 if (pmif->cable_80 == 0)
1074 d.udma_mask &= ATA_UDMA2;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001075#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001077 idx[0] = hwif->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001079 ide_device_add(idx, &d);
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +02001080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return 0;
1082}
1083
Bartlomiej Zolnierkiewicz5c586662008-04-18 00:46:29 +02001084static void __devinit pmac_ide_init_ports(hw_regs_t *hw, unsigned long base)
1085{
1086 int i;
1087
1088 for (i = 0; i < 8; ++i)
1089 hw->io_ports[i] = base + i * 0x10;
1090 hw->io_ports[8] = base + 0x160;
1091}
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093/*
1094 * Attach to a macio probed interface
1095 */
1096static int __devinit
Jeff Mahoney5e655772005-07-06 15:44:41 -04001097pmac_ide_macio_attach(struct macio_dev *mdev, const struct of_device_id *match)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
1099 void __iomem *base;
1100 unsigned long regbase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 ide_hwif_t *hwif;
1102 pmac_ide_hwif_t *pmif;
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001103 int irq, rc;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +01001104 hw_regs_t hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001106 pmif = kzalloc(sizeof(*pmif), GFP_KERNEL);
1107 if (pmif == NULL)
1108 return -ENOMEM;
1109
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001110 hwif = ide_find_port();
1111 if (hwif == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 printk(KERN_ERR "ide-pmac: MacIO interface attach with no slot\n");
1113 printk(KERN_ERR " %s\n", mdev->ofdev.node->full_name);
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001114 rc = -ENODEV;
1115 goto out_free_pmif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
1117
Benjamin Herrenschmidtcc5d0182005-12-13 18:01:21 +11001118 if (macio_resource_count(mdev) == 0) {
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001119 printk(KERN_WARNING "ide-pmac: no address for %s\n",
1120 mdev->ofdev.node->full_name);
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001121 rc = -ENXIO;
1122 goto out_free_pmif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
1124
1125 /* Request memory resource for IO ports */
1126 if (macio_request_resource(mdev, 0, "ide-pmac (ports)")) {
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001127 printk(KERN_ERR "ide-pmac: can't request MMIO resource for "
1128 "%s!\n", mdev->ofdev.node->full_name);
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001129 rc = -EBUSY;
1130 goto out_free_pmif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
1132
1133 /* XXX This is bogus. Should be fixed in the registry by checking
1134 * the kind of host interrupt controller, a bit like gatwick
1135 * fixes in irq.c. That works well enough for the single case
1136 * where that happens though...
1137 */
1138 if (macio_irq_count(mdev) == 0) {
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001139 printk(KERN_WARNING "ide-pmac: no intrs for device %s, using "
1140 "13\n", mdev->ofdev.node->full_name);
Benjamin Herrenschmidt69917c22006-09-22 12:56:30 +10001141 irq = irq_create_mapping(NULL, 13);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 } else
1143 irq = macio_irq(mdev, 0);
1144
1145 base = ioremap(macio_resource_start(mdev, 0), 0x400);
1146 regbase = (unsigned long) base;
1147
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +01001148 hwif->dev = &mdev->bus->pdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 pmif->mdev = mdev;
1151 pmif->node = mdev->ofdev.node;
1152 pmif->regbase = regbase;
1153 pmif->irq = irq;
1154 pmif->kauai_fcr = NULL;
1155#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
1156 if (macio_resource_count(mdev) >= 2) {
1157 if (macio_request_resource(mdev, 1, "ide-pmac (dma)"))
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001158 printk(KERN_WARNING "ide-pmac: can't request DMA "
1159 "resource for %s!\n",
1160 mdev->ofdev.node->full_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 else
1162 pmif->dma_regs = ioremap(macio_resource_start(mdev, 1), 0x1000);
1163 } else
1164 pmif->dma_regs = NULL;
1165#endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */
1166 dev_set_drvdata(&mdev->ofdev.dev, hwif);
1167
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +01001168 memset(&hw, 0, sizeof(hw));
Bartlomiej Zolnierkiewicz5c586662008-04-18 00:46:29 +02001169 pmac_ide_init_ports(&hw, pmif->regbase);
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +01001170 hw.irq = irq;
1171 hw.dev = &mdev->ofdev.dev;
1172
1173 rc = pmac_ide_setup_device(pmif, hwif, &hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (rc != 0) {
1175 /* The inteface is released to the common IDE layer */
1176 dev_set_drvdata(&mdev->ofdev.dev, NULL);
1177 iounmap(base);
Bartlomiej Zolnierkiewiczed908fa2008-02-01 23:09:32 +01001178 if (pmif->dma_regs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 iounmap(pmif->dma_regs);
Bartlomiej Zolnierkiewiczed908fa2008-02-01 23:09:32 +01001180 macio_release_resource(mdev, 1);
1181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 macio_release_resource(mdev, 0);
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001183 kfree(pmif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 }
1185
1186 return rc;
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001187
1188out_free_pmif:
1189 kfree(pmif);
1190 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191}
1192
1193static int
David Brownell8b4b8a22006-08-14 23:11:03 -07001194pmac_ide_macio_suspend(struct macio_dev *mdev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
1196 ide_hwif_t *hwif = (ide_hwif_t *)dev_get_drvdata(&mdev->ofdev.dev);
1197 int rc = 0;
1198
David Brownell8b4b8a22006-08-14 23:11:03 -07001199 if (mesg.event != mdev->ofdev.dev.power.power_state.event
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01001200 && (mesg.event & PM_EVENT_SLEEP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 rc = pmac_ide_do_suspend(hwif);
1202 if (rc == 0)
David Brownell8b4b8a22006-08-14 23:11:03 -07001203 mdev->ofdev.dev.power.power_state = mesg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 }
1205
1206 return rc;
1207}
1208
1209static int
1210pmac_ide_macio_resume(struct macio_dev *mdev)
1211{
1212 ide_hwif_t *hwif = (ide_hwif_t *)dev_get_drvdata(&mdev->ofdev.dev);
1213 int rc = 0;
1214
Pavel Machekca078ba2005-09-03 15:56:57 -07001215 if (mdev->ofdev.dev.power.power_state.event != PM_EVENT_ON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 rc = pmac_ide_do_resume(hwif);
1217 if (rc == 0)
Pavel Machek829ca9a2005-09-03 15:56:56 -07001218 mdev->ofdev.dev.power.power_state = PMSG_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 }
1220
1221 return rc;
1222}
1223
1224/*
1225 * Attach to a PCI probed interface
1226 */
1227static int __devinit
1228pmac_ide_pci_attach(struct pci_dev *pdev, const struct pci_device_id *id)
1229{
1230 ide_hwif_t *hwif;
1231 struct device_node *np;
1232 pmac_ide_hwif_t *pmif;
1233 void __iomem *base;
1234 unsigned long rbase, rlen;
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001235 int rc;
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +01001236 hw_regs_t hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
1238 np = pci_device_to_OF_node(pdev);
1239 if (np == NULL) {
1240 printk(KERN_ERR "ide-pmac: cannot find MacIO node for Kauai ATA interface\n");
1241 return -ENODEV;
1242 }
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001243
1244 pmif = kzalloc(sizeof(*pmif), GFP_KERNEL);
1245 if (pmif == NULL)
1246 return -ENOMEM;
1247
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001248 hwif = ide_find_port();
1249 if (hwif == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 printk(KERN_ERR "ide-pmac: PCI interface attach with no slot\n");
1251 printk(KERN_ERR " %s\n", np->full_name);
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001252 rc = -ENODEV;
1253 goto out_free_pmif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 }
1255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 if (pci_enable_device(pdev)) {
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001257 printk(KERN_WARNING "ide-pmac: Can't enable PCI device for "
1258 "%s\n", np->full_name);
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001259 rc = -ENXIO;
1260 goto out_free_pmif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 }
1262 pci_set_master(pdev);
1263
1264 if (pci_request_regions(pdev, "Kauai ATA")) {
Bartlomiej Zolnierkiewicz939b0f12008-04-26 17:36:33 +02001265 printk(KERN_ERR "ide-pmac: Cannot obtain PCI resources for "
1266 "%s\n", np->full_name);
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001267 rc = -ENXIO;
1268 goto out_free_pmif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
1270
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +01001271 hwif->dev = &pdev->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 pmif->mdev = NULL;
1273 pmif->node = np;
1274
1275 rbase = pci_resource_start(pdev, 0);
1276 rlen = pci_resource_len(pdev, 0);
1277
1278 base = ioremap(rbase, rlen);
1279 pmif->regbase = (unsigned long) base + 0x2000;
1280#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
1281 pmif->dma_regs = base + 0x1000;
1282#endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */
1283 pmif->kauai_fcr = base;
1284 pmif->irq = pdev->irq;
1285
1286 pci_set_drvdata(pdev, hwif);
1287
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +01001288 memset(&hw, 0, sizeof(hw));
Bartlomiej Zolnierkiewicz5c586662008-04-18 00:46:29 +02001289 pmac_ide_init_ports(&hw, pmif->regbase);
Bartlomiej Zolnierkiewicz57c802e2008-01-26 20:13:05 +01001290 hw.irq = pdev->irq;
1291 hw.dev = &pdev->dev;
1292
1293 rc = pmac_ide_setup_device(pmif, hwif, &hw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 if (rc != 0) {
1295 /* The inteface is released to the common IDE layer */
1296 pci_set_drvdata(pdev, NULL);
1297 iounmap(base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 pci_release_regions(pdev);
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001299 kfree(pmif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 }
1301
1302 return rc;
Bartlomiej Zolnierkiewicz5297a3e2008-04-26 17:36:32 +02001303
1304out_free_pmif:
1305 kfree(pmif);
1306 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308
1309static int
David Brownell8b4b8a22006-08-14 23:11:03 -07001310pmac_ide_pci_suspend(struct pci_dev *pdev, pm_message_t mesg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
1312 ide_hwif_t *hwif = (ide_hwif_t *)pci_get_drvdata(pdev);
1313 int rc = 0;
1314
David Brownell8b4b8a22006-08-14 23:11:03 -07001315 if (mesg.event != pdev->dev.power.power_state.event
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +01001316 && (mesg.event & PM_EVENT_SLEEP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 rc = pmac_ide_do_suspend(hwif);
1318 if (rc == 0)
David Brownell8b4b8a22006-08-14 23:11:03 -07001319 pdev->dev.power.power_state = mesg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
1321
1322 return rc;
1323}
1324
1325static int
1326pmac_ide_pci_resume(struct pci_dev *pdev)
1327{
1328 ide_hwif_t *hwif = (ide_hwif_t *)pci_get_drvdata(pdev);
1329 int rc = 0;
1330
Pavel Machekca078ba2005-09-03 15:56:57 -07001331 if (pdev->dev.power.power_state.event != PM_EVENT_ON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 rc = pmac_ide_do_resume(hwif);
1333 if (rc == 0)
Pavel Machek829ca9a2005-09-03 15:56:56 -07001334 pdev->dev.power.power_state = PMSG_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 }
1336
1337 return rc;
1338}
1339
Jeff Mahoney5e655772005-07-06 15:44:41 -04001340static struct of_device_id pmac_ide_macio_match[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
1342 {
1343 .name = "IDE",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 },
1345 {
1346 .name = "ATA",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 },
1348 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 .type = "ide",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 },
1351 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 .type = "ata",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 },
1354 {},
1355};
1356
1357static struct macio_driver pmac_ide_macio_driver =
1358{
1359 .name = "ide-pmac",
1360 .match_table = pmac_ide_macio_match,
1361 .probe = pmac_ide_macio_attach,
1362 .suspend = pmac_ide_macio_suspend,
1363 .resume = pmac_ide_macio_resume,
1364};
1365
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +02001366static const struct pci_device_id pmac_ide_pci_match[] = {
1367 { PCI_VDEVICE(APPLE, PCI_DEVICE_ID_APPLE_UNI_N_ATA), 0 },
1368 { PCI_VDEVICE(APPLE, PCI_DEVICE_ID_APPLE_IPID_ATA100), 0 },
1369 { PCI_VDEVICE(APPLE, PCI_DEVICE_ID_APPLE_K2_ATA100), 0 },
1370 { PCI_VDEVICE(APPLE, PCI_DEVICE_ID_APPLE_SH_ATA), 0 },
1371 { PCI_VDEVICE(APPLE, PCI_DEVICE_ID_APPLE_IPID2_ATA), 0 },
Benjamin Herrenschmidt71e4eda2007-10-06 18:52:27 +10001372 {},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373};
1374
1375static struct pci_driver pmac_ide_pci_driver = {
1376 .name = "ide-pmac",
1377 .id_table = pmac_ide_pci_match,
1378 .probe = pmac_ide_pci_attach,
1379 .suspend = pmac_ide_pci_suspend,
1380 .resume = pmac_ide_pci_resume,
1381};
1382MODULE_DEVICE_TABLE(pci, pmac_ide_pci_match);
1383
Andrew Morton9e5755b2007-03-03 17:48:54 +01001384int __init pmac_ide_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
Andrew Morton9e5755b2007-03-03 17:48:54 +01001386 int error;
1387
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +11001388 if (!machine_is(powermac))
Andrew Morton9e5755b2007-03-03 17:48:54 +01001389 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391#ifdef CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST
Andrew Morton9e5755b2007-03-03 17:48:54 +01001392 error = pci_register_driver(&pmac_ide_pci_driver);
1393 if (error)
1394 goto out;
1395 error = macio_register_driver(&pmac_ide_macio_driver);
1396 if (error) {
1397 pci_unregister_driver(&pmac_ide_pci_driver);
1398 goto out;
1399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400#else
Andrew Morton9e5755b2007-03-03 17:48:54 +01001401 error = macio_register_driver(&pmac_ide_macio_driver);
1402 if (error)
1403 goto out;
1404 error = pci_register_driver(&pmac_ide_pci_driver);
1405 if (error) {
1406 macio_unregister_driver(&pmac_ide_macio_driver);
1407 goto out;
1408 }
Benjamin Herrenschmidt1beb6a72005-12-14 13:10:10 +11001409#endif
Andrew Morton9e5755b2007-03-03 17:48:54 +01001410out:
1411 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
1414#ifdef CONFIG_BLK_DEV_IDEDMA_PMAC
1415
1416/*
1417 * pmac_ide_build_dmatable builds the DBDMA command list
1418 * for a transfer and sets the DBDMA channel to point to it.
1419 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -05001420static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421pmac_ide_build_dmatable(ide_drive_t *drive, struct request *rq)
1422{
1423 struct dbdma_cmd *table;
1424 int i, count = 0;
1425 ide_hwif_t *hwif = HWIF(drive);
1426 pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)hwif->hwif_data;
1427 volatile struct dbdma_regs __iomem *dma = pmif->dma_regs;
1428 struct scatterlist *sg;
1429 int wr = (rq_data_dir(rq) == WRITE);
1430
1431 /* DMA table is already aligned */
1432 table = (struct dbdma_cmd *) pmif->dma_table_cpu;
1433
1434 /* Make sure DMA controller is stopped (necessary ?) */
1435 writel((RUN|PAUSE|FLUSH|WAKE|DEAD) << 16, &dma->control);
1436 while (readl(&dma->status) & RUN)
1437 udelay(1);
1438
1439 hwif->sg_nents = i = ide_build_sglist(drive, rq);
1440
1441 if (!i)
1442 return 0;
1443
1444 /* Build DBDMA commands list */
1445 sg = hwif->sg_table;
1446 while (i && sg_dma_len(sg)) {
1447 u32 cur_addr;
1448 u32 cur_len;
1449
1450 cur_addr = sg_dma_address(sg);
1451 cur_len = sg_dma_len(sg);
1452
1453 if (pmif->broken_dma && cur_addr & (L1_CACHE_BYTES - 1)) {
1454 if (pmif->broken_dma_warn == 0) {
Joe Perchesaca38a52007-11-27 21:35:55 +01001455 printk(KERN_WARNING "%s: DMA on non aligned address, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 "switching to PIO on Ohare chipset\n", drive->name);
1457 pmif->broken_dma_warn = 1;
1458 }
1459 goto use_pio_instead;
1460 }
1461 while (cur_len) {
1462 unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;
1463
1464 if (count++ >= MAX_DCMDS) {
1465 printk(KERN_WARNING "%s: DMA table too small\n",
1466 drive->name);
1467 goto use_pio_instead;
1468 }
1469 st_le16(&table->command, wr? OUTPUT_MORE: INPUT_MORE);
1470 st_le16(&table->req_count, tc);
1471 st_le32(&table->phy_addr, cur_addr);
1472 table->cmd_dep = 0;
1473 table->xfer_status = 0;
1474 table->res_count = 0;
1475 cur_addr += tc;
1476 cur_len -= tc;
1477 ++table;
1478 }
Jens Axboe55c16a72007-07-25 08:13:56 +02001479 sg = sg_next(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 i--;
1481 }
1482
1483 /* convert the last command to an input/output last command */
1484 if (count) {
1485 st_le16(&table[-1].command, wr? OUTPUT_LAST: INPUT_LAST);
1486 /* add the stop command to the end of the list */
1487 memset(table, 0, sizeof(struct dbdma_cmd));
1488 st_le16(&table->command, DBDMA_STOP);
1489 mb();
1490 writel(hwif->dmatable_dma, &dma->cmdptr);
1491 return 1;
1492 }
1493
1494 printk(KERN_DEBUG "%s: empty DMA table?\n", drive->name);
Bartlomiej Zolnierkiewiczf6fb7862008-02-01 23:09:31 +01001495
1496use_pio_instead:
1497 ide_destroy_dmatable(drive);
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 return 0; /* revert to PIO for this request */
1500}
1501
1502/* Teardown mappings after DMA has completed. */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -05001503static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504pmac_ide_destroy_dmatable (ide_drive_t *drive)
1505{
1506 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
Bartlomiej Zolnierkiewiczf6fb7862008-02-01 23:09:31 +01001508 if (hwif->sg_nents) {
1509 ide_destroy_dmatable(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 hwif->sg_nents = 0;
1511 }
1512}
1513
1514/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 * Prepare a DMA transfer. We build the DMA table, adjust the timings for
1516 * a read on KeyLargo ATA/66 and mark us as waiting for DMA completion
1517 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -05001518static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519pmac_ide_dma_setup(ide_drive_t *drive)
1520{
1521 ide_hwif_t *hwif = HWIF(drive);
1522 pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)hwif->hwif_data;
1523 struct request *rq = HWGROUP(drive)->rq;
1524 u8 unit = (drive->select.b.unit & 0x01);
1525 u8 ata4;
1526
1527 if (pmif == NULL)
1528 return 1;
1529 ata4 = (pmif->kind == controller_kl_ata4);
1530
1531 if (!pmac_ide_build_dmatable(drive, rq)) {
1532 ide_map_sg(drive, rq);
1533 return 1;
1534 }
1535
1536 /* Apple adds 60ns to wrDataSetup on reads */
1537 if (ata4 && (pmif->timings[unit] & TR_66_UDMA_EN)) {
1538 writel(pmif->timings[unit] + (!rq_data_dir(rq) ? 0x00800000UL : 0),
1539 PMAC_IDE_REG(IDE_TIMING_CONFIG));
1540 (void)readl(PMAC_IDE_REG(IDE_TIMING_CONFIG));
1541 }
1542
1543 drive->waiting_for_dma = 1;
1544
1545 return 0;
1546}
1547
Jon Loeligeraacaf9b2005-09-17 10:36:54 -05001548static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549pmac_ide_dma_exec_cmd(ide_drive_t *drive, u8 command)
1550{
1551 /* issue cmd to drive */
1552 ide_execute_command(drive, command, &ide_dma_intr, 2*WAIT_CMD, NULL);
1553}
1554
1555/*
1556 * Kick the DMA controller into life after the DMA command has been issued
1557 * to the drive.
1558 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -05001559static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560pmac_ide_dma_start(ide_drive_t *drive)
1561{
1562 pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
1563 volatile struct dbdma_regs __iomem *dma;
1564
1565 dma = pmif->dma_regs;
1566
1567 writel((RUN << 16) | RUN, &dma->control);
1568 /* Make sure it gets to the controller right now */
1569 (void)readl(&dma->control);
1570}
1571
1572/*
1573 * After a DMA transfer, make sure the controller is stopped
1574 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -05001575static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576pmac_ide_dma_end (ide_drive_t *drive)
1577{
1578 pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
1579 volatile struct dbdma_regs __iomem *dma;
1580 u32 dstat;
1581
1582 if (pmif == NULL)
1583 return 0;
1584 dma = pmif->dma_regs;
1585
1586 drive->waiting_for_dma = 0;
1587 dstat = readl(&dma->status);
1588 writel(((RUN|WAKE|DEAD) << 16), &dma->control);
1589 pmac_ide_destroy_dmatable(drive);
1590 /* verify good dma status. we don't check for ACTIVE beeing 0. We should...
1591 * in theory, but with ATAPI decices doing buffer underruns, that would
1592 * cause us to disable DMA, which isn't what we want
1593 */
1594 return (dstat & (RUN|DEAD)) != RUN;
1595}
1596
1597/*
1598 * Check out that the interrupt we got was for us. We can't always know this
1599 * for sure with those Apple interfaces (well, we could on the recent ones but
1600 * that's not implemented yet), on the other hand, we don't have shared interrupts
1601 * so it's not really a problem
1602 */
Jon Loeligeraacaf9b2005-09-17 10:36:54 -05001603static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604pmac_ide_dma_test_irq (ide_drive_t *drive)
1605{
1606 pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
1607 volatile struct dbdma_regs __iomem *dma;
1608 unsigned long status, timeout;
1609
1610 if (pmif == NULL)
1611 return 0;
1612 dma = pmif->dma_regs;
1613
1614 /* We have to things to deal with here:
1615 *
1616 * - The dbdma won't stop if the command was started
1617 * but completed with an error without transferring all
1618 * datas. This happens when bad blocks are met during
1619 * a multi-block transfer.
1620 *
1621 * - The dbdma fifo hasn't yet finished flushing to
1622 * to system memory when the disk interrupt occurs.
1623 *
1624 */
1625
1626 /* If ACTIVE is cleared, the STOP command have passed and
1627 * transfer is complete.
1628 */
1629 status = readl(&dma->status);
1630 if (!(status & ACTIVE))
1631 return 1;
1632 if (!drive->waiting_for_dma)
1633 printk(KERN_WARNING "ide%d, ide_dma_test_irq \
1634 called while not waiting\n", HWIF(drive)->index);
1635
1636 /* If dbdma didn't execute the STOP command yet, the
1637 * active bit is still set. We consider that we aren't
1638 * sharing interrupts (which is hopefully the case with
1639 * those controllers) and so we just try to flush the
1640 * channel for pending data in the fifo
1641 */
1642 udelay(1);
1643 writel((FLUSH << 16) | FLUSH, &dma->control);
1644 timeout = 0;
1645 for (;;) {
1646 udelay(1);
1647 status = readl(&dma->status);
1648 if ((status & FLUSH) == 0)
1649 break;
1650 if (++timeout > 100) {
1651 printk(KERN_WARNING "ide%d, ide_dma_test_irq \
1652 timeout flushing channel\n", HWIF(drive)->index);
1653 break;
1654 }
1655 }
1656 return 1;
1657}
1658
Bartlomiej Zolnierkiewicz15ce9262008-01-26 20:13:03 +01001659static void pmac_ide_dma_host_set(ide_drive_t *drive, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661}
1662
Sergei Shtylyov841d2a92007-07-09 23:17:54 +02001663static void
1664pmac_ide_dma_lost_irq (ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665{
1666 pmac_ide_hwif_t* pmif = (pmac_ide_hwif_t *)HWIF(drive)->hwif_data;
1667 volatile struct dbdma_regs __iomem *dma;
1668 unsigned long status;
1669
1670 if (pmif == NULL)
Sergei Shtylyov841d2a92007-07-09 23:17:54 +02001671 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 dma = pmif->dma_regs;
1673
1674 status = readl(&dma->status);
1675 printk(KERN_ERR "ide-pmac lost interrupt, dma status: %lx\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676}
1677
Bartlomiej Zolnierkiewiczf37afda2008-04-26 22:25:24 +02001678static const struct ide_dma_ops pmac_dma_ops = {
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +02001679 .dma_host_set = pmac_ide_dma_host_set,
1680 .dma_setup = pmac_ide_dma_setup,
1681 .dma_exec_cmd = pmac_ide_dma_exec_cmd,
1682 .dma_start = pmac_ide_dma_start,
1683 .dma_end = pmac_ide_dma_end,
1684 .dma_test_irq = pmac_ide_dma_test_irq,
1685 .dma_timeout = ide_dma_timeout,
1686 .dma_lost_irq = pmac_ide_dma_lost_irq,
1687};
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689/*
1690 * Allocate the data structures needed for using DMA with an interface
1691 * and fill the proper list of functions pointers
1692 */
Bartlomiej Zolnierkiewicz0d071922008-04-26 22:25:22 +02001693static int __devinit pmac_ide_init_dma(ide_hwif_t *hwif,
1694 const struct ide_port_info *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
Bartlomiej Zolnierkiewicz0d071922008-04-26 22:25:22 +02001696 pmac_ide_hwif_t *pmif = (pmac_ide_hwif_t *)hwif->hwif_data;
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +01001697 struct pci_dev *dev = to_pci_dev(hwif->dev);
1698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 /* We won't need pci_dev if we switch to generic consistent
1700 * DMA routines ...
1701 */
Bartlomiej Zolnierkiewicz0d071922008-04-26 22:25:22 +02001702 if (dev == NULL || pmif->dma_regs == 0)
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001703 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 /*
1705 * Allocate space for the DBDMA commands.
1706 * The +2 is +1 for the stop command and +1 to allow for
1707 * aligning the start address to a multiple of 16 bytes.
1708 */
1709 pmif->dma_table_cpu = (struct dbdma_cmd*)pci_alloc_consistent(
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +01001710 dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 (MAX_DCMDS + 2) * sizeof(struct dbdma_cmd),
1712 &hwif->dmatable_dma);
1713 if (pmif->dma_table_cpu == NULL) {
1714 printk(KERN_ERR "%s: unable to allocate DMA command list\n",
1715 hwif->name);
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001716 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 }
1718
Bartlomiej Zolnierkiewicz4f52a322008-01-26 20:13:08 +01001719 hwif->sg_max_nents = MAX_DCMDS;
1720
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001721 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722}
Bartlomiej Zolnierkiewicz0d071922008-04-26 22:25:22 +02001723#else
1724static int __devinit pmac_ide_init_dma(ide_hwif_t *hwif,
1725 const struct ide_port_info *d)
1726{
1727 return -EOPNOTSUPP;
1728}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729#endif /* CONFIG_BLK_DEV_IDEDMA_PMAC */
Bartlomiej Zolnierkiewiczade2daf2008-01-26 20:13:07 +01001730
1731module_init(pmac_ide_probe);
Adrian Bunkde9facb2008-04-02 21:22:03 +02001732
1733MODULE_LICENSE("GPL");