event_sources.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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_phandle_args 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_parse_one(np, index, &oirq) == 0;
  54. index++) {
  55. if (count > 15)
  56. break;
  57. virqs[count] = irq_create_of_mapping(oirq.np, oirq.args,
  58. oirq.args_count);
  59. if (virqs[count] == NO_IRQ) {
  60. pr_err("event-sources: Unable to allocate "
  61. "interrupt number for %s\n",
  62. np->full_name);
  63. WARN_ON(1);
  64. }
  65. else
  66. count++;
  67. }
  68. }
  69. /* Now request them */
  70. for (i = 0; i < count; i++) {
  71. if (request_irq(virqs[i], handler, 0, name, NULL)) {
  72. pr_err("event-sources: Unable to request interrupt "
  73. "%d for %s\n", virqs[i], np->full_name);
  74. WARN_ON(1);
  75. return;
  76. }
  77. }
  78. }