1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/* $OpenBSD: dsdt.h,v 1.10 2006/03/05 14:46:46 marco Exp $ */
/*
* Copyright (c) 2005 Marco Peereboom <marco@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef __DEV_ACPI_DSDT_H__
#define __DEV_ACPI_DSDT_H__
const char *aml_eisaid(u_int32_t);
int aml_find_node(struct aml_node *, const char *,
void (*)(struct aml_node *, void *), void *);
int acpi_parse_aml(struct acpi_softc *, u_int8_t *, u_int32_t);
int aml_eval_object(struct acpi_softc *, struct aml_node *,
struct aml_value *, int, struct aml_value *);
int aml_eval_name(struct acpi_softc *, struct aml_node *, const char *,
struct aml_value *, struct aml_value *);
void aml_showvalue(struct aml_value *);
void aml_walktree(struct aml_node *);
void aml_walkroot(void);
struct aml_value *aml_allocint(uint64_t);
struct aml_value *aml_allocstr(const char *);
struct aml_value *aml_allocvalue(int, int64_t, void *);
struct aml_value *aml_copyvalue(const struct aml_value *);
struct acpi_context;
void aml_freevalue(struct aml_value **);
int aml_comparevalue(struct acpi_context *, int, struct aml_value *, struct aml_value *);
int64_t aml_val2int(struct acpi_context *, struct aml_value *);
struct aml_node *aml_searchname(struct aml_node *, const char *);
void aml_register_notify(struct aml_node *, const char *,
int (*)(struct aml_node *, int, void *),
void *);
void aml_notify(struct aml_node *, int);
void aml_notify_dev(const char *, int);
#endif /* __DEV_ACPI_DSDT_H__ */
|