2019-04-02 06:10:44 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MEC_SOC_H
|
|
|
|
#define __MEC_SOC_H
|
|
|
|
|
|
|
|
#define SYSCLK_DEFAULT_IOSC_HZ MHZ(48)
|
|
|
|
|
|
|
|
#ifndef _ASMLANGUAGE
|
|
|
|
|
|
|
|
#include "MEC1501hsz.h"
|
|
|
|
#include "regaccess.h"
|
|
|
|
|
2022-09-27 04:37:05 +08:00
|
|
|
/* common SoC API */
|
2022-09-15 05:39:45 +08:00
|
|
|
#include "../common/soc_dt.h"
|
2019-04-10 16:45:16 +08:00
|
|
|
#include "../common/soc_gpio.h"
|
2022-11-17 01:07:42 +08:00
|
|
|
#include "../common/soc_pcr.h"
|
2019-04-10 16:45:16 +08:00
|
|
|
#include "../common/soc_pins.h"
|
2019-10-22 02:26:49 +08:00
|
|
|
#include "../common/soc_espi_channels.h"
|
2022-04-20 06:16:07 +08:00
|
|
|
#include "soc_espi_saf_v1.h"
|
2019-04-02 06:10:44 +08:00
|
|
|
|
2022-09-27 04:37:05 +08:00
|
|
|
/* common peripheral register defines */
|
|
|
|
#include "../common/reg/mec_gpio.h"
|
|
|
|
|
2019-04-02 06:10:44 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|