24 lines
717 B
C
24 lines
717 B
C
/**
|
|
* \file
|
|
* \brief Startup prototypes for all ARM platforms.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2016, ETH Zurich.
|
|
* All rights reserved.
|
|
*
|
|
* This file is distributed under the terms in the attached LICENSE file.
|
|
* If you do not find this file, copies can be found by writing to:
|
|
* ETH Zurich D-INFK, Universitaetstrasse 6, CH-8092 Zurich. Attn: Systems Group.
|
|
*/
|
|
|
|
#ifndef _BARRELFISH_KPI_STARTUP_ARM_H_
|
|
#define _BARRELFISH_KPI_STARTUP_ARM_H_
|
|
|
|
#define INIT_BOOTINFO_VBASE ((lvaddr_t) 0x200000)
|
|
#define INIT_ARGS_VBASE (INIT_BOOTINFO_VBASE + BOOTINFO_SIZE)
|
|
#define INIT_DISPATCHER_VBASE (INIT_ARGS_VBASE + ARGS_SIZE)
|
|
#define MON_URPC_VBASE (INIT_DISPATCHER_VBASE + DISPATCHER_FRAME_SIZE)
|
|
|
|
#endif
|