blob: 42d42044af0e3048e185f18b26ecc9d48794cb79 [file] [log] [blame]
Rudolf Marek293b5f52009-02-01 18:35:15 +00001/*
2 * This file is part of the coreboot project.
3 *
Timothy Pearson83abd812015-06-08 19:35:06 -05004 * Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
Rudolf Marek293b5f52009-02-01 18:35:15 +00005 * Copyright (C) 2009 Rudolf Marek <r.marek@assembler.cz>
6 *
7 * This program is free software; you can redistribute it and/or modify
Uwe Hermannc70e9fc2010-02-15 23:10:19 +00008 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
Rudolf Marek293b5f52009-02-01 18:35:15 +000010 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Rudolf Marek293b5f52009-02-01 18:35:15 +000015 */
16
Paul Menzel0f4c0e22013-02-22 12:33:08 +010017/* How much nesting do we support? */
Rudolf Marek293b5f52009-02-01 18:35:15 +000018#define ACPIGEN_LENSTACK_SIZE 10
19
Paul Menzel0f4c0e22013-02-22 12:33:08 +010020/*
Timothy Pearson83abd812015-06-08 19:35:06 -050021 * If you need to change this, change acpigen_write_len_f and
Vladimir Serbinenko8104da72014-11-09 03:33:51 +010022 * acpigen_pop_len
Paul Menzel0f4c0e22013-02-22 12:33:08 +010023 */
Rudolf Marek293b5f52009-02-01 18:35:15 +000024
Timothy Pearson83abd812015-06-08 19:35:06 -050025#define ACPIGEN_MAXLEN 0xfffff
Rudolf Marek293b5f52009-02-01 18:35:15 +000026
Duncan Laurie3829f232016-05-09 11:08:46 -070027#include <lib.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000028#include <string.h>
29#include <arch/acpigen.h>
30#include <console/console.h>
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +000031#include <device/device.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000032
33static char *gencurrent;
34
35char *len_stack[ACPIGEN_LENSTACK_SIZE];
36int ltop = 0;
37
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010038void acpigen_write_len_f(void)
Rudolf Marek293b5f52009-02-01 18:35:15 +000039{
40 ASSERT(ltop < (ACPIGEN_LENSTACK_SIZE - 1))
Paul Menzel0f4c0e22013-02-22 12:33:08 +010041 len_stack[ltop++] = gencurrent;
Rudolf Marek293b5f52009-02-01 18:35:15 +000042 acpigen_emit_byte(0);
43 acpigen_emit_byte(0);
Timothy Pearson83abd812015-06-08 19:35:06 -050044 acpigen_emit_byte(0);
Rudolf Marek293b5f52009-02-01 18:35:15 +000045}
46
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010047void acpigen_pop_len(void)
48{
49 int len;
50 ASSERT(ltop > 0)
51 char *p = len_stack[--ltop];
52 len = gencurrent - p;
53 ASSERT(len <= ACPIGEN_MAXLEN)
Timothy Pearson83abd812015-06-08 19:35:06 -050054 /* generate store length for 0xfffff max */
55 p[0] = (0x80 | (len & 0xf));
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010056 p[1] = (len >> 4 & 0xff);
Timothy Pearson83abd812015-06-08 19:35:06 -050057 p[2] = (len >> 12 & 0xff);
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010058
59}
60
Stefan Reinauerf96c2d92009-04-22 16:23:47 +000061void acpigen_set_current(char *curr)
62{
63 gencurrent = curr;
Rudolf Marek293b5f52009-02-01 18:35:15 +000064}
65
Stefan Reinauerf96c2d92009-04-22 16:23:47 +000066char *acpigen_get_current(void)
67{
68 return gencurrent;
Rudolf Marek293b5f52009-02-01 18:35:15 +000069}
70
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010071void acpigen_emit_byte(unsigned char b)
Rudolf Marek293b5f52009-02-01 18:35:15 +000072{
73 (*gencurrent++) = b;
Rudolf Marek293b5f52009-02-01 18:35:15 +000074}
75
Furquan Shaikhe4e9b942016-10-20 23:09:05 -070076void acpigen_emit_ext_op(uint8_t op)
77{
78 acpigen_emit_byte(EXT_OP_PREFIX);
79 acpigen_emit_byte(op);
80}
81
Duncan Laurie9ccae752016-05-09 07:43:19 -070082void acpigen_emit_word(unsigned int data)
83{
84 acpigen_emit_byte(data & 0xff);
85 acpigen_emit_byte((data >> 8) & 0xff);
86}
87
88void acpigen_emit_dword(unsigned int data)
89{
90 acpigen_emit_byte(data & 0xff);
91 acpigen_emit_byte((data >> 8) & 0xff);
92 acpigen_emit_byte((data >> 16) & 0xff);
93 acpigen_emit_byte((data >> 24) & 0xff);
94}
95
Duncan Laurie85d80272016-07-02 19:53:54 -070096char *acpigen_write_package(int nr_el)
Rudolf Marek293b5f52009-02-01 18:35:15 +000097{
Duncan Laurie85d80272016-07-02 19:53:54 -070098 char *p;
Furquan Shaikhe4e9b942016-10-20 23:09:05 -070099 acpigen_emit_byte(PACKAGE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100100 acpigen_write_len_f();
Duncan Laurie85d80272016-07-02 19:53:54 -0700101 p = acpigen_get_current();
Rudolf Marek293b5f52009-02-01 18:35:15 +0000102 acpigen_emit_byte(nr_el);
Duncan Laurie85d80272016-07-02 19:53:54 -0700103 return p;
Rudolf Marek293b5f52009-02-01 18:35:15 +0000104}
105
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100106void acpigen_write_byte(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000107{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700108 acpigen_emit_byte(BYTE_PREFIX);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000109 acpigen_emit_byte(data & 0xff);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000110}
111
Duncan Laurie9ccae752016-05-09 07:43:19 -0700112void acpigen_write_word(unsigned int data)
113{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700114 acpigen_emit_byte(WORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700115 acpigen_emit_word(data);
116}
117
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100118void acpigen_write_dword(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000119{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700120 acpigen_emit_byte(DWORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700121 acpigen_emit_dword(data);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000122}
123
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100124void acpigen_write_qword(uint64_t data)
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000125{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700126 acpigen_emit_byte(QWORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700127 acpigen_emit_dword(data & 0xffffffff);
128 acpigen_emit_dword((data >> 32) & 0xffffffff);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000129}
130
Duncan Laurief7c38762016-05-09 08:20:38 -0700131void acpigen_write_zero(void)
132{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700133 acpigen_emit_byte(ZERO_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700134}
135
136void acpigen_write_one(void)
137{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700138 acpigen_emit_byte(ONE_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700139}
140
141void acpigen_write_ones(void)
142{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700143 acpigen_emit_byte(ONES_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700144}
145
146void acpigen_write_integer(uint64_t data)
147{
148 if (data == 0)
149 acpigen_write_zero();
150 else if (data == 1)
151 acpigen_write_one();
152 else if (data <= 0xff)
153 acpigen_write_byte((unsigned char)data);
154 else if (data <= 0xffff)
155 acpigen_write_word((unsigned int)data);
156 else if (data <= 0xffffffff)
157 acpigen_write_dword((unsigned int)data);
158 else
159 acpigen_write_qword(data);
160}
161
162void acpigen_write_name_zero(const char *name)
163{
164 acpigen_write_name(name);
165 acpigen_write_one();
166}
167
168void acpigen_write_name_one(const char *name)
169{
170 acpigen_write_name(name);
171 acpigen_write_zero();
172}
173
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100174void acpigen_write_name_byte(const char *name, uint8_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000175{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100176 acpigen_write_name(name);
177 acpigen_write_byte(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000178}
179
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100180void acpigen_write_name_dword(const char *name, uint32_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000181{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100182 acpigen_write_name(name);
183 acpigen_write_dword(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000184}
185
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100186void acpigen_write_name_qword(const char *name, uint64_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000187{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100188 acpigen_write_name(name);
189 acpigen_write_qword(val);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000190}
191
Duncan Laurief7c38762016-05-09 08:20:38 -0700192void acpigen_write_name_integer(const char *name, uint64_t val)
193{
194 acpigen_write_name(name);
195 acpigen_write_integer(val);
196}
197
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700198void acpigen_write_name_string(const char *name, const char *string)
199{
200 acpigen_write_name(name);
201 acpigen_write_string(string);
202}
203
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100204void acpigen_emit_stream(const char *data, int size)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000205{
Rudolf Marek293b5f52009-02-01 18:35:15 +0000206 int i;
207 for (i = 0; i < size; i++) {
208 acpigen_emit_byte(data[i]);
209 }
Rudolf Marek293b5f52009-02-01 18:35:15 +0000210}
211
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700212void acpigen_emit_string(const char *string)
213{
Jonathan Neuschäfer0ba307f2016-05-17 17:40:09 +0200214 acpigen_emit_stream(string, string ? strlen(string) : 0);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700215 acpigen_emit_byte('\0'); /* NUL */
216}
217
218void acpigen_write_string(const char *string)
219{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700220 acpigen_emit_byte(STRING_PREFIX);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700221 acpigen_emit_string(string);
222}
223
Duncan Laurie37319032016-05-26 12:47:05 -0700224void acpigen_write_coreboot_hid(enum coreboot_acpi_ids id)
225{
226 char hid[9]; /* CORExxxx */
227
Duncan Laurie02fdb3e2016-09-22 14:08:33 -0700228 snprintf(hid, sizeof(hid), "%.4s%04X", COREBOOT_ACPI_ID, id);
Duncan Laurie37319032016-05-26 12:47:05 -0700229 acpigen_write_name_string("_HID", hid);
230}
231
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100232/*
233 * The naming conventions for ACPI namespace names are a bit tricky as
Martin Roth0cd338e2016-07-29 14:07:30 -0600234 * each element has to be 4 chars wide ("All names are a fixed 32 bits.")
235 * and "By convention, when an ASL compiler pads a name shorter than 4
236 * characters, it is done so with trailing underscores ('_')".
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100237 *
238 * Check sections 5.3, 18.2.2 and 18.4 of ACPI spec 3.0 for details.
239 */
Rudolf Marek3310d752009-06-21 20:26:13 +0000240
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100241static void acpigen_emit_simple_namestring(const char *name) {
242 int i;
Rudolf Marek3310d752009-06-21 20:26:13 +0000243 char ud[] = "____";
244 for (i = 0; i < 4; i++) {
245 if ((name[i] == '\0') || (name[i] == '.')) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100246 acpigen_emit_stream(ud, 4 - i);
Rudolf Marek3310d752009-06-21 20:26:13 +0000247 break;
248 } else {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100249 acpigen_emit_byte(name[i]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000250 }
251 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000252}
253
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100254static void acpigen_emit_double_namestring(const char *name, int dotpos) {
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700255 acpigen_emit_byte(DUAL_NAME_PREFIX);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100256 acpigen_emit_simple_namestring(name);
257 acpigen_emit_simple_namestring(&name[dotpos + 1]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000258}
259
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100260static void acpigen_emit_multi_namestring(const char *name) {
261 int count = 0;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000262 unsigned char *pathlen;
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700263 acpigen_emit_byte(MULTI_NAME_PREFIX);
264 acpigen_emit_byte(ZERO_OP);
Rudolf Marek3310d752009-06-21 20:26:13 +0000265 pathlen = ((unsigned char *) acpigen_get_current()) - 1;
266
267 while (name[0] != '\0') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100268 acpigen_emit_simple_namestring(name);
Rudolf Marek3310d752009-06-21 20:26:13 +0000269 /* find end or next entity */
270 while ((name[0] != '.') && (name[0] != '\0'))
271 name++;
272 /* forward to next */
273 if (name[0] == '.')
274 name++;
275 count++;
276 }
277
278 pathlen[0] = count;
Rudolf Marek3310d752009-06-21 20:26:13 +0000279}
280
281
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100282void acpigen_emit_namestring(const char *namepath) {
Rudolf Marek3310d752009-06-21 20:26:13 +0000283 int dotcount = 0, i;
Myles Watson3fe6b702009-10-09 20:13:43 +0000284 int dotpos = 0;
Rudolf Marek3310d752009-06-21 20:26:13 +0000285
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
314 if (dotcount == 0) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100315 acpigen_emit_simple_namestring(namepath);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000316 } else if (dotcount == 1) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100317 acpigen_emit_double_namestring(namepath, dotpos);
Rudolf Marek3310d752009-06-21 20:26:13 +0000318 } else {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100319 acpigen_emit_multi_namestring(namepath);
Rudolf Marek3310d752009-06-21 20:26:13 +0000320 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000321}
322
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100323void acpigen_write_name(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000324{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700325 acpigen_emit_byte(NAME_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100326 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000327}
328
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100329void acpigen_write_scope(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000330{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700331 acpigen_emit_byte(SCOPE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100332 acpigen_write_len_f();
333 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000334}
Rudolf Marekf997b552009-02-14 15:40:23 +0000335
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100336void acpigen_write_processor(u8 cpuindex, u32 pblock_addr, u8 pblock_len)
Rudolf Marekf997b552009-02-14 15:40:23 +0000337{
338/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200339 Processor (\_PR.CPUcpuindex, cpuindex, pblock_addr, pblock_len)
340 {
Rudolf Marekf997b552009-02-14 15:40:23 +0000341*/
342 char pscope[16];
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700343 acpigen_emit_ext_op(PROCESSOR_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100344 acpigen_write_len_f();
Rudolf Marekf997b552009-02-14 15:40:23 +0000345
Elyes HAOUAS7d87e762016-10-03 22:11:07 +0200346 snprintf(pscope, sizeof(pscope),
Timothy Pearson033bb4b2015-02-10 22:21:39 -0600347 "\\_PR.CP%02d", (unsigned int) cpuindex);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100348 acpigen_emit_namestring(pscope);
Rudolf Marekf997b552009-02-14 15:40:23 +0000349 acpigen_emit_byte(cpuindex);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700350 acpigen_emit_dword(pblock_addr);
Rudolf Marekf997b552009-02-14 15:40:23 +0000351 acpigen_emit_byte(pblock_len);
Rudolf Marekf997b552009-02-14 15:40:23 +0000352}
353
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100354void acpigen_write_empty_PCT(void)
Rudolf Marekf997b552009-02-14 15:40:23 +0000355{
356/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200357 Name (_PCT, Package (0x02)
358 {
359 ResourceTemplate ()
360 {
361 Register (FFixedHW,
362 0x00, // Bit Width
363 0x00, // Bit Offset
364 0x0000000000000000, // Address
365 ,)
366 },
Rudolf Marekf997b552009-02-14 15:40:23 +0000367
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200368 ResourceTemplate ()
369 {
370 Register (FFixedHW,
371 0x00, // Bit Width
372 0x00, // Bit Offset
373 0x0000000000000000, // Address
374 ,)
375 }
376 })
Rudolf Marekf997b552009-02-14 15:40:23 +0000377*/
378 static char stream[] = {
379 0x08, 0x5F, 0x50, 0x43, 0x54, 0x12, 0x2C, /* 00000030 "0._PCT.," */
380 0x02, 0x11, 0x14, 0x0A, 0x11, 0x82, 0x0C, 0x00, /* 00000038 "........" */
381 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 00000040 "........" */
382 0x00, 0x00, 0x00, 0x00, 0x79, 0x00, 0x11, 0x14, /* 00000048 "....y..." */
383 0x0A, 0x11, 0x82, 0x0C, 0x00, 0x7F, 0x00, 0x00, /* 00000050 "........" */
384 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 00000058 "........" */
385 0x00, 0x79, 0x00
386 };
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100387 acpigen_emit_stream(stream, ARRAY_SIZE(stream));
Rudolf Marekf997b552009-02-14 15:40:23 +0000388}
389
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100390void acpigen_write_empty_PTC(void)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200391{
392/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200393 Name (_PTC, Package (0x02)
394 {
395 ResourceTemplate ()
396 {
397 Register (FFixedHW,
398 0x00, // Bit Width
399 0x00, // Bit Offset
400 0x0000000000000000, // Address
401 ,)
402 },
Stefan Reinauer39205c62012-04-27 21:49:28 +0200403
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200404 ResourceTemplate ()
405 {
406 Register (FFixedHW,
407 0x00, // Bit Width
408 0x00, // Bit Offset
409 0x0000000000000000, // Address
410 ,)
411 }
412 })
Stefan Reinauer39205c62012-04-27 21:49:28 +0200413*/
Stefan Reinauer39205c62012-04-27 21:49:28 +0200414 acpi_addr_t addr = {
415 .space_id = ACPI_ADDRESS_SPACE_FIXED,
416 .bit_width = 0,
417 .bit_offset = 0,
zbaoee8a9f6c2012-05-29 14:59:38 +0800418 {
419 .resv = 0
420 },
Stefan Reinauer39205c62012-04-27 21:49:28 +0200421 .addrl = 0,
422 .addrh = 0,
423 };
424
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100425 acpigen_write_name("_PTC");
426 acpigen_write_package(2);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200427
428 /* ControlRegister */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100429 acpigen_write_resourcetemplate_header();
430 acpigen_write_register(&addr);
431 acpigen_write_resourcetemplate_footer();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200432
433 /* StatusRegister */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100434 acpigen_write_resourcetemplate_header();
435 acpigen_write_register(&addr);
436 acpigen_write_resourcetemplate_footer();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200437
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100438 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200439}
440
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700441static void __acpigen_write_method(const char *name, uint8_t flags)
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100442{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700443 acpigen_emit_byte(METHOD_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100444 acpigen_write_len_f();
445 acpigen_emit_namestring(name);
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700446 acpigen_emit_byte(flags);
447}
448
449/* Method (name, nargs, NotSerialized) */
450void acpigen_write_method(const char *name, int nargs)
451{
452 __acpigen_write_method(name, (nargs & 7));
453}
454
455/* Method (name, nargs, Serialized) */
456void acpigen_write_method_serialized(const char *name, int nargs)
457{
458 __acpigen_write_method(name, (nargs & 7) | (1 << 3));
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100459}
460
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100461void acpigen_write_device(const char *name)
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100462{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700463 acpigen_emit_ext_op(DEVICE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100464 acpigen_write_len_f();
465 acpigen_emit_namestring(name);
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100466}
467
Duncan Laurieabe2de82016-05-09 11:08:46 -0700468void acpigen_write_STA(uint8_t status)
469{
470 /*
471 * Method (_STA, 0, NotSerialized) { Return (status) }
472 */
473 acpigen_write_method("_STA", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700474 acpigen_emit_byte(RETURN_OP);
Duncan Laurieabe2de82016-05-09 11:08:46 -0700475 acpigen_write_byte(status);
476 acpigen_pop_len();
477}
478
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100479/*
480 * Generates a func with max supported P-states.
481 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100482void acpigen_write_PPC(u8 nr)
Rudolf Marekf997b552009-02-14 15:40:23 +0000483{
484/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200485 Method (_PPC, 0, NotSerialized)
486 {
487 Return (nr)
488 }
Rudolf Marekf997b552009-02-14 15:40:23 +0000489*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100490 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700491 acpigen_emit_byte(RETURN_OP);
Rudolf Marekf997b552009-02-14 15:40:23 +0000492 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100493 acpigen_write_byte(nr);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100494 acpigen_pop_len();
Rudolf Marekf997b552009-02-14 15:40:23 +0000495}
496
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100497/*
498 * Generates a func with max supported P-states saved
499 * in the variable PPCM.
500 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100501void acpigen_write_PPC_NVS(void)
Duncan Laurie0eefa002012-07-16 12:11:53 -0700502{
503/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200504 Method (_PPC, 0, NotSerialized)
505 {
506 Return (PPCM)
507 }
Duncan Laurie0eefa002012-07-16 12:11:53 -0700508*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100509 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700510 acpigen_emit_byte(RETURN_OP);
Duncan Laurie0eefa002012-07-16 12:11:53 -0700511 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100512 acpigen_emit_namestring("PPCM");
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100513 acpigen_pop_len();
Duncan Laurie0eefa002012-07-16 12:11:53 -0700514}
515
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100516void acpigen_write_TPC(const char *gnvs_tpc_limit)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200517{
518/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200519 // Sample _TPC method
520 Method (_TPC, 0, NotSerialized)
521 {
522 Return (\TLVL)
523 }
524*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100525 acpigen_write_method("_TPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700526 acpigen_emit_byte(RETURN_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100527 acpigen_emit_namestring(gnvs_tpc_limit);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100528 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200529}
530
Duncan Laurieabe2de82016-05-09 11:08:46 -0700531void acpigen_write_PRW(u32 wake, u32 level)
532{
533 /*
534 * Name (_PRW, Package () { wake, level }
535 */
536 acpigen_write_name("_PRW");
537 acpigen_write_package(2);
538 acpigen_write_integer(wake);
539 acpigen_write_integer(level);
540 acpigen_pop_len();
541}
542
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100543void acpigen_write_PSS_package(u32 coreFreq, u32 power, u32 transLat,
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000544 u32 busmLat, u32 control, u32 status)
Rudolf Marekf997b552009-02-14 15:40:23 +0000545{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100546 acpigen_write_package(6);
547 acpigen_write_dword(coreFreq);
548 acpigen_write_dword(power);
549 acpigen_write_dword(transLat);
550 acpigen_write_dword(busmLat);
551 acpigen_write_dword(control);
552 acpigen_write_dword(status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100553 acpigen_pop_len();
Stefan Reinauerd4bacf92012-05-02 16:38:47 -0700554
555 printk(BIOS_DEBUG, "PSS: %uMHz power %u control 0x%x status 0x%x\n",
556 coreFreq, power, control, status);
Rudolf Marekf997b552009-02-14 15:40:23 +0000557}
Patrick Georgidf444bf2009-04-21 20:34:36 +0000558
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100559void acpigen_write_PSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Patrick Georgidf444bf2009-04-21 20:34:36 +0000560{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100561 acpigen_write_name("_PSD");
562 acpigen_write_package(1);
563 acpigen_write_package(5);
564 acpigen_write_byte(5); // 5 values
565 acpigen_write_byte(0); // revision 0
566 acpigen_write_dword(domain);
567 acpigen_write_dword(coordtype);
568 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100569 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100570 acpigen_pop_len();
Patrick Georgidf444bf2009-04-21 20:34:36 +0000571}
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000572
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100573void acpigen_write_CST_package_entry(acpi_cstate_t *cstate)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200574{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100575 acpigen_write_package(4);
576 acpigen_write_resourcetemplate_header();
Stefan Reinauer4cc8c702012-04-27 21:34:16 +0200577 acpigen_write_register(&cstate->resource);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100578 acpigen_write_resourcetemplate_footer();
579 acpigen_write_dword(cstate->ctype);
580 acpigen_write_dword(cstate->latency);
581 acpigen_write_dword(cstate->power);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100582 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +0200583}
584
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100585void acpigen_write_CST_package(acpi_cstate_t *cstate, int nentries)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200586{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100587 int i;
588 acpigen_write_name("_CST");
589 acpigen_write_package(nentries+1);
590 acpigen_write_dword(nentries);
Sven Schnelle0b86c762011-10-21 21:46:47 +0200591
592 for (i = 0; i < nentries; i++)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100593 acpigen_write_CST_package_entry(cstate + i);
Sven Schnelle0b86c762011-10-21 21:46:47 +0200594
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100595 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +0200596}
597
Timothy Pearson83abd812015-06-08 19:35:06 -0500598void acpigen_write_CSD_package(u32 domain, u32 numprocs, CSD_coord coordtype, u32 index)
599{
600 acpigen_write_name("_CSD");
601 acpigen_write_package(1);
602 acpigen_write_package(6);
603 acpigen_write_byte(6); // 6 values
604 acpigen_write_byte(0); // revision 0
605 acpigen_write_dword(domain);
606 acpigen_write_dword(coordtype);
607 acpigen_write_dword(numprocs);
608 acpigen_write_dword(index);
609 acpigen_pop_len();
610 acpigen_pop_len();
611}
612
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100613void acpigen_write_TSS_package(int entries, acpi_tstate_t *tstate_list)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200614{
615/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200616 Sample _TSS package with 100% and 50% duty cycles
617 Name (_TSS, Package (0x02)
618 {
619 Package(){100, 1000, 0, 0x00, 0)
620 Package(){50, 520, 0, 0x18, 0)
621 })
622*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100623 int i;
Stefan Reinauer39205c62012-04-27 21:49:28 +0200624 acpi_tstate_t *tstate = tstate_list;
625
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100626 acpigen_write_name("_TSS");
627 acpigen_write_package(entries);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200628
629 for (i = 0; i < entries; i++) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100630 acpigen_write_package(5);
631 acpigen_write_dword(tstate->percent);
632 acpigen_write_dword(tstate->power);
633 acpigen_write_dword(tstate->latency);
634 acpigen_write_dword(tstate->control);
635 acpigen_write_dword(tstate->status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100636 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200637 tstate++;
Stefan Reinauer39205c62012-04-27 21:49:28 +0200638 }
639
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100640 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200641}
642
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100643void acpigen_write_TSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200644{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100645 acpigen_write_name("_TSD");
646 acpigen_write_package(1);
647 acpigen_write_package(5);
648 acpigen_write_byte(5); // 5 values
649 acpigen_write_byte(0); // revision 0
650 acpigen_write_dword(domain);
651 acpigen_write_dword(coordtype);
652 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100653 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100654 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200655}
656
657
658
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100659void acpigen_write_mem32fixed(int readwrite, u32 base, u32 size)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000660{
661 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +0200662 * ACPI 4.0 section 6.4.3.4: 32-Bit Fixed Memory Range Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000663 * Byte 0:
664 * Bit7 : 1 => big item
665 * Bit6-0: 0000110 (0x6) => 32-bit fixed memory
666 */
667 acpigen_emit_byte(0x86);
668 /* Byte 1+2: length (0x0009) */
669 acpigen_emit_byte(0x09);
670 acpigen_emit_byte(0x00);
671 /* bit1-7 are ignored */
672 acpigen_emit_byte(readwrite ? 0x01 : 0x00);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700673 acpigen_emit_dword(base);
674 acpigen_emit_dword(size);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000675}
676
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100677void acpigen_write_register(acpi_addr_t *addr)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200678{
Stefan Reinauer4cc8c702012-04-27 21:34:16 +0200679 acpigen_emit_byte(0x82); /* Register Descriptor */
680 acpigen_emit_byte(0x0c); /* Register Length 7:0 */
681 acpigen_emit_byte(0x00); /* Register Length 15:8 */
682 acpigen_emit_byte(addr->space_id); /* Address Space ID */
683 acpigen_emit_byte(addr->bit_width); /* Register Bit Width */
684 acpigen_emit_byte(addr->bit_offset); /* Register Bit Offset */
685 acpigen_emit_byte(addr->resv); /* Register Access Size */
Duncan Laurie9ccae752016-05-09 07:43:19 -0700686 acpigen_emit_dword(addr->addrl); /* Register Address Low */
687 acpigen_emit_dword(addr->addrh); /* Register Address High */
Sven Schnelle0b86c762011-10-21 21:46:47 +0200688}
689
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100690void acpigen_write_irq(u16 mask)
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +0100691{
692 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +0200693 * ACPI 3.0b section 6.4.2.1: IRQ Descriptor
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +0100694 * Byte 0:
695 * Bit7 : 0 => small item
696 * Bit6-3: 0100 (0x4) => IRQ port descriptor
697 * Bit2-0: 010 (0x2) => 2 Bytes long
698 */
699 acpigen_emit_byte(0x22);
700 acpigen_emit_byte(mask & 0xff);
701 acpigen_emit_byte((mask >> 8) & 0xff);
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +0100702}
703
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100704void acpigen_write_io16(u16 min, u16 max, u8 align, u8 len, u8 decode16)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000705{
706 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +0200707 * ACPI 4.0 section 6.4.2.6: I/O Port Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000708 * Byte 0:
709 * Bit7 : 0 => small item
710 * Bit6-3: 1000 (0x8) => I/O port descriptor
711 * Bit2-0: 111 (0x7) => 7 Bytes long
712 */
713 acpigen_emit_byte(0x47);
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100714 /* Does the device decode all 16 or just 10 bits? */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000715 /* bit1-7 are ignored */
716 acpigen_emit_byte(decode16 ? 0x01 : 0x00);
717 /* minimum base address the device may be configured for */
718 acpigen_emit_byte(min & 0xff);
719 acpigen_emit_byte((min >> 8) & 0xff);
720 /* maximum base address the device may be configured for */
721 acpigen_emit_byte(max & 0xff);
722 acpigen_emit_byte((max >> 8) & 0xff);
723 /* alignment for min base */
724 acpigen_emit_byte(align & 0xff);
725 acpigen_emit_byte(len & 0xff);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000726}
727
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100728void acpigen_write_resourcetemplate_header(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000729{
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000730 /*
731 * A ResourceTemplate() is a Buffer() with a
732 * (Byte|Word|DWord) containing the length, followed by one or more
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100733 * resource items, terminated by the end tag.
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000734 * (small item 0xf, len 1)
735 */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700736 acpigen_emit_byte(BUFFER_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100737 acpigen_write_len_f();
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700738 acpigen_emit_byte(WORD_PREFIX);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000739 len_stack[ltop++] = acpigen_get_current();
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100740 acpigen_emit_byte(0x00);
741 acpigen_emit_byte(0x00);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000742}
743
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100744void acpigen_write_resourcetemplate_footer(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000745{
746 char *p = len_stack[--ltop];
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +0100747 int len;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000748 /*
749 * end tag (acpi 4.0 Section 6.4.2.8)
750 * 0x79 <checksum>
751 * 0x00 is treated as a good checksum according to the spec
752 * and is what iasl generates.
753 */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +0100754 acpigen_emit_byte(0x79);
755 acpigen_emit_byte(0x00);
756
Martin Rothe3690102016-01-06 15:21:02 -0700757 len = gencurrent - p;
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +0100758
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000759 /* patch len word */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +0100760 p[0] = len & 0xff;
761 p[1] = (len >> 8) & 0xff;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000762 /* patch len field */
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100763 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000764}
765
766static void acpigen_add_mainboard_rsvd_mem32(void *gp, struct device *dev,
767 struct resource *res)
768{
769 acpigen_write_mem32fixed(0, res->base, res->size);
770}
771
772static void acpigen_add_mainboard_rsvd_io(void *gp, struct device *dev,
773 struct resource *res)
774{
775 resource_t base = res->base;
776 resource_t size = res->size;
777 while (size > 0) {
778 resource_t sz = size > 255 ? 255 : size;
779 acpigen_write_io16(base, base, 0, sz, 1);
780 size -= sz;
781 base += sz;
782 }
783}
784
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100785void acpigen_write_mainboard_resource_template(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000786{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100787 acpigen_write_resourcetemplate_header();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000788
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100789 /* Add reserved memory ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000790 search_global_resources(
791 IORESOURCE_MEM | IORESOURCE_RESERVE,
792 IORESOURCE_MEM | IORESOURCE_RESERVE,
793 acpigen_add_mainboard_rsvd_mem32, 0);
794
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100795 /* Add reserved io ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000796 search_global_resources(
797 IORESOURCE_IO | IORESOURCE_RESERVE,
798 IORESOURCE_IO | IORESOURCE_RESERVE,
799 acpigen_add_mainboard_rsvd_io, 0);
800
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100801 acpigen_write_resourcetemplate_footer();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000802}
803
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100804void acpigen_write_mainboard_resources(const char *scope, const char *name)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000805{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100806 acpigen_write_scope(scope);
807 acpigen_write_name(name);
808 acpigen_write_mainboard_resource_template();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100809 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000810}
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +0100811
812static int hex2bin(const char c)
813{
814 if (c >= 'A' && c <= 'F')
815 return c - 'A' + 10;
816 if (c >= 'a' && c <= 'f')
817 return c - 'a' + 10;
818 return c - '0';
819}
820
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100821void acpigen_emit_eisaid(const char *eisaid)
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +0100822{
823 u32 compact = 0;
824
825 /* Clamping individual values would be better but
826 there is a disagreement over what is a valid
827 EISA id, so accept anything and don't clamp,
828 parent code should create a valid EISAid.
829 */
830 compact |= (eisaid[0] - 'A' + 1) << 26;
831 compact |= (eisaid[1] - 'A' + 1) << 21;
832 compact |= (eisaid[2] - 'A' + 1) << 16;
833 compact |= hex2bin(eisaid[3]) << 12;
834 compact |= hex2bin(eisaid[4]) << 8;
835 compact |= hex2bin(eisaid[5]) << 4;
836 compact |= hex2bin(eisaid[6]);
837
838 acpigen_emit_byte(0xc);
839 acpigen_emit_byte((compact >> 24) & 0xff);
840 acpigen_emit_byte((compact >> 16) & 0xff);
841 acpigen_emit_byte((compact >> 8) & 0xff);
842 acpigen_emit_byte(compact & 0xff);
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +0100843}
Duncan Laurie3829f232016-05-09 11:08:46 -0700844
845/*
846 * ToUUID(uuid)
847 *
848 * ACPI 6.1 Section 19.6.136 table 19-385 defines a special output
849 * order for the bytes that make up a UUID Buffer object.
850 * UUID byte order for input:
851 * aabbccdd-eeff-gghh-iijj-kkllmmnnoopp
852 * UUID byte order for output:
853 * ddccbbaa-ffee-hhgg-iijj-kkllmmnnoopp
854 */
855#define UUID_LEN 16
856void acpigen_write_uuid(const char *uuid)
857{
858 uint8_t buf[UUID_LEN];
859 size_t i, order[UUID_LEN] = { 3, 2, 1, 0, 5, 4, 7, 6,
860 8, 9, 10, 11, 12, 13, 14, 15 };
861
862 /* Parse UUID string into bytes */
863 if (hexstrtobin(uuid, buf, UUID_LEN) < UUID_LEN)
864 return;
865
866 /* BufferOp */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700867 acpigen_emit_byte(BUFFER_OP);
Duncan Laurie3829f232016-05-09 11:08:46 -0700868 acpigen_write_len_f();
869
870 /* Buffer length in bytes */
871 acpigen_write_word(UUID_LEN);
872
873 /* Output UUID in expected order */
874 for (i = 0; i < UUID_LEN; i++)
875 acpigen_emit_byte(buf[order[i]]);
876
877 acpigen_pop_len();
878}
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700879
880/*
881 * Name (_PRx, Package(One) { name })
882 * ...
883 * PowerResource (name, level, order)
884 */
885void acpigen_write_power_res(const char *name, uint8_t level, uint16_t order,
886 const char *dev_states[], size_t dev_states_count)
887{
888 int i;
889 for (i = 0; i < dev_states_count; i++) {
890 acpigen_write_name(dev_states[i]);
891 acpigen_write_package(1);
892 acpigen_emit_simple_namestring(name);
893 acpigen_pop_len(); /* Package */
894 }
895
896 acpigen_emit_ext_op(POWER_RES_OP);
897
898 acpigen_write_len_f();
899
900 acpigen_emit_simple_namestring(name);
901 acpigen_emit_byte(level);
902 acpigen_emit_word(order);
903}
904
905/* Sleep (ms) */
906void acpigen_write_sleep(uint64_t sleep_ms)
907{
908 acpigen_emit_ext_op(SLEEP_OP);
909 acpigen_write_integer(sleep_ms);
910}
911
912void acpigen_write_store(void)
913{
914 acpigen_emit_byte(STORE_OP);
915}
916
917/* Store (src, dst) */
918void acpigen_write_store_ops(uint8_t src, uint8_t dst)
919{
920 acpigen_write_store();
921 acpigen_emit_byte(src);
922 acpigen_emit_byte(dst);
923}
924
925/* Or (arg1, arg2, res) */
926void acpigen_write_or(uint8_t arg1, uint8_t arg2, uint8_t res)
927{
928 acpigen_emit_byte(OR_OP);
929 acpigen_emit_byte(arg1);
930 acpigen_emit_byte(arg2);
931 acpigen_emit_byte(res);
932}
933
934/* And (arg1, arg2, res) */
935void acpigen_write_and(uint8_t arg1, uint8_t arg2, uint8_t res)
936{
937 acpigen_emit_byte(AND_OP);
938 acpigen_emit_byte(arg1);
939 acpigen_emit_byte(arg2);
940 acpigen_emit_byte(res);
941}
942
943/* Not (arg, res) */
944void acpigen_write_not(uint8_t arg, uint8_t res)
945{
946 acpigen_emit_byte(NOT_OP);
947 acpigen_emit_byte(arg);
948 acpigen_emit_byte(res);
949}
950
951/* Store (str, DEBUG) */
952void acpigen_write_debug_string(const char *str)
953{
954 acpigen_write_store();
955 acpigen_write_string(str);
956 acpigen_emit_ext_op(DEBUG_OP);
957}
958
959/* Store (val, DEBUG) */
960void acpigen_write_debug_integer(uint64_t val)
961{
962 acpigen_write_store();
963 acpigen_write_integer(val);
964 acpigen_emit_ext_op(DEBUG_OP);
965}
966
967/* Store (op, DEBUG) */
968void acpigen_write_debug_op(uint8_t op)
969{
970 acpigen_write_store();
971 acpigen_emit_byte(op);
972 acpigen_emit_ext_op(DEBUG_OP);
973}
974
975void acpigen_write_if(void)
976{
977 acpigen_emit_byte(IF_OP);
978 acpigen_write_len_f();
979}
980
981/* If (And (arg1, arg2)) */
982void acpigen_write_if_and(uint8_t arg1, uint8_t arg2)
983{
984 acpigen_write_if();
985 acpigen_emit_byte(AND_OP);
986 acpigen_emit_byte(arg1);
987 acpigen_emit_byte(arg2);
988}
989
Furquan Shaikh9b39adb2016-10-21 16:21:07 -0700990void acpigen_write_if_lequal(uint8_t arg1, uint8_t arg2)
991{
992 acpigen_write_if();
993 acpigen_emit_byte(LEQUAL_OP);
994 acpigen_emit_byte(arg1);
995 acpigen_emit_byte(arg2);
996}
997
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700998void acpigen_write_else(void)
999{
1000 acpigen_emit_byte(ELSE_OP);
1001 acpigen_write_len_f();
1002}
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001003
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001004void acpigen_write_to_buffer(uint8_t src, uint8_t dst)
1005{
1006 acpigen_emit_byte(TO_BUFFER_OP);
1007 acpigen_emit_byte(src);
1008 acpigen_emit_byte(dst);
1009}
1010
1011void acpigen_write_to_integer(uint8_t src, uint8_t dst)
1012{
1013 acpigen_emit_byte(TO_INTEGER_OP);
1014 acpigen_emit_byte(src);
1015 acpigen_emit_byte(dst);
1016}
1017
1018void acpigen_write_byte_buffer(uint8_t *arr, uint8_t size)
1019{
1020 uint8_t i;
1021
1022 acpigen_emit_byte(BUFFER_OP);
1023 acpigen_write_len_f();
1024 acpigen_emit_byte(size);
1025
1026 for (i = 0; i < size; i++)
1027 acpigen_emit_byte(arr[i]);
1028
1029 acpigen_pop_len();
1030}
1031
1032void acpigen_write_return_byte_buffer(uint8_t *arr, uint8_t size)
1033{
1034 acpigen_emit_byte(RETURN_OP);
1035 acpigen_write_byte_buffer(arr, size);
1036}
1037
1038void acpigen_write_return_singleton_buffer(uint8_t arg)
1039{
1040 acpigen_write_return_byte_buffer(&arg, 1);
1041}
1042
1043void acpigen_write_return_byte(uint8_t arg)
1044{
1045 acpigen_emit_byte(RETURN_OP);
1046 acpigen_write_byte(arg);
1047}
1048
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001049/*
1050 * Generate ACPI AML code for _DSM method.
1051 * This function takes as input uuid for the device, set of callbacks and
1052 * argument to pass into the callbacks. Callbacks should ensure that Local0 and
1053 * Local1 are left untouched. Use of Local2-Local7 is permitted in callbacks.
1054 *
1055 * Arguments passed into _DSM method:
1056 * Arg0 = UUID
1057 * Arg1 = Revision
1058 * Arg2 = Function index
1059 * Arg3 = Function specific arguments
1060 *
1061 * AML code generated would look like:
1062 * Method (_DSM, 4, Serialized) {
1063 * ToBuffer (Arg0, Local0)
1064 * If (LEqual (Local0, ToUUID(uuid))) {
1065 * ToInteger (Arg2, Local1)
1066 * If (LEqual (Local1, 0)) {
1067 * <acpigen by callback[0]>
1068 * } Else {
1069 * ...
1070 * If (LEqual (Local1, n)) {
1071 * <acpigen by callback[n]>
1072 * } Else {
1073 * Return (Buffer (One) { 0x0 })
1074 * }
1075 * }
1076 * } Else {
1077 * Return (Buffer (One) { 0x0 })
1078 * }
1079 * }
1080 */
1081void acpigen_write_dsm(const char *uuid, void (*callbacks[])(void *),
1082 size_t count, void *arg)
1083{
1084 size_t i;
1085
1086 /* Method (_DSM, 4, Serialized) */
1087 acpigen_write_method_serialized("_DSM", 0x4);
1088
1089 /* ToBuffer (Arg0, Local0) */
1090 acpigen_write_to_buffer(ARG0_OP, LOCAL0_OP);
1091
1092 /* If (LEqual (Local0, ToUUID(uuid))) */
1093 acpigen_write_if();
1094 acpigen_emit_byte(LEQUAL_OP);
1095 acpigen_emit_byte(LOCAL0_OP);
1096 acpigen_write_uuid(uuid);
1097
1098 /* ToInteger (Arg2, Local1) */
1099 acpigen_write_to_integer(ARG2_OP, LOCAL1_OP);
1100 acpigen_write_debug_op(LOCAL1_OP);
1101
1102 for (i = 0; i < count; i++) {
1103 /* If (Lequal (Local1, i)) */
1104 acpigen_write_if_lequal(LOCAL1_OP, i);
1105
1106 /* Callback to write if handler. */
1107 if (callbacks[i])
1108 callbacks[i](arg);
1109
1110 acpigen_pop_len(); /* If */
1111
1112 /* Else */
1113 acpigen_write_else();
1114 }
1115
1116 /* Default case: Return (Buffer (One) { 0x0 }) */
1117 acpigen_write_return_singleton_buffer(0x0);
1118
1119 /* Pop lengths for all the else clauses. */
1120 for (i = 0; i < count; i++)
1121 acpigen_pop_len();
1122
1123 acpigen_pop_len(); /* If (LEqual (Local0, ToUUID(uuid))) */
1124
1125 /* Else */
1126 acpigen_write_else();
1127
1128 /* Return (Buffer (One) { 0x0 }) */
1129 acpigen_write_return_singleton_buffer(0x0);
1130
1131 acpigen_pop_len(); /* Else */
1132 acpigen_pop_len(); /* Method _DSM */
1133}
1134
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001135/* Soc-implemented functions -- weak definitions. */
1136int __attribute__((weak)) acpigen_soc_read_rx_gpio(unsigned int gpio_num)
1137{
1138 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
1139 acpigen_write_debug_string("read_rx_gpio not available");
1140 return -1;
1141}
1142
1143int __attribute__((weak)) acpigen_soc_get_tx_gpio(unsigned int gpio_num)
1144{
1145 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
1146 acpigen_write_debug_string("get_tx_gpio not available");
1147 return -1;
1148}
1149
1150int __attribute__((weak)) acpigen_soc_set_tx_gpio(unsigned int gpio_num)
1151{
1152 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
1153 acpigen_write_debug_string("set_tx_gpio not available");
1154 return -1;
1155}
1156
1157int __attribute__((weak)) acpigen_soc_clear_tx_gpio(unsigned int gpio_num)
1158{
1159 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
1160 acpigen_write_debug_string("clear_tx_gpio not available");
1161 return -1;
1162}