2 * \file plat_arm_vm_consts.c
8 * Copyright (c) 2016 ETH Zurich.
11 * This file is distributed under the terms in the attached LICENSE file.
12 * If you do not find this file, copies can be found by writing to:
13 * ETH Zurich D-INFK, Universitaetsstrasse 6, CH-8092 Zurich. Attn: Systems Group.
17 #include <arch/arm/platform.h>
19 /* RAM starts at 0, provided by the MMAP */
20 lpaddr_t phys_memory_start= 0;
23 * ----------------------------------------------------------------------------
25 * ----------------------------------------------------------------------------
28 lpaddr_t platform_gic_distributor_base = 0x2f000000;
29 lpaddr_t platform_gic_redistributor_base = 0x2f100000;
32 * ----------------------------------------------------------------------------
34 * ----------------------------------------------------------------------------
37 /* the maximum number of UARTS supported */
38 #define MAX_NUM_UARTS 1
40 /* the serial console port */
41 unsigned int serial_console_port = 0;
43 /* the debug console port */
44 unsigned int serial_debug_port = 0;
46 /* the number of physical ports */
47 unsigned serial_num_physical_ports = 1;
50 lpaddr_t platform_uart_base[MAX_NUM_UARTS]= {
55 size_t platform_uart_size[MAX_NUM_UARTS]= {
59 uint32_t platform_get_timer_interrupt(void){