manage.c 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287
  1. /*
  2. * linux/kernel/irq/manage.c
  3. *
  4. * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar
  5. * Copyright (C) 2005-2006 Thomas Gleixner
  6. *
  7. * This file contains driver APIs to the irq subsystem.
  8. */
  9. #include <linux/irq.h>
  10. #include <linux/kthread.h>
  11. #include <linux/module.h>
  12. #include <linux/random.h>
  13. #include <linux/interrupt.h>
  14. #include <linux/slab.h>
  15. #include <linux/sched.h>
  16. #include "internals.h"
  17. /**
  18. * synchronize_irq - wait for pending IRQ handlers (on other CPUs)
  19. * @irq: interrupt number to wait for
  20. *
  21. * This function waits for any pending IRQ handlers for this interrupt
  22. * to complete before returning. If you use this function while
  23. * holding a resource the IRQ handler may need you will deadlock.
  24. *
  25. * This function may be called - with care - from IRQ context.
  26. */
  27. void synchronize_irq(unsigned int irq)
  28. {
  29. struct irq_desc *desc = irq_to_desc(irq);
  30. unsigned int status;
  31. if (!desc)
  32. return;
  33. do {
  34. unsigned long flags;
  35. /*
  36. * Wait until we're out of the critical section. This might
  37. * give the wrong answer due to the lack of memory barriers.
  38. */
  39. while (desc->status & IRQ_INPROGRESS)
  40. cpu_relax();
  41. /* Ok, that indicated we're done: double-check carefully. */
  42. raw_spin_lock_irqsave(&desc->lock, flags);
  43. status = desc->status;
  44. raw_spin_unlock_irqrestore(&desc->lock, flags);
  45. /* Oops, that failed? */
  46. } while (status & IRQ_INPROGRESS);
  47. /*
  48. * We made sure that no hardirq handler is running. Now verify
  49. * that no threaded handlers are active.
  50. */
  51. wait_event(desc->wait_for_threads, !atomic_read(&desc->threads_active));
  52. }
  53. EXPORT_SYMBOL(synchronize_irq);
  54. #ifdef CONFIG_SMP
  55. cpumask_var_t irq_default_affinity;
  56. /**
  57. * irq_can_set_affinity - Check if the affinity of a given irq can be set
  58. * @irq: Interrupt to check
  59. *
  60. */
  61. int irq_can_set_affinity(unsigned int irq)
  62. {
  63. struct irq_desc *desc = irq_to_desc(irq);
  64. if (CHECK_IRQ_PER_CPU(desc->status) || !desc->irq_data.chip ||
  65. !desc->irq_data.chip->irq_set_affinity)
  66. return 0;
  67. return 1;
  68. }
  69. /**
  70. * irq_set_thread_affinity - Notify irq threads to adjust affinity
  71. * @desc: irq descriptor which has affitnity changed
  72. *
  73. * We just set IRQTF_AFFINITY and delegate the affinity setting
  74. * to the interrupt thread itself. We can not call
  75. * set_cpus_allowed_ptr() here as we hold desc->lock and this
  76. * code can be called from hard interrupt context.
  77. */
  78. void irq_set_thread_affinity(struct irq_desc *desc)
  79. {
  80. struct irqaction *action = desc->action;
  81. while (action) {
  82. if (action->thread)
  83. set_bit(IRQTF_AFFINITY, &action->thread_flags);
  84. action = action->next;
  85. }
  86. }
  87. #ifdef CONFIG_GENERIC_PENDING_IRQ
  88. static inline bool irq_can_move_pcntxt(struct irq_desc *desc)
  89. {
  90. return desc->status & IRQ_MOVE_PCNTXT;
  91. }
  92. static inline bool irq_move_pending(struct irq_desc *desc)
  93. {
  94. return desc->status & IRQ_MOVE_PENDING;
  95. }
  96. static inline void
  97. irq_copy_pending(struct irq_desc *desc, const struct cpumask *mask)
  98. {
  99. cpumask_copy(desc->pending_mask, mask);
  100. }
  101. static inline void
  102. irq_get_pending(struct cpumask *mask, struct irq_desc *desc)
  103. {
  104. cpumask_copy(mask, desc->pending_mask);
  105. }
  106. #else
  107. static inline bool irq_can_move_pcntxt(struct irq_desc *desc) { return true; }
  108. static inline bool irq_move_pending(struct irq_desc *desc) { return false; }
  109. static inline void
  110. irq_copy_pending(struct irq_desc *desc, const struct cpumask *mask) { }
  111. static inline void
  112. irq_get_pending(struct cpumask *mask, struct irq_desc *desc) { }
  113. #endif
  114. /**
  115. * irq_set_affinity - Set the irq affinity of a given irq
  116. * @irq: Interrupt to set affinity
  117. * @cpumask: cpumask
  118. *
  119. */
  120. int irq_set_affinity(unsigned int irq, const struct cpumask *mask)
  121. {
  122. struct irq_desc *desc = irq_to_desc(irq);
  123. struct irq_chip *chip = desc->irq_data.chip;
  124. unsigned long flags;
  125. int ret = 0;
  126. if (!chip->irq_set_affinity)
  127. return -EINVAL;
  128. raw_spin_lock_irqsave(&desc->lock, flags);
  129. if (irq_can_move_pcntxt(desc)) {
  130. ret = chip->irq_set_affinity(&desc->irq_data, mask, false);
  131. switch (ret) {
  132. case IRQ_SET_MASK_OK:
  133. cpumask_copy(desc->irq_data.affinity, mask);
  134. case IRQ_SET_MASK_OK_NOCOPY:
  135. irq_set_thread_affinity(desc);
  136. ret = 0;
  137. }
  138. } else {
  139. desc->status |= IRQ_MOVE_PENDING;
  140. irq_copy_pending(desc, mask);
  141. }
  142. if (desc->affinity_notify) {
  143. kref_get(&desc->affinity_notify->kref);
  144. schedule_work(&desc->affinity_notify->work);
  145. }
  146. desc->status |= IRQ_AFFINITY_SET;
  147. raw_spin_unlock_irqrestore(&desc->lock, flags);
  148. return ret;
  149. }
  150. int irq_set_affinity_hint(unsigned int irq, const struct cpumask *m)
  151. {
  152. struct irq_desc *desc = irq_to_desc(irq);
  153. unsigned long flags;
  154. if (!desc)
  155. return -EINVAL;
  156. raw_spin_lock_irqsave(&desc->lock, flags);
  157. desc->affinity_hint = m;
  158. raw_spin_unlock_irqrestore(&desc->lock, flags);
  159. return 0;
  160. }
  161. EXPORT_SYMBOL_GPL(irq_set_affinity_hint);
  162. static void irq_affinity_notify(struct work_struct *work)
  163. {
  164. struct irq_affinity_notify *notify =
  165. container_of(work, struct irq_affinity_notify, work);
  166. struct irq_desc *desc = irq_to_desc(notify->irq);
  167. cpumask_var_t cpumask;
  168. unsigned long flags;
  169. if (!desc || !alloc_cpumask_var(&cpumask, GFP_KERNEL))
  170. goto out;
  171. raw_spin_lock_irqsave(&desc->lock, flags);
  172. if (irq_move_pending(desc))
  173. irq_get_pending(cpumask, desc);
  174. else
  175. cpumask_copy(cpumask, desc->irq_data.affinity);
  176. raw_spin_unlock_irqrestore(&desc->lock, flags);
  177. notify->notify(notify, cpumask);
  178. free_cpumask_var(cpumask);
  179. out:
  180. kref_put(&notify->kref, notify->release);
  181. }
  182. /**
  183. * irq_set_affinity_notifier - control notification of IRQ affinity changes
  184. * @irq: Interrupt for which to enable/disable notification
  185. * @notify: Context for notification, or %NULL to disable
  186. * notification. Function pointers must be initialised;
  187. * the other fields will be initialised by this function.
  188. *
  189. * Must be called in process context. Notification may only be enabled
  190. * after the IRQ is allocated and must be disabled before the IRQ is
  191. * freed using free_irq().
  192. */
  193. int
  194. irq_set_affinity_notifier(unsigned int irq, struct irq_affinity_notify *notify)
  195. {
  196. struct irq_desc *desc = irq_to_desc(irq);
  197. struct irq_affinity_notify *old_notify;
  198. unsigned long flags;
  199. /* The release function is promised process context */
  200. might_sleep();
  201. if (!desc)
  202. return -EINVAL;
  203. /* Complete initialisation of *notify */
  204. if (notify) {
  205. notify->irq = irq;
  206. kref_init(&notify->kref);
  207. INIT_WORK(&notify->work, irq_affinity_notify);
  208. }
  209. raw_spin_lock_irqsave(&desc->lock, flags);
  210. old_notify = desc->affinity_notify;
  211. desc->affinity_notify = notify;
  212. raw_spin_unlock_irqrestore(&desc->lock, flags);
  213. if (old_notify)
  214. kref_put(&old_notify->kref, old_notify->release);
  215. return 0;
  216. }
  217. EXPORT_SYMBOL_GPL(irq_set_affinity_notifier);
  218. #ifndef CONFIG_AUTO_IRQ_AFFINITY
  219. /*
  220. * Generic version of the affinity autoselector.
  221. */
  222. static int
  223. setup_affinity(unsigned int irq, struct irq_desc *desc, struct cpumask *mask)
  224. {
  225. struct irq_chip *chip = get_irq_desc_chip(desc);
  226. struct cpumask *set = irq_default_affinity;
  227. int ret;
  228. /* Excludes PER_CPU and NO_BALANCE interrupts */
  229. if (!irq_can_set_affinity(irq))
  230. return 0;
  231. /*
  232. * Preserve an userspace affinity setup, but make sure that
  233. * one of the targets is online.
  234. */
  235. if (desc->status & (IRQ_AFFINITY_SET)) {
  236. if (cpumask_intersects(desc->irq_data.affinity,
  237. cpu_online_mask))
  238. set = desc->irq_data.affinity;
  239. else
  240. desc->status &= ~IRQ_AFFINITY_SET;
  241. }
  242. cpumask_and(mask, cpu_online_mask, set);
  243. ret = chip->irq_set_affinity(&desc->irq_data, mask, false);
  244. switch (ret) {
  245. case IRQ_SET_MASK_OK:
  246. cpumask_copy(desc->irq_data.affinity, mask);
  247. case IRQ_SET_MASK_OK_NOCOPY:
  248. irq_set_thread_affinity(desc);
  249. }
  250. return 0;
  251. }
  252. #else
  253. static inline int
  254. setup_affinity(unsigned int irq, struct irq_desc *d, struct cpumask *mask)
  255. {
  256. return irq_select_affinity(irq);
  257. }
  258. #endif
  259. /*
  260. * Called when affinity is set via /proc/irq
  261. */
  262. int irq_select_affinity_usr(unsigned int irq, struct cpumask *mask)
  263. {
  264. struct irq_desc *desc = irq_to_desc(irq);
  265. unsigned long flags;
  266. int ret;
  267. raw_spin_lock_irqsave(&desc->lock, flags);
  268. ret = setup_affinity(irq, desc, mask);
  269. raw_spin_unlock_irqrestore(&desc->lock, flags);
  270. return ret;
  271. }
  272. #else
  273. static inline int
  274. setup_affinity(unsigned int irq, struct irq_desc *desc, struct cpumask *mask)
  275. {
  276. return 0;
  277. }
  278. #endif
  279. void __disable_irq(struct irq_desc *desc, unsigned int irq, bool suspend)
  280. {
  281. if (suspend) {
  282. if (!desc->action || (desc->action->flags & IRQF_NO_SUSPEND))
  283. return;
  284. desc->status |= IRQ_SUSPENDED;
  285. }
  286. if (!desc->depth++)
  287. irq_disable(desc);
  288. }
  289. /**
  290. * disable_irq_nosync - disable an irq without waiting
  291. * @irq: Interrupt to disable
  292. *
  293. * Disable the selected interrupt line. Disables and Enables are
  294. * nested.
  295. * Unlike disable_irq(), this function does not ensure existing
  296. * instances of the IRQ handler have completed before returning.
  297. *
  298. * This function may be called from IRQ context.
  299. */
  300. void disable_irq_nosync(unsigned int irq)
  301. {
  302. struct irq_desc *desc = irq_to_desc(irq);
  303. unsigned long flags;
  304. if (!desc)
  305. return;
  306. chip_bus_lock(desc);
  307. raw_spin_lock_irqsave(&desc->lock, flags);
  308. __disable_irq(desc, irq, false);
  309. raw_spin_unlock_irqrestore(&desc->lock, flags);
  310. chip_bus_sync_unlock(desc);
  311. }
  312. EXPORT_SYMBOL(disable_irq_nosync);
  313. /**
  314. * disable_irq - disable an irq and wait for completion
  315. * @irq: Interrupt to disable
  316. *
  317. * Disable the selected interrupt line. Enables and Disables are
  318. * nested.
  319. * This function waits for any pending IRQ handlers for this interrupt
  320. * to complete before returning. If you use this function while
  321. * holding a resource the IRQ handler may need you will deadlock.
  322. *
  323. * This function may be called - with care - from IRQ context.
  324. */
  325. void disable_irq(unsigned int irq)
  326. {
  327. struct irq_desc *desc = irq_to_desc(irq);
  328. if (!desc)
  329. return;
  330. disable_irq_nosync(irq);
  331. if (desc->action)
  332. synchronize_irq(irq);
  333. }
  334. EXPORT_SYMBOL(disable_irq);
  335. void __enable_irq(struct irq_desc *desc, unsigned int irq, bool resume)
  336. {
  337. if (resume) {
  338. if (!(desc->status & IRQ_SUSPENDED)) {
  339. if (!desc->action)
  340. return;
  341. if (!(desc->action->flags & IRQF_FORCE_RESUME))
  342. return;
  343. /* Pretend that it got disabled ! */
  344. desc->depth++;
  345. }
  346. desc->status &= ~IRQ_SUSPENDED;
  347. }
  348. switch (desc->depth) {
  349. case 0:
  350. err_out:
  351. WARN(1, KERN_WARNING "Unbalanced enable for IRQ %d\n", irq);
  352. break;
  353. case 1: {
  354. if (desc->status & IRQ_SUSPENDED)
  355. goto err_out;
  356. /* Prevent probing on this irq: */
  357. desc->status |= IRQ_NOPROBE;
  358. irq_enable(desc);
  359. check_irq_resend(desc, irq);
  360. /* fall-through */
  361. }
  362. default:
  363. desc->depth--;
  364. }
  365. }
  366. /**
  367. * enable_irq - enable handling of an irq
  368. * @irq: Interrupt to enable
  369. *
  370. * Undoes the effect of one call to disable_irq(). If this
  371. * matches the last disable, processing of interrupts on this
  372. * IRQ line is re-enabled.
  373. *
  374. * This function may be called from IRQ context only when
  375. * desc->irq_data.chip->bus_lock and desc->chip->bus_sync_unlock are NULL !
  376. */
  377. void enable_irq(unsigned int irq)
  378. {
  379. struct irq_desc *desc = irq_to_desc(irq);
  380. unsigned long flags;
  381. if (!desc)
  382. return;
  383. if (WARN(!desc->irq_data.chip,
  384. KERN_ERR "enable_irq before setup/request_irq: irq %u\n", irq))
  385. return;
  386. chip_bus_lock(desc);
  387. raw_spin_lock_irqsave(&desc->lock, flags);
  388. __enable_irq(desc, irq, false);
  389. raw_spin_unlock_irqrestore(&desc->lock, flags);
  390. chip_bus_sync_unlock(desc);
  391. }
  392. EXPORT_SYMBOL(enable_irq);
  393. static int set_irq_wake_real(unsigned int irq, unsigned int on)
  394. {
  395. struct irq_desc *desc = irq_to_desc(irq);
  396. int ret = -ENXIO;
  397. if (desc->irq_data.chip->irq_set_wake)
  398. ret = desc->irq_data.chip->irq_set_wake(&desc->irq_data, on);
  399. return ret;
  400. }
  401. /**
  402. * irq_set_irq_wake - control irq power management wakeup
  403. * @irq: interrupt to control
  404. * @on: enable/disable power management wakeup
  405. *
  406. * Enable/disable power management wakeup mode, which is
  407. * disabled by default. Enables and disables must match,
  408. * just as they match for non-wakeup mode support.
  409. *
  410. * Wakeup mode lets this IRQ wake the system from sleep
  411. * states like "suspend to RAM".
  412. */
  413. int irq_set_irq_wake(unsigned int irq, unsigned int on)
  414. {
  415. struct irq_desc *desc = irq_to_desc(irq);
  416. unsigned long flags;
  417. int ret = 0;
  418. /* wakeup-capable irqs can be shared between drivers that
  419. * don't need to have the same sleep mode behaviors.
  420. */
  421. chip_bus_lock(desc);
  422. raw_spin_lock_irqsave(&desc->lock, flags);
  423. if (on) {
  424. if (desc->wake_depth++ == 0) {
  425. ret = set_irq_wake_real(irq, on);
  426. if (ret)
  427. desc->wake_depth = 0;
  428. else
  429. desc->status |= IRQ_WAKEUP;
  430. }
  431. } else {
  432. if (desc->wake_depth == 0) {
  433. WARN(1, "Unbalanced IRQ %d wake disable\n", irq);
  434. } else if (--desc->wake_depth == 0) {
  435. ret = set_irq_wake_real(irq, on);
  436. if (ret)
  437. desc->wake_depth = 1;
  438. else
  439. desc->status &= ~IRQ_WAKEUP;
  440. }
  441. }
  442. raw_spin_unlock_irqrestore(&desc->lock, flags);
  443. chip_bus_sync_unlock(desc);
  444. return ret;
  445. }
  446. EXPORT_SYMBOL(irq_set_irq_wake);
  447. /*
  448. * Internal function that tells the architecture code whether a
  449. * particular irq has been exclusively allocated or is available
  450. * for driver use.
  451. */
  452. int can_request_irq(unsigned int irq, unsigned long irqflags)
  453. {
  454. struct irq_desc *desc = irq_to_desc(irq);
  455. struct irqaction *action;
  456. unsigned long flags;
  457. if (!desc)
  458. return 0;
  459. if (desc->status & IRQ_NOREQUEST)
  460. return 0;
  461. raw_spin_lock_irqsave(&desc->lock, flags);
  462. action = desc->action;
  463. if (action)
  464. if (irqflags & action->flags & IRQF_SHARED)
  465. action = NULL;
  466. raw_spin_unlock_irqrestore(&desc->lock, flags);
  467. return !action;
  468. }
  469. void compat_irq_chip_set_default_handler(struct irq_desc *desc)
  470. {
  471. /*
  472. * If the architecture still has not overriden
  473. * the flow handler then zap the default. This
  474. * should catch incorrect flow-type setting.
  475. */
  476. if (desc->handle_irq == &handle_bad_irq)
  477. desc->handle_irq = NULL;
  478. }
  479. int __irq_set_trigger(struct irq_desc *desc, unsigned int irq,
  480. unsigned long flags)
  481. {
  482. int ret;
  483. struct irq_chip *chip = desc->irq_data.chip;
  484. if (!chip || !chip->irq_set_type) {
  485. /*
  486. * IRQF_TRIGGER_* but the PIC does not support multiple
  487. * flow-types?
  488. */
  489. pr_debug("No set_type function for IRQ %d (%s)\n", irq,
  490. chip ? (chip->name ? : "unknown") : "unknown");
  491. return 0;
  492. }
  493. /* caller masked out all except trigger mode flags */
  494. ret = chip->irq_set_type(&desc->irq_data, flags);
  495. if (ret)
  496. pr_err("setting trigger mode %lu for irq %u failed (%pF)\n",
  497. flags, irq, chip->irq_set_type);
  498. else {
  499. if (flags & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
  500. flags |= IRQ_LEVEL;
  501. /* note that IRQF_TRIGGER_MASK == IRQ_TYPE_SENSE_MASK */
  502. desc->status &= ~(IRQ_LEVEL | IRQ_TYPE_SENSE_MASK);
  503. desc->status |= flags;
  504. if (chip != desc->irq_data.chip)
  505. irq_chip_set_defaults(desc->irq_data.chip);
  506. }
  507. return ret;
  508. }
  509. /*
  510. * Default primary interrupt handler for threaded interrupts. Is
  511. * assigned as primary handler when request_threaded_irq is called
  512. * with handler == NULL. Useful for oneshot interrupts.
  513. */
  514. static irqreturn_t irq_default_primary_handler(int irq, void *dev_id)
  515. {
  516. return IRQ_WAKE_THREAD;
  517. }
  518. /*
  519. * Primary handler for nested threaded interrupts. Should never be
  520. * called.
  521. */
  522. static irqreturn_t irq_nested_primary_handler(int irq, void *dev_id)
  523. {
  524. WARN(1, "Primary handler called for nested irq %d\n", irq);
  525. return IRQ_NONE;
  526. }
  527. static int irq_wait_for_interrupt(struct irqaction *action)
  528. {
  529. while (!kthread_should_stop()) {
  530. set_current_state(TASK_INTERRUPTIBLE);
  531. if (test_and_clear_bit(IRQTF_RUNTHREAD,
  532. &action->thread_flags)) {
  533. __set_current_state(TASK_RUNNING);
  534. return 0;
  535. }
  536. schedule();
  537. }
  538. return -1;
  539. }
  540. /*
  541. * Oneshot interrupts keep the irq line masked until the threaded
  542. * handler finished. unmask if the interrupt has not been disabled and
  543. * is marked MASKED.
  544. */
  545. static void irq_finalize_oneshot(unsigned int irq, struct irq_desc *desc)
  546. {
  547. again:
  548. chip_bus_lock(desc);
  549. raw_spin_lock_irq(&desc->lock);
  550. /*
  551. * Implausible though it may be we need to protect us against
  552. * the following scenario:
  553. *
  554. * The thread is faster done than the hard interrupt handler
  555. * on the other CPU. If we unmask the irq line then the
  556. * interrupt can come in again and masks the line, leaves due
  557. * to IRQ_INPROGRESS and the irq line is masked forever.
  558. */
  559. if (unlikely(desc->status & IRQ_INPROGRESS)) {
  560. raw_spin_unlock_irq(&desc->lock);
  561. chip_bus_sync_unlock(desc);
  562. cpu_relax();
  563. goto again;
  564. }
  565. if (!(desc->status & IRQ_DISABLED) && (desc->status & IRQ_MASKED)) {
  566. desc->status &= ~IRQ_MASKED;
  567. desc->irq_data.chip->irq_unmask(&desc->irq_data);
  568. }
  569. raw_spin_unlock_irq(&desc->lock);
  570. chip_bus_sync_unlock(desc);
  571. }
  572. #ifdef CONFIG_SMP
  573. /*
  574. * Check whether we need to change the affinity of the interrupt thread.
  575. */
  576. static void
  577. irq_thread_check_affinity(struct irq_desc *desc, struct irqaction *action)
  578. {
  579. cpumask_var_t mask;
  580. if (!test_and_clear_bit(IRQTF_AFFINITY, &action->thread_flags))
  581. return;
  582. /*
  583. * In case we are out of memory we set IRQTF_AFFINITY again and
  584. * try again next time
  585. */
  586. if (!alloc_cpumask_var(&mask, GFP_KERNEL)) {
  587. set_bit(IRQTF_AFFINITY, &action->thread_flags);
  588. return;
  589. }
  590. raw_spin_lock_irq(&desc->lock);
  591. cpumask_copy(mask, desc->irq_data.affinity);
  592. raw_spin_unlock_irq(&desc->lock);
  593. set_cpus_allowed_ptr(current, mask);
  594. free_cpumask_var(mask);
  595. }
  596. #else
  597. static inline void
  598. irq_thread_check_affinity(struct irq_desc *desc, struct irqaction *action) { }
  599. #endif
  600. /*
  601. * Interrupt handler thread
  602. */
  603. static int irq_thread(void *data)
  604. {
  605. static const struct sched_param param = {
  606. .sched_priority = MAX_USER_RT_PRIO/2,
  607. };
  608. struct irqaction *action = data;
  609. struct irq_desc *desc = irq_to_desc(action->irq);
  610. int wake, oneshot = desc->status & IRQ_ONESHOT;
  611. sched_setscheduler(current, SCHED_FIFO, &param);
  612. current->irqaction = action;
  613. while (!irq_wait_for_interrupt(action)) {
  614. irq_thread_check_affinity(desc, action);
  615. atomic_inc(&desc->threads_active);
  616. raw_spin_lock_irq(&desc->lock);
  617. if (unlikely(desc->status & IRQ_DISABLED)) {
  618. /*
  619. * CHECKME: We might need a dedicated
  620. * IRQ_THREAD_PENDING flag here, which
  621. * retriggers the thread in check_irq_resend()
  622. * but AFAICT IRQ_PENDING should be fine as it
  623. * retriggers the interrupt itself --- tglx
  624. */
  625. desc->status |= IRQ_PENDING;
  626. raw_spin_unlock_irq(&desc->lock);
  627. } else {
  628. raw_spin_unlock_irq(&desc->lock);
  629. action->thread_fn(action->irq, action->dev_id);
  630. if (oneshot)
  631. irq_finalize_oneshot(action->irq, desc);
  632. }
  633. wake = atomic_dec_and_test(&desc->threads_active);
  634. if (wake && waitqueue_active(&desc->wait_for_threads))
  635. wake_up(&desc->wait_for_threads);
  636. }
  637. /*
  638. * Clear irqaction. Otherwise exit_irq_thread() would make
  639. * fuzz about an active irq thread going into nirvana.
  640. */
  641. current->irqaction = NULL;
  642. return 0;
  643. }
  644. /*
  645. * Called from do_exit()
  646. */
  647. void exit_irq_thread(void)
  648. {
  649. struct task_struct *tsk = current;
  650. if (!tsk->irqaction)
  651. return;
  652. printk(KERN_ERR
  653. "exiting task \"%s\" (%d) is an active IRQ thread (irq %d)\n",
  654. tsk->comm ? tsk->comm : "", tsk->pid, tsk->irqaction->irq);
  655. /*
  656. * Set the THREAD DIED flag to prevent further wakeups of the
  657. * soon to be gone threaded handler.
  658. */
  659. set_bit(IRQTF_DIED, &tsk->irqaction->flags);
  660. }
  661. /*
  662. * Internal function to register an irqaction - typically used to
  663. * allocate special interrupts that are part of the architecture.
  664. */
  665. static int
  666. __setup_irq(unsigned int irq, struct irq_desc *desc, struct irqaction *new)
  667. {
  668. struct irqaction *old, **old_ptr;
  669. const char *old_name = NULL;
  670. unsigned long flags;
  671. int ret, nested, shared = 0;
  672. cpumask_var_t mask;
  673. if (!desc)
  674. return -EINVAL;
  675. if (desc->irq_data.chip == &no_irq_chip)
  676. return -ENOSYS;
  677. /*
  678. * Some drivers like serial.c use request_irq() heavily,
  679. * so we have to be careful not to interfere with a
  680. * running system.
  681. */
  682. if (new->flags & IRQF_SAMPLE_RANDOM) {
  683. /*
  684. * This function might sleep, we want to call it first,
  685. * outside of the atomic block.
  686. * Yes, this might clear the entropy pool if the wrong
  687. * driver is attempted to be loaded, without actually
  688. * installing a new handler, but is this really a problem,
  689. * only the sysadmin is able to do this.
  690. */
  691. rand_initialize_irq(irq);
  692. }
  693. /* Oneshot interrupts are not allowed with shared */
  694. if ((new->flags & IRQF_ONESHOT) && (new->flags & IRQF_SHARED))
  695. return -EINVAL;
  696. /*
  697. * Check whether the interrupt nests into another interrupt
  698. * thread.
  699. */
  700. nested = desc->status & IRQ_NESTED_THREAD;
  701. if (nested) {
  702. if (!new->thread_fn)
  703. return -EINVAL;
  704. /*
  705. * Replace the primary handler which was provided from
  706. * the driver for non nested interrupt handling by the
  707. * dummy function which warns when called.
  708. */
  709. new->handler = irq_nested_primary_handler;
  710. }
  711. /*
  712. * Create a handler thread when a thread function is supplied
  713. * and the interrupt does not nest into another interrupt
  714. * thread.
  715. */
  716. if (new->thread_fn && !nested) {
  717. struct task_struct *t;
  718. t = kthread_create(irq_thread, new, "irq/%d-%s", irq,
  719. new->name);
  720. if (IS_ERR(t))
  721. return PTR_ERR(t);
  722. /*
  723. * We keep the reference to the task struct even if
  724. * the thread dies to avoid that the interrupt code
  725. * references an already freed task_struct.
  726. */
  727. get_task_struct(t);
  728. new->thread = t;
  729. }
  730. if (!alloc_cpumask_var(&mask, GFP_KERNEL)) {
  731. ret = -ENOMEM;
  732. goto out_thread;
  733. }
  734. /*
  735. * The following block of code has to be executed atomically
  736. */
  737. raw_spin_lock_irqsave(&desc->lock, flags);
  738. old_ptr = &desc->action;
  739. old = *old_ptr;
  740. if (old) {
  741. /*
  742. * Can't share interrupts unless both agree to and are
  743. * the same type (level, edge, polarity). So both flag
  744. * fields must have IRQF_SHARED set and the bits which
  745. * set the trigger type must match.
  746. */
  747. if (!((old->flags & new->flags) & IRQF_SHARED) ||
  748. ((old->flags ^ new->flags) & IRQF_TRIGGER_MASK)) {
  749. old_name = old->name;
  750. goto mismatch;
  751. }
  752. #if defined(CONFIG_IRQ_PER_CPU)
  753. /* All handlers must agree on per-cpuness */
  754. if ((old->flags & IRQF_PERCPU) !=
  755. (new->flags & IRQF_PERCPU))
  756. goto mismatch;
  757. #endif
  758. /* add new interrupt at end of irq queue */
  759. do {
  760. old_ptr = &old->next;
  761. old = *old_ptr;
  762. } while (old);
  763. shared = 1;
  764. }
  765. if (!shared) {
  766. irq_chip_set_defaults(desc->irq_data.chip);
  767. init_waitqueue_head(&desc->wait_for_threads);
  768. /* Setup the type (level, edge polarity) if configured: */
  769. if (new->flags & IRQF_TRIGGER_MASK) {
  770. ret = __irq_set_trigger(desc, irq,
  771. new->flags & IRQF_TRIGGER_MASK);
  772. if (ret)
  773. goto out_mask;
  774. } else
  775. compat_irq_chip_set_default_handler(desc);
  776. #if defined(CONFIG_IRQ_PER_CPU)
  777. if (new->flags & IRQF_PERCPU)
  778. desc->status |= IRQ_PER_CPU;
  779. #endif
  780. desc->status &= ~(IRQ_AUTODETECT | IRQ_WAITING | IRQ_ONESHOT |
  781. IRQ_INPROGRESS | IRQ_SPURIOUS_DISABLED);
  782. if (new->flags & IRQF_ONESHOT)
  783. desc->status |= IRQ_ONESHOT;
  784. if (!(desc->status & IRQ_NOAUTOEN))
  785. irq_startup(desc);
  786. else
  787. /* Undo nested disables: */
  788. desc->depth = 1;
  789. /* Exclude IRQ from balancing if requested */
  790. if (new->flags & IRQF_NOBALANCING)
  791. desc->status |= IRQ_NO_BALANCING;
  792. /* Set default affinity mask once everything is setup */
  793. setup_affinity(irq, desc, mask);
  794. } else if ((new->flags & IRQF_TRIGGER_MASK)
  795. && (new->flags & IRQF_TRIGGER_MASK)
  796. != (desc->status & IRQ_TYPE_SENSE_MASK)) {
  797. /* hope the handler works with the actual trigger mode... */
  798. pr_warning("IRQ %d uses trigger mode %d; requested %d\n",
  799. irq, (int)(desc->status & IRQ_TYPE_SENSE_MASK),
  800. (int)(new->flags & IRQF_TRIGGER_MASK));
  801. }
  802. new->irq = irq;
  803. *old_ptr = new;
  804. /* Reset broken irq detection when installing new handler */
  805. desc->irq_count = 0;
  806. desc->irqs_unhandled = 0;
  807. /*
  808. * Check whether we disabled the irq via the spurious handler
  809. * before. Reenable it and give it another chance.
  810. */
  811. if (shared && (desc->status & IRQ_SPURIOUS_DISABLED)) {
  812. desc->status &= ~IRQ_SPURIOUS_DISABLED;
  813. __enable_irq(desc, irq, false);
  814. }
  815. raw_spin_unlock_irqrestore(&desc->lock, flags);
  816. /*
  817. * Strictly no need to wake it up, but hung_task complains
  818. * when no hard interrupt wakes the thread up.
  819. */
  820. if (new->thread)
  821. wake_up_process(new->thread);
  822. register_irq_proc(irq, desc);
  823. new->dir = NULL;
  824. register_handler_proc(irq, new);
  825. return 0;
  826. mismatch:
  827. #ifdef CONFIG_DEBUG_SHIRQ
  828. if (!(new->flags & IRQF_PROBE_SHARED)) {
  829. printk(KERN_ERR "IRQ handler type mismatch for IRQ %d\n", irq);
  830. if (old_name)
  831. printk(KERN_ERR "current handler: %s\n", old_name);
  832. dump_stack();
  833. }
  834. #endif
  835. ret = -EBUSY;
  836. out_mask:
  837. free_cpumask_var(mask);
  838. out_thread:
  839. raw_spin_unlock_irqrestore(&desc->lock, flags);
  840. if (new->thread) {
  841. struct task_struct *t = new->thread;
  842. new->thread = NULL;
  843. if (likely(!test_bit(IRQTF_DIED, &new->thread_flags)))
  844. kthread_stop(t);
  845. put_task_struct(t);
  846. }
  847. return ret;
  848. }
  849. /**
  850. * setup_irq - setup an interrupt
  851. * @irq: Interrupt line to setup
  852. * @act: irqaction for the interrupt
  853. *
  854. * Used to statically setup interrupts in the early boot process.
  855. */
  856. int setup_irq(unsigned int irq, struct irqaction *act)
  857. {
  858. int retval;
  859. struct irq_desc *desc = irq_to_desc(irq);
  860. chip_bus_lock(desc);
  861. retval = __setup_irq(irq, desc, act);
  862. chip_bus_sync_unlock(desc);
  863. return retval;
  864. }
  865. EXPORT_SYMBOL_GPL(setup_irq);
  866. /*
  867. * Internal function to unregister an irqaction - used to free
  868. * regular and special interrupts that are part of the architecture.
  869. */
  870. static struct irqaction *__free_irq(unsigned int irq, void *dev_id)
  871. {
  872. struct irq_desc *desc = irq_to_desc(irq);
  873. struct irqaction *action, **action_ptr;
  874. unsigned long flags;
  875. WARN(in_interrupt(), "Trying to free IRQ %d from IRQ context!\n", irq);
  876. if (!desc)
  877. return NULL;
  878. raw_spin_lock_irqsave(&desc->lock, flags);
  879. /*
  880. * There can be multiple actions per IRQ descriptor, find the right
  881. * one based on the dev_id:
  882. */
  883. action_ptr = &desc->action;
  884. for (;;) {
  885. action = *action_ptr;
  886. if (!action) {
  887. WARN(1, "Trying to free already-free IRQ %d\n", irq);
  888. raw_spin_unlock_irqrestore(&desc->lock, flags);
  889. return NULL;
  890. }
  891. if (action->dev_id == dev_id)
  892. break;
  893. action_ptr = &action->next;
  894. }
  895. /* Found it - now remove it from the list of entries: */
  896. *action_ptr = action->next;
  897. /* Currently used only by UML, might disappear one day: */
  898. #ifdef CONFIG_IRQ_RELEASE_METHOD
  899. if (desc->irq_data.chip->release)
  900. desc->irq_data.chip->release(irq, dev_id);
  901. #endif
  902. /* If this was the last handler, shut down the IRQ line: */
  903. if (!desc->action)
  904. irq_shutdown(desc);
  905. #ifdef CONFIG_SMP
  906. /* make sure affinity_hint is cleaned up */
  907. if (WARN_ON_ONCE(desc->affinity_hint))
  908. desc->affinity_hint = NULL;
  909. #endif
  910. raw_spin_unlock_irqrestore(&desc->lock, flags);
  911. unregister_handler_proc(irq, action);
  912. /* Make sure it's not being used on another CPU: */
  913. synchronize_irq(irq);
  914. #ifdef CONFIG_DEBUG_SHIRQ
  915. /*
  916. * It's a shared IRQ -- the driver ought to be prepared for an IRQ
  917. * event to happen even now it's being freed, so let's make sure that
  918. * is so by doing an extra call to the handler ....
  919. *
  920. * ( We do this after actually deregistering it, to make sure that a
  921. * 'real' IRQ doesn't run in * parallel with our fake. )
  922. */
  923. if (action->flags & IRQF_SHARED) {
  924. local_irq_save(flags);
  925. action->handler(irq, dev_id);
  926. local_irq_restore(flags);
  927. }
  928. #endif
  929. if (action->thread) {
  930. if (!test_bit(IRQTF_DIED, &action->thread_flags))
  931. kthread_stop(action->thread);
  932. put_task_struct(action->thread);
  933. }
  934. return action;
  935. }
  936. /**
  937. * remove_irq - free an interrupt
  938. * @irq: Interrupt line to free
  939. * @act: irqaction for the interrupt
  940. *
  941. * Used to remove interrupts statically setup by the early boot process.
  942. */
  943. void remove_irq(unsigned int irq, struct irqaction *act)
  944. {
  945. __free_irq(irq, act->dev_id);
  946. }
  947. EXPORT_SYMBOL_GPL(remove_irq);
  948. /**
  949. * free_irq - free an interrupt allocated with request_irq
  950. * @irq: Interrupt line to free
  951. * @dev_id: Device identity to free
  952. *
  953. * Remove an interrupt handler. The handler is removed and if the
  954. * interrupt line is no longer in use by any driver it is disabled.
  955. * On a shared IRQ the caller must ensure the interrupt is disabled
  956. * on the card it drives before calling this function. The function
  957. * does not return until any executing interrupts for this IRQ
  958. * have completed.
  959. *
  960. * This function must not be called from interrupt context.
  961. */
  962. void free_irq(unsigned int irq, void *dev_id)
  963. {
  964. struct irq_desc *desc = irq_to_desc(irq);
  965. if (!desc)
  966. return;
  967. #ifdef CONFIG_SMP
  968. if (WARN_ON(desc->affinity_notify))
  969. desc->affinity_notify = NULL;
  970. #endif
  971. chip_bus_lock(desc);
  972. kfree(__free_irq(irq, dev_id));
  973. chip_bus_sync_unlock(desc);
  974. }
  975. EXPORT_SYMBOL(free_irq);
  976. /**
  977. * request_threaded_irq - allocate an interrupt line
  978. * @irq: Interrupt line to allocate
  979. * @handler: Function to be called when the IRQ occurs.
  980. * Primary handler for threaded interrupts
  981. * If NULL and thread_fn != NULL the default
  982. * primary handler is installed
  983. * @thread_fn: Function called from the irq handler thread
  984. * If NULL, no irq thread is created
  985. * @irqflags: Interrupt type flags
  986. * @devname: An ascii name for the claiming device
  987. * @dev_id: A cookie passed back to the handler function
  988. *
  989. * This call allocates interrupt resources and enables the
  990. * interrupt line and IRQ handling. From the point this
  991. * call is made your handler function may be invoked. Since
  992. * your handler function must clear any interrupt the board
  993. * raises, you must take care both to initialise your hardware
  994. * and to set up the interrupt handler in the right order.
  995. *
  996. * If you want to set up a threaded irq handler for your device
  997. * then you need to supply @handler and @thread_fn. @handler ist
  998. * still called in hard interrupt context and has to check
  999. * whether the interrupt originates from the device. If yes it
  1000. * needs to disable the interrupt on the device and return
  1001. * IRQ_WAKE_THREAD which will wake up the handler thread and run
  1002. * @thread_fn. This split handler design is necessary to support
  1003. * shared interrupts.
  1004. *
  1005. * Dev_id must be globally unique. Normally the address of the
  1006. * device data structure is used as the cookie. Since the handler
  1007. * receives this value it makes sense to use it.
  1008. *
  1009. * If your interrupt is shared you must pass a non NULL dev_id
  1010. * as this is required when freeing the interrupt.
  1011. *
  1012. * Flags:
  1013. *
  1014. * IRQF_SHARED Interrupt is shared
  1015. * IRQF_SAMPLE_RANDOM The interrupt can be used for entropy
  1016. * IRQF_TRIGGER_* Specify active edge(s) or level
  1017. *
  1018. */
  1019. int request_threaded_irq(unsigned int irq, irq_handler_t handler,
  1020. irq_handler_t thread_fn, unsigned long irqflags,
  1021. const char *devname, void *dev_id)
  1022. {
  1023. struct irqaction *action;
  1024. struct irq_desc *desc;
  1025. int retval;
  1026. /*
  1027. * Sanity-check: shared interrupts must pass in a real dev-ID,
  1028. * otherwise we'll have trouble later trying to figure out
  1029. * which interrupt is which (messes up the interrupt freeing
  1030. * logic etc).
  1031. */
  1032. if ((irqflags & IRQF_SHARED) && !dev_id)
  1033. return -EINVAL;
  1034. desc = irq_to_desc(irq);
  1035. if (!desc)
  1036. return -EINVAL;
  1037. if (desc->status & IRQ_NOREQUEST)
  1038. return -EINVAL;
  1039. if (!handler) {
  1040. if (!thread_fn)
  1041. return -EINVAL;
  1042. handler = irq_default_primary_handler;
  1043. }
  1044. action = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
  1045. if (!action)
  1046. return -ENOMEM;
  1047. action->handler = handler;
  1048. action->thread_fn = thread_fn;
  1049. action->flags = irqflags;
  1050. action->name = devname;
  1051. action->dev_id = dev_id;
  1052. chip_bus_lock(desc);
  1053. retval = __setup_irq(irq, desc, action);
  1054. chip_bus_sync_unlock(desc);
  1055. if (retval)
  1056. kfree(action);
  1057. #ifdef CONFIG_DEBUG_SHIRQ_FIXME
  1058. if (!retval && (irqflags & IRQF_SHARED)) {
  1059. /*
  1060. * It's a shared IRQ -- the driver ought to be prepared for it
  1061. * to happen immediately, so let's make sure....
  1062. * We disable the irq to make sure that a 'real' IRQ doesn't
  1063. * run in parallel with our fake.
  1064. */
  1065. unsigned long flags;
  1066. disable_irq(irq);
  1067. local_irq_save(flags);
  1068. handler(irq, dev_id);
  1069. local_irq_restore(flags);
  1070. enable_irq(irq);
  1071. }
  1072. #endif
  1073. return retval;
  1074. }
  1075. EXPORT_SYMBOL(request_threaded_irq);
  1076. /**
  1077. * request_any_context_irq - allocate an interrupt line
  1078. * @irq: Interrupt line to allocate
  1079. * @handler: Function to be called when the IRQ occurs.
  1080. * Threaded handler for threaded interrupts.
  1081. * @flags: Interrupt type flags
  1082. * @name: An ascii name for the claiming device
  1083. * @dev_id: A cookie passed back to the handler function
  1084. *
  1085. * This call allocates interrupt resources and enables the
  1086. * interrupt line and IRQ handling. It selects either a
  1087. * hardirq or threaded handling method depending on the
  1088. * context.
  1089. *
  1090. * On failure, it returns a negative value. On success,
  1091. * it returns either IRQC_IS_HARDIRQ or IRQC_IS_NESTED.
  1092. */
  1093. int request_any_context_irq(unsigned int irq, irq_handler_t handler,
  1094. unsigned long flags, const char *name, void *dev_id)
  1095. {
  1096. struct irq_desc *desc = irq_to_desc(irq);
  1097. int ret;
  1098. if (!desc)
  1099. return -EINVAL;
  1100. if (desc->status & IRQ_NESTED_THREAD) {
  1101. ret = request_threaded_irq(irq, NULL, handler,
  1102. flags, name, dev_id);
  1103. return !ret ? IRQC_IS_NESTED : ret;
  1104. }
  1105. ret = request_irq(irq, handler, flags, name, dev_id);
  1106. return !ret ? IRQC_IS_HARDIRQ : ret;
  1107. }
  1108. EXPORT_SYMBOL_GPL(request_any_context_irq);