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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* hardirq.h: 64-bit Sparc hard IRQ support.
  2.  *
  3.  * Copyright (C) 1997, 1998 David S. Miller (davem@caip.rutgers.edu)
  4.  */
  5. #ifndef __SPARC64_HARDIRQ_H
  6. #define __SPARC64_HARDIRQ_H
  7. #include <linux/config.h>
  8. #include <linux/threads.h>
  9. #include <linux/brlock.h>
  10. #include <linux/spinlock.h>
  11. /* entry.S is sensitive to the offsets of these fields */
  12. /* rtrap.S is sensitive to the size of this structure */
  13. typedef struct {
  14. unsigned int __softirq_pending;
  15. unsigned int __unused_1;
  16. #ifndef CONFIG_SMP
  17. unsigned int __local_irq_count;
  18. #else
  19. unsigned int __unused_on_SMP; /* DaveM says use brlock for SMP irq. KAO */
  20. #endif
  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. /* Note that local_irq_count() is replaced by sparc64 specific version for SMP */
  27. #ifndef CONFIG_SMP
  28. #define irq_enter(cpu, irq) ((void)(irq), local_irq_count(cpu)++)
  29. #define irq_exit(cpu, irq) ((void)(irq), local_irq_count(cpu)--)
  30. #else
  31. #undef local_irq_count
  32. #define local_irq_count(cpu) (__brlock_array[cpu][BR_GLOBALIRQ_LOCK])
  33. #define irq_enter(cpu, irq) br_read_lock(BR_GLOBALIRQ_LOCK)
  34. #define irq_exit(cpu, irq) br_read_unlock(BR_GLOBALIRQ_LOCK)
  35. #endif
  36. /*
  37.  * Are we in an interrupt context? Either doing bottom half
  38.  * or hardware interrupt processing?
  39.  */
  40. #define in_interrupt() ((local_irq_count(smp_processor_id()) + 
  41.          local_bh_count(smp_processor_id())) != 0)
  42. /* This tests only the local processors hw IRQ context disposition.  */
  43. #define in_irq() (local_irq_count(smp_processor_id()) != 0)
  44. #ifndef CONFIG_SMP
  45. #define hardirq_trylock(cpu) ((void)(cpu), local_irq_count(smp_processor_id()) == 0)
  46. #define hardirq_endlock(cpu) do { (void)(cpu); } while(0)
  47. #define synchronize_irq() barrier()
  48. #else /* (CONFIG_SMP) */
  49. static __inline__ int irqs_running(void)
  50. {
  51. int i;
  52. for (i = 0; i < smp_num_cpus; i++)
  53. if (local_irq_count(cpu_logical_map(i)))
  54. return 1;
  55. return 0;
  56. }
  57. extern unsigned char global_irq_holder;
  58. static inline void release_irqlock(int cpu)
  59. {
  60. /* if we didn't own the irq lock, just ignore... */
  61. if(global_irq_holder == (unsigned char) cpu) {
  62. global_irq_holder = NO_PROC_ID;
  63. br_write_unlock(BR_GLOBALIRQ_LOCK);
  64. }
  65. }
  66. static inline int hardirq_trylock(int cpu)
  67. {
  68. spinlock_t *lock = &__br_write_locks[BR_GLOBALIRQ_LOCK].lock;
  69. return (!local_irq_count(cpu) && !spin_is_locked(lock));
  70. }
  71. #define hardirq_endlock(cpu) do { (void)(cpu); } while (0)
  72. extern void synchronize_irq(void);
  73. #endif /* CONFIG_SMP */
  74. #endif /* !(__SPARC64_HARDIRQ_H) */