blob: d6bc0c099addaa1ea4df73bcf1029fd5291fc212 [file] [log] [blame]
Simon Glass9fb9e9b2020-04-09 10:27:38 -06001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Core ACPI (Advanced Configuration and Power Interface) support
4 *
5 * Copyright 2019 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
7 */
8
9#ifndef __DM_ACPI_H__
10#define __DM_ACPI_H__
11
12/* Allow operations to be optional for ACPI */
13#if CONFIG_IS_ENABLED(ACPIGEN)
14#define ACPI_OPS_PTR(_ptr) .acpi_ops = _ptr,
15#else
16#define ACPI_OPS_PTR(_ptr)
17#endif
18
Simon Glass0f277632020-07-07 13:11:50 -060019/* Length of an ACPI name string, excluding null terminator */
Simon Glass9fb9e9b2020-04-09 10:27:38 -060020#define ACPI_NAME_LEN 4
21
22/* Length of an ACPI name string including nul terminator */
23#define ACPI_NAME_MAX (ACPI_NAME_LEN + 1)
24
Simon Glass0f277632020-07-07 13:11:50 -060025/* Number of nested objects supported */
26#define ACPIGEN_LENSTACK_SIZE 10
27
Simon Glass4969d212020-04-08 16:57:37 -060028#if !defined(__ACPI__)
29
Simon Glass4ecb97e2021-12-01 09:02:47 -070030#include <linker_lists.h>
31
Simon Glasscd9667b2020-07-07 21:32:08 -060032struct nhlt;
Simon Glass3ba929a2020-10-30 21:38:53 -060033struct udevice;
Simon Glasscd9667b2020-07-07 21:32:08 -060034
Simon Glass64bbc0d2020-07-07 13:12:12 -060035/** enum acpi_dump_option - selects what ACPI information to dump */
36enum acpi_dump_option {
37 ACPI_DUMP_LIST, /* Just the list of items */
38 ACPI_DUMP_CONTENTS, /* Include the binary contents also */
39};
40
Simon Glass9fb9e9b2020-04-09 10:27:38 -060041/**
Simon Glass17968c32020-04-26 09:19:46 -060042 * struct acpi_ctx - Context used for writing ACPI tables
43 *
44 * This contains a few useful pieces of information used when writing
45 *
Simon Glass98528d42020-07-07 13:11:42 -060046 * @base: Base address of ACPI tables
Simon Glass17968c32020-04-26 09:19:46 -060047 * @current: Current address for writing
Simon Glassf93b9042021-12-01 09:02:46 -070048 * @tab_start: Address of start of the table being written. This is set up
49 * before the writer or driver method is called. It must not be changed by the
50 * method
Simon Glass575a5472020-04-26 09:19:50 -060051 * @rsdp: Pointer to the Root System Description Pointer, typically used when
52 * adding a new table. The RSDP holds pointers to the RSDT and XSDT.
53 * @rsdt: Pointer to the Root System Description Table
Simon Glassabeaca82020-04-26 09:19:52 -060054 * @xsdt: Pointer to the Extended System Description Table
Simon Glassf53f57d2021-12-01 09:02:51 -070055 * @facs: Pointer to the Firmware ACPI Control Structure
Simon Glass83c3cb52021-12-01 09:02:52 -070056 * @dsdt: Pointer to the Differentiated System Description Table
Simon Glasscd9667b2020-07-07 21:32:08 -060057 * @nhlt: Intel Non-High-Definition-Audio Link Table (NHLT) pointer, used to
58 * build up information that audio codecs need to provide in the NHLT ACPI
59 * table
Simon Glass0f277632020-07-07 13:11:50 -060060 * @len_stack: Stack of 'length' words to fix up later
61 * @ltop: Points to current top of stack (0 = empty)
Simon Glass17968c32020-04-26 09:19:46 -060062 */
63struct acpi_ctx {
Simon Glass98528d42020-07-07 13:11:42 -060064 void *base;
Simon Glass17968c32020-04-26 09:19:46 -060065 void *current;
Simon Glassf93b9042021-12-01 09:02:46 -070066 void *tab_start;
Simon Glass575a5472020-04-26 09:19:50 -060067 struct acpi_rsdp *rsdp;
68 struct acpi_rsdt *rsdt;
Simon Glassabeaca82020-04-26 09:19:52 -060069 struct acpi_xsdt *xsdt;
Simon Glassf53f57d2021-12-01 09:02:51 -070070 struct acpi_facs *facs;
Simon Glass83c3cb52021-12-01 09:02:52 -070071 struct acpi_table_header *dsdt;
Simon Glasscd9667b2020-07-07 21:32:08 -060072 struct nhlt *nhlt;
Simon Glass0f277632020-07-07 13:11:50 -060073 char *len_stack[ACPIGEN_LENSTACK_SIZE];
74 int ltop;
Simon Glass17968c32020-04-26 09:19:46 -060075};
76
Simon Glass4ecb97e2021-12-01 09:02:47 -070077/**
78 * enum acpi_writer_flags_t - flags to use for the ACPI writers
Simon Glasse9f6e6a2021-12-01 09:02:50 -070079 *
80 * ACPIWF_ALIGN64 - align to 64 bytes after writing this one (default is 16)
Simon Glass4ecb97e2021-12-01 09:02:47 -070081 */
82enum acpi_writer_flags_t {
Simon Glasse9f6e6a2021-12-01 09:02:50 -070083 ACPIWF_ALIGN64 = 1 << 0,
Simon Glass4ecb97e2021-12-01 09:02:47 -070084};
85
86struct acpi_writer;
87
88/**
89 * acpi_writer_func() - Function that can write an ACPI table
90 *
91 * @ctx: ACPI context to use for writing
92 * @entry: Linker-list entry for this writer
93 * @return 0 if OK, -ve on error
94 */
95typedef int (*acpi_writer_func)(struct acpi_ctx *ctx,
96 const struct acpi_writer *entry);
97
98/**
99 * struct acpi_writer - an ACPI table that can be written
100 *
101 * @name: Name of the writer
102 * @table: Table name that is generated (e.g. "DSDT")
103 * @h_write: Writer function
104 */
105struct acpi_writer {
106 const char *name;
107 const char *table;
108 acpi_writer_func h_write;
109 int flags;
110};
111
Simon Glasse9f6e6a2021-12-01 09:02:50 -0700112/* Declare a new ACPI-table writer */
Simon Glass4ecb97e2021-12-01 09:02:47 -0700113#define ACPI_WRITER(_name, _table, _write, _flags) \
114 ll_entry_declare(struct acpi_writer, _name, acpi_writer) = { \
115 .name = #_name, \
116 .table = _table, \
117 .h_write = _write, \
118 .flags = _flags, \
119 }
120
Simon Glasse9f6e6a2021-12-01 09:02:50 -0700121/* Get a pointer to a given ACPI-table writer */
122#define ACPI_WRITER_GET(_name) \
123 ll_entry_get(struct acpi_writer, _name, acpi_writer)
124
Simon Glass17968c32020-04-26 09:19:46 -0600125/**
Simon Glass9fb9e9b2020-04-09 10:27:38 -0600126 * struct acpi_ops - ACPI operations supported by driver model
127 */
128struct acpi_ops {
129 /**
130 * get_name() - Obtain the ACPI name of a device
131 *
132 * @dev: Device to check
133 * @out_name: Place to put the name, must hold at least ACPI_NAME_MAX
134 * bytes
135 * @return 0 if OK, -ENOENT if no name is available, other -ve value on
136 * other error
137 */
138 int (*get_name)(const struct udevice *dev, char *out_name);
Simon Glass17968c32020-04-26 09:19:46 -0600139
140 /**
141 * write_tables() - Write out any tables required by this device
142 *
143 * @dev: Device to write
144 * @ctx: ACPI context to use
145 * @return 0 if OK, -ve on error
146 */
147 int (*write_tables)(const struct udevice *dev, struct acpi_ctx *ctx);
Simon Glassd43e0ba2020-07-07 13:12:03 -0600148
149 /**
Patrick Rudolphbff7c572024-10-23 15:19:51 +0200150 * fill_madt() - Generate MADT sub-tables for a device
151 *
152 * This is called to create the MADT table. The method should write out
153 * whatever sub-table is needed by this device. It will end up in the
154 * MADT table.
155 *
156 * Note that this is called 'fill' because the entire contents of the
157 * MADT is build by calling this method on all devices.
158 *
159 * @dev: Device to write
160 * @ctx: ACPI context to use
161 * @return 0 if OK, -ve on error
162 */
163 int (*fill_madt)(const struct udevice *dev, struct acpi_ctx *ctx);
164
165 /**
Simon Glassd43e0ba2020-07-07 13:12:03 -0600166 * fill_ssdt() - Generate SSDT code for a device
167 *
168 * This is called to create the SSDT code. The method should write out
169 * whatever ACPI code is needed by this device. It will end up in the
170 * SSDT table.
171 *
Simon Glass990cd5b2020-07-07 13:12:08 -0600172 * Note that this is called 'fill' because the entire contents of the
173 * SSDT is build by calling this method on all devices.
174 *
Simon Glassd43e0ba2020-07-07 13:12:03 -0600175 * @dev: Device to write
176 * @ctx: ACPI context to use
177 * @return 0 if OK, -ve on error
178 */
179 int (*fill_ssdt)(const struct udevice *dev, struct acpi_ctx *ctx);
Simon Glass990cd5b2020-07-07 13:12:08 -0600180
181 /**
182 * inject_dsdt() - Generate DSDT code for a device
183 *
184 * This is called to create the DSDT code. The method should write out
185 * whatever ACPI code is needed by this device. It will end up in the
186 * DSDT table.
187 *
188 * Note that this is called 'inject' because the output of calling this
189 * method on all devices is injected into the DSDT, the bulk of which
190 * is written in .asl files for the board.
191 *
192 * @dev: Device to write
193 * @ctx: ACPI context to use
194 * @return 0 if OK, -ve on error
195 */
196 int (*inject_dsdt)(const struct udevice *dev, struct acpi_ctx *ctx);
Simon Glasscd9667b2020-07-07 21:32:08 -0600197
198 /**
199 * setup_nhlt() - Set up audio information for this device
200 *
201 * The method can add information to ctx->nhlt if it likes
202 *
203 * @return 0 if OK, -ENODATA if nothing to add, -ve on error
204 */
205 int (*setup_nhlt)(const struct udevice *dev, struct acpi_ctx *ctx);
Simon Glass9fb9e9b2020-04-09 10:27:38 -0600206};
207
208#define device_get_acpi_ops(dev) ((dev)->driver->acpi_ops)
209
210/**
211 * acpi_get_name() - Obtain the ACPI name of a device
212 *
213 * @dev: Device to check
214 * @out_name: Place to put the name, must hold at least ACPI_NAME_MAX
215 * bytes
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100216 * Return: 0 if OK, -ENOENT if no name is available, other -ve value on
Simon Glass9fb9e9b2020-04-09 10:27:38 -0600217 * other error
218 */
219int acpi_get_name(const struct udevice *dev, char *out_name);
220
221/**
222 * acpi_copy_name() - Copy an ACPI name to an output buffer
223 *
224 * This convenience function can be used to return a literal string as a name
225 * in functions that implement the get_name() method.
226 *
227 * For example:
228 *
229 * static int mydev_get_name(const struct udevice *dev, char *out_name)
230 * {
231 * return acpi_copy_name(out_name, "WIBB");
232 * }
233 *
234 * @out_name: Place to put the name
235 * @name: Name to copy
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100236 * Return: 0 (always)
Simon Glass9fb9e9b2020-04-09 10:27:38 -0600237 */
238int acpi_copy_name(char *out_name, const char *name);
239
Simon Glass17968c32020-04-26 09:19:46 -0600240/**
241 * acpi_write_dev_tables() - Write ACPI tables required by devices
242 *
243 * This scans through all devices and tells them to write any tables they want
244 * to write.
245 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100246 * Return: 0 if OK, -ve if any device returned an error
Simon Glass17968c32020-04-26 09:19:46 -0600247 */
248int acpi_write_dev_tables(struct acpi_ctx *ctx);
249
Simon Glassd43e0ba2020-07-07 13:12:03 -0600250/**
Patrick Rudolphbff7c572024-10-23 15:19:51 +0200251 * acpi_fill_madt_subtbl() - Generate ACPI tables for MADT
252 *
253 * This is called to create the MADT sub-tables for all devices.
254 *
255 * @ctx: ACPI context to use
256 * Return: 0 if OK, -ve on error
257 */
258int acpi_fill_madt_subtbl(struct acpi_ctx *ctx);
259
260/**
Simon Glassd43e0ba2020-07-07 13:12:03 -0600261 * acpi_fill_ssdt() - Generate ACPI tables for SSDT
262 *
263 * This is called to create the SSDT code for all devices.
264 *
265 * @ctx: ACPI context to use
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100266 * Return: 0 if OK, -ve on error
Simon Glassd43e0ba2020-07-07 13:12:03 -0600267 */
268int acpi_fill_ssdt(struct acpi_ctx *ctx);
269
Simon Glass990cd5b2020-07-07 13:12:08 -0600270/**
271 * acpi_inject_dsdt() - Generate ACPI tables for DSDT
272 *
273 * This is called to create the DSDT code for all devices.
274 *
275 * @ctx: ACPI context to use
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100276 * Return: 0 if OK, -ve on error
Simon Glass990cd5b2020-07-07 13:12:08 -0600277 */
278int acpi_inject_dsdt(struct acpi_ctx *ctx);
279
Simon Glass64bbc0d2020-07-07 13:12:12 -0600280/**
Simon Glasscd9667b2020-07-07 21:32:08 -0600281 * acpi_setup_nhlt() - Set up audio information
282 *
283 * This is called to set up the nhlt information for all devices.
284 *
285 * @ctx: ACPI context to use
286 * @nhlt: Pointer to nhlt information to add to
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100287 * Return: 0 if OK, -ve on error
Simon Glasscd9667b2020-07-07 21:32:08 -0600288 */
289int acpi_setup_nhlt(struct acpi_ctx *ctx, struct nhlt *nhlt);
290
291/**
Simon Glass877205e2021-12-01 09:03:04 -0700292 * acpi_add_other_item() - Add a new table to the list of ACPI tables
293 *
294 * This adds an entry of type ACPIT_TYPE_OTHER
295 *
296 * @ctx: ACPI context
297 * @writer: Writer entry that generated the data
298 * @type: Table type it refers to
299 * @start: The start of the data (the end is obtained from ctx->current)
300 * @return 0 if OK, -ENOSPC if too many items, -ENOMEM if out of memory
301 */
302int acpi_add_other_item(struct acpi_ctx *ctx, const struct acpi_writer *writer,
303 void *start);
304
305/**
Simon Glass64bbc0d2020-07-07 13:12:12 -0600306 * acpi_dump_items() - Dump out the collected ACPI items
307 *
308 * This lists the ACPI DSDT and SSDT items generated by the various U-Boot
309 * drivers.
310 *
311 * @option: Sets what should be dumpyed
312 */
313void acpi_dump_items(enum acpi_dump_option option);
314
Simon Glass01232332020-07-07 21:32:07 -0600315/**
316 * acpi_get_path() - Get the full ACPI path for a device
317 *
318 * This checks for any override in the device tree and calls acpi_device_path()
319 * if not
320 *
321 * @dev: Device to check
322 * @out_path: Buffer to place the path in (should be ACPI_PATH_MAX long)
323 * @maxlen: Size of buffer (typically ACPI_PATH_MAX)
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100324 * Return: 0 if OK, -ve on error
Simon Glass01232332020-07-07 21:32:07 -0600325 */
326int acpi_get_path(const struct udevice *dev, char *out_path, int maxlen);
327
Simon Glassa385d492020-11-04 09:57:33 -0700328/**
329 * acpi_reset_items() - Reset the list of ACPI items to empty
330 *
331 * This list keeps track of DSDT and SSDT items that are generated
332 * programmatically. The 'acpi items' command shows the list. Use this function
333 * to empty the list, before writing new items.
334 */
335void acpi_reset_items(void);
336
Simon Glass4ecb97e2021-12-01 09:02:47 -0700337/**
338 * acpi_write_one() - Call a single ACPI writer entry
339 *
340 * This handles aligning the context afterwards, if the entry flags indicate
341 * that.
342 *
343 * @ctx: ACPI context to use
344 * @entry: Entry to call
345 * @return 0 if OK, -ENOENT if this writer produced an empty entry, other -ve
346 * value on error
347 */
348int acpi_write_one(struct acpi_ctx *ctx, const struct acpi_writer *entry);
349
Simon Glass37acc662021-12-01 09:02:48 -0700350/**
351 * acpi_setup_ctx() - Set up a new ACPI context
352 *
353 * This zeros the context and sets up the base and current pointers, ensuring
354 * that they are aligned. Then it writes the acpi_start and acpi_ctx values in
355 * global_data
356 *
357 * @ctx: ACPI context to set up
358 * @start: Start address for ACPI table
359 */
360void acpi_setup_ctx(struct acpi_ctx *ctx, ulong start);
361
Simon Glasse9f6e6a2021-12-01 09:02:50 -0700362/**
363 * acpi_write_one() - Call a single ACPI writer entry
364 *
365 * This handles aligning the context afterwards, if the entry flags indicate
366 * that.
367 *
368 * @ctx: ACPI context to use
369 * @entry: Entry to call
370 * @return 0 if OK, -ENOENT if this writer produced an empty entry, other -ve
371 * value on error
372 */
373int acpi_write_one(struct acpi_ctx *ctx, const struct acpi_writer *entry);
374
Simon Glass4969d212020-04-08 16:57:37 -0600375#endif /* __ACPI__ */
376
Simon Glass9fb9e9b2020-04-09 10:27:38 -0600377#endif