mpic.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  1. #ifndef _ASM_POWERPC_MPIC_H
  2. #define _ASM_POWERPC_MPIC_H
  3. #ifdef __KERNEL__
  4. #include <linux/irq.h>
  5. #include <asm/dcr.h>
  6. #include <asm/msi_bitmap.h>
  7. /*
  8. * Global registers
  9. */
  10. #define MPIC_GREG_BASE 0x01000
  11. #define MPIC_GREG_FEATURE_0 0x00000
  12. #define MPIC_GREG_FEATURE_LAST_SRC_MASK 0x07ff0000
  13. #define MPIC_GREG_FEATURE_LAST_SRC_SHIFT 16
  14. #define MPIC_GREG_FEATURE_LAST_CPU_MASK 0x00001f00
  15. #define MPIC_GREG_FEATURE_LAST_CPU_SHIFT 8
  16. #define MPIC_GREG_FEATURE_VERSION_MASK 0xff
  17. #define MPIC_GREG_FEATURE_1 0x00010
  18. #define MPIC_GREG_GLOBAL_CONF_0 0x00020
  19. #define MPIC_GREG_GCONF_RESET 0x80000000
  20. /* On the FSL mpic implementations the Mode field is expand to be
  21. * 2 bits wide:
  22. * 0b00 = pass through (interrupts routed to IRQ0)
  23. * 0b01 = Mixed mode
  24. * 0b10 = reserved
  25. * 0b11 = External proxy / coreint
  26. */
  27. #define MPIC_GREG_GCONF_COREINT 0x60000000
  28. #define MPIC_GREG_GCONF_8259_PTHROU_DIS 0x20000000
  29. #define MPIC_GREG_GCONF_NO_BIAS 0x10000000
  30. #define MPIC_GREG_GCONF_BASE_MASK 0x000fffff
  31. #define MPIC_GREG_GCONF_MCK 0x08000000
  32. #define MPIC_GREG_GLOBAL_CONF_1 0x00030
  33. #define MPIC_GREG_VENDOR_0 0x00040
  34. #define MPIC_GREG_VENDOR_1 0x00050
  35. #define MPIC_GREG_VENDOR_2 0x00060
  36. #define MPIC_GREG_VENDOR_3 0x00070
  37. #define MPIC_GREG_VENDOR_ID 0x00080
  38. #define MPIC_GREG_VENDOR_ID_STEPPING_MASK 0x00ff0000
  39. #define MPIC_GREG_VENDOR_ID_STEPPING_SHIFT 16
  40. #define MPIC_GREG_VENDOR_ID_DEVICE_ID_MASK 0x0000ff00
  41. #define MPIC_GREG_VENDOR_ID_DEVICE_ID_SHIFT 8
  42. #define MPIC_GREG_VENDOR_ID_VENDOR_ID_MASK 0x000000ff
  43. #define MPIC_GREG_PROCESSOR_INIT 0x00090
  44. #define MPIC_GREG_IPI_VECTOR_PRI_0 0x000a0
  45. #define MPIC_GREG_IPI_VECTOR_PRI_1 0x000b0
  46. #define MPIC_GREG_IPI_VECTOR_PRI_2 0x000c0
  47. #define MPIC_GREG_IPI_VECTOR_PRI_3 0x000d0
  48. #define MPIC_GREG_IPI_STRIDE 0x10
  49. #define MPIC_GREG_SPURIOUS 0x000e0
  50. #define MPIC_GREG_TIMER_FREQ 0x000f0
  51. /*
  52. *
  53. * Timer registers
  54. */
  55. #define MPIC_TIMER_BASE 0x01100
  56. #define MPIC_TIMER_STRIDE 0x40
  57. #define MPIC_TIMER_GROUP_STRIDE 0x1000
  58. #define MPIC_TIMER_CURRENT_CNT 0x00000
  59. #define MPIC_TIMER_BASE_CNT 0x00010
  60. #define MPIC_TIMER_VECTOR_PRI 0x00020
  61. #define MPIC_TIMER_DESTINATION 0x00030
  62. /*
  63. * Per-Processor registers
  64. */
  65. #define MPIC_CPU_THISBASE 0x00000
  66. #define MPIC_CPU_BASE 0x20000
  67. #define MPIC_CPU_STRIDE 0x01000
  68. #define MPIC_CPU_IPI_DISPATCH_0 0x00040
  69. #define MPIC_CPU_IPI_DISPATCH_1 0x00050
  70. #define MPIC_CPU_IPI_DISPATCH_2 0x00060
  71. #define MPIC_CPU_IPI_DISPATCH_3 0x00070
  72. #define MPIC_CPU_IPI_DISPATCH_STRIDE 0x00010
  73. #define MPIC_CPU_CURRENT_TASK_PRI 0x00080
  74. #define MPIC_CPU_TASKPRI_MASK 0x0000000f
  75. #define MPIC_CPU_WHOAMI 0x00090
  76. #define MPIC_CPU_WHOAMI_MASK 0x0000001f
  77. #define MPIC_CPU_INTACK 0x000a0
  78. #define MPIC_CPU_EOI 0x000b0
  79. #define MPIC_CPU_MCACK 0x000c0
  80. /*
  81. * Per-source registers
  82. */
  83. #define MPIC_IRQ_BASE 0x10000
  84. #define MPIC_IRQ_STRIDE 0x00020
  85. #define MPIC_IRQ_VECTOR_PRI 0x00000
  86. #define MPIC_VECPRI_MASK 0x80000000
  87. #define MPIC_VECPRI_ACTIVITY 0x40000000 /* Read Only */
  88. #define MPIC_VECPRI_PRIORITY_MASK 0x000f0000
  89. #define MPIC_VECPRI_PRIORITY_SHIFT 16
  90. #define MPIC_VECPRI_VECTOR_MASK 0x000007ff
  91. #define MPIC_VECPRI_POLARITY_POSITIVE 0x00800000
  92. #define MPIC_VECPRI_POLARITY_NEGATIVE 0x00000000
  93. #define MPIC_VECPRI_POLARITY_MASK 0x00800000
  94. #define MPIC_VECPRI_SENSE_LEVEL 0x00400000
  95. #define MPIC_VECPRI_SENSE_EDGE 0x00000000
  96. #define MPIC_VECPRI_SENSE_MASK 0x00400000
  97. #define MPIC_IRQ_DESTINATION 0x00010
  98. #define MPIC_FSL_BRR1 0x00000
  99. #define MPIC_FSL_BRR1_VER 0x0000ffff
  100. #define MPIC_MAX_IRQ_SOURCES 2048
  101. #define MPIC_MAX_CPUS 32
  102. #define MPIC_MAX_ISU 32
  103. #define MPIC_MAX_ERR 32
  104. #define MPIC_FSL_ERR_INT 16
  105. /*
  106. * Tsi108 implementation of MPIC has many differences from the original one
  107. */
  108. /*
  109. * Global registers
  110. */
  111. #define TSI108_GREG_BASE 0x00000
  112. #define TSI108_GREG_FEATURE_0 0x00000
  113. #define TSI108_GREG_GLOBAL_CONF_0 0x00004
  114. #define TSI108_GREG_VENDOR_ID 0x0000c
  115. #define TSI108_GREG_IPI_VECTOR_PRI_0 0x00204 /* Doorbell 0 */
  116. #define TSI108_GREG_IPI_STRIDE 0x0c
  117. #define TSI108_GREG_SPURIOUS 0x00010
  118. #define TSI108_GREG_TIMER_FREQ 0x00014
  119. /*
  120. * Timer registers
  121. */
  122. #define TSI108_TIMER_BASE 0x0030
  123. #define TSI108_TIMER_STRIDE 0x10
  124. #define TSI108_TIMER_CURRENT_CNT 0x00000
  125. #define TSI108_TIMER_BASE_CNT 0x00004
  126. #define TSI108_TIMER_VECTOR_PRI 0x00008
  127. #define TSI108_TIMER_DESTINATION 0x0000c
  128. /*
  129. * Per-Processor registers
  130. */
  131. #define TSI108_CPU_BASE 0x00300
  132. #define TSI108_CPU_STRIDE 0x00040
  133. #define TSI108_CPU_IPI_DISPATCH_0 0x00200
  134. #define TSI108_CPU_IPI_DISPATCH_STRIDE 0x00000
  135. #define TSI108_CPU_CURRENT_TASK_PRI 0x00000
  136. #define TSI108_CPU_WHOAMI 0xffffffff
  137. #define TSI108_CPU_INTACK 0x00004
  138. #define TSI108_CPU_EOI 0x00008
  139. #define TSI108_CPU_MCACK 0x00004 /* Doesn't really exist here */
  140. /*
  141. * Per-source registers
  142. */
  143. #define TSI108_IRQ_BASE 0x00100
  144. #define TSI108_IRQ_STRIDE 0x00008
  145. #define TSI108_IRQ_VECTOR_PRI 0x00000
  146. #define TSI108_VECPRI_VECTOR_MASK 0x000000ff
  147. #define TSI108_VECPRI_POLARITY_POSITIVE 0x01000000
  148. #define TSI108_VECPRI_POLARITY_NEGATIVE 0x00000000
  149. #define TSI108_VECPRI_SENSE_LEVEL 0x02000000
  150. #define TSI108_VECPRI_SENSE_EDGE 0x00000000
  151. #define TSI108_VECPRI_POLARITY_MASK 0x01000000
  152. #define TSI108_VECPRI_SENSE_MASK 0x02000000
  153. #define TSI108_IRQ_DESTINATION 0x00004
  154. /* weird mpic register indices and mask bits in the HW info array */
  155. enum {
  156. MPIC_IDX_GREG_BASE = 0,
  157. MPIC_IDX_GREG_FEATURE_0,
  158. MPIC_IDX_GREG_GLOBAL_CONF_0,
  159. MPIC_IDX_GREG_VENDOR_ID,
  160. MPIC_IDX_GREG_IPI_VECTOR_PRI_0,
  161. MPIC_IDX_GREG_IPI_STRIDE,
  162. MPIC_IDX_GREG_SPURIOUS,
  163. MPIC_IDX_GREG_TIMER_FREQ,
  164. MPIC_IDX_TIMER_BASE,
  165. MPIC_IDX_TIMER_STRIDE,
  166. MPIC_IDX_TIMER_CURRENT_CNT,
  167. MPIC_IDX_TIMER_BASE_CNT,
  168. MPIC_IDX_TIMER_VECTOR_PRI,
  169. MPIC_IDX_TIMER_DESTINATION,
  170. MPIC_IDX_CPU_BASE,
  171. MPIC_IDX_CPU_STRIDE,
  172. MPIC_IDX_CPU_IPI_DISPATCH_0,
  173. MPIC_IDX_CPU_IPI_DISPATCH_STRIDE,
  174. MPIC_IDX_CPU_CURRENT_TASK_PRI,
  175. MPIC_IDX_CPU_WHOAMI,
  176. MPIC_IDX_CPU_INTACK,
  177. MPIC_IDX_CPU_EOI,
  178. MPIC_IDX_CPU_MCACK,
  179. MPIC_IDX_IRQ_BASE,
  180. MPIC_IDX_IRQ_STRIDE,
  181. MPIC_IDX_IRQ_VECTOR_PRI,
  182. MPIC_IDX_VECPRI_VECTOR_MASK,
  183. MPIC_IDX_VECPRI_POLARITY_POSITIVE,
  184. MPIC_IDX_VECPRI_POLARITY_NEGATIVE,
  185. MPIC_IDX_VECPRI_SENSE_LEVEL,
  186. MPIC_IDX_VECPRI_SENSE_EDGE,
  187. MPIC_IDX_VECPRI_POLARITY_MASK,
  188. MPIC_IDX_VECPRI_SENSE_MASK,
  189. MPIC_IDX_IRQ_DESTINATION,
  190. MPIC_IDX_END
  191. };
  192. #ifdef CONFIG_MPIC_U3_HT_IRQS
  193. /* Fixup table entry */
  194. struct mpic_irq_fixup
  195. {
  196. u8 __iomem *base;
  197. u8 __iomem *applebase;
  198. u32 data;
  199. unsigned int index;
  200. };
  201. #endif /* CONFIG_MPIC_U3_HT_IRQS */
  202. enum mpic_reg_type {
  203. mpic_access_mmio_le,
  204. mpic_access_mmio_be,
  205. #ifdef CONFIG_PPC_DCR
  206. mpic_access_dcr
  207. #endif
  208. };
  209. struct mpic_reg_bank {
  210. u32 __iomem *base;
  211. #ifdef CONFIG_PPC_DCR
  212. dcr_host_t dhost;
  213. #endif /* CONFIG_PPC_DCR */
  214. };
  215. struct mpic_irq_save {
  216. u32 vecprio,
  217. dest;
  218. #ifdef CONFIG_MPIC_U3_HT_IRQS
  219. u32 fixup_data;
  220. #endif
  221. };
  222. /* The instance data of a given MPIC */
  223. struct mpic
  224. {
  225. /* The OpenFirmware dt node for this MPIC */
  226. struct device_node *node;
  227. /* The remapper for this MPIC */
  228. struct irq_domain *irqhost;
  229. /* The "linux" controller struct */
  230. struct irq_chip hc_irq;
  231. #ifdef CONFIG_MPIC_U3_HT_IRQS
  232. struct irq_chip hc_ht_irq;
  233. #endif
  234. #ifdef CONFIG_SMP
  235. struct irq_chip hc_ipi;
  236. #endif
  237. struct irq_chip hc_tm;
  238. struct irq_chip hc_err;
  239. const char *name;
  240. /* Flags */
  241. unsigned int flags;
  242. /* How many irq sources in a given ISU */
  243. unsigned int isu_size;
  244. unsigned int isu_shift;
  245. unsigned int isu_mask;
  246. /* Number of sources */
  247. unsigned int num_sources;
  248. /* vector numbers used for internal sources (ipi/timers) */
  249. unsigned int ipi_vecs[4];
  250. unsigned int timer_vecs[8];
  251. /* vector numbers used for FSL MPIC error interrupts */
  252. unsigned int err_int_vecs[MPIC_MAX_ERR];
  253. /* Spurious vector to program into unused sources */
  254. unsigned int spurious_vec;
  255. #ifdef CONFIG_MPIC_U3_HT_IRQS
  256. /* The fixup table */
  257. struct mpic_irq_fixup *fixups;
  258. raw_spinlock_t fixup_lock;
  259. #endif
  260. /* Register access method */
  261. enum mpic_reg_type reg_type;
  262. /* The physical base address of the MPIC */
  263. phys_addr_t paddr;
  264. /* The various ioremap'ed bases */
  265. struct mpic_reg_bank thiscpuregs;
  266. struct mpic_reg_bank gregs;
  267. struct mpic_reg_bank tmregs;
  268. struct mpic_reg_bank cpuregs[MPIC_MAX_CPUS];
  269. struct mpic_reg_bank isus[MPIC_MAX_ISU];
  270. /* ioremap'ed base for error interrupt registers */
  271. u32 __iomem *err_regs;
  272. /* Protected sources */
  273. unsigned long *protected;
  274. #ifdef CONFIG_MPIC_WEIRD
  275. /* Pointer to HW info array */
  276. u32 *hw_set;
  277. #endif
  278. #ifdef CONFIG_PCI_MSI
  279. struct msi_bitmap msi_bitmap;
  280. #endif
  281. #ifdef CONFIG_MPIC_BROKEN_REGREAD
  282. u32 isu_reg0_shadow[MPIC_MAX_IRQ_SOURCES];
  283. #endif
  284. /* link */
  285. struct mpic *next;
  286. #ifdef CONFIG_PM
  287. struct mpic_irq_save *save_data;
  288. #endif
  289. };
  290. extern struct bus_type mpic_subsys;
  291. /*
  292. * MPIC flags (passed to mpic_alloc)
  293. *
  294. * The top 4 bits contain an MPIC bhw id that is used to index the
  295. * register offsets and some masks when CONFIG_MPIC_WEIRD is set.
  296. * Note setting any ID (leaving those bits to 0) means standard MPIC
  297. */
  298. /*
  299. * This is a secondary ("chained") controller; it only uses the CPU0
  300. * registers. Primary controllers have IPIs and affinity control.
  301. */
  302. #define MPIC_SECONDARY 0x00000001
  303. /* Set this for a big-endian MPIC */
  304. #define MPIC_BIG_ENDIAN 0x00000002
  305. /* Broken U3 MPIC */
  306. #define MPIC_U3_HT_IRQS 0x00000004
  307. /* Broken IPI registers (autodetected) */
  308. #define MPIC_BROKEN_IPI 0x00000008
  309. /* Spurious vector requires EOI */
  310. #define MPIC_SPV_EOI 0x00000020
  311. /* No passthrough disable */
  312. #define MPIC_NO_PTHROU_DIS 0x00000040
  313. /* DCR based MPIC */
  314. #define MPIC_USES_DCR 0x00000080
  315. /* MPIC has 11-bit vector fields (or larger) */
  316. #define MPIC_LARGE_VECTORS 0x00000100
  317. /* Enable delivery of prio 15 interrupts as MCK instead of EE */
  318. #define MPIC_ENABLE_MCK 0x00000200
  319. /* Disable bias among target selection, spread interrupts evenly */
  320. #define MPIC_NO_BIAS 0x00000400
  321. /* Destination only supports a single CPU at a time */
  322. #define MPIC_SINGLE_DEST_CPU 0x00001000
  323. /* Enable CoreInt delivery of interrupts */
  324. #define MPIC_ENABLE_COREINT 0x00002000
  325. /* Do not reset the MPIC during initialization */
  326. #define MPIC_NO_RESET 0x00004000
  327. /* Freescale MPIC (compatible includes "fsl,mpic") */
  328. #define MPIC_FSL 0x00008000
  329. /* Freescale MPIC supports EIMR (error interrupt mask register).
  330. * This flag is set for MPIC version >= 4.1 (version determined
  331. * from the BRR1 register).
  332. */
  333. #define MPIC_FSL_HAS_EIMR 0x00010000
  334. /* MPIC HW modification ID */
  335. #define MPIC_REGSET_MASK 0xf0000000
  336. #define MPIC_REGSET(val) (((val) & 0xf ) << 28)
  337. #define MPIC_GET_REGSET(flags) (((flags) >> 28) & 0xf)
  338. #define MPIC_REGSET_STANDARD MPIC_REGSET(0) /* Original MPIC */
  339. #define MPIC_REGSET_TSI108 MPIC_REGSET(1) /* Tsi108/109 PIC */
  340. /* Get the version of primary MPIC */
  341. extern u32 fsl_mpic_primary_get_version(void);
  342. /* Allocate the controller structure and setup the linux irq descs
  343. * for the range if interrupts passed in. No HW initialization is
  344. * actually performed.
  345. *
  346. * @phys_addr: physial base address of the MPIC
  347. * @flags: flags, see constants above
  348. * @isu_size: number of interrupts in an ISU. Use 0 to use a
  349. * standard ISU-less setup (aka powermac)
  350. * @irq_offset: first irq number to assign to this mpic
  351. * @irq_count: number of irqs to use with this mpic IRQ sources. Pass 0
  352. * to match the number of sources
  353. * @ipi_offset: first irq number to assign to this mpic IPI sources,
  354. * used only on primary mpic
  355. * @senses: array of sense values
  356. * @senses_num: number of entries in the array
  357. *
  358. * Note about the sense array. If none is passed, all interrupts are
  359. * setup to be level negative unless MPIC_U3_HT_IRQS is set in which
  360. * case they are edge positive (and the array is ignored anyway).
  361. * The values in the array start at the first source of the MPIC,
  362. * that is senses[0] correspond to linux irq "irq_offset".
  363. */
  364. extern struct mpic *mpic_alloc(struct device_node *node,
  365. phys_addr_t phys_addr,
  366. unsigned int flags,
  367. unsigned int isu_size,
  368. unsigned int irq_count,
  369. const char *name);
  370. /* Assign ISUs, to call before mpic_init()
  371. *
  372. * @mpic: controller structure as returned by mpic_alloc()
  373. * @isu_num: ISU number
  374. * @phys_addr: physical address of the ISU
  375. */
  376. extern void mpic_assign_isu(struct mpic *mpic, unsigned int isu_num,
  377. phys_addr_t phys_addr);
  378. /* Initialize the controller. After this has been called, none of the above
  379. * should be called again for this mpic
  380. */
  381. extern void mpic_init(struct mpic *mpic);
  382. /*
  383. * All of the following functions must only be used after the
  384. * ISUs have been assigned and the controller fully initialized
  385. * with mpic_init()
  386. */
  387. /* Change the priority of an interrupt. Default is 8 for irqs and
  388. * 10 for IPIs. You can call this on both IPIs and IRQ numbers, but the
  389. * IPI number is then the offset'ed (linux irq number mapped to the IPI)
  390. */
  391. extern void mpic_irq_set_priority(unsigned int irq, unsigned int pri);
  392. /* Setup a non-boot CPU */
  393. extern void mpic_setup_this_cpu(void);
  394. /* Clean up for kexec (or cpu offline or ...) */
  395. extern void mpic_teardown_this_cpu(int secondary);
  396. /* Get the current cpu priority for this cpu (0..15) */
  397. extern int mpic_cpu_get_priority(void);
  398. /* Set the current cpu priority for this cpu */
  399. extern void mpic_cpu_set_priority(int prio);
  400. /* Request IPIs on primary mpic */
  401. extern void mpic_request_ipis(void);
  402. /* Send a message (IPI) to a given target (cpu number or MSG_*) */
  403. void smp_mpic_message_pass(int target, int msg);
  404. /* Unmask a specific virq */
  405. extern void mpic_unmask_irq(struct irq_data *d);
  406. /* Mask a specific virq */
  407. extern void mpic_mask_irq(struct irq_data *d);
  408. /* EOI a specific virq */
  409. extern void mpic_end_irq(struct irq_data *d);
  410. /* Fetch interrupt from a given mpic */
  411. extern unsigned int mpic_get_one_irq(struct mpic *mpic);
  412. /* This one gets from the primary mpic */
  413. extern unsigned int mpic_get_irq(void);
  414. /* This one gets from the primary mpic via CoreInt*/
  415. extern unsigned int mpic_get_coreint_irq(void);
  416. /* Fetch Machine Check interrupt from primary mpic */
  417. extern unsigned int mpic_get_mcirq(void);
  418. #endif /* __KERNEL__ */
  419. #endif /* _ASM_POWERPC_MPIC_H */