blob: 6f13a7ae1f212dbcfc8ddf38b5d91be08b94588a [file] [log] [blame]
Rudolf Marek293b5f52009-02-01 18:35:15 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2009 Rudolf Marek <r.marek@assembler.cz>
5 *
6 * This program is free software; you can redistribute it and/or modify
Uwe Hermannc70e9fc2010-02-15 23:10:19 +00007 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
Rudolf Marek293b5f52009-02-01 18:35:15 +00009 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
Uwe Hermannc70e9fc2010-02-15 23:10:19 +000019
Rudolf Marek293b5f52009-02-01 18:35:15 +000020#ifndef LIBACPI_H
21#define LIBACPI_H
Uwe Hermannc70e9fc2010-02-15 23:10:19 +000022
Rudolf Marek293b5f52009-02-01 18:35:15 +000023#include <assert.h>
24#include <stdlib.h>
25#include <stdint.h>
26
27void acpigen_patch_len(int len);
28void acpigen_set_current(char *curr);
29char *acpigen_get_current(void);
30int acpigen_write_package(int nr_el);
31int acpigen_write_byte(unsigned int data);
32int acpigen_emit_byte(unsigned char data);
Myles Watson3fe6b702009-10-09 20:13:43 +000033int acpigen_emit_stream(const char *data, int size);
34int acpigen_emit_namestring(const char *namepath);
Rudolf Marek293b5f52009-02-01 18:35:15 +000035int acpigen_write_dword(unsigned int data);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +000036int acpigen_write_qword(uint64_t data);
Myles Watson3fe6b702009-10-09 20:13:43 +000037int acpigen_write_name(const char *name);
38int acpigen_write_name_dword(const char *name, uint32_t val);
39int acpigen_write_name_qword(const char *name, uint64_t val);
40int acpigen_write_name_byte(const char *name, uint8_t val);
41int acpigen_write_scope(const char *name);
Rudolf Marekf997b552009-02-14 15:40:23 +000042int acpigen_write_PPC(u8 nr);
43int acpigen_write_empty_PCT(void);
44int acpigen_write_PSS_package(u32 coreFreq, u32 power, u32 transLat, u32 busmLat,
45 u32 control, u32 status);
Patrick Georgidf444bf2009-04-21 20:34:36 +000046typedef enum { SW_ALL=0xfc, SW_ANY=0xfd, HW_ALL=0xfe } PSD_coord;
47int acpigen_write_PSD_package(u32 domain, u32 numprocs, PSD_coord coordtype);
Rudolf Marekf997b552009-02-14 15:40:23 +000048int acpigen_write_processor(u8 cpuindex, u32 pblock_addr, u8 pblock_len);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +000049int acpigen_write_mem32fixed(int readwrite, u32 base, u32 size);
50int acpigen_write_io16(u16 min, u16 max, u8 align, u8 len, u8 decode16);
51int acpigen_write_resourcetemplate_header(void);
52int acpigen_write_resourcetemplate_footer(int len);
53int acpigen_write_mainboard_resource_template(void);
54int acpigen_write_mainboard_resources(const char *scope, const char *name);
Uwe Hermannc70e9fc2010-02-15 23:10:19 +000055
Rudolf Marek293b5f52009-02-01 18:35:15 +000056#endif