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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  asm-ia64/acpi.h
  3.  *
  4.  *  Copyright (C) 1999 VA Linux Systems
  5.  *  Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
  6.  *  Copyright (C) 2000,2001 J.I. Lee <jung-ik.lee@intel.com>
  7.  *  Copyright (C) 2001,2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
  8.  *
  9.  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  10.  *
  11.  *  This program is free software; you can redistribute it and/or modify
  12.  *  it under the terms of the GNU General Public License as published by
  13.  *  the Free Software Foundation; either version 2 of the License, or
  14.  *  (at your option) any later version.
  15.  *
  16.  *  This program is distributed in the hope that it will be useful,
  17.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  *  GNU General Public License for more details.
  20.  *
  21.  *  You should have received a copy of the GNU General Public License
  22.  *  along with this program; if not, write to the Free Software
  23.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  24.  *
  25.  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  26.  */
  27. #ifndef _ASM_ACPI_H
  28. #define _ASM_ACPI_H
  29. #ifdef __KERNEL__
  30. #define COMPILER_DEPENDENT_INT64 long
  31. #define COMPILER_DEPENDENT_UINT64 unsigned long
  32. /*
  33.  * Calling conventions:
  34.  *
  35.  * ACPI_SYSTEM_XFACE        - Interfaces to host OS (handlers, threads)
  36.  * ACPI_EXTERNAL_XFACE      - External ACPI interfaces
  37.  * ACPI_INTERNAL_XFACE      - Internal ACPI interfaces
  38.  * ACPI_INTERNAL_VAR_XFACE  - Internal variable-parameter list interfaces
  39.  */
  40. #define ACPI_SYSTEM_XFACE
  41. #define ACPI_EXTERNAL_XFACE
  42. #define ACPI_INTERNAL_XFACE
  43. #define ACPI_INTERNAL_VAR_XFACE
  44. /* Asm macros */
  45. #define ACPI_ASM_MACROS
  46. #define BREAKPOINT3
  47. #define ACPI_DISABLE_IRQS() __cli()
  48. #define ACPI_ENABLE_IRQS()  __sti()
  49. #define ACPI_FLUSH_CPU_CACHE()
  50. #define ACPI_ACQUIRE_GLOBAL_LOCK(GLptr, Acq) 
  51. do { 
  52. __asm__ volatile ("1:  ld4      r29=%1n"  
  53. ";;n"                  
  54. "mov    ar.ccv=r29n"   
  55. "mov    r2=r29n"       
  56. "shr.u  r30=r29,1n"    
  57. "and    r29=-4,r29n"   
  58. ";;n"                  
  59. "add    r29=2,r29n"    
  60. "and    r30=1,r30n"    
  61. ";;n"                  
  62. "add    r29=r29,r30n"  
  63. ";;n"                  
  64. "cmpxchg4.acq   r30=%1,r29,ar.ccvn" 
  65. ";;n"                  
  66. "cmp.eq p6,p7=r2,r30n" 
  67. "(p7) br.dpnt.few 1bn" 
  68. "cmp.gt p8,p9=3,r29n"  
  69. ";;n"                  
  70. "(p8) mov %0=-1n"      
  71. "(p9) mov %0=r0n"      
  72. :"=r"(Acq):"m"(GLptr):"r2","r29","r30","memory"); 
  73. } while (0)
  74. #define ACPI_RELEASE_GLOBAL_LOCK(GLptr, Acq) 
  75. do { 
  76. __asm__ volatile ("1:  ld4      r29=%1n" 
  77. ";;n"                  
  78. "mov    ar.ccv=r29n"   
  79. "mov    r2=r29n"       
  80. "and    r29=-4,r29n"   
  81. ";;n"                  
  82. "cmpxchg4.acq   r30=%1,r29,ar.ccvn" 
  83. ";;n"                  
  84. "cmp.eq p6,p7=r2,r30n" 
  85. "(p7) br.dpnt.few 1bn" 
  86. "and    %0=1,r2n"      
  87. ";;n"                  
  88. :"=r"(Acq):"m"(GLptr):"r2","r29","r30","memory"); 
  89. } while (0)
  90. const char *acpi_get_sysname (void);
  91. int acpi_boot_init (char *cdline);
  92. int acpi_request_vector (u32 int_type);
  93. int acpi_get_prt (struct pci_vector_struct **vectors, int *count);
  94. int acpi_get_interrupt_model (int *type);
  95. int acpi_irq_to_vector (u32 irq);
  96. #ifdef CONFIG_DISCONTIGMEM
  97. #define NODE_ARRAY_INDEX(x) ((x) / 8) /* 8 bits/char */
  98. #define NODE_ARRAY_OFFSET(x) ((x) % 8) /* 8 bits/char */
  99. #define MAX_PXM_DOMAINS (256)
  100. #endif /* CONFIG_DISCONTIGMEM */
  101. #endif /*__KERNEL__*/
  102. #endif /*_ASM_ACPI_H*/