From: Lee Jones Date: Tue, 25 Nov 2014 16:18:03 +0000 (+0000) Subject: Merge branches 'ib-mfd-gpio-i2c-3.19', 'ib-mfd-iio-3.19' and 'ib-mfd-regulator-v3... X-Git-Tag: xilinx-v2015.2~85^2~372^2~37 X-Git-Url: https://rtime.felk.cvut.cz/gitweb/zynq/linux.git/commitdiff_plain/a9e2e4733cb6457aa6cbae4489b68ff0684848af Merge branches 'ib-mfd-gpio-i2c-3.19', 'ib-mfd-iio-3.19' and 'ib-mfd-regulator-v3.19', tag 'ib-mfd-regulator-clk-v3.19' into ibs-for-mfd-merged Immutable branch between MFD, Regulator and Clk, due for v3.19 --- a9e2e4733cb6457aa6cbae4489b68ff0684848af diff --cc drivers/iio/adc/Kconfig index 88bdc8f612e2,88bdc8f612e2,db2681b4f24b,88bdc8f612e2,88bdc8f612e2..bc4e787096e8 --- a/drivers/iio/adc/Kconfig +++ b/drivers/iio/adc/Kconfig @@@@@@ -127,9 -127,9 -127,17 -127,9 -127,9 +127,17 @@@@@@ config AT91_AD help Say yes here to build support for Atmel AT91 ADC. ++ ++config AXP288_ADC ++ ++ tristate "X-Powers AXP288 ADC driver" ++ ++ depends on MFD_AXP20X ++ ++ help ++ ++ Say yes here to have support for X-Powers power management IC (PMIC) ADC ++ ++ device. Depending on platform configuration, this general purpose ADC can ++ ++ be used for sampling sensors such as thermal resistors. ++ ++ config EXYNOS_ADC tristate "Exynos ADC driver support" - depends on ARCH_EXYNOS || (OF && COMPILE_TEST) + depends on ARCH_EXYNOS || ARCH_S3C24XX || ARCH_S3C64XX || (OF && COMPILE_TEST) help Core support for the ADC block found in the Samsung EXYNOS series of SoCs for drivers such as the touchscreen and hwmon to use to share diff --cc drivers/mfd/axp20x.c index 6231adbb295d,6231adbb295d,9c4714e13c3c,6231adbb295d,6231adbb295d..971b0eb8d821 --- a/drivers/mfd/axp20x.c +++ b/drivers/mfd/axp20x.c @@@@@@ -133,13 -133,13 -250,36 -133,13 -133,13 +250,27 @@@@@@ static const struct regmap_irq_chip axp .status_base = AXP20X_IRQ1_STATE, .ack_base = AXP20X_IRQ1_STATE, .mask_base = AXP20X_IRQ1_EN, -- -- .num_regs = 5, ++ ++ .mask_invert = true, ++ ++ .init_ack_masked = true, .irqs = axp20x_regmap_irqs, .num_irqs = ARRAY_SIZE(axp20x_regmap_irqs), ++ ++ .num_regs = 5, ++ ++ ++ ++}; ++ ++ ++ ++static const struct regmap_irq_chip axp288_regmap_irq_chip = { ++ ++ .name = "axp288_irq_chip", ++ ++ .status_base = AXP20X_IRQ1_STATE, ++ ++ .ack_base = AXP20X_IRQ1_STATE, ++ ++ .mask_base = AXP20X_IRQ1_EN, .mask_invert = true, .init_ack_masked = true, ++ ++ .irqs = axp288_regmap_irqs, ++ ++ .num_irqs = ARRAY_SIZE(axp288_regmap_irqs), ++ ++ .num_regs = 6, ++ ++ }; - static const char * const axp20x_supplies[] = { - "acin", - "vin2", - "vin3", - "ldo24in", - "ldo3in", - "ldo5in", - }; - static struct mfd_cell axp20x_cells[] = { { .name = "axp20x-pek",