event_sources.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * Copyright (C) 2001 Dave Engebretsen IBM Corporation
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. */
  18. #include <asm/prom.h>
  19. #include "pseries.h"
  20. void request_event_sources_irqs(struct device_node *np,
  21. irq_handler_t handler,
  22. const char *name)
  23. {
  24. int i, index, count = 0;
  25. struct of_irq oirq;
  26. const u32 *opicprop;
  27. unsigned int opicplen;
  28. unsigned int virqs[16];
  29. /* Check for obsolete "open-pic-interrupt" property. If present, then
  30. * map those interrupts using the default interrupt host and default
  31. * trigger
  32. */
  33. opicprop = of_get_property(np, "open-pic-interrupt", &opicplen);
  34. if (opicprop) {
  35. opicplen /= sizeof(u32);
  36. for (i = 0; i < opicplen; i++) {
  37. if (count > 15)
  38. break;
  39. virqs[count] = irq_create_mapping(NULL, *(opicprop++));
  40. if (virqs[count] == NO_IRQ)
  41. printk(KERN_ERR "Unable to allocate interrupt "
  42. "number for %s\n", np->full_name);
  43. else
  44. count++;
  45. }
  46. }
  47. /* Else use normal interrupt tree parsing */
  48. else {
  49. /* First try to do a proper OF tree parsing */
  50. for (index = 0; of_irq_map_one(np, index, &oirq) == 0;
  51. index++) {
  52. if (count > 15)
  53. break;
  54. virqs[count] = irq_create_of_mapping(oirq.controller,
  55. oirq.specifier,
  56. oirq.size);
  57. if (virqs[count] == NO_IRQ)
  58. printk(KERN_ERR "Unable to allocate interrupt "
  59. "number for %s\n", np->full_name);
  60. else
  61. count++;
  62. }
  63. }
  64. /* Now request them */
  65. for (i = 0; i < count; i++) {
  66. if (request_irq(virqs[i], handler, 0, name, NULL)) {
  67. printk(KERN_ERR "Unable to request interrupt %d for "
  68. "%s\n", virqs[i], np->full_name);
  69. return;
  70. }
  71. }
  72. }