mpic.c 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911
  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_SECONDARY))
  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 mpic_reg_bank *rb,
  269. unsigned int offset, unsigned int size)
  270. {
  271. phys_addr_t phys_addr = dcr_resource_start(mpic->node, 0);
  272. rb->dhost = dcr_map(mpic->node, phys_addr + offset, size);
  273. BUG_ON(!DCR_MAP_OK(rb->dhost));
  274. }
  275. static inline void mpic_map(struct mpic *mpic,
  276. phys_addr_t phys_addr, struct mpic_reg_bank *rb,
  277. unsigned int offset, unsigned int size)
  278. {
  279. if (mpic->flags & MPIC_USES_DCR)
  280. _mpic_map_dcr(mpic, rb, offset, size);
  281. else
  282. _mpic_map_mmio(mpic, phys_addr, rb, offset, size);
  283. }
  284. #else /* CONFIG_PPC_DCR */
  285. #define mpic_map(m,p,b,o,s) _mpic_map_mmio(m,p,b,o,s)
  286. #endif /* !CONFIG_PPC_DCR */
  287. /* Check if we have one of those nice broken MPICs with a flipped endian on
  288. * reads from IPI registers
  289. */
  290. static void __init mpic_test_broken_ipi(struct mpic *mpic)
  291. {
  292. u32 r;
  293. mpic_write(mpic->gregs, MPIC_INFO(GREG_IPI_VECTOR_PRI_0), MPIC_VECPRI_MASK);
  294. r = mpic_read(mpic->gregs, MPIC_INFO(GREG_IPI_VECTOR_PRI_0));
  295. if (r == le32_to_cpu(MPIC_VECPRI_MASK)) {
  296. printk(KERN_INFO "mpic: Detected reversed IPI registers\n");
  297. mpic->flags |= MPIC_BROKEN_IPI;
  298. }
  299. }
  300. #ifdef CONFIG_MPIC_U3_HT_IRQS
  301. /* Test if an interrupt is sourced from HyperTransport (used on broken U3s)
  302. * to force the edge setting on the MPIC and do the ack workaround.
  303. */
  304. static inline int mpic_is_ht_interrupt(struct mpic *mpic, unsigned int source)
  305. {
  306. if (source >= 128 || !mpic->fixups)
  307. return 0;
  308. return mpic->fixups[source].base != NULL;
  309. }
  310. static inline void mpic_ht_end_irq(struct mpic *mpic, unsigned int source)
  311. {
  312. struct mpic_irq_fixup *fixup = &mpic->fixups[source];
  313. if (fixup->applebase) {
  314. unsigned int soff = (fixup->index >> 3) & ~3;
  315. unsigned int mask = 1U << (fixup->index & 0x1f);
  316. writel(mask, fixup->applebase + soff);
  317. } else {
  318. raw_spin_lock(&mpic->fixup_lock);
  319. writeb(0x11 + 2 * fixup->index, fixup->base + 2);
  320. writel(fixup->data, fixup->base + 4);
  321. raw_spin_unlock(&mpic->fixup_lock);
  322. }
  323. }
  324. static void mpic_startup_ht_interrupt(struct mpic *mpic, unsigned int source,
  325. bool level)
  326. {
  327. struct mpic_irq_fixup *fixup = &mpic->fixups[source];
  328. unsigned long flags;
  329. u32 tmp;
  330. if (fixup->base == NULL)
  331. return;
  332. DBG("startup_ht_interrupt(0x%x) index: %d\n",
  333. source, fixup->index);
  334. raw_spin_lock_irqsave(&mpic->fixup_lock, flags);
  335. /* Enable and configure */
  336. writeb(0x10 + 2 * fixup->index, fixup->base + 2);
  337. tmp = readl(fixup->base + 4);
  338. tmp &= ~(0x23U);
  339. if (level)
  340. tmp |= 0x22;
  341. writel(tmp, fixup->base + 4);
  342. raw_spin_unlock_irqrestore(&mpic->fixup_lock, flags);
  343. #ifdef CONFIG_PM
  344. /* use the lowest bit inverted to the actual HW,
  345. * set if this fixup was enabled, clear otherwise */
  346. mpic->save_data[source].fixup_data = tmp | 1;
  347. #endif
  348. }
  349. static void mpic_shutdown_ht_interrupt(struct mpic *mpic, unsigned int source)
  350. {
  351. struct mpic_irq_fixup *fixup = &mpic->fixups[source];
  352. unsigned long flags;
  353. u32 tmp;
  354. if (fixup->base == NULL)
  355. return;
  356. DBG("shutdown_ht_interrupt(0x%x)\n", source);
  357. /* Disable */
  358. raw_spin_lock_irqsave(&mpic->fixup_lock, flags);
  359. writeb(0x10 + 2 * fixup->index, fixup->base + 2);
  360. tmp = readl(fixup->base + 4);
  361. tmp |= 1;
  362. writel(tmp, fixup->base + 4);
  363. raw_spin_unlock_irqrestore(&mpic->fixup_lock, flags);
  364. #ifdef CONFIG_PM
  365. /* use the lowest bit inverted to the actual HW,
  366. * set if this fixup was enabled, clear otherwise */
  367. mpic->save_data[source].fixup_data = tmp & ~1;
  368. #endif
  369. }
  370. #ifdef CONFIG_PCI_MSI
  371. static void __init mpic_scan_ht_msi(struct mpic *mpic, u8 __iomem *devbase,
  372. unsigned int devfn)
  373. {
  374. u8 __iomem *base;
  375. u8 pos, flags;
  376. u64 addr = 0;
  377. for (pos = readb(devbase + PCI_CAPABILITY_LIST); pos != 0;
  378. pos = readb(devbase + pos + PCI_CAP_LIST_NEXT)) {
  379. u8 id = readb(devbase + pos + PCI_CAP_LIST_ID);
  380. if (id == PCI_CAP_ID_HT) {
  381. id = readb(devbase + pos + 3);
  382. if ((id & HT_5BIT_CAP_MASK) == HT_CAPTYPE_MSI_MAPPING)
  383. break;
  384. }
  385. }
  386. if (pos == 0)
  387. return;
  388. base = devbase + pos;
  389. flags = readb(base + HT_MSI_FLAGS);
  390. if (!(flags & HT_MSI_FLAGS_FIXED)) {
  391. addr = readl(base + HT_MSI_ADDR_LO) & HT_MSI_ADDR_LO_MASK;
  392. addr = addr | ((u64)readl(base + HT_MSI_ADDR_HI) << 32);
  393. }
  394. printk(KERN_DEBUG "mpic: - HT:%02x.%x %s MSI mapping found @ 0x%llx\n",
  395. PCI_SLOT(devfn), PCI_FUNC(devfn),
  396. flags & HT_MSI_FLAGS_ENABLE ? "enabled" : "disabled", addr);
  397. if (!(flags & HT_MSI_FLAGS_ENABLE))
  398. writeb(flags | HT_MSI_FLAGS_ENABLE, base + HT_MSI_FLAGS);
  399. }
  400. #else
  401. static void __init mpic_scan_ht_msi(struct mpic *mpic, u8 __iomem *devbase,
  402. unsigned int devfn)
  403. {
  404. return;
  405. }
  406. #endif
  407. static void __init mpic_scan_ht_pic(struct mpic *mpic, u8 __iomem *devbase,
  408. unsigned int devfn, u32 vdid)
  409. {
  410. int i, irq, n;
  411. u8 __iomem *base;
  412. u32 tmp;
  413. u8 pos;
  414. for (pos = readb(devbase + PCI_CAPABILITY_LIST); pos != 0;
  415. pos = readb(devbase + pos + PCI_CAP_LIST_NEXT)) {
  416. u8 id = readb(devbase + pos + PCI_CAP_LIST_ID);
  417. if (id == PCI_CAP_ID_HT) {
  418. id = readb(devbase + pos + 3);
  419. if ((id & HT_5BIT_CAP_MASK) == HT_CAPTYPE_IRQ)
  420. break;
  421. }
  422. }
  423. if (pos == 0)
  424. return;
  425. base = devbase + pos;
  426. writeb(0x01, base + 2);
  427. n = (readl(base + 4) >> 16) & 0xff;
  428. printk(KERN_INFO "mpic: - HT:%02x.%x [0x%02x] vendor %04x device %04x"
  429. " has %d irqs\n",
  430. devfn >> 3, devfn & 0x7, pos, vdid & 0xffff, vdid >> 16, n + 1);
  431. for (i = 0; i <= n; i++) {
  432. writeb(0x10 + 2 * i, base + 2);
  433. tmp = readl(base + 4);
  434. irq = (tmp >> 16) & 0xff;
  435. DBG("HT PIC index 0x%x, irq 0x%x, tmp: %08x\n", i, irq, tmp);
  436. /* mask it , will be unmasked later */
  437. tmp |= 0x1;
  438. writel(tmp, base + 4);
  439. mpic->fixups[irq].index = i;
  440. mpic->fixups[irq].base = base;
  441. /* Apple HT PIC has a non-standard way of doing EOIs */
  442. if ((vdid & 0xffff) == 0x106b)
  443. mpic->fixups[irq].applebase = devbase + 0x60;
  444. else
  445. mpic->fixups[irq].applebase = NULL;
  446. writeb(0x11 + 2 * i, base + 2);
  447. mpic->fixups[irq].data = readl(base + 4) | 0x80000000;
  448. }
  449. }
  450. static void __init mpic_scan_ht_pics(struct mpic *mpic)
  451. {
  452. unsigned int devfn;
  453. u8 __iomem *cfgspace;
  454. printk(KERN_INFO "mpic: Setting up HT PICs workarounds for U3/U4\n");
  455. /* Allocate fixups array */
  456. mpic->fixups = kzalloc(128 * sizeof(*mpic->fixups), GFP_KERNEL);
  457. BUG_ON(mpic->fixups == NULL);
  458. /* Init spinlock */
  459. raw_spin_lock_init(&mpic->fixup_lock);
  460. /* Map U3 config space. We assume all IO-APICs are on the primary bus
  461. * so we only need to map 64kB.
  462. */
  463. cfgspace = ioremap(0xf2000000, 0x10000);
  464. BUG_ON(cfgspace == NULL);
  465. /* Now we scan all slots. We do a very quick scan, we read the header
  466. * type, vendor ID and device ID only, that's plenty enough
  467. */
  468. for (devfn = 0; devfn < 0x100; devfn++) {
  469. u8 __iomem *devbase = cfgspace + (devfn << 8);
  470. u8 hdr_type = readb(devbase + PCI_HEADER_TYPE);
  471. u32 l = readl(devbase + PCI_VENDOR_ID);
  472. u16 s;
  473. DBG("devfn %x, l: %x\n", devfn, l);
  474. /* If no device, skip */
  475. if (l == 0xffffffff || l == 0x00000000 ||
  476. l == 0x0000ffff || l == 0xffff0000)
  477. goto next;
  478. /* Check if is supports capability lists */
  479. s = readw(devbase + PCI_STATUS);
  480. if (!(s & PCI_STATUS_CAP_LIST))
  481. goto next;
  482. mpic_scan_ht_pic(mpic, devbase, devfn, l);
  483. mpic_scan_ht_msi(mpic, devbase, devfn);
  484. next:
  485. /* next device, if function 0 */
  486. if (PCI_FUNC(devfn) == 0 && (hdr_type & 0x80) == 0)
  487. devfn += 7;
  488. }
  489. }
  490. #else /* CONFIG_MPIC_U3_HT_IRQS */
  491. static inline int mpic_is_ht_interrupt(struct mpic *mpic, unsigned int source)
  492. {
  493. return 0;
  494. }
  495. static void __init mpic_scan_ht_pics(struct mpic *mpic)
  496. {
  497. }
  498. #endif /* CONFIG_MPIC_U3_HT_IRQS */
  499. /* Find an mpic associated with a given linux interrupt */
  500. static struct mpic *mpic_find(unsigned int irq)
  501. {
  502. if (irq < NUM_ISA_INTERRUPTS)
  503. return NULL;
  504. return irq_get_chip_data(irq);
  505. }
  506. /* Determine if the linux irq is an IPI */
  507. static unsigned int mpic_is_ipi(struct mpic *mpic, unsigned int src)
  508. {
  509. return (src >= mpic->ipi_vecs[0] && src <= mpic->ipi_vecs[3]);
  510. }
  511. /* Determine if the linux irq is a timer */
  512. static unsigned int mpic_is_tm(struct mpic *mpic, unsigned int src)
  513. {
  514. return (src >= mpic->timer_vecs[0] && src <= mpic->timer_vecs[7]);
  515. }
  516. /* Convert a cpu mask from logical to physical cpu numbers. */
  517. static inline u32 mpic_physmask(u32 cpumask)
  518. {
  519. int i;
  520. u32 mask = 0;
  521. for (i = 0; i < min(32, NR_CPUS); ++i, cpumask >>= 1)
  522. mask |= (cpumask & 1) << get_hard_smp_processor_id(i);
  523. return mask;
  524. }
  525. #ifdef CONFIG_SMP
  526. /* Get the mpic structure from the IPI number */
  527. static inline struct mpic * mpic_from_ipi(struct irq_data *d)
  528. {
  529. return irq_data_get_irq_chip_data(d);
  530. }
  531. #endif
  532. /* Get the mpic structure from the irq number */
  533. static inline struct mpic * mpic_from_irq(unsigned int irq)
  534. {
  535. return irq_get_chip_data(irq);
  536. }
  537. /* Get the mpic structure from the irq data */
  538. static inline struct mpic * mpic_from_irq_data(struct irq_data *d)
  539. {
  540. return irq_data_get_irq_chip_data(d);
  541. }
  542. /* Send an EOI */
  543. static inline void mpic_eoi(struct mpic *mpic)
  544. {
  545. mpic_cpu_write(MPIC_INFO(CPU_EOI), 0);
  546. (void)mpic_cpu_read(MPIC_INFO(CPU_WHOAMI));
  547. }
  548. /*
  549. * Linux descriptor level callbacks
  550. */
  551. void mpic_unmask_irq(struct irq_data *d)
  552. {
  553. unsigned int loops = 100000;
  554. struct mpic *mpic = mpic_from_irq_data(d);
  555. unsigned int src = irqd_to_hwirq(d);
  556. DBG("%p: %s: enable_irq: %d (src %d)\n", mpic, mpic->name, d->irq, src);
  557. mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI),
  558. mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) &
  559. ~MPIC_VECPRI_MASK);
  560. /* make sure mask gets to controller before we return to user */
  561. do {
  562. if (!loops--) {
  563. printk(KERN_ERR "%s: timeout on hwirq %u\n",
  564. __func__, src);
  565. break;
  566. }
  567. } while(mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) & MPIC_VECPRI_MASK);
  568. }
  569. void mpic_mask_irq(struct irq_data *d)
  570. {
  571. unsigned int loops = 100000;
  572. struct mpic *mpic = mpic_from_irq_data(d);
  573. unsigned int src = irqd_to_hwirq(d);
  574. DBG("%s: disable_irq: %d (src %d)\n", mpic->name, d->irq, src);
  575. mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI),
  576. mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) |
  577. MPIC_VECPRI_MASK);
  578. /* make sure mask gets to controller before we return to user */
  579. do {
  580. if (!loops--) {
  581. printk(KERN_ERR "%s: timeout on hwirq %u\n",
  582. __func__, src);
  583. break;
  584. }
  585. } while(!(mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI)) & MPIC_VECPRI_MASK));
  586. }
  587. void mpic_end_irq(struct irq_data *d)
  588. {
  589. struct mpic *mpic = mpic_from_irq_data(d);
  590. #ifdef DEBUG_IRQ
  591. DBG("%s: end_irq: %d\n", mpic->name, d->irq);
  592. #endif
  593. /* We always EOI on end_irq() even for edge interrupts since that
  594. * should only lower the priority, the MPIC should have properly
  595. * latched another edge interrupt coming in anyway
  596. */
  597. mpic_eoi(mpic);
  598. }
  599. #ifdef CONFIG_MPIC_U3_HT_IRQS
  600. static void mpic_unmask_ht_irq(struct irq_data *d)
  601. {
  602. struct mpic *mpic = mpic_from_irq_data(d);
  603. unsigned int src = irqd_to_hwirq(d);
  604. mpic_unmask_irq(d);
  605. if (irqd_is_level_type(d))
  606. mpic_ht_end_irq(mpic, src);
  607. }
  608. static unsigned int mpic_startup_ht_irq(struct irq_data *d)
  609. {
  610. struct mpic *mpic = mpic_from_irq_data(d);
  611. unsigned int src = irqd_to_hwirq(d);
  612. mpic_unmask_irq(d);
  613. mpic_startup_ht_interrupt(mpic, src, irqd_is_level_type(d));
  614. return 0;
  615. }
  616. static void mpic_shutdown_ht_irq(struct irq_data *d)
  617. {
  618. struct mpic *mpic = mpic_from_irq_data(d);
  619. unsigned int src = irqd_to_hwirq(d);
  620. mpic_shutdown_ht_interrupt(mpic, src);
  621. mpic_mask_irq(d);
  622. }
  623. static void mpic_end_ht_irq(struct irq_data *d)
  624. {
  625. struct mpic *mpic = mpic_from_irq_data(d);
  626. unsigned int src = irqd_to_hwirq(d);
  627. #ifdef DEBUG_IRQ
  628. DBG("%s: end_irq: %d\n", mpic->name, d->irq);
  629. #endif
  630. /* We always EOI on end_irq() even for edge interrupts since that
  631. * should only lower the priority, the MPIC should have properly
  632. * latched another edge interrupt coming in anyway
  633. */
  634. if (irqd_is_level_type(d))
  635. mpic_ht_end_irq(mpic, src);
  636. mpic_eoi(mpic);
  637. }
  638. #endif /* !CONFIG_MPIC_U3_HT_IRQS */
  639. #ifdef CONFIG_SMP
  640. static void mpic_unmask_ipi(struct irq_data *d)
  641. {
  642. struct mpic *mpic = mpic_from_ipi(d);
  643. unsigned int src = virq_to_hw(d->irq) - mpic->ipi_vecs[0];
  644. DBG("%s: enable_ipi: %d (ipi %d)\n", mpic->name, d->irq, src);
  645. mpic_ipi_write(src, mpic_ipi_read(src) & ~MPIC_VECPRI_MASK);
  646. }
  647. static void mpic_mask_ipi(struct irq_data *d)
  648. {
  649. /* NEVER disable an IPI... that's just plain wrong! */
  650. }
  651. static void mpic_end_ipi(struct irq_data *d)
  652. {
  653. struct mpic *mpic = mpic_from_ipi(d);
  654. /*
  655. * IPIs are marked IRQ_PER_CPU. This has the side effect of
  656. * preventing the IRQ_PENDING/IRQ_INPROGRESS logic from
  657. * applying to them. We EOI them late to avoid re-entering.
  658. */
  659. mpic_eoi(mpic);
  660. }
  661. #endif /* CONFIG_SMP */
  662. static void mpic_unmask_tm(struct irq_data *d)
  663. {
  664. struct mpic *mpic = mpic_from_irq_data(d);
  665. unsigned int src = virq_to_hw(d->irq) - mpic->timer_vecs[0];
  666. DBG("%s: enable_tm: %d (tm %d)\n", mpic->name, d->irq, src);
  667. mpic_tm_write(src, mpic_tm_read(src) & ~MPIC_VECPRI_MASK);
  668. mpic_tm_read(src);
  669. }
  670. static void mpic_mask_tm(struct irq_data *d)
  671. {
  672. struct mpic *mpic = mpic_from_irq_data(d);
  673. unsigned int src = virq_to_hw(d->irq) - mpic->timer_vecs[0];
  674. mpic_tm_write(src, mpic_tm_read(src) | MPIC_VECPRI_MASK);
  675. mpic_tm_read(src);
  676. }
  677. int mpic_set_affinity(struct irq_data *d, const struct cpumask *cpumask,
  678. bool force)
  679. {
  680. struct mpic *mpic = mpic_from_irq_data(d);
  681. unsigned int src = irqd_to_hwirq(d);
  682. if (mpic->flags & MPIC_SINGLE_DEST_CPU) {
  683. int cpuid = irq_choose_cpu(cpumask);
  684. mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION), 1 << cpuid);
  685. } else {
  686. u32 mask = cpumask_bits(cpumask)[0];
  687. mask &= cpumask_bits(cpu_online_mask)[0];
  688. mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION),
  689. mpic_physmask(mask));
  690. }
  691. return 0;
  692. }
  693. static unsigned int mpic_type_to_vecpri(struct mpic *mpic, unsigned int type)
  694. {
  695. /* Now convert sense value */
  696. switch(type & IRQ_TYPE_SENSE_MASK) {
  697. case IRQ_TYPE_EDGE_RISING:
  698. return MPIC_INFO(VECPRI_SENSE_EDGE) |
  699. MPIC_INFO(VECPRI_POLARITY_POSITIVE);
  700. case IRQ_TYPE_EDGE_FALLING:
  701. case IRQ_TYPE_EDGE_BOTH:
  702. return MPIC_INFO(VECPRI_SENSE_EDGE) |
  703. MPIC_INFO(VECPRI_POLARITY_NEGATIVE);
  704. case IRQ_TYPE_LEVEL_HIGH:
  705. return MPIC_INFO(VECPRI_SENSE_LEVEL) |
  706. MPIC_INFO(VECPRI_POLARITY_POSITIVE);
  707. case IRQ_TYPE_LEVEL_LOW:
  708. default:
  709. return MPIC_INFO(VECPRI_SENSE_LEVEL) |
  710. MPIC_INFO(VECPRI_POLARITY_NEGATIVE);
  711. }
  712. }
  713. int mpic_set_irq_type(struct irq_data *d, unsigned int flow_type)
  714. {
  715. struct mpic *mpic = mpic_from_irq_data(d);
  716. unsigned int src = irqd_to_hwirq(d);
  717. unsigned int vecpri, vold, vnew;
  718. DBG("mpic: set_irq_type(mpic:@%p,virq:%d,src:0x%x,type:0x%x)\n",
  719. mpic, d->irq, src, flow_type);
  720. if (src >= mpic->num_sources)
  721. return -EINVAL;
  722. vold = mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI));
  723. /* We don't support "none" type */
  724. if (flow_type == IRQ_TYPE_NONE)
  725. flow_type = IRQ_TYPE_DEFAULT;
  726. /* Default: read HW settings */
  727. if (flow_type == IRQ_TYPE_DEFAULT) {
  728. switch(vold & (MPIC_INFO(VECPRI_POLARITY_MASK) |
  729. MPIC_INFO(VECPRI_SENSE_MASK))) {
  730. case MPIC_INFO(VECPRI_SENSE_EDGE) |
  731. MPIC_INFO(VECPRI_POLARITY_POSITIVE):
  732. flow_type = IRQ_TYPE_EDGE_RISING;
  733. break;
  734. case MPIC_INFO(VECPRI_SENSE_EDGE) |
  735. MPIC_INFO(VECPRI_POLARITY_NEGATIVE):
  736. flow_type = IRQ_TYPE_EDGE_FALLING;
  737. break;
  738. case MPIC_INFO(VECPRI_SENSE_LEVEL) |
  739. MPIC_INFO(VECPRI_POLARITY_POSITIVE):
  740. flow_type = IRQ_TYPE_LEVEL_HIGH;
  741. break;
  742. case MPIC_INFO(VECPRI_SENSE_LEVEL) |
  743. MPIC_INFO(VECPRI_POLARITY_NEGATIVE):
  744. flow_type = IRQ_TYPE_LEVEL_LOW;
  745. break;
  746. }
  747. }
  748. /* Apply to irq desc */
  749. irqd_set_trigger_type(d, flow_type);
  750. /* Apply to HW */
  751. if (mpic_is_ht_interrupt(mpic, src))
  752. vecpri = MPIC_VECPRI_POLARITY_POSITIVE |
  753. MPIC_VECPRI_SENSE_EDGE;
  754. else
  755. vecpri = mpic_type_to_vecpri(mpic, flow_type);
  756. vnew = vold & ~(MPIC_INFO(VECPRI_POLARITY_MASK) |
  757. MPIC_INFO(VECPRI_SENSE_MASK));
  758. vnew |= vecpri;
  759. if (vold != vnew)
  760. mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI), vnew);
  761. return IRQ_SET_MASK_OK_NOCOPY;
  762. }
  763. void mpic_set_vector(unsigned int virq, unsigned int vector)
  764. {
  765. struct mpic *mpic = mpic_from_irq(virq);
  766. unsigned int src = virq_to_hw(virq);
  767. unsigned int vecpri;
  768. DBG("mpic: set_vector(mpic:@%p,virq:%d,src:%d,vector:0x%x)\n",
  769. mpic, virq, src, vector);
  770. if (src >= mpic->num_sources)
  771. return;
  772. vecpri = mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI));
  773. vecpri = vecpri & ~MPIC_INFO(VECPRI_VECTOR_MASK);
  774. vecpri |= vector;
  775. mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI), vecpri);
  776. }
  777. void mpic_set_destination(unsigned int virq, unsigned int cpuid)
  778. {
  779. struct mpic *mpic = mpic_from_irq(virq);
  780. unsigned int src = virq_to_hw(virq);
  781. DBG("mpic: set_destination(mpic:@%p,virq:%d,src:%d,cpuid:0x%x)\n",
  782. mpic, virq, src, cpuid);
  783. if (src >= mpic->num_sources)
  784. return;
  785. mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION), 1 << cpuid);
  786. }
  787. static struct irq_chip mpic_irq_chip = {
  788. .irq_mask = mpic_mask_irq,
  789. .irq_unmask = mpic_unmask_irq,
  790. .irq_eoi = mpic_end_irq,
  791. .irq_set_type = mpic_set_irq_type,
  792. };
  793. #ifdef CONFIG_SMP
  794. static struct irq_chip mpic_ipi_chip = {
  795. .irq_mask = mpic_mask_ipi,
  796. .irq_unmask = mpic_unmask_ipi,
  797. .irq_eoi = mpic_end_ipi,
  798. };
  799. #endif /* CONFIG_SMP */
  800. static struct irq_chip mpic_tm_chip = {
  801. .irq_mask = mpic_mask_tm,
  802. .irq_unmask = mpic_unmask_tm,
  803. .irq_eoi = mpic_end_irq,
  804. };
  805. #ifdef CONFIG_MPIC_U3_HT_IRQS
  806. static struct irq_chip mpic_irq_ht_chip = {
  807. .irq_startup = mpic_startup_ht_irq,
  808. .irq_shutdown = mpic_shutdown_ht_irq,
  809. .irq_mask = mpic_mask_irq,
  810. .irq_unmask = mpic_unmask_ht_irq,
  811. .irq_eoi = mpic_end_ht_irq,
  812. .irq_set_type = mpic_set_irq_type,
  813. };
  814. #endif /* CONFIG_MPIC_U3_HT_IRQS */
  815. static int mpic_host_match(struct irq_domain *h, struct device_node *node)
  816. {
  817. /* Exact match, unless mpic node is NULL */
  818. return h->of_node == NULL || h->of_node == node;
  819. }
  820. static int mpic_host_map(struct irq_domain *h, unsigned int virq,
  821. irq_hw_number_t hw)
  822. {
  823. struct mpic *mpic = h->host_data;
  824. struct irq_chip *chip;
  825. DBG("mpic: map virq %d, hwirq 0x%lx\n", virq, hw);
  826. if (hw == mpic->spurious_vec)
  827. return -EINVAL;
  828. if (mpic->protected && test_bit(hw, mpic->protected))
  829. return -EINVAL;
  830. #ifdef CONFIG_SMP
  831. else if (hw >= mpic->ipi_vecs[0]) {
  832. WARN_ON(mpic->flags & MPIC_SECONDARY);
  833. DBG("mpic: mapping as IPI\n");
  834. irq_set_chip_data(virq, mpic);
  835. irq_set_chip_and_handler(virq, &mpic->hc_ipi,
  836. handle_percpu_irq);
  837. return 0;
  838. }
  839. #endif /* CONFIG_SMP */
  840. if (hw >= mpic->timer_vecs[0] && hw <= mpic->timer_vecs[7]) {
  841. WARN_ON(mpic->flags & MPIC_SECONDARY);
  842. DBG("mpic: mapping as timer\n");
  843. irq_set_chip_data(virq, mpic);
  844. irq_set_chip_and_handler(virq, &mpic->hc_tm,
  845. handle_fasteoi_irq);
  846. return 0;
  847. }
  848. if (hw >= mpic->num_sources)
  849. return -EINVAL;
  850. mpic_msi_reserve_hwirq(mpic, hw);
  851. /* Default chip */
  852. chip = &mpic->hc_irq;
  853. #ifdef CONFIG_MPIC_U3_HT_IRQS
  854. /* Check for HT interrupts, override vecpri */
  855. if (mpic_is_ht_interrupt(mpic, hw))
  856. chip = &mpic->hc_ht_irq;
  857. #endif /* CONFIG_MPIC_U3_HT_IRQS */
  858. DBG("mpic: mapping to irq chip @%p\n", chip);
  859. irq_set_chip_data(virq, mpic);
  860. irq_set_chip_and_handler(virq, chip, handle_fasteoi_irq);
  861. /* Set default irq type */
  862. irq_set_irq_type(virq, IRQ_TYPE_DEFAULT);
  863. /* If the MPIC was reset, then all vectors have already been
  864. * initialized. Otherwise, a per source lazy initialization
  865. * is done here.
  866. */
  867. if (!mpic_is_ipi(mpic, hw) && (mpic->flags & MPIC_NO_RESET)) {
  868. mpic_set_vector(virq, hw);
  869. mpic_set_destination(virq, mpic_processor_id(mpic));
  870. mpic_irq_set_priority(virq, 8);
  871. }
  872. return 0;
  873. }
  874. static int mpic_host_xlate(struct irq_domain *h, struct device_node *ct,
  875. const u32 *intspec, unsigned int intsize,
  876. irq_hw_number_t *out_hwirq, unsigned int *out_flags)
  877. {
  878. struct mpic *mpic = h->host_data;
  879. static unsigned char map_mpic_senses[4] = {
  880. IRQ_TYPE_EDGE_RISING,
  881. IRQ_TYPE_LEVEL_LOW,
  882. IRQ_TYPE_LEVEL_HIGH,
  883. IRQ_TYPE_EDGE_FALLING,
  884. };
  885. *out_hwirq = intspec[0];
  886. if (intsize >= 4 && (mpic->flags & MPIC_FSL)) {
  887. /*
  888. * Freescale MPIC with extended intspec:
  889. * First two cells are as usual. Third specifies
  890. * an "interrupt type". Fourth is type-specific data.
  891. *
  892. * See Documentation/devicetree/bindings/powerpc/fsl/mpic.txt
  893. */
  894. switch (intspec[2]) {
  895. case 0:
  896. case 1: /* no EISR/EIMR support for now, treat as shared IRQ */
  897. break;
  898. case 2:
  899. if (intspec[0] >= ARRAY_SIZE(mpic->ipi_vecs))
  900. return -EINVAL;
  901. *out_hwirq = mpic->ipi_vecs[intspec[0]];
  902. break;
  903. case 3:
  904. if (intspec[0] >= ARRAY_SIZE(mpic->timer_vecs))
  905. return -EINVAL;
  906. *out_hwirq = mpic->timer_vecs[intspec[0]];
  907. break;
  908. default:
  909. pr_debug("%s: unknown irq type %u\n",
  910. __func__, intspec[2]);
  911. return -EINVAL;
  912. }
  913. *out_flags = map_mpic_senses[intspec[1] & 3];
  914. } else if (intsize > 1) {
  915. u32 mask = 0x3;
  916. /* Apple invented a new race of encoding on machines with
  917. * an HT APIC. They encode, among others, the index within
  918. * the HT APIC. We don't care about it here since thankfully,
  919. * it appears that they have the APIC already properly
  920. * configured, and thus our current fixup code that reads the
  921. * APIC config works fine. However, we still need to mask out
  922. * bits in the specifier to make sure we only get bit 0 which
  923. * is the level/edge bit (the only sense bit exposed by Apple),
  924. * as their bit 1 means something else.
  925. */
  926. if (machine_is(powermac))
  927. mask = 0x1;
  928. *out_flags = map_mpic_senses[intspec[1] & mask];
  929. } else
  930. *out_flags = IRQ_TYPE_NONE;
  931. DBG("mpic: xlate (%d cells: 0x%08x 0x%08x) to line 0x%lx sense 0x%x\n",
  932. intsize, intspec[0], intspec[1], *out_hwirq, *out_flags);
  933. return 0;
  934. }
  935. /* IRQ handler for a secondary MPIC cascaded from another IRQ controller */
  936. static void mpic_cascade(unsigned int irq, struct irq_desc *desc)
  937. {
  938. struct irq_chip *chip = irq_desc_get_chip(desc);
  939. struct mpic *mpic = irq_desc_get_handler_data(desc);
  940. unsigned int virq;
  941. BUG_ON(!(mpic->flags & MPIC_SECONDARY));
  942. virq = mpic_get_one_irq(mpic);
  943. if (virq)
  944. generic_handle_irq(virq);
  945. chip->irq_eoi(&desc->irq_data);
  946. }
  947. static struct irq_domain_ops mpic_host_ops = {
  948. .match = mpic_host_match,
  949. .map = mpic_host_map,
  950. .xlate = mpic_host_xlate,
  951. };
  952. /*
  953. * Exported functions
  954. */
  955. struct mpic * __init mpic_alloc(struct device_node *node,
  956. phys_addr_t phys_addr,
  957. unsigned int flags,
  958. unsigned int isu_size,
  959. unsigned int irq_count,
  960. const char *name)
  961. {
  962. int i, psize, intvec_top;
  963. struct mpic *mpic;
  964. u32 greg_feature;
  965. const char *vers;
  966. const u32 *psrc;
  967. u32 last_irq;
  968. /* Default MPIC search parameters */
  969. static const struct of_device_id __initconst mpic_device_id[] = {
  970. { .type = "open-pic", },
  971. { .compatible = "open-pic", },
  972. {},
  973. };
  974. /*
  975. * If we were not passed a device-tree node, then perform the default
  976. * search for standardized a standardized OpenPIC.
  977. */
  978. if (node) {
  979. node = of_node_get(node);
  980. } else {
  981. node = of_find_matching_node(NULL, mpic_device_id);
  982. if (!node)
  983. return NULL;
  984. }
  985. /* Pick the physical address from the device tree if unspecified */
  986. if (!phys_addr) {
  987. /* Check if it is DCR-based */
  988. if (of_get_property(node, "dcr-reg", NULL)) {
  989. flags |= MPIC_USES_DCR;
  990. } else {
  991. struct resource r;
  992. if (of_address_to_resource(node, 0, &r))
  993. goto err_of_node_put;
  994. phys_addr = r.start;
  995. }
  996. }
  997. /* Read extra device-tree properties into the flags variable */
  998. if (of_get_property(node, "big-endian", NULL))
  999. flags |= MPIC_BIG_ENDIAN;
  1000. if (of_get_property(node, "pic-no-reset", NULL))
  1001. flags |= MPIC_NO_RESET;
  1002. if (of_get_property(node, "single-cpu-affinity", NULL))
  1003. flags |= MPIC_SINGLE_DEST_CPU;
  1004. if (of_device_is_compatible(node, "fsl,mpic"))
  1005. flags |= MPIC_FSL;
  1006. mpic = kzalloc(sizeof(struct mpic), GFP_KERNEL);
  1007. if (mpic == NULL)
  1008. goto err_of_node_put;
  1009. mpic->name = name;
  1010. mpic->node = node;
  1011. mpic->paddr = phys_addr;
  1012. mpic->flags = flags;
  1013. mpic->hc_irq = mpic_irq_chip;
  1014. mpic->hc_irq.name = name;
  1015. if (!(mpic->flags & MPIC_SECONDARY))
  1016. mpic->hc_irq.irq_set_affinity = mpic_set_affinity;
  1017. #ifdef CONFIG_MPIC_U3_HT_IRQS
  1018. mpic->hc_ht_irq = mpic_irq_ht_chip;
  1019. mpic->hc_ht_irq.name = name;
  1020. if (!(mpic->flags & MPIC_SECONDARY))
  1021. mpic->hc_ht_irq.irq_set_affinity = mpic_set_affinity;
  1022. #endif /* CONFIG_MPIC_U3_HT_IRQS */
  1023. #ifdef CONFIG_SMP
  1024. mpic->hc_ipi = mpic_ipi_chip;
  1025. mpic->hc_ipi.name = name;
  1026. #endif /* CONFIG_SMP */
  1027. mpic->hc_tm = mpic_tm_chip;
  1028. mpic->hc_tm.name = name;
  1029. mpic->num_sources = 0; /* so far */
  1030. if (mpic->flags & MPIC_LARGE_VECTORS)
  1031. intvec_top = 2047;
  1032. else
  1033. intvec_top = 255;
  1034. mpic->timer_vecs[0] = intvec_top - 12;
  1035. mpic->timer_vecs[1] = intvec_top - 11;
  1036. mpic->timer_vecs[2] = intvec_top - 10;
  1037. mpic->timer_vecs[3] = intvec_top - 9;
  1038. mpic->timer_vecs[4] = intvec_top - 8;
  1039. mpic->timer_vecs[5] = intvec_top - 7;
  1040. mpic->timer_vecs[6] = intvec_top - 6;
  1041. mpic->timer_vecs[7] = intvec_top - 5;
  1042. mpic->ipi_vecs[0] = intvec_top - 4;
  1043. mpic->ipi_vecs[1] = intvec_top - 3;
  1044. mpic->ipi_vecs[2] = intvec_top - 2;
  1045. mpic->ipi_vecs[3] = intvec_top - 1;
  1046. mpic->spurious_vec = intvec_top;
  1047. /* Look for protected sources */
  1048. psrc = of_get_property(mpic->node, "protected-sources", &psize);
  1049. if (psrc) {
  1050. /* Allocate a bitmap with one bit per interrupt */
  1051. unsigned int mapsize = BITS_TO_LONGS(intvec_top + 1);
  1052. mpic->protected = kzalloc(mapsize*sizeof(long), GFP_KERNEL);
  1053. BUG_ON(mpic->protected == NULL);
  1054. for (i = 0; i < psize/sizeof(u32); i++) {
  1055. if (psrc[i] > intvec_top)
  1056. continue;
  1057. __set_bit(psrc[i], mpic->protected);
  1058. }
  1059. }
  1060. #ifdef CONFIG_MPIC_WEIRD
  1061. mpic->hw_set = mpic_infos[MPIC_GET_REGSET(mpic->flags)];
  1062. #endif
  1063. /* default register type */
  1064. if (mpic->flags & MPIC_BIG_ENDIAN)
  1065. mpic->reg_type = mpic_access_mmio_be;
  1066. else
  1067. mpic->reg_type = mpic_access_mmio_le;
  1068. /*
  1069. * An MPIC with a "dcr-reg" property must be accessed that way, but
  1070. * only if the kernel includes DCR support.
  1071. */
  1072. #ifdef CONFIG_PPC_DCR
  1073. if (mpic->flags & MPIC_USES_DCR)
  1074. mpic->reg_type = mpic_access_dcr;
  1075. #else
  1076. BUG_ON(mpic->flags & MPIC_USES_DCR);
  1077. #endif
  1078. /* Map the global registers */
  1079. mpic_map(mpic, mpic->paddr, &mpic->gregs, MPIC_INFO(GREG_BASE), 0x1000);
  1080. mpic_map(mpic, mpic->paddr, &mpic->tmregs, MPIC_INFO(TIMER_BASE), 0x1000);
  1081. /* Reset */
  1082. /* When using a device-node, reset requests are only honored if the MPIC
  1083. * is allowed to reset.
  1084. */
  1085. if (!(mpic->flags & MPIC_NO_RESET)) {
  1086. printk(KERN_DEBUG "mpic: Resetting\n");
  1087. mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
  1088. mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
  1089. | MPIC_GREG_GCONF_RESET);
  1090. while( mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
  1091. & MPIC_GREG_GCONF_RESET)
  1092. mb();
  1093. }
  1094. /* CoreInt */
  1095. if (mpic->flags & MPIC_ENABLE_COREINT)
  1096. mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
  1097. mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
  1098. | MPIC_GREG_GCONF_COREINT);
  1099. if (mpic->flags & MPIC_ENABLE_MCK)
  1100. mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
  1101. mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
  1102. | MPIC_GREG_GCONF_MCK);
  1103. /*
  1104. * The MPIC driver will crash if there are more cores than we
  1105. * can initialize, so we may as well catch that problem here.
  1106. */
  1107. BUG_ON(num_possible_cpus() > MPIC_MAX_CPUS);
  1108. /* Map the per-CPU registers */
  1109. for_each_possible_cpu(i) {
  1110. unsigned int cpu = get_hard_smp_processor_id(i);
  1111. mpic_map(mpic, mpic->paddr, &mpic->cpuregs[cpu],
  1112. MPIC_INFO(CPU_BASE) + cpu * MPIC_INFO(CPU_STRIDE),
  1113. 0x1000);
  1114. }
  1115. /*
  1116. * Read feature register. For non-ISU MPICs, num sources as well. On
  1117. * ISU MPICs, sources are counted as ISUs are added
  1118. */
  1119. greg_feature = mpic_read(mpic->gregs, MPIC_INFO(GREG_FEATURE_0));
  1120. /*
  1121. * By default, the last source number comes from the MPIC, but the
  1122. * device-tree and board support code can override it on buggy hw.
  1123. * If we get passed an isu_size (multi-isu MPIC) then we use that
  1124. * as a default instead of the value read from the HW.
  1125. */
  1126. last_irq = (greg_feature & MPIC_GREG_FEATURE_LAST_SRC_MASK)
  1127. >> MPIC_GREG_FEATURE_LAST_SRC_SHIFT;
  1128. if (isu_size)
  1129. last_irq = isu_size * MPIC_MAX_ISU - 1;
  1130. of_property_read_u32(mpic->node, "last-interrupt-source", &last_irq);
  1131. if (irq_count)
  1132. last_irq = irq_count - 1;
  1133. /* Initialize main ISU if none provided */
  1134. if (!isu_size) {
  1135. isu_size = last_irq + 1;
  1136. mpic->num_sources = isu_size;
  1137. mpic_map(mpic, mpic->paddr, &mpic->isus[0],
  1138. MPIC_INFO(IRQ_BASE),
  1139. MPIC_INFO(IRQ_STRIDE) * isu_size);
  1140. }
  1141. mpic->isu_size = isu_size;
  1142. mpic->isu_shift = 1 + __ilog2(mpic->isu_size - 1);
  1143. mpic->isu_mask = (1 << mpic->isu_shift) - 1;
  1144. mpic->irqhost = irq_domain_add_linear(mpic->node,
  1145. last_irq + 1,
  1146. &mpic_host_ops, mpic);
  1147. /*
  1148. * FIXME: The code leaks the MPIC object and mappings here; this
  1149. * is very unlikely to fail but it ought to be fixed anyways.
  1150. */
  1151. if (mpic->irqhost == NULL)
  1152. return NULL;
  1153. /* Display version */
  1154. switch (greg_feature & MPIC_GREG_FEATURE_VERSION_MASK) {
  1155. case 1:
  1156. vers = "1.0";
  1157. break;
  1158. case 2:
  1159. vers = "1.2";
  1160. break;
  1161. case 3:
  1162. vers = "1.3";
  1163. break;
  1164. default:
  1165. vers = "<unknown>";
  1166. break;
  1167. }
  1168. printk(KERN_INFO "mpic: Setting up MPIC \"%s\" version %s at %llx,"
  1169. " max %d CPUs\n",
  1170. name, vers, (unsigned long long)mpic->paddr, num_possible_cpus());
  1171. printk(KERN_INFO "mpic: ISU size: %d, shift: %d, mask: %x\n",
  1172. mpic->isu_size, mpic->isu_shift, mpic->isu_mask);
  1173. mpic->next = mpics;
  1174. mpics = mpic;
  1175. if (!(mpic->flags & MPIC_SECONDARY)) {
  1176. mpic_primary = mpic;
  1177. irq_set_default_host(mpic->irqhost);
  1178. }
  1179. return mpic;
  1180. err_of_node_put:
  1181. of_node_put(node);
  1182. return NULL;
  1183. }
  1184. void __init mpic_assign_isu(struct mpic *mpic, unsigned int isu_num,
  1185. phys_addr_t paddr)
  1186. {
  1187. unsigned int isu_first = isu_num * mpic->isu_size;
  1188. BUG_ON(isu_num >= MPIC_MAX_ISU);
  1189. mpic_map(mpic,
  1190. paddr, &mpic->isus[isu_num], 0,
  1191. MPIC_INFO(IRQ_STRIDE) * mpic->isu_size);
  1192. if ((isu_first + mpic->isu_size) > mpic->num_sources)
  1193. mpic->num_sources = isu_first + mpic->isu_size;
  1194. }
  1195. void __init mpic_init(struct mpic *mpic)
  1196. {
  1197. int i, cpu;
  1198. BUG_ON(mpic->num_sources == 0);
  1199. printk(KERN_INFO "mpic: Initializing for %d sources\n", mpic->num_sources);
  1200. /* Set current processor priority to max */
  1201. mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0xf);
  1202. /* Initialize timers to our reserved vectors and mask them for now */
  1203. for (i = 0; i < 4; i++) {
  1204. mpic_write(mpic->tmregs,
  1205. i * MPIC_INFO(TIMER_STRIDE) +
  1206. MPIC_INFO(TIMER_DESTINATION),
  1207. 1 << hard_smp_processor_id());
  1208. mpic_write(mpic->tmregs,
  1209. i * MPIC_INFO(TIMER_STRIDE) +
  1210. MPIC_INFO(TIMER_VECTOR_PRI),
  1211. MPIC_VECPRI_MASK |
  1212. (9 << MPIC_VECPRI_PRIORITY_SHIFT) |
  1213. (mpic->timer_vecs[0] + i));
  1214. }
  1215. /* Initialize IPIs to our reserved vectors and mark them disabled for now */
  1216. mpic_test_broken_ipi(mpic);
  1217. for (i = 0; i < 4; i++) {
  1218. mpic_ipi_write(i,
  1219. MPIC_VECPRI_MASK |
  1220. (10 << MPIC_VECPRI_PRIORITY_SHIFT) |
  1221. (mpic->ipi_vecs[0] + i));
  1222. }
  1223. /* Do the HT PIC fixups on U3 broken mpic */
  1224. DBG("MPIC flags: %x\n", mpic->flags);
  1225. if ((mpic->flags & MPIC_U3_HT_IRQS) && !(mpic->flags & MPIC_SECONDARY)) {
  1226. mpic_scan_ht_pics(mpic);
  1227. mpic_u3msi_init(mpic);
  1228. }
  1229. mpic_pasemi_msi_init(mpic);
  1230. cpu = mpic_processor_id(mpic);
  1231. if (!(mpic->flags & MPIC_NO_RESET)) {
  1232. for (i = 0; i < mpic->num_sources; i++) {
  1233. /* start with vector = source number, and masked */
  1234. u32 vecpri = MPIC_VECPRI_MASK | i |
  1235. (8 << MPIC_VECPRI_PRIORITY_SHIFT);
  1236. /* check if protected */
  1237. if (mpic->protected && test_bit(i, mpic->protected))
  1238. continue;
  1239. /* init hw */
  1240. mpic_irq_write(i, MPIC_INFO(IRQ_VECTOR_PRI), vecpri);
  1241. mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION), 1 << cpu);
  1242. }
  1243. }
  1244. /* Init spurious vector */
  1245. mpic_write(mpic->gregs, MPIC_INFO(GREG_SPURIOUS), mpic->spurious_vec);
  1246. /* Disable 8259 passthrough, if supported */
  1247. if (!(mpic->flags & MPIC_NO_PTHROU_DIS))
  1248. mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
  1249. mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
  1250. | MPIC_GREG_GCONF_8259_PTHROU_DIS);
  1251. if (mpic->flags & MPIC_NO_BIAS)
  1252. mpic_write(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0),
  1253. mpic_read(mpic->gregs, MPIC_INFO(GREG_GLOBAL_CONF_0))
  1254. | MPIC_GREG_GCONF_NO_BIAS);
  1255. /* Set current processor priority to 0 */
  1256. mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0);
  1257. #ifdef CONFIG_PM
  1258. /* allocate memory to save mpic state */
  1259. mpic->save_data = kmalloc(mpic->num_sources * sizeof(*mpic->save_data),
  1260. GFP_KERNEL);
  1261. BUG_ON(mpic->save_data == NULL);
  1262. #endif
  1263. /* Check if this MPIC is chained from a parent interrupt controller */
  1264. if (mpic->flags & MPIC_SECONDARY) {
  1265. int virq = irq_of_parse_and_map(mpic->node, 0);
  1266. if (virq != NO_IRQ) {
  1267. printk(KERN_INFO "%s: hooking up to IRQ %d\n",
  1268. mpic->node->full_name, virq);
  1269. irq_set_handler_data(virq, mpic);
  1270. irq_set_chained_handler(virq, &mpic_cascade);
  1271. }
  1272. }
  1273. }
  1274. void __init mpic_set_clk_ratio(struct mpic *mpic, u32 clock_ratio)
  1275. {
  1276. u32 v;
  1277. v = mpic_read(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1);
  1278. v &= ~MPIC_GREG_GLOBAL_CONF_1_CLK_RATIO_MASK;
  1279. v |= MPIC_GREG_GLOBAL_CONF_1_CLK_RATIO(clock_ratio);
  1280. mpic_write(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1, v);
  1281. }
  1282. void __init mpic_set_serial_int(struct mpic *mpic, int enable)
  1283. {
  1284. unsigned long flags;
  1285. u32 v;
  1286. raw_spin_lock_irqsave(&mpic_lock, flags);
  1287. v = mpic_read(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1);
  1288. if (enable)
  1289. v |= MPIC_GREG_GLOBAL_CONF_1_SIE;
  1290. else
  1291. v &= ~MPIC_GREG_GLOBAL_CONF_1_SIE;
  1292. mpic_write(mpic->gregs, MPIC_GREG_GLOBAL_CONF_1, v);
  1293. raw_spin_unlock_irqrestore(&mpic_lock, flags);
  1294. }
  1295. void mpic_irq_set_priority(unsigned int irq, unsigned int pri)
  1296. {
  1297. struct mpic *mpic = mpic_find(irq);
  1298. unsigned int src = virq_to_hw(irq);
  1299. unsigned long flags;
  1300. u32 reg;
  1301. if (!mpic)
  1302. return;
  1303. raw_spin_lock_irqsave(&mpic_lock, flags);
  1304. if (mpic_is_ipi(mpic, src)) {
  1305. reg = mpic_ipi_read(src - mpic->ipi_vecs[0]) &
  1306. ~MPIC_VECPRI_PRIORITY_MASK;
  1307. mpic_ipi_write(src - mpic->ipi_vecs[0],
  1308. reg | (pri << MPIC_VECPRI_PRIORITY_SHIFT));
  1309. } else if (mpic_is_tm(mpic, src)) {
  1310. reg = mpic_tm_read(src - mpic->timer_vecs[0]) &
  1311. ~MPIC_VECPRI_PRIORITY_MASK;
  1312. mpic_tm_write(src - mpic->timer_vecs[0],
  1313. reg | (pri << MPIC_VECPRI_PRIORITY_SHIFT));
  1314. } else {
  1315. reg = mpic_irq_read(src, MPIC_INFO(IRQ_VECTOR_PRI))
  1316. & ~MPIC_VECPRI_PRIORITY_MASK;
  1317. mpic_irq_write(src, MPIC_INFO(IRQ_VECTOR_PRI),
  1318. reg | (pri << MPIC_VECPRI_PRIORITY_SHIFT));
  1319. }
  1320. raw_spin_unlock_irqrestore(&mpic_lock, flags);
  1321. }
  1322. void mpic_setup_this_cpu(void)
  1323. {
  1324. #ifdef CONFIG_SMP
  1325. struct mpic *mpic = mpic_primary;
  1326. unsigned long flags;
  1327. u32 msk = 1 << hard_smp_processor_id();
  1328. unsigned int i;
  1329. BUG_ON(mpic == NULL);
  1330. DBG("%s: setup_this_cpu(%d)\n", mpic->name, hard_smp_processor_id());
  1331. raw_spin_lock_irqsave(&mpic_lock, flags);
  1332. /* let the mpic know we want intrs. default affinity is 0xffffffff
  1333. * until changed via /proc. That's how it's done on x86. If we want
  1334. * it differently, then we should make sure we also change the default
  1335. * values of irq_desc[].affinity in irq.c.
  1336. */
  1337. if (distribute_irqs) {
  1338. for (i = 0; i < mpic->num_sources ; i++)
  1339. mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION),
  1340. mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION)) | msk);
  1341. }
  1342. /* Set current processor priority to 0 */
  1343. mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0);
  1344. raw_spin_unlock_irqrestore(&mpic_lock, flags);
  1345. #endif /* CONFIG_SMP */
  1346. }
  1347. int mpic_cpu_get_priority(void)
  1348. {
  1349. struct mpic *mpic = mpic_primary;
  1350. return mpic_cpu_read(MPIC_INFO(CPU_CURRENT_TASK_PRI));
  1351. }
  1352. void mpic_cpu_set_priority(int prio)
  1353. {
  1354. struct mpic *mpic = mpic_primary;
  1355. prio &= MPIC_CPU_TASKPRI_MASK;
  1356. mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), prio);
  1357. }
  1358. void mpic_teardown_this_cpu(int secondary)
  1359. {
  1360. struct mpic *mpic = mpic_primary;
  1361. unsigned long flags;
  1362. u32 msk = 1 << hard_smp_processor_id();
  1363. unsigned int i;
  1364. BUG_ON(mpic == NULL);
  1365. DBG("%s: teardown_this_cpu(%d)\n", mpic->name, hard_smp_processor_id());
  1366. raw_spin_lock_irqsave(&mpic_lock, flags);
  1367. /* let the mpic know we don't want intrs. */
  1368. for (i = 0; i < mpic->num_sources ; i++)
  1369. mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION),
  1370. mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION)) & ~msk);
  1371. /* Set current processor priority to max */
  1372. mpic_cpu_write(MPIC_INFO(CPU_CURRENT_TASK_PRI), 0xf);
  1373. /* We need to EOI the IPI since not all platforms reset the MPIC
  1374. * on boot and new interrupts wouldn't get delivered otherwise.
  1375. */
  1376. mpic_eoi(mpic);
  1377. raw_spin_unlock_irqrestore(&mpic_lock, flags);
  1378. }
  1379. static unsigned int _mpic_get_one_irq(struct mpic *mpic, int reg)
  1380. {
  1381. u32 src;
  1382. src = mpic_cpu_read(reg) & MPIC_INFO(VECPRI_VECTOR_MASK);
  1383. #ifdef DEBUG_LOW
  1384. DBG("%s: get_one_irq(reg 0x%x): %d\n", mpic->name, reg, src);
  1385. #endif
  1386. if (unlikely(src == mpic->spurious_vec)) {
  1387. if (mpic->flags & MPIC_SPV_EOI)
  1388. mpic_eoi(mpic);
  1389. return NO_IRQ;
  1390. }
  1391. if (unlikely(mpic->protected && test_bit(src, mpic->protected))) {
  1392. printk_ratelimited(KERN_WARNING "%s: Got protected source %d !\n",
  1393. mpic->name, (int)src);
  1394. mpic_eoi(mpic);
  1395. return NO_IRQ;
  1396. }
  1397. return irq_linear_revmap(mpic->irqhost, src);
  1398. }
  1399. unsigned int mpic_get_one_irq(struct mpic *mpic)
  1400. {
  1401. return _mpic_get_one_irq(mpic, MPIC_INFO(CPU_INTACK));
  1402. }
  1403. unsigned int mpic_get_irq(void)
  1404. {
  1405. struct mpic *mpic = mpic_primary;
  1406. BUG_ON(mpic == NULL);
  1407. return mpic_get_one_irq(mpic);
  1408. }
  1409. unsigned int mpic_get_coreint_irq(void)
  1410. {
  1411. #ifdef CONFIG_BOOKE
  1412. struct mpic *mpic = mpic_primary;
  1413. u32 src;
  1414. BUG_ON(mpic == NULL);
  1415. src = mfspr(SPRN_EPR);
  1416. if (unlikely(src == mpic->spurious_vec)) {
  1417. if (mpic->flags & MPIC_SPV_EOI)
  1418. mpic_eoi(mpic);
  1419. return NO_IRQ;
  1420. }
  1421. if (unlikely(mpic->protected && test_bit(src, mpic->protected))) {
  1422. printk_ratelimited(KERN_WARNING "%s: Got protected source %d !\n",
  1423. mpic->name, (int)src);
  1424. return NO_IRQ;
  1425. }
  1426. return irq_linear_revmap(mpic->irqhost, src);
  1427. #else
  1428. return NO_IRQ;
  1429. #endif
  1430. }
  1431. unsigned int mpic_get_mcirq(void)
  1432. {
  1433. struct mpic *mpic = mpic_primary;
  1434. BUG_ON(mpic == NULL);
  1435. return _mpic_get_one_irq(mpic, MPIC_INFO(CPU_MCACK));
  1436. }
  1437. #ifdef CONFIG_SMP
  1438. void mpic_request_ipis(void)
  1439. {
  1440. struct mpic *mpic = mpic_primary;
  1441. int i;
  1442. BUG_ON(mpic == NULL);
  1443. printk(KERN_INFO "mpic: requesting IPIs...\n");
  1444. for (i = 0; i < 4; i++) {
  1445. unsigned int vipi = irq_create_mapping(mpic->irqhost,
  1446. mpic->ipi_vecs[0] + i);
  1447. if (vipi == NO_IRQ) {
  1448. printk(KERN_ERR "Failed to map %s\n", smp_ipi_name[i]);
  1449. continue;
  1450. }
  1451. smp_request_message_ipi(vipi, i);
  1452. }
  1453. }
  1454. void smp_mpic_message_pass(int cpu, int msg)
  1455. {
  1456. struct mpic *mpic = mpic_primary;
  1457. u32 physmask;
  1458. BUG_ON(mpic == NULL);
  1459. /* make sure we're sending something that translates to an IPI */
  1460. if ((unsigned int)msg > 3) {
  1461. printk("SMP %d: smp_message_pass: unknown msg %d\n",
  1462. smp_processor_id(), msg);
  1463. return;
  1464. }
  1465. #ifdef DEBUG_IPI
  1466. DBG("%s: send_ipi(ipi_no: %d)\n", mpic->name, msg);
  1467. #endif
  1468. physmask = 1 << get_hard_smp_processor_id(cpu);
  1469. mpic_cpu_write(MPIC_INFO(CPU_IPI_DISPATCH_0) +
  1470. msg * MPIC_INFO(CPU_IPI_DISPATCH_STRIDE), physmask);
  1471. }
  1472. int __init smp_mpic_probe(void)
  1473. {
  1474. int nr_cpus;
  1475. DBG("smp_mpic_probe()...\n");
  1476. nr_cpus = cpumask_weight(cpu_possible_mask);
  1477. DBG("nr_cpus: %d\n", nr_cpus);
  1478. if (nr_cpus > 1)
  1479. mpic_request_ipis();
  1480. return nr_cpus;
  1481. }
  1482. void __devinit smp_mpic_setup_cpu(int cpu)
  1483. {
  1484. mpic_setup_this_cpu();
  1485. }
  1486. void mpic_reset_core(int cpu)
  1487. {
  1488. struct mpic *mpic = mpic_primary;
  1489. u32 pir;
  1490. int cpuid = get_hard_smp_processor_id(cpu);
  1491. int i;
  1492. /* Set target bit for core reset */
  1493. pir = mpic_read(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT));
  1494. pir |= (1 << cpuid);
  1495. mpic_write(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT), pir);
  1496. mpic_read(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT));
  1497. /* Restore target bit after reset complete */
  1498. pir &= ~(1 << cpuid);
  1499. mpic_write(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT), pir);
  1500. mpic_read(mpic->gregs, MPIC_INFO(GREG_PROCESSOR_INIT));
  1501. /* Perform 15 EOI on each reset core to clear pending interrupts.
  1502. * This is required for FSL CoreNet based devices */
  1503. if (mpic->flags & MPIC_FSL) {
  1504. for (i = 0; i < 15; i++) {
  1505. _mpic_write(mpic->reg_type, &mpic->cpuregs[cpuid],
  1506. MPIC_CPU_EOI, 0);
  1507. }
  1508. }
  1509. }
  1510. #endif /* CONFIG_SMP */
  1511. #ifdef CONFIG_PM
  1512. static void mpic_suspend_one(struct mpic *mpic)
  1513. {
  1514. int i;
  1515. for (i = 0; i < mpic->num_sources; i++) {
  1516. mpic->save_data[i].vecprio =
  1517. mpic_irq_read(i, MPIC_INFO(IRQ_VECTOR_PRI));
  1518. mpic->save_data[i].dest =
  1519. mpic_irq_read(i, MPIC_INFO(IRQ_DESTINATION));
  1520. }
  1521. }
  1522. static int mpic_suspend(void)
  1523. {
  1524. struct mpic *mpic = mpics;
  1525. while (mpic) {
  1526. mpic_suspend_one(mpic);
  1527. mpic = mpic->next;
  1528. }
  1529. return 0;
  1530. }
  1531. static void mpic_resume_one(struct mpic *mpic)
  1532. {
  1533. int i;
  1534. for (i = 0; i < mpic->num_sources; i++) {
  1535. mpic_irq_write(i, MPIC_INFO(IRQ_VECTOR_PRI),
  1536. mpic->save_data[i].vecprio);
  1537. mpic_irq_write(i, MPIC_INFO(IRQ_DESTINATION),
  1538. mpic->save_data[i].dest);
  1539. #ifdef CONFIG_MPIC_U3_HT_IRQS
  1540. if (mpic->fixups) {
  1541. struct mpic_irq_fixup *fixup = &mpic->fixups[i];
  1542. if (fixup->base) {
  1543. /* we use the lowest bit in an inverted meaning */
  1544. if ((mpic->save_data[i].fixup_data & 1) == 0)
  1545. continue;
  1546. /* Enable and configure */
  1547. writeb(0x10 + 2 * fixup->index, fixup->base + 2);
  1548. writel(mpic->save_data[i].fixup_data & ~1,
  1549. fixup->base + 4);
  1550. }
  1551. }
  1552. #endif
  1553. } /* end for loop */
  1554. }
  1555. static void mpic_resume(void)
  1556. {
  1557. struct mpic *mpic = mpics;
  1558. while (mpic) {
  1559. mpic_resume_one(mpic);
  1560. mpic = mpic->next;
  1561. }
  1562. }
  1563. static struct syscore_ops mpic_syscore_ops = {
  1564. .resume = mpic_resume,
  1565. .suspend = mpic_suspend,
  1566. };
  1567. static int mpic_init_sys(void)
  1568. {
  1569. register_syscore_ops(&mpic_syscore_ops);
  1570. return 0;
  1571. }
  1572. device_initcall(mpic_init_sys);
  1573. #endif