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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <string.h>
#include <console/console.h>
#include <acpi/acpi.h>
#include <acpi/acpi_gnvs.h>
#include <device/device.h>
#include <southbridge/intel/i82801gx/nvs.h>
#include "mainboard.h"
void mainboard_fill_gnvs(struct global_nvs *gnvs)
{
/* Enable COM port(s) */
gnvs->cmap = 0x01;
gnvs->cmbp = 0x00;
}
static long acpi_create_ecdt(acpi_ecdt_t * ecdt)
{
/* Attention: Make sure these match the values from
* the DSDT's ec.asl
*/
static const char ec_id[] = "\\_SB.PCI0.LPCB.EC0";
int ecdt_len = sizeof(acpi_ecdt_t) + strlen(ec_id) + 1;
acpi_header_t *header = &(ecdt->header);
memset((void *) ecdt, 0, ecdt_len);
/* fill out header fields */
memcpy(header->signature, "ECDT", 4);
memcpy(header->oem_id, OEM_ID, 6);
memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
memcpy(header->asl_compiler_id, ASLC, 4);
header->length = ecdt_len;
header->revision = 1;
/* Location of the two EC registers */
ecdt->ec_control.space_id = ACPI_ADDRESS_SPACE_IO;
ecdt->ec_control.bit_width = 8;
ecdt->ec_control.bit_offset = 0;
ecdt->ec_control.addrl = 0x66;
ecdt->ec_control.addrh = 0;
ecdt->ec_data.space_id = ACPI_ADDRESS_SPACE_IO;
ecdt->ec_data.bit_width = 8;
ecdt->ec_data.bit_offset = 0;
ecdt->ec_data.addrl = 0x62;
ecdt->ec_data.addrh = 0;
ecdt->uid = 1; // Must match _UID of the EC0 node.
ecdt->gpe_bit = 23; // SCI interrupt within GPEx_STS
memcpy(ecdt->ec_id, ec_id, sizeof(ec_id));
header->checksum =
acpi_checksum((void *) ecdt, ecdt_len);
return header->length;
}
unsigned long mainboard_write_acpi_tables(const struct device *device,
unsigned long start,
acpi_rsdp_t *rsdp)
{
unsigned long current;
acpi_header_t *ecdt;
current = start;
/* Align ACPI tables to 16byte */
current = acpi_align_current(current);
printk(BIOS_DEBUG, "ACPI: * ECDT\n");
ecdt = (acpi_header_t *)current;
current += acpi_create_ecdt((acpi_ecdt_t *)current);
current = acpi_align_current(current);
acpi_add_table(rsdp, ecdt);
printk(BIOS_DEBUG, "current = %lx\n", current);
return current;
}
|