/* * Copyright (c) 2016, Linaro Limited * Copyright (c) 2014, STMicroelectronics International N.V. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include static void main_fiq(void); static const struct thread_handlers handlers = { .std_smc = tee_entry_std, .fast_smc = tee_entry_fast, .nintr = main_fiq, #if defined(CFG_WITH_ARM_TRUSTED_FW) .cpu_on = cpu_on_handler, .cpu_off = pm_do_nothing, .cpu_suspend = pm_do_nothing, .cpu_resume = pm_do_nothing, .system_off = pm_do_nothing, .system_reset = pm_do_nothing, #else .cpu_on = pm_panic, .cpu_off = pm_panic, .cpu_suspend = pm_panic, .cpu_resume = pm_panic, .system_off = pm_panic, .system_reset = pm_panic, #endif }; static struct gic_data gic_data; static struct pl011_data console_data; #if defined(PLATFORM_FLAVOR_fvp) register_phys_mem(MEM_AREA_RAM_SEC, TZCDRAM_BASE, TZCDRAM_SIZE); #endif #if defined(PLATFORM_FLAVOR_qemu_virt) register_phys_mem(MEM_AREA_IO_SEC, SECRAM_BASE, SECRAM_COHERENT_SIZE); #endif register_phys_mem(MEM_AREA_IO_SEC, CONSOLE_UART_BASE, PL011_REG_SIZE); register_nsec_ddr(DRAM0_BASE, DRAM0_SIZE); #ifdef DRAM1_BASE register_nsec_ddr(DRAM1_BASE, DRAM1_SIZE); #endif const struct thread_handlers *generic_boot_get_handlers(void) { return &handlers; } #ifdef GIC_BASE register_phys_mem(MEM_AREA_IO_SEC, GICD_BASE, GIC_DIST_REG_SIZE); register_phys_mem(MEM_AREA_IO_SEC, GICC_BASE, GIC_DIST_REG_SIZE); void main_init_gic(void) { vaddr_t gicc_base; vaddr_t gicd_base; gicc_base = (vaddr_t)phys_to_virt(GIC_BASE + GICC_OFFSET, MEM_AREA_IO_SEC); gicd_base = (vaddr_t)phys_to_virt(GIC_BASE + GICD_OFFSET, MEM_AREA_IO_SEC); if (!gicc_base || !gicd_base) panic(); #if defined(CFG_WITH_ARM_TRUSTED_FW) /* On ARMv8, GIC configuration is initialized in ARM-TF */ gic_init_base_addr(&gic_data, gicc_base, gicd_base); #else /* Initialize GIC */ gic_init(&gic_data, gicc_base, gicd_base); #endif itr_init(&gic_data.chip); } #if !defined(CFG_WITH_ARM_TRUSTED_FW) void main_secondary_init_gic(void) { gic_cpu_init(&gic_data); } #endif #endif static void main_fiq(void) { gic_it_handle(&gic_data); } void console_init(void) { pl011_init(&console_data, CONSOLE_UART_BASE, CONSOLE_UART_CLK_IN_HZ, CONSOLE_BAUDRATE); register_serial_console(&console_data.chip); } #ifdef IT_CONSOLE_UART static enum itr_return console_itr_cb(struct itr_handler *h __unused) { struct serial_chip *cons = &console_data.chip; while (cons->ops->have_rx_data(cons)) { int ch __maybe_unused = cons->ops->getchar(cons); DMSG("cpu %zu: got 0x%x", get_core_pos(), ch); } return ITRR_HANDLED; } static struct itr_handler console_itr = { .it = IT_CONSOLE_UART, .flags = ITRF_TRIGGER_LEVEL, .handler = console_itr_cb, }; KEEP_PAGER(console_itr); static TEE_Result init_console_itr(void) { itr_add(&console_itr); itr_enable(IT_CONSOLE_UART); return TEE_SUCCESS; } driver_init(init_console_itr); #endif #ifdef CFG_TZC400 register_phys_mem(MEM_AREA_IO_SEC, TZC400_BASE, TZC400_REG_SIZE); static TEE_Result init_tzc400(void) { void *va; DMSG("Initializing TZC400"); va = phys_to_virt(TZC400_BASE, MEM_AREA_IO_SEC); if (!va) { EMSG("TZC400 not mapped"); panic(); } tzc_init((vaddr_t)va); tzc_dump_state(); return TEE_SUCCESS; } service_init(init_tzc400); #endif /*CFG_TZC400*/ #if defined(PLATFORM_FLAVOR_qemu_virt) int psci_cpu_on(uint32_t core_id, uint32_t entry, uint32_t context_id __unused) { size_t pos = get_core_pos_mpidr(core_id); uint32_t *sec_entry_addrs = phys_to_virt(SECRAM_BASE, MEM_AREA_IO_SEC); static bool core_is_released[CFG_TEE_CORE_NB_CORE]; if (!sec_entry_addrs) panic(); if (!pos || pos >= CFG_TEE_CORE_NB_CORE) return PSCI_RET_INVALID_PARAMETERS; DMSG("core pos: %zu: ns_entry %#" PRIx32, pos, entry); if (core_is_released[pos]) { EMSG("core %zu already released", pos); return PSCI_RET_DENIED; } core_is_released[pos] = true; /* set NS entry addresses of core */ ns_entry_addrs[pos] = entry; dsb_ishst(); sec_entry_addrs[pos] = CFG_TEE_LOAD_ADDR; dsb_ishst(); sev(); return PSCI_RET_SUCCESS; } #endif /*PLATFORM_FLAVOR_qemu_virt*/