VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / arch / ppc / platforms / pmac_pic.c
1 /*
2  *  Support for the interrupt controllers found on Power Macintosh,
3  *  currently Apple's "Grand Central" interrupt controller in all
4  *  it's incarnations. OpenPIC support used on newer machines is
5  *  in a separate file
6  *
7  *  Copyright (C) 1997 Paul Mackerras (paulus@cs.anu.edu.au)
8  *
9  *  Maintained by Benjamin Herrenschmidt (benh@kernel.crashing.org)
10  *
11  *  This program is free software; you can redistribute it and/or
12  *  modify it under the terms of the GNU General Public License
13  *  as published by the Free Software Foundation; either version
14  *  2 of the License, or (at your option) any later version.
15  *
16  */
17
18 #include <linux/config.h>
19 #include <linux/stddef.h>
20 #include <linux/init.h>
21 #include <linux/sched.h>
22 #include <linux/signal.h>
23 #include <linux/pci.h>
24 #include <linux/interrupt.h>
25 #include <linux/sysdev.h>
26 #include <linux/adb.h>
27 #include <linux/pmu.h>
28
29 #include <asm/sections.h>
30 #include <asm/io.h>
31 #include <asm/smp.h>
32 #include <asm/prom.h>
33 #include <asm/pci-bridge.h>
34 #include <asm/time.h>
35 #include <asm/open_pic.h>
36 #include <asm/xmon.h>
37 #include <asm/pmac_feature.h>
38
39 #include "pmac_pic.h"
40
41 /*
42  * XXX this should be in xmon.h, but putting it there means xmon.h
43  * has to include <linux/interrupt.h> (to get irqreturn_t), which
44  * causes all sorts of problems.  -- paulus
45  */
46 extern irqreturn_t xmon_irq(int, void *, struct pt_regs *);
47
48 struct pmac_irq_hw {
49         unsigned int    event;
50         unsigned int    enable;
51         unsigned int    ack;
52         unsigned int    level;
53 };
54
55 /* Default addresses */
56 static volatile struct pmac_irq_hw *pmac_irq_hw[4] __pmacdata = {
57         (struct pmac_irq_hw *) 0xf3000020,
58         (struct pmac_irq_hw *) 0xf3000010,
59         (struct pmac_irq_hw *) 0xf4000020,
60         (struct pmac_irq_hw *) 0xf4000010,
61 };
62
63 #define GC_LEVEL_MASK           0x3ff00000
64 #define OHARE_LEVEL_MASK        0x1ff00000
65 #define HEATHROW_LEVEL_MASK     0x1ff00000
66
67 static int max_irqs __pmacdata;
68 static int max_real_irqs __pmacdata;
69 static u32 level_mask[4] __pmacdata;
70
71 static spinlock_t pmac_pic_lock __pmacdata = SPIN_LOCK_UNLOCKED;
72
73
74 #define GATWICK_IRQ_POOL_SIZE        10
75 static struct interrupt_info gatwick_int_pool[GATWICK_IRQ_POOL_SIZE] __pmacdata;
76
77 /*
78  * Mark an irq as "lost".  This is only used on the pmac
79  * since it can lose interrupts (see pmac_set_irq_mask).
80  * -- Cort
81  */
82 void __pmac
83 __set_lost(unsigned long irq_nr, int nokick)
84 {
85         if (!test_and_set_bit(irq_nr, ppc_lost_interrupts)) {
86                 atomic_inc(&ppc_n_lost_interrupts);
87                 if (!nokick)
88                         set_dec(1);
89         }
90 }
91
92 static void __pmac
93 pmac_mask_and_ack_irq(unsigned int irq_nr)
94 {
95         unsigned long bit = 1UL << (irq_nr & 0x1f);
96         int i = irq_nr >> 5;
97         unsigned long flags;
98
99         if ((unsigned)irq_nr >= max_irqs)
100                 return;
101
102         clear_bit(irq_nr, ppc_cached_irq_mask);
103         if (test_and_clear_bit(irq_nr, ppc_lost_interrupts))
104                 atomic_dec(&ppc_n_lost_interrupts);
105         spin_lock_irqsave(&pmac_pic_lock, flags);
106         out_le32(&pmac_irq_hw[i]->enable, ppc_cached_irq_mask[i]);
107         out_le32(&pmac_irq_hw[i]->ack, bit);
108         do {
109                 /* make sure ack gets to controller before we enable
110                    interrupts */
111                 mb();
112         } while((in_le32(&pmac_irq_hw[i]->enable) & bit)
113                 != (ppc_cached_irq_mask[i] & bit));
114         spin_unlock_irqrestore(&pmac_pic_lock, flags);
115 }
116
117 static void __pmac pmac_set_irq_mask(unsigned int irq_nr, int nokicklost)
118 {
119         unsigned long bit = 1UL << (irq_nr & 0x1f);
120         int i = irq_nr >> 5;
121         unsigned long flags;
122
123         if ((unsigned)irq_nr >= max_irqs)
124                 return;
125
126         spin_lock_irqsave(&pmac_pic_lock, flags);
127         /* enable unmasked interrupts */
128         out_le32(&pmac_irq_hw[i]->enable, ppc_cached_irq_mask[i]);
129
130         do {
131                 /* make sure mask gets to controller before we
132                    return to user */
133                 mb();
134         } while((in_le32(&pmac_irq_hw[i]->enable) & bit)
135                 != (ppc_cached_irq_mask[i] & bit));
136
137         /*
138          * Unfortunately, setting the bit in the enable register
139          * when the device interrupt is already on *doesn't* set
140          * the bit in the flag register or request another interrupt.
141          */
142         if (bit & ppc_cached_irq_mask[i] & in_le32(&pmac_irq_hw[i]->level))
143                 __set_lost((ulong)irq_nr, nokicklost);
144         spin_unlock_irqrestore(&pmac_pic_lock, flags);
145 }
146
147 /* When an irq gets requested for the first client, if it's an
148  * edge interrupt, we clear any previous one on the controller
149  */
150 static unsigned int __pmac pmac_startup_irq(unsigned int irq_nr)
151 {
152         unsigned long bit = 1UL << (irq_nr & 0x1f);
153         int i = irq_nr >> 5;
154
155         if ((irq_desc[irq_nr].status & IRQ_LEVEL) == 0)
156                 out_le32(&pmac_irq_hw[i]->ack, bit);
157         set_bit(irq_nr, ppc_cached_irq_mask);
158         pmac_set_irq_mask(irq_nr, 0);
159
160         return 0;
161 }
162
163 static void __pmac pmac_mask_irq(unsigned int irq_nr)
164 {
165         clear_bit(irq_nr, ppc_cached_irq_mask);
166         pmac_set_irq_mask(irq_nr, 0);
167         mb();
168 }
169
170 static void __pmac pmac_unmask_irq(unsigned int irq_nr)
171 {
172         set_bit(irq_nr, ppc_cached_irq_mask);
173         pmac_set_irq_mask(irq_nr, 0);
174 }
175
176 static void __pmac pmac_end_irq(unsigned int irq_nr)
177 {
178         if (!(irq_desc[irq_nr].status & (IRQ_DISABLED|IRQ_INPROGRESS))
179             && irq_desc[irq_nr].action) {
180                 set_bit(irq_nr, ppc_cached_irq_mask);
181                 pmac_set_irq_mask(irq_nr, 1);
182         }
183 }
184
185
186 struct hw_interrupt_type pmac_pic = {
187         .typename       = " PMAC-PIC ",
188         .startup        = pmac_startup_irq,
189         .enable         = pmac_unmask_irq,
190         .disable        = pmac_mask_irq,
191         .ack            = pmac_mask_and_ack_irq,
192         .end            = pmac_end_irq,
193 };
194
195 struct hw_interrupt_type gatwick_pic = {
196         .typename       = " GATWICK  ",
197         .startup        = pmac_startup_irq,
198         .enable         = pmac_unmask_irq,
199         .disable        = pmac_mask_irq,
200         .ack            = pmac_mask_and_ack_irq,
201         .end            = pmac_end_irq,
202 };
203
204 static irqreturn_t gatwick_action(int cpl, void *dev_id, struct pt_regs *regs)
205 {
206         int irq, bits;
207
208         for (irq = max_irqs; (irq -= 32) >= max_real_irqs; ) {
209                 int i = irq >> 5;
210                 bits = in_le32(&pmac_irq_hw[i]->event) | ppc_lost_interrupts[i];
211                 /* We must read level interrupts from the level register */
212                 bits |= (in_le32(&pmac_irq_hw[i]->level) & level_mask[i]);
213                 bits &= ppc_cached_irq_mask[i];
214                 if (bits == 0)
215                         continue;
216                 irq += __ilog2(bits);
217                 ppc_irq_dispatch_handler(regs, irq);
218                 return IRQ_HANDLED;
219         }
220         printk("gatwick irq not from gatwick pic\n");
221         return IRQ_NONE;
222 }
223
224 int
225 pmac_get_irq(struct pt_regs *regs)
226 {
227         int irq;
228         unsigned long bits = 0;
229
230 #ifdef CONFIG_SMP
231         void psurge_smp_message_recv(struct pt_regs *);
232
233         /* IPI's are a hack on the powersurge -- Cort */
234         if ( smp_processor_id() != 0 ) {
235                 psurge_smp_message_recv(regs);
236                 return -2;      /* ignore, already handled */
237         }
238 #endif /* CONFIG_SMP */
239         for (irq = max_real_irqs; (irq -= 32) >= 0; ) {
240                 int i = irq >> 5;
241                 bits = in_le32(&pmac_irq_hw[i]->event) | ppc_lost_interrupts[i];
242                 /* We must read level interrupts from the level register */
243                 bits |= (in_le32(&pmac_irq_hw[i]->level) & level_mask[i]);
244                 bits &= ppc_cached_irq_mask[i];
245                 if (bits == 0)
246                         continue;
247                 irq += __ilog2(bits);
248                 break;
249         }
250
251         return irq;
252 }
253
254 /* This routine will fix some missing interrupt values in the device tree
255  * on the gatwick mac-io controller used by some PowerBooks
256  */
257 static void __init
258 pmac_fix_gatwick_interrupts(struct device_node *gw, int irq_base)
259 {
260         struct device_node *node;
261         int count;
262
263         memset(gatwick_int_pool, 0, sizeof(gatwick_int_pool));
264         node = gw->child;
265         count = 0;
266         while(node)
267         {
268                 /* Fix SCC */
269                 if (strcasecmp(node->name, "escc") == 0)
270                         if (node->child) {
271                                 if (node->child->n_intrs < 3) {
272                                         node->child->intrs = &gatwick_int_pool[count];
273                                         count += 3;
274                                 }
275                                 node->child->n_intrs = 3;
276                                 node->child->intrs[0].line = 15+irq_base;
277                                 node->child->intrs[1].line =  4+irq_base;
278                                 node->child->intrs[2].line =  5+irq_base;
279                                 printk(KERN_INFO "irq: fixed SCC on second controller (%d,%d,%d)\n",
280                                         node->child->intrs[0].line,
281                                         node->child->intrs[1].line,
282                                         node->child->intrs[2].line);
283                         }
284                 /* Fix media-bay & left SWIM */
285                 if (strcasecmp(node->name, "media-bay") == 0) {
286                         struct device_node* ya_node;
287
288                         if (node->n_intrs == 0)
289                                 node->intrs = &gatwick_int_pool[count++];
290                         node->n_intrs = 1;
291                         node->intrs[0].line = 29+irq_base;
292                         printk(KERN_INFO "irq: fixed media-bay on second controller (%d)\n",
293                                         node->intrs[0].line);
294
295                         ya_node = node->child;
296                         while(ya_node)
297                         {
298                                 if (strcasecmp(ya_node->name, "floppy") == 0) {
299                                         if (ya_node->n_intrs < 2) {
300                                                 ya_node->intrs = &gatwick_int_pool[count];
301                                                 count += 2;
302                                         }
303                                         ya_node->n_intrs = 2;
304                                         ya_node->intrs[0].line = 19+irq_base;
305                                         ya_node->intrs[1].line =  1+irq_base;
306                                         printk(KERN_INFO "irq: fixed floppy on second controller (%d,%d)\n",
307                                                 ya_node->intrs[0].line, ya_node->intrs[1].line);
308                                 }
309                                 if (strcasecmp(ya_node->name, "ata4") == 0) {
310                                         if (ya_node->n_intrs < 2) {
311                                                 ya_node->intrs = &gatwick_int_pool[count];
312                                                 count += 2;
313                                         }
314                                         ya_node->n_intrs = 2;
315                                         ya_node->intrs[0].line = 14+irq_base;
316                                         ya_node->intrs[1].line =  3+irq_base;
317                                         printk(KERN_INFO "irq: fixed ide on second controller (%d,%d)\n",
318                                                 ya_node->intrs[0].line, ya_node->intrs[1].line);
319                                 }
320                                 ya_node = ya_node->sibling;
321                         }
322                 }
323                 node = node->sibling;
324         }
325         if (count > 10) {
326                 printk("WARNING !! Gatwick interrupt pool overflow\n");
327                 printk("  GATWICK_IRQ_POOL_SIZE = %d\n", GATWICK_IRQ_POOL_SIZE);
328                 printk("              requested = %d\n", count);
329         }
330 }
331
332 /*
333  * The PowerBook 3400/2400/3500 can have a combo ethernet/modem
334  * card which includes an ohare chip that acts as a second interrupt
335  * controller.  If we find this second ohare, set it up and fix the
336  * interrupt value in the device tree for the ethernet chip.
337  */
338 static int __init enable_second_ohare(void)
339 {
340         unsigned char bus, devfn;
341         unsigned short cmd;
342         unsigned long addr;
343         struct device_node *irqctrler = find_devices("pci106b,7");
344         struct device_node *ether;
345
346         if (irqctrler == NULL || irqctrler->n_addrs <= 0)
347                 return -1;
348         addr = (unsigned long) ioremap(irqctrler->addrs[0].address, 0x40);
349         pmac_irq_hw[1] = (volatile struct pmac_irq_hw *)(addr + 0x20);
350         max_irqs = 64;
351         if (pci_device_from_OF_node(irqctrler, &bus, &devfn) == 0) {
352                 struct pci_controller* hose = pci_find_hose_for_OF_device(irqctrler);
353                 if (!hose)
354                     printk(KERN_ERR "Can't find PCI hose for OHare2 !\n");
355                 else {
356                     early_read_config_word(hose, bus, devfn, PCI_COMMAND, &cmd);
357                     cmd |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER;
358                     cmd &= ~PCI_COMMAND_IO;
359                     early_write_config_word(hose, bus, devfn, PCI_COMMAND, cmd);
360                 }
361         }
362
363         /* Fix interrupt for the modem/ethernet combo controller. The number
364            in the device tree (27) is bogus (correct for the ethernet-only
365            board but not the combo ethernet/modem board).
366            The real interrupt is 28 on the second controller -> 28+32 = 60.
367         */
368         ether = find_devices("pci1011,14");
369         if (ether && ether->n_intrs > 0) {
370                 ether->intrs[0].line = 60;
371                 printk(KERN_INFO "irq: Fixed ethernet IRQ to %d\n",
372                        ether->intrs[0].line);
373         }
374
375         /* Return the interrupt number of the cascade */
376         return irqctrler->intrs[0].line;
377 }
378
379 #ifdef CONFIG_POWER4
380 static irqreturn_t k2u3_action(int cpl, void *dev_id, struct pt_regs *regs)
381 {
382         int irq;
383
384         irq = openpic2_get_irq(regs);
385         if (irq != -1)
386                 ppc_irq_dispatch_handler(regs, irq);
387         return IRQ_HANDLED;
388 }
389 #endif /* CONFIG_POWER4 */
390
391 void __init pmac_pic_init(void)
392 {
393         int i;
394         struct device_node *irqctrler  = NULL;
395         struct device_node *irqctrler2 = NULL;
396         struct device_node *np;
397         unsigned long addr;
398         int irq_cascade = -1;
399
400         /* We first try to detect Apple's new Core99 chipset, since mac-io
401          * is quite different on those machines and contains an IBM MPIC2.
402          */
403         np = find_type_devices("open-pic");
404         while(np) {
405                 if (np->parent && !strcmp(np->parent->name, "u3"))
406                         irqctrler2 = np;
407                 else
408                         irqctrler = np;
409                 np = np->next;
410         }
411         if (irqctrler != NULL)
412         {
413                 if (irqctrler->n_addrs > 0)
414                 {
415                         unsigned char senses[128];
416
417                         printk(KERN_INFO "PowerMac using OpenPIC irq controller at 0x%08x\n",
418                                irqctrler->addrs[0].address);
419
420                         prom_get_irq_senses(senses, 0, 128);
421                         OpenPIC_InitSenses = senses;
422                         OpenPIC_NumInitSenses = 128;
423                         ppc_md.get_irq = openpic_get_irq;
424                         pmac_call_feature(PMAC_FTR_ENABLE_MPIC, irqctrler, 0, 0);
425                         OpenPIC_Addr = ioremap(irqctrler->addrs[0].address,
426                                                irqctrler->addrs[0].size);
427                         openpic_init(0);
428
429 #ifdef CONFIG_POWER4
430                         if (irqctrler2 != NULL && irqctrler2->n_intrs > 0 &&
431                             irqctrler2->n_addrs > 0) {
432                                 printk(KERN_INFO "Slave OpenPIC at 0x%08x hooked on IRQ %d\n",
433                                        irqctrler2->addrs[0].address,
434                                        irqctrler2->intrs[0].line);
435                                 pmac_call_feature(PMAC_FTR_ENABLE_MPIC, irqctrler2, 0, 0);
436                                 OpenPIC2_Addr = ioremap(irqctrler2->addrs[0].address,
437                                                         irqctrler2->addrs[0].size);
438                                 prom_get_irq_senses(senses, PMAC_OPENPIC2_OFFSET,
439                                                     PMAC_OPENPIC2_OFFSET+128);
440                                 OpenPIC_InitSenses = senses;
441                                 OpenPIC_NumInitSenses = 128;
442                                 openpic2_init(PMAC_OPENPIC2_OFFSET);
443                                 if (request_irq(irqctrler2->intrs[0].line, k2u3_action, 0,
444                                                 "U3->K2 Cascade", NULL))
445                                         printk("Unable to get OpenPIC IRQ for cascade\n");
446                         }
447 #endif /* CONFIG_POWER4 */
448
449 #ifdef CONFIG_XMON
450                         {
451                                 struct device_node* pswitch;
452                                 int nmi_irq;
453
454                                 pswitch = find_devices("programmer-switch");
455                                 if (pswitch && pswitch->n_intrs) {
456                                         nmi_irq = pswitch->intrs[0].line;
457                                         openpic_init_nmi_irq(nmi_irq);
458                                         request_irq(nmi_irq, xmon_irq, 0,
459                                                     "NMI - XMON", NULL);
460                                 }
461                         }
462 #endif  /* CONFIG_XMON */
463                         return;
464                 }
465                 irqctrler = NULL;
466         }
467
468         /* Get the level/edge settings, assume if it's not
469          * a Grand Central nor an OHare, then it's an Heathrow
470          * (or Paddington).
471          */
472         if (find_devices("gc"))
473                 level_mask[0] = GC_LEVEL_MASK;
474         else if (find_devices("ohare")) {
475                 level_mask[0] = OHARE_LEVEL_MASK;
476                 /* We might have a second cascaded ohare */
477                 level_mask[1] = OHARE_LEVEL_MASK;
478         } else {
479                 level_mask[0] = HEATHROW_LEVEL_MASK;
480                 level_mask[1] = 0;
481                 /* We might have a second cascaded heathrow */
482                 level_mask[2] = HEATHROW_LEVEL_MASK;
483                 level_mask[3] = 0;
484         }
485
486         /*
487          * G3 powermacs and 1999 G3 PowerBooks have 64 interrupts,
488          * 1998 G3 Series PowerBooks have 128,
489          * other powermacs have 32.
490          * The combo ethernet/modem card for the Powerstar powerbooks
491          * (2400/3400/3500, ohare based) has a second ohare chip
492          * effectively making a total of 64.
493          */
494         max_irqs = max_real_irqs = 32;
495         irqctrler = find_devices("mac-io");
496         if (irqctrler)
497         {
498                 max_real_irqs = 64;
499                 if (irqctrler->next)
500                         max_irqs = 128;
501                 else
502                         max_irqs = 64;
503         }
504         for ( i = 0; i < max_real_irqs ; i++ )
505                 irq_desc[i].handler = &pmac_pic;
506
507         /* get addresses of first controller */
508         if (irqctrler) {
509                 if  (irqctrler->n_addrs > 0) {
510                         addr = (unsigned long)
511                                 ioremap(irqctrler->addrs[0].address, 0x40);
512                         for (i = 0; i < 2; ++i)
513                                 pmac_irq_hw[i] = (volatile struct pmac_irq_hw*)
514                                         (addr + (2 - i) * 0x10);
515                 }
516
517                 /* get addresses of second controller */
518                 irqctrler = irqctrler->next;
519                 if (irqctrler && irqctrler->n_addrs > 0) {
520                         addr = (unsigned long)
521                                 ioremap(irqctrler->addrs[0].address, 0x40);
522                         for (i = 2; i < 4; ++i)
523                                 pmac_irq_hw[i] = (volatile struct pmac_irq_hw*)
524                                         (addr + (4 - i) * 0x10);
525                         irq_cascade = irqctrler->intrs[0].line;
526                         if (device_is_compatible(irqctrler, "gatwick"))
527                                 pmac_fix_gatwick_interrupts(irqctrler, max_real_irqs);
528                 }
529         } else {
530                 /* older powermacs have a GC (grand central) or ohare at
531                    f3000000, with interrupt control registers at f3000020. */
532                 addr = (unsigned long) ioremap(0xf3000000, 0x40);
533                 pmac_irq_hw[0] = (volatile struct pmac_irq_hw *) (addr + 0x20);
534         }
535
536         /* PowerBooks 3400 and 3500 can have a second controller in a second
537            ohare chip, on the combo ethernet/modem card */
538         if (machine_is_compatible("AAPL,3400/2400")
539              || machine_is_compatible("AAPL,3500"))
540                 irq_cascade = enable_second_ohare();
541
542         /* disable all interrupts in all controllers */
543         for (i = 0; i * 32 < max_irqs; ++i)
544                 out_le32(&pmac_irq_hw[i]->enable, 0);
545         /* mark level interrupts */
546         for (i = 0; i < max_irqs; i++)
547                 if (level_mask[i >> 5] & (1UL << (i & 0x1f)))
548                         irq_desc[i].status = IRQ_LEVEL;
549
550         /* get interrupt line of secondary interrupt controller */
551         if (irq_cascade >= 0) {
552                 printk(KERN_INFO "irq: secondary controller on irq %d\n",
553                         (int)irq_cascade);
554                 for ( i = max_real_irqs ; i < max_irqs ; i++ )
555                         irq_desc[i].handler = &gatwick_pic;
556                 request_irq( irq_cascade, gatwick_action, SA_INTERRUPT,
557                              "cascade", NULL );
558         }
559         printk("System has %d possible interrupts\n", max_irqs);
560         if (max_irqs != max_real_irqs)
561                 printk(KERN_DEBUG "%d interrupts on main controller\n",
562                         max_real_irqs);
563
564 #ifdef CONFIG_XMON
565         request_irq(20, xmon_irq, 0, "NMI - XMON", NULL);
566 #endif  /* CONFIG_XMON */
567 }
568
569 #ifdef CONFIG_PM
570 /*
571  * These procedures are used in implementing sleep on the powerbooks.
572  * sleep_save_intrs() saves the states of all interrupt enables
573  * and disables all interrupts except for the nominated one.
574  * sleep_restore_intrs() restores the states of all interrupt enables.
575  */
576 unsigned long sleep_save_mask[2];
577
578 /* This used to be passed by the PMU driver but that link got
579  * broken with the new driver model. We use this tweak for now...
580  */
581 static int pmacpic_find_viaint(void)
582 {
583         int viaint = -1;
584
585 #ifdef CONFIG_ADB_PMU
586         struct device_node *np;
587
588         if (pmu_get_model() != PMU_OHARE_BASED)
589                 goto not_found;
590         np = of_find_node_by_name(NULL, "via-pmu");
591         if (np == NULL)
592                 goto not_found;
593         viaint = np->intrs[0].line;
594 #endif /* CONFIG_ADB_PMU */
595
596 not_found:
597         return viaint;
598 }
599
600 static int pmacpic_suspend(struct sys_device *sysdev, u32 state)
601 {
602         int viaint = pmacpic_find_viaint();
603
604         sleep_save_mask[0] = ppc_cached_irq_mask[0];
605         sleep_save_mask[1] = ppc_cached_irq_mask[1];
606         ppc_cached_irq_mask[0] = 0;
607         ppc_cached_irq_mask[1] = 0;
608         if (viaint > 0)
609                 set_bit(viaint, ppc_cached_irq_mask);
610         out_le32(&pmac_irq_hw[0]->enable, ppc_cached_irq_mask[0]);
611         if (max_real_irqs > 32)
612                 out_le32(&pmac_irq_hw[1]->enable, ppc_cached_irq_mask[1]);
613         (void)in_le32(&pmac_irq_hw[0]->event);
614         /* make sure mask gets to controller before we return to caller */
615         mb();
616         (void)in_le32(&pmac_irq_hw[0]->enable);
617
618         return 0;
619 }
620
621 static int pmacpic_resume(struct sys_device *sysdev)
622 {
623         int i;
624
625         out_le32(&pmac_irq_hw[0]->enable, 0);
626         if (max_real_irqs > 32)
627                 out_le32(&pmac_irq_hw[1]->enable, 0);
628         mb();
629         for (i = 0; i < max_real_irqs; ++i)
630                 if (test_bit(i, sleep_save_mask))
631                         pmac_unmask_irq(i);
632
633         return 0;
634 }
635
636 #endif /* CONFIG_PM */
637
638 static struct sysdev_class pmacpic_sysclass = {
639         set_kset_name("pmac_pic"),
640 };
641
642 static struct sys_device device_pmacpic = {
643         .id             = 0,
644         .cls            = &pmacpic_sysclass,
645 };
646
647 static struct sysdev_driver driver_pmacpic = {
648 #ifdef CONFIG_PM
649         .suspend        = &pmacpic_suspend,
650         .resume         = &pmacpic_resume,
651 #endif /* CONFIG_PM */
652 };
653
654 static int __init init_pmacpic_sysfs(void)
655 {
656         if (max_irqs == 0)
657                 return -ENODEV;
658
659         printk(KERN_DEBUG "Registering pmac pic with sysfs...\n");
660         sysdev_class_register(&pmacpic_sysclass);
661         sysdev_register(&device_pmacpic);
662         sysdev_driver_register(&pmacpic_sysclass, &driver_pmacpic);
663         return 0;
664 }
665
666 subsys_initcall(init_pmacpic_sysfs);
667