blob: a2dc84f799cfc8d419cdb51073a742e42f5e02dd [file] [log] [blame]
Patrick Georgi11f00792020-03-04 15:10:45 +01001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Rudolf Marek293b5f52009-02-01 18:35:15 +00003
Paul Menzel0f4c0e22013-02-22 12:33:08 +01004/* How much nesting do we support? */
Rudolf Marek293b5f52009-02-01 18:35:15 +00005#define ACPIGEN_LENSTACK_SIZE 10
6
Paul Menzel0f4c0e22013-02-22 12:33:08 +01007/*
Timothy Pearson83abd812015-06-08 19:35:06 -05008 * If you need to change this, change acpigen_write_len_f and
Vladimir Serbinenko8104da72014-11-09 03:33:51 +01009 * acpigen_pop_len
Paul Menzel0f4c0e22013-02-22 12:33:08 +010010 */
Rudolf Marek293b5f52009-02-01 18:35:15 +000011
Timothy Pearson83abd812015-06-08 19:35:06 -050012#define ACPIGEN_MAXLEN 0xfffff
Rudolf Marek293b5f52009-02-01 18:35:15 +000013
Duncan Laurie3829f232016-05-09 11:08:46 -070014#include <lib.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000015#include <string.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070016#include <acpi/acpigen.h>
Elyes HAOUAScd4fe0f2019-03-29 17:12:15 +010017#include <assert.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000018#include <console/console.h>
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +000019#include <device/device.h>
Furquan Shaikh1a829232020-04-23 11:11:05 -070020#include <device/pci_def.h>
21#include <device/pci_type.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000022
23static char *gencurrent;
24
25char *len_stack[ACPIGEN_LENSTACK_SIZE];
26int ltop = 0;
27
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010028void acpigen_write_len_f(void)
Rudolf Marek293b5f52009-02-01 18:35:15 +000029{
30 ASSERT(ltop < (ACPIGEN_LENSTACK_SIZE - 1))
Paul Menzel0f4c0e22013-02-22 12:33:08 +010031 len_stack[ltop++] = gencurrent;
Rudolf Marek293b5f52009-02-01 18:35:15 +000032 acpigen_emit_byte(0);
33 acpigen_emit_byte(0);
Timothy Pearson83abd812015-06-08 19:35:06 -050034 acpigen_emit_byte(0);
Rudolf Marek293b5f52009-02-01 18:35:15 +000035}
36
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010037void acpigen_pop_len(void)
38{
39 int len;
40 ASSERT(ltop > 0)
41 char *p = len_stack[--ltop];
42 len = gencurrent - p;
43 ASSERT(len <= ACPIGEN_MAXLEN)
Timothy Pearson83abd812015-06-08 19:35:06 -050044 /* generate store length for 0xfffff max */
45 p[0] = (0x80 | (len & 0xf));
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010046 p[1] = (len >> 4 & 0xff);
Timothy Pearson83abd812015-06-08 19:35:06 -050047 p[2] = (len >> 12 & 0xff);
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010048
49}
50
Stefan Reinauerf96c2d92009-04-22 16:23:47 +000051void acpigen_set_current(char *curr)
52{
53 gencurrent = curr;
Rudolf Marek293b5f52009-02-01 18:35:15 +000054}
55
Stefan Reinauerf96c2d92009-04-22 16:23:47 +000056char *acpigen_get_current(void)
57{
58 return gencurrent;
Rudolf Marek293b5f52009-02-01 18:35:15 +000059}
60
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010061void acpigen_emit_byte(unsigned char b)
Rudolf Marek293b5f52009-02-01 18:35:15 +000062{
63 (*gencurrent++) = b;
Rudolf Marek293b5f52009-02-01 18:35:15 +000064}
65
Furquan Shaikhe4e9b942016-10-20 23:09:05 -070066void acpigen_emit_ext_op(uint8_t op)
67{
68 acpigen_emit_byte(EXT_OP_PREFIX);
69 acpigen_emit_byte(op);
70}
71
Duncan Laurie9ccae752016-05-09 07:43:19 -070072void acpigen_emit_word(unsigned int data)
73{
74 acpigen_emit_byte(data & 0xff);
75 acpigen_emit_byte((data >> 8) & 0xff);
76}
77
78void acpigen_emit_dword(unsigned int data)
79{
80 acpigen_emit_byte(data & 0xff);
81 acpigen_emit_byte((data >> 8) & 0xff);
82 acpigen_emit_byte((data >> 16) & 0xff);
83 acpigen_emit_byte((data >> 24) & 0xff);
84}
85
Duncan Laurie85d80272016-07-02 19:53:54 -070086char *acpigen_write_package(int nr_el)
Rudolf Marek293b5f52009-02-01 18:35:15 +000087{
Duncan Laurie85d80272016-07-02 19:53:54 -070088 char *p;
Furquan Shaikhe4e9b942016-10-20 23:09:05 -070089 acpigen_emit_byte(PACKAGE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010090 acpigen_write_len_f();
Duncan Laurie85d80272016-07-02 19:53:54 -070091 p = acpigen_get_current();
Rudolf Marek293b5f52009-02-01 18:35:15 +000092 acpigen_emit_byte(nr_el);
Duncan Laurie85d80272016-07-02 19:53:54 -070093 return p;
Rudolf Marek293b5f52009-02-01 18:35:15 +000094}
95
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010096void acpigen_write_byte(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +000097{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -070098 acpigen_emit_byte(BYTE_PREFIX);
Rudolf Marek293b5f52009-02-01 18:35:15 +000099 acpigen_emit_byte(data & 0xff);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000100}
101
Duncan Laurie9ccae752016-05-09 07:43:19 -0700102void acpigen_write_word(unsigned int data)
103{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700104 acpigen_emit_byte(WORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700105 acpigen_emit_word(data);
106}
107
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100108void acpigen_write_dword(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000109{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700110 acpigen_emit_byte(DWORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700111 acpigen_emit_dword(data);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000112}
113
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100114void acpigen_write_qword(uint64_t data)
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000115{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700116 acpigen_emit_byte(QWORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700117 acpigen_emit_dword(data & 0xffffffff);
118 acpigen_emit_dword((data >> 32) & 0xffffffff);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000119}
120
Duncan Laurief7c38762016-05-09 08:20:38 -0700121void acpigen_write_zero(void)
122{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700123 acpigen_emit_byte(ZERO_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700124}
125
126void acpigen_write_one(void)
127{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700128 acpigen_emit_byte(ONE_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700129}
130
131void acpigen_write_ones(void)
132{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700133 acpigen_emit_byte(ONES_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700134}
135
136void acpigen_write_integer(uint64_t data)
137{
138 if (data == 0)
139 acpigen_write_zero();
140 else if (data == 1)
141 acpigen_write_one();
142 else if (data <= 0xff)
143 acpigen_write_byte((unsigned char)data);
144 else if (data <= 0xffff)
145 acpigen_write_word((unsigned int)data);
146 else if (data <= 0xffffffff)
147 acpigen_write_dword((unsigned int)data);
148 else
149 acpigen_write_qword(data);
150}
151
152void acpigen_write_name_zero(const char *name)
153{
154 acpigen_write_name(name);
155 acpigen_write_one();
156}
157
158void acpigen_write_name_one(const char *name)
159{
160 acpigen_write_name(name);
161 acpigen_write_zero();
162}
163
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100164void acpigen_write_name_byte(const char *name, uint8_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000165{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100166 acpigen_write_name(name);
167 acpigen_write_byte(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000168}
169
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100170void acpigen_write_name_dword(const char *name, uint32_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000171{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100172 acpigen_write_name(name);
173 acpigen_write_dword(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000174}
175
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100176void acpigen_write_name_qword(const char *name, uint64_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000177{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100178 acpigen_write_name(name);
179 acpigen_write_qword(val);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000180}
181
Duncan Laurief7c38762016-05-09 08:20:38 -0700182void acpigen_write_name_integer(const char *name, uint64_t val)
183{
184 acpigen_write_name(name);
185 acpigen_write_integer(val);
186}
187
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700188void acpigen_write_name_string(const char *name, const char *string)
189{
190 acpigen_write_name(name);
191 acpigen_write_string(string);
192}
193
Patrick Rudolph389c8272019-12-17 13:54:41 +0100194void acpigen_write_name_unicode(const char *name, const char *string)
195{
196 const size_t len = strlen(string) + 1;
197 acpigen_write_name(name);
198 acpigen_emit_byte(BUFFER_OP);
199 acpigen_write_len_f();
200 acpigen_write_integer(len);
201 for (size_t i = 0; i < len; i++) {
202 const char c = string[i];
203 /* Simple ASCII to UTF-16 conversion, replace non ASCII characters */
204 acpigen_emit_word(c >= 0 ? c : '?');
205 }
206 acpigen_pop_len();
207}
208
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100209void acpigen_emit_stream(const char *data, int size)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000210{
Rudolf Marek293b5f52009-02-01 18:35:15 +0000211 int i;
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700212 for (i = 0; i < size; i++)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000213 acpigen_emit_byte(data[i]);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000214}
215
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700216void acpigen_emit_string(const char *string)
217{
Jonathan Neuschäfer0ba307f2016-05-17 17:40:09 +0200218 acpigen_emit_stream(string, string ? strlen(string) : 0);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700219 acpigen_emit_byte('\0'); /* NUL */
220}
221
222void acpigen_write_string(const char *string)
223{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700224 acpigen_emit_byte(STRING_PREFIX);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700225 acpigen_emit_string(string);
226}
227
Duncan Laurie37319032016-05-26 12:47:05 -0700228void acpigen_write_coreboot_hid(enum coreboot_acpi_ids id)
229{
Joel Kitching3ab36b842018-03-08 12:09:32 +0800230 char hid[9]; /* BOOTxxxx */
Duncan Laurie37319032016-05-26 12:47:05 -0700231
Duncan Laurie02fdb3e2016-09-22 14:08:33 -0700232 snprintf(hid, sizeof(hid), "%.4s%04X", COREBOOT_ACPI_ID, id);
Duncan Laurie37319032016-05-26 12:47:05 -0700233 acpigen_write_name_string("_HID", hid);
234}
235
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100236/*
237 * The naming conventions for ACPI namespace names are a bit tricky as
Martin Roth0cd338e2016-07-29 14:07:30 -0600238 * each element has to be 4 chars wide ("All names are a fixed 32 bits.")
239 * and "By convention, when an ASL compiler pads a name shorter than 4
240 * characters, it is done so with trailing underscores ('_')".
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100241 *
242 * Check sections 5.3, 18.2.2 and 18.4 of ACPI spec 3.0 for details.
243 */
Rudolf Marek3310d752009-06-21 20:26:13 +0000244
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700245static void acpigen_emit_simple_namestring(const char *name)
246{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100247 int i;
Rudolf Marek3310d752009-06-21 20:26:13 +0000248 char ud[] = "____";
249 for (i = 0; i < 4; i++) {
250 if ((name[i] == '\0') || (name[i] == '.')) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100251 acpigen_emit_stream(ud, 4 - i);
Rudolf Marek3310d752009-06-21 20:26:13 +0000252 break;
Rudolf Marek3310d752009-06-21 20:26:13 +0000253 }
Lee Leahy0b5678f2017-03-16 16:01:40 -0700254 acpigen_emit_byte(name[i]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000255 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000256}
257
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700258static void acpigen_emit_double_namestring(const char *name, int dotpos)
259{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700260 acpigen_emit_byte(DUAL_NAME_PREFIX);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100261 acpigen_emit_simple_namestring(name);
262 acpigen_emit_simple_namestring(&name[dotpos + 1]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000263}
264
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700265static void acpigen_emit_multi_namestring(const char *name)
266{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100267 int count = 0;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000268 unsigned char *pathlen;
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700269 acpigen_emit_byte(MULTI_NAME_PREFIX);
270 acpigen_emit_byte(ZERO_OP);
Rudolf Marek3310d752009-06-21 20:26:13 +0000271 pathlen = ((unsigned char *) acpigen_get_current()) - 1;
272
273 while (name[0] != '\0') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100274 acpigen_emit_simple_namestring(name);
Rudolf Marek3310d752009-06-21 20:26:13 +0000275 /* find end or next entity */
276 while ((name[0] != '.') && (name[0] != '\0'))
277 name++;
278 /* forward to next */
279 if (name[0] == '.')
280 name++;
281 count++;
282 }
283
284 pathlen[0] = count;
Rudolf Marek3310d752009-06-21 20:26:13 +0000285}
286
287
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700288void acpigen_emit_namestring(const char *namepath)
289{
Rudolf Marek3310d752009-06-21 20:26:13 +0000290 int dotcount = 0, i;
Myles Watson3fe6b702009-10-09 20:13:43 +0000291 int dotpos = 0;
Rudolf Marek3310d752009-06-21 20:26:13 +0000292
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600293 /* We can start with a '\'. */
Rudolf Marek3310d752009-06-21 20:26:13 +0000294 if (namepath[0] == '\\') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100295 acpigen_emit_byte('\\');
Rudolf Marek3310d752009-06-21 20:26:13 +0000296 namepath++;
297 }
298
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600299 /* And there can be any number of '^' */
Rudolf Marek3310d752009-06-21 20:26:13 +0000300 while (namepath[0] == '^') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100301 acpigen_emit_byte('^');
Rudolf Marek3310d752009-06-21 20:26:13 +0000302 namepath++;
303 }
304
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200305 /* If we have only \\ or only ^...^. Then we need to put a null
306 name (0x00). */
Elyes HAOUASdbf30672016-08-21 17:37:15 +0200307 if (namepath[0] == '\0') {
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700308 acpigen_emit_byte(ZERO_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100309 return;
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200310 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000311
312 i = 0;
313 while (namepath[i] != '\0') {
314 if (namepath[i] == '.') {
315 dotcount++;
316 dotpos = i;
317 }
318 i++;
319 }
320
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700321 if (dotcount == 0)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100322 acpigen_emit_simple_namestring(namepath);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700323 else if (dotcount == 1)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100324 acpigen_emit_double_namestring(namepath, dotpos);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700325 else
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100326 acpigen_emit_multi_namestring(namepath);
Rudolf Marek3310d752009-06-21 20:26:13 +0000327}
328
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100329void acpigen_write_name(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000330{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700331 acpigen_emit_byte(NAME_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100332 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000333}
334
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100335void acpigen_write_scope(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000336{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700337 acpigen_emit_byte(SCOPE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100338 acpigen_write_len_f();
339 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000340}
Rudolf Marekf997b552009-02-14 15:40:23 +0000341
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100342void acpigen_write_processor(u8 cpuindex, u32 pblock_addr, u8 pblock_len)
Rudolf Marekf997b552009-02-14 15:40:23 +0000343{
344/*
Christian Walterbe3979c2019-12-18 15:07:59 +0100345 Processor (\_SB.CPcpuindex, cpuindex, pblock_addr, pblock_len)
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200346 {
Rudolf Marekf997b552009-02-14 15:40:23 +0000347*/
348 char pscope[16];
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700349 acpigen_emit_ext_op(PROCESSOR_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100350 acpigen_write_len_f();
Rudolf Marekf997b552009-02-14 15:40:23 +0000351
Elyes HAOUAS7d87e762016-10-03 22:11:07 +0200352 snprintf(pscope, sizeof(pscope),
Marc Jones7a2d4ea2017-08-25 18:54:23 -0600353 CONFIG_ACPI_CPU_STRING, (unsigned int) cpuindex);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100354 acpigen_emit_namestring(pscope);
Rudolf Marekf997b552009-02-14 15:40:23 +0000355 acpigen_emit_byte(cpuindex);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700356 acpigen_emit_dword(pblock_addr);
Rudolf Marekf997b552009-02-14 15:40:23 +0000357 acpigen_emit_byte(pblock_len);
Rudolf Marekf997b552009-02-14 15:40:23 +0000358}
359
Nico Huber4d211ac2017-09-01 21:14:36 +0200360void acpigen_write_processor_package(const char *const name,
361 const unsigned int first_core,
362 const unsigned int core_count)
363{
364 unsigned int i;
365 char pscope[16];
366
367 acpigen_write_name(name);
368 acpigen_write_package(core_count);
369 for (i = first_core; i < first_core + core_count; ++i) {
370 snprintf(pscope, sizeof(pscope), CONFIG_ACPI_CPU_STRING, i);
371 acpigen_emit_namestring(pscope);
372 }
373 acpigen_pop_len();
374}
375
Arthur Heymans8f055272018-11-28 13:18:57 +0100376/* Method to notify all CPU cores */
377void acpigen_write_processor_cnot(const unsigned int number_of_cores)
378{
379 int core_id;
380
Christian Walterbe3979c2019-12-18 15:07:59 +0100381 acpigen_write_method("\\_SB.CNOT", 1);
Arthur Heymans8f055272018-11-28 13:18:57 +0100382 for (core_id = 0; core_id < number_of_cores; core_id++) {
383 char buffer[DEVICE_PATH_MAX];
384 snprintf(buffer, sizeof(buffer), CONFIG_ACPI_CPU_STRING,
385 core_id);
386 acpigen_emit_byte(NOTIFY_OP);
387 acpigen_emit_namestring(buffer);
388 acpigen_emit_byte(ARG0_OP);
389 }
390 acpigen_pop_len();
391}
392
Naresh G Solanki8535c662016-10-25 00:51:24 +0530393/*
394 * Generate ACPI AML code for OperationRegion
395 * Arg0: Pointer to struct opregion opreg = OPREGION(rname, space, offset, len)
396 * where rname is region name, space is region space, offset is region offset &
397 * len is region length.
398 * OperationRegion(regionname, regionspace, regionoffset, regionlength)
399 */
400void acpigen_write_opregion(struct opregion *opreg)
401{
402 /* OpregionOp */
403 acpigen_emit_ext_op(OPREGION_OP);
404 /* NameString 4 chars only */
405 acpigen_emit_simple_namestring(opreg->name);
406 /* RegionSpace */
407 acpigen_emit_byte(opreg->regionspace);
408 /* RegionOffset & RegionLen, it can be byte word or double word */
409 acpigen_write_integer(opreg->regionoffset);
410 acpigen_write_integer(opreg->regionlen);
411}
412
Patrick Rudolph32bae492019-08-08 12:47:30 +0200413/*
414 * Generate ACPI AML code for Mutex
415 * Arg0: Pointer to name of mutex
416 * Arg1: Initial value of mutex
417 */
418void acpigen_write_mutex(const char *name, const uint8_t flags)
419{
420 /* MutexOp */
421 acpigen_emit_ext_op(MUTEX_OP);
422 /* NameString 4 chars only */
423 acpigen_emit_simple_namestring(name);
424 acpigen_emit_byte(flags);
425}
426
427void acpigen_write_acquire(const char *name, const uint16_t val)
428{
429 /* AcquireOp */
430 acpigen_emit_ext_op(ACQUIRE_OP);
431 /* NameString 4 chars only */
432 acpigen_emit_simple_namestring(name);
433 acpigen_emit_word(val);
434}
435
436void acpigen_write_release(const char *name)
437{
438 /* ReleaseOp */
439 acpigen_emit_ext_op(RELEASE_OP);
440 /* NameString 4 chars only */
441 acpigen_emit_simple_namestring(name);
442}
443
Patrick Rudolph894977b2017-07-01 16:15:05 +0200444static void acpigen_write_field_length(uint32_t len)
445{
446 uint8_t i, j;
447 uint8_t emit[4];
448
449 i = 1;
450 if (len < 0x40) {
451 emit[0] = len & 0x3F;
452 } else {
453 emit[0] = len & 0xF;
454 len >>= 4;
455 while (len) {
456 emit[i] = len & 0xFF;
457 i++;
458 len >>= 8;
459 }
460 }
461 /* Update bit 7:6 : Number of bytes followed by emit[0] */
462 emit[0] |= (i - 1) << 6;
463
464 for (j = 0; j < i; j++)
465 acpigen_emit_byte(emit[j]);
466}
467
Naresh G Solanki8535c662016-10-25 00:51:24 +0530468static void acpigen_write_field_offset(uint32_t offset,
469 uint32_t current_bit_pos)
470{
471 uint32_t diff_bits;
Naresh G Solanki8535c662016-10-25 00:51:24 +0530472
473 if (offset < current_bit_pos) {
474 printk(BIOS_WARNING, "%s: Cannot move offset backward",
475 __func__);
476 return;
477 }
478
479 diff_bits = offset - current_bit_pos;
480 /* Upper limit */
481 if (diff_bits > 0xFFFFFFF) {
482 printk(BIOS_WARNING, "%s: Offset very large to encode",
483 __func__);
484 return;
485 }
486
Naresh G Solanki8535c662016-10-25 00:51:24 +0530487 acpigen_emit_byte(0);
Patrick Rudolph894977b2017-07-01 16:15:05 +0200488 acpigen_write_field_length(diff_bits);
489}
490
491static void acpigen_write_field_name(const char *name, uint32_t size)
492{
493 acpigen_emit_simple_namestring(name);
494 acpigen_write_field_length(size);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530495}
496
497/*
498 * Generate ACPI AML code for Field
499 * Arg0: region name
500 * Arg1: Pointer to struct fieldlist.
501 * Arg2: no. of entries in Arg1
502 * Arg3: flags which indicate filed access type, lock rule & update rule.
503 * Example with fieldlist
504 * struct fieldlist l[] = {
505 * FIELDLIST_OFFSET(0x84),
506 * FIELDLIST_NAMESTR("PMCS", 2),
507 * };
Elyes HAOUASa342f392018-10-17 10:56:26 +0200508 * acpigen_write_field("UART", l, ARRAY_SIZE(l), FIELD_ANYACC | FIELD_NOLOCK |
Naresh G Solanki8535c662016-10-25 00:51:24 +0530509 * FIELD_PRESERVE);
510 * Output:
511 * Field (UART, AnyAcc, NoLock, Preserve)
512 * {
513 * Offset (0x84),
514 * PMCS, 2
515 * }
516 */
Furquan Shaikhf9392992020-04-27 23:18:12 -0700517void acpigen_write_field(const char *name, const struct fieldlist *l, size_t count,
Naresh G Solanki8535c662016-10-25 00:51:24 +0530518 uint8_t flags)
519{
520 uint16_t i;
521 uint32_t current_bit_pos = 0;
522
523 /* FieldOp */
524 acpigen_emit_ext_op(FIELD_OP);
525 /* Package Length */
526 acpigen_write_len_f();
527 /* NameString 4 chars only */
528 acpigen_emit_simple_namestring(name);
529 /* Field Flag */
530 acpigen_emit_byte(flags);
531
532 for (i = 0; i < count; i++) {
533 switch (l[i].type) {
534 case NAME_STRING:
Patrick Rudolph894977b2017-07-01 16:15:05 +0200535 acpigen_write_field_name(l[i].name, l[i].bits);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530536 current_bit_pos += l[i].bits;
537 break;
538 case OFFSET:
539 acpigen_write_field_offset(l[i].bits, current_bit_pos);
540 current_bit_pos = l[i].bits;
541 break;
542 default:
543 printk(BIOS_ERR, "%s: Invalid field type 0x%X\n"
544 , __func__, l[i].type);
545 break;
546 }
547 }
548 acpigen_pop_len();
549}
550
Patrick Rudolph34846ad2019-05-22 11:59:23 +0200551/*
552 * Generate ACPI AML code for IndexField
553 * Arg0: region name
554 * Arg1: Pointer to struct fieldlist.
555 * Arg2: no. of entries in Arg1
556 * Arg3: flags which indicate filed access type, lock rule & update rule.
557 * Example with fieldlist
558 * struct fieldlist l[] = {
559 * FIELDLIST_OFFSET(0x84),
560 * FIELDLIST_NAMESTR("PMCS", 2),
561 * };
562 * acpigen_write_field("IDX", "DATA" l, ARRAY_SIZE(l), FIELD_ANYACC |
563 * FIELD_NOLOCK |
564 * FIELD_PRESERVE);
565 * Output:
566 * IndexField (IDX, DATA, AnyAcc, NoLock, Preserve)
567 * {
568 * Offset (0x84),
569 * PMCS, 2
570 * }
571 */
572void acpigen_write_indexfield(const char *idx, const char *data,
573 struct fieldlist *l, size_t count, uint8_t flags)
574{
575 uint16_t i;
576 uint32_t current_bit_pos = 0;
577
578 /* FieldOp */
579 acpigen_emit_ext_op(INDEX_FIELD_OP);
580 /* Package Length */
581 acpigen_write_len_f();
582 /* NameString 4 chars only */
583 acpigen_emit_simple_namestring(idx);
584 /* NameString 4 chars only */
585 acpigen_emit_simple_namestring(data);
586 /* Field Flag */
587 acpigen_emit_byte(flags);
588
589 for (i = 0; i < count; i++) {
590 switch (l[i].type) {
591 case NAME_STRING:
592 acpigen_write_field_name(l[i].name, l[i].bits);
593 current_bit_pos += l[i].bits;
594 break;
595 case OFFSET:
596 acpigen_write_field_offset(l[i].bits, current_bit_pos);
597 current_bit_pos = l[i].bits;
598 break;
599 default:
600 printk(BIOS_ERR, "%s: Invalid field type 0x%X\n"
601 , __func__, l[i].type);
602 break;
603 }
604 }
605 acpigen_pop_len();
606}
607
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100608void acpigen_write_empty_PCT(void)
Rudolf Marekf997b552009-02-14 15:40:23 +0000609{
610/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200611 Name (_PCT, Package (0x02)
612 {
613 ResourceTemplate ()
614 {
615 Register (FFixedHW,
616 0x00, // Bit Width
617 0x00, // Bit Offset
618 0x0000000000000000, // Address
619 ,)
620 },
Rudolf Marekf997b552009-02-14 15:40:23 +0000621
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200622 ResourceTemplate ()
623 {
624 Register (FFixedHW,
625 0x00, // Bit Width
626 0x00, // Bit Offset
627 0x0000000000000000, // Address
628 ,)
629 }
630 })
Rudolf Marekf997b552009-02-14 15:40:23 +0000631*/
632 static char stream[] = {
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700633 /* 00000030 "0._PCT.," */
634 0x08, 0x5F, 0x50, 0x43, 0x54, 0x12, 0x2C,
635 /* 00000038 "........" */
636 0x02, 0x11, 0x14, 0x0A, 0x11, 0x82, 0x0C, 0x00,
637 /* 00000040 "........" */
638 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
639 /* 00000048 "....y..." */
640 0x00, 0x00, 0x00, 0x00, 0x79, 0x00, 0x11, 0x14,
641 /* 00000050 "........" */
642 0x0A, 0x11, 0x82, 0x0C, 0x00, 0x7F, 0x00, 0x00,
643 /* 00000058 "........" */
644 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Rudolf Marekf997b552009-02-14 15:40:23 +0000645 0x00, 0x79, 0x00
646 };
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100647 acpigen_emit_stream(stream, ARRAY_SIZE(stream));
Rudolf Marekf997b552009-02-14 15:40:23 +0000648}
649
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100650void acpigen_write_empty_PTC(void)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200651{
652/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200653 Name (_PTC, Package (0x02)
654 {
655 ResourceTemplate ()
656 {
657 Register (FFixedHW,
658 0x00, // Bit Width
659 0x00, // Bit Offset
660 0x0000000000000000, // Address
661 ,)
662 },
Stefan Reinauer39205c62012-04-27 21:49:28 +0200663
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200664 ResourceTemplate ()
665 {
666 Register (FFixedHW,
667 0x00, // Bit Width
668 0x00, // Bit Offset
669 0x0000000000000000, // Address
670 ,)
671 }
672 })
Stefan Reinauer39205c62012-04-27 21:49:28 +0200673*/
Stefan Reinauer39205c62012-04-27 21:49:28 +0200674 acpi_addr_t addr = {
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100675 .space_id = ACPI_ADDRESS_SPACE_FIXED,
676 .bit_width = 0,
677 .bit_offset = 0,
678 .access_size = 0,
679 .addrl = 0,
680 .addrh = 0,
Stefan Reinauer39205c62012-04-27 21:49:28 +0200681 };
682
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100683 acpigen_write_name("_PTC");
684 acpigen_write_package(2);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200685
686 /* ControlRegister */
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700687 acpigen_write_register_resource(&addr);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200688
689 /* StatusRegister */
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700690 acpigen_write_register_resource(&addr);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200691
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100692 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200693}
694
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700695static void __acpigen_write_method(const char *name, uint8_t flags)
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100696{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700697 acpigen_emit_byte(METHOD_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100698 acpigen_write_len_f();
699 acpigen_emit_namestring(name);
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700700 acpigen_emit_byte(flags);
701}
702
703/* Method (name, nargs, NotSerialized) */
704void acpigen_write_method(const char *name, int nargs)
705{
706 __acpigen_write_method(name, (nargs & 7));
707}
708
709/* Method (name, nargs, Serialized) */
710void acpigen_write_method_serialized(const char *name, int nargs)
711{
712 __acpigen_write_method(name, (nargs & 7) | (1 << 3));
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100713}
714
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100715void acpigen_write_device(const char *name)
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100716{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700717 acpigen_emit_ext_op(DEVICE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100718 acpigen_write_len_f();
719 acpigen_emit_namestring(name);
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100720}
721
Duncan Laurieabe2de82016-05-09 11:08:46 -0700722void acpigen_write_STA(uint8_t status)
723{
724 /*
725 * Method (_STA, 0, NotSerialized) { Return (status) }
726 */
727 acpigen_write_method("_STA", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700728 acpigen_emit_byte(RETURN_OP);
Duncan Laurieabe2de82016-05-09 11:08:46 -0700729 acpigen_write_byte(status);
730 acpigen_pop_len();
731}
732
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100733/*
734 * Generates a func with max supported P-states.
735 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100736void acpigen_write_PPC(u8 nr)
Rudolf Marekf997b552009-02-14 15:40:23 +0000737{
738/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200739 Method (_PPC, 0, NotSerialized)
740 {
741 Return (nr)
742 }
Rudolf Marekf997b552009-02-14 15:40:23 +0000743*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100744 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700745 acpigen_emit_byte(RETURN_OP);
Rudolf Marekf997b552009-02-14 15:40:23 +0000746 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100747 acpigen_write_byte(nr);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100748 acpigen_pop_len();
Rudolf Marekf997b552009-02-14 15:40:23 +0000749}
750
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100751/*
752 * Generates a func with max supported P-states saved
753 * in the variable PPCM.
754 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100755void acpigen_write_PPC_NVS(void)
Duncan Laurie0eefa002012-07-16 12:11:53 -0700756{
757/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200758 Method (_PPC, 0, NotSerialized)
759 {
760 Return (PPCM)
761 }
Duncan Laurie0eefa002012-07-16 12:11:53 -0700762*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100763 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700764 acpigen_emit_byte(RETURN_OP);
Duncan Laurie0eefa002012-07-16 12:11:53 -0700765 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100766 acpigen_emit_namestring("PPCM");
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100767 acpigen_pop_len();
Duncan Laurie0eefa002012-07-16 12:11:53 -0700768}
769
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100770void acpigen_write_TPC(const char *gnvs_tpc_limit)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200771{
772/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200773 // Sample _TPC method
774 Method (_TPC, 0, NotSerialized)
775 {
776 Return (\TLVL)
777 }
778*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100779 acpigen_write_method("_TPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700780 acpigen_emit_byte(RETURN_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100781 acpigen_emit_namestring(gnvs_tpc_limit);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100782 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200783}
784
Duncan Laurieabe2de82016-05-09 11:08:46 -0700785void acpigen_write_PRW(u32 wake, u32 level)
786{
787 /*
788 * Name (_PRW, Package () { wake, level }
789 */
790 acpigen_write_name("_PRW");
791 acpigen_write_package(2);
792 acpigen_write_integer(wake);
793 acpigen_write_integer(level);
794 acpigen_pop_len();
795}
796
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100797void acpigen_write_PSS_package(u32 coreFreq, u32 power, u32 transLat,
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000798 u32 busmLat, u32 control, u32 status)
Rudolf Marekf997b552009-02-14 15:40:23 +0000799{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100800 acpigen_write_package(6);
801 acpigen_write_dword(coreFreq);
802 acpigen_write_dword(power);
803 acpigen_write_dword(transLat);
804 acpigen_write_dword(busmLat);
805 acpigen_write_dword(control);
806 acpigen_write_dword(status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100807 acpigen_pop_len();
Stefan Reinauerd4bacf92012-05-02 16:38:47 -0700808
809 printk(BIOS_DEBUG, "PSS: %uMHz power %u control 0x%x status 0x%x\n",
810 coreFreq, power, control, status);
Rudolf Marekf997b552009-02-14 15:40:23 +0000811}
Patrick Georgidf444bf2009-04-21 20:34:36 +0000812
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100813void acpigen_write_PSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Patrick Georgidf444bf2009-04-21 20:34:36 +0000814{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100815 acpigen_write_name("_PSD");
816 acpigen_write_package(1);
817 acpigen_write_package(5);
818 acpigen_write_byte(5); // 5 values
819 acpigen_write_byte(0); // revision 0
820 acpigen_write_dword(domain);
821 acpigen_write_dword(coordtype);
822 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100823 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100824 acpigen_pop_len();
Patrick Georgidf444bf2009-04-21 20:34:36 +0000825}
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000826
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100827void acpigen_write_CST_package_entry(acpi_cstate_t *cstate)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200828{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100829 acpigen_write_package(4);
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700830 acpigen_write_register_resource(&cstate->resource);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100831 acpigen_write_dword(cstate->ctype);
832 acpigen_write_dword(cstate->latency);
833 acpigen_write_dword(cstate->power);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100834 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +0200835}
836
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100837void acpigen_write_CST_package(acpi_cstate_t *cstate, int nentries)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200838{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100839 int i;
840 acpigen_write_name("_CST");
841 acpigen_write_package(nentries+1);
842 acpigen_write_dword(nentries);
Sven Schnelle0b86c762011-10-21 21:46:47 +0200843
844 for (i = 0; i < nentries; i++)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100845 acpigen_write_CST_package_entry(cstate + i);
Sven Schnelle0b86c762011-10-21 21:46:47 +0200846
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100847 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +0200848}
849
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700850void acpigen_write_CSD_package(u32 domain, u32 numprocs, CSD_coord coordtype,
851 u32 index)
Timothy Pearson83abd812015-06-08 19:35:06 -0500852{
853 acpigen_write_name("_CSD");
854 acpigen_write_package(1);
855 acpigen_write_package(6);
856 acpigen_write_byte(6); // 6 values
857 acpigen_write_byte(0); // revision 0
858 acpigen_write_dword(domain);
859 acpigen_write_dword(coordtype);
860 acpigen_write_dword(numprocs);
861 acpigen_write_dword(index);
862 acpigen_pop_len();
863 acpigen_pop_len();
864}
865
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100866void acpigen_write_TSS_package(int entries, acpi_tstate_t *tstate_list)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200867{
868/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200869 Sample _TSS package with 100% and 50% duty cycles
870 Name (_TSS, Package (0x02)
871 {
872 Package(){100, 1000, 0, 0x00, 0)
873 Package(){50, 520, 0, 0x18, 0)
874 })
875*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100876 int i;
Stefan Reinauer39205c62012-04-27 21:49:28 +0200877 acpi_tstate_t *tstate = tstate_list;
878
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100879 acpigen_write_name("_TSS");
880 acpigen_write_package(entries);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200881
882 for (i = 0; i < entries; i++) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100883 acpigen_write_package(5);
884 acpigen_write_dword(tstate->percent);
885 acpigen_write_dword(tstate->power);
886 acpigen_write_dword(tstate->latency);
887 acpigen_write_dword(tstate->control);
888 acpigen_write_dword(tstate->status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100889 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200890 tstate++;
Stefan Reinauer39205c62012-04-27 21:49:28 +0200891 }
892
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100893 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200894}
895
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100896void acpigen_write_TSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200897{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100898 acpigen_write_name("_TSD");
899 acpigen_write_package(1);
900 acpigen_write_package(5);
901 acpigen_write_byte(5); // 5 values
902 acpigen_write_byte(0); // revision 0
903 acpigen_write_dword(domain);
904 acpigen_write_dword(coordtype);
905 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100906 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100907 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200908}
909
910
911
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100912void acpigen_write_mem32fixed(int readwrite, u32 base, u32 size)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000913{
914 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +0200915 * ACPI 4.0 section 6.4.3.4: 32-Bit Fixed Memory Range Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000916 * Byte 0:
917 * Bit7 : 1 => big item
918 * Bit6-0: 0000110 (0x6) => 32-bit fixed memory
919 */
920 acpigen_emit_byte(0x86);
921 /* Byte 1+2: length (0x0009) */
922 acpigen_emit_byte(0x09);
923 acpigen_emit_byte(0x00);
924 /* bit1-7 are ignored */
925 acpigen_emit_byte(readwrite ? 0x01 : 0x00);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700926 acpigen_emit_dword(base);
927 acpigen_emit_dword(size);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000928}
929
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700930static void acpigen_write_register(const acpi_addr_t *addr)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200931{
Stefan Reinauer4cc8c702012-04-27 21:34:16 +0200932 acpigen_emit_byte(0x82); /* Register Descriptor */
933 acpigen_emit_byte(0x0c); /* Register Length 7:0 */
934 acpigen_emit_byte(0x00); /* Register Length 15:8 */
935 acpigen_emit_byte(addr->space_id); /* Address Space ID */
936 acpigen_emit_byte(addr->bit_width); /* Register Bit Width */
937 acpigen_emit_byte(addr->bit_offset); /* Register Bit Offset */
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100938 acpigen_emit_byte(addr->access_size); /* Register Access Size */
Duncan Laurie9ccae752016-05-09 07:43:19 -0700939 acpigen_emit_dword(addr->addrl); /* Register Address Low */
940 acpigen_emit_dword(addr->addrh); /* Register Address High */
Sven Schnelle0b86c762011-10-21 21:46:47 +0200941}
942
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700943void acpigen_write_register_resource(const acpi_addr_t *addr)
944{
945 acpigen_write_resourcetemplate_header();
946 acpigen_write_register(addr);
947 acpigen_write_resourcetemplate_footer();
948}
949
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100950void acpigen_write_irq(u16 mask)
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +0100951{
952 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +0200953 * ACPI 3.0b section 6.4.2.1: IRQ Descriptor
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +0100954 * Byte 0:
955 * Bit7 : 0 => small item
956 * Bit6-3: 0100 (0x4) => IRQ port descriptor
957 * Bit2-0: 010 (0x2) => 2 Bytes long
958 */
959 acpigen_emit_byte(0x22);
960 acpigen_emit_byte(mask & 0xff);
961 acpigen_emit_byte((mask >> 8) & 0xff);
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +0100962}
963
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100964void acpigen_write_io16(u16 min, u16 max, u8 align, u8 len, u8 decode16)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000965{
966 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +0200967 * ACPI 4.0 section 6.4.2.6: I/O Port Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000968 * Byte 0:
969 * Bit7 : 0 => small item
970 * Bit6-3: 1000 (0x8) => I/O port descriptor
971 * Bit2-0: 111 (0x7) => 7 Bytes long
972 */
973 acpigen_emit_byte(0x47);
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100974 /* Does the device decode all 16 or just 10 bits? */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000975 /* bit1-7 are ignored */
976 acpigen_emit_byte(decode16 ? 0x01 : 0x00);
977 /* minimum base address the device may be configured for */
978 acpigen_emit_byte(min & 0xff);
979 acpigen_emit_byte((min >> 8) & 0xff);
980 /* maximum base address the device may be configured for */
981 acpigen_emit_byte(max & 0xff);
982 acpigen_emit_byte((max >> 8) & 0xff);
983 /* alignment for min base */
984 acpigen_emit_byte(align & 0xff);
985 acpigen_emit_byte(len & 0xff);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000986}
987
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100988void acpigen_write_resourcetemplate_header(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000989{
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000990 /*
991 * A ResourceTemplate() is a Buffer() with a
992 * (Byte|Word|DWord) containing the length, followed by one or more
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100993 * resource items, terminated by the end tag.
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000994 * (small item 0xf, len 1)
995 */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700996 acpigen_emit_byte(BUFFER_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100997 acpigen_write_len_f();
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700998 acpigen_emit_byte(WORD_PREFIX);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000999 len_stack[ltop++] = acpigen_get_current();
Nico Huber7d89ce32017-04-14 00:08:18 +02001000 /* Add 2 dummy bytes for the ACPI word (keep aligned with
Elyes HAOUAS6716bab2020-01-09 21:29:25 +01001001 the calculation in acpigen_write_resourcetemplate() below). */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001002 acpigen_emit_byte(0x00);
1003 acpigen_emit_byte(0x00);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001004}
1005
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001006void acpigen_write_resourcetemplate_footer(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001007{
1008 char *p = len_stack[--ltop];
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001009 int len;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001010 /*
1011 * end tag (acpi 4.0 Section 6.4.2.8)
1012 * 0x79 <checksum>
1013 * 0x00 is treated as a good checksum according to the spec
1014 * and is what iasl generates.
1015 */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001016 acpigen_emit_byte(0x79);
1017 acpigen_emit_byte(0x00);
1018
Nico Huber7d89ce32017-04-14 00:08:18 +02001019 /* Start counting past the 2-bytes length added in
1020 acpigen_write_resourcetemplate() above. */
1021 len = acpigen_get_current() - (p + 2);
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001022
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001023 /* patch len word */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001024 p[0] = len & 0xff;
1025 p[1] = (len >> 8) & 0xff;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001026 /* patch len field */
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001027 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001028}
1029
1030static void acpigen_add_mainboard_rsvd_mem32(void *gp, struct device *dev,
1031 struct resource *res)
1032{
1033 acpigen_write_mem32fixed(0, res->base, res->size);
1034}
1035
1036static void acpigen_add_mainboard_rsvd_io(void *gp, struct device *dev,
1037 struct resource *res)
1038{
1039 resource_t base = res->base;
1040 resource_t size = res->size;
1041 while (size > 0) {
1042 resource_t sz = size > 255 ? 255 : size;
1043 acpigen_write_io16(base, base, 0, sz, 1);
1044 size -= sz;
1045 base += sz;
1046 }
1047}
1048
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001049void acpigen_write_mainboard_resource_template(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001050{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001051 acpigen_write_resourcetemplate_header();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001052
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001053 /* Add reserved memory ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001054 search_global_resources(
1055 IORESOURCE_MEM | IORESOURCE_RESERVE,
1056 IORESOURCE_MEM | IORESOURCE_RESERVE,
1057 acpigen_add_mainboard_rsvd_mem32, 0);
1058
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001059 /* Add reserved io ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001060 search_global_resources(
1061 IORESOURCE_IO | IORESOURCE_RESERVE,
1062 IORESOURCE_IO | IORESOURCE_RESERVE,
1063 acpigen_add_mainboard_rsvd_io, 0);
1064
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001065 acpigen_write_resourcetemplate_footer();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001066}
1067
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001068void acpigen_write_mainboard_resources(const char *scope, const char *name)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001069{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001070 acpigen_write_scope(scope);
1071 acpigen_write_name(name);
1072 acpigen_write_mainboard_resource_template();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001073 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001074}
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001075
1076static int hex2bin(const char c)
1077{
1078 if (c >= 'A' && c <= 'F')
1079 return c - 'A' + 10;
1080 if (c >= 'a' && c <= 'f')
1081 return c - 'a' + 10;
1082 return c - '0';
1083}
1084
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001085void acpigen_emit_eisaid(const char *eisaid)
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001086{
1087 u32 compact = 0;
1088
1089 /* Clamping individual values would be better but
1090 there is a disagreement over what is a valid
1091 EISA id, so accept anything and don't clamp,
1092 parent code should create a valid EISAid.
1093 */
1094 compact |= (eisaid[0] - 'A' + 1) << 26;
1095 compact |= (eisaid[1] - 'A' + 1) << 21;
1096 compact |= (eisaid[2] - 'A' + 1) << 16;
1097 compact |= hex2bin(eisaid[3]) << 12;
1098 compact |= hex2bin(eisaid[4]) << 8;
1099 compact |= hex2bin(eisaid[5]) << 4;
1100 compact |= hex2bin(eisaid[6]);
1101
1102 acpigen_emit_byte(0xc);
1103 acpigen_emit_byte((compact >> 24) & 0xff);
1104 acpigen_emit_byte((compact >> 16) & 0xff);
1105 acpigen_emit_byte((compact >> 8) & 0xff);
1106 acpigen_emit_byte(compact & 0xff);
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001107}
Duncan Laurie3829f232016-05-09 11:08:46 -07001108
1109/*
1110 * ToUUID(uuid)
1111 *
1112 * ACPI 6.1 Section 19.6.136 table 19-385 defines a special output
1113 * order for the bytes that make up a UUID Buffer object.
1114 * UUID byte order for input:
1115 * aabbccdd-eeff-gghh-iijj-kkllmmnnoopp
1116 * UUID byte order for output:
1117 * ddccbbaa-ffee-hhgg-iijj-kkllmmnnoopp
1118 */
1119#define UUID_LEN 16
1120void acpigen_write_uuid(const char *uuid)
1121{
1122 uint8_t buf[UUID_LEN];
1123 size_t i, order[UUID_LEN] = { 3, 2, 1, 0, 5, 4, 7, 6,
1124 8, 9, 10, 11, 12, 13, 14, 15 };
1125
1126 /* Parse UUID string into bytes */
1127 if (hexstrtobin(uuid, buf, UUID_LEN) < UUID_LEN)
1128 return;
1129
1130 /* BufferOp */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001131 acpigen_emit_byte(BUFFER_OP);
Duncan Laurie3829f232016-05-09 11:08:46 -07001132 acpigen_write_len_f();
1133
1134 /* Buffer length in bytes */
1135 acpigen_write_word(UUID_LEN);
1136
1137 /* Output UUID in expected order */
1138 for (i = 0; i < UUID_LEN; i++)
1139 acpigen_emit_byte(buf[order[i]]);
1140
1141 acpigen_pop_len();
1142}
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001143
1144/*
1145 * Name (_PRx, Package(One) { name })
1146 * ...
1147 * PowerResource (name, level, order)
1148 */
1149void acpigen_write_power_res(const char *name, uint8_t level, uint16_t order,
Furquan Shaikhdc782752020-04-30 22:49:39 -07001150 const char * const dev_states[], size_t dev_states_count)
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001151{
Elyes HAOUAScca6e002019-06-26 12:12:00 +02001152 size_t i;
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001153 for (i = 0; i < dev_states_count; i++) {
1154 acpigen_write_name(dev_states[i]);
1155 acpigen_write_package(1);
1156 acpigen_emit_simple_namestring(name);
1157 acpigen_pop_len(); /* Package */
1158 }
1159
1160 acpigen_emit_ext_op(POWER_RES_OP);
1161
1162 acpigen_write_len_f();
1163
1164 acpigen_emit_simple_namestring(name);
1165 acpigen_emit_byte(level);
1166 acpigen_emit_word(order);
1167}
1168
1169/* Sleep (ms) */
1170void acpigen_write_sleep(uint64_t sleep_ms)
1171{
1172 acpigen_emit_ext_op(SLEEP_OP);
1173 acpigen_write_integer(sleep_ms);
1174}
1175
1176void acpigen_write_store(void)
1177{
1178 acpigen_emit_byte(STORE_OP);
1179}
1180
1181/* Store (src, dst) */
1182void acpigen_write_store_ops(uint8_t src, uint8_t dst)
1183{
1184 acpigen_write_store();
1185 acpigen_emit_byte(src);
1186 acpigen_emit_byte(dst);
1187}
1188
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001189/* Store (src, "namestr") */
1190void acpigen_write_store_op_to_namestr(uint8_t src, const char *dst)
1191{
1192 acpigen_write_store();
1193 acpigen_emit_byte(src);
1194 acpigen_emit_namestring(dst);
1195}
1196
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001197/* Or (arg1, arg2, res) */
1198void acpigen_write_or(uint8_t arg1, uint8_t arg2, uint8_t res)
1199{
1200 acpigen_emit_byte(OR_OP);
1201 acpigen_emit_byte(arg1);
1202 acpigen_emit_byte(arg2);
1203 acpigen_emit_byte(res);
1204}
1205
Rajat Jain310623b2020-02-26 11:02:53 -08001206/* Xor (arg1, arg2, res) */
1207void acpigen_write_xor(uint8_t arg1, uint8_t arg2, uint8_t res)
1208{
1209 acpigen_emit_byte(XOR_OP);
1210 acpigen_emit_byte(arg1);
1211 acpigen_emit_byte(arg2);
1212 acpigen_emit_byte(res);
1213}
1214
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001215/* And (arg1, arg2, res) */
1216void acpigen_write_and(uint8_t arg1, uint8_t arg2, uint8_t res)
1217{
1218 acpigen_emit_byte(AND_OP);
1219 acpigen_emit_byte(arg1);
1220 acpigen_emit_byte(arg2);
1221 acpigen_emit_byte(res);
1222}
1223
1224/* Not (arg, res) */
1225void acpigen_write_not(uint8_t arg, uint8_t res)
1226{
1227 acpigen_emit_byte(NOT_OP);
1228 acpigen_emit_byte(arg);
1229 acpigen_emit_byte(res);
1230}
1231
1232/* Store (str, DEBUG) */
1233void acpigen_write_debug_string(const char *str)
1234{
1235 acpigen_write_store();
1236 acpigen_write_string(str);
1237 acpigen_emit_ext_op(DEBUG_OP);
1238}
1239
1240/* Store (val, DEBUG) */
1241void acpigen_write_debug_integer(uint64_t val)
1242{
1243 acpigen_write_store();
1244 acpigen_write_integer(val);
1245 acpigen_emit_ext_op(DEBUG_OP);
1246}
1247
1248/* Store (op, DEBUG) */
1249void acpigen_write_debug_op(uint8_t op)
1250{
1251 acpigen_write_store();
1252 acpigen_emit_byte(op);
1253 acpigen_emit_ext_op(DEBUG_OP);
1254}
1255
1256void acpigen_write_if(void)
1257{
1258 acpigen_emit_byte(IF_OP);
1259 acpigen_write_len_f();
1260}
1261
1262/* If (And (arg1, arg2)) */
1263void acpigen_write_if_and(uint8_t arg1, uint8_t arg2)
1264{
1265 acpigen_write_if();
1266 acpigen_emit_byte(AND_OP);
1267 acpigen_emit_byte(arg1);
1268 acpigen_emit_byte(arg2);
1269}
1270
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001271/*
1272 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1273 * operand1 is ACPI op and operand2 is an integer.
1274 *
1275 * If (Lequal (op, val))
1276 */
1277void acpigen_write_if_lequal_op_int(uint8_t op, uint64_t val)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001278{
1279 acpigen_write_if();
1280 acpigen_emit_byte(LEQUAL_OP);
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001281 acpigen_emit_byte(op);
1282 acpigen_write_integer(val);
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001283}
1284
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001285/*
1286 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1287 * operand1 is namestring and operand2 is an integer.
1288 *
1289 * If (Lequal ("namestr", val))
1290 */
1291void acpigen_write_if_lequal_namestr_int(const char *namestr, uint64_t val)
1292{
1293 acpigen_write_if();
1294 acpigen_emit_byte(LEQUAL_OP);
1295 acpigen_emit_namestring(namestr);
1296 acpigen_write_integer(val);
1297}
1298
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001299void acpigen_write_else(void)
1300{
1301 acpigen_emit_byte(ELSE_OP);
1302 acpigen_write_len_f();
1303}
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001304
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001305void acpigen_write_to_buffer(uint8_t src, uint8_t dst)
1306{
1307 acpigen_emit_byte(TO_BUFFER_OP);
1308 acpigen_emit_byte(src);
1309 acpigen_emit_byte(dst);
1310}
1311
1312void acpigen_write_to_integer(uint8_t src, uint8_t dst)
1313{
1314 acpigen_emit_byte(TO_INTEGER_OP);
1315 acpigen_emit_byte(src);
1316 acpigen_emit_byte(dst);
1317}
1318
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301319void acpigen_write_byte_buffer(uint8_t *arr, size_t size)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001320{
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301321 size_t i;
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001322
1323 acpigen_emit_byte(BUFFER_OP);
1324 acpigen_write_len_f();
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301325 acpigen_write_integer(size);
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001326
1327 for (i = 0; i < size; i++)
1328 acpigen_emit_byte(arr[i]);
1329
1330 acpigen_pop_len();
1331}
1332
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301333void acpigen_write_return_byte_buffer(uint8_t *arr, size_t size)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001334{
1335 acpigen_emit_byte(RETURN_OP);
1336 acpigen_write_byte_buffer(arr, size);
1337}
1338
1339void acpigen_write_return_singleton_buffer(uint8_t arg)
1340{
1341 acpigen_write_return_byte_buffer(&arg, 1);
1342}
1343
1344void acpigen_write_return_byte(uint8_t arg)
1345{
1346 acpigen_emit_byte(RETURN_OP);
1347 acpigen_write_byte(arg);
1348}
1349
Naresh G Solanki05abe432016-11-17 00:16:29 +05301350void acpigen_write_return_integer(uint64_t arg)
1351{
1352 acpigen_emit_byte(RETURN_OP);
1353 acpigen_write_integer(arg);
1354}
1355
1356void acpigen_write_return_string(const char *arg)
1357{
1358 acpigen_emit_byte(RETURN_OP);
1359 acpigen_write_string(arg);
1360}
1361
Duncan Lauriebeb2af42018-05-07 14:26:59 -07001362void acpigen_write_upc(enum acpi_upc_type type)
1363{
1364 acpigen_write_name("_UPC");
1365 acpigen_write_package(4);
1366 /* Connectable */
1367 acpigen_write_byte(type == UPC_TYPE_UNUSED ? 0 : 0xff);
1368 /* Type */
1369 acpigen_write_byte(type);
1370 /* Reserved0 */
1371 acpigen_write_zero();
1372 /* Reserved1 */
1373 acpigen_write_zero();
1374 acpigen_pop_len();
1375}
1376
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001377void acpigen_write_pld(const struct acpi_pld *pld)
1378{
1379 uint8_t buf[20];
1380
1381 if (acpi_pld_to_buffer(pld, buf, ARRAY_SIZE(buf)) < 0)
1382 return;
1383
1384 acpigen_write_name("_PLD");
Matt Delco4929f432019-01-30 11:40:44 -08001385 acpigen_write_package(1);
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001386 acpigen_write_byte_buffer(buf, ARRAY_SIZE(buf));
Matt Delco4929f432019-01-30 11:40:44 -08001387 acpigen_pop_len();
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001388}
1389
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301390void acpigen_write_dsm(const char *uuid, void (**callbacks)(void *),
1391 size_t count, void *arg)
1392{
1393 struct dsm_uuid id = DSM_UUID(uuid, callbacks, count, arg);
1394 acpigen_write_dsm_uuid_arr(&id, 1);
1395}
1396
1397static void acpigen_write_dsm_uuid(struct dsm_uuid *id)
1398{
1399 size_t i;
1400
1401 /* If (LEqual (Local0, ToUUID(uuid))) */
1402 acpigen_write_if();
1403 acpigen_emit_byte(LEQUAL_OP);
1404 acpigen_emit_byte(LOCAL0_OP);
1405 acpigen_write_uuid(id->uuid);
1406
1407 /* ToInteger (Arg2, Local1) */
1408 acpigen_write_to_integer(ARG2_OP, LOCAL1_OP);
1409
1410 for (i = 0; i < id->count; i++) {
1411 /* If (LEqual (Local1, i)) */
1412 acpigen_write_if_lequal_op_int(LOCAL1_OP, i);
1413
1414 /* Callback to write if handler. */
1415 if (id->callbacks[i])
1416 id->callbacks[i](id->arg);
1417
1418 acpigen_pop_len(); /* If */
1419 }
1420
1421 /* Default case: Return (Buffer (One) { 0x0 }) */
1422 acpigen_write_return_singleton_buffer(0x0);
1423
1424 acpigen_pop_len(); /* If (LEqual (Local0, ToUUID(uuid))) */
1425
1426}
1427
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001428/*
1429 * Generate ACPI AML code for _DSM method.
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301430 * This function takes as input array of uuid for the device, set of callbacks
1431 * and argument to pass into the callbacks. Callbacks should ensure that Local0
1432 * and Local1 are left untouched. Use of Local2-Local7 is permitted in
1433 * callbacks.
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001434 *
1435 * Arguments passed into _DSM method:
1436 * Arg0 = UUID
1437 * Arg1 = Revision
1438 * Arg2 = Function index
1439 * Arg3 = Function specific arguments
1440 *
1441 * AML code generated would look like:
1442 * Method (_DSM, 4, Serialized) {
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301443 * ToBuffer (Arg0, Local0)
1444 * If (LEqual (Local0, ToUUID(uuid))) {
1445 * ToInteger (Arg2, Local1)
1446 * If (LEqual (Local1, 0)) {
1447 * <acpigen by callback[0]>
1448 * }
1449 * ...
1450 * If (LEqual (Local1, n)) {
1451 * <acpigen by callback[n]>
1452 * }
1453 * Return (Buffer (One) { 0x0 })
1454 * }
1455 * ...
1456 * If (LEqual (Local0, ToUUID(uuidn))) {
1457 * ...
1458 * }
1459 * Return (Buffer (One) { 0x0 })
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001460 * }
1461 */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301462void acpigen_write_dsm_uuid_arr(struct dsm_uuid *ids, size_t count)
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001463{
1464 size_t i;
1465
1466 /* Method (_DSM, 4, Serialized) */
1467 acpigen_write_method_serialized("_DSM", 0x4);
1468
1469 /* ToBuffer (Arg0, Local0) */
1470 acpigen_write_to_buffer(ARG0_OP, LOCAL0_OP);
1471
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001472 for (i = 0; i < count; i++)
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301473 acpigen_write_dsm_uuid(&ids[i]);
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001474
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301475 /* Return (Buffer (One) { 0x0 }) */
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001476 acpigen_write_return_singleton_buffer(0x0);
1477
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001478 acpigen_pop_len(); /* Method _DSM */
1479}
1480
Matt Delcob425bc82018-08-13 13:36:27 -07001481#define CPPC_PACKAGE_NAME "\\GCPC"
1482
1483void acpigen_write_CPPC_package(const struct cppc_config *config)
1484{
1485 u32 i;
1486 u32 max;
1487 switch (config->version) {
1488 case 1:
1489 max = CPPC_MAX_FIELDS_VER_1;
1490 break;
1491 case 2:
1492 max = CPPC_MAX_FIELDS_VER_2;
1493 break;
1494 case 3:
1495 max = CPPC_MAX_FIELDS_VER_3;
1496 break;
1497 default:
1498 printk(BIOS_ERR, "ERROR: CPPC version %u is not implemented\n",
1499 config->version);
1500 return;
1501 }
1502 acpigen_write_name(CPPC_PACKAGE_NAME);
1503
1504 /* Adding 2 to account for length and version fields */
1505 acpigen_write_package(max + 2);
1506 acpigen_write_dword(max + 2);
1507
1508 acpigen_write_byte(config->version);
1509
1510 for (i = 0; i < max; ++i) {
1511 const acpi_addr_t *reg = &(config->regs[i]);
1512 if (reg->space_id == ACPI_ADDRESS_SPACE_MEMORY &&
1513 reg->bit_width == 32 && reg->access_size == 0) {
1514 acpigen_write_dword(reg->addrl);
1515 } else {
1516 acpigen_write_register_resource(reg);
1517 }
1518 }
1519 acpigen_pop_len();
1520}
1521
1522void acpigen_write_CPPC_method(void)
1523{
1524 acpigen_write_method("_CPC", 0);
1525 acpigen_emit_byte(RETURN_OP);
1526 acpigen_emit_namestring(CPPC_PACKAGE_NAME);
1527 acpigen_pop_len();
1528}
1529
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001530/*
1531 * Generate ACPI AML code for _ROM method.
1532 * This function takes as input ROM data and ROM length.
1533 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001534 * The ACPI spec isn't clear about what should happen at the end of the
1535 * ROM. Tests showed that it shouldn't truncate, but fill the remaining
1536 * bytes in the returned buffer with zeros.
1537 *
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001538 * Arguments passed into _DSM method:
1539 * Arg0 = Offset in Bytes
1540 * Arg1 = Bytes to return
1541 *
1542 * Example:
1543 * acpigen_write_rom(0xdeadbeef, 0x10000)
1544 *
1545 * AML code generated would look like:
1546 * Method (_ROM, 2, NotSerialized) {
1547 *
1548 * OperationRegion("ROMS", SYSTEMMEMORY, 0xdeadbeef, 0x10000)
1549 * Field (ROMS, AnyAcc, NoLock, Preserve)
1550 * {
1551 * Offset (0),
1552 * RBF0, 0x80000
1553 * }
1554 *
1555 * Store (Arg0, Local0)
1556 * Store (Arg1, Local1)
1557 *
1558 * If (LGreater (Local1, 0x1000))
1559 * {
1560 * Store (0x1000, Local1)
1561 * }
1562 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001563 * Store (Local1, Local3)
1564 *
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001565 * If (LGreater (Local0, 0x10000))
1566 * {
1567 * Return(Buffer(Local1){0})
1568 * }
1569 *
1570 * If (LGreater (Local0, 0x0f000))
1571 * {
1572 * Subtract (0x10000, Local0, Local2)
1573 * If (LGreater (Local1, Local2))
1574 * {
1575 * Store (Local2, Local1)
1576 * }
1577 * }
1578 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001579 * Name (ROM1, Buffer (Local3) {0})
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001580 *
1581 * Multiply (Local0, 0x08, Local0)
1582 * Multiply (Local1, 0x08, Local1)
1583 *
1584 * CreateField (RBF0, Local0, Local1, TMPB)
1585 * Store (TMPB, ROM1)
1586 * Return (ROM1)
1587 * }
1588 */
1589
1590void acpigen_write_rom(void *bios, const size_t length)
1591{
1592 ASSERT(bios)
1593 ASSERT(length)
1594
Jonathan Neuschäfer6b0102d2018-09-12 12:26:45 +02001595 /* Method (_ROM, 2, Serialized) */
Marc Jones24462e62018-08-15 23:57:28 -06001596 acpigen_write_method_serialized("_ROM", 2);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001597
1598 /* OperationRegion("ROMS", SYSTEMMEMORY, current, length) */
1599 struct opregion opreg = OPREGION("ROMS", SYSTEMMEMORY,
1600 (uintptr_t)bios, length);
1601 acpigen_write_opregion(&opreg);
1602
1603 struct fieldlist l[] = {
1604 FIELDLIST_OFFSET(0),
1605 FIELDLIST_NAMESTR("RBF0", 8 * length),
1606 };
1607
1608 /* Field (ROMS, AnyAcc, NoLock, Preserve)
1609 * {
1610 * Offset (0),
1611 * RBF0, 0x80000
1612 * } */
1613 acpigen_write_field(opreg.name, l, 2, FIELD_ANYACC |
1614 FIELD_NOLOCK | FIELD_PRESERVE);
1615
1616 /* Store (Arg0, Local0) */
1617 acpigen_write_store();
1618 acpigen_emit_byte(ARG0_OP);
1619 acpigen_emit_byte(LOCAL0_OP);
1620
1621 /* Store (Arg1, Local1) */
1622 acpigen_write_store();
1623 acpigen_emit_byte(ARG1_OP);
1624 acpigen_emit_byte(LOCAL1_OP);
1625
1626 /* ACPI SPEC requires to return at maximum 4KiB */
1627 /* If (LGreater (Local1, 0x1000)) */
1628 acpigen_write_if();
1629 acpigen_emit_byte(LGREATER_OP);
1630 acpigen_emit_byte(LOCAL1_OP);
1631 acpigen_write_integer(0x1000);
1632
1633 /* Store (0x1000, Local1) */
1634 acpigen_write_store();
1635 acpigen_write_integer(0x1000);
1636 acpigen_emit_byte(LOCAL1_OP);
1637
1638 /* Pop if */
1639 acpigen_pop_len();
1640
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001641 /* Store (Local1, Local3) */
1642 acpigen_write_store();
1643 acpigen_emit_byte(LOCAL1_OP);
1644 acpigen_emit_byte(LOCAL3_OP);
1645
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001646 /* If (LGreater (Local0, length)) */
1647 acpigen_write_if();
1648 acpigen_emit_byte(LGREATER_OP);
1649 acpigen_emit_byte(LOCAL0_OP);
1650 acpigen_write_integer(length);
1651
1652 /* Return(Buffer(Local1){0}) */
1653 acpigen_emit_byte(RETURN_OP);
1654 acpigen_emit_byte(BUFFER_OP);
1655 acpigen_write_len_f();
1656 acpigen_emit_byte(LOCAL1_OP);
1657 acpigen_emit_byte(0);
1658 acpigen_pop_len();
1659
1660 /* Pop if */
1661 acpigen_pop_len();
1662
1663 /* If (LGreater (Local0, length - 4096)) */
1664 acpigen_write_if();
1665 acpigen_emit_byte(LGREATER_OP);
1666 acpigen_emit_byte(LOCAL0_OP);
1667 acpigen_write_integer(length - 4096);
1668
1669 /* Subtract (length, Local0, Local2) */
1670 acpigen_emit_byte(SUBTRACT_OP);
1671 acpigen_write_integer(length);
1672 acpigen_emit_byte(LOCAL0_OP);
1673 acpigen_emit_byte(LOCAL2_OP);
1674
1675 /* If (LGreater (Local1, Local2)) */
1676 acpigen_write_if();
1677 acpigen_emit_byte(LGREATER_OP);
1678 acpigen_emit_byte(LOCAL1_OP);
1679 acpigen_emit_byte(LOCAL2_OP);
1680
1681 /* Store (Local2, Local1) */
1682 acpigen_write_store();
1683 acpigen_emit_byte(LOCAL2_OP);
1684 acpigen_emit_byte(LOCAL1_OP);
1685
1686 /* Pop if */
1687 acpigen_pop_len();
1688
1689 /* Pop if */
1690 acpigen_pop_len();
1691
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001692 /* Name (ROM1, Buffer (Local3) {0}) */
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001693 acpigen_write_name("ROM1");
1694 acpigen_emit_byte(BUFFER_OP);
1695 acpigen_write_len_f();
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001696 acpigen_emit_byte(LOCAL3_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001697 acpigen_emit_byte(0);
1698 acpigen_pop_len();
1699
1700 /* Multiply (Local1, 0x08, Local1) */
1701 acpigen_emit_byte(MULTIPLY_OP);
1702 acpigen_emit_byte(LOCAL1_OP);
1703 acpigen_write_integer(0x08);
1704 acpigen_emit_byte(LOCAL1_OP);
1705
1706 /* Multiply (Local0, 0x08, Local0) */
1707 acpigen_emit_byte(MULTIPLY_OP);
1708 acpigen_emit_byte(LOCAL0_OP);
1709 acpigen_write_integer(0x08);
1710 acpigen_emit_byte(LOCAL0_OP);
1711
1712 /* CreateField (RBF0, Local0, Local1, TMPB) */
1713 acpigen_emit_ext_op(CREATEFIELD_OP);
1714 acpigen_emit_namestring("RBF0");
1715 acpigen_emit_byte(LOCAL0_OP);
1716 acpigen_emit_byte(LOCAL1_OP);
1717 acpigen_emit_namestring("TMPB");
1718
1719 /* Store (TMPB, ROM1) */
1720 acpigen_write_store();
1721 acpigen_emit_namestring("TMPB");
1722 acpigen_emit_namestring("ROM1");
1723
1724 /* Return (ROM1) */
1725 acpigen_emit_byte(RETURN_OP);
1726 acpigen_emit_namestring("ROM1");
1727
1728 /* Pop method */
1729 acpigen_pop_len();
1730}
1731
1732
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001733/* Soc-implemented functions -- weak definitions. */
Aaron Durbin64031672018-04-21 14:45:32 -06001734int __weak acpigen_soc_read_rx_gpio(unsigned int gpio_num)
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001735{
1736 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
1737 acpigen_write_debug_string("read_rx_gpio not available");
1738 return -1;
1739}
1740
Aaron Durbin64031672018-04-21 14:45:32 -06001741int __weak acpigen_soc_get_tx_gpio(unsigned int gpio_num)
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001742{
1743 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
1744 acpigen_write_debug_string("get_tx_gpio not available");
1745 return -1;
1746}
1747
Aaron Durbin64031672018-04-21 14:45:32 -06001748int __weak acpigen_soc_set_tx_gpio(unsigned int gpio_num)
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001749{
1750 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
1751 acpigen_write_debug_string("set_tx_gpio not available");
1752 return -1;
1753}
1754
Aaron Durbin64031672018-04-21 14:45:32 -06001755int __weak acpigen_soc_clear_tx_gpio(unsigned int gpio_num)
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001756{
1757 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
1758 acpigen_write_debug_string("clear_tx_gpio not available");
1759 return -1;
1760}
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08001761
1762/*
1763 * Helper functions for enabling/disabling Tx GPIOs based on the GPIO
1764 * polarity. These functions end up calling acpigen_soc_{set,clear}_tx_gpio to
1765 * make callbacks into SoC acpigen code.
1766 *
1767 * Returns 0 on success and -1 on error.
1768 */
1769int acpigen_enable_tx_gpio(struct acpi_gpio *gpio)
1770{
1771 if (gpio->polarity == ACPI_GPIO_ACTIVE_HIGH)
1772 return acpigen_soc_set_tx_gpio(gpio->pins[0]);
1773 else
1774 return acpigen_soc_clear_tx_gpio(gpio->pins[0]);
1775}
1776
1777int acpigen_disable_tx_gpio(struct acpi_gpio *gpio)
1778{
1779 if (gpio->polarity == ACPI_GPIO_ACTIVE_LOW)
1780 return acpigen_soc_set_tx_gpio(gpio->pins[0]);
1781 else
1782 return acpigen_soc_clear_tx_gpio(gpio->pins[0]);
1783}
Jonathan Zhang71299c22020-01-27 11:38:57 -08001784
Rajat Jain310623b2020-02-26 11:02:53 -08001785void acpigen_get_rx_gpio(struct acpi_gpio *gpio)
1786{
1787 acpigen_soc_read_rx_gpio(gpio->pins[0]);
1788
1789 if (gpio->polarity == ACPI_GPIO_ACTIVE_LOW)
1790 acpigen_write_xor(LOCAL0_OP, 1, LOCAL0_OP);
1791}
1792
Jonathan Zhang71299c22020-01-27 11:38:57 -08001793/* refer to ACPI 6.4.3.5.3 Word Address Space Descriptor section for details */
1794void acpigen_resource_word(u16 res_type, u16 gen_flags, u16 type_flags, u16 gran,
1795 u16 range_min, u16 range_max, u16 translation, u16 length)
1796{
1797 acpigen_emit_byte(0x88);
1798 /* Byte 1+2: length (0x000d) */
1799 acpigen_emit_byte(0x0d);
1800 acpigen_emit_byte(0x00);
1801 /* resource type */
1802 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
1803 /* general flags */
1804 acpigen_emit_byte(gen_flags);
1805 /* type flags */
1806 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
1807 acpigen_emit_byte(type_flags);
1808 /* granularity, min, max, translation, length */
1809 acpigen_emit_word(gran);
1810 acpigen_emit_word(range_min);
1811 acpigen_emit_word(range_max);
1812 acpigen_emit_word(translation);
1813 acpigen_emit_word(length);
1814}
1815
1816/* refer to ACPI 6.4.3.5.2 DWord Address Space Descriptor section for details */
1817void acpigen_resource_dword(u16 res_type, u16 gen_flags, u16 type_flags,
1818 u32 gran, u32 range_min, u32 range_max, u32 translation, u32 length)
1819{
1820 acpigen_emit_byte(0x87);
1821 /* Byte 1+2: length (0023) */
1822 acpigen_emit_byte(23);
1823 acpigen_emit_byte(0x00);
1824 /* resource type */
1825 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
1826 /* general flags */
1827 acpigen_emit_byte(gen_flags);
1828 /* type flags */
1829 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
1830 acpigen_emit_byte(type_flags);
1831 /* granularity, min, max, translation, length */
1832 acpigen_emit_dword(gran);
1833 acpigen_emit_dword(range_min);
1834 acpigen_emit_dword(range_max);
1835 acpigen_emit_dword(translation);
1836 acpigen_emit_dword(length);
1837}
1838
1839static void acpigen_emit_qword(u64 data)
1840{
1841 acpigen_emit_dword(data & 0xffffffff);
1842 acpigen_emit_dword((data >> 32) & 0xffffffff);
1843}
1844
1845/* refer to ACPI 6.4.3.5.1 QWord Address Space Descriptor section for details */
1846void acpigen_resource_qword(u16 res_type, u16 gen_flags, u16 type_flags,
1847 u64 gran, u64 range_min, u64 range_max, u64 translation, u64 length)
1848{
1849 acpigen_emit_byte(0x8a);
1850 /* Byte 1+2: length (0x002b) */
1851 acpigen_emit_byte(0x2b);
1852 acpigen_emit_byte(0x00);
1853 /* resource type */
1854 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
1855 /* general flags */
1856 acpigen_emit_byte(gen_flags);
1857 /* type flags */
1858 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
1859 acpigen_emit_byte(type_flags);
1860 /* granularity, min, max, translation, length */
1861 acpigen_emit_qword(gran);
1862 acpigen_emit_qword(range_min);
1863 acpigen_emit_qword(range_max);
1864 acpigen_emit_qword(translation);
1865 acpigen_emit_qword(length);
1866}
Furquan Shaikh1a829232020-04-23 11:11:05 -07001867
1868void acpigen_write_ADR(uint64_t adr)
1869{
1870 acpigen_write_name_qword("_ADR", adr);
1871}
1872
1873void acpigen_write_ADR_pci_devfn(pci_devfn_t devfn)
1874{
1875 /*
1876 * _ADR for PCI Bus is encoded as follows:
1877 * [63:32] - unused
1878 * [31:16] - device #
1879 * [15:0] - function #
1880 */
1881 acpigen_write_ADR(PCI_SLOT(devfn) << 16 | PCI_FUNC(devfn));
1882}
1883
1884void acpigen_write_ADR_pci_device(const struct device *dev)
1885{
1886 assert(dev->path.type == DEVICE_PATH_PCI);
1887 acpigen_write_ADR_pci_devfn(dev->path.pci.devfn);
1888}