aos/kernel/arch/armv8/plat_rpi3.c
Daniel Schwyn 6d444bf552 Main handout
Signed-off-by: Daniel Schwyn <daniel.schwyn@inf.ethz.ch>
2022-03-03 14:57:51 +01:00

163 lines
3.3 KiB
C

/**
* \file plat_arm_vm.c
* \brief
*/
/*
* 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, Universitaetsstrasse 6, CH-8092 Zurich. Attn: Systems Group.
*/
#include <kernel.h>
#include <offsets.h>
#include <arch/arm/platform.h>
#include <serial.h>
#include <arch/arm/rpi3_miniuart.h>
#include <sysreg.h>
#include <dev/armv8_dev.h>
#include <barrelfish_kpi/arm_core_data.h>
#include <psci.h>
#include <arch/armv8/global.h>
#include <irq.h>
#include <getopt/getopt.h>
/* RAM starts at 0, provided by the MMAP */
lpaddr_t phys_memory_start = 0;
/*
* ----------------------------------------------------------------------------
* UART
* ----------------------------------------------------------------------------
*/
/* the serial console port */
unsigned int serial_console_port = 0;
/* the debug console port */
unsigned int serial_debug_port = 0;
/* the number of physical ports */
unsigned serial_num_physical_ports = 1;
/* uart bases */
lpaddr_t platform_uart_base[1] = { 0x3f215040 };
// lpaddr_t platform_uart_base[1] = { 0x7e215040 };
/* uart sizes */
size_t platform_uart_size[1] = { 32 };
errval_t serial_init(unsigned port, bool initialize_hw)
{
lvaddr_t base = local_phys_to_mem(platform_uart_base[0]);
rpi3_miniuart_init(base, initialize_hw);
return SYS_ERR_OK;
};
/*
* Do any extra initialisation for this particular CPU (e.g. A9/A15).
*/
void platform_revision_init(void)
{
}
/*
* Figure out how much RAM we have
*/
size_t platform_get_ram_size(void)
{
return 0;
}
/*
* Boot secondary processors
*/
errval_t platform_boot_core(hwid_t target, genpaddr_t gen_entry, genpaddr_t context)
{
printf("Invoking PSCI on: cpu=0x%lx, entry=0x%lx, context=0x%lx\n", target, gen_entry, context);
struct armv8_core_data *cd = (struct armv8_core_data *)local_phys_to_mem(context);
cd->page_table_root = armv8_TTBR1_EL1_rd(NULL);
cd->cpu_driver_globals_pointer = (uintptr_t)global;
__asm volatile("dsb sy\n"
"dmb sy\n"
"isb \n");
return psci_cpu_on(target, gen_entry, context);
}
void platform_notify_bsp(lpaddr_t *mailbox)
{
}
/*
* Return the core count
*/
size_t platform_get_core_count(void)
{
return 0;
}
/*
* Print system identification. MMU is NOT yet enabled.
*/
void platform_print_id(void)
{
}
/*
* Fill out provided `struct platform_info`
*/
void platform_get_info(struct platform_info *pi)
{
pi->arch = PI_ARCH_ARMV8A;
pi->platform = PI_PLATFORM_RPI3;
}
void armv8_get_info(struct arch_info_armv8 *ai)
{
}
uint32_t platform_get_active_irq(void)
{
return 0;
}
void platform_acknowledge_irq(uint32_t irq)
{
}
errval_t platform_init_ic_bsp(void)
{
return SYS_ERR_OK;
}
errval_t platform_init_ic_app(void)
{
return SYS_ERR_OK;
}
errval_t platform_enable_interrupt(uint32_t int_id, uint16_t prio,
bool edge_triggered, bool one_to_n)
{
return SYS_ERR_OK;
}
uint32_t platform_get_timer_interrupt(void){
// TODO (LH): Untested
return 30;
}
// TODO get this right
void platform_get_dev_range(lpaddr_t* start, size_t* size){
*start = 0;
*size = 0;
}