aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShobhit Kumar <shobhit.kumar@intel.com>2015-06-26 05:02:05 -0400
committerDaniel Vetter <daniel.vetter@ffwll.ch>2015-07-21 03:22:02 -0400
commit61dd2ca2d44e493b050adbbb75bc50db11c367dd (patch)
tree600774a47c0251bfc5b42a495e228e93948728eb
parentbe9015abb8296d8dc72cef4da75fa30e88ab7c81 (diff)
mfd: intel_soc_pmic_core: Add lookup table for Panel Control as GPIO signal
On some Intel SoC platforms, the panel enable/disable signals are controlled by CRC PMIC. Add those control as a new GPIO in a lookup table for gpio-crystalcove chip during CRC driver load CC: Samuel Ortiz <sameo@linux.intel.com> Cc: Linus Walleij <linus.walleij@linaro.org> Cc: Alexandre Courbot <gnurou@gmail.com> Cc: Thierry Reding <thierry.reding@gmail.com> Acked-by: Lee Jones <lee.jones@linaro.org> Acked-by: Linus Walleij <linus.walleij@linaro.org> Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Shobhit Kumar <shobhit.kumar@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r--drivers/mfd/intel_soc_pmic_core.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/mfd/intel_soc_pmic_core.c b/drivers/mfd/intel_soc_pmic_core.c
index 7b50b6b208a5..f3d918e9ca02 100644
--- a/drivers/mfd/intel_soc_pmic_core.c
+++ b/drivers/mfd/intel_soc_pmic_core.c
@@ -24,8 +24,19 @@
24#include <linux/acpi.h> 24#include <linux/acpi.h>
25#include <linux/regmap.h> 25#include <linux/regmap.h>
26#include <linux/mfd/intel_soc_pmic.h> 26#include <linux/mfd/intel_soc_pmic.h>
27#include <linux/gpio/machine.h>
27#include "intel_soc_pmic_core.h" 28#include "intel_soc_pmic_core.h"
28 29
30/* Lookup table for the Panel Enable/Disable line as GPIO signals */
31static struct gpiod_lookup_table panel_gpio_table = {
32 /* Intel GFX is consumer */
33 .dev_id = "0000:00:02.0",
34 .table = {
35 /* Panel EN/DISABLE */
36 GPIO_LOOKUP("gpio_crystalcove", 94, "panel", GPIO_ACTIVE_HIGH),
37 },
38};
39
29static int intel_soc_pmic_find_gpio_irq(struct device *dev) 40static int intel_soc_pmic_find_gpio_irq(struct device *dev)
30{ 41{
31 struct gpio_desc *desc; 42 struct gpio_desc *desc;
@@ -85,6 +96,9 @@ static int intel_soc_pmic_i2c_probe(struct i2c_client *i2c,
85 if (ret) 96 if (ret)
86 dev_warn(dev, "Can't enable IRQ as wake source: %d\n", ret); 97 dev_warn(dev, "Can't enable IRQ as wake source: %d\n", ret);
87 98
99 /* Add lookup table binding for Panel Control to the GPIO Chip */
100 gpiod_add_lookup_table(&panel_gpio_table);
101
88 ret = mfd_add_devices(dev, -1, config->cell_dev, 102 ret = mfd_add_devices(dev, -1, config->cell_dev,
89 config->n_cell_devs, NULL, 0, 103 config->n_cell_devs, NULL, 0,
90 regmap_irq_get_domain(pmic->irq_chip_data)); 104 regmap_irq_get_domain(pmic->irq_chip_data));
@@ -104,6 +118,9 @@ static int intel_soc_pmic_i2c_remove(struct i2c_client *i2c)
104 118
105 regmap_del_irq_chip(pmic->irq, pmic->irq_chip_data); 119 regmap_del_irq_chip(pmic->irq, pmic->irq_chip_data);
106 120
121 /* Remove lookup table for Panel Control from the GPIO Chip */
122 gpiod_remove_lookup_table(&panel_gpio_table);
123
107 mfd_remove_devices(&i2c->dev); 124 mfd_remove_devices(&i2c->dev);
108 125
109 return 0; 126 return 0;