interrupts.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*
  2. * (C) Copyright 2000-2004
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
  6. * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
  7. *
  8. * See file CREDITS for list of people who contributed to this
  9. * project.
  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 as
  13. * published by the Free Software Foundation; either version 2 of
  14. * the License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  24. * MA 02111-1307 USA
  25. */
  26. #include <common.h>
  27. #include <watchdog.h>
  28. #include <asm/processor.h>
  29. #include <asm/immap.h>
  30. #include <asm/io.h>
  31. #ifdef CONFIG_M5272
  32. int interrupt_init(void)
  33. {
  34. intctrl_t *intp = (intctrl_t *) (MMAP_INTC);
  35. /* disable all external interrupts */
  36. out_be32(&intp->int_icr1, 0x88888888);
  37. out_be32(&intp->int_icr2, 0x88888888);
  38. out_be32(&intp->int_icr3, 0x88888888);
  39. out_be32(&intp->int_icr4, 0x88888888);
  40. out_be32(&intp->int_pitr, 0x00000000);
  41. /* initialize vector register */
  42. out_8(&intp->int_pivr, 0x40);
  43. enable_interrupts();
  44. return 0;
  45. }
  46. #if defined(CONFIG_MCFTMR)
  47. void dtimer_intr_setup(void)
  48. {
  49. intctrl_t *intp = (intctrl_t *) (CONFIG_SYS_INTR_BASE);
  50. clrbits_be32(&intp->int_icr1, INT_ICR1_TMR3MASK);
  51. setbits_be32(&intp->int_icr1, CONFIG_SYS_TMRINTR_PRI);
  52. }
  53. #endif /* CONFIG_MCFTMR */
  54. #endif /* CONFIG_M5272 */
  55. #if defined(CONFIG_M5208) || defined(CONFIG_M5282) || \
  56. defined(CONFIG_M5271) || defined(CONFIG_M5275)
  57. int interrupt_init(void)
  58. {
  59. int0_t *intp = (int0_t *) (CONFIG_SYS_INTR_BASE);
  60. /* Make sure all interrupts are disabled */
  61. #if defined(CONFIG_M5208)
  62. out_be32(&intp->imrl0, 0xffffffff);
  63. out_be32(&intp->imrh0, 0xffffffff);
  64. #else
  65. setbits_be32(&intp->imrl0, 0x1);
  66. #endif
  67. enable_interrupts();
  68. return 0;
  69. }
  70. #if defined(CONFIG_MCFTMR)
  71. void dtimer_intr_setup(void)
  72. {
  73. int0_t *intp = (int0_t *) (CONFIG_SYS_INTR_BASE);
  74. out_8(&intp->icr0[CONFIG_SYS_TMRINTR_NO], CONFIG_SYS_TMRINTR_PRI);
  75. clrbits_be32(&intp->imrl0, 0x00000001);
  76. clrbits_be32(&intp->imrl0, CONFIG_SYS_TMRINTR_MASK);
  77. }
  78. #endif /* CONFIG_MCFTMR */
  79. #endif /* CONFIG_M5282 | CONFIG_M5271 | CONFIG_M5275 */
  80. #if defined(CONFIG_M5249) || defined(CONFIG_M5253)
  81. int interrupt_init(void)
  82. {
  83. enable_interrupts();
  84. return 0;
  85. }
  86. #if defined(CONFIG_MCFTMR)
  87. void dtimer_intr_setup(void)
  88. {
  89. mbar_writeLong(MCFSIM_IMR, mbar_readLong(MCFSIM_IMR) & ~0x00000400);
  90. mbar_writeByte(MCFSIM_TIMER2ICR, CONFIG_SYS_TMRINTR_PRI);
  91. }
  92. #endif /* CONFIG_MCFTMR */
  93. #endif /* CONFIG_M5249 || CONFIG_M5253 */