hardirq.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* hardirq.h: PA-RISC hard IRQ support.
  2.  *
  3.  * Copyright (C) 2001 Matthew Wilcox <matthew@wil.cx>
  4.  *
  5.  * The locking is really quite interesting.  There's a cpu-local
  6.  * count of how many interrupts are being handled, and a global
  7.  * lock.  An interrupt can only be serviced if the global lock
  8.  * is free.  You can't be sure no more interrupts are being
  9.  * serviced until you've acquired the lock and then checked
  10.  * all the per-cpu interrupt counts are all zero.  It's a specialised
  11.  * br_lock, and that's exactly how Sparc does it.  We don't because
  12.  * it's more locking for us.  This way is lock-free in the interrupt path.
  13.  */
  14. #ifndef _PARISC_HARDIRQ_H
  15. #define _PARISC_HARDIRQ_H
  16. #include <linux/config.h>
  17. #include <linux/threads.h>
  18. typedef struct {
  19. unsigned long __softirq_pending; /* set_bit is used on this */
  20. unsigned int __local_irq_count;
  21. unsigned int __local_bh_count;
  22. unsigned int __syscall_count;
  23. struct task_struct * __ksoftirqd_task;
  24. } ____cacheline_aligned irq_cpustat_t;
  25. #include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */
  26. /*
  27.  * Are we in an interrupt context? Either doing bottom half
  28.  * or hardware interrupt processing?
  29.  */
  30. #define in_interrupt() ({ int __cpu = smp_processor_id(); 
  31. (local_irq_count(__cpu) + local_bh_count(__cpu) != 0); })
  32. #define in_irq() ({ int __cpu = smp_processor_id(); 
  33. (local_irq_count(__cpu) != 0); })
  34. #ifndef CONFIG_SMP
  35. #define hardirq_trylock(cpu) (local_irq_count(cpu) == 0)
  36. #define hardirq_endlock(cpu) do { } while (0)
  37. #define irq_enter(cpu, irq) (local_irq_count(cpu)++)
  38. #define irq_exit(cpu, irq) (local_irq_count(cpu)--)
  39. #define synchronize_irq() barrier()
  40. #else
  41. #include <asm/system.h>
  42. #include <asm/atomic.h>
  43. #include <linux/spinlock.h>
  44. #include <asm/smp.h>
  45. extern int global_irq_holder;
  46. extern spinlock_t global_irq_lock;
  47. static inline int irqs_running (void)
  48. {
  49. int i;
  50. for (i = 0; i < smp_num_cpus; i++)
  51. if (local_irq_count(i))
  52. return 1;
  53. return 0;
  54. }
  55. static inline void release_irqlock(int cpu)
  56. {
  57. /* if we didn't own the irq lock, just ignore.. */
  58. if (global_irq_holder == (unsigned char) cpu) {
  59. global_irq_holder = NO_PROC_ID;
  60. spin_unlock(&global_irq_lock);
  61. }
  62. }
  63. static inline void irq_enter(int cpu, int irq)
  64. {
  65. ++local_irq_count(cpu);
  66. while (spin_is_locked(&global_irq_lock))
  67. barrier();
  68. }
  69. static inline void irq_exit(int cpu, int irq)
  70. {
  71. --local_irq_count(cpu);
  72. }
  73. static inline int hardirq_trylock(int cpu)
  74. {
  75. return !local_irq_count(cpu) && !spin_is_locked (&global_irq_lock);
  76. }
  77. #define hardirq_endlock(cpu) do { } while (0)
  78. extern void synchronize_irq(void);
  79. #endif /* CONFIG_SMP */
  80. #endif /* _PARISC_HARDIRQ_H */