hw: support for ARM64 Raspberry Pi 3

Restriction: enables only cpu core 0 and the timer interrupt by now.

Fix #3405
This commit is contained in:
Stefan Kalkowski
2019-05-21 16:27:37 +02:00
committed by Christian Helmuth
parent 87015df66c
commit 90d07741aa
26 changed files with 1465 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
/*
* \brief Interface between kernel and userland
* \author Stefan Kalkowski
* \date 2019-05-09
*/
/*
* Copyright (C) 2019 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#ifndef _INCLUDE__SPEC__ARM_64__KERNEL__INTERFACE_SUPPORT_H_
#define _INCLUDE__SPEC__ARM_64__KERNEL__INTERFACE_SUPPORT_H_
/* Genode includes */
#include <base/stdint.h>
namespace Kernel
{
typedef Genode::uint64_t Call_arg;
typedef Genode::uint64_t Call_ret;
typedef Genode::uint64_t Call_ret_64;
}
#endif /* _INCLUDE__SPEC__ARM_64__KERNEL__INTERFACE_SUPPORT_H_ */