irq.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  1. #ifndef _LINUX_IRQ_H
  2. #define _LINUX_IRQ_H
  3. /*
  4. * Please do not include this file in generic code. There is currently
  5. * no requirement for any architecture to implement anything held
  6. * within this file.
  7. *
  8. * Thanks. --rmk
  9. */
  10. #include <linux/smp.h>
  11. #ifndef CONFIG_S390
  12. #include <linux/linkage.h>
  13. #include <linux/cache.h>
  14. #include <linux/spinlock.h>
  15. #include <linux/cpumask.h>
  16. #include <linux/gfp.h>
  17. #include <linux/irqreturn.h>
  18. #include <linux/irqnr.h>
  19. #include <linux/errno.h>
  20. #include <linux/topology.h>
  21. #include <linux/wait.h>
  22. #include <asm/irq.h>
  23. #include <asm/ptrace.h>
  24. #include <asm/irq_regs.h>
  25. struct irq_desc;
  26. typedef void (*irq_flow_handler_t)(unsigned int irq,
  27. struct irq_desc *desc);
  28. /*
  29. * IRQ line status.
  30. *
  31. * Bits 0-7 are reserved for the IRQF_* bits in linux/interrupt.h
  32. *
  33. * IRQ types
  34. */
  35. #define IRQ_TYPE_NONE 0x00000000 /* Default, unspecified type */
  36. #define IRQ_TYPE_EDGE_RISING 0x00000001 /* Edge rising type */
  37. #define IRQ_TYPE_EDGE_FALLING 0x00000002 /* Edge falling type */
  38. #define IRQ_TYPE_EDGE_BOTH (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)
  39. #define IRQ_TYPE_LEVEL_HIGH 0x00000004 /* Level high type */
  40. #define IRQ_TYPE_LEVEL_LOW 0x00000008 /* Level low type */
  41. #define IRQ_TYPE_SENSE_MASK 0x0000000f /* Mask of the above */
  42. #define IRQ_TYPE_PROBE 0x00000010 /* Probing in progress */
  43. /* Internal flags */
  44. #ifndef CONFIG_GENERIC_HARDIRQS_NO_COMPAT
  45. #define IRQ_INPROGRESS 0x00000100 /* DEPRECATED */
  46. #endif
  47. #define IRQ_DISABLED 0x00000200 /* IRQ disabled - do not enter! */
  48. #define IRQ_PENDING 0x00000400 /* IRQ pending - replay on enable */
  49. #define IRQ_REPLAY 0x00000800 /* IRQ has been replayed but not acked yet */
  50. #define IRQ_WAITING 0x00002000 /* IRQ not yet seen - for autodetection */
  51. #define IRQ_LEVEL 0x00004000 /* IRQ level triggered */
  52. #define IRQ_MASKED 0x00008000 /* IRQ masked - shouldn't be seen again */
  53. #define IRQ_PER_CPU 0x00010000 /* IRQ is per CPU */
  54. #define IRQ_NOPROBE 0x00020000 /* IRQ is not valid for probing */
  55. #define IRQ_NOREQUEST 0x00040000 /* IRQ cannot be requested */
  56. #define IRQ_NOAUTOEN 0x00080000 /* IRQ will not be enabled on request irq */
  57. #define IRQ_WAKEUP 0x00100000 /* IRQ triggers system wakeup */
  58. #define IRQ_MOVE_PENDING 0x00200000 /* need to re-target IRQ destination */
  59. #define IRQ_NO_BALANCING 0x00400000 /* IRQ is excluded from balancing */
  60. #define IRQ_MOVE_PCNTXT 0x01000000 /* IRQ migration from process context */
  61. #define IRQ_AFFINITY_SET 0x02000000 /* IRQ affinity was set from userspace*/
  62. #define IRQ_SUSPENDED 0x04000000 /* IRQ has gone through suspend sequence */
  63. #define IRQ_NESTED_THREAD 0x10000000 /* IRQ is nested into another, no own handler thread */
  64. #define IRQF_MODIFY_MASK \
  65. (IRQ_TYPE_SENSE_MASK | IRQ_NOPROBE | IRQ_NOREQUEST | \
  66. IRQ_NOAUTOEN | IRQ_MOVE_PCNTXT | IRQ_LEVEL | IRQ_NO_BALANCING | \
  67. IRQ_PER_CPU | IRQ_NESTED_THREAD)
  68. #ifdef CONFIG_IRQ_PER_CPU
  69. # define CHECK_IRQ_PER_CPU(var) ((var) & IRQ_PER_CPU)
  70. # define IRQ_NO_BALANCING_MASK (IRQ_PER_CPU | IRQ_NO_BALANCING)
  71. #else
  72. # define CHECK_IRQ_PER_CPU(var) 0
  73. # define IRQ_NO_BALANCING_MASK IRQ_NO_BALANCING
  74. #endif
  75. /*
  76. * Return value for chip->irq_set_affinity()
  77. *
  78. * IRQ_SET_MASK_OK - OK, core updates irq_data.affinity
  79. * IRQ_SET_MASK_NOCPY - OK, chip did update irq_data.affinity
  80. */
  81. enum {
  82. IRQ_SET_MASK_OK = 0,
  83. IRQ_SET_MASK_OK_NOCOPY,
  84. };
  85. struct msi_desc;
  86. /**
  87. * struct irq_data - per irq and irq chip data passed down to chip functions
  88. * @irq: interrupt number
  89. * @node: node index useful for balancing
  90. * @chip: low level interrupt hardware access
  91. * @handler_data: per-IRQ data for the irq_chip methods
  92. * @chip_data: platform-specific per-chip private data for the chip
  93. * methods, to allow shared chip implementations
  94. * @msi_desc: MSI descriptor
  95. * @affinity: IRQ affinity on SMP
  96. *
  97. * The fields here need to overlay the ones in irq_desc until we
  98. * cleaned up the direct references and switched everything over to
  99. * irq_data.
  100. */
  101. struct irq_data {
  102. unsigned int irq;
  103. unsigned int node;
  104. struct irq_chip *chip;
  105. void *handler_data;
  106. void *chip_data;
  107. struct msi_desc *msi_desc;
  108. #ifdef CONFIG_SMP
  109. cpumask_var_t affinity;
  110. #endif
  111. };
  112. /**
  113. * struct irq_chip - hardware interrupt chip descriptor
  114. *
  115. * @name: name for /proc/interrupts
  116. * @startup: deprecated, replaced by irq_startup
  117. * @shutdown: deprecated, replaced by irq_shutdown
  118. * @enable: deprecated, replaced by irq_enable
  119. * @disable: deprecated, replaced by irq_disable
  120. * @ack: deprecated, replaced by irq_ack
  121. * @mask: deprecated, replaced by irq_mask
  122. * @mask_ack: deprecated, replaced by irq_mask_ack
  123. * @unmask: deprecated, replaced by irq_unmask
  124. * @eoi: deprecated, replaced by irq_eoi
  125. * @end: deprecated, will go away with __do_IRQ()
  126. * @set_affinity: deprecated, replaced by irq_set_affinity
  127. * @retrigger: deprecated, replaced by irq_retrigger
  128. * @set_type: deprecated, replaced by irq_set_type
  129. * @set_wake: deprecated, replaced by irq_wake
  130. * @bus_lock: deprecated, replaced by irq_bus_lock
  131. * @bus_sync_unlock: deprecated, replaced by irq_bus_sync_unlock
  132. *
  133. * @irq_startup: start up the interrupt (defaults to ->enable if NULL)
  134. * @irq_shutdown: shut down the interrupt (defaults to ->disable if NULL)
  135. * @irq_enable: enable the interrupt (defaults to chip->unmask if NULL)
  136. * @irq_disable: disable the interrupt
  137. * @irq_ack: start of a new interrupt
  138. * @irq_mask: mask an interrupt source
  139. * @irq_mask_ack: ack and mask an interrupt source
  140. * @irq_unmask: unmask an interrupt source
  141. * @irq_eoi: end of interrupt
  142. * @irq_set_affinity: set the CPU affinity on SMP machines
  143. * @irq_retrigger: resend an IRQ to the CPU
  144. * @irq_set_type: set the flow type (IRQ_TYPE_LEVEL/etc.) of an IRQ
  145. * @irq_set_wake: enable/disable power-management wake-on of an IRQ
  146. * @irq_bus_lock: function to lock access to slow bus (i2c) chips
  147. * @irq_bus_sync_unlock:function to sync and unlock slow bus (i2c) chips
  148. *
  149. * @release: release function solely used by UML
  150. */
  151. struct irq_chip {
  152. const char *name;
  153. #ifndef CONFIG_GENERIC_HARDIRQS_NO_DEPRECATED
  154. unsigned int (*startup)(unsigned int irq);
  155. void (*shutdown)(unsigned int irq);
  156. void (*enable)(unsigned int irq);
  157. void (*disable)(unsigned int irq);
  158. void (*ack)(unsigned int irq);
  159. void (*mask)(unsigned int irq);
  160. void (*mask_ack)(unsigned int irq);
  161. void (*unmask)(unsigned int irq);
  162. void (*eoi)(unsigned int irq);
  163. void (*end)(unsigned int irq);
  164. int (*set_affinity)(unsigned int irq,
  165. const struct cpumask *dest);
  166. int (*retrigger)(unsigned int irq);
  167. int (*set_type)(unsigned int irq, unsigned int flow_type);
  168. int (*set_wake)(unsigned int irq, unsigned int on);
  169. void (*bus_lock)(unsigned int irq);
  170. void (*bus_sync_unlock)(unsigned int irq);
  171. #endif
  172. unsigned int (*irq_startup)(struct irq_data *data);
  173. void (*irq_shutdown)(struct irq_data *data);
  174. void (*irq_enable)(struct irq_data *data);
  175. void (*irq_disable)(struct irq_data *data);
  176. void (*irq_ack)(struct irq_data *data);
  177. void (*irq_mask)(struct irq_data *data);
  178. void (*irq_mask_ack)(struct irq_data *data);
  179. void (*irq_unmask)(struct irq_data *data);
  180. void (*irq_eoi)(struct irq_data *data);
  181. int (*irq_set_affinity)(struct irq_data *data, const struct cpumask *dest, bool force);
  182. int (*irq_retrigger)(struct irq_data *data);
  183. int (*irq_set_type)(struct irq_data *data, unsigned int flow_type);
  184. int (*irq_set_wake)(struct irq_data *data, unsigned int on);
  185. void (*irq_bus_lock)(struct irq_data *data);
  186. void (*irq_bus_sync_unlock)(struct irq_data *data);
  187. /* Currently used only by UML, might disappear one day.*/
  188. #ifdef CONFIG_IRQ_RELEASE_METHOD
  189. void (*release)(unsigned int irq, void *dev_id);
  190. #endif
  191. };
  192. /* This include will go away once we isolated irq_desc usage to core code */
  193. #include <linux/irqdesc.h>
  194. /*
  195. * Pick up the arch-dependent methods:
  196. */
  197. #include <asm/hw_irq.h>
  198. #ifndef NR_IRQS_LEGACY
  199. # define NR_IRQS_LEGACY 0
  200. #endif
  201. #ifndef ARCH_IRQ_INIT_FLAGS
  202. # define ARCH_IRQ_INIT_FLAGS 0
  203. #endif
  204. #define IRQ_DEFAULT_INIT_FLAGS (IRQ_DISABLED | ARCH_IRQ_INIT_FLAGS)
  205. struct irqaction;
  206. extern int setup_irq(unsigned int irq, struct irqaction *new);
  207. extern void remove_irq(unsigned int irq, struct irqaction *act);
  208. #ifdef CONFIG_GENERIC_HARDIRQS
  209. #if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_PENDING_IRQ)
  210. void move_native_irq(int irq);
  211. void move_masked_irq(int irq);
  212. #else
  213. static inline void move_native_irq(int irq) { }
  214. static inline void move_masked_irq(int irq) { }
  215. #endif
  216. extern int no_irq_affinity;
  217. /* Handle irq action chains: */
  218. extern irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action);
  219. /*
  220. * Built-in IRQ handlers for various IRQ types,
  221. * callable via desc->handle_irq()
  222. */
  223. extern void handle_level_irq(unsigned int irq, struct irq_desc *desc);
  224. extern void handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc);
  225. extern void handle_edge_irq(unsigned int irq, struct irq_desc *desc);
  226. extern void handle_simple_irq(unsigned int irq, struct irq_desc *desc);
  227. extern void handle_percpu_irq(unsigned int irq, struct irq_desc *desc);
  228. extern void handle_bad_irq(unsigned int irq, struct irq_desc *desc);
  229. extern void handle_nested_irq(unsigned int irq);
  230. /* Handling of unhandled and spurious interrupts: */
  231. extern void note_interrupt(unsigned int irq, struct irq_desc *desc,
  232. irqreturn_t action_ret);
  233. /* Enable/disable irq debugging output: */
  234. extern int noirqdebug_setup(char *str);
  235. /* Checks whether the interrupt can be requested by request_irq(): */
  236. extern int can_request_irq(unsigned int irq, unsigned long irqflags);
  237. /* Dummy irq-chip implementations: */
  238. extern struct irq_chip no_irq_chip;
  239. extern struct irq_chip dummy_irq_chip;
  240. extern void
  241. set_irq_chip_and_handler(unsigned int irq, struct irq_chip *chip,
  242. irq_flow_handler_t handle);
  243. extern void
  244. set_irq_chip_and_handler_name(unsigned int irq, struct irq_chip *chip,
  245. irq_flow_handler_t handle, const char *name);
  246. extern void
  247. __set_irq_handler(unsigned int irq, irq_flow_handler_t handle, int is_chained,
  248. const char *name);
  249. /*
  250. * Set a highlevel flow handler for a given IRQ:
  251. */
  252. static inline void
  253. set_irq_handler(unsigned int irq, irq_flow_handler_t handle)
  254. {
  255. __set_irq_handler(irq, handle, 0, NULL);
  256. }
  257. /*
  258. * Set a highlevel chained flow handler for a given IRQ.
  259. * (a chained handler is automatically enabled and set to
  260. * IRQ_NOREQUEST and IRQ_NOPROBE)
  261. */
  262. static inline void
  263. set_irq_chained_handler(unsigned int irq, irq_flow_handler_t handle)
  264. {
  265. __set_irq_handler(irq, handle, 1, NULL);
  266. }
  267. void irq_modify_status(unsigned int irq, unsigned long clr, unsigned long set);
  268. static inline void irq_set_status_flags(unsigned int irq, unsigned long set)
  269. {
  270. irq_modify_status(irq, 0, set);
  271. }
  272. static inline void irq_clear_status_flags(unsigned int irq, unsigned long clr)
  273. {
  274. irq_modify_status(irq, clr, 0);
  275. }
  276. static inline void irq_set_noprobe(unsigned int irq)
  277. {
  278. irq_modify_status(irq, 0, IRQ_NOPROBE);
  279. }
  280. static inline void irq_set_probe(unsigned int irq)
  281. {
  282. irq_modify_status(irq, IRQ_NOPROBE, 0);
  283. }
  284. static inline void irq_set_nested_thread(unsigned int irq, bool nest)
  285. {
  286. if (nest)
  287. irq_set_status_flags(irq, IRQ_NESTED_THREAD);
  288. else
  289. irq_clear_status_flags(irq, IRQ_NESTED_THREAD);
  290. }
  291. /* Handle dynamic irq creation and destruction */
  292. extern unsigned int create_irq_nr(unsigned int irq_want, int node);
  293. extern int create_irq(void);
  294. extern void destroy_irq(unsigned int irq);
  295. /*
  296. * Dynamic irq helper functions. Obsolete. Use irq_alloc_desc* and
  297. * irq_free_desc instead.
  298. */
  299. extern void dynamic_irq_cleanup(unsigned int irq);
  300. static inline void dynamic_irq_init(unsigned int irq)
  301. {
  302. dynamic_irq_cleanup(irq);
  303. }
  304. /* Set/get chip/data for an IRQ: */
  305. extern int irq_set_chip(unsigned int irq, struct irq_chip *chip);
  306. extern int irq_set_handler_data(unsigned int irq, void *data);
  307. extern int irq_set_chip_data(unsigned int irq, void *data);
  308. extern int irq_set_irq_type(unsigned int irq, unsigned int type);
  309. extern int irq_set_msi_desc(unsigned int irq, struct msi_desc *entry);
  310. extern struct irq_data *irq_get_irq_data(unsigned int irq);
  311. static inline struct irq_chip *irq_get_chip(unsigned int irq)
  312. {
  313. struct irq_data *d = irq_get_irq_data(irq);
  314. return d ? d->chip : NULL;
  315. }
  316. static inline struct irq_chip *irq_data_get_irq_chip(struct irq_data *d)
  317. {
  318. return d->chip;
  319. }
  320. static inline void *irq_get_chip_data(unsigned int irq)
  321. {
  322. struct irq_data *d = irq_get_irq_data(irq);
  323. return d ? d->chip_data : NULL;
  324. }
  325. static inline void *irq_data_get_irq_chip_data(struct irq_data *d)
  326. {
  327. return d->chip_data;
  328. }
  329. static inline void *irq_get_handler_data(unsigned int irq)
  330. {
  331. struct irq_data *d = irq_get_irq_data(irq);
  332. return d ? d->handler_data : NULL;
  333. }
  334. static inline void *irq_data_get_irq_handler_data(struct irq_data *d)
  335. {
  336. return d->handler_data;
  337. }
  338. static inline struct msi_desc *irq_get_msi_desc(unsigned int irq)
  339. {
  340. struct irq_data *d = irq_get_irq_data(irq);
  341. return d ? d->msi_desc : NULL;
  342. }
  343. static inline struct msi_desc *irq_data_get_msi(struct irq_data *d)
  344. {
  345. return d->msi_desc;
  346. }
  347. #ifndef CONFIG_GENERIC_HARDIRQS_NO_COMPAT
  348. /* Please do not use: Use the replacement functions instead */
  349. static inline int set_irq_chip(unsigned int irq, struct irq_chip *chip)
  350. {
  351. return irq_set_chip(irq, chip);
  352. }
  353. static inline int set_irq_data(unsigned int irq, void *data)
  354. {
  355. return irq_set_handler_data(irq, data);
  356. }
  357. static inline int set_irq_chip_data(unsigned int irq, void *data)
  358. {
  359. return irq_set_chip_data(irq, data);
  360. }
  361. static inline int set_irq_type(unsigned int irq, unsigned int type)
  362. {
  363. return irq_set_irq_type(irq, type);
  364. }
  365. static inline int set_irq_msi(unsigned int irq, struct msi_desc *entry)
  366. {
  367. return irq_set_msi_desc(irq, entry);
  368. }
  369. static inline struct irq_chip *get_irq_chip(unsigned int irq)
  370. {
  371. return irq_get_chip(irq);
  372. }
  373. static inline void *get_irq_chip_data(unsigned int irq)
  374. {
  375. return irq_get_chip_data(irq);
  376. }
  377. static inline void *get_irq_data(unsigned int irq)
  378. {
  379. return irq_get_handler_data(irq);
  380. }
  381. static inline void *irq_data_get_irq_data(struct irq_data *d)
  382. {
  383. return irq_data_get_irq_handler_data(d);
  384. }
  385. static inline struct msi_desc *get_irq_msi(unsigned int irq)
  386. {
  387. return irq_get_msi_desc(irq);
  388. }
  389. static inline void set_irq_noprobe(unsigned int irq)
  390. {
  391. irq_set_noprobe(irq);
  392. }
  393. static inline void set_irq_probe(unsigned int irq)
  394. {
  395. irq_set_probe(irq);
  396. }
  397. static inline void set_irq_nested_thread(unsigned int irq, int nest)
  398. {
  399. irq_set_nested_thread(irq, nest);
  400. }
  401. #endif
  402. int irq_alloc_descs(int irq, unsigned int from, unsigned int cnt, int node);
  403. void irq_free_descs(unsigned int irq, unsigned int cnt);
  404. int irq_reserve_irqs(unsigned int from, unsigned int cnt);
  405. static inline int irq_alloc_desc(int node)
  406. {
  407. return irq_alloc_descs(-1, 0, 1, node);
  408. }
  409. static inline int irq_alloc_desc_at(unsigned int at, int node)
  410. {
  411. return irq_alloc_descs(at, at, 1, node);
  412. }
  413. static inline int irq_alloc_desc_from(unsigned int from, int node)
  414. {
  415. return irq_alloc_descs(-1, from, 1, node);
  416. }
  417. static inline void irq_free_desc(unsigned int irq)
  418. {
  419. irq_free_descs(irq, 1);
  420. }
  421. static inline int irq_reserve_irq(unsigned int irq)
  422. {
  423. return irq_reserve_irqs(irq, 1);
  424. }
  425. #endif /* CONFIG_GENERIC_HARDIRQS */
  426. #endif /* !CONFIG_S390 */
  427. #endif /* _LINUX_IRQ_H */