blob: c8f14378c918b11ccec187cfbbe0d550c1081b52 [file] [log] [blame]
Patrick Georgi11f00792020-03-04 15:10:45 +01001/* SPDX-License-Identifier: GPL-2.0-only */
Rudolf Marek293b5f52009-02-01 18:35:15 +00002
Paul Menzel0f4c0e22013-02-22 12:33:08 +01003/* How much nesting do we support? */
Rudolf Marek293b5f52009-02-01 18:35:15 +00004#define ACPIGEN_LENSTACK_SIZE 10
5
Paul Menzel0f4c0e22013-02-22 12:33:08 +01006/*
Timothy Pearson83abd812015-06-08 19:35:06 -05007 * If you need to change this, change acpigen_write_len_f and
Vladimir Serbinenko8104da72014-11-09 03:33:51 +01008 * acpigen_pop_len
Paul Menzel0f4c0e22013-02-22 12:33:08 +01009 */
Rudolf Marek293b5f52009-02-01 18:35:15 +000010
Timothy Pearson83abd812015-06-08 19:35:06 -050011#define ACPIGEN_MAXLEN 0xfffff
Rudolf Marek293b5f52009-02-01 18:35:15 +000012
Michael Niewöhnerb20aac02020-10-14 19:30:46 +020013#define CPPC_PACKAGE_NAME "GCPC"
14
Duncan Laurie3829f232016-05-09 11:08:46 -070015#include <lib.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000016#include <string.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070017#include <acpi/acpigen.h>
Elyes HAOUAScd4fe0f2019-03-29 17:12:15 +010018#include <assert.h>
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -060019#include <commonlib/helpers.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000020#include <console/console.h>
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +000021#include <device/device.h>
Duncan Laurie08a942f2020-04-29 12:13:14 -070022#include <device/soundwire.h>
Elyes HAOUAScdd2f632021-02-11 19:37:11 +010023#include <types.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000024
25static char *gencurrent;
26
27char *len_stack[ACPIGEN_LENSTACK_SIZE];
28int ltop = 0;
29
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010030void acpigen_write_len_f(void)
Rudolf Marek293b5f52009-02-01 18:35:15 +000031{
32 ASSERT(ltop < (ACPIGEN_LENSTACK_SIZE - 1))
Paul Menzel0f4c0e22013-02-22 12:33:08 +010033 len_stack[ltop++] = gencurrent;
Rudolf Marek293b5f52009-02-01 18:35:15 +000034 acpigen_emit_byte(0);
35 acpigen_emit_byte(0);
Timothy Pearson83abd812015-06-08 19:35:06 -050036 acpigen_emit_byte(0);
Rudolf Marek293b5f52009-02-01 18:35:15 +000037}
38
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010039void acpigen_pop_len(void)
40{
41 int len;
42 ASSERT(ltop > 0)
43 char *p = len_stack[--ltop];
44 len = gencurrent - p;
45 ASSERT(len <= ACPIGEN_MAXLEN)
Timothy Pearson83abd812015-06-08 19:35:06 -050046 /* generate store length for 0xfffff max */
47 p[0] = (0x80 | (len & 0xf));
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010048 p[1] = (len >> 4 & 0xff);
Timothy Pearson83abd812015-06-08 19:35:06 -050049 p[2] = (len >> 12 & 0xff);
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010050
51}
52
Stefan Reinauerf96c2d92009-04-22 16:23:47 +000053void acpigen_set_current(char *curr)
54{
55 gencurrent = curr;
Rudolf Marek293b5f52009-02-01 18:35:15 +000056}
57
Stefan Reinauerf96c2d92009-04-22 16:23:47 +000058char *acpigen_get_current(void)
59{
60 return gencurrent;
Rudolf Marek293b5f52009-02-01 18:35:15 +000061}
62
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010063void acpigen_emit_byte(unsigned char b)
Rudolf Marek293b5f52009-02-01 18:35:15 +000064{
65 (*gencurrent++) = b;
Rudolf Marek293b5f52009-02-01 18:35:15 +000066}
67
Furquan Shaikhe4e9b942016-10-20 23:09:05 -070068void acpigen_emit_ext_op(uint8_t op)
69{
70 acpigen_emit_byte(EXT_OP_PREFIX);
71 acpigen_emit_byte(op);
72}
73
Duncan Laurie9ccae752016-05-09 07:43:19 -070074void acpigen_emit_word(unsigned int data)
75{
76 acpigen_emit_byte(data & 0xff);
77 acpigen_emit_byte((data >> 8) & 0xff);
78}
79
80void acpigen_emit_dword(unsigned int data)
81{
82 acpigen_emit_byte(data & 0xff);
83 acpigen_emit_byte((data >> 8) & 0xff);
84 acpigen_emit_byte((data >> 16) & 0xff);
85 acpigen_emit_byte((data >> 24) & 0xff);
86}
87
Duncan Laurie85d80272016-07-02 19:53:54 -070088char *acpigen_write_package(int nr_el)
Rudolf Marek293b5f52009-02-01 18:35:15 +000089{
Duncan Laurie85d80272016-07-02 19:53:54 -070090 char *p;
Furquan Shaikhe4e9b942016-10-20 23:09:05 -070091 acpigen_emit_byte(PACKAGE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010092 acpigen_write_len_f();
Duncan Laurie85d80272016-07-02 19:53:54 -070093 p = acpigen_get_current();
Rudolf Marek293b5f52009-02-01 18:35:15 +000094 acpigen_emit_byte(nr_el);
Duncan Laurie85d80272016-07-02 19:53:54 -070095 return p;
Rudolf Marek293b5f52009-02-01 18:35:15 +000096}
97
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010098void acpigen_write_byte(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +000099{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700100 acpigen_emit_byte(BYTE_PREFIX);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000101 acpigen_emit_byte(data & 0xff);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000102}
103
Duncan Laurie9ccae752016-05-09 07:43:19 -0700104void acpigen_write_word(unsigned int data)
105{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700106 acpigen_emit_byte(WORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700107 acpigen_emit_word(data);
108}
109
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100110void acpigen_write_dword(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000111{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700112 acpigen_emit_byte(DWORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700113 acpigen_emit_dword(data);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000114}
115
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100116void acpigen_write_qword(uint64_t data)
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000117{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700118 acpigen_emit_byte(QWORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700119 acpigen_emit_dword(data & 0xffffffff);
120 acpigen_emit_dword((data >> 32) & 0xffffffff);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000121}
122
Duncan Laurief7c38762016-05-09 08:20:38 -0700123void acpigen_write_zero(void)
124{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700125 acpigen_emit_byte(ZERO_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700126}
127
128void acpigen_write_one(void)
129{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700130 acpigen_emit_byte(ONE_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700131}
132
133void acpigen_write_ones(void)
134{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700135 acpigen_emit_byte(ONES_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700136}
137
138void acpigen_write_integer(uint64_t data)
139{
140 if (data == 0)
141 acpigen_write_zero();
142 else if (data == 1)
143 acpigen_write_one();
144 else if (data <= 0xff)
145 acpigen_write_byte((unsigned char)data);
146 else if (data <= 0xffff)
147 acpigen_write_word((unsigned int)data);
148 else if (data <= 0xffffffff)
149 acpigen_write_dword((unsigned int)data);
150 else
151 acpigen_write_qword(data);
152}
153
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100154void acpigen_write_name_byte(const char *name, uint8_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000155{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100156 acpigen_write_name(name);
157 acpigen_write_byte(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000158}
159
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100160void acpigen_write_name_dword(const char *name, uint32_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000161{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100162 acpigen_write_name(name);
163 acpigen_write_dword(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000164}
165
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100166void acpigen_write_name_qword(const char *name, uint64_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000167{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100168 acpigen_write_name(name);
169 acpigen_write_qword(val);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000170}
171
Duncan Laurief7c38762016-05-09 08:20:38 -0700172void acpigen_write_name_integer(const char *name, uint64_t val)
173{
174 acpigen_write_name(name);
175 acpigen_write_integer(val);
176}
177
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700178void acpigen_write_name_string(const char *name, const char *string)
179{
180 acpigen_write_name(name);
181 acpigen_write_string(string);
182}
183
Patrick Rudolph389c8272019-12-17 13:54:41 +0100184void acpigen_write_name_unicode(const char *name, const char *string)
185{
186 const size_t len = strlen(string) + 1;
187 acpigen_write_name(name);
188 acpigen_emit_byte(BUFFER_OP);
189 acpigen_write_len_f();
190 acpigen_write_integer(len);
191 for (size_t i = 0; i < len; i++) {
192 const char c = string[i];
193 /* Simple ASCII to UTF-16 conversion, replace non ASCII characters */
194 acpigen_emit_word(c >= 0 ? c : '?');
195 }
196 acpigen_pop_len();
197}
198
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100199void acpigen_emit_stream(const char *data, int size)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000200{
Rudolf Marek293b5f52009-02-01 18:35:15 +0000201 int i;
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700202 for (i = 0; i < size; i++)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000203 acpigen_emit_byte(data[i]);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000204}
205
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700206void acpigen_emit_string(const char *string)
207{
Jonathan Neuschäfer0ba307f2016-05-17 17:40:09 +0200208 acpigen_emit_stream(string, string ? strlen(string) : 0);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700209 acpigen_emit_byte('\0'); /* NUL */
210}
211
212void acpigen_write_string(const char *string)
213{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700214 acpigen_emit_byte(STRING_PREFIX);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700215 acpigen_emit_string(string);
216}
217
Duncan Laurie37319032016-05-26 12:47:05 -0700218void acpigen_write_coreboot_hid(enum coreboot_acpi_ids id)
219{
Joel Kitching3ab36b842018-03-08 12:09:32 +0800220 char hid[9]; /* BOOTxxxx */
Duncan Laurie37319032016-05-26 12:47:05 -0700221
Duncan Laurie02fdb3e2016-09-22 14:08:33 -0700222 snprintf(hid, sizeof(hid), "%.4s%04X", COREBOOT_ACPI_ID, id);
Duncan Laurie37319032016-05-26 12:47:05 -0700223 acpigen_write_name_string("_HID", hid);
224}
225
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100226/*
227 * The naming conventions for ACPI namespace names are a bit tricky as
Martin Roth0cd338e2016-07-29 14:07:30 -0600228 * each element has to be 4 chars wide ("All names are a fixed 32 bits.")
229 * and "By convention, when an ASL compiler pads a name shorter than 4
230 * characters, it is done so with trailing underscores ('_')".
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100231 *
232 * Check sections 5.3, 18.2.2 and 18.4 of ACPI spec 3.0 for details.
233 */
Rudolf Marek3310d752009-06-21 20:26:13 +0000234
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700235static void acpigen_emit_simple_namestring(const char *name)
236{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100237 int i;
Rudolf Marek3310d752009-06-21 20:26:13 +0000238 char ud[] = "____";
239 for (i = 0; i < 4; i++) {
240 if ((name[i] == '\0') || (name[i] == '.')) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100241 acpigen_emit_stream(ud, 4 - i);
Rudolf Marek3310d752009-06-21 20:26:13 +0000242 break;
Rudolf Marek3310d752009-06-21 20:26:13 +0000243 }
Lee Leahy0b5678f2017-03-16 16:01:40 -0700244 acpigen_emit_byte(name[i]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000245 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000246}
247
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700248static void acpigen_emit_double_namestring(const char *name, int dotpos)
249{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700250 acpigen_emit_byte(DUAL_NAME_PREFIX);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100251 acpigen_emit_simple_namestring(name);
252 acpigen_emit_simple_namestring(&name[dotpos + 1]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000253}
254
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700255static void acpigen_emit_multi_namestring(const char *name)
256{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100257 int count = 0;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000258 unsigned char *pathlen;
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700259 acpigen_emit_byte(MULTI_NAME_PREFIX);
260 acpigen_emit_byte(ZERO_OP);
Rudolf Marek3310d752009-06-21 20:26:13 +0000261 pathlen = ((unsigned char *) acpigen_get_current()) - 1;
262
263 while (name[0] != '\0') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100264 acpigen_emit_simple_namestring(name);
Rudolf Marek3310d752009-06-21 20:26:13 +0000265 /* find end or next entity */
266 while ((name[0] != '.') && (name[0] != '\0'))
267 name++;
268 /* forward to next */
269 if (name[0] == '.')
270 name++;
271 count++;
272 }
273
274 pathlen[0] = count;
Rudolf Marek3310d752009-06-21 20:26:13 +0000275}
276
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700277void acpigen_emit_namestring(const char *namepath)
278{
Rudolf Marek3310d752009-06-21 20:26:13 +0000279 int dotcount = 0, i;
Myles Watson3fe6b702009-10-09 20:13:43 +0000280 int dotpos = 0;
Rudolf Marek3310d752009-06-21 20:26:13 +0000281
Ronak Kanabar7c0f0072020-11-30 15:40:51 +0530282 /* Check for NULL pointer */
283 if (!namepath)
284 return;
285
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600286 /* We can start with a '\'. */
Rudolf Marek3310d752009-06-21 20:26:13 +0000287 if (namepath[0] == '\\') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100288 acpigen_emit_byte('\\');
Rudolf Marek3310d752009-06-21 20:26:13 +0000289 namepath++;
290 }
291
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600292 /* And there can be any number of '^' */
Rudolf Marek3310d752009-06-21 20:26:13 +0000293 while (namepath[0] == '^') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100294 acpigen_emit_byte('^');
Rudolf Marek3310d752009-06-21 20:26:13 +0000295 namepath++;
296 }
297
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200298 /* If we have only \\ or only ^...^. Then we need to put a null
299 name (0x00). */
Elyes HAOUASdbf30672016-08-21 17:37:15 +0200300 if (namepath[0] == '\0') {
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700301 acpigen_emit_byte(ZERO_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100302 return;
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200303 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000304
305 i = 0;
306 while (namepath[i] != '\0') {
307 if (namepath[i] == '.') {
308 dotcount++;
309 dotpos = i;
310 }
311 i++;
312 }
313
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700314 if (dotcount == 0)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100315 acpigen_emit_simple_namestring(namepath);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700316 else if (dotcount == 1)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100317 acpigen_emit_double_namestring(namepath, dotpos);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700318 else
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100319 acpigen_emit_multi_namestring(namepath);
Rudolf Marek3310d752009-06-21 20:26:13 +0000320}
321
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100322void acpigen_write_name(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000323{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700324 acpigen_emit_byte(NAME_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100325 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000326}
327
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100328void acpigen_write_scope(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000329{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700330 acpigen_emit_byte(SCOPE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100331 acpigen_write_len_f();
332 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000333}
Rudolf Marekf997b552009-02-14 15:40:23 +0000334
Duncan Laurie2fe74712020-06-01 17:36:56 -0700335void acpigen_get_package_op_element(uint8_t package_op, unsigned int element, uint8_t dest_op)
336{
Duncan Laurieec2e3e42020-11-03 15:19:08 -0800337 /* <dest_op> = DeRefOf (<package_op>[<element>]) */
Duncan Laurie2fe74712020-06-01 17:36:56 -0700338 acpigen_write_store();
339 acpigen_emit_byte(DEREF_OP);
340 acpigen_emit_byte(INDEX_OP);
341 acpigen_emit_byte(package_op);
342 acpigen_write_integer(element);
343 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
344 acpigen_emit_byte(dest_op);
345}
346
Duncan Laurieec2e3e42020-11-03 15:19:08 -0800347void acpigen_set_package_op_element_int(uint8_t package_op, unsigned int element, uint64_t src)
348{
349 /* DeRefOf (<package>[<element>]) = <src> */
350 acpigen_write_store();
351 acpigen_write_integer(src);
352 acpigen_emit_byte(DEREF_OP);
353 acpigen_emit_byte(INDEX_OP);
354 acpigen_emit_byte(package_op);
355 acpigen_write_integer(element);
356 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
357}
358
359void acpigen_get_package_element(const char *package, unsigned int element, uint8_t dest_op)
360{
361 /* <dest_op> = <package>[<element>] */
362 acpigen_write_store();
363 acpigen_emit_byte(INDEX_OP);
364 acpigen_emit_namestring(package);
365 acpigen_write_integer(element);
366 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
367 acpigen_emit_byte(dest_op);
368}
369
370void acpigen_set_package_element_int(const char *package, unsigned int element, uint64_t src)
371{
372 /* <package>[<element>] = <src> */
373 acpigen_write_store();
374 acpigen_write_integer(src);
375 acpigen_emit_byte(INDEX_OP);
376 acpigen_emit_namestring(package);
377 acpigen_write_integer(element);
378 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
379}
380
381void acpigen_set_package_element_namestr(const char *package, unsigned int element,
382 const char *src)
383{
384 /* <package>[<element>] = <src> */
385 acpigen_write_store();
386 acpigen_emit_namestring(src);
387 acpigen_emit_byte(INDEX_OP);
388 acpigen_emit_namestring(package);
389 acpigen_write_integer(element);
390 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
391}
392
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100393void acpigen_write_processor(u8 cpuindex, u32 pblock_addr, u8 pblock_len)
Rudolf Marekf997b552009-02-14 15:40:23 +0000394{
395/*
Christian Walterbe3979c2019-12-18 15:07:59 +0100396 Processor (\_SB.CPcpuindex, cpuindex, pblock_addr, pblock_len)
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200397 {
Rudolf Marekf997b552009-02-14 15:40:23 +0000398*/
399 char pscope[16];
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700400 acpigen_emit_ext_op(PROCESSOR_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100401 acpigen_write_len_f();
Rudolf Marekf997b552009-02-14 15:40:23 +0000402
Elyes HAOUAS7d87e762016-10-03 22:11:07 +0200403 snprintf(pscope, sizeof(pscope),
Marc Jones7a2d4ea2017-08-25 18:54:23 -0600404 CONFIG_ACPI_CPU_STRING, (unsigned int) cpuindex);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100405 acpigen_emit_namestring(pscope);
Rudolf Marekf997b552009-02-14 15:40:23 +0000406 acpigen_emit_byte(cpuindex);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700407 acpigen_emit_dword(pblock_addr);
Rudolf Marekf997b552009-02-14 15:40:23 +0000408 acpigen_emit_byte(pblock_len);
Rudolf Marekf997b552009-02-14 15:40:23 +0000409}
410
Nico Huber4d211ac2017-09-01 21:14:36 +0200411void acpigen_write_processor_package(const char *const name,
412 const unsigned int first_core,
413 const unsigned int core_count)
414{
415 unsigned int i;
416 char pscope[16];
417
418 acpigen_write_name(name);
419 acpigen_write_package(core_count);
420 for (i = first_core; i < first_core + core_count; ++i) {
421 snprintf(pscope, sizeof(pscope), CONFIG_ACPI_CPU_STRING, i);
422 acpigen_emit_namestring(pscope);
423 }
424 acpigen_pop_len();
425}
426
Arthur Heymans8f055272018-11-28 13:18:57 +0100427/* Method to notify all CPU cores */
428void acpigen_write_processor_cnot(const unsigned int number_of_cores)
429{
430 int core_id;
431
Christian Walterbe3979c2019-12-18 15:07:59 +0100432 acpigen_write_method("\\_SB.CNOT", 1);
Arthur Heymans8f055272018-11-28 13:18:57 +0100433 for (core_id = 0; core_id < number_of_cores; core_id++) {
434 char buffer[DEVICE_PATH_MAX];
435 snprintf(buffer, sizeof(buffer), CONFIG_ACPI_CPU_STRING,
436 core_id);
437 acpigen_emit_byte(NOTIFY_OP);
438 acpigen_emit_namestring(buffer);
439 acpigen_emit_byte(ARG0_OP);
440 }
441 acpigen_pop_len();
442}
443
Naresh G Solanki8535c662016-10-25 00:51:24 +0530444/*
445 * Generate ACPI AML code for OperationRegion
446 * Arg0: Pointer to struct opregion opreg = OPREGION(rname, space, offset, len)
447 * where rname is region name, space is region space, offset is region offset &
448 * len is region length.
449 * OperationRegion(regionname, regionspace, regionoffset, regionlength)
450 */
Duncan Laurie35029602020-10-09 17:50:25 +0000451void acpigen_write_opregion(const struct opregion *opreg)
Naresh G Solanki8535c662016-10-25 00:51:24 +0530452{
453 /* OpregionOp */
454 acpigen_emit_ext_op(OPREGION_OP);
455 /* NameString 4 chars only */
456 acpigen_emit_simple_namestring(opreg->name);
457 /* RegionSpace */
458 acpigen_emit_byte(opreg->regionspace);
459 /* RegionOffset & RegionLen, it can be byte word or double word */
460 acpigen_write_integer(opreg->regionoffset);
461 acpigen_write_integer(opreg->regionlen);
462}
463
Patrick Rudolph32bae492019-08-08 12:47:30 +0200464/*
465 * Generate ACPI AML code for Mutex
466 * Arg0: Pointer to name of mutex
467 * Arg1: Initial value of mutex
468 */
469void acpigen_write_mutex(const char *name, const uint8_t flags)
470{
471 /* MutexOp */
472 acpigen_emit_ext_op(MUTEX_OP);
473 /* NameString 4 chars only */
474 acpigen_emit_simple_namestring(name);
475 acpigen_emit_byte(flags);
476}
477
478void acpigen_write_acquire(const char *name, const uint16_t val)
479{
480 /* AcquireOp */
481 acpigen_emit_ext_op(ACQUIRE_OP);
482 /* NameString 4 chars only */
483 acpigen_emit_simple_namestring(name);
484 acpigen_emit_word(val);
485}
486
487void acpigen_write_release(const char *name)
488{
489 /* ReleaseOp */
490 acpigen_emit_ext_op(RELEASE_OP);
491 /* NameString 4 chars only */
492 acpigen_emit_simple_namestring(name);
493}
494
Patrick Rudolph894977b2017-07-01 16:15:05 +0200495static void acpigen_write_field_length(uint32_t len)
496{
497 uint8_t i, j;
498 uint8_t emit[4];
499
500 i = 1;
501 if (len < 0x40) {
502 emit[0] = len & 0x3F;
503 } else {
504 emit[0] = len & 0xF;
505 len >>= 4;
506 while (len) {
507 emit[i] = len & 0xFF;
508 i++;
509 len >>= 8;
510 }
511 }
512 /* Update bit 7:6 : Number of bytes followed by emit[0] */
513 emit[0] |= (i - 1) << 6;
514
515 for (j = 0; j < i; j++)
516 acpigen_emit_byte(emit[j]);
517}
518
Naresh G Solanki8535c662016-10-25 00:51:24 +0530519static void acpigen_write_field_offset(uint32_t offset,
520 uint32_t current_bit_pos)
521{
522 uint32_t diff_bits;
Naresh G Solanki8535c662016-10-25 00:51:24 +0530523
524 if (offset < current_bit_pos) {
525 printk(BIOS_WARNING, "%s: Cannot move offset backward",
526 __func__);
527 return;
528 }
529
530 diff_bits = offset - current_bit_pos;
531 /* Upper limit */
532 if (diff_bits > 0xFFFFFFF) {
533 printk(BIOS_WARNING, "%s: Offset very large to encode",
534 __func__);
535 return;
536 }
537
Naresh G Solanki8535c662016-10-25 00:51:24 +0530538 acpigen_emit_byte(0);
Patrick Rudolph894977b2017-07-01 16:15:05 +0200539 acpigen_write_field_length(diff_bits);
540}
541
542static void acpigen_write_field_name(const char *name, uint32_t size)
543{
544 acpigen_emit_simple_namestring(name);
545 acpigen_write_field_length(size);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530546}
547
Duncan Laurie095bbf92020-09-30 23:09:29 +0000548static void acpigen_write_field_reserved(uint32_t size)
549{
550 acpigen_emit_byte(0);
551 acpigen_write_field_length(size);
552}
553
Naresh G Solanki8535c662016-10-25 00:51:24 +0530554/*
555 * Generate ACPI AML code for Field
556 * Arg0: region name
557 * Arg1: Pointer to struct fieldlist.
558 * Arg2: no. of entries in Arg1
559 * Arg3: flags which indicate filed access type, lock rule & update rule.
560 * Example with fieldlist
561 * struct fieldlist l[] = {
562 * FIELDLIST_OFFSET(0x84),
563 * FIELDLIST_NAMESTR("PMCS", 2),
Duncan Laurie095bbf92020-09-30 23:09:29 +0000564 * FIELDLIST_RESERVED(6),
Naresh G Solanki8535c662016-10-25 00:51:24 +0530565 * };
Elyes HAOUASa342f392018-10-17 10:56:26 +0200566 * acpigen_write_field("UART", l, ARRAY_SIZE(l), FIELD_ANYACC | FIELD_NOLOCK |
Naresh G Solanki8535c662016-10-25 00:51:24 +0530567 * FIELD_PRESERVE);
568 * Output:
569 * Field (UART, AnyAcc, NoLock, Preserve)
570 * {
571 * Offset (0x84),
Duncan Laurie095bbf92020-09-30 23:09:29 +0000572 * PMCS, 2,
573 * , 6,
Naresh G Solanki8535c662016-10-25 00:51:24 +0530574 * }
575 */
Furquan Shaikhf9392992020-04-27 23:18:12 -0700576void acpigen_write_field(const char *name, const struct fieldlist *l, size_t count,
Naresh G Solanki8535c662016-10-25 00:51:24 +0530577 uint8_t flags)
578{
579 uint16_t i;
580 uint32_t current_bit_pos = 0;
581
582 /* FieldOp */
583 acpigen_emit_ext_op(FIELD_OP);
584 /* Package Length */
585 acpigen_write_len_f();
586 /* NameString 4 chars only */
587 acpigen_emit_simple_namestring(name);
588 /* Field Flag */
589 acpigen_emit_byte(flags);
590
591 for (i = 0; i < count; i++) {
592 switch (l[i].type) {
593 case NAME_STRING:
Patrick Rudolph894977b2017-07-01 16:15:05 +0200594 acpigen_write_field_name(l[i].name, l[i].bits);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530595 current_bit_pos += l[i].bits;
596 break;
Duncan Laurie095bbf92020-09-30 23:09:29 +0000597 case RESERVED:
598 acpigen_write_field_reserved(l[i].bits);
599 current_bit_pos += l[i].bits;
600 break;
Naresh G Solanki8535c662016-10-25 00:51:24 +0530601 case OFFSET:
602 acpigen_write_field_offset(l[i].bits, current_bit_pos);
603 current_bit_pos = l[i].bits;
604 break;
605 default:
606 printk(BIOS_ERR, "%s: Invalid field type 0x%X\n"
607 , __func__, l[i].type);
608 break;
609 }
610 }
611 acpigen_pop_len();
612}
613
Patrick Rudolph34846ad2019-05-22 11:59:23 +0200614/*
615 * Generate ACPI AML code for IndexField
616 * Arg0: region name
617 * Arg1: Pointer to struct fieldlist.
618 * Arg2: no. of entries in Arg1
619 * Arg3: flags which indicate filed access type, lock rule & update rule.
620 * Example with fieldlist
621 * struct fieldlist l[] = {
622 * FIELDLIST_OFFSET(0x84),
623 * FIELDLIST_NAMESTR("PMCS", 2),
624 * };
625 * acpigen_write_field("IDX", "DATA" l, ARRAY_SIZE(l), FIELD_ANYACC |
626 * FIELD_NOLOCK |
627 * FIELD_PRESERVE);
628 * Output:
629 * IndexField (IDX, DATA, AnyAcc, NoLock, Preserve)
630 * {
631 * Offset (0x84),
632 * PMCS, 2
633 * }
634 */
635void acpigen_write_indexfield(const char *idx, const char *data,
636 struct fieldlist *l, size_t count, uint8_t flags)
637{
638 uint16_t i;
639 uint32_t current_bit_pos = 0;
640
641 /* FieldOp */
642 acpigen_emit_ext_op(INDEX_FIELD_OP);
643 /* Package Length */
644 acpigen_write_len_f();
645 /* NameString 4 chars only */
646 acpigen_emit_simple_namestring(idx);
647 /* NameString 4 chars only */
648 acpigen_emit_simple_namestring(data);
649 /* Field Flag */
650 acpigen_emit_byte(flags);
651
652 for (i = 0; i < count; i++) {
653 switch (l[i].type) {
654 case NAME_STRING:
655 acpigen_write_field_name(l[i].name, l[i].bits);
656 current_bit_pos += l[i].bits;
657 break;
658 case OFFSET:
659 acpigen_write_field_offset(l[i].bits, current_bit_pos);
660 current_bit_pos = l[i].bits;
661 break;
662 default:
663 printk(BIOS_ERR, "%s: Invalid field type 0x%X\n"
664 , __func__, l[i].type);
665 break;
666 }
667 }
668 acpigen_pop_len();
669}
670
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100671void acpigen_write_empty_PCT(void)
Rudolf Marekf997b552009-02-14 15:40:23 +0000672{
673/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200674 Name (_PCT, Package (0x02)
675 {
676 ResourceTemplate ()
677 {
678 Register (FFixedHW,
679 0x00, // Bit Width
680 0x00, // Bit Offset
681 0x0000000000000000, // Address
682 ,)
683 },
Rudolf Marekf997b552009-02-14 15:40:23 +0000684
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200685 ResourceTemplate ()
686 {
687 Register (FFixedHW,
688 0x00, // Bit Width
689 0x00, // Bit Offset
690 0x0000000000000000, // Address
691 ,)
692 }
693 })
Rudolf Marekf997b552009-02-14 15:40:23 +0000694*/
695 static char stream[] = {
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700696 /* 00000030 "0._PCT.," */
697 0x08, 0x5F, 0x50, 0x43, 0x54, 0x12, 0x2C,
698 /* 00000038 "........" */
699 0x02, 0x11, 0x14, 0x0A, 0x11, 0x82, 0x0C, 0x00,
700 /* 00000040 "........" */
701 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
702 /* 00000048 "....y..." */
703 0x00, 0x00, 0x00, 0x00, 0x79, 0x00, 0x11, 0x14,
704 /* 00000050 "........" */
705 0x0A, 0x11, 0x82, 0x0C, 0x00, 0x7F, 0x00, 0x00,
706 /* 00000058 "........" */
707 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Rudolf Marekf997b552009-02-14 15:40:23 +0000708 0x00, 0x79, 0x00
709 };
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100710 acpigen_emit_stream(stream, ARRAY_SIZE(stream));
Rudolf Marekf997b552009-02-14 15:40:23 +0000711}
712
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100713void acpigen_write_empty_PTC(void)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200714{
715/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200716 Name (_PTC, Package (0x02)
717 {
718 ResourceTemplate ()
719 {
720 Register (FFixedHW,
721 0x00, // Bit Width
722 0x00, // Bit Offset
723 0x0000000000000000, // Address
724 ,)
725 },
Stefan Reinauer39205c62012-04-27 21:49:28 +0200726
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200727 ResourceTemplate ()
728 {
729 Register (FFixedHW,
730 0x00, // Bit Width
731 0x00, // Bit Offset
732 0x0000000000000000, // Address
733 ,)
734 }
735 })
Stefan Reinauer39205c62012-04-27 21:49:28 +0200736*/
Stefan Reinauer39205c62012-04-27 21:49:28 +0200737 acpi_addr_t addr = {
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100738 .space_id = ACPI_ADDRESS_SPACE_FIXED,
739 .bit_width = 0,
740 .bit_offset = 0,
Elyes HAOUAS721cb8a2020-06-23 09:13:42 +0200741 .access_size = ACPI_ACCESS_SIZE_UNDEFINED,
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100742 .addrl = 0,
743 .addrh = 0,
Stefan Reinauer39205c62012-04-27 21:49:28 +0200744 };
745
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100746 acpigen_write_name("_PTC");
747 acpigen_write_package(2);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200748
749 /* ControlRegister */
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700750 acpigen_write_register_resource(&addr);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200751
752 /* StatusRegister */
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700753 acpigen_write_register_resource(&addr);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200754
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100755 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200756}
757
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700758static void __acpigen_write_method(const char *name, uint8_t flags)
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100759{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700760 acpigen_emit_byte(METHOD_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100761 acpigen_write_len_f();
762 acpigen_emit_namestring(name);
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700763 acpigen_emit_byte(flags);
764}
765
766/* Method (name, nargs, NotSerialized) */
767void acpigen_write_method(const char *name, int nargs)
768{
769 __acpigen_write_method(name, (nargs & 7));
770}
771
772/* Method (name, nargs, Serialized) */
773void acpigen_write_method_serialized(const char *name, int nargs)
774{
775 __acpigen_write_method(name, (nargs & 7) | (1 << 3));
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100776}
777
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100778void acpigen_write_device(const char *name)
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100779{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700780 acpigen_emit_ext_op(DEVICE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100781 acpigen_write_len_f();
782 acpigen_emit_namestring(name);
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100783}
784
Raul E Rangel052c9632021-05-12 17:01:30 -0600785void acpigen_write_thermal_zone(const char *name)
786{
787 acpigen_emit_ext_op(THERMAL_ZONE_OP);
788 acpigen_write_len_f();
789 acpigen_emit_namestring(name);
790}
791
Duncan Laurieabe2de82016-05-09 11:08:46 -0700792void acpigen_write_STA(uint8_t status)
793{
794 /*
795 * Method (_STA, 0, NotSerialized) { Return (status) }
796 */
797 acpigen_write_method("_STA", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700798 acpigen_emit_byte(RETURN_OP);
Duncan Laurieabe2de82016-05-09 11:08:46 -0700799 acpigen_write_byte(status);
800 acpigen_pop_len();
801}
802
Sugnan Prabhu S4f77f612020-06-10 09:51:02 +0530803void acpigen_write_STA_ext(const char *namestring)
804{
805 /*
806 * Method (_STA, 0, NotSerialized) { Return (ext_val) }
807 */
808 acpigen_write_method("_STA", 0);
809 acpigen_emit_byte(RETURN_OP);
810 acpigen_emit_namestring(namestring);
811 acpigen_pop_len();
812}
813
Raul E Rangelc7048322021-04-19 15:58:25 -0600814void acpigen_write_LPI_package(u64 level, const struct acpi_lpi_state *states, u16 nentries)
815{
816 /*
817 * Name (_LPI, Package (0x06) // _LPI: Low Power Idle States
818 * {
819 * 0x0000,
820 * 0x0000000000000000,
821 * 0x0003,
822 * Package (0x0A)
823 * {
824 * 0x00000002,
825 * 0x00000001,
826 * 0x00000001,
827 * 0x00000000,
828 * 0x00000000,
829 * 0x00000000,
830 * ResourceTemplate ()
831 * {
832 * Register (FFixedHW,
833 * 0x02, // Bit Width
834 * 0x02, // Bit Offset
835 * 0x0000000000000000, // Address
836 * ,)
837 * },
838 *
839 * ResourceTemplate ()
840 * {
841 * Register (SystemMemory,
842 * 0x00, // Bit Width
843 * 0x00, // Bit Offset
844 * 0x0000000000000000, // Address
845 * ,)
846 * },
847 *
848 * ResourceTemplate ()
849 * {
850 * Register (SystemMemory,
851 * 0x00, // Bit Width
852 * 0x00, // Bit Offset
853 * 0x0000000000000000, // Address
854 * ,)
855 * },
856 *
857 * "C1"
858 * },
859 * ...
860 * }
861 */
862
863 acpigen_write_name("_LPI");
864 acpigen_write_package(3 + nentries);
865 acpigen_write_word(0); /* Revision */
866 acpigen_write_qword(level);
867 acpigen_write_word(nentries);
868
869 for (size_t i = 0; i < nentries; i++, states++) {
870 acpigen_write_package(0xA);
871 acpigen_write_dword(states->min_residency_us);
872 acpigen_write_dword(states->worst_case_wakeup_latency_us);
873 acpigen_write_dword(states->flags);
874 acpigen_write_dword(states->arch_context_lost_flags);
875 acpigen_write_dword(states->residency_counter_frequency_hz);
876 acpigen_write_dword(states->enabled_parent_state);
877 acpigen_write_register_resource(&states->entry_method);
878 acpigen_write_register_resource(&states->residency_counter_register);
879 acpigen_write_register_resource(&states->usage_counter_register);
880 acpigen_write_string(states->state_name);
881 acpigen_pop_len();
882 }
883 acpigen_pop_len();
884}
885
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100886/*
887 * Generates a func with max supported P-states.
888 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100889void acpigen_write_PPC(u8 nr)
Rudolf Marekf997b552009-02-14 15:40:23 +0000890{
891/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200892 Method (_PPC, 0, NotSerialized)
893 {
894 Return (nr)
895 }
Rudolf Marekf997b552009-02-14 15:40:23 +0000896*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100897 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700898 acpigen_emit_byte(RETURN_OP);
Rudolf Marekf997b552009-02-14 15:40:23 +0000899 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100900 acpigen_write_byte(nr);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100901 acpigen_pop_len();
Rudolf Marekf997b552009-02-14 15:40:23 +0000902}
903
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100904/*
905 * Generates a func with max supported P-states saved
906 * in the variable PPCM.
907 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100908void acpigen_write_PPC_NVS(void)
Duncan Laurie0eefa002012-07-16 12:11:53 -0700909{
910/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200911 Method (_PPC, 0, NotSerialized)
912 {
913 Return (PPCM)
914 }
Duncan Laurie0eefa002012-07-16 12:11:53 -0700915*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100916 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700917 acpigen_emit_byte(RETURN_OP);
Duncan Laurie0eefa002012-07-16 12:11:53 -0700918 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100919 acpigen_emit_namestring("PPCM");
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100920 acpigen_pop_len();
Duncan Laurie0eefa002012-07-16 12:11:53 -0700921}
922
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100923void acpigen_write_TPC(const char *gnvs_tpc_limit)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200924{
925/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200926 // Sample _TPC method
927 Method (_TPC, 0, NotSerialized)
928 {
929 Return (\TLVL)
930 }
931*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100932 acpigen_write_method("_TPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700933 acpigen_emit_byte(RETURN_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100934 acpigen_emit_namestring(gnvs_tpc_limit);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100935 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200936}
937
Duncan Laurieabe2de82016-05-09 11:08:46 -0700938void acpigen_write_PRW(u32 wake, u32 level)
939{
940 /*
941 * Name (_PRW, Package () { wake, level }
942 */
943 acpigen_write_name("_PRW");
944 acpigen_write_package(2);
945 acpigen_write_integer(wake);
946 acpigen_write_integer(level);
947 acpigen_pop_len();
948}
949
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100950void acpigen_write_PSS_package(u32 coreFreq, u32 power, u32 transLat,
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000951 u32 busmLat, u32 control, u32 status)
Rudolf Marekf997b552009-02-14 15:40:23 +0000952{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100953 acpigen_write_package(6);
954 acpigen_write_dword(coreFreq);
955 acpigen_write_dword(power);
956 acpigen_write_dword(transLat);
957 acpigen_write_dword(busmLat);
958 acpigen_write_dword(control);
959 acpigen_write_dword(status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100960 acpigen_pop_len();
Stefan Reinauerd4bacf92012-05-02 16:38:47 -0700961
962 printk(BIOS_DEBUG, "PSS: %uMHz power %u control 0x%x status 0x%x\n",
963 coreFreq, power, control, status);
Rudolf Marekf997b552009-02-14 15:40:23 +0000964}
Patrick Georgidf444bf2009-04-21 20:34:36 +0000965
Jason Gleneskca36aed2020-09-15 21:01:57 -0700966void acpigen_write_pss_object(const struct acpi_sw_pstate *pstate_values, size_t nentries)
967{
968 size_t pstate;
969
970 acpigen_write_name("_PSS");
971 acpigen_write_package(nentries);
972 for (pstate = 0; pstate < nentries; pstate++) {
973 acpigen_write_PSS_package(
974 pstate_values->core_freq, pstate_values->power,
975 pstate_values->transition_latency, pstate_values->bus_master_latency,
976 pstate_values->control_value, pstate_values->status_value);
977 pstate_values++;
978 }
979
980 acpigen_pop_len();
981}
982
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100983void acpigen_write_PSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Patrick Georgidf444bf2009-04-21 20:34:36 +0000984{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100985 acpigen_write_name("_PSD");
986 acpigen_write_package(1);
987 acpigen_write_package(5);
988 acpigen_write_byte(5); // 5 values
989 acpigen_write_byte(0); // revision 0
990 acpigen_write_dword(domain);
991 acpigen_write_dword(coordtype);
992 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100993 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100994 acpigen_pop_len();
Patrick Georgidf444bf2009-04-21 20:34:36 +0000995}
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000996
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100997void acpigen_write_CST_package_entry(acpi_cstate_t *cstate)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200998{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100999 acpigen_write_package(4);
Matt Delcoc3f9d7a2018-07-27 14:01:05 -07001000 acpigen_write_register_resource(&cstate->resource);
Jason Glenesk201acca2020-09-11 12:36:15 -07001001 acpigen_write_byte(cstate->ctype);
1002 acpigen_write_word(cstate->latency);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001003 acpigen_write_dword(cstate->power);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001004 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +02001005}
1006
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001007void acpigen_write_CST_package(acpi_cstate_t *cstate, int nentries)
Sven Schnelle0b86c762011-10-21 21:46:47 +02001008{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001009 int i;
1010 acpigen_write_name("_CST");
1011 acpigen_write_package(nentries+1);
Jason Glenesk201acca2020-09-11 12:36:15 -07001012 acpigen_write_integer(nentries);
Sven Schnelle0b86c762011-10-21 21:46:47 +02001013
1014 for (i = 0; i < nentries; i++)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001015 acpigen_write_CST_package_entry(cstate + i);
Sven Schnelle0b86c762011-10-21 21:46:47 +02001016
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001017 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +02001018}
1019
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001020void acpigen_write_CSD_package(u32 domain, u32 numprocs, CSD_coord coordtype,
1021 u32 index)
Timothy Pearson83abd812015-06-08 19:35:06 -05001022{
1023 acpigen_write_name("_CSD");
1024 acpigen_write_package(1);
1025 acpigen_write_package(6);
Jason Glenesk201acca2020-09-11 12:36:15 -07001026 acpigen_write_integer(6); // 6 values
Timothy Pearson83abd812015-06-08 19:35:06 -05001027 acpigen_write_byte(0); // revision 0
1028 acpigen_write_dword(domain);
1029 acpigen_write_dword(coordtype);
1030 acpigen_write_dword(numprocs);
1031 acpigen_write_dword(index);
1032 acpigen_pop_len();
1033 acpigen_pop_len();
1034}
1035
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001036void acpigen_write_TSS_package(int entries, acpi_tstate_t *tstate_list)
Stefan Reinauer39205c62012-04-27 21:49:28 +02001037{
1038/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +02001039 Sample _TSS package with 100% and 50% duty cycles
1040 Name (_TSS, Package (0x02)
1041 {
1042 Package(){100, 1000, 0, 0x00, 0)
1043 Package(){50, 520, 0, 0x18, 0)
1044 })
1045*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001046 int i;
Stefan Reinauer39205c62012-04-27 21:49:28 +02001047 acpi_tstate_t *tstate = tstate_list;
1048
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001049 acpigen_write_name("_TSS");
1050 acpigen_write_package(entries);
Stefan Reinauer39205c62012-04-27 21:49:28 +02001051
1052 for (i = 0; i < entries; i++) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001053 acpigen_write_package(5);
1054 acpigen_write_dword(tstate->percent);
1055 acpigen_write_dword(tstate->power);
1056 acpigen_write_dword(tstate->latency);
1057 acpigen_write_dword(tstate->control);
1058 acpigen_write_dword(tstate->status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001059 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +02001060 tstate++;
Stefan Reinauer39205c62012-04-27 21:49:28 +02001061 }
1062
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001063 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +02001064}
1065
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001066void acpigen_write_TSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Stefan Reinauer39205c62012-04-27 21:49:28 +02001067{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001068 acpigen_write_name("_TSD");
1069 acpigen_write_package(1);
1070 acpigen_write_package(5);
1071 acpigen_write_byte(5); // 5 values
1072 acpigen_write_byte(0); // revision 0
1073 acpigen_write_dword(domain);
1074 acpigen_write_dword(coordtype);
1075 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001076 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001077 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +02001078}
1079
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001080void acpigen_write_mem32fixed(int readwrite, u32 base, u32 size)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001081{
1082 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001083 * ACPI 4.0 section 6.4.3.4: 32-Bit Fixed Memory Range Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001084 * Byte 0:
1085 * Bit7 : 1 => big item
1086 * Bit6-0: 0000110 (0x6) => 32-bit fixed memory
1087 */
1088 acpigen_emit_byte(0x86);
1089 /* Byte 1+2: length (0x0009) */
1090 acpigen_emit_byte(0x09);
1091 acpigen_emit_byte(0x00);
1092 /* bit1-7 are ignored */
1093 acpigen_emit_byte(readwrite ? 0x01 : 0x00);
Duncan Laurie9ccae752016-05-09 07:43:19 -07001094 acpigen_emit_dword(base);
1095 acpigen_emit_dword(size);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001096}
1097
Matt Delcoc3f9d7a2018-07-27 14:01:05 -07001098static void acpigen_write_register(const acpi_addr_t *addr)
Sven Schnelle0b86c762011-10-21 21:46:47 +02001099{
Stefan Reinauer4cc8c702012-04-27 21:34:16 +02001100 acpigen_emit_byte(0x82); /* Register Descriptor */
1101 acpigen_emit_byte(0x0c); /* Register Length 7:0 */
1102 acpigen_emit_byte(0x00); /* Register Length 15:8 */
1103 acpigen_emit_byte(addr->space_id); /* Address Space ID */
1104 acpigen_emit_byte(addr->bit_width); /* Register Bit Width */
1105 acpigen_emit_byte(addr->bit_offset); /* Register Bit Offset */
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +01001106 acpigen_emit_byte(addr->access_size); /* Register Access Size */
Duncan Laurie9ccae752016-05-09 07:43:19 -07001107 acpigen_emit_dword(addr->addrl); /* Register Address Low */
1108 acpigen_emit_dword(addr->addrh); /* Register Address High */
Sven Schnelle0b86c762011-10-21 21:46:47 +02001109}
1110
Matt Delcoc3f9d7a2018-07-27 14:01:05 -07001111void acpigen_write_register_resource(const acpi_addr_t *addr)
1112{
1113 acpigen_write_resourcetemplate_header();
1114 acpigen_write_register(addr);
1115 acpigen_write_resourcetemplate_footer();
1116}
1117
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001118void acpigen_write_irq(u16 mask)
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +01001119{
1120 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001121 * ACPI 3.0b section 6.4.2.1: IRQ Descriptor
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +01001122 * Byte 0:
1123 * Bit7 : 0 => small item
1124 * Bit6-3: 0100 (0x4) => IRQ port descriptor
1125 * Bit2-0: 010 (0x2) => 2 Bytes long
1126 */
1127 acpigen_emit_byte(0x22);
1128 acpigen_emit_byte(mask & 0xff);
1129 acpigen_emit_byte((mask >> 8) & 0xff);
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +01001130}
1131
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001132void acpigen_write_io16(u16 min, u16 max, u8 align, u8 len, u8 decode16)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001133{
1134 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001135 * ACPI 4.0 section 6.4.2.6: I/O Port Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001136 * Byte 0:
1137 * Bit7 : 0 => small item
1138 * Bit6-3: 1000 (0x8) => I/O port descriptor
1139 * Bit2-0: 111 (0x7) => 7 Bytes long
1140 */
1141 acpigen_emit_byte(0x47);
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001142 /* Does the device decode all 16 or just 10 bits? */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001143 /* bit1-7 are ignored */
1144 acpigen_emit_byte(decode16 ? 0x01 : 0x00);
1145 /* minimum base address the device may be configured for */
1146 acpigen_emit_byte(min & 0xff);
1147 acpigen_emit_byte((min >> 8) & 0xff);
1148 /* maximum base address the device may be configured for */
1149 acpigen_emit_byte(max & 0xff);
1150 acpigen_emit_byte((max >> 8) & 0xff);
1151 /* alignment for min base */
1152 acpigen_emit_byte(align & 0xff);
1153 acpigen_emit_byte(len & 0xff);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001154}
1155
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001156void acpigen_write_resourcetemplate_header(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001157{
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001158 /*
1159 * A ResourceTemplate() is a Buffer() with a
1160 * (Byte|Word|DWord) containing the length, followed by one or more
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001161 * resource items, terminated by the end tag.
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001162 * (small item 0xf, len 1)
1163 */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001164 acpigen_emit_byte(BUFFER_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001165 acpigen_write_len_f();
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001166 acpigen_emit_byte(WORD_PREFIX);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001167 len_stack[ltop++] = acpigen_get_current();
Nico Huber7d89ce32017-04-14 00:08:18 +02001168 /* Add 2 dummy bytes for the ACPI word (keep aligned with
Elyes HAOUAS6716bab2020-01-09 21:29:25 +01001169 the calculation in acpigen_write_resourcetemplate() below). */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001170 acpigen_emit_byte(0x00);
1171 acpigen_emit_byte(0x00);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001172}
1173
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001174void acpigen_write_resourcetemplate_footer(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001175{
1176 char *p = len_stack[--ltop];
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001177 int len;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001178 /*
1179 * end tag (acpi 4.0 Section 6.4.2.8)
1180 * 0x79 <checksum>
1181 * 0x00 is treated as a good checksum according to the spec
1182 * and is what iasl generates.
1183 */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001184 acpigen_emit_byte(0x79);
1185 acpigen_emit_byte(0x00);
1186
Nico Huber7d89ce32017-04-14 00:08:18 +02001187 /* Start counting past the 2-bytes length added in
1188 acpigen_write_resourcetemplate() above. */
1189 len = acpigen_get_current() - (p + 2);
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001190
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001191 /* patch len word */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001192 p[0] = len & 0xff;
1193 p[1] = (len >> 8) & 0xff;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001194 /* patch len field */
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001195 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001196}
1197
1198static void acpigen_add_mainboard_rsvd_mem32(void *gp, struct device *dev,
1199 struct resource *res)
1200{
1201 acpigen_write_mem32fixed(0, res->base, res->size);
1202}
1203
1204static void acpigen_add_mainboard_rsvd_io(void *gp, struct device *dev,
1205 struct resource *res)
1206{
1207 resource_t base = res->base;
1208 resource_t size = res->size;
1209 while (size > 0) {
1210 resource_t sz = size > 255 ? 255 : size;
1211 acpigen_write_io16(base, base, 0, sz, 1);
1212 size -= sz;
1213 base += sz;
1214 }
1215}
1216
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001217void acpigen_write_mainboard_resource_template(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001218{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001219 acpigen_write_resourcetemplate_header();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001220
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001221 /* Add reserved memory ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001222 search_global_resources(
1223 IORESOURCE_MEM | IORESOURCE_RESERVE,
1224 IORESOURCE_MEM | IORESOURCE_RESERVE,
1225 acpigen_add_mainboard_rsvd_mem32, 0);
1226
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001227 /* Add reserved io ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001228 search_global_resources(
1229 IORESOURCE_IO | IORESOURCE_RESERVE,
1230 IORESOURCE_IO | IORESOURCE_RESERVE,
1231 acpigen_add_mainboard_rsvd_io, 0);
1232
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001233 acpigen_write_resourcetemplate_footer();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001234}
1235
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001236void acpigen_write_mainboard_resources(const char *scope, const char *name)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001237{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001238 acpigen_write_scope(scope);
1239 acpigen_write_name(name);
1240 acpigen_write_mainboard_resource_template();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001241 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001242}
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001243
1244static int hex2bin(const char c)
1245{
1246 if (c >= 'A' && c <= 'F')
1247 return c - 'A' + 10;
1248 if (c >= 'a' && c <= 'f')
1249 return c - 'a' + 10;
1250 return c - '0';
1251}
1252
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001253void acpigen_emit_eisaid(const char *eisaid)
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001254{
1255 u32 compact = 0;
1256
1257 /* Clamping individual values would be better but
1258 there is a disagreement over what is a valid
1259 EISA id, so accept anything and don't clamp,
1260 parent code should create a valid EISAid.
1261 */
1262 compact |= (eisaid[0] - 'A' + 1) << 26;
1263 compact |= (eisaid[1] - 'A' + 1) << 21;
1264 compact |= (eisaid[2] - 'A' + 1) << 16;
1265 compact |= hex2bin(eisaid[3]) << 12;
1266 compact |= hex2bin(eisaid[4]) << 8;
1267 compact |= hex2bin(eisaid[5]) << 4;
1268 compact |= hex2bin(eisaid[6]);
1269
1270 acpigen_emit_byte(0xc);
1271 acpigen_emit_byte((compact >> 24) & 0xff);
1272 acpigen_emit_byte((compact >> 16) & 0xff);
1273 acpigen_emit_byte((compact >> 8) & 0xff);
1274 acpigen_emit_byte(compact & 0xff);
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001275}
Duncan Laurie3829f232016-05-09 11:08:46 -07001276
1277/*
1278 * ToUUID(uuid)
1279 *
1280 * ACPI 6.1 Section 19.6.136 table 19-385 defines a special output
1281 * order for the bytes that make up a UUID Buffer object.
1282 * UUID byte order for input:
1283 * aabbccdd-eeff-gghh-iijj-kkllmmnnoopp
1284 * UUID byte order for output:
1285 * ddccbbaa-ffee-hhgg-iijj-kkllmmnnoopp
1286 */
1287#define UUID_LEN 16
1288void acpigen_write_uuid(const char *uuid)
1289{
1290 uint8_t buf[UUID_LEN];
1291 size_t i, order[UUID_LEN] = { 3, 2, 1, 0, 5, 4, 7, 6,
1292 8, 9, 10, 11, 12, 13, 14, 15 };
1293
1294 /* Parse UUID string into bytes */
1295 if (hexstrtobin(uuid, buf, UUID_LEN) < UUID_LEN)
1296 return;
1297
1298 /* BufferOp */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001299 acpigen_emit_byte(BUFFER_OP);
Duncan Laurie3829f232016-05-09 11:08:46 -07001300 acpigen_write_len_f();
1301
1302 /* Buffer length in bytes */
1303 acpigen_write_word(UUID_LEN);
1304
1305 /* Output UUID in expected order */
1306 for (i = 0; i < UUID_LEN; i++)
1307 acpigen_emit_byte(buf[order[i]]);
1308
1309 acpigen_pop_len();
1310}
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001311
1312/*
1313 * Name (_PRx, Package(One) { name })
1314 * ...
1315 * PowerResource (name, level, order)
1316 */
1317void acpigen_write_power_res(const char *name, uint8_t level, uint16_t order,
Furquan Shaikhdc782752020-04-30 22:49:39 -07001318 const char * const dev_states[], size_t dev_states_count)
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001319{
Elyes HAOUAScca6e002019-06-26 12:12:00 +02001320 size_t i;
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001321 for (i = 0; i < dev_states_count; i++) {
1322 acpigen_write_name(dev_states[i]);
1323 acpigen_write_package(1);
1324 acpigen_emit_simple_namestring(name);
1325 acpigen_pop_len(); /* Package */
1326 }
1327
1328 acpigen_emit_ext_op(POWER_RES_OP);
1329
1330 acpigen_write_len_f();
1331
1332 acpigen_emit_simple_namestring(name);
1333 acpigen_emit_byte(level);
1334 acpigen_emit_word(order);
1335}
1336
1337/* Sleep (ms) */
1338void acpigen_write_sleep(uint64_t sleep_ms)
1339{
1340 acpigen_emit_ext_op(SLEEP_OP);
1341 acpigen_write_integer(sleep_ms);
1342}
1343
1344void acpigen_write_store(void)
1345{
1346 acpigen_emit_byte(STORE_OP);
1347}
1348
1349/* Store (src, dst) */
1350void acpigen_write_store_ops(uint8_t src, uint8_t dst)
1351{
1352 acpigen_write_store();
1353 acpigen_emit_byte(src);
1354 acpigen_emit_byte(dst);
1355}
1356
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001357/* Store (src, "namestr") */
1358void acpigen_write_store_op_to_namestr(uint8_t src, const char *dst)
1359{
1360 acpigen_write_store();
1361 acpigen_emit_byte(src);
1362 acpigen_emit_namestring(dst);
1363}
1364
Duncan Laurie8e391d32020-09-30 23:17:41 +00001365/* Store (src, "namestr") */
1366void acpigen_write_store_int_to_namestr(uint64_t src, const char *dst)
1367{
1368 acpigen_write_store();
1369 acpigen_write_integer(src);
1370 acpigen_emit_namestring(dst);
1371}
1372
1373/* Store (src, dst) */
1374void acpigen_write_store_int_to_op(uint64_t src, uint8_t dst)
1375{
1376 acpigen_write_store();
1377 acpigen_write_integer(src);
1378 acpigen_emit_byte(dst);
1379}
1380
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001381/* Or (arg1, arg2, res) */
1382void acpigen_write_or(uint8_t arg1, uint8_t arg2, uint8_t res)
1383{
1384 acpigen_emit_byte(OR_OP);
1385 acpigen_emit_byte(arg1);
1386 acpigen_emit_byte(arg2);
1387 acpigen_emit_byte(res);
1388}
1389
Rajat Jain310623b2020-02-26 11:02:53 -08001390/* Xor (arg1, arg2, res) */
1391void acpigen_write_xor(uint8_t arg1, uint8_t arg2, uint8_t res)
1392{
1393 acpigen_emit_byte(XOR_OP);
1394 acpigen_emit_byte(arg1);
1395 acpigen_emit_byte(arg2);
1396 acpigen_emit_byte(res);
1397}
1398
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001399/* And (arg1, arg2, res) */
1400void acpigen_write_and(uint8_t arg1, uint8_t arg2, uint8_t res)
1401{
1402 acpigen_emit_byte(AND_OP);
1403 acpigen_emit_byte(arg1);
1404 acpigen_emit_byte(arg2);
1405 acpigen_emit_byte(res);
1406}
1407
1408/* Not (arg, res) */
1409void acpigen_write_not(uint8_t arg, uint8_t res)
1410{
1411 acpigen_emit_byte(NOT_OP);
1412 acpigen_emit_byte(arg);
1413 acpigen_emit_byte(res);
1414}
1415
1416/* Store (str, DEBUG) */
1417void acpigen_write_debug_string(const char *str)
1418{
1419 acpigen_write_store();
1420 acpigen_write_string(str);
1421 acpigen_emit_ext_op(DEBUG_OP);
1422}
1423
1424/* Store (val, DEBUG) */
1425void acpigen_write_debug_integer(uint64_t val)
1426{
1427 acpigen_write_store();
1428 acpigen_write_integer(val);
1429 acpigen_emit_ext_op(DEBUG_OP);
1430}
1431
1432/* Store (op, DEBUG) */
1433void acpigen_write_debug_op(uint8_t op)
1434{
1435 acpigen_write_store();
1436 acpigen_emit_byte(op);
1437 acpigen_emit_ext_op(DEBUG_OP);
1438}
1439
Duncan Laurieec2e3e42020-11-03 15:19:08 -08001440/* Store (str, DEBUG) */
1441void acpigen_write_debug_namestr(const char *str)
1442{
1443 acpigen_write_store();
1444 acpigen_emit_namestring(str);
1445 acpigen_emit_ext_op(DEBUG_OP);
1446}
1447
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001448void acpigen_write_if(void)
1449{
1450 acpigen_emit_byte(IF_OP);
1451 acpigen_write_len_f();
1452}
1453
1454/* If (And (arg1, arg2)) */
1455void acpigen_write_if_and(uint8_t arg1, uint8_t arg2)
1456{
1457 acpigen_write_if();
1458 acpigen_emit_byte(AND_OP);
1459 acpigen_emit_byte(arg1);
1460 acpigen_emit_byte(arg2);
1461}
1462
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001463/*
Duncan Laurie2fe74712020-06-01 17:36:56 -07001464 * Generates ACPI code for checking if operand1 and operand2 are equal.
1465 * Both operand1 and operand2 are ACPI ops.
1466 *
1467 * If (Lequal (op,1 op2))
1468 */
1469void acpigen_write_if_lequal_op_op(uint8_t op1, uint8_t op2)
1470{
1471 acpigen_write_if();
1472 acpigen_emit_byte(LEQUAL_OP);
1473 acpigen_emit_byte(op1);
1474 acpigen_emit_byte(op2);
1475}
1476
1477/*
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001478 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1479 * operand1 is ACPI op and operand2 is an integer.
1480 *
1481 * If (Lequal (op, val))
1482 */
1483void acpigen_write_if_lequal_op_int(uint8_t op, uint64_t val)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001484{
1485 acpigen_write_if();
1486 acpigen_emit_byte(LEQUAL_OP);
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001487 acpigen_emit_byte(op);
1488 acpigen_write_integer(val);
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001489}
1490
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001491/*
1492 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1493 * operand1 is namestring and operand2 is an integer.
1494 *
1495 * If (Lequal ("namestr", val))
1496 */
1497void acpigen_write_if_lequal_namestr_int(const char *namestr, uint64_t val)
1498{
1499 acpigen_write_if();
1500 acpigen_emit_byte(LEQUAL_OP);
1501 acpigen_emit_namestring(namestr);
1502 acpigen_write_integer(val);
1503}
1504
Tim Wawrzynczakc4ca2f62021-07-01 11:18:50 -06001505/*
1506 * Generates ACPI code to check at runtime if an object named `namestring`
1507 * exists, and leaves the If scope open to continue execute code when this
1508 * is true. NOTE: Requires matching acpigen_write_if_end().
1509 *
1510 * If (CondRefOf (NAME))
1511 */
1512void acpigen_write_if_cond_ref_of(const char *namestring)
1513{
1514 acpigen_write_if();
1515 acpigen_emit_ext_op(COND_REFOF_OP);
1516 acpigen_emit_namestring(namestring);
1517 acpigen_emit_byte(ZERO_OP); /* ignore COND_REFOF_OP destination */
1518}
1519
Jakub Czapiga61fcb7e2021-02-19 11:44:22 +01001520/* Closes previously opened if statement and generates ACPI code for else statement. */
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001521void acpigen_write_else(void)
1522{
Jakub Czapiga61fcb7e2021-02-19 11:44:22 +01001523 acpigen_pop_len();
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001524 acpigen_emit_byte(ELSE_OP);
1525 acpigen_write_len_f();
1526}
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001527
Duncan Laurie36858202020-10-06 21:01:51 +00001528void acpigen_write_shiftleft_op_int(uint8_t src_result, uint64_t count)
1529{
1530 acpigen_emit_byte(SHIFT_LEFT_OP);
1531 acpigen_emit_byte(src_result);
1532 acpigen_write_integer(count);
1533 acpigen_emit_byte(ZERO_OP);
1534}
1535
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001536void acpigen_write_to_buffer(uint8_t src, uint8_t dst)
1537{
1538 acpigen_emit_byte(TO_BUFFER_OP);
1539 acpigen_emit_byte(src);
1540 acpigen_emit_byte(dst);
1541}
1542
1543void acpigen_write_to_integer(uint8_t src, uint8_t dst)
1544{
1545 acpigen_emit_byte(TO_INTEGER_OP);
1546 acpigen_emit_byte(src);
1547 acpigen_emit_byte(dst);
1548}
1549
Aaron Durbin80bc0912020-08-19 23:17:42 -06001550void acpigen_write_to_integer_from_namestring(const char *source, uint8_t dst_op)
1551{
1552 acpigen_emit_byte(TO_INTEGER_OP);
1553 acpigen_emit_namestring(source);
1554 acpigen_emit_byte(dst_op);
1555}
1556
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301557void acpigen_write_byte_buffer(uint8_t *arr, size_t size)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001558{
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301559 size_t i;
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001560
1561 acpigen_emit_byte(BUFFER_OP);
1562 acpigen_write_len_f();
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301563 acpigen_write_integer(size);
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001564
1565 for (i = 0; i < size; i++)
1566 acpigen_emit_byte(arr[i]);
1567
1568 acpigen_pop_len();
1569}
1570
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301571void acpigen_write_return_byte_buffer(uint8_t *arr, size_t size)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001572{
1573 acpigen_emit_byte(RETURN_OP);
1574 acpigen_write_byte_buffer(arr, size);
1575}
1576
1577void acpigen_write_return_singleton_buffer(uint8_t arg)
1578{
1579 acpigen_write_return_byte_buffer(&arg, 1);
1580}
1581
Duncan Laurie2fe74712020-06-01 17:36:56 -07001582void acpigen_write_return_op(uint8_t arg)
1583{
1584 acpigen_emit_byte(RETURN_OP);
1585 acpigen_emit_byte(arg);
1586}
1587
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001588void acpigen_write_return_byte(uint8_t arg)
1589{
1590 acpigen_emit_byte(RETURN_OP);
1591 acpigen_write_byte(arg);
1592}
1593
Naresh G Solanki05abe432016-11-17 00:16:29 +05301594void acpigen_write_return_integer(uint64_t arg)
1595{
1596 acpigen_emit_byte(RETURN_OP);
1597 acpigen_write_integer(arg);
1598}
1599
Duncan Laurieec2e3e42020-11-03 15:19:08 -08001600void acpigen_write_return_namestr(const char *arg)
1601{
1602 acpigen_emit_byte(RETURN_OP);
1603 acpigen_emit_namestring(arg);
1604}
1605
Naresh G Solanki05abe432016-11-17 00:16:29 +05301606void acpigen_write_return_string(const char *arg)
1607{
1608 acpigen_emit_byte(RETURN_OP);
1609 acpigen_write_string(arg);
1610}
1611
Duncan Lauriebeb2af42018-05-07 14:26:59 -07001612void acpigen_write_upc(enum acpi_upc_type type)
1613{
1614 acpigen_write_name("_UPC");
1615 acpigen_write_package(4);
1616 /* Connectable */
1617 acpigen_write_byte(type == UPC_TYPE_UNUSED ? 0 : 0xff);
1618 /* Type */
1619 acpigen_write_byte(type);
1620 /* Reserved0 */
1621 acpigen_write_zero();
1622 /* Reserved1 */
1623 acpigen_write_zero();
1624 acpigen_pop_len();
1625}
1626
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001627void acpigen_write_pld(const struct acpi_pld *pld)
1628{
1629 uint8_t buf[20];
1630
1631 if (acpi_pld_to_buffer(pld, buf, ARRAY_SIZE(buf)) < 0)
1632 return;
1633
1634 acpigen_write_name("_PLD");
Matt Delco4929f432019-01-30 11:40:44 -08001635 acpigen_write_package(1);
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001636 acpigen_write_byte_buffer(buf, ARRAY_SIZE(buf));
Matt Delco4929f432019-01-30 11:40:44 -08001637 acpigen_pop_len();
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001638}
1639
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301640void acpigen_write_dsm(const char *uuid, void (**callbacks)(void *),
1641 size_t count, void *arg)
1642{
1643 struct dsm_uuid id = DSM_UUID(uuid, callbacks, count, arg);
1644 acpigen_write_dsm_uuid_arr(&id, 1);
1645}
1646
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001647/*
1648 * Create a supported functions bitmask
1649 * bit 0: other functions than 0 are supported
1650 * bits 1-x: function x supported
1651 */
1652static void acpigen_dsm_uuid_enum_functions(const struct dsm_uuid *id)
1653{
1654 const size_t bytes = DIV_ROUND_UP(id->count, BITS_PER_BYTE);
1655 uint8_t *buffer = alloca(bytes);
1656 bool set = false;
1657 size_t cb_idx = 0;
1658
1659 memset(buffer, 0, bytes);
1660
1661 for (size_t i = 0; i < bytes; i++) {
1662 for (size_t j = 0; j < BITS_PER_BYTE; j++) {
1663 if (cb_idx >= id->count)
1664 break;
1665
1666 if (id->callbacks[cb_idx++]) {
1667 set = true;
1668 buffer[i] |= BIT(j);
1669 }
1670 }
1671 }
1672
1673 if (set)
1674 buffer[0] |= BIT(0);
1675
1676 acpigen_write_return_byte_buffer(buffer, bytes);
1677}
1678
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301679static void acpigen_write_dsm_uuid(struct dsm_uuid *id)
1680{
1681 size_t i;
1682
1683 /* If (LEqual (Local0, ToUUID(uuid))) */
1684 acpigen_write_if();
1685 acpigen_emit_byte(LEQUAL_OP);
1686 acpigen_emit_byte(LOCAL0_OP);
1687 acpigen_write_uuid(id->uuid);
1688
1689 /* ToInteger (Arg2, Local1) */
1690 acpigen_write_to_integer(ARG2_OP, LOCAL1_OP);
1691
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001692 /* If (LEqual(Local1, 0)) */
1693 {
1694 acpigen_write_if_lequal_op_int(LOCAL1_OP, 0);
1695 if (id->callbacks[0])
1696 id->callbacks[0](id->arg);
1697 else if (id->count)
1698 acpigen_dsm_uuid_enum_functions(id);
1699 acpigen_write_if_end();
1700 }
1701
1702 for (i = 1; i < id->count; i++) {
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301703 /* If (LEqual (Local1, i)) */
1704 acpigen_write_if_lequal_op_int(LOCAL1_OP, i);
1705
1706 /* Callback to write if handler. */
1707 if (id->callbacks[i])
1708 id->callbacks[i](id->arg);
1709
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001710 acpigen_write_if_end(); /* If */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301711 }
1712
1713 /* Default case: Return (Buffer (One) { 0x0 }) */
1714 acpigen_write_return_singleton_buffer(0x0);
1715
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001716 acpigen_write_if_end(); /* If (LEqual (Local0, ToUUID(uuid))) */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301717
1718}
1719
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001720/*
1721 * Generate ACPI AML code for _DSM method.
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301722 * This function takes as input array of uuid for the device, set of callbacks
1723 * and argument to pass into the callbacks. Callbacks should ensure that Local0
1724 * and Local1 are left untouched. Use of Local2-Local7 is permitted in
1725 * callbacks.
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001726 *
1727 * Arguments passed into _DSM method:
1728 * Arg0 = UUID
1729 * Arg1 = Revision
1730 * Arg2 = Function index
1731 * Arg3 = Function specific arguments
1732 *
1733 * AML code generated would look like:
1734 * Method (_DSM, 4, Serialized) {
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301735 * ToBuffer (Arg0, Local0)
1736 * If (LEqual (Local0, ToUUID(uuid))) {
1737 * ToInteger (Arg2, Local1)
1738 * If (LEqual (Local1, 0)) {
1739 * <acpigen by callback[0]>
1740 * }
1741 * ...
1742 * If (LEqual (Local1, n)) {
1743 * <acpigen by callback[n]>
1744 * }
1745 * Return (Buffer (One) { 0x0 })
1746 * }
1747 * ...
1748 * If (LEqual (Local0, ToUUID(uuidn))) {
1749 * ...
1750 * }
1751 * Return (Buffer (One) { 0x0 })
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001752 * }
1753 */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301754void acpigen_write_dsm_uuid_arr(struct dsm_uuid *ids, size_t count)
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001755{
1756 size_t i;
1757
1758 /* Method (_DSM, 4, Serialized) */
1759 acpigen_write_method_serialized("_DSM", 0x4);
1760
1761 /* ToBuffer (Arg0, Local0) */
1762 acpigen_write_to_buffer(ARG0_OP, LOCAL0_OP);
1763
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001764 for (i = 0; i < count; i++)
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301765 acpigen_write_dsm_uuid(&ids[i]);
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001766
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301767 /* Return (Buffer (One) { 0x0 }) */
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001768 acpigen_write_return_singleton_buffer(0x0);
1769
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001770 acpigen_pop_len(); /* Method _DSM */
1771}
1772
Matt Delcob425bc82018-08-13 13:36:27 -07001773void acpigen_write_CPPC_package(const struct cppc_config *config)
1774{
1775 u32 i;
1776 u32 max;
1777 switch (config->version) {
1778 case 1:
1779 max = CPPC_MAX_FIELDS_VER_1;
1780 break;
1781 case 2:
1782 max = CPPC_MAX_FIELDS_VER_2;
1783 break;
1784 case 3:
1785 max = CPPC_MAX_FIELDS_VER_3;
1786 break;
1787 default:
1788 printk(BIOS_ERR, "ERROR: CPPC version %u is not implemented\n",
1789 config->version);
1790 return;
1791 }
1792 acpigen_write_name(CPPC_PACKAGE_NAME);
1793
1794 /* Adding 2 to account for length and version fields */
1795 acpigen_write_package(max + 2);
1796 acpigen_write_dword(max + 2);
1797
1798 acpigen_write_byte(config->version);
1799
1800 for (i = 0; i < max; ++i) {
1801 const acpi_addr_t *reg = &(config->regs[i]);
1802 if (reg->space_id == ACPI_ADDRESS_SPACE_MEMORY &&
Elyes HAOUAS721cb8a2020-06-23 09:13:42 +02001803 reg->bit_width == 32 && reg->access_size == ACPI_ACCESS_SIZE_UNDEFINED) {
Matt Delcob425bc82018-08-13 13:36:27 -07001804 acpigen_write_dword(reg->addrl);
1805 } else {
1806 acpigen_write_register_resource(reg);
1807 }
1808 }
1809 acpigen_pop_len();
1810}
1811
1812void acpigen_write_CPPC_method(void)
1813{
Michael Niewöhnerb20aac02020-10-14 19:30:46 +02001814 char pscope[16];
1815 snprintf(pscope, sizeof(pscope), CONFIG_ACPI_CPU_STRING "." CPPC_PACKAGE_NAME, 0);
1816
Matt Delcob425bc82018-08-13 13:36:27 -07001817 acpigen_write_method("_CPC", 0);
1818 acpigen_emit_byte(RETURN_OP);
Michael Niewöhnerb20aac02020-10-14 19:30:46 +02001819 acpigen_emit_namestring(pscope);
Matt Delcob425bc82018-08-13 13:36:27 -07001820 acpigen_pop_len();
1821}
1822
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001823/*
1824 * Generate ACPI AML code for _ROM method.
1825 * This function takes as input ROM data and ROM length.
1826 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001827 * The ACPI spec isn't clear about what should happen at the end of the
1828 * ROM. Tests showed that it shouldn't truncate, but fill the remaining
1829 * bytes in the returned buffer with zeros.
1830 *
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001831 * Arguments passed into _DSM method:
1832 * Arg0 = Offset in Bytes
1833 * Arg1 = Bytes to return
1834 *
1835 * Example:
1836 * acpigen_write_rom(0xdeadbeef, 0x10000)
1837 *
1838 * AML code generated would look like:
1839 * Method (_ROM, 2, NotSerialized) {
1840 *
1841 * OperationRegion("ROMS", SYSTEMMEMORY, 0xdeadbeef, 0x10000)
1842 * Field (ROMS, AnyAcc, NoLock, Preserve)
1843 * {
1844 * Offset (0),
1845 * RBF0, 0x80000
1846 * }
1847 *
1848 * Store (Arg0, Local0)
1849 * Store (Arg1, Local1)
1850 *
1851 * If (LGreater (Local1, 0x1000))
1852 * {
1853 * Store (0x1000, Local1)
1854 * }
1855 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001856 * Store (Local1, Local3)
1857 *
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001858 * If (LGreater (Local0, 0x10000))
1859 * {
1860 * Return(Buffer(Local1){0})
1861 * }
1862 *
1863 * If (LGreater (Local0, 0x0f000))
1864 * {
1865 * Subtract (0x10000, Local0, Local2)
1866 * If (LGreater (Local1, Local2))
1867 * {
1868 * Store (Local2, Local1)
1869 * }
1870 * }
1871 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001872 * Name (ROM1, Buffer (Local3) {0})
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001873 *
1874 * Multiply (Local0, 0x08, Local0)
1875 * Multiply (Local1, 0x08, Local1)
1876 *
1877 * CreateField (RBF0, Local0, Local1, TMPB)
1878 * Store (TMPB, ROM1)
1879 * Return (ROM1)
1880 * }
1881 */
1882
1883void acpigen_write_rom(void *bios, const size_t length)
1884{
1885 ASSERT(bios)
1886 ASSERT(length)
1887
Jonathan Neuschäfer6b0102d2018-09-12 12:26:45 +02001888 /* Method (_ROM, 2, Serialized) */
Marc Jones24462e62018-08-15 23:57:28 -06001889 acpigen_write_method_serialized("_ROM", 2);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001890
1891 /* OperationRegion("ROMS", SYSTEMMEMORY, current, length) */
1892 struct opregion opreg = OPREGION("ROMS", SYSTEMMEMORY,
1893 (uintptr_t)bios, length);
1894 acpigen_write_opregion(&opreg);
1895
1896 struct fieldlist l[] = {
1897 FIELDLIST_OFFSET(0),
1898 FIELDLIST_NAMESTR("RBF0", 8 * length),
1899 };
1900
1901 /* Field (ROMS, AnyAcc, NoLock, Preserve)
1902 * {
1903 * Offset (0),
1904 * RBF0, 0x80000
1905 * } */
1906 acpigen_write_field(opreg.name, l, 2, FIELD_ANYACC |
1907 FIELD_NOLOCK | FIELD_PRESERVE);
1908
1909 /* Store (Arg0, Local0) */
1910 acpigen_write_store();
1911 acpigen_emit_byte(ARG0_OP);
1912 acpigen_emit_byte(LOCAL0_OP);
1913
1914 /* Store (Arg1, Local1) */
1915 acpigen_write_store();
1916 acpigen_emit_byte(ARG1_OP);
1917 acpigen_emit_byte(LOCAL1_OP);
1918
1919 /* ACPI SPEC requires to return at maximum 4KiB */
1920 /* If (LGreater (Local1, 0x1000)) */
1921 acpigen_write_if();
1922 acpigen_emit_byte(LGREATER_OP);
1923 acpigen_emit_byte(LOCAL1_OP);
1924 acpigen_write_integer(0x1000);
1925
1926 /* Store (0x1000, Local1) */
1927 acpigen_write_store();
1928 acpigen_write_integer(0x1000);
1929 acpigen_emit_byte(LOCAL1_OP);
1930
1931 /* Pop if */
1932 acpigen_pop_len();
1933
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001934 /* Store (Local1, Local3) */
1935 acpigen_write_store();
1936 acpigen_emit_byte(LOCAL1_OP);
1937 acpigen_emit_byte(LOCAL3_OP);
1938
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001939 /* If (LGreater (Local0, length)) */
1940 acpigen_write_if();
1941 acpigen_emit_byte(LGREATER_OP);
1942 acpigen_emit_byte(LOCAL0_OP);
1943 acpigen_write_integer(length);
1944
1945 /* Return(Buffer(Local1){0}) */
1946 acpigen_emit_byte(RETURN_OP);
1947 acpigen_emit_byte(BUFFER_OP);
1948 acpigen_write_len_f();
1949 acpigen_emit_byte(LOCAL1_OP);
1950 acpigen_emit_byte(0);
1951 acpigen_pop_len();
1952
1953 /* Pop if */
1954 acpigen_pop_len();
1955
1956 /* If (LGreater (Local0, length - 4096)) */
1957 acpigen_write_if();
1958 acpigen_emit_byte(LGREATER_OP);
1959 acpigen_emit_byte(LOCAL0_OP);
1960 acpigen_write_integer(length - 4096);
1961
1962 /* Subtract (length, Local0, Local2) */
1963 acpigen_emit_byte(SUBTRACT_OP);
1964 acpigen_write_integer(length);
1965 acpigen_emit_byte(LOCAL0_OP);
1966 acpigen_emit_byte(LOCAL2_OP);
1967
1968 /* If (LGreater (Local1, Local2)) */
1969 acpigen_write_if();
1970 acpigen_emit_byte(LGREATER_OP);
1971 acpigen_emit_byte(LOCAL1_OP);
1972 acpigen_emit_byte(LOCAL2_OP);
1973
1974 /* Store (Local2, Local1) */
1975 acpigen_write_store();
1976 acpigen_emit_byte(LOCAL2_OP);
1977 acpigen_emit_byte(LOCAL1_OP);
1978
1979 /* Pop if */
1980 acpigen_pop_len();
1981
1982 /* Pop if */
1983 acpigen_pop_len();
1984
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001985 /* Name (ROM1, Buffer (Local3) {0}) */
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001986 acpigen_write_name("ROM1");
1987 acpigen_emit_byte(BUFFER_OP);
1988 acpigen_write_len_f();
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001989 acpigen_emit_byte(LOCAL3_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001990 acpigen_emit_byte(0);
1991 acpigen_pop_len();
1992
1993 /* Multiply (Local1, 0x08, Local1) */
1994 acpigen_emit_byte(MULTIPLY_OP);
1995 acpigen_emit_byte(LOCAL1_OP);
1996 acpigen_write_integer(0x08);
1997 acpigen_emit_byte(LOCAL1_OP);
1998
1999 /* Multiply (Local0, 0x08, Local0) */
2000 acpigen_emit_byte(MULTIPLY_OP);
2001 acpigen_emit_byte(LOCAL0_OP);
2002 acpigen_write_integer(0x08);
2003 acpigen_emit_byte(LOCAL0_OP);
2004
2005 /* CreateField (RBF0, Local0, Local1, TMPB) */
2006 acpigen_emit_ext_op(CREATEFIELD_OP);
2007 acpigen_emit_namestring("RBF0");
2008 acpigen_emit_byte(LOCAL0_OP);
2009 acpigen_emit_byte(LOCAL1_OP);
2010 acpigen_emit_namestring("TMPB");
2011
2012 /* Store (TMPB, ROM1) */
2013 acpigen_write_store();
2014 acpigen_emit_namestring("TMPB");
2015 acpigen_emit_namestring("ROM1");
2016
2017 /* Return (ROM1) */
2018 acpigen_emit_byte(RETURN_OP);
2019 acpigen_emit_namestring("ROM1");
2020
2021 /* Pop method */
2022 acpigen_pop_len();
2023}
2024
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07002025/* Soc-implemented functions -- weak definitions. */
Aaron Durbin64031672018-04-21 14:45:32 -06002026int __weak acpigen_soc_read_rx_gpio(unsigned int gpio_num)
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07002027{
2028 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
2029 acpigen_write_debug_string("read_rx_gpio not available");
2030 return -1;
2031}
2032
Aaron Durbin64031672018-04-21 14:45:32 -06002033int __weak acpigen_soc_get_tx_gpio(unsigned int gpio_num)
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07002034{
2035 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
2036 acpigen_write_debug_string("get_tx_gpio not available");
2037 return -1;
2038}
2039
Aaron Durbin64031672018-04-21 14:45:32 -06002040int __weak acpigen_soc_set_tx_gpio(unsigned int gpio_num)
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07002041{
2042 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
2043 acpigen_write_debug_string("set_tx_gpio not available");
2044 return -1;
2045}
2046
Aaron Durbin64031672018-04-21 14:45:32 -06002047int __weak acpigen_soc_clear_tx_gpio(unsigned int gpio_num)
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07002048{
2049 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
2050 acpigen_write_debug_string("clear_tx_gpio not available");
2051 return -1;
2052}
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002053
2054/*
2055 * Helper functions for enabling/disabling Tx GPIOs based on the GPIO
2056 * polarity. These functions end up calling acpigen_soc_{set,clear}_tx_gpio to
2057 * make callbacks into SoC acpigen code.
2058 *
2059 * Returns 0 on success and -1 on error.
2060 */
Duncan Laurie30c3f912020-10-09 04:48:53 +00002061int acpigen_enable_tx_gpio(const struct acpi_gpio *gpio)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002062{
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002063 if (gpio->active_low)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002064 return acpigen_soc_clear_tx_gpio(gpio->pins[0]);
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002065 else
2066 return acpigen_soc_set_tx_gpio(gpio->pins[0]);
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002067}
2068
Duncan Laurie30c3f912020-10-09 04:48:53 +00002069int acpigen_disable_tx_gpio(const struct acpi_gpio *gpio)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002070{
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002071 if (gpio->active_low)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002072 return acpigen_soc_set_tx_gpio(gpio->pins[0]);
2073 else
2074 return acpigen_soc_clear_tx_gpio(gpio->pins[0]);
2075}
Jonathan Zhang71299c22020-01-27 11:38:57 -08002076
Duncan Laurie30c3f912020-10-09 04:48:53 +00002077void acpigen_get_rx_gpio(const struct acpi_gpio *gpio)
Rajat Jain310623b2020-02-26 11:02:53 -08002078{
2079 acpigen_soc_read_rx_gpio(gpio->pins[0]);
2080
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002081 if (gpio->active_low)
Rajat Jain310623b2020-02-26 11:02:53 -08002082 acpigen_write_xor(LOCAL0_OP, 1, LOCAL0_OP);
2083}
2084
Duncan Laurie30c3f912020-10-09 04:48:53 +00002085void acpigen_get_tx_gpio(const struct acpi_gpio *gpio)
Duncan Laurie2fe74712020-06-01 17:36:56 -07002086{
2087 acpigen_soc_get_tx_gpio(gpio->pins[0]);
2088
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002089 if (gpio->active_low)
Duncan Laurie2fe74712020-06-01 17:36:56 -07002090 acpigen_write_xor(LOCAL0_OP, 1, LOCAL0_OP);
2091}
2092
Jonathan Zhang71299c22020-01-27 11:38:57 -08002093/* refer to ACPI 6.4.3.5.3 Word Address Space Descriptor section for details */
2094void acpigen_resource_word(u16 res_type, u16 gen_flags, u16 type_flags, u16 gran,
2095 u16 range_min, u16 range_max, u16 translation, u16 length)
2096{
2097 acpigen_emit_byte(0x88);
2098 /* Byte 1+2: length (0x000d) */
2099 acpigen_emit_byte(0x0d);
2100 acpigen_emit_byte(0x00);
2101 /* resource type */
2102 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
2103 /* general flags */
2104 acpigen_emit_byte(gen_flags);
2105 /* type flags */
2106 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
2107 acpigen_emit_byte(type_flags);
2108 /* granularity, min, max, translation, length */
2109 acpigen_emit_word(gran);
2110 acpigen_emit_word(range_min);
2111 acpigen_emit_word(range_max);
2112 acpigen_emit_word(translation);
2113 acpigen_emit_word(length);
2114}
2115
2116/* refer to ACPI 6.4.3.5.2 DWord Address Space Descriptor section for details */
2117void acpigen_resource_dword(u16 res_type, u16 gen_flags, u16 type_flags,
2118 u32 gran, u32 range_min, u32 range_max, u32 translation, u32 length)
2119{
2120 acpigen_emit_byte(0x87);
2121 /* Byte 1+2: length (0023) */
2122 acpigen_emit_byte(23);
2123 acpigen_emit_byte(0x00);
2124 /* resource type */
2125 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
2126 /* general flags */
2127 acpigen_emit_byte(gen_flags);
2128 /* type flags */
2129 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
2130 acpigen_emit_byte(type_flags);
2131 /* granularity, min, max, translation, length */
2132 acpigen_emit_dword(gran);
2133 acpigen_emit_dword(range_min);
2134 acpigen_emit_dword(range_max);
2135 acpigen_emit_dword(translation);
2136 acpigen_emit_dword(length);
2137}
2138
2139static void acpigen_emit_qword(u64 data)
2140{
2141 acpigen_emit_dword(data & 0xffffffff);
2142 acpigen_emit_dword((data >> 32) & 0xffffffff);
2143}
2144
2145/* refer to ACPI 6.4.3.5.1 QWord Address Space Descriptor section for details */
2146void acpigen_resource_qword(u16 res_type, u16 gen_flags, u16 type_flags,
2147 u64 gran, u64 range_min, u64 range_max, u64 translation, u64 length)
2148{
2149 acpigen_emit_byte(0x8a);
2150 /* Byte 1+2: length (0x002b) */
2151 acpigen_emit_byte(0x2b);
2152 acpigen_emit_byte(0x00);
2153 /* resource type */
2154 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
2155 /* general flags */
2156 acpigen_emit_byte(gen_flags);
2157 /* type flags */
2158 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
2159 acpigen_emit_byte(type_flags);
2160 /* granularity, min, max, translation, length */
2161 acpigen_emit_qword(gran);
2162 acpigen_emit_qword(range_min);
2163 acpigen_emit_qword(range_max);
2164 acpigen_emit_qword(translation);
2165 acpigen_emit_qword(length);
2166}
Furquan Shaikh1a829232020-04-23 11:11:05 -07002167
2168void acpigen_write_ADR(uint64_t adr)
2169{
2170 acpigen_write_name_qword("_ADR", adr);
2171}
2172
Duncan Laurie08a942f2020-04-29 12:13:14 -07002173/**
2174 * acpigen_write_ADR_soundwire_device() - SoundWire ACPI Device Address Encoding.
2175 * @address: SoundWire device address properties.
2176 *
2177 * From SoundWire Discovery and Configuration Specification Version 1.0 Table 3.
2178 *
2179 * 63..52 - Reserved (0)
2180 * 51..48 - Zero-based SoundWire Link ID, relative to the immediate parent.
2181 * Used when a Controller has multiple master devices, each producing a
2182 * separate SoundWire Link. Set to 0 for single-link controllers.
2183 * 47..0 - SoundWire Device ID Encoding from specification version 1.2 table 88
2184 * 47..44 - SoundWire specification version that this device supports
2185 * 43..40 - Unique ID for multiple devices
2186 * 39..24 - MIPI standard manufacturer code
2187 * 23..08 - Vendor defined part ID
2188 * 07..00 - MIPI class encoding
2189 */
2190void acpigen_write_ADR_soundwire_device(const struct soundwire_address *address)
2191{
2192 acpigen_write_ADR((((uint64_t)address->link_id & 0xf) << 48) |
2193 (((uint64_t)address->version & 0xf) << 44) |
2194 (((uint64_t)address->unique_id & 0xf) << 40) |
2195 (((uint64_t)address->manufacturer_id & 0xffff) << 24) |
2196 (((uint64_t)address->part_id & 0xffff) << 8) |
2197 (((uint64_t)address->class & 0xff)));
2198}
Tim Wawrzynczakf6945022020-06-04 15:18:47 -06002199
2200void acpigen_notify(const char *namestr, int value)
2201{
2202 acpigen_emit_byte(NOTIFY_OP);
2203 acpigen_emit_namestring(namestr);
2204 acpigen_write_integer(value);
2205}
Aaron Durbin80bc0912020-08-19 23:17:42 -06002206
2207static void _create_field(uint8_t aml_op, uint8_t srcop, size_t byte_offset, const char *name)
2208{
2209 acpigen_emit_byte(aml_op);
2210 acpigen_emit_byte(srcop);
2211 acpigen_write_integer(byte_offset);
2212 acpigen_emit_namestring(name);
2213}
2214
2215void acpigen_write_create_byte_field(uint8_t op, size_t byte_offset, const char *name)
2216{
2217 _create_field(CREATE_BYTE_OP, op, byte_offset, name);
2218}
2219
2220void acpigen_write_create_word_field(uint8_t op, size_t byte_offset, const char *name)
2221{
2222 _create_field(CREATE_WORD_OP, op, byte_offset, name);
2223}
2224
2225void acpigen_write_create_dword_field(uint8_t op, size_t byte_offset, const char *name)
2226{
2227 _create_field(CREATE_DWORD_OP, op, byte_offset, name);
2228}
2229
2230void acpigen_write_create_qword_field(uint8_t op, size_t byte_offset, const char *name)
2231{
2232 _create_field(CREATE_QWORD_OP, op, byte_offset, name);
2233}
Jason Gleneskca36aed2020-09-15 21:01:57 -07002234
2235void acpigen_write_pct_package(const acpi_addr_t *perf_ctrl, const acpi_addr_t *perf_sts)
2236{
2237 acpigen_write_name("_PCT");
2238 acpigen_write_package(0x02);
2239 acpigen_write_register_resource(perf_ctrl);
2240 acpigen_write_register_resource(perf_sts);
2241
2242 acpigen_pop_len();
2243}
2244
2245void acpigen_write_xpss_package(const struct acpi_xpss_sw_pstate *pstate_value)
2246{
2247 acpigen_write_package(0x08);
2248 acpigen_write_dword(pstate_value->core_freq);
2249 acpigen_write_dword(pstate_value->power);
2250 acpigen_write_dword(pstate_value->transition_latency);
2251 acpigen_write_dword(pstate_value->bus_master_latency);
2252
2253 acpigen_write_byte_buffer((uint8_t *)&pstate_value->control_value, sizeof(uint64_t));
2254 acpigen_write_byte_buffer((uint8_t *)&pstate_value->status_value, sizeof(uint64_t));
2255 acpigen_write_byte_buffer((uint8_t *)&pstate_value->control_mask, sizeof(uint64_t));
2256 acpigen_write_byte_buffer((uint8_t *)&pstate_value->status_mask, sizeof(uint64_t));
2257
2258 acpigen_pop_len();
2259}
2260
2261void acpigen_write_xpss_object(const struct acpi_xpss_sw_pstate *pstate_values, size_t nentries)
2262{
2263 size_t pstate;
2264
2265 acpigen_write_name("XPSS");
2266 acpigen_write_package(nentries);
2267 for (pstate = 0; pstate < nentries; pstate++) {
2268 acpigen_write_xpss_package(pstate_values);
2269 pstate_values++;
2270 }
2271
2272 acpigen_pop_len();
2273}
Duncan Laurieec2e3e42020-11-03 15:19:08 -08002274
2275/* Delay up to wait_ms until provided namestr matches expected value. */
2276void acpigen_write_delay_until_namestr_int(uint32_t wait_ms, const char *name, uint64_t value)
2277{
2278 uint32_t wait_ms_segment = 1;
2279 uint32_t segments = wait_ms;
2280
2281 /* Sleep in 16ms segments if delay is more than 32ms. */
2282 if (wait_ms > 32) {
2283 wait_ms_segment = 16;
2284 segments = wait_ms / 16;
2285 }
2286
2287 acpigen_write_store_int_to_op(segments, LOCAL7_OP);
2288 acpigen_emit_byte(WHILE_OP);
2289 acpigen_write_len_f();
2290 acpigen_emit_byte(LGREATER_OP);
2291 acpigen_emit_byte(LOCAL7_OP);
2292 acpigen_emit_byte(ZERO_OP);
2293
2294 /* If name is not provided then just delay in a loop. */
2295 if (name) {
2296 acpigen_write_if_lequal_namestr_int(name, value);
2297 acpigen_emit_byte(BREAK_OP);
2298 acpigen_pop_len(); /* If */
2299 }
2300
2301 acpigen_write_sleep(wait_ms_segment);
2302 acpigen_emit_byte(DECREMENT_OP);
2303 acpigen_emit_byte(LOCAL7_OP);
2304 acpigen_pop_len(); /* While */
2305}