54 lines
1.5 KiB
C
54 lines
1.5 KiB
C
/*
|
|
* Copyright (C) 2017-2019 Alibaba Group Holding Limited
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2020-08-20 zx.chen CSI Core Layer Header File
|
|
*/
|
|
|
|
|
|
#ifndef _CORE_H_
|
|
#define _CORE_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#if defined(__CK801__) || defined(__E801__)
|
|
#include <core_801.h>
|
|
#elif defined(__CK802__) || defined(__E802__) || defined(__E802T__) || defined(__S802__) || defined(__S802T__)
|
|
#include <core_802.h>
|
|
#elif defined(__CK804__) || defined(__E804D__) || defined(__E804DT__) || defined(__E804F__) || defined(__E804FT__) || defined (__E804DF__) || defined(__E804DFT__)
|
|
#include <core_804.h>
|
|
#elif defined(__CK803__) || defined(__E803__) || defined(__E803T__) || defined(__S803__) || defined(__S803T__)
|
|
#include <core_803.h>
|
|
#elif defined(__CK805__) || defined(__I805__) || defined(__I805F__)
|
|
#include <core_805.h>
|
|
#elif defined(__CK610__)
|
|
#include <core_ck610.h>
|
|
#elif defined(__CK810__) || defined(__C810__) || defined(__C810T__) || defined(__C810V__) || defined(__C810VT__)
|
|
#include <core_810.h>
|
|
#elif defined(__CK807__) || defined(__C807__) || defined(__C807F__) || defined(__C807FV__) || defined(__R807__)
|
|
#include <core_807.h>
|
|
#elif defined(__riscv) && defined(CONFIG_CSKY_CORETIM)
|
|
#include <core_rv32_old.h>
|
|
#elif defined(__riscv)
|
|
#include <core_rv32.h>
|
|
#endif
|
|
|
|
#ifdef __riscv
|
|
#include <csi_rv32_gcc.h>
|
|
#else
|
|
#include <csi_gcc.h>
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _CORE_H_ */
|