2016-11-23 16:07:49 +00:00
|
|
|
/*
|
|
|
|
* \brief Port of ACPICA library
|
|
|
|
* \author Alexander Boettcher
|
|
|
|
* \date 2016-11-14
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2016-2017 Genode Labs GmbH
|
2016-11-23 16:07:49 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2016-11-23 16:07:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__ACPICA__ACPICA_H_
|
|
|
|
#define _INCLUDE__ACPICA__ACPICA_H_
|
|
|
|
|
|
|
|
namespace Genode {
|
|
|
|
struct Env;
|
|
|
|
struct Allocator;
|
|
|
|
}
|
|
|
|
|
2017-11-10 14:21:18 +00:00
|
|
|
namespace Acpica {
|
|
|
|
|
|
|
|
struct Wait_acpi_ready { bool enabled; };
|
2018-04-29 14:16:57 +00:00
|
|
|
struct Act_as_acpi_drv { bool enabled; };
|
2017-11-10 14:21:18 +00:00
|
|
|
|
2018-04-29 14:16:57 +00:00
|
|
|
void init(Genode::Env &, Genode::Allocator &, Wait_acpi_ready,
|
|
|
|
Act_as_acpi_drv);
|
|
|
|
void use_platform_drv();
|
2017-11-10 14:21:18 +00:00
|
|
|
}
|
2016-11-23 16:07:49 +00:00
|
|
|
|
|
|
|
#endif /* _INCLUDE__ACPICA__ACPICA_H_ */
|