/* * \brief Kernel support for i.MX31 * \author Norman Feske * \author Martin Stein * \date 2012-08-30 */ /* * Copyright (C) 2012 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 _CORE__INCLUDE__IMX31__KERNEL_SUPPORT_H_ #define _CORE__INCLUDE__IMX31__KERNEL_SUPPORT_H_ /* Genode includes */ #include #include #include struct Cpu : Arm_v6::Cpu { }; namespace Kernel { /** * Programmable interrupt controller */ class Pic : public Imx31::Pic { }; /** * Timer */ class Timer : public Imx31::Timer { }; } #endif /* _CORE__INCLUDE__IMX31__KERNEL_SUPPORT_H_ */