30 lines
731 B
C
30 lines
731 B
C
/**
|
|
* \file
|
|
* \brief Definitions for the startup of application processors.
|
|
*
|
|
* This file contains the prototypes for the functions which start
|
|
* the application processors
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2007, 2008, 2010, ETH Zurich.
|
|
* All rights reserved.
|
|
*
|
|
* This file is distributed under the terms in the attached LICENSE file.
|
|
* If you do not find this file, copies can be found by writing to:
|
|
* ETH Zurich D-INFK, Universitaetstrasse 6, CH-8092 Zurich. Attn: Systems Group.
|
|
*/
|
|
|
|
#ifndef START_APS_H_
|
|
#define START_APS_H_
|
|
|
|
#define AP_STARTING_UP 1
|
|
#define AP_STARTED 2
|
|
|
|
#define AP_WAIT_PHYS 0x20000
|
|
#define AP_GLOBAL_PHYS 0x21000
|
|
|
|
int start_aps_arm_start(coreid_t core_id, genvaddr_t entry);
|
|
|
|
#endif // START_APS_H_
|