hardirq.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1997 - 2000, 2001 by Ralf Baechle
  7.  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  8.  * Copyright (C) 2001 MIPS Technologies, Inc.
  9.  */
  10. #ifndef _ASM_HARDIRQ_H
  11. #define _ASM_HARDIRQ_H
  12. #include <linux/config.h>
  13. #include <linux/threads.h>
  14. #include <linux/irq.h>
  15. typedef struct {
  16. unsigned int __softirq_pending;
  17. unsigned int __local_irq_count;
  18. unsigned int __local_bh_count;
  19. unsigned int __syscall_count;
  20. struct task_struct * __ksoftirqd_task; /* waitqueue is too large */
  21. } ____cacheline_aligned irq_cpustat_t;
  22. #include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */
  23. /*
  24.  * Are we in an interrupt context? Either doing bottom half
  25.  * or hardware interrupt processing?
  26.  */
  27. #define in_interrupt() ({ int __cpu = smp_processor_id(); 
  28. (local_irq_count(__cpu) + local_bh_count(__cpu) != 0); })
  29. #define in_irq() (local_irq_count(smp_processor_id()) != 0)
  30. #ifndef CONFIG_SMP
  31. #define hardirq_trylock(cpu) (local_irq_count(cpu) == 0)
  32. #define hardirq_endlock(cpu) do { } while (0)
  33. #define irq_enter(cpu, irq) (local_irq_count(cpu)++)
  34. #define irq_exit(cpu, irq) (local_irq_count(cpu)--)
  35. #define synchronize_irq() barrier();
  36. #else
  37. #include <asm/atomic.h>
  38. #include <linux/spinlock.h>
  39. #include <asm/smp.h>
  40. extern int global_irq_holder;
  41. extern spinlock_t global_irq_lock;
  42. static inline int irqs_running (void)
  43. {
  44. int i;
  45. for (i = 0; i < smp_num_cpus; i++)
  46. if (local_irq_count(i))
  47. return 1;
  48. return 0;
  49. }
  50. static inline void release_irqlock(int cpu)
  51. {
  52. /* if we didn't own the irq lock, just ignore.. */
  53. if (global_irq_holder == cpu) {
  54. global_irq_holder = NO_PROC_ID;
  55. spin_unlock(&global_irq_lock);
  56. }
  57. }
  58. static inline int hardirq_trylock(int cpu)
  59. {
  60. return !local_irq_count(cpu) && !spin_is_locked(&global_irq_lock);
  61. }
  62. #define hardirq_endlock(cpu) do { } while (0)
  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. extern void synchronize_irq(void);
  74. #endif /* CONFIG_SMP */
  75. #endif /* _ASM_HARDIRQ_H */