/** * @file mc_startup_s1/mc_startup_s1.c * * @section desc File description * * @section copyright Copyright * * Trampoline Test Suite * * Trampoline Test Suite is copyright (c) IRCCyN 2005-2007 * Trampoline Test Suite is protected by the French intellectual property law. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; version 2 * of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * @section infos File informations * * $Date$ * $Rev$ * $Author$ * $URL$ */ /* ---------------------------------------------------------------------------- * Verification tags * ---------------------------------------------------------------------------- * {...} : Verified by tests numbers (...) * NoTimeout : Verified if the execution did not timeout * NoErr : If a failure has not been reached * Internal : Cannot be tested here. Need to look at the code directly * Trivial : No need to be tested * Goil : Tested by Goil's Checks section * TODO : Test not written */ /* -------------------------------------------------------------------------- * Requirement | Description | Verification * -------------------------------------------------------------------------- * SWS_OS_00574 | Master core can activate cores. | {1, 2} * SWS_OS_00575 | Slave core can activate cores. | TODO : Need 3 cores * SWS_OS_00576 | ? | ? * SWS_OS_00577 | Cores boot in master/slave mode | Internal * SWS_OS_00578 | A slave core cannot enter in main | Internal * | before being activated. | {1, 2} * SWS_OS_00579 | Cores synched in StartOS before the | Internal * | scheduling and after the global | * | StartupHook. | * SWS_OS_00580 | Cores synched before the global | Internal * | StartupHook. | * SWS_OS_00581 | Global StartupHook called on all | {3} * | cores after the first synch point | * SWS_OS_00582 | Application specific startupHook | Not Implemented * | called only in their cores | */ #include "tpl_os.h" TestRef t1_instance(void); TestRef t2_instance(void); TestRef c0_startup(void); TestRef c1_startup(void); uint32 coresInStartupHook[NUMBER_OF_CORES] = {0}; int main(void) { #if NUMBER_OF_CORES > 1 StatusType rv; switch(GetCoreID()) { case OS_CORE_ID_MASTER : TestRunner_start(); SyncAllCores_Init(); TestRunner_runTest(c0_startup()); StartCore(OS_CORE_ID_1, &rv); if(rv == E_OK) StartOS(OSDEFAULTAPPMODE); break; case OS_CORE_ID_1 : TestRunner_runTest(c1_startup()); StartOS(OSDEFAULTAPPMODE); break; default : /* Should not happen */ break; } #else # error "This is a multicore example. NUMBER_OF_CORES should be > 1" #endif return 0; } void StartupHook() { coresInStartupHook[GetCoreID()] = 1; } void ShutdownHook(StatusType error) { switch(GetCoreID()) { case OS_CORE_ID_MASTER : TestRunner_end(); break; default : while(1); /* Slave cores wait here */ break; } } TASK(t1) { TestRunner_runTest(t1_instance()); ShutdownOS(E_OK); } TASK(t2) { TestRunner_runTest(t2_instance()); ShutdownOS(E_OK); } /* End of file mc_startup_s1/mc_startup_s1.c */