2013-09-18 03:03:54 +00:00
|
|
|
/*
|
2014-04-01 22:18:52 +00:00
|
|
|
* arm
|
|
|
|
* armcpu.h
|
2013-09-18 03:03:54 +00:00
|
|
|
*
|
2014-04-01 22:18:52 +00:00
|
|
|
* Copyright (C) 2003, 2004 Sebastian Biallas (sb@biallas.net)
|
2013-09-18 03:03:54 +00:00
|
|
|
*
|
2014-04-01 22:18:52 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
2013-09-18 03:03:54 +00:00
|
|
|
*
|
2014-04-01 22:18:52 +00:00
|
|
|
* 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.
|
2013-09-18 03:03:54 +00:00
|
|
|
*
|
2014-04-01 22:18:52 +00:00
|
|
|
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
2013-09-18 03:03:54 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARM_CPU_H__
|
|
|
|
#define __ARM_CPU_H__
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2014-04-09 00:15:08 +00:00
|
|
|
#include "common/thread.h"
|
2013-09-18 03:03:54 +00:00
|
|
|
|
2014-09-12 22:34:51 +00:00
|
|
|
#include "core/arm/skyeye_common/armdefs.h"
|
2013-09-18 03:03:54 +00:00
|
|
|
|
|
|
|
typedef struct ARM_CPU_State_s {
|
2014-04-01 22:18:52 +00:00
|
|
|
ARMul_State * core;
|
|
|
|
uint32_t core_num;
|
|
|
|
/* The core id that boot from
|
|
|
|
*/
|
|
|
|
uint32_t boot_core_id;
|
2013-09-18 03:03:54 +00:00
|
|
|
}ARM_CPU_State;
|
|
|
|
|
|
|
|
//static ARM_CPU_State* get_current_cpu(){
|
2014-04-01 22:18:52 +00:00
|
|
|
// machine_config_t* mach = get_current_mach();
|
|
|
|
// /* Casting a conf_obj_t to ARM_CPU_State type */
|
|
|
|
// ARM_CPU_State* cpu = (ARM_CPU_State*)mach->cpu_data->obj;
|
2013-09-18 03:03:54 +00:00
|
|
|
//
|
2014-04-01 22:18:52 +00:00
|
|
|
// return cpu;
|
2013-09-18 03:03:54 +00:00
|
|
|
//}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get the core instance boot from
|
|
|
|
*
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
//static ARMul_State* get_boot_core(){
|
2014-04-01 22:18:52 +00:00
|
|
|
// ARM_CPU_State* cpu = get_current_cpu();
|
|
|
|
// return &cpu->core[cpu->boot_core_id];
|
2013-09-18 03:03:54 +00:00
|
|
|
//}
|
|
|
|
/**
|
|
|
|
* @brief Get the instance of running core
|
|
|
|
*
|
|
|
|
* @return the core instance
|
|
|
|
*/
|
|
|
|
//static ARMul_State* get_current_core(){
|
2014-04-01 22:18:52 +00:00
|
|
|
// /* Casting a conf_obj_t to ARM_CPU_State type */
|
|
|
|
// int id = Common::CurrentThreadId();
|
|
|
|
// /* If thread is not in running mode, we should give the boot core */
|
|
|
|
// if(get_thread_state(id) != Running_state){
|
|
|
|
// return get_boot_core();
|
|
|
|
// }
|
|
|
|
// /* Judge if we are running in paralell or sequenial */
|
|
|
|
// if(thread_exist(id)){
|
|
|
|
// conf_object_t* conf_obj = get_current_exec_priv(id);
|
|
|
|
// return (ARMul_State*)get_cast_conf_obj(conf_obj, "arm_core_t");
|
|
|
|
// }
|
2013-09-18 03:03:54 +00:00
|
|
|
//
|
2014-04-01 22:18:52 +00:00
|
|
|
// return NULL;
|
2013-09-18 03:03:54 +00:00
|
|
|
//}
|
|
|
|
|
|
|
|
#define CURRENT_CORE get_current_core()
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|