2018-07-17 09:37:14 +08:00
|
|
|
/*
|
2019-01-30 11:34:41 +08:00
|
|
|
* Copyright (c) 2018-2019, Intel Corporation
|
2018-07-17 09:37:14 +08:00
|
|
|
* Copyright (c) 2010-2015, Wind River Systems, Inc.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Board configuration macros for the Apollo Lake SoC
|
|
|
|
*
|
|
|
|
* This header file is used to specify and describe soc-level aspects for
|
|
|
|
* the 'Apollo Lake' SoC.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SOC_H_
|
|
|
|
#define __SOC_H_
|
|
|
|
|
2019-06-26 22:33:55 +08:00
|
|
|
#include <sys/util.h>
|
2018-07-17 09:37:14 +08:00
|
|
|
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
#include <device.h>
|
|
|
|
#include <random/rand32.h>
|
|
|
|
#endif
|
|
|
|
|
2019-01-30 11:34:41 +08:00
|
|
|
#ifdef CONFIG_GPIO_INTEL_APL
|
2018-09-20 01:15:12 +08:00
|
|
|
#include "soc_gpio.h"
|
2019-01-30 11:34:41 +08:00
|
|
|
#endif
|
2018-09-20 01:15:12 +08:00
|
|
|
|
2018-07-17 09:37:14 +08:00
|
|
|
#endif /* __SOC_H_ */
|