2019-04-01 18:10:44 -04: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-26 16:37:05 -04:00
|
|
|
/* common SoC API */
|
2022-09-14 17:39:45 -04:00
|
|
|
#include "../common/soc_dt.h"
|
2019-04-10 01:45:16 -07:00
|
|
|
#include "../common/soc_gpio.h"
|
2022-11-16 12:07:42 -05:00
|
|
|
#include "../common/soc_pcr.h"
|
2019-04-10 01:45:16 -07:00
|
|
|
#include "../common/soc_pins.h"
|
2019-10-21 11:26:49 -07:00
|
|
|
#include "../common/soc_espi_channels.h"
|
2022-04-19 18:16:07 -04:00
|
|
|
#include "soc_espi_saf_v1.h"
|
2019-04-01 18:10:44 -04:00
|
|
|
|
2022-09-26 16:37:05 -04:00
|
|
|
/* common peripheral register defines */
|
|
|
|
#include "../common/reg/mec_gpio.h"
|
|
|
|
|
2019-04-01 18:10:44 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|