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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ASM_APIC_H
  2. #define __ASM_APIC_H
  3. #include <linux/config.h>
  4. #include <linux/pm.h>
  5. #include <asm/apicdef.h>
  6. #include <asm/system.h>
  7. #ifdef CONFIG_X86_LOCAL_APIC
  8. #define APIC_DEBUG 0
  9. #if APIC_DEBUG
  10. #define Dprintk(x...) printk(x)
  11. #else
  12. #define Dprintk(x...)
  13. #endif
  14. /*
  15.  * Basic functions accessing APICs.
  16.  */
  17. static __inline void apic_write(unsigned long reg, unsigned int v)
  18. {
  19. *((volatile unsigned int *)(APIC_BASE+reg)) = v;
  20. barrier();
  21. }
  22. static __inline void apic_write_atomic(unsigned long reg, unsigned int v)
  23. {
  24. xchg((volatile unsigned int *)(APIC_BASE+reg), v);
  25. }
  26. static __inline unsigned int apic_read(unsigned long reg)
  27. {
  28. return *((volatile unsigned int *)(APIC_BASE+reg));
  29. }
  30. static __inline__ void apic_wait_icr_idle(void)
  31. {
  32. while ( apic_read( APIC_ICR ) & APIC_ICR_BUSY );
  33. }
  34. #ifdef CONFIG_X86_GOOD_APIC
  35. # define FORCE_READ_AROUND_WRITE 0
  36. # define apic_read_around(x)
  37. # define apic_write_around(x,y) apic_write((x),(y))
  38. #else
  39. # define FORCE_READ_AROUND_WRITE 1
  40. # define apic_read_around(x) apic_read(x)
  41. # define apic_write_around(x,y) apic_write_atomic((x),(y))
  42. #endif
  43. static inline void ack_APIC_irq(void)
  44. {
  45. /*
  46.  * ack_APIC_irq() actually gets compiled as a single instruction:
  47.  * - a single rmw on Pentium/82489DX
  48.  * - a single write on P6+ cores (CONFIG_X86_GOOD_APIC)
  49.  * ... yummie.
  50.  */
  51. /* Docs say use 0 for future compatibility */
  52. apic_write_around(APIC_EOI, 0);
  53. }
  54. extern int get_maxlvt (void);
  55. extern void clear_local_APIC (void);
  56. extern void connect_bsp_APIC (void);
  57. extern void disconnect_bsp_APIC (void);
  58. extern void disable_local_APIC (void);
  59. extern int verify_local_APIC (void);
  60. extern void cache_APIC_registers (void);
  61. extern void sync_Arb_IDs (void);
  62. extern void init_bsp_APIC (void);
  63. extern void setup_local_APIC (void);
  64. extern void init_apic_mappings (void);
  65. extern void smp_local_timer_interrupt (struct pt_regs * regs);
  66. extern void setup_APIC_clocks (void);
  67. extern void setup_apic_nmi_watchdog (void);
  68. extern inline void nmi_watchdog_tick (struct pt_regs * regs);
  69. extern int APIC_init_uniprocessor (void);
  70. extern void disable_APIC_timer(void);
  71. extern void enable_APIC_timer(void);
  72. extern struct pm_dev *apic_pm_register (pm_dev_t, unsigned long, pm_callback);
  73. extern void apic_pm_unregister (struct pm_dev*);
  74. extern unsigned int apic_timer_irqs [NR_CPUS];
  75. extern int check_nmi_watchdog (void);
  76. extern void enable_NMI_through_LVT0 (void * dummy);
  77. extern unsigned int nmi_watchdog;
  78. #define NMI_NONE 0
  79. #define NMI_IO_APIC 1
  80. #define NMI_LOCAL_APIC 2
  81. #define NMI_INVALID 3
  82. #endif /* CONFIG_X86_LOCAL_APIC */
  83. #define clustered_apic_mode 0
  84. #define esr_disable 0
  85. extern unsigned boot_cpu_id;
  86. #endif /* __ASM_APIC_H */