aclinux.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /******************************************************************************
  2. *
  3. * Name: aclinux.h - OS specific defines, etc. for Linux
  4. *
  5. *****************************************************************************/
  6. /*
  7. * Copyright (C) 2000 - 2013, Intel Corp.
  8. * All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions, and the following disclaimer,
  15. * without modification.
  16. * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  17. * substantially similar to the "NO WARRANTY" disclaimer below
  18. * ("Disclaimer") and any redistribution must be conditioned upon
  19. * including a substantially similar Disclaimer requirement for further
  20. * binary redistribution.
  21. * 3. Neither the names of the above-listed copyright holders nor the names
  22. * of any contributors may be used to endorse or promote products derived
  23. * from this software without specific prior written permission.
  24. *
  25. * Alternatively, this software may be distributed under the terms of the
  26. * GNU General Public License ("GPL") version 2 as published by the Free
  27. * Software Foundation.
  28. *
  29. * NO WARRANTY
  30. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  31. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  32. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
  33. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  34. * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  35. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  36. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  37. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  38. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  39. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  40. * POSSIBILITY OF SUCH DAMAGES.
  41. */
  42. #ifndef __ACLINUX_H__
  43. #define __ACLINUX_H__
  44. /* Common (in-kernel/user-space) ACPICA configuration */
  45. #define ACPI_USE_SYSTEM_CLIBRARY
  46. #define ACPI_USE_DO_WHILE_0
  47. #define ACPI_MUTEX_TYPE ACPI_BINARY_SEMAPHORE
  48. #ifdef __KERNEL__
  49. #include <linux/string.h>
  50. #include <linux/kernel.h>
  51. #include <linux/ctype.h>
  52. #include <linux/sched.h>
  53. #include <linux/atomic.h>
  54. #include <asm/div64.h>
  55. #include <asm/acpi.h>
  56. #include <linux/slab.h>
  57. #include <linux/spinlock_types.h>
  58. #include <asm/current.h>
  59. /* Host-dependent types and defines for in-kernel ACPICA */
  60. #define ACPI_MACHINE_WIDTH BITS_PER_LONG
  61. #define ACPI_EXPORT_SYMBOL(symbol) EXPORT_SYMBOL(symbol);
  62. #define strtoul simple_strtoul
  63. #define acpi_cache_t struct kmem_cache
  64. #define acpi_spinlock spinlock_t *
  65. #define acpi_cpu_flags unsigned long
  66. #else /* !__KERNEL__ */
  67. #include <stdarg.h>
  68. #include <string.h>
  69. #include <stdlib.h>
  70. #include <ctype.h>
  71. #include <unistd.h>
  72. /* Host-dependent types and defines for user-space ACPICA */
  73. #define ACPI_FLUSH_CPU_CACHE()
  74. #define ACPI_CAST_PTHREAD_T(pthread) ((acpi_thread_id) (pthread))
  75. #if defined(__ia64__) || defined(__x86_64__) || defined(__aarch64__)
  76. #define ACPI_MACHINE_WIDTH 64
  77. #define COMPILER_DEPENDENT_INT64 long
  78. #define COMPILER_DEPENDENT_UINT64 unsigned long
  79. #else
  80. #define ACPI_MACHINE_WIDTH 32
  81. #define COMPILER_DEPENDENT_INT64 long long
  82. #define COMPILER_DEPENDENT_UINT64 unsigned long long
  83. #define ACPI_USE_NATIVE_DIVIDE
  84. #endif
  85. #ifndef __cdecl
  86. #define __cdecl
  87. #endif
  88. #endif /* __KERNEL__ */
  89. /* Linux uses GCC */
  90. #include <acpi/platform/acgcc.h>
  91. #ifdef __KERNEL__
  92. #include <acpi/actypes.h>
  93. /*
  94. * Overrides for in-kernel ACPICA
  95. */
  96. static inline acpi_thread_id acpi_os_get_thread_id(void)
  97. {
  98. return (acpi_thread_id)(unsigned long)current;
  99. }
  100. /*
  101. * Memory allocation/deallocation
  102. */
  103. /* Use native linux version of acpi_os_allocate_zeroed */
  104. #define USE_NATIVE_ALLOCATE_ZEROED
  105. /*
  106. * The irqs_disabled() check is for resume from RAM.
  107. * Interrupts are off during resume, just like they are for boot.
  108. * However, boot has (system_state != SYSTEM_RUNNING)
  109. * to quiet __might_sleep() in kmalloc() and resume does not.
  110. */
  111. static inline void *acpi_os_allocate(acpi_size size)
  112. {
  113. return kmalloc(size, irqs_disabled() ? GFP_ATOMIC : GFP_KERNEL);
  114. }
  115. static inline void *acpi_os_allocate_zeroed(acpi_size size)
  116. {
  117. return kzalloc(size, irqs_disabled() ? GFP_ATOMIC : GFP_KERNEL);
  118. }
  119. static inline void *acpi_os_acquire_object(acpi_cache_t * cache)
  120. {
  121. return kmem_cache_zalloc(cache,
  122. irqs_disabled() ? GFP_ATOMIC : GFP_KERNEL);
  123. }
  124. static inline void acpi_os_free(void *a)
  125. {
  126. kfree(a);
  127. }
  128. #ifndef CONFIG_PREEMPT
  129. /*
  130. * Used within ACPICA to show where it is safe to preempt execution
  131. * when CONFIG_PREEMPT=n
  132. */
  133. #define ACPI_PREEMPTION_POINT() \
  134. do { \
  135. if (!irqs_disabled()) \
  136. cond_resched(); \
  137. } while (0)
  138. #endif
  139. /*
  140. * When lockdep is enabled, the spin_lock_init() macro stringifies it's
  141. * argument and uses that as a name for the lock in debugging.
  142. * By executing spin_lock_init() in a macro the key changes from "lock" for
  143. * all locks to the name of the argument of acpi_os_create_lock(), which
  144. * prevents lockdep from reporting false positives for ACPICA locks.
  145. */
  146. #define acpi_os_create_lock(__handle) \
  147. ({ \
  148. spinlock_t *lock = ACPI_ALLOCATE(sizeof(*lock)); \
  149. \
  150. if (lock) { \
  151. *(__handle) = lock; \
  152. spin_lock_init(*(__handle)); \
  153. } \
  154. lock ? AE_OK : AE_NO_MEMORY; \
  155. })
  156. #endif /* __KERNEL__ */
  157. #endif /* __ACLINUX_H__ */