Deleted Added
full compact
acpica_machdep.h (197439) acpica_machdep.h (252280)
1/*-
2 * Copyright (c) 2002 Mitsuru IWASAKI
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2002 Mitsuru IWASAKI
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/amd64/include/acpica_machdep.h 197439 2009-09-23 15:42:35Z jhb $
26 * $FreeBSD: head/sys/amd64/include/acpica_machdep.h 252280 2013-06-27 00:22:40Z jkim $
27 */
28
29/******************************************************************************
30 *
31 * Name: acpica_machdep.h - arch-specific defines, etc.
32 * $Revision$
33 *
34 *****************************************************************************/

--- 29 unchanged lines hidden (view full) ---

64extern int acpi_release_global_lock(uint32_t *lock);
65#define ACPI_ACQUIRE_GLOBAL_LOCK(GLptr, Acq) do { \
66 (Acq) = acpi_acquire_global_lock(&((GLptr)->GlobalLock)); \
67} while (0)
68#define ACPI_RELEASE_GLOBAL_LOCK(GLptr, Acq) do { \
69 (Acq) = acpi_release_global_lock(&((GLptr)->GlobalLock)); \
70} while (0)
71
27 */
28
29/******************************************************************************
30 *
31 * Name: acpica_machdep.h - arch-specific defines, etc.
32 * $Revision$
33 *
34 *****************************************************************************/

--- 29 unchanged lines hidden (view full) ---

64extern int acpi_release_global_lock(uint32_t *lock);
65#define ACPI_ACQUIRE_GLOBAL_LOCK(GLptr, Acq) do { \
66 (Acq) = acpi_acquire_global_lock(&((GLptr)->GlobalLock)); \
67} while (0)
68#define ACPI_RELEASE_GLOBAL_LOCK(GLptr, Acq) do { \
69 (Acq) = acpi_release_global_lock(&((GLptr)->GlobalLock)); \
70} while (0)
71
72#endif /* _KERNEL */
73
74#define ACPI_MACHINE_WIDTH 64
75#define COMPILER_DEPENDENT_INT64 long
76#define COMPILER_DEPENDENT_UINT64 unsigned long
77
78void acpi_SetDefaultIntrModel(int model);
79void acpi_cpu_c1(void);
80void *acpi_map_table(vm_paddr_t pa, const char *sig);
81void acpi_unmap_table(void *table);
82vm_paddr_t acpi_find_table(const char *sig);
83
72void acpi_SetDefaultIntrModel(int model);
73void acpi_cpu_c1(void);
74void *acpi_map_table(vm_paddr_t pa, const char *sig);
75void acpi_unmap_table(void *table);
76vm_paddr_t acpi_find_table(const char *sig);
77
78#endif /* _KERNEL */
79
84#endif /* __ACPICA_MACHDEP_H__ */
80#endif /* __ACPICA_MACHDEP_H__ */