2018-08-30 18:52:54 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2014-06-03 07:26:02 +02:00
|
|
|
/*
|
2018-08-30 18:52:54 +02:00
|
|
|
* Intel SoC PMIC MFD Driver
|
2014-06-03 07:26:02 +02:00
|
|
|
*
|
|
|
|
* Copyright (C) 2013, 2014 Intel Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* Author: Yang, Bin <bin.yang@intel.com>
|
|
|
|
* Author: Zhu, Lejun <lejun.zhu@linux.intel.com>
|
|
|
|
*/
|
|
|
|
|
2018-08-30 18:52:53 +02:00
|
|
|
#include <linux/acpi.h>
|
|
|
|
#include <linux/gpio/consumer.h>
|
|
|
|
#include <linux/gpio/machine.h>
|
2014-06-03 07:26:02 +02:00
|
|
|
#include <linux/i2c.h>
|
|
|
|
#include <linux/interrupt.h>
|
2018-08-30 18:52:53 +02:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/mfd/core.h>
|
2014-06-03 07:26:02 +02:00
|
|
|
#include <linux/mfd/intel_soc_pmic.h>
|
2015-06-26 11:02:07 +02:00
|
|
|
#include <linux/pwm.h>
|
2018-08-30 18:52:53 +02:00
|
|
|
#include <linux/regmap.h>
|
|
|
|
|
2014-06-03 07:26:02 +02:00
|
|
|
#include "intel_soc_pmic_core.h"
|
|
|
|
|
2017-09-04 15:22:42 +02:00
|
|
|
/* Crystal Cove PMIC shares same ACPI ID between different platforms */
|
|
|
|
#define BYT_CRC_HRV 2
|
|
|
|
#define CHT_CRC_HRV 3
|
|
|
|
|
2015-06-26 11:02:05 +02:00
|
|
|
/* Lookup table for the Panel Enable/Disable line as GPIO signals */
|
|
|
|
static struct gpiod_lookup_table panel_gpio_table = {
|
|
|
|
/* Intel GFX is consumer */
|
|
|
|
.dev_id = "0000:00:02.0",
|
|
|
|
.table = {
|
|
|
|
/* Panel EN/DISABLE */
|
|
|
|
GPIO_LOOKUP("gpio_crystalcove", 94, "panel", GPIO_ACTIVE_HIGH),
|
2016-04-22 21:38:55 +02:00
|
|
|
{ },
|
2015-06-26 11:02:05 +02:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2015-06-26 11:02:07 +02:00
|
|
|
/* PWM consumed by the Intel GFX */
|
|
|
|
static struct pwm_lookup crc_pwm_lookup[] = {
|
|
|
|
PWM_LOOKUP("crystal_cove_pwm", 0, "0000:00:02.0", "pwm_backlight", 0, PWM_POLARITY_NORMAL),
|
|
|
|
};
|
|
|
|
|
2014-06-03 07:26:02 +02:00
|
|
|
static int intel_soc_pmic_i2c_probe(struct i2c_client *i2c,
|
|
|
|
const struct i2c_device_id *i2c_id)
|
|
|
|
{
|
|
|
|
struct device *dev = &i2c->dev;
|
|
|
|
struct intel_soc_pmic_config *config;
|
|
|
|
struct intel_soc_pmic *pmic;
|
2017-09-04 15:22:42 +02:00
|
|
|
unsigned long long hrv;
|
|
|
|
acpi_status status;
|
2014-06-03 07:26:02 +02:00
|
|
|
int ret;
|
|
|
|
|
2017-09-04 15:22:42 +02:00
|
|
|
/*
|
|
|
|
* There are 2 different Crystal Cove PMICs a Bay Trail and Cherry
|
|
|
|
* Trail version, use _HRV to differentiate between the 2.
|
|
|
|
*/
|
|
|
|
status = acpi_evaluate_integer(ACPI_HANDLE(dev), "_HRV", NULL, &hrv);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
dev_err(dev, "Failed to get PMIC hardware revision\n");
|
2014-06-03 07:26:02 +02:00
|
|
|
return -ENODEV;
|
2017-09-04 15:22:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (hrv) {
|
|
|
|
case BYT_CRC_HRV:
|
|
|
|
config = &intel_soc_pmic_config_byt_crc;
|
|
|
|
break;
|
|
|
|
case CHT_CRC_HRV:
|
|
|
|
config = &intel_soc_pmic_config_cht_crc;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
dev_warn(dev, "Unknown hardware rev %llu, assuming BYT\n", hrv);
|
|
|
|
config = &intel_soc_pmic_config_byt_crc;
|
|
|
|
}
|
2014-06-03 07:26:02 +02:00
|
|
|
|
|
|
|
pmic = devm_kzalloc(dev, sizeof(*pmic), GFP_KERNEL);
|
2015-02-11 11:10:50 +01:00
|
|
|
if (!pmic)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2014-06-03 07:26:02 +02:00
|
|
|
dev_set_drvdata(dev, pmic);
|
|
|
|
|
|
|
|
pmic->regmap = devm_regmap_init_i2c(i2c, config->regmap_config);
|
2017-04-23 14:29:24 +02:00
|
|
|
if (IS_ERR(pmic->regmap))
|
|
|
|
return PTR_ERR(pmic->regmap);
|
|
|
|
|
2017-02-21 12:09:14 +01:00
|
|
|
pmic->irq = i2c->irq;
|
2014-06-03 07:26:02 +02:00
|
|
|
|
|
|
|
ret = regmap_add_irq_chip(pmic->regmap, pmic->irq,
|
|
|
|
config->irq_flags | IRQF_ONESHOT,
|
|
|
|
0, config->irq_chip,
|
|
|
|
&pmic->irq_chip_data);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = enable_irq_wake(pmic->irq);
|
|
|
|
if (ret)
|
|
|
|
dev_warn(dev, "Can't enable IRQ as wake source: %d\n", ret);
|
|
|
|
|
2015-06-26 11:02:05 +02:00
|
|
|
/* Add lookup table binding for Panel Control to the GPIO Chip */
|
|
|
|
gpiod_add_lookup_table(&panel_gpio_table);
|
|
|
|
|
2015-06-26 11:02:07 +02:00
|
|
|
/* Add lookup table for crc-pwm */
|
|
|
|
pwm_add_table(crc_pwm_lookup, ARRAY_SIZE(crc_pwm_lookup));
|
|
|
|
|
2014-06-03 07:26:02 +02:00
|
|
|
ret = mfd_add_devices(dev, -1, config->cell_dev,
|
|
|
|
config->n_cell_devs, NULL, 0,
|
|
|
|
regmap_irq_get_domain(pmic->irq_chip_data));
|
|
|
|
if (ret)
|
|
|
|
goto err_del_irq_chip;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_del_irq_chip:
|
|
|
|
regmap_del_irq_chip(pmic->irq, pmic->irq_chip_data);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int intel_soc_pmic_i2c_remove(struct i2c_client *i2c)
|
|
|
|
{
|
|
|
|
struct intel_soc_pmic *pmic = dev_get_drvdata(&i2c->dev);
|
|
|
|
|
|
|
|
regmap_del_irq_chip(pmic->irq, pmic->irq_chip_data);
|
|
|
|
|
2015-06-26 11:02:05 +02:00
|
|
|
/* Remove lookup table for Panel Control from the GPIO Chip */
|
|
|
|
gpiod_remove_lookup_table(&panel_gpio_table);
|
|
|
|
|
2015-06-26 11:02:07 +02:00
|
|
|
/* remove crc-pwm lookup table */
|
|
|
|
pwm_remove_table(crc_pwm_lookup, ARRAY_SIZE(crc_pwm_lookup));
|
|
|
|
|
2014-06-03 07:26:02 +02:00
|
|
|
mfd_remove_devices(&i2c->dev);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void intel_soc_pmic_shutdown(struct i2c_client *i2c)
|
|
|
|
{
|
|
|
|
struct intel_soc_pmic *pmic = dev_get_drvdata(&i2c->dev);
|
|
|
|
|
|
|
|
disable_irq(pmic->irq);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-12 06:35:45 +02:00
|
|
|
#if defined(CONFIG_PM_SLEEP)
|
2014-06-03 07:26:02 +02:00
|
|
|
static int intel_soc_pmic_suspend(struct device *dev)
|
|
|
|
{
|
|
|
|
struct intel_soc_pmic *pmic = dev_get_drvdata(dev);
|
|
|
|
|
|
|
|
disable_irq(pmic->irq);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int intel_soc_pmic_resume(struct device *dev)
|
|
|
|
{
|
|
|
|
struct intel_soc_pmic *pmic = dev_get_drvdata(dev);
|
|
|
|
|
|
|
|
enable_irq(pmic->irq);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2014-09-12 06:35:45 +02:00
|
|
|
#endif
|
2014-06-03 07:26:02 +02:00
|
|
|
|
|
|
|
static SIMPLE_DEV_PM_OPS(intel_soc_pmic_pm_ops, intel_soc_pmic_suspend,
|
|
|
|
intel_soc_pmic_resume);
|
|
|
|
|
|
|
|
static const struct i2c_device_id intel_soc_pmic_i2c_id[] = {
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(i2c, intel_soc_pmic_i2c_id);
|
|
|
|
|
2014-07-02 12:30:12 +02:00
|
|
|
#if defined(CONFIG_ACPI)
|
2015-06-13 14:20:51 +02:00
|
|
|
static const struct acpi_device_id intel_soc_pmic_acpi_match[] = {
|
2017-09-04 15:22:42 +02:00
|
|
|
{ "INT33FD" },
|
2014-06-03 07:26:02 +02:00
|
|
|
{ },
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(acpi, intel_soc_pmic_acpi_match);
|
2014-07-02 12:30:12 +02:00
|
|
|
#endif
|
2014-06-03 07:26:02 +02:00
|
|
|
|
|
|
|
static struct i2c_driver intel_soc_pmic_i2c_driver = {
|
|
|
|
.driver = {
|
|
|
|
.name = "intel_soc_pmic_i2c",
|
|
|
|
.pm = &intel_soc_pmic_pm_ops,
|
|
|
|
.acpi_match_table = ACPI_PTR(intel_soc_pmic_acpi_match),
|
|
|
|
},
|
|
|
|
.probe = intel_soc_pmic_i2c_probe,
|
|
|
|
.remove = intel_soc_pmic_i2c_remove,
|
|
|
|
.id_table = intel_soc_pmic_i2c_id,
|
|
|
|
.shutdown = intel_soc_pmic_shutdown,
|
|
|
|
};
|
|
|
|
|
|
|
|
module_i2c_driver(intel_soc_pmic_i2c_driver);
|
|
|
|
|
|
|
|
MODULE_DESCRIPTION("I2C driver for Intel SoC PMIC");
|
|
|
|
MODULE_LICENSE("GPL v2");
|
|
|
|
MODULE_AUTHOR("Yang, Bin <bin.yang@intel.com>");
|
|
|
|
MODULE_AUTHOR("Zhu, Lejun <lejun.zhu@linux.intel.com>");
|