/* * \brief Interface to ACPI * \author Sebastian Sumpf * \date 2012-02-25 */ /* * Copyright (C) 2009-2013 Genode Labs GmbH * * This file is part of the Genode OS framework, which is distributed * under the terms of the GNU General Public License version 2. */ #ifndef _ACPI_H_ #define _ACPI_H_ #include #include struct Acpi { /** * Constructor */ Acpi(); /** * Generate config file for pci_drv containing pointers to the * extended PCI config space (since PCI Express) */ static void create_pci_config_file(char * config_space, Genode::size_t config_space_max); /** * Rewrite PCI-config space with GSIs found in ACPI tables. */ static void configure_pci_devices(Pci::Session_capability &session); /** * Return override GSI for IRQ */ static unsigned override(unsigned irq, unsigned *mode); }; #endif /* _ACPI_H_ */