-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'mfd-next-5.8' of git://git.kernel.org/pub/scm/linux/kernel…
…/git/lee/mfd Pull MFD updates from Lee Jones: "Core Frameworks: - Constify 'properties' attribute in core header file New Drivers: - Add support for Gateworks System Controller - Add support for MediaTek MT6358 PMIC - Add support for Mediatek MT6360 PMIC - Add support for Monolithic Power Systems MP2629 ADC and Battery charger Fix-ups: - Use new I2C API in htc-i2cpld - Remove superfluous code in sprd-sc27xx-spi - Improve error handling in stm32-timers - Device Tree additions/fixes in mt6397 - Defer probe betterment in wm8994-core - Improve module handling in wm8994-core - Staticify in stpmic1 - Trivial (spelling, formatting) in tqmx86 Bug Fixes: - Fix incorrect register/PCI IDs in intel-lpss-pci - Fix unbalanced Regulator API calls in wm8994-core - Fix double free() in wcd934x - Remove IRQ domain on failure in stmfx - Reset chip on resume in stmfx - Disable/enable IRQs on suspend/resume in stmfx - Do not use bulk writes on H/W which does not support them in max77620" * tag 'mfd-next-5.8' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd: (29 commits) mfd: mt6360: Remove duplicate REGMAP_IRQ_REG_LINE() entry mfd: Add support for PMIC MT6360 mfd: max77620: Use single-byte writes on MAX77620 mfd: wcd934x: Drop kfree for memory allocated with devm_kzalloc mfd: stmfx: Disable IRQ in suspend to avoid spurious interrupt mfd: stmfx: Fix stmfx_irq_init error path mfd: stmfx: Reset chip on resume as supply was disabled mfd: wm8994: Silence warning about supplies during deferred probe mfd: wm8994: Fix unbalanced calls to regulator_bulk_disable() mfd: wm8994: Fix driver operation if loaded as modules dt-bindings: mfd: mediatek: Add MT6397 Pin Controller mfd: Constify properties in mfd_cell mfd: stm32-timers: Use dma_request_chan() instead dma_request_slave_channel() mfd: sprd: Remove unnecessary spi_bus_type setting mfd: intel-lpss: Update LPSS UART #2 PCI ID for Jasper Lake mfd: tqmx86: Fix a typo in MODULE_DESCRIPTION mfd: stpmic1: Make stpmic1_regmap_config static mfd: htc-i2cpld: Convert to use i2c_new_client_device() MAINTAINERS: Add entry for mp2629 Battery Charger driver power: supply: mp2629: Add impedance compensation config ...
- Loading branch information
Showing
37 changed files
with
2,630 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
What: /sys/class/power_supply/mp2629_battery/batt_impedance_compen | ||
Date: April 2020 | ||
KernelVersion: 5.7 | ||
Description: | ||
Represents a battery impedance compensation to accelerate charging. | ||
|
||
Access: Read, Write | ||
Valid values: Represented in milli-ohms. Valid range is [0, 140]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/mfd/mps,mp2629.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: MP2629 Battery Charger PMIC from Monolithic Power System. | ||
|
||
maintainers: | ||
- Saravanan Sekar <sravanhome@gmail.com> | ||
|
||
description: | | ||
MP2629 is a PMIC providing battery charging and power supply for smartphones, | ||
wireless camera and portable devices. Chip is controlled over I2C. | ||
The battery charge management device handles battery charger controller and | ||
ADC IIO device for battery, system voltage | ||
properties: | ||
compatible: | ||
const: mps,mp2629 | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
interrupts: | ||
maxItems: 1 | ||
|
||
interrupt-controller: true | ||
|
||
"#interrupt-cells": | ||
const: 2 | ||
description: | ||
The first cell is the IRQ number, the second cell is the trigger type. | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- interrupts | ||
- interrupt-controller | ||
- "#interrupt-cells" | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/interrupt-controller/irq.h> | ||
#include <dt-bindings/input/linux-event-codes.h> | ||
i2c { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
pmic@4b { | ||
compatible = "mps,mp2629"; | ||
reg = <0x4b>; | ||
interrupt-controller; | ||
interrupt-parent = <&gpio2>; | ||
#interrupt-cells = <2>; | ||
interrupts = <3 IRQ_TYPE_LEVEL_HIGH>; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,208 @@ | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
/* | ||
* MP2629 Driver for ADC | ||
* | ||
* Copyright 2020 Monolithic Power Systems, Inc | ||
* | ||
* Author: Saravanan Sekar <sravanhome@gmail.com> | ||
*/ | ||
|
||
#include <linux/iio/driver.h> | ||
#include <linux/iio/iio.h> | ||
#include <linux/iio/machine.h> | ||
#include <linux/mfd/mp2629.h> | ||
#include <linux/module.h> | ||
#include <linux/mutex.h> | ||
#include <linux/platform_device.h> | ||
#include <linux/regmap.h> | ||
|
||
#define MP2629_REG_ADC_CTRL 0x03 | ||
#define MP2629_REG_BATT_VOLT 0x0e | ||
#define MP2629_REG_SYSTEM_VOLT 0x0f | ||
#define MP2629_REG_INPUT_VOLT 0x11 | ||
#define MP2629_REG_BATT_CURRENT 0x12 | ||
#define MP2629_REG_INPUT_CURRENT 0x13 | ||
|
||
#define MP2629_ADC_START BIT(7) | ||
#define MP2629_ADC_CONTINUOUS BIT(6) | ||
|
||
#define MP2629_MAP(_mp, _mpc) IIO_MAP(#_mp, "mp2629_charger", "mp2629-"_mpc) | ||
|
||
#define MP2629_ADC_CHAN(_ch, _type) { \ | ||
.type = _type, \ | ||
.indexed = 1, \ | ||
.datasheet_name = #_ch, \ | ||
.channel = MP2629_ ## _ch, \ | ||
.address = MP2629_REG_ ## _ch, \ | ||
.info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \ | ||
.info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \ | ||
} | ||
|
||
struct mp2629_adc { | ||
struct regmap *regmap; | ||
struct device *dev; | ||
}; | ||
|
||
static struct iio_chan_spec mp2629_channels[] = { | ||
MP2629_ADC_CHAN(BATT_VOLT, IIO_VOLTAGE), | ||
MP2629_ADC_CHAN(SYSTEM_VOLT, IIO_VOLTAGE), | ||
MP2629_ADC_CHAN(INPUT_VOLT, IIO_VOLTAGE), | ||
MP2629_ADC_CHAN(BATT_CURRENT, IIO_CURRENT), | ||
MP2629_ADC_CHAN(INPUT_CURRENT, IIO_CURRENT) | ||
}; | ||
|
||
static struct iio_map mp2629_adc_maps[] = { | ||
MP2629_MAP(BATT_VOLT, "batt-volt"), | ||
MP2629_MAP(SYSTEM_VOLT, "system-volt"), | ||
MP2629_MAP(INPUT_VOLT, "input-volt"), | ||
MP2629_MAP(BATT_CURRENT, "batt-current"), | ||
MP2629_MAP(INPUT_CURRENT, "input-current") | ||
}; | ||
|
||
static int mp2629_read_raw(struct iio_dev *indio_dev, | ||
struct iio_chan_spec const *chan, | ||
int *val, int *val2, long mask) | ||
{ | ||
struct mp2629_adc *info = iio_priv(indio_dev); | ||
unsigned int rval; | ||
int ret; | ||
|
||
switch (mask) { | ||
case IIO_CHAN_INFO_RAW: | ||
ret = regmap_read(info->regmap, chan->address, &rval); | ||
if (ret) | ||
return ret; | ||
|
||
if (chan->address == MP2629_INPUT_VOLT) | ||
rval &= GENMASK(6, 0); | ||
*val = rval; | ||
return IIO_VAL_INT; | ||
|
||
case IIO_CHAN_INFO_SCALE: | ||
switch (chan->channel) { | ||
case MP2629_BATT_VOLT: | ||
case MP2629_SYSTEM_VOLT: | ||
*val = 20; | ||
return IIO_VAL_INT; | ||
|
||
case MP2629_INPUT_VOLT: | ||
*val = 60; | ||
return IIO_VAL_INT; | ||
|
||
case MP2629_BATT_CURRENT: | ||
*val = 175; | ||
*val2 = 10; | ||
return IIO_VAL_FRACTIONAL; | ||
|
||
case MP2629_INPUT_CURRENT: | ||
*val = 133; | ||
*val2 = 10; | ||
return IIO_VAL_FRACTIONAL; | ||
|
||
default: | ||
return -EINVAL; | ||
} | ||
|
||
default: | ||
return -EINVAL; | ||
} | ||
} | ||
|
||
static const struct iio_info mp2629_adc_info = { | ||
.read_raw = &mp2629_read_raw, | ||
}; | ||
|
||
static int mp2629_adc_probe(struct platform_device *pdev) | ||
{ | ||
struct device *dev = &pdev->dev; | ||
struct mp2629_data *ddata = dev_get_drvdata(dev->parent); | ||
struct mp2629_adc *info; | ||
struct iio_dev *indio_dev; | ||
int ret; | ||
|
||
indio_dev = devm_iio_device_alloc(dev, sizeof(*info)); | ||
if (!indio_dev) | ||
return -ENOMEM; | ||
|
||
info = iio_priv(indio_dev); | ||
info->regmap = ddata->regmap; | ||
info->dev = dev; | ||
platform_set_drvdata(pdev, indio_dev); | ||
|
||
ret = regmap_update_bits(info->regmap, MP2629_REG_ADC_CTRL, | ||
MP2629_ADC_START | MP2629_ADC_CONTINUOUS, | ||
MP2629_ADC_START | MP2629_ADC_CONTINUOUS); | ||
if (ret) { | ||
dev_err(dev, "adc enable fail: %d\n", ret); | ||
return ret; | ||
} | ||
|
||
ret = iio_map_array_register(indio_dev, mp2629_adc_maps); | ||
if (ret) { | ||
dev_err(dev, "IIO maps register fail: %d\n", ret); | ||
goto fail_disable; | ||
} | ||
|
||
indio_dev->name = "mp2629-adc"; | ||
indio_dev->dev.parent = dev; | ||
indio_dev->channels = mp2629_channels; | ||
indio_dev->num_channels = ARRAY_SIZE(mp2629_channels); | ||
indio_dev->modes = INDIO_DIRECT_MODE; | ||
indio_dev->info = &mp2629_adc_info; | ||
|
||
ret = iio_device_register(indio_dev); | ||
if (ret) { | ||
dev_err(dev, "IIO device register fail: %d\n", ret); | ||
goto fail_map_unregister; | ||
} | ||
|
||
return 0; | ||
|
||
fail_map_unregister: | ||
iio_map_array_unregister(indio_dev); | ||
|
||
fail_disable: | ||
regmap_update_bits(info->regmap, MP2629_REG_ADC_CTRL, | ||
MP2629_ADC_CONTINUOUS, 0); | ||
regmap_update_bits(info->regmap, MP2629_REG_ADC_CTRL, | ||
MP2629_ADC_START, 0); | ||
|
||
return ret; | ||
} | ||
|
||
static int mp2629_adc_remove(struct platform_device *pdev) | ||
{ | ||
struct iio_dev *indio_dev = platform_get_drvdata(pdev); | ||
struct mp2629_adc *info = iio_priv(indio_dev); | ||
|
||
iio_device_unregister(indio_dev); | ||
|
||
iio_map_array_unregister(indio_dev); | ||
|
||
regmap_update_bits(info->regmap, MP2629_REG_ADC_CTRL, | ||
MP2629_ADC_CONTINUOUS, 0); | ||
regmap_update_bits(info->regmap, MP2629_REG_ADC_CTRL, | ||
MP2629_ADC_START, 0); | ||
|
||
return 0; | ||
} | ||
|
||
static const struct of_device_id mp2629_adc_of_match[] = { | ||
{ .compatible = "mps,mp2629_adc"}, | ||
{} | ||
}; | ||
MODULE_DEVICE_TABLE(of, mp2629_adc_of_match); | ||
|
||
static struct platform_driver mp2629_adc_driver = { | ||
.driver = { | ||
.name = "mp2629_adc", | ||
.of_match_table = mp2629_adc_of_match, | ||
}, | ||
.probe = mp2629_adc_probe, | ||
.remove = mp2629_adc_remove, | ||
}; | ||
module_platform_driver(mp2629_adc_driver); | ||
|
||
MODULE_AUTHOR("Saravanan Sekar <sravanhome@gmail.com>"); | ||
MODULE_DESCRIPTION("MP2629 ADC driver"); | ||
MODULE_LICENSE("GPL"); |
Oops, something went wrong.