// SPDX-License-Identifier: BSD-2-Clause /* * Copyright (C) 2017, Fuzhou Rockchip Electronics Co., Ltd. * Copyright (C) 2019, Theobroma Systems Design und Consulting GmbH */ #include #include #include #include #include #include #include #include #include static struct gic_data gic_data; #if defined(CFG_EARLY_CONSOLE) static struct serial8250_uart_data early_console_data; register_phys_mem_pgdir(MEM_AREA_IO_NSEC, CFG_EARLY_CONSOLE_BASE, CFG_EARLY_CONSOLE_SIZE); #endif register_phys_mem_pgdir(MEM_AREA_IO_SEC, GIC_BASE, GIC_SIZE); void main_init_gic(void) { gic_init(&gic_data, GICC_BASE, GICD_BASE); itr_init(&gic_data.chip); } void main_secondary_init_gic(void) { gic_cpu_init(&gic_data); } void console_init(void) { #if defined(CFG_EARLY_CONSOLE) /* * Console devices can vary a lot between devices and * OP-TEE will switch to the DT-based real console later, * based on DT-devices and the systems chosen node. * So early console is only needed for early debugging. */ serial8250_uart_init(&early_console_data, CFG_EARLY_CONSOLE_BASE, CFG_EARLY_CONSOLE_CLK_IN_HZ, CFG_EARLY_CONSOLE_BAUDRATE); register_serial_console(&early_console_data.chip); #endif }