alphascale_asm9260-icoll.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*
  2. * Copyright (C) 2014 Oleksij Rempel <linux@rempel-privat.de>
  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. #ifndef _ALPHASCALE_ASM9260_ICOLL_H
  10. #define _ALPHASCALE_ASM9260_ICOLL_H
  11. #define ASM9260_NUM_IRQS 64
  12. /*
  13. * this device provide 4 offsets for each register:
  14. * 0x0 - plain read write mode
  15. * 0x4 - set mode, OR logic.
  16. * 0x8 - clr mode, XOR logic.
  17. * 0xc - togle mode.
  18. */
  19. #define ASM9260_HW_ICOLL_VECTOR 0x0000
  20. /*
  21. * bits 31:2
  22. * This register presents the vector address for the interrupt currently
  23. * active on the CPU IRQ input. Writing to this register notifies the
  24. * interrupt collector that the interrupt service routine for the current
  25. * interrupt has been entered.
  26. * The exception trap should have a LDPC instruction from this address:
  27. * LDPC ASM9260_HW_ICOLL_VECTOR_ADDR; IRQ exception at 0xffff0018
  28. */
  29. /*
  30. * The Interrupt Collector Level Acknowledge Register is used by software to
  31. * indicate the completion of an interrupt on a specific level.
  32. * This register is written at the very end of an interrupt service routine. If
  33. * nesting is used then the CPU irq must be turned on before writing to this
  34. * register to avoid a race condition in the CPU interrupt hardware.
  35. */
  36. #define ASM9260_HW_ICOLL_LEVELACK 0x0010
  37. #define ASM9260_BM_LEVELn(nr) BIT(nr)
  38. #define ASM9260_HW_ICOLL_CTRL 0x0020
  39. /*
  40. * ASM9260_BM_CTRL_SFTRST and ASM9260_BM_CTRL_CLKGATE are not available on
  41. * asm9260.
  42. */
  43. #define ASM9260_BM_CTRL_SFTRST BIT(31)
  44. #define ASM9260_BM_CTRL_CLKGATE BIT(30)
  45. /* disable interrupt level nesting */
  46. #define ASM9260_BM_CTRL_NO_NESTING BIT(19)
  47. /*
  48. * Set this bit to one enable the RISC32-style read side effect associated with
  49. * the vector address register. In this mode, interrupt in-service is signaled
  50. * by the read of the ASM9260_HW_ICOLL_VECTOR register to acquire the interrupt
  51. * vector address. Set this bit to zero for normal operation, in which the ISR
  52. * signals in-service explicitly by means of a write to the
  53. * ASM9260_HW_ICOLL_VECTOR register.
  54. * 0 - Must Write to Vector register to go in-service.
  55. * 1 - Go in-service as a read side effect
  56. */
  57. #define ASM9260_BM_CTRL_ARM_RSE_MODE BIT(18)
  58. #define ASM9260_BM_CTRL_IRQ_ENABLE BIT(16)
  59. #define ASM9260_HW_ICOLL_STAT_OFFSET 0x0030
  60. /*
  61. * bits 5:0
  62. * Vector number of current interrupt. Multiply by 4 and add to vector base
  63. * address to obtain the value in ASM9260_HW_ICOLL_VECTOR.
  64. */
  65. /*
  66. * RAW0 and RAW1 provides a read-only view of the raw interrupt request lines
  67. * coming from various parts of the chip. Its purpose is to improve diagnostic
  68. * observability.
  69. */
  70. #define ASM9260_HW_ICOLL_RAW0 0x0040
  71. #define ASM9260_HW_ICOLL_RAW1 0x0050
  72. #define ASM9260_HW_ICOLL_INTERRUPT0 0x0060
  73. #define ASM9260_HW_ICOLL_INTERRUPTn(n) (0x0060 + ((n) >> 2) * 0x10)
  74. /*
  75. * WARNING: Modifying the priority of an enabled interrupt may result in
  76. * undefined behavior.
  77. */
  78. #define ASM9260_BM_INT_PRIORITY_MASK 0x3
  79. #define ASM9260_BM_INT_ENABLE BIT(2)
  80. #define ASM9260_BM_INT_SOFTIRQ BIT(3)
  81. #define ASM9260_BM_ICOLL_INTERRUPTn_SHIFT(n) (((n) & 0x3) << 3)
  82. #define ASM9260_BM_ICOLL_INTERRUPTn_ENABLE(n) (1 << (2 + \
  83. ASM9260_BM_ICOLL_INTERRUPTn_SHIFT(n)))
  84. #define ASM9260_HW_ICOLL_VBASE 0x0160
  85. /*
  86. * bits 31:2
  87. * This bitfield holds the upper 30 bits of the base address of the vector
  88. * table.
  89. */
  90. #define ASM9260_HW_ICOLL_CLEAR0 0x01d0
  91. #define ASM9260_HW_ICOLL_CLEAR1 0x01e0
  92. #define ASM9260_HW_ICOLL_CLEARn(n) (((n >> 5) * 0x10) \
  93. + SET_REG)
  94. #define ASM9260_BM_CLEAR_BIT(n) BIT(n & 0x1f)
  95. /* Scratchpad */
  96. #define ASM9260_HW_ICOLL_UNDEF_VECTOR 0x01f0
  97. #endif