1 // SPDX-License-Identifier: GPL-2.0
3 * MFD core driver for Intel Cherrytrail Whiskey Cove PMIC
5 * Copyright (C) 2017 Hans de Goede <hdegoede@redhat.com>
7 * Based on various non upstream patches to support the CHT Whiskey Cove PMIC:
8 * Copyright (C) 2013-2015 Intel Corporation. All rights reserved.
11 #include <linux/acpi.h>
12 #include <linux/delay.h>
13 #include <linux/err.h>
14 #include <linux/i2c.h>
15 #include <linux/interrupt.h>
16 #include <linux/kernel.h>
17 #include <linux/mfd/core.h>
18 #include <linux/mfd/intel_soc_pmic.h>
19 #include <linux/regmap.h>
21 /* PMIC device registers */
22 #define REG_OFFSET_MASK GENMASK(7, 0)
23 #define REG_ADDR_MASK GENMASK(15, 8)
24 #define REG_ADDR_SHIFT 8
26 #define CHT_WC_IRQLVL1 0x6e02
27 #define CHT_WC_IRQLVL1_MASK 0x6e0e
29 /* Whiskey Cove PMIC share same ACPI ID between different platforms */
32 /* Level 1 IRQs (level 2 IRQs are handled in the child device drivers) */
34 CHT_WC_PWRSRC_IRQ
= 0,
40 /* There is no irq 6 */
44 static struct resource cht_wc_pwrsrc_resources
[] = {
45 DEFINE_RES_IRQ(CHT_WC_PWRSRC_IRQ
),
48 static struct resource cht_wc_ext_charger_resources
[] = {
49 DEFINE_RES_IRQ(CHT_WC_EXT_CHGR_IRQ
),
52 static struct mfd_cell cht_wc_dev
[] = {
54 .name
= "cht_wcove_pwrsrc",
55 .num_resources
= ARRAY_SIZE(cht_wc_pwrsrc_resources
),
56 .resources
= cht_wc_pwrsrc_resources
,
58 .name
= "cht_wcove_ext_chgr",
59 .num_resources
= ARRAY_SIZE(cht_wc_ext_charger_resources
),
60 .resources
= cht_wc_ext_charger_resources
,
62 { .name
= "cht_wcove_region", },
63 { .name
= "cht_wcove_leds", },
67 * The CHT Whiskey Cove covers multiple I2C addresses, with a 1 Byte
68 * register address space per I2C address, so we use 16 bit register
69 * addresses where the high 8 bits contain the I2C client address.
71 static int cht_wc_byte_reg_read(void *context
, unsigned int reg
,
74 struct i2c_client
*client
= context
;
75 int ret
, orig_addr
= client
->addr
;
77 if (!(reg
& REG_ADDR_MASK
)) {
78 dev_err(&client
->dev
, "Error I2C address not specified\n");
82 client
->addr
= (reg
& REG_ADDR_MASK
) >> REG_ADDR_SHIFT
;
83 ret
= i2c_smbus_read_byte_data(client
, reg
& REG_OFFSET_MASK
);
84 client
->addr
= orig_addr
;
93 static int cht_wc_byte_reg_write(void *context
, unsigned int reg
,
96 struct i2c_client
*client
= context
;
97 int ret
, orig_addr
= client
->addr
;
99 if (!(reg
& REG_ADDR_MASK
)) {
100 dev_err(&client
->dev
, "Error I2C address not specified\n");
104 client
->addr
= (reg
& REG_ADDR_MASK
) >> REG_ADDR_SHIFT
;
105 ret
= i2c_smbus_write_byte_data(client
, reg
& REG_OFFSET_MASK
, val
);
106 client
->addr
= orig_addr
;
111 static const struct regmap_config cht_wc_regmap_cfg
= {
114 .reg_write
= cht_wc_byte_reg_write
,
115 .reg_read
= cht_wc_byte_reg_read
,
118 static const struct regmap_irq cht_wc_regmap_irqs
[] = {
119 REGMAP_IRQ_REG(CHT_WC_PWRSRC_IRQ
, 0, BIT(CHT_WC_PWRSRC_IRQ
)),
120 REGMAP_IRQ_REG(CHT_WC_THRM_IRQ
, 0, BIT(CHT_WC_THRM_IRQ
)),
121 REGMAP_IRQ_REG(CHT_WC_BCU_IRQ
, 0, BIT(CHT_WC_BCU_IRQ
)),
122 REGMAP_IRQ_REG(CHT_WC_ADC_IRQ
, 0, BIT(CHT_WC_ADC_IRQ
)),
123 REGMAP_IRQ_REG(CHT_WC_EXT_CHGR_IRQ
, 0, BIT(CHT_WC_EXT_CHGR_IRQ
)),
124 REGMAP_IRQ_REG(CHT_WC_GPIO_IRQ
, 0, BIT(CHT_WC_GPIO_IRQ
)),
125 REGMAP_IRQ_REG(CHT_WC_CRIT_IRQ
, 0, BIT(CHT_WC_CRIT_IRQ
)),
128 static const struct regmap_irq_chip cht_wc_regmap_irq_chip
= {
129 .name
= "cht_wc_irq_chip",
130 .status_base
= CHT_WC_IRQLVL1
,
131 .mask_base
= CHT_WC_IRQLVL1_MASK
,
132 .irqs
= cht_wc_regmap_irqs
,
133 .num_irqs
= ARRAY_SIZE(cht_wc_regmap_irqs
),
137 static int cht_wc_probe(struct i2c_client
*client
)
139 struct device
*dev
= &client
->dev
;
140 struct intel_soc_pmic
*pmic
;
142 unsigned long long hrv
;
145 status
= acpi_evaluate_integer(ACPI_HANDLE(dev
), "_HRV", NULL
, &hrv
);
146 if (ACPI_FAILURE(status
)) {
147 dev_err(dev
, "Failed to get PMIC hardware revision\n");
150 if (hrv
!= CHT_WC_HRV
) {
151 dev_err(dev
, "Invalid PMIC hardware revision: %llu\n", hrv
);
154 if (client
->irq
< 0) {
155 dev_err(dev
, "Invalid IRQ\n");
159 pmic
= devm_kzalloc(dev
, sizeof(*pmic
), GFP_KERNEL
);
163 pmic
->irq
= client
->irq
;
165 i2c_set_clientdata(client
, pmic
);
167 pmic
->regmap
= devm_regmap_init(dev
, NULL
, client
, &cht_wc_regmap_cfg
);
168 if (IS_ERR(pmic
->regmap
))
169 return PTR_ERR(pmic
->regmap
);
171 ret
= devm_regmap_add_irq_chip(dev
, pmic
->regmap
, pmic
->irq
,
172 IRQF_ONESHOT
| IRQF_SHARED
, 0,
173 &cht_wc_regmap_irq_chip
,
174 &pmic
->irq_chip_data
);
178 return devm_mfd_add_devices(dev
, PLATFORM_DEVID_NONE
,
179 cht_wc_dev
, ARRAY_SIZE(cht_wc_dev
), NULL
, 0,
180 regmap_irq_get_domain(pmic
->irq_chip_data
));
183 static void cht_wc_shutdown(struct i2c_client
*client
)
185 struct intel_soc_pmic
*pmic
= i2c_get_clientdata(client
);
187 disable_irq(pmic
->irq
);
190 static int __maybe_unused
cht_wc_suspend(struct device
*dev
)
192 struct intel_soc_pmic
*pmic
= dev_get_drvdata(dev
);
194 disable_irq(pmic
->irq
);
199 static int __maybe_unused
cht_wc_resume(struct device
*dev
)
201 struct intel_soc_pmic
*pmic
= dev_get_drvdata(dev
);
203 enable_irq(pmic
->irq
);
207 static SIMPLE_DEV_PM_OPS(cht_wc_pm_ops
, cht_wc_suspend
, cht_wc_resume
);
209 static const struct i2c_device_id cht_wc_i2c_id
[] = {
213 static const struct acpi_device_id cht_wc_acpi_ids
[] = {
218 static struct i2c_driver cht_wc_driver
= {
220 .name
= "CHT Whiskey Cove PMIC",
221 .pm
= &cht_wc_pm_ops
,
222 .acpi_match_table
= cht_wc_acpi_ids
,
224 .probe_new
= cht_wc_probe
,
225 .shutdown
= cht_wc_shutdown
,
226 .id_table
= cht_wc_i2c_id
,
228 builtin_i2c_driver(cht_wc_driver
);