2019-05-29 22:18:14 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2012-03-28 22:43:10 +08:00
|
|
|
/*
|
|
|
|
* linux/drivers/mfd/lpc_ich.h
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Extreme Engineering Solution, Inc.
|
|
|
|
* Author: Aaron Sierra <asierra@xes-inc.com>
|
|
|
|
*/
|
|
|
|
#ifndef LPC_ICH_H
|
|
|
|
#define LPC_ICH_H
|
|
|
|
|
2021-03-04 22:08:20 +08:00
|
|
|
#include <linux/platform_data/x86/intel-spi.h>
|
2016-11-28 20:06:25 +08:00
|
|
|
|
2012-03-28 22:43:10 +08:00
|
|
|
/* GPIO resources */
|
|
|
|
#define ICH_RES_GPIO 0
|
|
|
|
#define ICH_RES_GPE0 1
|
|
|
|
|
|
|
|
/* GPIO compatibility */
|
2014-02-14 22:01:53 +08:00
|
|
|
enum {
|
|
|
|
ICH_I3100_GPIO,
|
|
|
|
ICH_V5_GPIO,
|
|
|
|
ICH_V6_GPIO,
|
|
|
|
ICH_V7_GPIO,
|
|
|
|
ICH_V9_GPIO,
|
|
|
|
ICH_V10CORP_GPIO,
|
|
|
|
ICH_V10CONS_GPIO,
|
2014-02-14 22:01:54 +08:00
|
|
|
AVOTON_GPIO,
|
2014-02-14 22:01:53 +08:00
|
|
|
};
|
2012-03-28 22:43:10 +08:00
|
|
|
|
|
|
|
struct lpc_ich_info {
|
|
|
|
char name[32];
|
2012-04-21 03:14:11 +08:00
|
|
|
unsigned int iTCO_version;
|
2012-03-28 22:43:10 +08:00
|
|
|
unsigned int gpio_version;
|
2016-11-28 20:06:25 +08:00
|
|
|
enum intel_spi_type spi_type;
|
2012-07-23 23:34:15 +08:00
|
|
|
u8 use_gpio;
|
2012-03-28 22:43:10 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|