2019-06-20 15:04:33 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019 Synopsys, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2019-08-05 14:50:16 +08:00
|
|
|
* @brief Board configuration macros for EM Software Development Platform board
|
2019-06-20 15:04:33 +08:00
|
|
|
*
|
|
|
|
* This header file is used to specify and describe board-level
|
|
|
|
* aspects for the target.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SOC_H_
|
|
|
|
#define _SOC_H_
|
|
|
|
|
2019-12-10 01:18:21 +08:00
|
|
|
#include <sys/util.h>
|
2019-06-20 15:04:33 +08:00
|
|
|
|
|
|
|
/* default system clock */
|
|
|
|
#define SYSCLK_DEFAULT_IOSC_HZ MHZ(100)
|
|
|
|
|
|
|
|
/* ARC EM Core IRQs */
|
|
|
|
#define IRQ_TIMER0 16
|
|
|
|
|
2020-06-03 16:31:05 +08:00
|
|
|
#define IRQ_SEC_TIMER0 20
|
|
|
|
|
2019-06-20 15:04:33 +08:00
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
|
2019-12-10 01:18:21 +08:00
|
|
|
#include <sys/util.h>
|
2019-06-20 15:04:33 +08:00
|
|
|
#include <random/rand32.h>
|
|
|
|
|
|
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
|
|
|
|
#endif /* _SOC_H_ */
|