2017-07-14 20:09:10 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007-2008 coresystems GmbH
|
|
|
|
* Copyright (C) 2014 Google Inc.
|
|
|
|
* Copyright (C) 2017 Intel Corporation.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SOC_CHIP_H_
|
|
|
|
#define _SOC_CHIP_H_
|
|
|
|
|
2017-08-16 20:40:03 +02:00
|
|
|
#include <intelblocks/gspi.h>
|
2017-07-14 20:09:10 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
struct soc_intel_cannonlake_config {
|
2017-08-16 20:40:03 +02:00
|
|
|
/* GSPI */
|
|
|
|
struct gspi_cfg gspi[CONFIG_SOC_INTEL_COMMON_BLOCK_GSPI_MAX];
|
2017-07-14 20:09:10 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct soc_intel_cannonlake_config config_t;
|
|
|
|
|
|
|
|
#endif
|