root/arch/alpha/kernel/irq.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. disable_irq
  2. enable_irq
  3. get_irq_list
  4. ack_irq
  5. mask_irq
  6. unmask_irq
  7. request_irq
  8. free_irq
  9. handle_nmi
  10. unexpected_irq
  11. handle_irq
  12. device_interrupt
  13. isa_device_interrupt
  14. cabriolet_and_eb66p_device_interrupt
  15. eb66_and_eb64p_device_interrupt
  16. srm_device_interrupt
  17. probe_irq_on
  18. probe_irq_off
  19. machine_check
  20. do_entInt
  21. init_IRQ

   1 /*
   2  *      linux/arch/alpha/kernel/irq.c
   3  *
   4  *      Copyright (C) 1995 Linus Torvalds
   5  *
   6  * This file contains the code used by various IRQ handling routines:
   7  * asking for different IRQ's should be done through these routines
   8  * instead of just grabbing them. Thus setups with different IRQ numbers
   9  * shouldn't result in any weird surprises, and installing new handlers
  10  * should be easier.
  11  */
  12 
  13 #include <linux/config.h>
  14 #include <linux/ptrace.h>
  15 #include <linux/errno.h>
  16 #include <linux/kernel_stat.h>
  17 #include <linux/signal.h>
  18 #include <linux/sched.h>
  19 #include <linux/interrupt.h>
  20 #include <linux/random.h>
  21 
  22 #include <asm/system.h>
  23 #include <asm/io.h>
  24 #include <asm/irq.h>
  25 #include <asm/bitops.h>
  26 #include <asm/dma.h>
  27 
  28 extern void timer_interrupt(struct pt_regs * regs);
  29 
  30 static unsigned char cache_21 = 0xff;
  31 static unsigned char cache_A1 = 0xff;
  32 
  33 #if NR_IRQS == 33
  34   static unsigned char cache_804 = 0xef;
  35   static unsigned char cache_805 = 0xff;
  36   static unsigned char cache_806 = 0xff;
  37 #elif NR_IRQS == 32
  38   static unsigned char cache_26 = 0xdf;
  39   static unsigned char cache_27 = 0xff;
  40 #endif
  41 
  42 void disable_irq(unsigned int irq_nr)
     /* [previous][next][first][last][top][bottom][index][help] */
  43 {
  44         unsigned long flags;
  45         unsigned char mask;
  46 
  47         save_flags(flags);
  48         cli();
  49         mask = 1 << (irq_nr & 7);
  50 
  51         if (irq_nr < 8) {
  52                 cache_21 |= mask;
  53                 outb(cache_21,0x21);
  54         } else if (irq_nr < 16) {
  55                 cache_A1 |= mask;
  56                 outb(cache_A1,0xA1);
  57 #if NR_IRQS == 33
  58         } else if (irq_nr < 24) {
  59                 cache_804 |= mask;
  60                 outb(cache_804, 0x804);
  61         } else if (irq_nr < 32) {
  62                 cache_805 |= mask;
  63                 outb(cache_805, 0x805);
  64         } else {
  65                 cache_806 |= mask;
  66                 outb(cache_806, 0x806);
  67 #elif NR_IRQS == 32 
  68         } else if (irq_nr < 24) {
  69                 cache_26 |= mask;
  70                 outb(cache_26, 0x26);
  71         } else {
  72                 cache_27 |= mask;
  73                 outb(cache_27, 0x27);
  74 #endif
  75         }
  76         restore_flags(flags);
  77 }
  78 
  79 void enable_irq(unsigned int irq_nr)
     /* [previous][next][first][last][top][bottom][index][help] */
  80 {
  81         unsigned long flags;
  82         unsigned char mask;
  83 
  84         mask = ~(1 << (irq_nr & 7));
  85         save_flags(flags);
  86         cli();
  87 
  88         if (irq_nr < 8) {
  89                 cache_21 &= mask;
  90                 outb(cache_21,0x21);
  91         } else if (irq_nr < 16) {
  92                 cache_A1 &= mask;
  93                 outb(cache_A1,0xA1);
  94 #if NR_IRQS == 33
  95         } else if (irq_nr < 24) {
  96                 cache_804 &= mask;
  97                 outb(cache_804, 0x804);
  98         } else if (irq_nr < 32) {
  99                 cache_805 &= mask;
 100                 outb(cache_805, 0x805);
 101         } else {
 102                 cache_806 &= mask;
 103                 outb(cache_806, 0x806);
 104 #elif NR_IRQS == 32
 105         } else if (irq_nr < 24) {
 106                 cache_26 &= mask;
 107                 outb(cache_26, 0x26);
 108         } else {
 109                 cache_27 &= mask;
 110                 outb(cache_27, 0x27);
 111 #endif
 112         }
 113         restore_flags(flags);
 114 }
 115 
 116 /*
 117  * Initial irq handlers.
 118  */
 119 struct irqaction {
 120         void (*handler)(int, struct pt_regs *);
 121         unsigned long flags;
 122         unsigned long mask;
 123         const char *name;
 124 };
 125 
 126 static struct irqaction irq_action[NR_IRQS];
 127 
 128 int get_irq_list(char *buf)
     /* [previous][next][first][last][top][bottom][index][help] */
 129 {
 130         int i, len = 0;
 131         struct irqaction * action = irq_action;
 132 
 133         for (i = 0 ; i < NR_IRQS ; i++, action++) {
 134                 if (!action->handler)
 135                         continue;
 136                 len += sprintf(buf+len, "%2d: %8d %c %s\n",
 137                         i, kstat.interrupts[i],
 138                         (action->flags & SA_INTERRUPT) ? '+' : ' ',
 139                         action->name);
 140         }
 141         return len;
 142 }
 143 
 144 static inline void ack_irq(int irq)
     /* [previous][next][first][last][top][bottom][index][help] */
 145 {
 146         if (irq < 16) {
 147                 /* ACK the interrupt making it the lowest priority */
 148                 /*  First the slave .. */
 149                 if (irq > 7) {
 150                         outb(0xE0 | (irq - 8), 0xa0);
 151                         irq = 2;
 152                 }
 153                 /* .. then the master */
 154                 outb(0xE0 | irq, 0x20);
 155         }
 156 }
 157 
 158 static inline void mask_irq(int irq)
     /* [previous][next][first][last][top][bottom][index][help] */
 159 {
 160         unsigned char mask;
 161 
 162         mask = 1 << (irq & 7);
 163         if (irq < 8) {
 164                 cache_21 |= mask;
 165                 outb(cache_21, 0x21);
 166         } else if (irq < 16) {
 167                 cache_A1 |= mask;
 168                 outb(cache_A1, 0xA1);
 169 #if NR_IRQS == 33
 170         } else if (irq < 24) {
 171                 cache_804 |= mask;
 172                 outb(cache_804, 0x804);
 173         } else if (irq < 32) {
 174                 cache_805 |= mask;
 175                 outb(cache_805, 0x805);
 176         } else {
 177                 cache_806 |= mask;
 178                 outb(cache_806, 0x806);
 179 #elif NR_IRQS == 32
 180         } else if (irq < 24) {
 181                 cache_26 |= mask;
 182                 outb(cache_26, 0x26);
 183         } else {
 184                 cache_27 |= mask;
 185                 outb(cache_27, 0x27);
 186 #endif
 187         }
 188 }
 189 
 190 static inline void unmask_irq(unsigned long irq)
     /* [previous][next][first][last][top][bottom][index][help] */
 191 {
 192         unsigned char mask = ~(1 << (irq & 7));
 193 
 194         if (irq < 8) {
 195                 cache_21 &= mask;
 196                 outb(cache_21, 0x21);
 197         } else if (irq < 16) {
 198                 cache_A1 &= mask;
 199                 outb(cache_A1, 0xA1);
 200 #if NR_IRQS == 33
 201         } else if (irq < 24) {
 202                 cache_804 &= mask;
 203                 outb(cache_804, 0x804);
 204         } else if (irq < 32) {
 205                 cache_805 &= mask;
 206                 outb(cache_805, 0x805);
 207         } else {
 208                 cache_806 &= mask;
 209                 outb(cache_806, 0x806);
 210 #elif defined(CONFIG_ALPHA_EB66) || defined(CONFIG_ALPHA_EB66P)
 211         } else if (irq < 24) {
 212                 cache_26 &= mask;
 213                 outb(cache_26, 0x26);
 214         } else {
 215                 cache_27 &= mask;
 216                 outb(cache_27, 0x27);
 217 #endif
 218         }
 219 }
 220 
 221 int request_irq(unsigned int irq, void (*handler)(int, struct pt_regs *),
     /* [previous][next][first][last][top][bottom][index][help] */
 222         unsigned long irqflags, const char * devname)
 223 {
 224         struct irqaction * action;
 225         unsigned long flags;
 226 
 227         if (irq >= NR_IRQS)
 228                 return -EINVAL;
 229         /* don't accept requests for irq #0 */
 230         if (!irq)
 231                 return -EINVAL;
 232         action = irq + irq_action;
 233         if (action->handler)
 234                 return -EBUSY;
 235         if (!handler)
 236                 return -EINVAL;
 237         save_flags(flags);
 238         cli();
 239         action->handler = handler;
 240         action->flags = irqflags;
 241         action->mask = 0;
 242         action->name = devname;
 243         enable_irq(irq);
 244         if (irq >= 8 && irq < 16) {
 245                 enable_irq(2);  /* ensure cascade is enabled too */
 246         }
 247         restore_flags(flags);
 248         return 0;
 249 }
 250 
 251 void free_irq(unsigned int irq)
     /* [previous][next][first][last][top][bottom][index][help] */
 252 {
 253         struct irqaction * action = irq + irq_action;
 254         unsigned long flags;
 255 
 256         if (irq >= NR_IRQS) {
 257                 printk("Trying to free IRQ%d\n", irq);
 258                 return;
 259         }
 260         if (!action->handler) {
 261                 printk("Trying to free free IRQ%d\n", irq);
 262                 return;
 263         }
 264         save_flags(flags);
 265         cli();
 266         mask_irq(irq);
 267         action->handler = NULL;
 268         action->flags = 0;
 269         action->mask = 0;
 270         action->name = NULL;
 271         restore_flags(flags);
 272 }
 273 
 274 static inline void handle_nmi(struct pt_regs * regs)
     /* [previous][next][first][last][top][bottom][index][help] */
 275 {
 276         printk("Whee.. NMI received. Probable hardware error\n");
 277         printk("61=%02x, 461=%02x\n", inb(0x61), inb(0x461));
 278 }
 279 
 280 static void unexpected_irq(int irq, struct pt_regs * regs)
     /* [previous][next][first][last][top][bottom][index][help] */
 281 {
 282         int i;
 283 
 284         printk("IO device interrupt, irq = %d\n", irq);
 285         printk("PC = %016lx PS=%04lx\n", regs->pc, regs->ps);
 286         printk("Expecting: ");
 287         for (i = 0; i < 16; i++)
 288                 if (irq_action[i].handler)
 289                         printk("[%s:%d] ", irq_action[i].name, i);
 290         printk("\n");
 291 #if defined(CONFIG_ALPHA_JENSEN)
 292         printk("64=%02x, 60=%02x, 3fa=%02x 2fa=%02x\n",
 293                 inb(0x64), inb(0x60), inb(0x3fa), inb(0x2fa));
 294         outb(0x0c, 0x3fc);
 295         outb(0x0c, 0x2fc);
 296         outb(0,0x61);
 297         outb(0,0x461);
 298 #endif
 299 }
 300 
 301 static inline void handle_irq(int irq, struct pt_regs * regs)
     /* [previous][next][first][last][top][bottom][index][help] */
 302 {
 303         struct irqaction * action = irq + irq_action;
 304 
 305         kstat.interrupts[irq]++;
 306         if (!action->handler) {
 307                 unexpected_irq(irq, regs);
 308                 return;
 309         }
 310         action->handler(irq, regs);
 311 }
 312 
 313 static inline void device_interrupt(int irq, int ack, struct pt_regs * regs)
     /* [previous][next][first][last][top][bottom][index][help] */
 314 {
 315         struct irqaction * action;
 316 
 317         if ((unsigned) irq > NR_IRQS) {
 318                 printk("device_interrupt: unexpected interrupt %d\n", irq);
 319                 return;
 320         }
 321 
 322         kstat.interrupts[irq]++;
 323         action = irq_action + irq;
 324         if (action->flags & SA_SAMPLE_RANDOM)
 325                 add_interrupt_randomness(irq);
 326         /* quick interrupts get executed with no extra overhead */
 327         if (action->flags & SA_INTERRUPT) {
 328                 action->handler(irq, regs);
 329                 ack_irq(ack);
 330                 return;
 331         }
 332         /*
 333          * For normal interrupts, we mask it out, and then ACK it.
 334          * This way another (more timing-critical) interrupt can
 335          * come through while we're doing this one.
 336          *
 337          * Note! A irq without a handler gets masked and acked, but
 338          * never unmasked. The autoirq stuff depends on this (it looks
 339          * at the masks before and after doing the probing).
 340          */
 341         mask_irq(ack);
 342         ack_irq(ack);
 343         if (!action->handler)
 344                 return;
 345         action->handler(irq, regs);
 346         unmask_irq(ack);
 347 }
 348 
 349 /*
 350  * Handle ISA interrupt via the PICs.
 351  */
 352 static inline void isa_device_interrupt(unsigned long vector,
     /* [previous][next][first][last][top][bottom][index][help] */
 353                                         struct pt_regs * regs)
 354 {
 355 #if defined(CONFIG_ALPHA_APECS)
 356 #       define IACK_SC  APECS_IACK_SC
 357 #elif defined(CONFIG_ALPHA_LCA)
 358 #       define IACK_SC  LCA_IACK_SC
 359 #endif
 360         int j;
 361 
 362         /*
 363          * Generate a PCI interrupt acknowledge cycle.  The PIC will
 364          * respond with the interrupt vector of the highest priority
 365          * interrupt that is pending.  The PALcode sets up the
 366          * interrupts vectors such that irq level L generates vector
 367          * L.
 368          */
 369         j = *(volatile int *) IACK_SC;
 370         j &= 0xff;
 371         if (j == 7) {
 372             if (!(inb(0x20) & 0x80)) {
 373                 /* it's only a passive release... */
 374                 return;
 375             }
 376         }
 377         device_interrupt(j, j, regs);
 378 #if 0
 379         unsigned long pic;
 380 
 381         /*
 382          * It seems to me that the probability of two or more *device*
 383          * interrupts occuring at almost exactly the same time is
 384          * pretty low.  So why pay the price of checking for
 385          * additional interrupts here if the common case can be
 386          * handled so much easier?
 387          */
 388         /* 
 389          *  The first read of gives you *all* interrupting lines.
 390          *  Therefore, read the mask register and and out those lines
 391          *  not enabled.  Note that some documentation has 21 and a1 
 392          *  write only.  This is not true.
 393          */
 394         pic = inb(0x20) | (inb(0xA0) << 8);     /* read isr */
 395         pic &= ~((cache_A1 << 8) | cache_21);   /* apply mask */
 396         pic &= 0xFFFB;                          /* mask out cascade */
 397 
 398         while (pic) {
 399                 j = ffz(~pic);
 400                 pic &= pic - 1;
 401                 device_interrupt(j, j, regs);
 402         }
 403 #endif
 404 }
 405 
 406 static inline void cabriolet_and_eb66p_device_interrupt(unsigned long vector,
     /* [previous][next][first][last][top][bottom][index][help] */
 407                                                         struct pt_regs * regs)
 408 {
 409         unsigned long pld;
 410         unsigned int i;
 411         unsigned long flags;
 412 
 413         save_flags(flags);
 414         cli();
 415 
 416         /* read the interrupt summary registers */
 417         pld = inb(0x804) | (inb(0x805) << 8) | (inb(0x806) << 16);
 418 
 419         /*
 420          * Now for every possible bit set, work through them and call
 421          * the appropriate interrupt handler.
 422          */
 423         while (pld) {
 424                 i = ffz(~pld);
 425                 pld &= pld - 1; /* clear least bit set */
 426                 if (i == 4) {
 427                         isa_device_interrupt(vector, regs);
 428                 } else {
 429                         device_interrupt(16 + i, 16 + i, regs);
 430                 }
 431         }
 432         restore_flags(flags);
 433 }
 434 
 435 static inline void eb66_and_eb64p_device_interrupt(unsigned long vector,
     /* [previous][next][first][last][top][bottom][index][help] */
 436                                                    struct pt_regs * regs)
 437 {
 438         unsigned long pld;
 439         unsigned int i;
 440         unsigned long flags;
 441 
 442         save_flags(flags);
 443         cli();
 444 
 445         /* read the interrupt summary registers */
 446         pld = inb(0x26) | (inb(0x27) << 8);
 447         /*
 448          * Now, for every possible bit set, work through
 449          * them and call the appropriate interrupt handler.
 450          */
 451         while (pld) {
 452                 i = ffz(~pld);
 453                 pld &= pld - 1; /* clear least bit set */
 454 
 455                 if (i == 5) {
 456                         isa_device_interrupt(vector, regs);
 457                 } else {
 458                         device_interrupt(16 + i, 16 + i, regs);
 459                 }
 460         }
 461         restore_flags(flags);
 462 }
 463 
 464 /*
 465  * Jensen is special: the vector is 0x8X0 for EISA interrupt X, and
 466  * 0x9X0 for the local motherboard interrupts..
 467  *
 468  *      0x660 - NMI
 469  *
 470  *      0x800 - IRQ0  interval timer (not used, as we use the RTC timer)
 471  *      0x810 - IRQ1  line printer (duh..)
 472  *      0x860 - IRQ6  floppy disk
 473  *      0x8E0 - IRQ14 SCSI controller
 474  *
 475  *      0x900 - COM1
 476  *      0x920 - COM2
 477  *      0x980 - keyboard
 478  *      0x990 - mouse
 479  *
 480  * PCI-based systems are more sane: they don't have the local
 481  * interrupts at all, and have only normal PCI interrupts from
 482  * devices.  Happily it's easy enough to do a sane mapping from the
 483  * Jensen..  Note that this means that we may have to do a hardware
 484  * "ack" to a different interrupt than we report to the rest of the
 485  * world.
 486  */
 487 static inline void srm_device_interrupt(unsigned long vector, struct pt_regs * regs)
     /* [previous][next][first][last][top][bottom][index][help] */
 488 {
 489         int irq, ack;
 490 
 491         ack = irq = (vector - 0x800) >> 4;
 492 
 493 #ifdef CONFIG_ALPHA_JENSEN
 494         switch (vector) {
 495               case 0x660: handle_nmi(regs); return;
 496                 /* local device interrupts: */
 497               case 0x900: handle_irq(4, regs); return;  /* com1 -> irq 4 */
 498               case 0x920: handle_irq(3, regs); return;  /* com2 -> irq 3 */
 499               case 0x980: handle_irq(1, regs); return;  /* kbd -> irq 1 */
 500               case 0x990: handle_irq(9, regs); return;  /* mouse -> irq 9 */
 501               default:
 502                 if (vector > 0x900) {
 503                         printk("Unknown local interrupt %lx\n", vector);
 504                 }
 505         }
 506         /* irq1 is supposed to be the keyboard, silly Jensen (is this really needed??) */
 507         if (irq == 1)
 508                 irq = 7;
 509 #endif /* CONFIG_ALPHA_JENSEN */
 510 
 511         device_interrupt(irq, ack, regs);
 512 }
 513 
 514 #if NR_IRQS > 64
 515 #  error Number of irqs limited to 64 due to interrupt-probing.
 516 #endif
 517 
 518 /*
 519  * Start listening for interrupts..
 520  */
 521 unsigned long probe_irq_on(void)
     /* [previous][next][first][last][top][bottom][index][help] */
 522 {
 523         unsigned long irqs = 0, irqmask;
 524         unsigned long delay;
 525         unsigned int i;
 526 
 527         for (i = NR_IRQS - 1; i > 0; i--) {
 528                 if (!irq_action[i].handler) {
 529                         enable_irq(i);
 530                         irqs |= (1 << i);
 531                 }
 532         }
 533 
 534         /* wait for spurious interrupts to mask themselves out again */
 535         for (delay = jiffies + HZ/10; delay > jiffies; )
 536                 /* about 100 ms delay */;
 537         
 538         /* now filter out any obviously spurious interrupts */
 539         irqmask = (((unsigned long)cache_A1)<<8) | (unsigned long) cache_21;
 540 #if NR_IRQS == 33
 541         irqmask |= ((((unsigned long)cache_804)<<16) |
 542                     (((unsigned long)cache_805)<<24) |
 543                     (((unsigned long)cache_806)<<24));
 544 #elif NR_IRQS == 32
 545         irqmask |= ((((unsigned long)cache_26)<<16) |
 546                     (((unsigned long)cache_27)<<24));
 547 #endif
 548         irqs &= ~irqmask;
 549         return irqs;
 550 }
 551 
 552 /*
 553  * Get the result of the IRQ probe.. A negative result means that
 554  * we have several candidates (but we return the lowest-numbered
 555  * one).
 556  */
 557 int probe_irq_off(unsigned long irqs)
     /* [previous][next][first][last][top][bottom][index][help] */
 558 {
 559         unsigned long irqmask;
 560         int i;
 561         
 562         irqmask = (((unsigned int)cache_A1)<<8) | (unsigned int)cache_21;
 563 #if NR_IRQS == 33
 564         irqmask |= ((((unsigned long)cache_804)<<16) |
 565                     (((unsigned long)cache_805)<<24) |
 566                     (((unsigned long)cache_806)<<24));
 567 #elif NR_IRQS == 32
 568         irqmask |= ((((unsigned long)cache_26)<<16) |
 569                     (((unsigned long)cache_27)<<24));
 570 #endif
 571         irqs &= irqmask;
 572         if (!irqs)
 573                 return 0;
 574         i = ffz(~irqs);
 575         if (irqs != (1UL << i))
 576                 i = -i;
 577         return i;
 578 }
 579 
 580 static void machine_check(unsigned long vector, unsigned long la, struct pt_regs * regs)
     /* [previous][next][first][last][top][bottom][index][help] */
 581 {
 582 #if defined(CONFIG_ALPHA_LCA)
 583         extern void lca_machine_check (unsigned long vector, unsigned long la,
 584                                        struct pt_regs *regs);
 585         lca_machine_check(vector, la, regs);
 586 #elif defined(CONFIG_ALPHA_APECS)
 587         extern void apecs_machine_check(unsigned long vector, unsigned long la,
 588                                         struct pt_regs * regs);
 589         apecs_machine_check(vector, la, regs);
 590 #else
 591         printk("Machine check\n");
 592 #endif
 593 }
 594 
 595 asmlinkage void do_entInt(unsigned long type, unsigned long vector, unsigned long la_ptr,
     /* [previous][next][first][last][top][bottom][index][help] */
 596         unsigned long a3, unsigned long a4, unsigned long a5,
 597         struct pt_regs regs)
 598 {
 599         switch (type) {
 600                 case 0:
 601                         printk("Interprocessor interrupt? You must be kidding\n");
 602                         break;
 603                 case 1:
 604                         timer_interrupt(&regs);
 605                         return;
 606                 case 2:
 607                         machine_check(vector, la_ptr, &regs);
 608                         return;
 609                 case 3:
 610 #if defined(CONFIG_ALPHA_JENSEN) || defined(CONFIG_ALPHA_NONAME) || \
 611     defined(CONFIG_ALPHA_SRM)
 612                         srm_device_interrupt(vector, &regs);
 613 #elif NR_IRQS == 33
 614                         cabriolet_and_eb66p_device_interrupt(vector, &regs);
 615 #elif NR_IRQS == 32
 616                         eb66_and_eb64p_device_interrupt(vector, &regs);
 617 #endif
 618                         return;
 619                 case 4:
 620                         printk("Performance counter interrupt\n");
 621                         break;;
 622                 default:
 623                         printk("Hardware intr %ld %lx? Huh?\n", type, vector);
 624         }
 625         printk("PC = %016lx PS=%04lx\n", regs.pc, regs.ps);
 626 }
 627 
 628 extern asmlinkage void entInt(void);
 629 
 630 void init_IRQ(void)
     /* [previous][next][first][last][top][bottom][index][help] */
 631 {
 632         wrent(entInt, 0);
 633         dma_outb(0, DMA1_RESET_REG);
 634         dma_outb(0, DMA2_RESET_REG);
 635         dma_outb(0, DMA1_CLR_MASK_REG);
 636         dma_outb(0, DMA2_CLR_MASK_REG);
 637 #if NR_IRQS == 33
 638         outb(cache_804, 0x804);
 639         outb(cache_805, 0x805);
 640         outb(cache_806, 0x806);
 641 #elif NR_IRQS == 32
 642         outb(cache_26, 0x26);
 643         outb(cache_27, 0x27);
 644 #endif
 645 }

/* [previous][next][first][last][top][bottom][index][help] */