// 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 #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 boot_primary_init_intc(void) { gic_init(GICC_BASE, GICD_BASE); } void boot_secondary_init_intc(void) { gic_init_per_cpu(); } void plat_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 }