Commit e420d6a1 authored by Dan Gora's avatar Dan Gora Committed by Lee Jones

mfd: lpc_ich: Use gpio-ich driver for 8-series and 9-series Intel PCH devices

The Intel 8-series and 9-series PCH devices, described by the descriptors
LPC_LPT and LPC_9S although codenamed 'lynxpoint' do not use the same GPIO
register layout which is used by the gpio-lynxpoint driver.  They use the
same ICH_V5_GPIO layout as the gpio-ich driver.

See:
http://www.intel.com/content/www/us/en/chipsets/8-series-chipset-pch-datasheet.html
http://www.intel.com/content/www/us/en/chipsets/9-series-chipset-pch-datasheet.html

The devices described by "Mobile 4th Generation Intel Core Processor
Family I/O" manual use the gpio-lynxpoint driver and are described by the
LPC_LPT_LP descriptor.

See:
http://www.intel.com/content/www/us/en/processors/core/4th-gen-core-family-mobile-i-o-datasheet.htmlSigned-off-by: default avatarDan Gora <dg@adax.com>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 3f89586b
...@@ -493,6 +493,7 @@ static struct lpc_ich_info lpc_chipset_info[] = { ...@@ -493,6 +493,7 @@ static struct lpc_ich_info lpc_chipset_info[] = {
[LPC_LPT] = { [LPC_LPT] = {
.name = "Lynx Point", .name = "Lynx Point",
.iTCO_version = 2, .iTCO_version = 2,
.gpio_version = ICH_V5_GPIO,
}, },
[LPC_LPT_LP] = { [LPC_LPT_LP] = {
.name = "Lynx Point_LP", .name = "Lynx Point_LP",
...@@ -530,6 +531,7 @@ static struct lpc_ich_info lpc_chipset_info[] = { ...@@ -530,6 +531,7 @@ static struct lpc_ich_info lpc_chipset_info[] = {
[LPC_9S] = { [LPC_9S] = {
.name = "9 Series", .name = "9 Series",
.iTCO_version = 2, .iTCO_version = 2,
.gpio_version = ICH_V5_GPIO,
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment