blob: f4dd04901aaaec79af73cf43b7ab0eb08d6d56eb (
plain) (
blame)
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
|
#ifndef MELVIX_ACPI_H
#define MELVIX_ACPI_H
/**
* Initialize the ACP interface
* @return 0 if successful, otherwise -1
*/
int acpi_install();
/**
* Activate a ACPI based device reboot
*/
void reboot();
/**
* Activate a ACPI based device shutdown/poweroff
*/
void acpi_poweroff();
struct RSDPtr {
char Signature[8];
char CheckSum;
char OemID[6];
char Revision;
uint32_t *rsdt_address;
};
struct FADT {
char Signature[4];
uint32_t Length;
char unneded1[40 - 8];
uint32_t *DSDT;
char unneded2[48 - 44];
uint32_t *SMI_CMD;
char ACPI_ENABLE;
char ACPI_DISABLE;
char unneded3[64 - 54];
uint32_t *PM1a_CNT_BLK;
uint32_t *PM1b_CNT_BLK;
char unneded4[89 - 72];
char PM1_CNT_LEN;
char unneeded5[18];
char century;
};
extern struct FADT *fadt;
#endif
|