interrupt.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. /*
  2. * Cell Internal Interrupt Controller
  3. *
  4. * Copyright (C) 2006 Benjamin Herrenschmidt (benh@kernel.crashing.org)
  5. * IBM, Corp.
  6. *
  7. * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
  8. *
  9. * Author: Arnd Bergmann <arndb@de.ibm.com>
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2, or (at your option)
  14. * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
  24. *
  25. * TODO:
  26. * - Fix various assumptions related to HW CPU numbers vs. linux CPU numbers
  27. * vs node numbers in the setup code
  28. * - Implement proper handling of maxcpus=1/2 (that is, routing of irqs from
  29. * a non-active node to the active node)
  30. */
  31. #include <linux/interrupt.h>
  32. #include <linux/irq.h>
  33. #include <linux/export.h>
  34. #include <linux/percpu.h>
  35. #include <linux/types.h>
  36. #include <linux/ioport.h>
  37. #include <linux/kernel_stat.h>
  38. #include <asm/io.h>
  39. #include <asm/pgtable.h>
  40. #include <asm/prom.h>
  41. #include <asm/ptrace.h>
  42. #include <asm/machdep.h>
  43. #include <asm/cell-regs.h>
  44. #include "interrupt.h"
  45. struct iic {
  46. struct cbe_iic_thread_regs __iomem *regs;
  47. u8 target_id;
  48. u8 eoi_stack[16];
  49. int eoi_ptr;
  50. struct device_node *node;
  51. };
  52. static DEFINE_PER_CPU(struct iic, cpu_iic);
  53. #define IIC_NODE_COUNT 2
  54. static struct irq_domain *iic_host;
  55. /* Convert between "pending" bits and hw irq number */
  56. static irq_hw_number_t iic_pending_to_hwnum(struct cbe_iic_pending_bits bits)
  57. {
  58. unsigned char unit = bits.source & 0xf;
  59. unsigned char node = bits.source >> 4;
  60. unsigned char class = bits.class & 3;
  61. /* Decode IPIs */
  62. if (bits.flags & CBE_IIC_IRQ_IPI)
  63. return IIC_IRQ_TYPE_IPI | (bits.prio >> 4);
  64. else
  65. return (node << IIC_IRQ_NODE_SHIFT) | (class << 4) | unit;
  66. }
  67. static void iic_mask(struct irq_data *d)
  68. {
  69. }
  70. static void iic_unmask(struct irq_data *d)
  71. {
  72. }
  73. static void iic_eoi(struct irq_data *d)
  74. {
  75. struct iic *iic = this_cpu_ptr(&cpu_iic);
  76. out_be64(&iic->regs->prio, iic->eoi_stack[--iic->eoi_ptr]);
  77. BUG_ON(iic->eoi_ptr < 0);
  78. }
  79. static struct irq_chip iic_chip = {
  80. .name = "CELL-IIC",
  81. .irq_mask = iic_mask,
  82. .irq_unmask = iic_unmask,
  83. .irq_eoi = iic_eoi,
  84. };
  85. static void iic_ioexc_eoi(struct irq_data *d)
  86. {
  87. }
  88. static void iic_ioexc_cascade(struct irq_desc *desc)
  89. {
  90. struct irq_chip *chip = irq_desc_get_chip(desc);
  91. struct cbe_iic_regs __iomem *node_iic =
  92. (void __iomem *)irq_desc_get_handler_data(desc);
  93. unsigned int irq = irq_desc_get_irq(desc);
  94. unsigned int base = (irq & 0xffffff00) | IIC_IRQ_TYPE_IOEXC;
  95. unsigned long bits, ack;
  96. int cascade;
  97. for (;;) {
  98. bits = in_be64(&node_iic->iic_is);
  99. if (bits == 0)
  100. break;
  101. /* pre-ack edge interrupts */
  102. ack = bits & IIC_ISR_EDGE_MASK;
  103. if (ack)
  104. out_be64(&node_iic->iic_is, ack);
  105. /* handle them */
  106. for (cascade = 63; cascade >= 0; cascade--)
  107. if (bits & (0x8000000000000000UL >> cascade)) {
  108. unsigned int cirq =
  109. irq_linear_revmap(iic_host,
  110. base | cascade);
  111. if (cirq != NO_IRQ)
  112. generic_handle_irq(cirq);
  113. }
  114. /* post-ack level interrupts */
  115. ack = bits & ~IIC_ISR_EDGE_MASK;
  116. if (ack)
  117. out_be64(&node_iic->iic_is, ack);
  118. }
  119. chip->irq_eoi(&desc->irq_data);
  120. }
  121. static struct irq_chip iic_ioexc_chip = {
  122. .name = "CELL-IOEX",
  123. .irq_mask = iic_mask,
  124. .irq_unmask = iic_unmask,
  125. .irq_eoi = iic_ioexc_eoi,
  126. };
  127. /* Get an IRQ number from the pending state register of the IIC */
  128. static unsigned int iic_get_irq(void)
  129. {
  130. struct cbe_iic_pending_bits pending;
  131. struct iic *iic;
  132. unsigned int virq;
  133. iic = this_cpu_ptr(&cpu_iic);
  134. *(unsigned long *) &pending =
  135. in_be64((u64 __iomem *) &iic->regs->pending_destr);
  136. if (!(pending.flags & CBE_IIC_IRQ_VALID))
  137. return NO_IRQ;
  138. virq = irq_linear_revmap(iic_host, iic_pending_to_hwnum(pending));
  139. if (virq == NO_IRQ)
  140. return NO_IRQ;
  141. iic->eoi_stack[++iic->eoi_ptr] = pending.prio;
  142. BUG_ON(iic->eoi_ptr > 15);
  143. return virq;
  144. }
  145. void iic_setup_cpu(void)
  146. {
  147. out_be64(&this_cpu_ptr(&cpu_iic)->regs->prio, 0xff);
  148. }
  149. u8 iic_get_target_id(int cpu)
  150. {
  151. return per_cpu(cpu_iic, cpu).target_id;
  152. }
  153. EXPORT_SYMBOL_GPL(iic_get_target_id);
  154. #ifdef CONFIG_SMP
  155. /* Use the highest interrupt priorities for IPI */
  156. static inline int iic_msg_to_irq(int msg)
  157. {
  158. return IIC_IRQ_TYPE_IPI + 0xf - msg;
  159. }
  160. void iic_message_pass(int cpu, int msg)
  161. {
  162. out_be64(&per_cpu(cpu_iic, cpu).regs->generate, (0xf - msg) << 4);
  163. }
  164. struct irq_domain *iic_get_irq_host(int node)
  165. {
  166. return iic_host;
  167. }
  168. EXPORT_SYMBOL_GPL(iic_get_irq_host);
  169. static void iic_request_ipi(int msg)
  170. {
  171. int virq;
  172. virq = irq_create_mapping(iic_host, iic_msg_to_irq(msg));
  173. if (virq == NO_IRQ) {
  174. printk(KERN_ERR
  175. "iic: failed to map IPI %s\n", smp_ipi_name[msg]);
  176. return;
  177. }
  178. /*
  179. * If smp_request_message_ipi encounters an error it will notify
  180. * the error. If a message is not needed it will return non-zero.
  181. */
  182. if (smp_request_message_ipi(virq, msg))
  183. irq_dispose_mapping(virq);
  184. }
  185. void iic_request_IPIs(void)
  186. {
  187. iic_request_ipi(PPC_MSG_CALL_FUNCTION);
  188. iic_request_ipi(PPC_MSG_RESCHEDULE);
  189. iic_request_ipi(PPC_MSG_TICK_BROADCAST);
  190. iic_request_ipi(PPC_MSG_DEBUGGER_BREAK);
  191. }
  192. #endif /* CONFIG_SMP */
  193. static int iic_host_match(struct irq_domain *h, struct device_node *node,
  194. enum irq_domain_bus_token bus_token)
  195. {
  196. return of_device_is_compatible(node,
  197. "IBM,CBEA-Internal-Interrupt-Controller");
  198. }
  199. static int iic_host_map(struct irq_domain *h, unsigned int virq,
  200. irq_hw_number_t hw)
  201. {
  202. switch (hw & IIC_IRQ_TYPE_MASK) {
  203. case IIC_IRQ_TYPE_IPI:
  204. irq_set_chip_and_handler(virq, &iic_chip, handle_percpu_irq);
  205. break;
  206. case IIC_IRQ_TYPE_IOEXC:
  207. irq_set_chip_and_handler(virq, &iic_ioexc_chip,
  208. handle_edge_eoi_irq);
  209. break;
  210. default:
  211. irq_set_chip_and_handler(virq, &iic_chip, handle_edge_eoi_irq);
  212. }
  213. return 0;
  214. }
  215. static int iic_host_xlate(struct irq_domain *h, struct device_node *ct,
  216. const u32 *intspec, unsigned int intsize,
  217. irq_hw_number_t *out_hwirq, unsigned int *out_flags)
  218. {
  219. unsigned int node, ext, unit, class;
  220. const u32 *val;
  221. if (!of_device_is_compatible(ct,
  222. "IBM,CBEA-Internal-Interrupt-Controller"))
  223. return -ENODEV;
  224. if (intsize != 1)
  225. return -ENODEV;
  226. val = of_get_property(ct, "#interrupt-cells", NULL);
  227. if (val == NULL || *val != 1)
  228. return -ENODEV;
  229. node = intspec[0] >> 24;
  230. ext = (intspec[0] >> 16) & 0xff;
  231. class = (intspec[0] >> 8) & 0xff;
  232. unit = intspec[0] & 0xff;
  233. /* Check if node is in supported range */
  234. if (node > 1)
  235. return -EINVAL;
  236. /* Build up interrupt number, special case for IO exceptions */
  237. *out_hwirq = (node << IIC_IRQ_NODE_SHIFT);
  238. if (unit == IIC_UNIT_IIC && class == 1)
  239. *out_hwirq |= IIC_IRQ_TYPE_IOEXC | ext;
  240. else
  241. *out_hwirq |= IIC_IRQ_TYPE_NORMAL |
  242. (class << IIC_IRQ_CLASS_SHIFT) | unit;
  243. /* Dummy flags, ignored by iic code */
  244. *out_flags = IRQ_TYPE_EDGE_RISING;
  245. return 0;
  246. }
  247. static const struct irq_domain_ops iic_host_ops = {
  248. .match = iic_host_match,
  249. .map = iic_host_map,
  250. .xlate = iic_host_xlate,
  251. };
  252. static void __init init_one_iic(unsigned int hw_cpu, unsigned long addr,
  253. struct device_node *node)
  254. {
  255. /* XXX FIXME: should locate the linux CPU number from the HW cpu
  256. * number properly. We are lucky for now
  257. */
  258. struct iic *iic = &per_cpu(cpu_iic, hw_cpu);
  259. iic->regs = ioremap(addr, sizeof(struct cbe_iic_thread_regs));
  260. BUG_ON(iic->regs == NULL);
  261. iic->target_id = ((hw_cpu & 2) << 3) | ((hw_cpu & 1) ? 0xf : 0xe);
  262. iic->eoi_stack[0] = 0xff;
  263. iic->node = of_node_get(node);
  264. out_be64(&iic->regs->prio, 0);
  265. printk(KERN_INFO "IIC for CPU %d target id 0x%x : %s\n",
  266. hw_cpu, iic->target_id, node->full_name);
  267. }
  268. static int __init setup_iic(void)
  269. {
  270. struct device_node *dn;
  271. struct resource r0, r1;
  272. unsigned int node, cascade, found = 0;
  273. struct cbe_iic_regs __iomem *node_iic;
  274. const u32 *np;
  275. for (dn = NULL;
  276. (dn = of_find_node_by_name(dn,"interrupt-controller")) != NULL;) {
  277. if (!of_device_is_compatible(dn,
  278. "IBM,CBEA-Internal-Interrupt-Controller"))
  279. continue;
  280. np = of_get_property(dn, "ibm,interrupt-server-ranges", NULL);
  281. if (np == NULL) {
  282. printk(KERN_WARNING "IIC: CPU association not found\n");
  283. of_node_put(dn);
  284. return -ENODEV;
  285. }
  286. if (of_address_to_resource(dn, 0, &r0) ||
  287. of_address_to_resource(dn, 1, &r1)) {
  288. printk(KERN_WARNING "IIC: Can't resolve addresses\n");
  289. of_node_put(dn);
  290. return -ENODEV;
  291. }
  292. found++;
  293. init_one_iic(np[0], r0.start, dn);
  294. init_one_iic(np[1], r1.start, dn);
  295. /* Setup cascade for IO exceptions. XXX cleanup tricks to get
  296. * node vs CPU etc...
  297. * Note that we configure the IIC_IRR here with a hard coded
  298. * priority of 1. We might want to improve that later.
  299. */
  300. node = np[0] >> 1;
  301. node_iic = cbe_get_cpu_iic_regs(np[0]);
  302. cascade = node << IIC_IRQ_NODE_SHIFT;
  303. cascade |= 1 << IIC_IRQ_CLASS_SHIFT;
  304. cascade |= IIC_UNIT_IIC;
  305. cascade = irq_create_mapping(iic_host, cascade);
  306. if (cascade == NO_IRQ)
  307. continue;
  308. /*
  309. * irq_data is a generic pointer that gets passed back
  310. * to us later, so the forced cast is fine.
  311. */
  312. irq_set_handler_data(cascade, (void __force *)node_iic);
  313. irq_set_chained_handler(cascade, iic_ioexc_cascade);
  314. out_be64(&node_iic->iic_ir,
  315. (1 << 12) /* priority */ |
  316. (node << 4) /* dest node */ |
  317. IIC_UNIT_THREAD_0 /* route them to thread 0 */);
  318. /* Flush pending (make sure it triggers if there is
  319. * anything pending
  320. */
  321. out_be64(&node_iic->iic_is, 0xfffffffffffffffful);
  322. }
  323. if (found)
  324. return 0;
  325. else
  326. return -ENODEV;
  327. }
  328. void __init iic_init_IRQ(void)
  329. {
  330. /* Setup an irq host data structure */
  331. iic_host = irq_domain_add_linear(NULL, IIC_SOURCE_COUNT, &iic_host_ops,
  332. NULL);
  333. BUG_ON(iic_host == NULL);
  334. irq_set_default_host(iic_host);
  335. /* Discover and initialize iics */
  336. if (setup_iic() < 0)
  337. panic("IIC: Failed to initialize !\n");
  338. /* Set master interrupt handling function */
  339. ppc_md.get_irq = iic_get_irq;
  340. /* Enable on current CPU */
  341. iic_setup_cpu();
  342. }
  343. void iic_set_interrupt_routing(int cpu, int thread, int priority)
  344. {
  345. struct cbe_iic_regs __iomem *iic_regs = cbe_get_cpu_iic_regs(cpu);
  346. u64 iic_ir = 0;
  347. int node = cpu >> 1;
  348. /* Set which node and thread will handle the next interrupt */
  349. iic_ir |= CBE_IIC_IR_PRIO(priority) |
  350. CBE_IIC_IR_DEST_NODE(node);
  351. if (thread == 0)
  352. iic_ir |= CBE_IIC_IR_DEST_UNIT(CBE_IIC_IR_PT_0);
  353. else
  354. iic_ir |= CBE_IIC_IR_DEST_UNIT(CBE_IIC_IR_PT_1);
  355. out_be64(&iic_regs->iic_ir, iic_ir);
  356. }