mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-12 08:01:56 +00:00
Move the SoC outside of the architecture tree and put them at the same level as boards and architectures allowing both SoCs and boards to be maintained outside the tree. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
29 lines
372 B
C
29 lines
372 B
C
/*
|
|
* Copyright (c) 2017, NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _SOC__H_
|
|
#define _SOC__H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
#include "rdc.h"
|
|
#include "rdc_defs_imx7d.h"
|
|
#include "ccm_imx7d.h"
|
|
#include "clock_freq.h"
|
|
#include "soc_clk_freq.h"
|
|
|
|
#endif /* !_ASMLANGUAGE */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _SOC__H_ */
|