/** * @file tms570-pom.c * * @ingroup tms570 * * @brief TMS570 Parameter Overlay Module functions definitions. */ /* * Copyright (c) 2014 Pavel Pisa * * Czech Technical University in Prague * Zikova 1903/4 * 166 36 Praha 6 * Czech Republic * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.org/license/LICENSE. */ #include #include #include #include /** * @brief remaps vector table * * transfer the rtems start vector table to address 0x0 * * @retval Void */ void tms570_pom_remap(void) { int i; uint32_t vec_overlay_start = 0x08000000; memcpy((void*)vec_overlay_start, bsp_start_vector_table_begin, 64); TMS570_POM.GLBCTRL = 0; for ( i = 0; i < TMS570_POM_REGIONS; ++i ) { TMS570_POM.REG[i].REGSIZE = TMS570_POM_REGSIZE_DISABLED; } TMS570_POM.REG[0].PROGSTART = 0x0 & TMS570_POM_REGADDRMASK; TMS570_POM.REG[0].OVLSTART = vec_overlay_start & TMS570_POM_REGADDRMASK; TMS570_POM.REG[0].REGSIZE = TMS570_POM_REGSIZE_64B; TMS570_POM.GLBCTRL = TMS570_POM_GLBCTRL_ENABLE | (vec_overlay_start & ~TMS570_POM_REGADDRMASK); }