blob: 2ba86f229529e9f9ea9375a2dbbcafb33a434286 [file] [log] [blame]
Simon Glass85b81612021-12-01 09:03:00 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Write an ACPI Core System Resource Table (CSRT)
4 *
5 * Copyright 2021 Google LLC
6 */
7
8#define LOG_CATEGORY LOGC_ACPI
9
10#include <common.h>
11#include <mapmem.h>
12#include <tables_csum.h>
13#include <acpi/acpi_table.h>
14#include <dm/acpi.h>
15
Simon Glass78031ad2021-12-01 09:03:01 -070016__weak int acpi_fill_csrt(struct acpi_ctx *ctx)
Simon Glass85b81612021-12-01 09:03:00 -070017{
18 return 0;
19}
20
21int acpi_write_csrt(struct acpi_ctx *ctx, const struct acpi_writer *entry)
22{
23 struct acpi_table_header *header;
24 struct acpi_csrt *csrt;
Simon Glass78031ad2021-12-01 09:03:01 -070025 int ret;
Simon Glass85b81612021-12-01 09:03:00 -070026
27 csrt = ctx->current;
28 header = &csrt->header;
29
30 memset(csrt, '\0', sizeof(struct acpi_csrt));
31
32 /* Fill out header fields */
33 acpi_fill_header(header, "CSRT");
Simon Glass85b81612021-12-01 09:03:00 -070034 header->revision = 0;
Simon Glass78031ad2021-12-01 09:03:01 -070035 acpi_inc(ctx, sizeof(*header));
Simon Glass85b81612021-12-01 09:03:00 -070036
Simon Glass78031ad2021-12-01 09:03:01 -070037 ret = acpi_fill_csrt(ctx);
38 if (ret)
39 return log_msg_ret("fill", ret);
Simon Glass85b81612021-12-01 09:03:00 -070040
41 /* (Re)calculate length and checksum */
42 header->length = (ulong)ctx->current - (ulong)csrt;
43 header->checksum = table_compute_checksum(csrt, header->length);
44
45 acpi_add_table(ctx, csrt);
Simon Glass85b81612021-12-01 09:03:00 -070046
47 return 0;
48}
49ACPI_WRITER(5csrt, "CSRT", acpi_write_csrt, 0);