event_sources.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. pr_err("event-sources: Unable to allocate "
  42. "interrupt number for %s\n",
  43. np->full_name);
  44. WARN_ON(1);
  45. }
  46. else
  47. count++;
  48. }
  49. }
  50. /* Else use normal interrupt tree parsing */
  51. else {
  52. /* First try to do a proper OF tree parsing */
  53. for (index = 0; of_irq_map_one(np, index, &oirq) == 0;
  54. index++) {
  55. if (count > 15)
  56. break;
  57. virqs[count] = irq_create_of_mapping(oirq.controller,
  58. oirq.specifier,
  59. oirq.size);
  60. if (virqs[count] == NO_IRQ) {
  61. pr_err("event-sources: Unable to allocate "
  62. "interrupt number for %s\n",
  63. np->full_name);
  64. WARN_ON(1);
  65. }
  66. else
  67. count++;
  68. }
  69. }
  70. /* Now request them */
  71. for (i = 0; i < count; i++) {
  72. if (request_irq(virqs[i], handler, 0, name, NULL)) {
  73. pr_err("event-sources: Unable to request interrupt "
  74. "%d for %s\n", virqs[i], np->full_name);
  75. WARN_ON(1);
  76. return;
  77. }
  78. }
  79. }