mpic.c 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836
  1. /*
  2. * arch/powerpc/kernel/mpic.c
  3. *
  4. * Driver for interrupt controllers following the OpenPIC standard, the
  5. * common implementation beeing IBM's MPIC. This driver also can deal
  6. * with various broken implementations of this HW.
  7. *
  8. * Copyright (C) 2004 Benjamin Herrenschmidt, IBM Corp.
  9. * Copyright 2010-2011 Freescale Semiconductor, Inc.
  10. *
  11. * This file is subject to the terms and conditions of the GNU General Public
  12. * License. See the file COPYING in the main directory of this archive
  13. * for more details.
  14. */
  15. #undef DEBUG
  16. #undef DEBUG_IPI
  17. #undef DEBUG_IRQ
  18. #undef DEBUG_LOW
  19. #include <linux/types.h>
  20. #include <linux/kernel.h>
  21. #include <linux/init.h>
  22. #include <linux/irq.h>
  23. #include <linux/smp.h>
  24. #include <linux/interrupt.h>
  25. #include <linux/bootmem.h>
  26. #include <linux/spinlock.h>
  27. #include <linux/pci.h>
  28. #include <linux/slab.h>
  29. #include <linux/syscore_ops.h>
  30. #include <linux/ratelimit.h>
  31. #include <asm/ptrace.h>
  32. #include <asm/signal.h>
  33. #include <asm/io.h>
  34. #include <asm/pgtable.h>
  35. #include <asm/irq.h>
  36. #include <asm/machdep.h>
  37. #include <asm/mpic.h>
  38. #include <asm/smp.h>
  39. #include "mpic.h"
  40. #ifdef DEBUG
  41. #define DBG(fmt...) printk(fmt)
  42. #else
  43. #define DBG(fmt...)
  44. #endif
  45. static struct mpic *mpics;
  46. static struct mpic *mpic_primary;
  47. static DEFINE_RAW_SPINLOCK(mpic_lock);
  48. #ifdef CONFIG_PPC32 /* XXX for now */
  49. #ifdef CONFIG_IRQ_ALL_CPUS
  50. #define distribute_irqs (1)
  51. #else
  52. #define distribute_irqs (0)
  53. #endif
  54. #endif
  55. #ifdef CONFIG_MPIC_WEIRD
  56. static u32 mpic_infos[][MPIC_IDX_END] = {
  57. [0] = { /* Original OpenPIC compatible MPIC */
  58. MPIC_GREG_BASE,
  59. MPIC_GREG_FEATURE_0,
  60. MPIC_GREG_GLOBAL_CONF_0,
  61. MPIC_GREG_VENDOR_ID,
  62. MPIC_GREG_IPI_VECTOR_PRI_0,
  63. MPIC_GREG_IPI_STRIDE,
  64. MPIC_GREG_SPURIOUS,
  65. MPIC_GREG_TIMER_FREQ,
  66. MPIC_TIMER_BASE,
  67. MPIC_TIMER_STRIDE,
  68. MPIC_TIMER_CURRENT_CNT,
  69. MPIC_TIMER_BASE_CNT,
  70. MPIC_TIMER_VECTOR_PRI,
  71. MPIC_TIMER_DESTINATION,
  72. MPIC_CPU_BASE,
  73. MPIC_CPU_STRIDE,
  74. MPIC_CPU_IPI_DISPATCH_0,
  75. MPIC_CPU_IPI_DISPATCH_STRIDE,
  76. MPIC_CPU_CURRENT_TASK_PRI,
  77. MPIC_CPU_WHOAMI,
  78. MPIC_CPU_INTACK,
  79. MPIC_CPU_EOI,
  80. MPIC_CPU_MCACK,
  81. MPIC_IRQ_BASE,
  82. MPIC_IRQ_STRIDE,
  83. MPIC_IRQ_VECTOR_PRI,
  84. MPIC_VECPRI_VECTOR_MASK,
  85. MPIC_VECPRI_POLARITY_POSITIVE,
  86. MPIC_VECPRI_POLARITY_NEGATIVE,
  87. MPIC_VECPRI_SENSE_LEVEL,
  88. MPIC_VECPRI_SENSE_EDGE,
  89. MPIC_VECPRI_POLARITY_MASK,
  90. MPIC_VECPRI_SENSE_MASK,
  91. MPIC_IRQ_DESTINATION
  92. },
  93. [1] = { /* Tsi108/109 PIC */
  94. TSI108_GREG_BASE,
  95. TSI108_GREG_FEATURE_0,
  96. TSI108_GREG_GLOBAL_CONF_0,
  97. TSI108_GREG_VENDOR_ID,
  98. TSI108_GREG_IPI_VECTOR_PRI_0,
  99. TSI108_GREG_IPI_STRIDE,
  100. TSI108_GREG_SPURIOUS,
  101. TSI108_GREG_TIMER_FREQ,
  102. TSI108_TIMER_BASE,
  103. TSI108_TIMER_STRIDE,
  104. TSI108_TIMER_CURRENT_CNT,
  105. TSI108_TIMER_BASE_CNT,
  106. TSI108_TIMER_VECTOR_PRI,
  107. TSI108_TIMER_DESTINATION,
  108. TSI108_CPU_BASE,
  109. TSI108_CPU_STRIDE,
  110. TSI108_CPU_IPI_DISPATCH_0,
  111. TSI108_CPU_IPI_DISPATCH_STRIDE,
  112. TSI108_CPU_CURRENT_TASK_PRI,
  113. TSI108_CPU_WHOAMI,
  114. TSI108_CPU_INTACK,
  115. TSI108_CPU_EOI,
  116. TSI108_CPU_MCACK,
  117. TSI108_IRQ_BASE,
  118. TSI108_IRQ_STRIDE,
  119. TSI108_IRQ_VECTOR_PRI,
  120. TSI108_VECPRI_VECTOR_MASK,
  121. TSI108_VECPRI_POLARITY_POSITIVE,
  122. TSI108_VECPRI_POLARITY_NEGATIVE,
  123. TSI108_VECPRI_SENSE_LEVEL,
  124. TSI108_VECPRI_SENSE_EDGE,
  125. TSI108_VECPRI_POLARITY_MASK,
  126. TSI108_VECPRI_SENSE_MASK,
  127. TSI108_IRQ_DESTINATION
  128. },
  129. };
  130. #define MPIC_INFO(name) mpic->hw_set[MPIC_IDX_##name]
  131. #else /* CONFIG_MPIC_WEIRD */
  132. #define MPIC_INFO(name) MPIC_##name
  133. #endif /* CONFIG_MPIC_WEIRD */
  134. static inline unsigned int mpic_processor_id(struct mpic *mpic)
  135. {
  136. unsigned int cpu = 0;
  137. if (mpic->flags & MPIC_PRIMARY)
  138. cpu = hard_smp_processor_id();
  139. return cpu;
  140. }
  141. /*
  142. * Register accessor functions
  143. */
  144. static inline u32 _mpic_read(enum mpic_reg_type type,
  145. struct mpic_reg_bank *rb,
  146. unsigned int reg)
  147. {
  148. switch(type) {
  149. #ifdef CONFIG_PPC_DCR
  150. case mpic_access_dcr:
  151. return dcr_read(rb->dhost, reg);
  152. #endif
  153. case mpic_access_mmio_be:
  154. return in_be32(rb->base + (reg >> 2));
  155. case mpic_access_mmio_le:
  156. default:
  157. return in_le32(rb->base + (reg >> 2));
  158. }
  159. }
  160. static inline void _mpic_write(enum mpic_reg_type type,
  161. struct mpic_reg_bank *rb,
  162. unsigned int reg, u32 value)
  163. {
  164. switch(type) {
  165. #ifdef CONFIG_PPC_DCR
  166. case mpic_access_dcr:
  167. dcr_write(rb->dhost, reg, value);
  168. break;
  169. #endif
  170. case mpic_access_mmio_be:
  171. out_be32(rb->base + (reg >> 2), value);
  172. break;
  173. case mpic_access_mmio_le:
  174. default:
  175. out_le32(rb->base + (reg >> 2), value);
  176. break;
  177. }
  178. }
  179. static inline u32 _mpic_ipi_read(struct mpic *mpic, unsigned int ipi)
  180. {
  181. enum mpic_reg_type type = mpic->reg_type;
  182. unsigned int offset = MPIC_INFO(GREG_IPI_VECTOR_PRI_0) +
  183. (ipi * MPIC_INFO(GREG_IPI_STRIDE));
  184. if ((mpic->flags & MPIC_BROKEN_IPI) && type == mpic_access_mmio_le)
  185. type = mpic_access_mmio_be;
  186. return _mpic_read(type, &mpic->gregs, offset);
  187. }
  188. static inline void _mpic_ipi_write(struct mpic *mpic, unsigned int ipi, u32 value)
  189. {
  190. unsigned int offset = MPIC_INFO(GREG_IPI_VECTOR_PRI_0) +
  191. (ipi * MPIC_INFO(GREG_IPI_STRIDE));
  192. _mpic_write(mpic->reg_type, &mpic->gregs, offset, value);
  193. }
  194. static inline u32 _mpic_tm_read(struct mpic *mpic, unsigned int tm)
  195. {
  196. unsigned int offset = MPIC_INFO(TIMER_VECTOR_PRI) +
  197. ((tm & 3) * MPIC_INFO(TIMER_STRIDE));
  198. if (tm >= 4)
  199. offset += 0x1000 / 4;
  200. return _mpic_read(mpic->reg_type, &mpic->tmregs, offset);
  201. }
  202. static inline void _mpic_tm_write(struct mpic *mpic, unsigned int tm, u32 value)
  203. {
  204. unsigned int offset = MPIC_INFO(TIMER_VECTOR_PRI) +
  205. ((tm & 3) * MPIC_INFO(TIMER_STRIDE));
  206. if (tm >= 4)
  207. offset += 0x1000 / 4;
  208. _mpic_write(mpic->reg_type, &mpic->tmregs, offset, value);
  209. }
  210. static inline u32 _mpic_cpu_read(struct mpic *mpic, unsigned int reg)
  211. {
  212. unsigned int cpu = mpic_processor_id(mpic);
  213. return _mpic_read(mpic->reg_type, &mpic->cpuregs[cpu], reg);
  214. }
  215. static inline void _mpic_cpu_write(struct mpic *mpic, unsigned int reg, u32 value)
  216. {
  217. unsigned int cpu = mpic_processor_id(mpic);
  218. _mpic_write(mpic->reg_type, &mpic->cpuregs[cpu], reg, value);
  219. }
  220. static inline u32 _mpic_irq_read(struct mpic *mpic, unsigned int src_no, unsigned int reg)
  221. {
  222. unsigned int isu = src_no >> mpic->isu_shift;
  223. unsigned int idx = src_no & mpic->isu_mask;
  224. unsigned int val;
  225. val = _mpic_read(mpic->reg_type, &mpic->isus[isu],
  226. reg + (idx * MPIC_INFO(IRQ_STRIDE)));
  227. #ifdef CONFIG_MPIC_BROKEN_REGREAD
  228. if (reg == 0)
  229. val = (val & (MPIC_VECPRI_MASK | MPIC_VECPRI_ACTIVITY)) |
  230. mpic->isu_reg0_shadow[src_no];
  231. #endif
  232. return val;
  233. }
  234. static inline void _mpic_irq_write(struct mpic *mpic, unsigned int src_no,
  235. unsigned int reg, u32 value)
  236. {
  237. unsigned int isu = src_no >> mpic->isu_shift;
  238. unsigned int idx = src_no & mpic->isu_mask;
  239. _mpic_write(mpic->reg_type, &mpic->isus[isu],
  240. reg + (idx * MPIC_INFO(IRQ_STRIDE)), value);
  241. #ifdef CONFIG_MPIC_BROKEN_REGREAD
  242. if (reg == 0)
  243. mpic->isu_reg0_shadow[src_no] =
  244. value & ~(MPIC_VECPRI_MASK | MPIC_VECPRI_ACTIVITY);
  245. #endif
  246. }
  247. #define mpic_read(b,r) _mpic_read(mpic->reg_type,&(b),(r))
  248. #define mpic_write(b,r,v) _mpic_write(mpic->reg_type,&(b),(r),(v))
  249. #define mpic_ipi_read(i) _mpic_ipi_read(mpic,(i))
  250. #define mpic_ipi_write(i,v) _mpic_ipi_write(mpic,(i),(v))
  251. #define mpic_tm_read(i) _mpic_tm_read(mpic,(i))
  252. #define mpic_tm_write(i,v) _mpic_tm_write(mpic,(i),(v))
  253. #define mpic_cpu_read(i) _mpic_cpu_read(mpic,(i))
  254. #define mpic_cpu_write(i,v) _mpic_cpu_write(mpic,(i),(v))
  255. #define mpic_irq_read(s,r) _mpic_irq_read(mpic,(s),(r))
  256. #define mpic_irq_write(s,r,v) _mpic_irq_write(mpic,(s),(r),(v))
  257. /*
  258. * Low level utility functions
  259. */
  260. static void _mpic_map_mmio(struct mpic *mpic, phys_addr_t phys_addr,
  261. struct mpic_reg_bank *rb, unsigned int offset,
  262. unsigned int size)
  263. {
  264. rb->base = ioremap(phys_addr + offset, size);
  265. BUG_ON(rb->base == NULL);
  266. }
  267. #ifdef CONFIG_PPC_DCR
  268. static void _mpic_map_dcr(struct mpic *mpic, struct device_node *node,
  269. struct mpic_reg_bank *rb,
  270. unsigned int offset, unsigned int size)
  271. {
  272. const u32 *dbasep;
  273. dbasep = of_get_property(node, "dcr-reg", NULL);
  274. rb->dhost = dcr_map(node, *dbasep + offset, size);
  275. BUG_ON(!DCR_MAP_OK(rb->dhost));
  276. }
  277. static inline void mpic_map(struct mpic *mpic, struct device_node *node,
  278. phys_addr_t phys_addr, struct mpic_reg_bank *rb,
  279. unsigned int offset, unsigned int size)
  280. {
  281. if (mpic->flags & MPIC_USES_DCR)
  282. _mpic_map_dcr(mpic, node, rb, offset, size);
  283. else
  284. _mpic_map_mmio(mpic, phys_addr, rb, offset, size);
  285. }
  286. #else /* CONFIG_PPC_DCR */
  287. #define mpic_map(m,n,p,b,o,s) _mpic_map_mmio(m,p,b,o,s)
  288. #endif /* !CONFIG_PPC_DCR */
  289. /* Check if we have one of those nice broken MPICs with a flipped endian on
  290. * reads from IPI registers
  291. */
  292. static void __init mpic_test_broken_ipi(struct mpic *mpic)
  293. {
  294. u32 r;
  295. mpic_write(mpic->gregs, MPIC_INFO(GREG_IPI_VECTOR_PRI_0), MPIC_VECPRI_MASK);
  296. r = mpic_read(mpic->gregs, MPIC_INFO(GREG_IPI_VECTOR_PRI_0));
  297. if (r == le32_to_cpu(MPIC_VECPRI_MASK)) {
  298. printk(KERN_INFO "mpic: Detected reversed IPI registers\n");
  299. mpic->flags |= MPIC_BROKEN_IPI;
  300. }
  301. }
  302. #ifdef CONFIG_MPIC_U3_HT_IRQS
  303. /* Test if an interrupt is sourced from HyperTransport (used on broken U3s)
  304. * to force the edge setting on the MPIC and do the ack workaround.
  305. */
  306. static inline int mpic_is_ht_interrupt(struct mpic *mpic, unsigned int source)
  307. {
  308. if (source >= 128 || !mpic->fixups)
  309. return 0;
  310. return mpic->fixups[source].base != NULL;
  311. }
  312. static inline void mpic_ht_end_irq(struct mpic *mpic, unsigned int source)
  313. {
  314. struct mpic_irq_fixup *fixup = &mpic->fixups[source];
  315. if (fixup->applebase) {
  316. unsigned int soff = (fixup->index >> 3) & ~3;
  317. unsigned int mask = 1U << (fixup->index & 0x1f);
  318. writel(mask, fixup->applebase + soff);
  319. } else {
  320. raw_spin_lock(&mpic->fixup_lock);
  321. writeb(0x11 + 2 * fixup->index, fixup->base + 2);
  322. writel(fixup->data, fixup->base + 4);
  323. raw_spin_unlock(&mpic->fixup_lock);
  324. }
  325. }
  326. static void mpic_startup_ht_interrupt(struct mpic *mpic, unsigned int source,
  327. bool level)
  328. {
  329. struct mpic_irq_fixup *fixup = &mpic->fixups[source];
  330. unsigned long flags;
  331. u32 tmp;
  332. if (fixup->base == NULL)
  333. return;
  334. DBG("startup_ht_interrupt(0x%x) index: %d\n",
  335. source, fixup->index);
  336. raw_spin_lock_irqsave(&mpic->fixup_lock, flags);
  337. /* Enable and configure */
  338. writeb(0x10 + 2 * fixup->index, fixup->base + 2);
  339. tmp = readl(fixup->base + 4);
  340. tmp &= ~(0x23U);
  341. if (level)
  342. tmp |= 0x22;
  343. writel(tmp, fixup->base + 4);
  344. raw_spin_unlock_irqrestore(&mpic->fixup_lock, flags);
  345. #ifdef CONFIG_PM
  346. /* use the lowest bit inverted to the actual HW,
  347. * set if this fixup was enabled, clear otherwise */
  348. mpic->save_data[source].fixup_data = tmp | 1;
  349. #endif
  350. }
  351. static void mpic_shutdown_ht_interrupt(struct mpic *mpic, unsigned int source)
  352. {
  353. struct mpic_irq_fixup *fixup = &mpic->fixups[source];
  354. unsigned long flags;
  355. u32 tmp;
  356. if (fixup->base == NULL)
  357. return;
  358. DBG("shutdown_ht_interrupt(0x%x)\n", source);
  359. /* Disable */
  360. raw_spin_lock_irqsave(&mpic->fixup_lock, flags);
  361. writeb(0x10 + 2 * fixup->index, fixup->base + 2);
  362. tmp = readl(fixup->base + 4);
  363. tmp |= 1;
  364. writel(tmp, fixup->base + 4);
  365. raw_spin_unlock_irqrestore(&mpic->fixup_lock, flags);
  366. #ifdef CONFIG_PM
  367. /* use the lowest bit inverted to the actual HW,
  368. * set if this fixup was enabled, clear otherwise */
  369. mpic->save_data[source].fixup_data = tmp & ~1;
  370. #endif
  371. }
  372. #ifdef CONFIG_PCI_MSI
  373. static void __init mpic_scan_ht_msi(struct mpic *mpic, u8 __iomem *devbase,
  374. unsigned int devfn)
  375. {
  376. u8 __iomem *base;
  377. u8 pos, flags;
  378. u64 addr = 0;
  379. for (pos = readb(devbase + PCI_CAPABILITY_LIST); pos != 0;
  380. pos = readb(devbase + pos + PCI_CAP_LIST_NEXT)) {
  381. u8 id = readb(devbase + pos + PCI_CAP_LIST_ID);
  382. if (id == PCI_CAP_ID_HT) {
  383. id = readb(devbase + pos + 3);
  384. if ((id & HT_5BIT_CAP_MASK) == HT_CAPTYPE_MSI_MAPPING)
  385. break;
  386. }
  387. }
  388. if (pos == 0)
  389. return;
  390. base = devbase + pos;
  391. flags = readb(base + HT_MSI_FLAGS);
  392. if (!(flags & HT_MSI_FLAGS_FIXED)) {
  393. addr = readl(base + HT_MSI_ADDR_LO) & HT_MSI_ADDR_LO_MASK;
  394. addr = addr | ((u64)readl(base + HT_MSI_ADDR_HI) << 32);
  395. }
  396. printk(KERN_DEBUG "mpic: - HT:%02x.%x %s MSI mapping found @ 0x%llx\n",
  397. PCI_SLOT(devfn), PCI_FUNC(devfn),
  398. flags & HT_MSI_FLAGS_ENABLE ? "enabled" : "disabled", addr);
  399. if (!(flags & HT_MSI_FLAGS_ENABLE))
  400. writeb(flags | HT_MSI_FLAGS_ENABLE, base + HT_MSI_FLAGS);
  401. }
  402. #else
  403. static void __init mpic_scan_ht_msi(struct mpic *mpic, u8 __iomem *devbase,
  404. unsigned int devfn)
  405. {
  406. return;
  407. }
  408. #endif
  409. static void __init mpic_scan_ht_pic(struct mpic *mpic, u8 __iomem *devbase,
  410. unsigned int devfn, u32 vdid)
  411. {
  412. int i, irq, n;
  413. u8 __iomem *base;
  414. u32 tmp;
  415. u8 pos;
  416. for (pos = readb(devbase + PCI_CAPABILITY_LIST); pos != 0;
  417. pos = readb(devbase + pos + PCI_CAP_LIST_NEXT)) {
  418. u8 id = readb(devbase + pos + PCI_CAP_LIST_ID);
  419. if (id == PCI_CAP_ID_HT) {
  420. id = readb(devbase + pos + 3);
  421. if ((id & HT_5BIT_CAP_MASK) == HT_CAPTYPE_IRQ)
  422. break;
  423. }
  424. }
  425. if (pos == 0)
  426. return;
  427. base = devbase + pos;
  428. writeb(0x01, base + 2);
  429. n = (readl(base + 4) >> 16) & 0xff;
  430. printk(KERN_INFO "mpic: - HT:%02x.%x [0x%02x] vendor %04x device %04x"
  431. " has %d irqs\n",
  432. devfn >> 3, devfn & 0x7, pos, vdid & 0xffff, vdid >> 16, n + 1);
  433. for (i = 0; i <= n; i++) {
  434. writeb(0x10 + 2 * i, base + 2);
  435. tmp = readl(base + 4);
  436. irq = (tmp >> 16) & 0xff;
  437. DBG("HT PIC index 0x%x, irq 0x%x, tmp: %08x\n", i, irq, tmp);
  438. /* mask it , will be unmasked later */
  439. tmp |= 0x1;
  440. writel(tmp, base + 4);
  441. mpic->fixups[irq].index = i;
  442. mpic->fixups[irq].base = base;
  443. /* Apple HT PIC has a non-standard way of doing EOIs */
  444. if ((vdid & 0xffff) == 0x106b)
  445. mpic->fixups[irq].applebase = devbase + 0x60;
  446. else
  447. mpic->fixups[irq].applebase = NULL;
  448. writeb(0x11 + 2 * i, base + 2);
  449. mpic->fixups[irq].data = readl(base + 4) | 0x80000000;
  450. }
  451. }
  452. static void __init mpic_scan_ht_pics(struct mpic *mpic)
  453. {
  454. unsigned int devfn;
  455. u8 __iomem *cfgspace;
  456. printk(KERN_INFO "mpic: Setting up HT PICs workarounds for U3/U4\n");
  457. /* Allocate fixups array */
  458. mpic->fixups = kzalloc(128 * sizeof(*mpic->fixups), GFP_KERNEL);
  459. BUG_ON(mpic->fixups == NULL);
  460. /* Init spinlock */
  461. raw_spin_lock_init(&mpic->fixup_lock);
  462. /* Map U3 config space. We assume all IO-APICs are on the primary bus
  463. * so we only need to map 64kB.
  464. */
  465. cfgspace = ioremap(0xf2000000, 0x10000);
  466. BUG_ON(cfgspace == NULL);
  467. /* Now we scan all slots. We do a very quick scan, we read the header
  468. * type, vendor ID and device ID only, that's plenty enough
  469. */
  470. for (devfn = 0; devfn < 0x100; devfn++) {
  471. u8 __iomem *devbase = cfgspace + (devfn << 8);
  472. u8 hdr_type = readb(devbase + PCI_HEADER_TYPE);
  473. u32 l = readl(devbase + PCI_VENDOR_ID);
  474. u16 s;
  475. DBG("devfn %x, l: %x\n", devfn, l);
  476. /* If no device, skip */
  477. if (l == 0xffffffff || l == 0x00000000 ||
  478. l == 0x0000ffff || l == 0xffff0000)
  479. goto next;
  480. /* Check if is supports capability lists */
  481. s = readw(devbase + PCI_STATUS);
  482. if (!(s & PCI_STATUS_CAP_LIST))
  483. goto next;
  484. mpic_scan_ht_pic(mpic, devbase, devfn, l);
  485. mpic_scan_ht_msi(mpic, devbase, devfn);
  486. next:
  487. /* next device, if function 0 */
  488. if (PCI_FUNC(devfn) == 0 && (hdr_type & 0x80) == 0)
  489. devfn += 7;
  490. }
  491. }
  492. #else /* CONFIG_MPIC_U3_HT_IRQS */
  493. static inline int mpic_is_ht_interrupt(struct mpic *mpic, unsigned int source)
  494. {
  495. return 0;
  496. }
  497. static void __init mpic_scan_ht_pics(struct mpic *mpic)
  498. {
  499. }
  500. #endif /* CONFIG_MPIC_U3_HT_IRQS */
  501. /* Find an mpic associated with a given linux interrupt */
  502. static struct mpic *mpic_find(unsigned int irq)
  503. {
  504. if (irq < NUM_ISA_INTERRUPTS)
  505. return NULL;
  506. return irq_get_chip_data(irq);
  507. }
  508. /* Determine if the linux irq is an IPI */
  509. static unsigned int mpic_is_ipi(struct mpic *mpic, unsigned int irq)
  510. {
  511. unsigned int src = virq_to_hw(irq);
  512. return (src >= mpic->ipi_vecs[0] && src <= mpic->ipi_vecs[3]);
  513. }
  514. /* Determine if the linux irq is a timer */
  515. static unsigned int mpic_is_tm(struct mpic *mpic, unsigned int irq)
  516. {
  517. unsigned int src = virq_to_hw(irq);
  518. return (src >= mpic->timer_vecs[0] && src <= mpic->timer_vecs[7]);
  519. }
  520. /* Convert a cpu mask from logical to physical cpu numbers. */
  521. static inline u32 mpic_physmask(u32 cpumask)
  522. {
  523. int i;
  524. u32 mask = 0;
  525. for (i = 0; i < min(32, NR_CPUS); ++i, cpumask >>= 1)
  526. mask |= (cpumask & 1) << get_hard_smp_processor_id(i);
  527. return mask;
  528. }
  529. #ifdef CONFIG_SMP
  530. /* Get the mpic structure from the IPI number */
  531. static inline struct mpic * mpic_from_ipi(struct irq_data *d)
  532. {
  533. return irq_data_get_irq_chip_data(d);
  534. }
  535. #endif
  536. /* Get the mpic structure from the irq number */
  537. static inline struct mpic * mpic_from_irq(unsigned int irq)
  538. {
  539. return irq_get_chip_data(irq);
  540. }
  541. /* Get the mpic structure from the irq data */
  542. static inline struct mpic * mpic_from_irq_data(struct irq_data *d)
  543. {
  544. return irq_data_get_irq_chip_data(d);
  545. }
  546. /* Send an EOI */
  547. static inline void mpic_eoi(struct mpic *mpic)
  548. {
  549. mpic_cpu_write(MPIC_INFO(CPU_EOI), 0);
  550. (void)mpic_cpu_read(MPIC_INFO(CPU_WHOAMI));
  551. }
  552. /*
  553. * Linux descriptor level callbacks
  554. */
  555. void mpic_unmask_irq(struct irq_data *d)
  556. {
  557. unsigned int loops = 100000;
  558. struct mpic *mpic = mpic_from_irq_data(d);
  559. unsigned int src = irqd_to_hwirq(d);
  560. DBG("%p: %s: enable_irq: %d (src %d)\n", mpic, mpic->name, d->irq, src);
  561. mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI),
  562. mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) &
  563. ~MPIC_VECPRI_MASK);
  564. /* make sure mask gets to controller before we return to user */
  565. do {
  566. if (!loops--) {
  567. printk(KERN_ERR "%s: timeout on hwirq %u\n",
  568. __func__, src);
  569. break;
  570. }
  571. } while(mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) & MPIC_VECPRI_MASK);
  572. }
  573. void mpic_mask_irq(struct irq_data *d)
  574. {
  575. unsigned int loops = 100000;
  576. struct mpic *mpic = mpic_from_irq_data(d);
  577. unsigned int src = irqd_to_hwirq(d);
  578. DBG("%s: disable_irq: %d (src %d)\n", mpic->name, d->irq, src);
  579. mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI),
  580. mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) |
  581. MPIC_VECPRI_MASK);
  582. /* make sure mask gets to controller before we return to user */
  583. do {
  584. if (!loops--) {
  585. printk(KERN_ERR "%s: timeout on hwirq %u\n",
  586. __func__, src);
  587. break;
  588. }
  589. } while(!(mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) & MPIC_VECPRI_MASK));
  590. }
  591. void mpic_end_irq(struct irq_data *d)
  592. {
  593. struct mpic *mpic = mpic_from_irq_data(d);
  594. #ifdef DEBUG_IRQ
  595. DBG("%s: end_irq: %d\n", mpic->name, d->irq);
  596. #endif
  597. /* We always EOI on end_irq() even for edge interrupts since that
  598. * should only lower the priority, the MPIC should have properly
  599. * latched another edge interrupt coming in anyway
  600. */
  601. mpic_eoi(mpic);
  602. }
  603. #ifdef CONFIG_MPIC_U3_HT_IRQS
  604. static void mpic_unmask_ht_irq(struct irq_data *d)
  605. {
  606. struct mpic *mpic = mpic_from_irq_data(d);
  607. unsigned int src = irqd_to_hwirq(d);
  608. mpic_unmask_irq(d);
  609. if (irqd_is_level_type(d))
  610. mpic_ht_end_irq(mpic, src);
  611. }
  612. static unsigned int mpic_startup_ht_irq(struct irq_data *d)
  613. {
  614. struct mpic *mpic = mpic_from_irq_data(d);
  615. unsigned int src = irqd_to_hwirq(d);
  616. mpic_unmask_irq(d);
  617. mpic_startup_ht_interrupt(mpic, src, irqd_is_level_type(d));
  618. return 0;
  619. }
  620. static void mpic_shutdown_ht_irq(struct irq_data *d)
  621. {
  622. struct mpic *mpic = mpic_from_irq_data(d);
  623. unsigned int src = irqd_to_hwirq(d);
  624. mpic_shutdown_ht_interrupt(mpic, src);
  625. mpic_mask_irq(d);
  626. }
  627. static void mpic_end_ht_irq(struct irq_data *d)
  628. {
  629. struct mpic *mpic = mpic_from_irq_data(d);
  630. unsigned int src = irqd_to_hwirq(d);
  631. #ifdef DEBUG_IRQ
  632. DBG("%s: end_irq: %d\n", mpic->name, d->irq);
  633. #endif
  634. /* We always EOI on end_irq() even for edge interrupts since that
  635. * should only lower the priority, the MPIC should have properly
  636. * latched another edge interrupt coming in anyway
  637. */
  638. if (irqd_is_level_type(d))
  639. mpic_ht_end_irq(mpic, src);
  640. mpic_eoi(mpic);
  641. }
  642. #endif /* !CONFIG_MPIC_U3_HT_IRQS */
  643. #ifdef CONFIG_SMP
  644. static void mpic_unmask_ipi(struct irq_data *d)
  645. {
  646. struct mpic *mpic = mpic_from_ipi(d);
  647. unsigned int src = virq_to_hw(d->irq) - mpic->ipi_vecs[0];
  648. DBG("%s: enable_ipi: %d (ipi %d)\n", mpic->name, d->irq, src);
  649. mpic_ipi_write(src, mpic_ipi_read(src) & ~MPIC_VECPRI_MASK);
  650. }
  651. static void mpic_mask_ipi(struct irq_data *d)
  652. {
  653. /* NEVER disable an IPI... that's just plain wrong! */
  654. }
  655. static void mpic_end_ipi(struct irq_data *d)
  656. {
  657. struct mpic *mpic = mpic_from_ipi(d);
  658. /*
  659. * IPIs are marked IRQ_PER_CPU. This has the side effect of
  660. * preventing the IRQ_PENDING/IRQ_INPROGRESS logic from
  661. * applying to them. We EOI them late to avoid re-entering.
  662. * We mark IPI's with IRQF_DISABLED as they must run with
  663. * irqs disabled.
  664. */
  665. mpic_eoi(mpic);
  666. }
  667. #endif /* CONFIG_SMP */
  668. static void mpic_unmask_tm(struct irq_data *d)
  669. {
  670. struct mpic *mpic = mpic_from_irq_data(d);
  671. unsigned int src = virq_to_hw(d->irq) - mpic->timer_vecs[0];
  672. DBG("%s: enable_tm: %d (tm %d)\n", mpic->name, d->irq, src);
  673. mpic_tm_write(src, mpic_tm_read(src) & ~MPIC_VECPRI_MASK);
  674. mpic_tm_read(src);
  675. }
  676. static void mpic_mask_tm(struct irq_data *d)
  677. {
  678. struct mpic *mpic = mpic_from_irq_data(d);
  679. unsigned int src = virq_to_hw(d->irq) - mpic->timer_vecs[0];
  680. mpic_tm_write(src, mpic_tm_read(src) | MPIC_VECPRI_MASK);
  681. mpic_tm_read(src);
  682. }
  683. int mpic_set_affinity(struct irq_data *d, const struct cpumask *cpumask,
  684. bool force)
  685. {
  686. struct mpic *mpic = mpic_from_irq_data(d);
  687. unsigned int src = irqd_to_hwirq(d);
  688. if (mpic->flags & MPIC_SINGLE_DEST_CPU) {
  689. int cpuid = irq_choose_cpu(cpumask);
  690. mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION), 1 << cpuid);
  691. } else {
  692. u32 mask = cpumask_bits(cpumask)[0];
  693. mask &= cpumask_bits(cpu_online_mask)[0];
  694. mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION),
  695. mpic_physmask(mask));
  696. }
  697. return 0;
  698. }
  699. static unsigned int mpic_type_to_vecpri(struct mpic *mpic, unsigned int type)
  700. {
  701. /* Now convert sense value */
  702. switch(type & IRQ_TYPE_SENSE_MASK) {
  703. case IRQ_TYPE_EDGE_RISING:
  704. return MPIC_INFO(VECPRI_SENSE_EDGE) |
  705. MPIC_INFO(VECPRI_POLARITY_POSITIVE);
  706. case IRQ_TYPE_EDGE_FALLING:
  707. case IRQ_TYPE_EDGE_BOTH:
  708. return MPIC_INFO(VECPRI_SENSE_EDGE) |
  709. MPIC_INFO(VECPRI_POLARITY_NEGATIVE);
  710. case IRQ_TYPE_LEVEL_HIGH:
  711. return MPIC_INFO(VECPRI_SENSE_LEVEL) |
  712. MPIC_INFO(VECPRI_POLARITY_POSITIVE);
  713. case IRQ_TYPE_LEVEL_LOW:
  714. default:
  715. return MPIC_INFO(VECPRI_SENSE_LEVEL) |
  716. MPIC_INFO(VECPRI_POLARITY_NEGATIVE);
  717. }
  718. }
  719. int mpic_set_irq_type(struct irq_data *d, unsigned int flow_type)
  720. {
  721. struct mpic *mpic = mpic_from_irq_data(d);
  722. unsigned int src = irqd_to_hwirq(d);
  723. unsigned int vecpri, vold, vnew;
  724. DBG("mpic: set_irq_type(mpic:@%p,virq:%d,src:0x%x,type:0x%x)\n",
  725. mpic, d->irq, src, flow_type);
  726. if (src >= mpic->irq_count)
  727. return -EINVAL;
  728. if (flow_type == IRQ_TYPE_NONE)
  729. if (mpic->senses && src < mpic->senses_count)
  730. flow_type = mpic->senses[src];
  731. if (flow_type == IRQ_TYPE_NONE)
  732. flow_type = IRQ_TYPE_LEVEL_LOW;
  733. irqd_set_trigger_type(d, flow_type);
  734. if (mpic_is_ht_interrupt(mpic, src))
  735. vecpri = MPIC_VECPRI_POLARITY_POSITIVE |
  736. MPIC_VECPRI_SENSE_EDGE;
  737. else
  738. vecpri = mpic_type_to_vecpri(mpic, flow_type);
  739. vold = mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI));
  740. vnew = vold & ~(MPIC_INFO(VECPRI_POLARITY_MASK) |
  741. MPIC_INFO(VECPRI_SENSE_MASK));
  742. vnew |= vecpri;
  743. if (vold != vnew)
  744. mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI), vnew);
  745. return IRQ_SET_MASK_OK_NOCOPY;;
  746. }
  747. void mpic_set_vector(unsigned int virq, unsigned int vector)
  748. {
  749. struct mpic *mpic = mpic_from_irq(virq);
  750. unsigned int src = virq_to_hw(virq);
  751. unsigned int vecpri;
  752. DBG("mpic: set_vector(mpic:@%p,virq:%d,src:%d,vector:0x%x)\n",
  753. mpic, virq, src, vector);
  754. if (src >= mpic->irq_count)
  755. return;
  756. vecpri = mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI));
  757. vecpri = vecpri & ~MPIC_INFO(VECPRI_VECTOR_MASK);
  758. vecpri |= vector;
  759. mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI), vecpri);
  760. }
  761. void mpic_set_destination(unsigned int virq, unsigned int cpuid)
  762. {
  763. struct mpic *mpic = mpic_from_irq(virq);
  764. unsigned int src = virq_to_hw(virq);
  765. DBG("mpic: set_destination(mpic:@%p,virq:%d,src:%d,cpuid:0x%x)\n",
  766. mpic, virq, src, cpuid);
  767. if (src >= mpic->irq_count)
  768. return;
  769. mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION), 1 << cpuid);
  770. }
  771. static struct irq_chip mpic_irq_chip = {
  772. .irq_mask = mpic_mask_irq,
  773. .irq_unmask = mpic_unmask_irq,
  774. .irq_eoi = mpic_end_irq,
  775. .irq_set_type = mpic_set_irq_type,
  776. };
  777. #ifdef CONFIG_SMP
  778. static struct irq_chip mpic_ipi_chip = {
  779. .irq_mask = mpic_mask_ipi,
  780. .irq_unmask = mpic_unmask_ipi,
  781. .irq_eoi = mpic_end_ipi,
  782. };
  783. #endif /* CONFIG_SMP */
  784. static struct irq_chip mpic_tm_chip = {
  785. .irq_mask = mpic_mask_tm,
  786. .irq_unmask = mpic_unmask_tm,
  787. .irq_eoi = mpic_end_irq,
  788. };
  789. #ifdef CONFIG_MPIC_U3_HT_IRQS
  790. static struct irq_chip mpic_irq_ht_chip = {
  791. .irq_startup = mpic_startup_ht_irq,
  792. .irq_shutdown = mpic_shutdown_ht_irq,
  793. .irq_mask = mpic_mask_irq,
  794. .irq_unmask = mpic_unmask_ht_irq,
  795. .irq_eoi = mpic_end_ht_irq,
  796. .irq_set_type = mpic_set_irq_type,
  797. };
  798. #endif /* CONFIG_MPIC_U3_HT_IRQS */
  799. static int mpic_host_match(struct irq_host *h, struct device_node *node)
  800. {
  801. /* Exact match, unless mpic node is NULL */
  802. return h->of_node == NULL || h->of_node == node;
  803. }
  804. static int mpic_host_map(struct irq_host *h, unsigned int virq,
  805. irq_hw_number_t hw)
  806. {
  807. struct mpic *mpic = h->host_data;
  808. struct irq_chip *chip;
  809. DBG("mpic: map virq %d, hwirq 0x%lx\n", virq, hw);
  810. if (hw == mpic->spurious_vec)
  811. return -EINVAL;
  812. if (mpic->protected && test_bit(hw, mpic->protected))
  813. return -EINVAL;
  814. #ifdef CONFIG_SMP
  815. else if (hw >= mpic->ipi_vecs[0]) {
  816. WARN_ON(!(mpic->flags & MPIC_PRIMARY));
  817. DBG("mpic: mapping as IPI\n");
  818. irq_set_chip_data(virq, mpic);
  819. irq_set_chip_and_handler(virq, &mpic->hc_ipi,
  820. handle_percpu_irq);
  821. return 0;
  822. }
  823. #endif /* CONFIG_SMP */
  824. if (hw >= mpic->timer_vecs[0] && hw <= mpic->timer_vecs[7]) {
  825. WARN_ON(!(mpic->flags & MPIC_PRIMARY));
  826. DBG("mpic: mapping as timer\n");
  827. irq_set_chip_data(virq, mpic);
  828. irq_set_chip_and_handler(virq, &mpic->hc_tm,
  829. handle_fasteoi_irq);
  830. return 0;
  831. }
  832. if (hw >= mpic->irq_count)
  833. return -EINVAL;
  834. mpic_msi_reserve_hwirq(mpic, hw);
  835. /* Default chip */
  836. chip = &mpic->hc_irq;
  837. #ifdef CONFIG_MPIC_U3_HT_IRQS
  838. /* Check for HT interrupts, override vecpri */
  839. if (mpic_is_ht_interrupt(mpic, hw))
  840. chip = &mpic->hc_ht_irq;
  841. #endif /* CONFIG_MPIC_U3_HT_IRQS */
  842. DBG("mpic: mapping to irq chip @%p\n", chip);
  843. irq_set_chip_data(virq, mpic);
  844. irq_set_chip_and_handler(virq, chip, handle_fasteoi_irq);
  845. /* Set default irq type */
  846. irq_set_irq_type(virq, IRQ_TYPE_NONE);
  847. /* If the MPIC was reset, then all vectors have already been
  848. * initialized. Otherwise, a per source lazy initialization
  849. * is done here.
  850. */
  851. if (!mpic_is_ipi(mpic, hw) && (mpic->flags & MPIC_NO_RESET)) {
  852. mpic_set_vector(virq, hw);
  853. mpic_set_destination(virq, mpic_processor_id(mpic));
  854. mpic_irq_set_priority(virq, 8);
  855. }
  856. return 0;
  857. }
  858. static int mpic_host_xlate(struct irq_host *h, struct device_node *ct,
  859. const u32 *intspec, unsigned int intsize,
  860. irq_hw_number_t *out_hwirq, unsigned int *out_flags)
  861. {
  862. struct mpic *mpic = h->host_data;
  863. static unsigned char map_mpic_senses[4] = {
  864. IRQ_TYPE_EDGE_RISING,
  865. IRQ_TYPE_LEVEL_LOW,
  866. IRQ_TYPE_LEVEL_HIGH,
  867. IRQ_TYPE_EDGE_FALLING,
  868. };
  869. *out_hwirq = intspec[0];
  870. if (intsize >= 4 && (mpic->flags & MPIC_FSL)) {
  871. /*
  872. * Freescale MPIC with extended intspec:
  873. * First two cells are as usual. Third specifies
  874. * an "interrupt type". Fourth is type-specific data.
  875. *
  876. * See Documentation/devicetree/bindings/powerpc/fsl/mpic.txt
  877. */
  878. switch (intspec[2]) {
  879. case 0:
  880. case 1: /* no EISR/EIMR support for now, treat as shared IRQ */
  881. break;
  882. case 2:
  883. if (intspec[0] >= ARRAY_SIZE(mpic->ipi_vecs))
  884. return -EINVAL;
  885. *out_hwirq = mpic->ipi_vecs[intspec[0]];
  886. break;
  887. case 3:
  888. if (intspec[0] >= ARRAY_SIZE(mpic->timer_vecs))
  889. return -EINVAL;
  890. *out_hwirq = mpic->timer_vecs[intspec[0]];
  891. break;
  892. default:
  893. pr_debug("%s: unknown irq type %u\n",
  894. __func__, intspec[2]);
  895. return -EINVAL;
  896. }
  897. *out_flags = map_mpic_senses[intspec[1] & 3];
  898. } else if (intsize > 1) {
  899. u32 mask = 0x3;
  900. /* Apple invented a new race of encoding on machines with
  901. * an HT APIC. They encode, among others, the index within
  902. * the HT APIC. We don't care about it here since thankfully,
  903. * it appears that they have the APIC already properly
  904. * configured, and thus our current fixup code that reads the
  905. * APIC config works fine. However, we still need to mask out
  906. * bits in the specifier to make sure we only get bit 0 which
  907. * is the level/edge bit (the only sense bit exposed by Apple),
  908. * as their bit 1 means something else.
  909. */
  910. if (machine_is(powermac))
  911. mask = 0x1;
  912. *out_flags = map_mpic_senses[intspec[1] & mask];
  913. } else
  914. *out_flags = IRQ_TYPE_NONE;
  915. DBG("mpic: xlate (%d cells: 0x%08x 0x%08x) to line 0x%lx sense 0x%x\n",
  916. intsize, intspec[0], intspec[1], *out_hwirq, *out_flags);
  917. return 0;
  918. }
  919. static struct irq_host_ops mpic_host_ops = {
  920. .match = mpic_host_match,
  921. .map = mpic_host_map,
  922. .xlate = mpic_host_xlate,
  923. };
  924. static int mpic_reset_prohibited(struct device_node *node)
  925. {
  926. return node && of_get_property(node, "pic-no-reset", NULL);
  927. }
  928. /*
  929. * Exported functions
  930. */
  931. struct mpic * __init mpic_alloc(struct device_node *node,
  932. phys_addr_t phys_addr,
  933. unsigned int flags,
  934. unsigned int isu_size,
  935. unsigned int irq_count,
  936. const char *name)
  937. {
  938. struct mpic *mpic;
  939. u32 greg_feature;
  940. const char *vers;
  941. int i;
  942. int intvec_top;
  943. u64 paddr = phys_addr;
  944. mpic = kzalloc(sizeof(struct mpic), GFP_KERNEL);
  945. if (mpic == NULL)
  946. return NULL;
  947. mpic->name = name;
  948. mpic->hc_irq = mpic_irq_chip;
  949. mpic->hc_irq.name = name;
  950. if (flags & MPIC_PRIMARY)
  951. mpic->hc_irq.irq_set_affinity = mpic_set_affinity;
  952. #ifdef CONFIG_MPIC_U3_HT_IRQS
  953. mpic->hc_ht_irq = mpic_irq_ht_chip;
  954. mpic->hc_ht_irq.name = name;
  955. if (flags & MPIC_PRIMARY)
  956. mpic->hc_ht_irq.irq_set_affinity = mpic_set_affinity;
  957. #endif /* CONFIG_MPIC_U3_HT_IRQS */
  958. #ifdef CONFIG_SMP
  959. mpic->hc_ipi = mpic_ipi_chip;
  960. mpic->hc_ipi.name = name;
  961. #endif /* CONFIG_SMP */
  962. mpic->hc_tm = mpic_tm_chip;
  963. mpic->hc_tm.name = name;
  964. mpic->flags = flags;
  965. mpic->isu_size = isu_size;
  966. mpic->irq_count = irq_count;
  967. mpic->num_sources = 0; /* so far */
  968. if (flags & MPIC_LARGE_VECTORS)
  969. intvec_top = 2047;
  970. else
  971. intvec_top = 255;
  972. mpic->timer_vecs[0] = intvec_top - 12;
  973. mpic->timer_vecs[1] = intvec_top - 11;
  974. mpic->timer_vecs[2] = intvec_top - 10;
  975. mpic->timer_vecs[3] = intvec_top - 9;
  976. mpic->timer_vecs[4] = intvec_top - 8;
  977. mpic->timer_vecs[5] = intvec_top - 7;
  978. mpic->timer_vecs[6] = intvec_top - 6;
  979. mpic->timer_vecs[7] = intvec_top - 5;
  980. mpic->ipi_vecs[0] = intvec_top - 4;
  981. mpic->ipi_vecs[1] = intvec_top - 3;
  982. mpic->ipi_vecs[2] = intvec_top - 2;
  983. mpic->ipi_vecs[3] = intvec_top - 1;
  984. mpic->spurious_vec = intvec_top;
  985. /* Check for "big-endian" in device-tree */
  986. if (node && of_get_property(node, "big-endian", NULL) != NULL)
  987. mpic->flags |= MPIC_BIG_ENDIAN;
  988. if (node && of_device_is_compatible(node, "fsl,mpic"))
  989. mpic->flags |= MPIC_FSL;
  990. /* Look for protected sources */
  991. if (node) {
  992. int psize;
  993. unsigned int bits, mapsize;
  994. const u32 *psrc =
  995. of_get_property(node, "protected-sources", &psize);
  996. if (psrc) {
  997. psize /= 4;
  998. bits = intvec_top + 1;
  999. mapsize = BITS_TO_LONGS(bits) * sizeof(unsigned long);
  1000. mpic->protected = kzalloc(mapsize, GFP_KERNEL);
  1001. BUG_ON(mpic->protected == NULL);
  1002. for (i = 0; i < psize; i++) {
  1003. if (psrc[i] > intvec_top)
  1004. continue;
  1005. __set_bit(psrc[i], mpic->protected);
  1006. }
  1007. }
  1008. }
  1009. #ifdef CONFIG_MPIC_WEIRD
  1010. mpic->hw_set = mpic_infos[MPIC_GET_REGSET(flags)];
  1011. #endif
  1012. /* default register type */
  1013. mpic->reg_type = (flags & MPIC_BIG_ENDIAN) ?
  1014. mpic_access_mmio_be : mpic_access_mmio_le;
  1015. /* If no physical address is passed in, a device-node is mandatory */
  1016. BUG_ON(paddr == 0 && node == NULL);
  1017. /* If no physical address passed in, check if it's dcr based */
  1018. if (paddr == 0 && of_get_property(node, "dcr-reg", NULL) != NULL) {
  1019. #ifdef CONFIG_PPC_DCR
  1020. mpic->flags |= MPIC_USES_DCR;
  1021. mpic->reg_type = mpic_access_dcr;
  1022. #else
  1023. BUG();
  1024. #endif /* CONFIG_PPC_DCR */
  1025. }
  1026. /* If the MPIC is not DCR based, and no physical address was passed
  1027. * in, try to obtain one
  1028. */
  1029. if (paddr == 0 && !(mpic->flags & MPIC_USES_DCR)) {
  1030. const u32 *reg = of_get_property(node, "reg", NULL);
  1031. BUG_ON(reg == NULL);
  1032. paddr = of_translate_address(node, reg);
  1033. BUG_ON(paddr == OF_BAD_ADDR);
  1034. }
  1035. /* Map the global registers */
  1036. mpic_map(mpic, node, paddr, &mpic->gregs, MPIC_INFO(GREG_BASE), 0x1000);
  1037. mpic_map(mpic, node, paddr, &mpic->tmregs, MPIC_INFO(TIMER_BASE), 0x1000);
  1038. /* Reset */
  1039. /* When using a device-node, reset requests are only honored if the MPIC
  1040. * is allowed to reset.
  1041. */
  1042. if (mpic_reset_prohibited(node))
  1043. mpic->flags |= MPIC_NO_RESET;
  1044. if ((flags & MPIC_WANTS_RESET) && !(mpic->flags & MPIC_NO_RESET)) {
  1045. printk(KERN_DEBUG "mpic: Resetting\n");
  1046. mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
  1047. mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
  1048. | MPIC_GREG_GCONF_RESET);
  1049. while( mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
  1050. & MPIC_GREG_GCONF_RESET)
  1051. mb();
  1052. }
  1053. /* CoreInt */
  1054. if (flags & MPIC_ENABLE_COREINT)
  1055. mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
  1056. mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
  1057. | MPIC_GREG_GCONF_COREINT);
  1058. if (flags & MPIC_ENABLE_MCK)
  1059. mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
  1060. mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
  1061. | MPIC_GREG_GCONF_MCK);
  1062. /* Read feature register, calculate num CPUs and, for non-ISU
  1063. * MPICs, num sources as well. On ISU MPICs, sources are counted
  1064. * as ISUs are added
  1065. */
  1066. greg_feature = mpic_read(mpic->gregs, MPIC_INFO(GREG_FEATURE_0));
  1067. mpic->num_cpus = ((greg_feature & MPIC_GREG_FEATURE_LAST_CPU_MASK)
  1068. >> MPIC_GREG_FEATURE_LAST_CPU_SHIFT) + 1;
  1069. if (isu_size == 0) {
  1070. if (flags & MPIC_BROKEN_FRR_NIRQS)
  1071. mpic->num_sources = mpic->irq_count;
  1072. else
  1073. mpic->num_sources =
  1074. ((greg_feature & MPIC_GREG_FEATURE_LAST_SRC_MASK)
  1075. >> MPIC_GREG_FEATURE_LAST_SRC_SHIFT) + 1;
  1076. }
  1077. /* Map the per-CPU registers */
  1078. for (i = 0; i < mpic->num_cpus; i++) {
  1079. mpic_map(mpic, node, paddr, &mpic->cpuregs[i],
  1080. MPIC_INFO(CPU_BASE) + i * MPIC_INFO(CPU_STRIDE),
  1081. 0x1000);
  1082. }
  1083. /* Initialize main ISU if none provided */
  1084. if (mpic->isu_size == 0) {
  1085. mpic->isu_size = mpic->num_sources;
  1086. mpic_map(mpic, node, paddr, &mpic->isus[0],
  1087. MPIC_INFO(IRQ_BASE), MPIC_INFO(IRQ_STRIDE) * mpic->isu_size);
  1088. }
  1089. mpic->isu_shift = 1 + __ilog2(mpic->isu_size - 1);
  1090. mpic->isu_mask = (1 << mpic->isu_shift) - 1;
  1091. mpic->irqhost = irq_alloc_host(node, IRQ_HOST_MAP_LINEAR,
  1092. isu_size ? isu_size : mpic->num_sources,
  1093. &mpic_host_ops,
  1094. flags & MPIC_LARGE_VECTORS ? 2048 : 256);
  1095. if (mpic->irqhost == NULL)
  1096. return NULL;
  1097. mpic->irqhost->host_data = mpic;
  1098. /* Display version */
  1099. switch (greg_feature & MPIC_GREG_FEATURE_VERSION_MASK) {
  1100. case 1:
  1101. vers = "1.0";
  1102. break;
  1103. case 2:
  1104. vers = "1.2";
  1105. break;
  1106. case 3:
  1107. vers = "1.3";
  1108. break;
  1109. default:
  1110. vers = "<unknown>";
  1111. break;
  1112. }
  1113. printk(KERN_INFO "mpic: Setting up MPIC \"%s\" version %s at %llx,"
  1114. " max %d CPUs\n",
  1115. name, vers, (unsigned long long)paddr, mpic->num_cpus);
  1116. printk(KERN_INFO "mpic: ISU size: %d, shift: %d, mask: %x\n",
  1117. mpic->isu_size, mpic->isu_shift, mpic->isu_mask);
  1118. mpic->next = mpics;
  1119. mpics = mpic;
  1120. if (flags & MPIC_PRIMARY) {
  1121. mpic_primary = mpic;
  1122. irq_set_default_host(mpic->irqhost);
  1123. }
  1124. return mpic;
  1125. }
  1126. void __init mpic_assign_isu(struct mpic *mpic, unsigned int isu_num,
  1127. phys_addr_t paddr)
  1128. {
  1129. unsigned int isu_first = isu_num * mpic->isu_size;
  1130. BUG_ON(isu_num >= MPIC_MAX_ISU);
  1131. mpic_map(mpic, mpic->irqhost->of_node,
  1132. paddr, &mpic->isus[isu_num], 0,
  1133. MPIC_INFO(IRQ_STRIDE) * mpic->isu_size);
  1134. if ((isu_first + mpic->isu_size) > mpic->num_sources)
  1135. mpic->num_sources = isu_first + mpic->isu_size;
  1136. }
  1137. void __init mpic_set_default_senses(struct mpic *mpic, u8 *senses, int count)
  1138. {
  1139. mpic->senses = senses;
  1140. mpic->senses_count = count;
  1141. }
  1142. void __init mpic_init(struct mpic *mpic)
  1143. {
  1144. int i;
  1145. int cpu;
  1146. BUG_ON(mpic->num_sources == 0);
  1147. printk(KERN_INFO "mpic: Initializing for %d sources\n", mpic->num_sources);
  1148. /* Set current processor priority to max */
  1149. mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0xf);
  1150. /* Initialize timers to our reserved vectors and mask them for now */
  1151. for (i = 0; i < 4; i++) {
  1152. mpic_write(mpic->tmregs,
  1153. i * MPIC_INFO(TIMER_STRIDE) +
  1154. MPIC_INFO(TIMER_DESTINATION),
  1155. 1 << hard_smp_processor_id());
  1156. mpic_write(mpic->tmregs,
  1157. i * MPIC_INFO(TIMER_STRIDE) +
  1158. MPIC_INFO(TIMER_VECTOR_PRI),
  1159. MPIC_VECPRI_MASK |
  1160. (9 << MPIC_VECPRI_PRIORITY_SHIFT) |
  1161. (mpic->timer_vecs[0] + i));
  1162. }
  1163. /* Initialize IPIs to our reserved vectors and mark them disabled for now */
  1164. mpic_test_broken_ipi(mpic);
  1165. for (i = 0; i < 4; i++) {
  1166. mpic_ipi_write(i,
  1167. MPIC_VECPRI_MASK |
  1168. (10 << MPIC_VECPRI_PRIORITY_SHIFT) |
  1169. (mpic->ipi_vecs[0] + i));
  1170. }
  1171. /* Initialize interrupt sources */
  1172. if (mpic->irq_count == 0)
  1173. mpic->irq_count = mpic->num_sources;
  1174. /* Do the HT PIC fixups on U3 broken mpic */
  1175. DBG("MPIC flags: %x\n", mpic->flags);
  1176. if ((mpic->flags & MPIC_U3_HT_IRQS) && (mpic->flags & MPIC_PRIMARY)) {
  1177. mpic_scan_ht_pics(mpic);
  1178. mpic_u3msi_init(mpic);
  1179. }
  1180. mpic_pasemi_msi_init(mpic);
  1181. cpu = mpic_processor_id(mpic);
  1182. if (!(mpic->flags & MPIC_NO_RESET)) {
  1183. for (i = 0; i < mpic->num_sources; i++) {
  1184. /* start with vector = source number, and masked */
  1185. u32 vecpri = MPIC_VECPRI_MASK | i |
  1186. (8 << MPIC_VECPRI_PRIORITY_SHIFT);
  1187. /* check if protected */
  1188. if (mpic->protected && test_bit(i, mpic->protected))
  1189. continue;
  1190. /* init hw */
  1191. mpic_irq_write(i, MPIC_INFO(IRQ_VECTOR_PRI), vecpri);
  1192. mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION), 1 << cpu);
  1193. }
  1194. }
  1195. /* Init spurious vector */
  1196. mpic_write(mpic->gregs, MPIC_INFO(GREG_SPURIOUS), mpic->spurious_vec);
  1197. /* Disable 8259 passthrough, if supported */
  1198. if (!(mpic->flags & MPIC_NO_PTHROU_DIS))
  1199. mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
  1200. mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
  1201. | MPIC_GREG_GCONF_8259_PTHROU_DIS);
  1202. if (mpic->flags & MPIC_NO_BIAS)
  1203. mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
  1204. mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
  1205. | MPIC_GREG_GCONF_NO_BIAS);
  1206. /* Set current processor priority to 0 */
  1207. mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0);
  1208. #ifdef CONFIG_PM
  1209. /* allocate memory to save mpic state */
  1210. mpic->save_data = kmalloc(mpic->num_sources * sizeof(*mpic->save_data),
  1211. GFP_KERNEL);
  1212. BUG_ON(mpic->save_data == NULL);
  1213. #endif
  1214. }
  1215. void __init mpic_set_clk_ratio(struct mpic *mpic, u32 clock_ratio)
  1216. {
  1217. u32 v;
  1218. v = mpic_read(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1);
  1219. v &= ~MPIC_GREG_GLOBAL_CONF_1_CLK_RATIO_MASK;
  1220. v |= MPIC_GREG_GLOBAL_CONF_1_CLK_RATIO(clock_ratio);
  1221. mpic_write(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1, v);
  1222. }
  1223. void __init mpic_set_serial_int(struct mpic *mpic, int enable)
  1224. {
  1225. unsigned long flags;
  1226. u32 v;
  1227. raw_spin_lock_irqsave(&mpic_lock, flags);
  1228. v = mpic_read(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1);
  1229. if (enable)
  1230. v |= MPIC_GREG_GLOBAL_CONF_1_SIE;
  1231. else
  1232. v &= ~MPIC_GREG_GLOBAL_CONF_1_SIE;
  1233. mpic_write(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1, v);
  1234. raw_spin_unlock_irqrestore(&mpic_lock, flags);
  1235. }
  1236. void mpic_irq_set_priority(unsigned int irq, unsigned int pri)
  1237. {
  1238. struct mpic *mpic = mpic_find(irq);
  1239. unsigned int src = virq_to_hw(irq);
  1240. unsigned long flags;
  1241. u32 reg;
  1242. if (!mpic)
  1243. return;
  1244. raw_spin_lock_irqsave(&mpic_lock, flags);
  1245. if (mpic_is_ipi(mpic, irq)) {
  1246. reg = mpic_ipi_read(src - mpic->ipi_vecs[0]) &
  1247. ~MPIC_VECPRI_PRIORITY_MASK;
  1248. mpic_ipi_write(src - mpic->ipi_vecs[0],
  1249. reg | (pri << MPIC_VECPRI_PRIORITY_SHIFT));
  1250. } else if (mpic_is_tm(mpic, irq)) {
  1251. reg = mpic_tm_read(src - mpic->timer_vecs[0]) &
  1252. ~MPIC_VECPRI_PRIORITY_MASK;
  1253. mpic_tm_write(src - mpic->timer_vecs[0],
  1254. reg | (pri << MPIC_VECPRI_PRIORITY_SHIFT));
  1255. } else {
  1256. reg = mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI))
  1257. & ~MPIC_VECPRI_PRIORITY_MASK;
  1258. mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI),
  1259. reg | (pri << MPIC_VECPRI_PRIORITY_SHIFT));
  1260. }
  1261. raw_spin_unlock_irqrestore(&mpic_lock, flags);
  1262. }
  1263. void mpic_setup_this_cpu(void)
  1264. {
  1265. #ifdef CONFIG_SMP
  1266. struct mpic *mpic = mpic_primary;
  1267. unsigned long flags;
  1268. u32 msk = 1 << hard_smp_processor_id();
  1269. unsigned int i;
  1270. BUG_ON(mpic == NULL);
  1271. DBG("%s: setup_this_cpu(%d)\n", mpic->name, hard_smp_processor_id());
  1272. raw_spin_lock_irqsave(&mpic_lock, flags);
  1273. /* let the mpic know we want intrs. default affinity is 0xffffffff
  1274. * until changed via /proc. That's how it's done on x86. If we want
  1275. * it differently, then we should make sure we also change the default
  1276. * values of irq_desc[].affinity in irq.c.
  1277. */
  1278. if (distribute_irqs) {
  1279. for (i = 0; i < mpic->num_sources ; i++)
  1280. mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION),
  1281. mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION)) | msk);
  1282. }
  1283. /* Set current processor priority to 0 */
  1284. mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0);
  1285. raw_spin_unlock_irqrestore(&mpic_lock, flags);
  1286. #endif /* CONFIG_SMP */
  1287. }
  1288. int mpic_cpu_get_priority(void)
  1289. {
  1290. struct mpic *mpic = mpic_primary;
  1291. return mpic_cpu_read(MPIC_INFO(CPU_CURRENT_TASK_PRI));
  1292. }
  1293. void mpic_cpu_set_priority(int prio)
  1294. {
  1295. struct mpic *mpic = mpic_primary;
  1296. prio &= MPIC_CPU_TASKPRI_MASK;
  1297. mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), prio);
  1298. }
  1299. void mpic_teardown_this_cpu(int secondary)
  1300. {
  1301. struct mpic *mpic = mpic_primary;
  1302. unsigned long flags;
  1303. u32 msk = 1 << hard_smp_processor_id();
  1304. unsigned int i;
  1305. BUG_ON(mpic == NULL);
  1306. DBG("%s: teardown_this_cpu(%d)\n", mpic->name, hard_smp_processor_id());
  1307. raw_spin_lock_irqsave(&mpic_lock, flags);
  1308. /* let the mpic know we don't want intrs. */
  1309. for (i = 0; i < mpic->num_sources ; i++)
  1310. mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION),
  1311. mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION)) & ~msk);
  1312. /* Set current processor priority to max */
  1313. mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0xf);
  1314. /* We need to EOI the IPI since not all platforms reset the MPIC
  1315. * on boot and new interrupts wouldn't get delivered otherwise.
  1316. */
  1317. mpic_eoi(mpic);
  1318. raw_spin_unlock_irqrestore(&mpic_lock, flags);
  1319. }
  1320. static unsigned int _mpic_get_one_irq(struct mpic *mpic, int reg)
  1321. {
  1322. u32 src;
  1323. src = mpic_cpu_read(reg) & MPIC_INFO(VECPRI_VECTOR_MASK);
  1324. #ifdef DEBUG_LOW
  1325. DBG("%s: get_one_irq(reg 0x%x): %d\n", mpic->name, reg, src);
  1326. #endif
  1327. if (unlikely(src == mpic->spurious_vec)) {
  1328. if (mpic->flags & MPIC_SPV_EOI)
  1329. mpic_eoi(mpic);
  1330. return NO_IRQ;
  1331. }
  1332. if (unlikely(mpic->protected && test_bit(src, mpic->protected))) {
  1333. printk_ratelimited(KERN_WARNING "%s: Got protected source %d !\n",
  1334. mpic->name, (int)src);
  1335. mpic_eoi(mpic);
  1336. return NO_IRQ;
  1337. }
  1338. return irq_linear_revmap(mpic->irqhost, src);
  1339. }
  1340. unsigned int mpic_get_one_irq(struct mpic *mpic)
  1341. {
  1342. return _mpic_get_one_irq(mpic, MPIC_INFO(CPU_INTACK));
  1343. }
  1344. unsigned int mpic_get_irq(void)
  1345. {
  1346. struct mpic *mpic = mpic_primary;
  1347. BUG_ON(mpic == NULL);
  1348. return mpic_get_one_irq(mpic);
  1349. }
  1350. unsigned int mpic_get_coreint_irq(void)
  1351. {
  1352. #ifdef CONFIG_BOOKE
  1353. struct mpic *mpic = mpic_primary;
  1354. u32 src;
  1355. BUG_ON(mpic == NULL);
  1356. src = mfspr(SPRN_EPR);
  1357. if (unlikely(src == mpic->spurious_vec)) {
  1358. if (mpic->flags & MPIC_SPV_EOI)
  1359. mpic_eoi(mpic);
  1360. return NO_IRQ;
  1361. }
  1362. if (unlikely(mpic->protected && test_bit(src, mpic->protected))) {
  1363. printk_ratelimited(KERN_WARNING "%s: Got protected source %d !\n",
  1364. mpic->name, (int)src);
  1365. return NO_IRQ;
  1366. }
  1367. return irq_linear_revmap(mpic->irqhost, src);
  1368. #else
  1369. return NO_IRQ;
  1370. #endif
  1371. }
  1372. unsigned int mpic_get_mcirq(void)
  1373. {
  1374. struct mpic *mpic = mpic_primary;
  1375. BUG_ON(mpic == NULL);
  1376. return _mpic_get_one_irq(mpic, MPIC_INFO(CPU_MCACK));
  1377. }
  1378. #ifdef CONFIG_SMP
  1379. void mpic_request_ipis(void)
  1380. {
  1381. struct mpic *mpic = mpic_primary;
  1382. int i;
  1383. BUG_ON(mpic == NULL);
  1384. printk(KERN_INFO "mpic: requesting IPIs...\n");
  1385. for (i = 0; i < 4; i++) {
  1386. unsigned int vipi = irq_create_mapping(mpic->irqhost,
  1387. mpic->ipi_vecs[0] + i);
  1388. if (vipi == NO_IRQ) {
  1389. printk(KERN_ERR "Failed to map %s\n", smp_ipi_name[i]);
  1390. continue;
  1391. }
  1392. smp_request_message_ipi(vipi, i);
  1393. }
  1394. }
  1395. void smp_mpic_message_pass(int cpu, int msg)
  1396. {
  1397. struct mpic *mpic = mpic_primary;
  1398. u32 physmask;
  1399. BUG_ON(mpic == NULL);
  1400. /* make sure we're sending something that translates to an IPI */
  1401. if ((unsigned int)msg > 3) {
  1402. printk("SMP %d: smp_message_pass: unknown msg %d\n",
  1403. smp_processor_id(), msg);
  1404. return;
  1405. }
  1406. #ifdef DEBUG_IPI
  1407. DBG("%s: send_ipi(ipi_no: %d)\n", mpic->name, msg);
  1408. #endif
  1409. physmask = 1 << get_hard_smp_processor_id(cpu);
  1410. mpic_cpu_write(MPIC_INFO(CPU_IPI_DISPATCH_0) +
  1411. msg * MPIC_INFO(CPU_IPI_DISPATCH_STRIDE), physmask);
  1412. }
  1413. int __init smp_mpic_probe(void)
  1414. {
  1415. int nr_cpus;
  1416. DBG("smp_mpic_probe()...\n");
  1417. nr_cpus = cpumask_weight(cpu_possible_mask);
  1418. DBG("nr_cpus: %d\n", nr_cpus);
  1419. if (nr_cpus > 1)
  1420. mpic_request_ipis();
  1421. return nr_cpus;
  1422. }
  1423. void __devinit smp_mpic_setup_cpu(int cpu)
  1424. {
  1425. mpic_setup_this_cpu();
  1426. }
  1427. void mpic_reset_core(int cpu)
  1428. {
  1429. struct mpic *mpic = mpic_primary;
  1430. u32 pir;
  1431. int cpuid = get_hard_smp_processor_id(cpu);
  1432. /* Set target bit for core reset */
  1433. pir = mpic_read(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT));
  1434. pir |= (1 << cpuid);
  1435. mpic_write(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT), pir);
  1436. mpic_read(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT));
  1437. /* Restore target bit after reset complete */
  1438. pir &= ~(1 << cpuid);
  1439. mpic_write(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT), pir);
  1440. mpic_read(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT));
  1441. }
  1442. #endif /* CONFIG_SMP */
  1443. #ifdef CONFIG_PM
  1444. static void mpic_suspend_one(struct mpic *mpic)
  1445. {
  1446. int i;
  1447. for (i = 0; i < mpic->num_sources; i++) {
  1448. mpic->save_data[i].vecprio =
  1449. mpic_irq_read(i, MPIC_INFO(IRQ_VECTOR_PRI));
  1450. mpic->save_data[i].dest =
  1451. mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION));
  1452. }
  1453. }
  1454. static int mpic_suspend(void)
  1455. {
  1456. struct mpic *mpic = mpics;
  1457. while (mpic) {
  1458. mpic_suspend_one(mpic);
  1459. mpic = mpic->next;
  1460. }
  1461. return 0;
  1462. }
  1463. static void mpic_resume_one(struct mpic *mpic)
  1464. {
  1465. int i;
  1466. for (i = 0; i < mpic->num_sources; i++) {
  1467. mpic_irq_write(i, MPIC_INFO(IRQ_VECTOR_PRI),
  1468. mpic->save_data[i].vecprio);
  1469. mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION),
  1470. mpic->save_data[i].dest);
  1471. #ifdef CONFIG_MPIC_U3_HT_IRQS
  1472. if (mpic->fixups) {
  1473. struct mpic_irq_fixup *fixup = &mpic->fixups[i];
  1474. if (fixup->base) {
  1475. /* we use the lowest bit in an inverted meaning */
  1476. if ((mpic->save_data[i].fixup_data & 1) == 0)
  1477. continue;
  1478. /* Enable and configure */
  1479. writeb(0x10 + 2 * fixup->index, fixup->base + 2);
  1480. writel(mpic->save_data[i].fixup_data & ~1,
  1481. fixup->base + 4);
  1482. }
  1483. }
  1484. #endif
  1485. } /* end for loop */
  1486. }
  1487. static void mpic_resume(void)
  1488. {
  1489. struct mpic *mpic = mpics;
  1490. while (mpic) {
  1491. mpic_resume_one(mpic);
  1492. mpic = mpic->next;
  1493. }
  1494. }
  1495. static struct syscore_ops mpic_syscore_ops = {
  1496. .resume = mpic_resume,
  1497. .suspend = mpic_suspend,
  1498. };
  1499. static int mpic_init_sys(void)
  1500. {
  1501. register_syscore_ops(&mpic_syscore_ops);
  1502. return 0;
  1503. }
  1504. device_initcall(mpic_init_sys);
  1505. #endif