This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / drivers / macintosh / mediabay.c
1 /*
2  * Driver for the media bay on the PowerBook 3400 and 2400.
3  *
4  * Copyright (C) 1998 Paul Mackerras.
5  *
6  * Various evolutions by Benjamin Herrenschmidt & Henry Worth
7  *
8  *  This program is free software; you can redistribute it and/or
9  *  modify it under the terms of the GNU General Public License
10  *  as published by the Free Software Foundation; either version
11  *  2 of the License, or (at your option) any later version.
12  */
13 #include <linux/config.h>
14 #include <linux/types.h>
15 #include <linux/errno.h>
16 #include <linux/kernel.h>
17 #include <linux/delay.h>
18 #include <linux/sched.h>
19 #include <linux/timer.h>
20 #include <linux/hdreg.h>
21 #include <linux/stddef.h>
22 #include <linux/init.h>
23 #include <linux/ide.h>
24 #include <asm/prom.h>
25 #include <asm/pgtable.h>
26 #include <asm/io.h>
27 #include <asm/machdep.h>
28 #include <asm/pmac_feature.h>
29 #include <asm/mediabay.h>
30 #include <asm/sections.h>
31 #include <asm/ohare.h>
32 #include <asm/heathrow.h>
33 #include <asm/keylargo.h>
34 #include <linux/adb.h>
35 #include <linux/pmu.h>
36
37
38 #define MB_DEBUG
39 #define MB_IGNORE_SIGNALS
40
41 #ifdef MB_DEBUG
42 #define MBDBG(fmt, arg...)      printk(KERN_INFO fmt , ## arg)
43 #else
44 #define MBDBG(fmt, arg...)      do { } while (0)
45 #endif
46
47 #define MB_FCR32(bay, r)        ((bay)->base + ((r) >> 2))
48 #define MB_FCR8(bay, r)         (((volatile u8*)((bay)->base)) + (r))
49
50 #define MB_IN32(bay,r)          (in_le32(MB_FCR32(bay,r)))
51 #define MB_OUT32(bay,r,v)       (out_le32(MB_FCR32(bay,r), (v)))
52 #define MB_BIS(bay,r,v)         (MB_OUT32((bay), (r), MB_IN32((bay), r) | (v)))
53 #define MB_BIC(bay,r,v)         (MB_OUT32((bay), (r), MB_IN32((bay), r) & ~(v)))
54 #define MB_IN8(bay,r)           (in_8(MB_FCR8(bay,r)))
55 #define MB_OUT8(bay,r,v)        (out_8(MB_FCR8(bay,r), (v)))
56
57 struct media_bay_info;
58
59 struct mb_ops {
60         char*   name;
61         void    (*init)(struct media_bay_info *bay);
62         u8      (*content)(struct media_bay_info *bay);
63         void    (*power)(struct media_bay_info *bay, int on_off);
64         int     (*setup_bus)(struct media_bay_info *bay, u8 device_id);
65         void    (*un_reset)(struct media_bay_info *bay);
66         void    (*un_reset_ide)(struct media_bay_info *bay);
67 };
68
69 struct media_bay_info {
70         volatile u32*                   base;
71         int                             content_id;
72         int                             state;
73         int                             last_value;
74         int                             value_count;
75         int                             timer;
76         struct macio_dev                *mdev;
77         struct mb_ops*                  ops;
78         int                             index;
79         int                             cached_gpio;
80         int                             sleeping;
81         struct semaphore                lock;
82 #ifdef CONFIG_BLK_DEV_IDE
83         unsigned long                   cd_base;
84         int                             cd_index;
85         ide_hwif_t                      *cd_hwif;
86         int                             cd_irq;
87         int                             cd_retry;
88 #endif
89 };
90
91 #define MAX_BAYS        2
92
93 static struct media_bay_info media_bays[MAX_BAYS];
94 int media_bay_count = 0;
95
96 #ifdef CONFIG_BLK_DEV_IDE
97 /* check the busy bit in the media-bay ide interface
98    (assumes the media-bay contains an ide device) */
99 #define MB_IDE_READY(i) ((readb(media_bays[i].cd_base + 0x70) & 0x80) == 0)
100 #endif
101
102 /* Note: All delays are not in milliseconds and converted to HZ relative
103  * values by the macro below
104  */
105 #define MS_TO_HZ(ms)    ((ms * HZ + 999) / 1000)
106
107 /*
108  * Wait that number of ms between each step in normal polling mode
109  */
110 #define MB_POLL_DELAY   25
111
112 /*
113  * Consider the media-bay ID value stable if it is the same for
114  * this number of milliseconds
115  */
116 #define MB_STABLE_DELAY 100
117
118 /* Wait after powering up the media bay this delay in ms
119  * timeout bumped for some powerbooks
120  */
121 #define MB_POWER_DELAY  200
122
123 /*
124  * Hold the media-bay reset signal true for this many ticks
125  * after a device is inserted before releasing it.
126  */
127 #define MB_RESET_DELAY  50
128
129 /*
130  * Wait this long after the reset signal is released and before doing
131  * further operations. After this delay, the IDE reset signal is released
132  * too for an IDE device
133  */
134 #define MB_SETUP_DELAY  100
135
136 /*
137  * Wait this many ticks after an IDE device (e.g. CD-ROM) is inserted
138  * (or until the device is ready) before waiting for busy bit to disappear
139  */
140 #define MB_IDE_WAIT     1000
141
142 /*
143  * Timeout waiting for busy bit of an IDE device to go down
144  */
145 #define MB_IDE_TIMEOUT  5000
146
147 /*
148  * Max retries of the full power up/down sequence for an IDE device
149  */
150 #define MAX_CD_RETRIES  3
151
152 /*
153  * States of a media bay
154  */
155 enum {
156         mb_empty = 0,           /* Idle */
157         mb_powering_up,         /* power bit set, waiting MB_POWER_DELAY */
158         mb_enabling_bay,        /* enable bits set, waiting MB_RESET_DELAY */
159         mb_resetting,           /* reset bit unset, waiting MB_SETUP_DELAY */
160         mb_ide_resetting,       /* IDE reset bit unser, waiting MB_IDE_WAIT */
161         mb_ide_waiting,         /* Waiting for BUSY bit to go away until MB_IDE_TIMEOUT */
162         mb_up,                  /* Media bay full */
163         mb_powering_down        /* Powering down (avoid too fast down/up) */
164 };
165
166 #define MB_POWER_SOUND          0x08
167 #define MB_POWER_FLOPPY         0x04
168 #define MB_POWER_ATA            0x02
169 #define MB_POWER_PCI            0x01
170 #define MB_POWER_OFF            0x00
171
172 /*
173  * Functions for polling content of media bay
174  */
175  
176 static u8 __pmac
177 ohare_mb_content(struct media_bay_info *bay)
178 {
179         return (MB_IN32(bay, OHARE_MBCR) >> 12) & 7;
180 }
181
182 static u8 __pmac
183 heathrow_mb_content(struct media_bay_info *bay)
184 {
185         return (MB_IN32(bay, HEATHROW_MBCR) >> 12) & 7;
186 }
187
188 static u8 __pmac
189 keylargo_mb_content(struct media_bay_info *bay)
190 {
191         int new_gpio;
192
193         new_gpio = MB_IN8(bay, KL_GPIO_MEDIABAY_IRQ) & KEYLARGO_GPIO_INPUT_DATA;
194         if (new_gpio) {
195                 bay->cached_gpio = new_gpio;
196                 return MB_NO;
197         } else if (bay->cached_gpio != new_gpio) {
198                 MB_BIS(bay, KEYLARGO_MBCR, KL_MBCR_MB0_ENABLE);
199                 (void)MB_IN32(bay, KEYLARGO_MBCR);
200                 udelay(5);
201                 MB_BIC(bay, KEYLARGO_MBCR, 0x0000000F);
202                 (void)MB_IN32(bay, KEYLARGO_MBCR);
203                 udelay(5);
204                 bay->cached_gpio = new_gpio;
205         }
206         return (MB_IN32(bay, KEYLARGO_MBCR) >> 4) & 7;
207 }
208
209 /*
210  * Functions for powering up/down the bay, puts the bay device
211  * into reset state as well
212  */
213
214 static void __pmac
215 ohare_mb_power(struct media_bay_info* bay, int on_off)
216 {
217         if (on_off) {
218                 /* Power up device, assert it's reset line */
219                 MB_BIC(bay, OHARE_FCR, OH_BAY_RESET_N);
220                 MB_BIC(bay, OHARE_FCR, OH_BAY_POWER_N);
221         } else {
222                 /* Disable all devices */
223                 MB_BIC(bay, OHARE_FCR, OH_BAY_DEV_MASK);
224                 MB_BIC(bay, OHARE_FCR, OH_FLOPPY_ENABLE);
225                 /* Cut power from bay, release reset line */
226                 MB_BIS(bay, OHARE_FCR, OH_BAY_POWER_N);
227                 MB_BIS(bay, OHARE_FCR, OH_BAY_RESET_N);
228                 MB_BIS(bay, OHARE_FCR, OH_IDE1_RESET_N);
229         }
230         MB_BIC(bay, OHARE_MBCR, 0x00000F00);
231 }
232
233 static void __pmac
234 heathrow_mb_power(struct media_bay_info* bay, int on_off)
235 {
236         if (on_off) {
237                 /* Power up device, assert it's reset line */
238                 MB_BIC(bay, HEATHROW_FCR, HRW_BAY_RESET_N);
239                 MB_BIC(bay, HEATHROW_FCR, HRW_BAY_POWER_N);
240         } else {
241                 /* Disable all devices */
242                 MB_BIC(bay, HEATHROW_FCR, HRW_BAY_DEV_MASK);
243                 MB_BIC(bay, HEATHROW_FCR, HRW_SWIM_ENABLE);
244                 /* Cut power from bay, release reset line */
245                 MB_BIS(bay, HEATHROW_FCR, HRW_BAY_POWER_N);
246                 MB_BIS(bay, HEATHROW_FCR, HRW_BAY_RESET_N);
247                 MB_BIS(bay, HEATHROW_FCR, HRW_IDE1_RESET_N);
248         }
249         MB_BIC(bay, HEATHROW_MBCR, 0x00000F00);
250 }
251
252 static void __pmac
253 keylargo_mb_power(struct media_bay_info* bay, int on_off)
254 {
255         if (on_off) {
256                 /* Power up device, assert it's reset line */
257                 MB_BIC(bay, KEYLARGO_MBCR, KL_MBCR_MB0_DEV_RESET);
258                 MB_BIC(bay, KEYLARGO_MBCR, KL_MBCR_MB0_DEV_POWER);
259         } else {
260                 /* Disable all devices */
261                 MB_BIC(bay, KEYLARGO_MBCR, KL_MBCR_MB0_DEV_MASK);
262                 MB_BIC(bay, KEYLARGO_FCR1, KL1_EIDE0_ENABLE);
263                 /* Cut power from bay, release reset line */
264                 MB_BIS(bay, KEYLARGO_MBCR, KL_MBCR_MB0_DEV_POWER);
265                 MB_BIS(bay, KEYLARGO_MBCR, KL_MBCR_MB0_DEV_RESET);
266                 MB_BIS(bay, KEYLARGO_FCR1, KL1_EIDE0_RESET_N);
267         }
268         MB_BIC(bay, KEYLARGO_MBCR, 0x0000000F);
269 }
270
271 /*
272  * Functions for configuring the media bay for a given type of device,
273  * enable the related busses
274  */
275
276 static int __pmac
277 ohare_mb_setup_bus(struct media_bay_info* bay, u8 device_id)
278 {
279         switch(device_id) {
280                 case MB_FD:
281                 case MB_FD1:
282                         MB_BIS(bay, OHARE_FCR, OH_BAY_FLOPPY_ENABLE);
283                         MB_BIS(bay, OHARE_FCR, OH_FLOPPY_ENABLE);
284                         return 0;
285                 case MB_CD:
286                         MB_BIC(bay, OHARE_FCR, OH_IDE1_RESET_N);
287                         MB_BIS(bay, OHARE_FCR, OH_BAY_IDE_ENABLE);
288                         return 0;
289                 case MB_PCI:
290                         MB_BIS(bay, OHARE_FCR, OH_BAY_PCI_ENABLE);
291                         return 0;
292         }
293         return -ENODEV;
294 }
295
296 static int __pmac
297 heathrow_mb_setup_bus(struct media_bay_info* bay, u8 device_id)
298 {
299         switch(device_id) {
300                 case MB_FD:
301                 case MB_FD1:
302                         MB_BIS(bay, HEATHROW_FCR, HRW_BAY_FLOPPY_ENABLE);
303                         MB_BIS(bay, HEATHROW_FCR, HRW_SWIM_ENABLE);
304                         return 0;
305                 case MB_CD:
306                         MB_BIC(bay, HEATHROW_FCR, HRW_IDE1_RESET_N);
307                         MB_BIS(bay, HEATHROW_FCR, HRW_BAY_IDE_ENABLE);
308                         return 0;
309                 case MB_PCI:
310                         MB_BIS(bay, HEATHROW_FCR, HRW_BAY_PCI_ENABLE);
311                         return 0;
312         }
313         return -ENODEV;
314 }
315
316 static int __pmac
317 keylargo_mb_setup_bus(struct media_bay_info* bay, u8 device_id)
318 {
319         switch(device_id) {
320                 case MB_CD:
321                         MB_BIS(bay, KEYLARGO_MBCR, KL_MBCR_MB0_IDE_ENABLE);
322                         MB_BIC(bay, KEYLARGO_FCR1, KL1_EIDE0_RESET_N);
323                         MB_BIS(bay, KEYLARGO_FCR1, KL1_EIDE0_ENABLE);
324                         return 0;
325                 case MB_PCI:
326                         MB_BIS(bay, KEYLARGO_MBCR, KL_MBCR_MB0_PCI_ENABLE);
327                         return 0;
328                 case MB_SOUND:
329                         MB_BIS(bay, KEYLARGO_MBCR, KL_MBCR_MB0_SOUND_ENABLE);
330                         return 0;
331         }
332         return -ENODEV;
333 }
334
335 /*
336  * Functions for tweaking resets
337  */
338
339 static void __pmac
340 ohare_mb_un_reset(struct media_bay_info* bay)
341 {
342         MB_BIS(bay, OHARE_FCR, OH_BAY_RESET_N);
343 }
344
345 static void __pmac keylargo_mb_init(struct media_bay_info *bay)
346 {
347         MB_BIS(bay, KEYLARGO_MBCR, KL_MBCR_MB0_ENABLE);
348 }
349
350 static void __pmac heathrow_mb_un_reset(struct media_bay_info* bay)
351 {
352         MB_BIS(bay, HEATHROW_FCR, HRW_BAY_RESET_N);
353 }
354
355 static void __pmac keylargo_mb_un_reset(struct media_bay_info* bay)
356 {
357         MB_BIS(bay, KEYLARGO_MBCR, KL_MBCR_MB0_DEV_RESET);
358 }
359
360 static void __pmac ohare_mb_un_reset_ide(struct media_bay_info* bay)
361 {
362         MB_BIS(bay, OHARE_FCR, OH_IDE1_RESET_N);
363 }
364
365 static void __pmac heathrow_mb_un_reset_ide(struct media_bay_info* bay)
366 {
367         MB_BIS(bay, HEATHROW_FCR, HRW_IDE1_RESET_N);
368 }
369
370 static void __pmac keylargo_mb_un_reset_ide(struct media_bay_info* bay)
371 {
372         MB_BIS(bay, KEYLARGO_FCR1, KL1_EIDE0_RESET_N);
373 }
374
375 static inline void __pmac set_mb_power(struct media_bay_info* bay, int onoff)
376 {
377         /* Power up up and assert the bay reset line */
378         if (onoff) {
379                 bay->ops->power(bay, 1);
380                 bay->state = mb_powering_up;
381                 MBDBG("mediabay%d: powering up\n", bay->index);
382         } else { 
383                 /* Make sure everything is powered down & disabled */
384                 bay->ops->power(bay, 0);
385                 bay->state = mb_powering_down;
386                 MBDBG("mediabay%d: powering down\n", bay->index);
387         }
388         bay->timer = MS_TO_HZ(MB_POWER_DELAY);
389 }
390
391 static void __pmac poll_media_bay(struct media_bay_info* bay)
392 {
393         int id = bay->ops->content(bay);
394
395         if (id == bay->last_value) {
396                 if (id != bay->content_id) {
397                         bay->value_count += MS_TO_HZ(MB_POLL_DELAY);
398                         if (bay->value_count >= MS_TO_HZ(MB_STABLE_DELAY)) {
399                                 /* If the device type changes without going thru
400                                  * "MB_NO", we force a pass by "MB_NO" to make sure
401                                  * things are properly reset
402                                  */
403                                 if ((id != MB_NO) && (bay->content_id != MB_NO)) {
404                                         id = MB_NO;
405                                         MBDBG("mediabay%d: forcing MB_NO\n", bay->index);
406                                 }
407                                 MBDBG("mediabay%d: switching to %d\n", bay->index, id);
408                                 set_mb_power(bay, id != MB_NO);
409                                 bay->content_id = id;
410                                 if (id == MB_NO) {
411 #ifdef CONFIG_BLK_DEV_IDE
412                                         bay->cd_retry = 0;
413 #endif
414                                         printk(KERN_INFO "media bay %d is empty\n", bay->index);
415                                 }
416                         }
417                 }
418         } else {
419                 bay->last_value = id;
420                 bay->value_count = 0;
421         }
422 }
423
424 int __pmac check_media_bay(struct device_node *which_bay, int what)
425 {
426 #ifdef CONFIG_BLK_DEV_IDE
427         int     i;
428
429         for (i=0; i<media_bay_count; i++)
430                 if (media_bays[i].mdev && which_bay == media_bays[i].mdev->ofdev.node) {
431                         if ((what == media_bays[i].content_id) && media_bays[i].state == mb_up)
432                                 return 0;
433                         media_bays[i].cd_index = -1;
434                         return -EINVAL;
435                 }
436 #endif /* CONFIG_BLK_DEV_IDE */
437         return -ENODEV;
438 }
439 EXPORT_SYMBOL(check_media_bay);
440
441 int __pmac check_media_bay_by_base(unsigned long base, int what)
442 {
443 #ifdef CONFIG_BLK_DEV_IDE
444         int     i;
445
446         for (i=0; i<media_bay_count; i++)
447                 if (media_bays[i].mdev && base == media_bays[i].cd_base) {
448                         if ((what == media_bays[i].content_id) && media_bays[i].state == mb_up)
449                                 return 0;
450                         media_bays[i].cd_index = -1;
451                         return -EINVAL;
452                 } 
453 #endif
454         
455         return -ENODEV;
456 }
457
458 int __pmac media_bay_set_ide_infos(struct device_node* which_bay, unsigned long base,
459         int irq, int index)
460 {
461 #ifdef CONFIG_BLK_DEV_IDE
462         int     i;
463
464         for (i=0; i<media_bay_count; i++) {
465                 struct media_bay_info* bay = &media_bays[i];
466
467                 if (bay->mdev && which_bay == bay->mdev->ofdev.node) {
468                         int timeout = 5000;
469                         
470                         down(&bay->lock);
471
472                         bay->cd_base    = base;
473                         bay->cd_irq     = irq;
474
475                         if ((MB_CD != bay->content_id) || bay->state != mb_up) {
476                                 up(&bay->lock);
477                                 return 0;
478                         }
479                         printk(KERN_DEBUG "Registered ide%d for media bay %d\n", index, i);
480                         do {
481                                 if (MB_IDE_READY(i)) {
482                                         bay->cd_index   = index;
483                                         up(&bay->lock);
484                                         return 0;
485                                 }
486                                 mdelay(1);
487                         } while(--timeout);
488                         printk(KERN_DEBUG "Timeount waiting IDE in bay %d\n", i);
489                         up(&bay->lock);
490                         return -ENODEV;
491                 }
492         }
493 #endif /* CONFIG_BLK_DEV_IDE */
494         
495         return -ENODEV;
496 }
497
498 static void __pmac media_bay_step(int i)
499 {
500         struct media_bay_info* bay = &media_bays[i];
501
502         /* We don't poll when powering down */
503         if (bay->state != mb_powering_down)
504             poll_media_bay(bay);
505
506         /* If timer expired or polling IDE busy, run state machine */
507         if ((bay->state != mb_ide_waiting) && (bay->timer != 0)) {
508                 bay->timer -= MS_TO_HZ(MB_POLL_DELAY);
509                 if (bay->timer > 0)
510                         return;
511                 bay->timer = 0;
512         }
513
514         switch(bay->state) {
515         case mb_powering_up:
516                 if (bay->ops->setup_bus(bay, bay->last_value) < 0) {
517                         MBDBG("mediabay%d: device not supported (kind:%d)\n", i, bay->content_id);
518                         set_mb_power(bay, 0);
519                         break;
520                 }
521                 bay->timer = MS_TO_HZ(MB_RESET_DELAY);
522                 bay->state = mb_enabling_bay;
523                 MBDBG("mediabay%d: enabling (kind:%d)\n", i, bay->content_id);
524                 break;
525         case mb_enabling_bay:
526                 bay->ops->un_reset(bay);
527                 bay->timer = MS_TO_HZ(MB_SETUP_DELAY);
528                 bay->state = mb_resetting;
529                 MBDBG("mediabay%d: waiting reset (kind:%d)\n", i, bay->content_id);
530                 break;
531             
532         case mb_resetting:
533                 if (bay->content_id != MB_CD) {
534                         MBDBG("mediabay%d: bay is up (kind:%d)\n", i, bay->content_id);
535                         bay->state = mb_up;
536                         break;
537                 }
538 #ifdef CONFIG_BLK_DEV_IDE
539                 MBDBG("mediabay%d: waiting IDE reset (kind:%d)\n", i, bay->content_id);
540                 bay->ops->un_reset_ide(bay);
541                 bay->timer = MS_TO_HZ(MB_IDE_WAIT);
542                 bay->state = mb_ide_resetting;
543 #else
544                 printk(KERN_DEBUG "media-bay %d is ide (not compiled in kernel)\n", i);
545                 set_mb_power(bay, 0);
546 #endif /* CONFIG_BLK_DEV_IDE */
547                 break;
548             
549 #ifdef CONFIG_BLK_DEV_IDE
550         case mb_ide_resetting:
551                 bay->timer = MS_TO_HZ(MB_IDE_TIMEOUT);
552                 bay->state = mb_ide_waiting;
553                 MBDBG("mediabay%d: waiting IDE ready (kind:%d)\n", i, bay->content_id);
554                 break;
555             
556         case mb_ide_waiting:
557                 if (bay->cd_base == 0) {
558                         bay->timer = 0;
559                         bay->state = mb_up;
560                         MBDBG("mediabay%d: up before IDE init\n", i);
561                         break;
562                 } else if (MB_IDE_READY(i)) {
563                         bay->timer = 0;
564                         bay->state = mb_up;
565                         if (bay->cd_index < 0) {
566                                 hw_regs_t hw;
567
568                                 printk("mediabay %d, registering IDE...\n", i);
569                                 pmu_suspend();
570                                 ide_init_hwif_ports(&hw, (unsigned long) bay->cd_base, (unsigned long) 0, NULL);
571                                 hw.irq = bay->cd_irq;
572                                 hw.chipset = ide_pmac;
573                                 bay->cd_index = ide_register_hw(&hw, &bay->cd_hwif);
574                                 pmu_resume();
575                         }
576                         if (bay->cd_index == -1) {
577                                 /* We eventually do a retry */
578                                 bay->cd_retry++;
579                                 printk("IDE register error\n");
580                                 set_mb_power(bay, 0);
581                         } else {
582                                 printk(KERN_DEBUG "media-bay %d is ide%d\n", i, bay->cd_index);
583                                 MBDBG("mediabay %d IDE ready\n", i);
584                         }
585                         break;
586                 } else if (bay->timer > 0)
587                         bay->timer -= MS_TO_HZ(MB_POLL_DELAY);
588                 if (bay->timer <= 0) {
589                         printk("\nIDE Timeout in bay %d !, IDE state is: 0x%02x\n",
590                                i, readb(bay->cd_base + 0x70));
591                         MBDBG("mediabay%d: nIDE Timeout !\n", i);
592                         set_mb_power(bay, 0);
593                         bay->timer = 0;
594                 }
595                 break;
596 #endif /* CONFIG_BLK_DEV_IDE */
597
598         case mb_powering_down:
599                 bay->state = mb_empty;
600 #ifdef CONFIG_BLK_DEV_IDE
601                 if (bay->cd_index >= 0) {
602                         printk(KERN_DEBUG "Unregistering mb %d ide, index:%d\n", i,
603                                bay->cd_index);
604                         ide_unregister_hwif(bay->cd_hwif);
605                         bay->cd_index = -1;
606                 }
607                 if (bay->cd_retry) {
608                         if (bay->cd_retry > MAX_CD_RETRIES) {
609                                 /* Should add an error sound (sort of beep in dmasound) */
610                                 printk("\nmedia-bay %d, IDE device badly inserted or unrecognised\n", i);
611                         } else {
612                                 /* Force a new power down/up sequence */
613                                 bay->content_id = MB_NO;
614                         }
615                 }
616 #endif /* CONFIG_BLK_DEV_IDE */    
617                 MBDBG("mediabay%d: end of power down\n", i);
618                 break;
619         }
620 }
621
622 /*
623  * This procedure runs as a kernel thread to poll the media bay
624  * once each tick and register and unregister the IDE interface
625  * with the IDE driver.  It needs to be a thread because
626  * ide_register can't be called from interrupt context.
627  */
628 static int __pmac media_bay_task(void *x)
629 {
630         int     i;
631
632         strcpy(current->comm, "media-bay");
633 #ifdef MB_IGNORE_SIGNALS
634         sigfillset(&current->blocked);
635 #endif
636
637         for (;;) {
638                 for (i = 0; i < media_bay_count; ++i) {
639                         down(&media_bays[i].lock);
640                         if (!media_bays[i].sleeping)
641                                 media_bay_step(i);
642                         up(&media_bays[i].lock);
643                 }
644
645                 current->state = TASK_INTERRUPTIBLE;
646                 schedule_timeout(MS_TO_HZ(MB_POLL_DELAY));
647                 if (signal_pending(current))
648                         return 0;
649         }
650 }
651
652 static int __devinit media_bay_attach(struct macio_dev *mdev, const struct of_match *match)
653 {
654         struct media_bay_info* bay;
655         volatile u32 *regbase;
656         struct device_node *ofnode;
657         int i;
658
659         ofnode = mdev->ofdev.node;
660
661         if (macio_resource_count(mdev) < 1)
662                 return -ENODEV;
663         if (macio_request_resources(mdev, "media-bay"))
664                 return -EBUSY;
665         /* Media bay registers are located at the beginning of the
666          * mac-io chip, we get the parent address for now (hrm...)
667          */
668         regbase = (volatile u32 *)ioremap(ofnode->parent->addrs[0].address, 0x100);
669         if (regbase == NULL) {
670                 macio_release_resources(mdev);
671                 return -ENOMEM;
672         }
673         
674         i = media_bay_count++;
675         bay = &media_bays[i];
676         bay->mdev = mdev;
677         bay->base = regbase;
678         bay->index = i;
679         bay->ops = match->data;
680         bay->sleeping = 0;
681         init_MUTEX(&bay->lock);
682
683         /* Init HW probing */
684         if (bay->ops->init)
685                 bay->ops->init(bay);
686
687         printk(KERN_INFO "mediabay%d: Registered %s media-bay\n", i, bay->ops->name);
688
689         /* Force an immediate detect */
690         set_mb_power(bay, 0);
691         msleep(MB_POWER_DELAY);
692         bay->content_id = MB_NO;
693         bay->last_value = bay->ops->content(bay);
694         bay->value_count = MS_TO_HZ(MB_STABLE_DELAY);
695         bay->state = mb_empty;
696         do {
697                 msleep(MB_POLL_DELAY);
698                 media_bay_step(i);
699         } while((bay->state != mb_empty) &&
700                 (bay->state != mb_up));
701
702         /* Mark us ready by filling our mdev data */
703         macio_set_drvdata(mdev, bay);
704
705         /* Startup kernel thread */
706         if (i == 0)
707                 kernel_thread(media_bay_task, NULL, CLONE_KERNEL);
708
709         return 0;
710
711 }
712
713 static int __pmac media_bay_suspend(struct macio_dev *mdev, u32 state)
714 {
715         struct media_bay_info   *bay = macio_get_drvdata(mdev);
716
717         if (state != mdev->ofdev.dev.power_state && state >= 2) {
718                 down(&bay->lock);
719                 bay->sleeping = 1;
720                 set_mb_power(bay, 0);
721                 up(&bay->lock);
722                 msleep(MB_POLL_DELAY);
723                 mdev->ofdev.dev.power_state = state;
724         }
725         return 0;
726 }
727
728 static int __pmac media_bay_resume(struct macio_dev *mdev)
729 {
730         struct media_bay_info   *bay = macio_get_drvdata(mdev);
731
732         if (mdev->ofdev.dev.power_state != 0) {
733                 mdev->ofdev.dev.power_state = 0;
734
735                 /* We re-enable the bay using it's previous content
736                    only if it did not change. Note those bozo timings,
737                    they seem to help the 3400 get it right.
738                  */
739                 /* Force MB power to 0 */
740                 down(&bay->lock);
741                 set_mb_power(bay, 0);
742                 msleep(MB_POWER_DELAY);
743                 if (bay->ops->content(bay) != bay->content_id) {
744                         printk("mediabay%d: content changed during sleep...\n", bay->index);
745                         up(&bay->lock);
746                         return 0;
747                 }
748                 set_mb_power(bay, 1);
749                 bay->last_value = bay->content_id;
750                 bay->value_count = MS_TO_HZ(MB_STABLE_DELAY);
751                 bay->timer = MS_TO_HZ(MB_POWER_DELAY);
752 #ifdef CONFIG_BLK_DEV_IDE
753                 bay->cd_retry = 0;
754 #endif
755                 do {
756                         msleep(MB_POLL_DELAY);
757                         media_bay_step(bay->index);
758                 } while((bay->state != mb_empty) &&
759                         (bay->state != mb_up));
760                 bay->sleeping = 0;
761                 up(&bay->lock);
762         }
763         return 0;
764 }
765
766
767 /* Definitions of "ops" structures.
768  */
769 static struct mb_ops ohare_mb_ops __pmacdata = {
770         .name           = "Ohare",
771         .content        = ohare_mb_content,
772         .power          = ohare_mb_power,
773         .setup_bus      = ohare_mb_setup_bus,
774         .un_reset       = ohare_mb_un_reset,
775         .un_reset_ide   = ohare_mb_un_reset_ide,
776 };
777
778 static struct mb_ops heathrow_mb_ops __pmacdata = {
779         .name           = "Heathrow",
780         .content        = heathrow_mb_content,
781         .power          = heathrow_mb_power,
782         .setup_bus      = heathrow_mb_setup_bus,
783         .un_reset       = heathrow_mb_un_reset,
784         .un_reset_ide   = heathrow_mb_un_reset_ide,
785 };
786
787 static struct mb_ops keylargo_mb_ops __pmacdata = {
788         .name           = "KeyLargo",
789         .init           = keylargo_mb_init,
790         .content        = keylargo_mb_content,
791         .power          = keylargo_mb_power,
792         .setup_bus      = keylargo_mb_setup_bus,
793         .un_reset       = keylargo_mb_un_reset,
794         .un_reset_ide   = keylargo_mb_un_reset_ide,
795 };
796
797 /*
798  * It seems that the bit for the media-bay interrupt in the IRQ_LEVEL
799  * register is always set when there is something in the media bay.
800  * This causes problems for the interrupt code if we attach an interrupt
801  * handler to the media-bay interrupt, because it tends to go into
802  * an infinite loop calling the media bay interrupt handler.
803  * Therefore we do it all by polling the media bay once each tick.
804  */
805
806 static struct of_match media_bay_match[] =
807 {
808         {
809         .name           = "media-bay",
810         .type           = OF_ANY_MATCH,
811         .compatible     = "keylargo-media-bay",
812         .data           = &keylargo_mb_ops,
813         },
814         {
815         .name           = "media-bay",
816         .type           = OF_ANY_MATCH,
817         .compatible     = "heathrow-media-bay",
818         .data           = &heathrow_mb_ops,
819         },
820         {
821         .name           = "media-bay",
822         .type           = OF_ANY_MATCH,
823         .compatible     = "ohare-media-bay",
824         .data           = &ohare_mb_ops,
825         },
826         {},
827 };
828
829 static struct macio_driver media_bay_driver =
830 {
831         .name           = "media-bay",
832         .match_table    = media_bay_match,
833         .probe          = media_bay_attach,
834         .suspend        = media_bay_suspend,
835         .resume         = media_bay_resume
836 };
837
838 static int __init media_bay_init(void)
839 {
840         int i;
841
842         for (i=0; i<MAX_BAYS; i++) {
843                 memset((char *)&media_bays[i], 0, sizeof(struct media_bay_info));
844                 media_bays[i].content_id        = -1;
845 #ifdef CONFIG_BLK_DEV_IDE
846                 media_bays[i].cd_index          = -1;
847 #endif
848         }
849         if (_machine != _MACH_Pmac)
850                 return -ENODEV;
851
852         macio_register_driver(&media_bay_driver);       
853
854         return 0;
855 }
856
857 device_initcall(media_bay_init);