2 * Copyright (c) 2014 MediaTek Inc.
3 * Author: Flora Fu, MediaTek
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <linux/interrupt.h>
16 #include <linux/module.h>
17 #include <linux/of_device.h>
18 #include <linux/of_irq.h>
19 #include <linux/regmap.h>
20 #include <linux/mfd/core.h>
21 #include <linux/mfd/mt6397/core.h>
22 #include <linux/mfd/mt6397/registers.h>
24 #define MT6397_RTC_BASE 0xe000
25 #define MT6397_RTC_SIZE 0x3e
27 static const struct resource mt6397_rtc_resources
[] = {
29 .start
= MT6397_RTC_BASE
,
30 .end
= MT6397_RTC_BASE
+ MT6397_RTC_SIZE
,
31 .flags
= IORESOURCE_MEM
,
34 .start
= MT6397_IRQ_RTC
,
35 .end
= MT6397_IRQ_RTC
,
36 .flags
= IORESOURCE_IRQ
,
40 static const struct mfd_cell mt6397_devs
[] = {
43 .num_resources
= ARRAY_SIZE(mt6397_rtc_resources
),
44 .resources
= mt6397_rtc_resources
,
45 .of_compatible
= "mediatek,mt6397-rtc",
47 .name
= "mt6397-regulator",
48 .of_compatible
= "mediatek,mt6397-regulator",
50 .name
= "mt6397-codec",
51 .of_compatible
= "mediatek,mt6397-codec",
54 .of_compatible
= "mediatek,mt6397-clk",
56 .name
= "mt6397-pinctrl",
57 .of_compatible
= "mediatek,mt6397-pinctrl",
61 static void mt6397_irq_lock(struct irq_data
*data
)
63 struct mt6397_chip
*mt6397
= irq_data_get_irq_chip_data(data
);
65 mutex_lock(&mt6397
->irqlock
);
68 static void mt6397_irq_sync_unlock(struct irq_data
*data
)
70 struct mt6397_chip
*mt6397
= irq_data_get_irq_chip_data(data
);
72 regmap_write(mt6397
->regmap
, MT6397_INT_CON0
, mt6397
->irq_masks_cur
[0]);
73 regmap_write(mt6397
->regmap
, MT6397_INT_CON1
, mt6397
->irq_masks_cur
[1]);
75 mutex_unlock(&mt6397
->irqlock
);
78 static void mt6397_irq_disable(struct irq_data
*data
)
80 struct mt6397_chip
*mt6397
= irq_data_get_irq_chip_data(data
);
81 int shift
= data
->hwirq
& 0xf;
82 int reg
= data
->hwirq
>> 4;
84 mt6397
->irq_masks_cur
[reg
] &= ~BIT(shift
);
87 static void mt6397_irq_enable(struct irq_data
*data
)
89 struct mt6397_chip
*mt6397
= irq_data_get_irq_chip_data(data
);
90 int shift
= data
->hwirq
& 0xf;
91 int reg
= data
->hwirq
>> 4;
93 mt6397
->irq_masks_cur
[reg
] |= BIT(shift
);
96 #ifdef CONFIG_PM_SLEEP
97 static int mt6397_irq_set_wake(struct irq_data
*irq_data
, unsigned int on
)
99 struct mt6397_chip
*mt6397
= irq_data_get_irq_chip_data(irq_data
);
100 int shift
= irq_data
->hwirq
& 0xf;
101 int reg
= irq_data
->hwirq
>> 4;
104 mt6397
->wake_mask
[reg
] |= BIT(shift
);
106 mt6397
->wake_mask
[reg
] &= ~BIT(shift
);
111 #define mt6397_irq_set_wake NULL
114 static struct irq_chip mt6397_irq_chip
= {
115 .name
= "mt6397-irq",
116 .irq_bus_lock
= mt6397_irq_lock
,
117 .irq_bus_sync_unlock
= mt6397_irq_sync_unlock
,
118 .irq_enable
= mt6397_irq_enable
,
119 .irq_disable
= mt6397_irq_disable
,
120 .irq_set_wake
= mt6397_irq_set_wake
,
123 static void mt6397_irq_handle_reg(struct mt6397_chip
*mt6397
, int reg
,
129 ret
= regmap_read(mt6397
->regmap
, reg
, &status
);
131 dev_err(mt6397
->dev
, "Failed to read irq status: %d\n", ret
);
135 for (i
= 0; i
< 16; i
++) {
136 if (status
& BIT(i
)) {
137 irq
= irq_find_mapping(mt6397
->irq_domain
, irqbase
+ i
);
139 handle_nested_irq(irq
);
143 regmap_write(mt6397
->regmap
, reg
, status
);
146 static irqreturn_t
mt6397_irq_thread(int irq
, void *data
)
148 struct mt6397_chip
*mt6397
= data
;
150 mt6397_irq_handle_reg(mt6397
, MT6397_INT_STATUS0
, 0);
151 mt6397_irq_handle_reg(mt6397
, MT6397_INT_STATUS1
, 16);
156 static int mt6397_irq_domain_map(struct irq_domain
*d
, unsigned int irq
,
159 struct mt6397_chip
*mt6397
= d
->host_data
;
161 irq_set_chip_data(irq
, mt6397
);
162 irq_set_chip_and_handler(irq
, &mt6397_irq_chip
, handle_level_irq
);
163 irq_set_nested_thread(irq
, 1);
164 irq_set_noprobe(irq
);
169 static const struct irq_domain_ops mt6397_irq_domain_ops
= {
170 .map
= mt6397_irq_domain_map
,
173 static int mt6397_irq_init(struct mt6397_chip
*mt6397
)
177 mutex_init(&mt6397
->irqlock
);
179 /* Mask all interrupt sources */
180 regmap_write(mt6397
->regmap
, MT6397_INT_CON0
, 0x0);
181 regmap_write(mt6397
->regmap
, MT6397_INT_CON1
, 0x0);
183 mt6397
->irq_domain
= irq_domain_add_linear(mt6397
->dev
->of_node
,
184 MT6397_IRQ_NR
, &mt6397_irq_domain_ops
, mt6397
);
185 if (!mt6397
->irq_domain
) {
186 dev_err(mt6397
->dev
, "could not create irq domain\n");
190 ret
= devm_request_threaded_irq(mt6397
->dev
, mt6397
->irq
, NULL
,
191 mt6397_irq_thread
, IRQF_ONESHOT
, "mt6397-pmic", mt6397
);
193 dev_err(mt6397
->dev
, "failed to register irq=%d; err: %d\n",
201 #ifdef CONFIG_PM_SLEEP
202 static int mt6397_irq_suspend(struct device
*dev
)
204 struct mt6397_chip
*chip
= dev_get_drvdata(dev
);
206 regmap_write(chip
->regmap
, MT6397_INT_CON0
, chip
->wake_mask
[0]);
207 regmap_write(chip
->regmap
, MT6397_INT_CON1
, chip
->wake_mask
[1]);
209 enable_irq_wake(chip
->irq
);
214 static int mt6397_irq_resume(struct device
*dev
)
216 struct mt6397_chip
*chip
= dev_get_drvdata(dev
);
218 regmap_write(chip
->regmap
, MT6397_INT_CON0
, chip
->irq_masks_cur
[0]);
219 regmap_write(chip
->regmap
, MT6397_INT_CON1
, chip
->irq_masks_cur
[1]);
221 disable_irq_wake(chip
->irq
);
227 static SIMPLE_DEV_PM_OPS(mt6397_pm_ops
, mt6397_irq_suspend
,
230 static int mt6397_probe(struct platform_device
*pdev
)
233 struct mt6397_chip
*mt6397
;
235 mt6397
= devm_kzalloc(&pdev
->dev
, sizeof(*mt6397
), GFP_KERNEL
);
239 mt6397
->dev
= &pdev
->dev
;
241 * mt6397 MFD is child device of soc pmic wrapper.
242 * Regmap is set from its parent.
244 mt6397
->regmap
= dev_get_regmap(pdev
->dev
.parent
, NULL
);
248 platform_set_drvdata(pdev
, mt6397
);
250 mt6397
->irq
= platform_get_irq(pdev
, 0);
251 if (mt6397
->irq
> 0) {
252 ret
= mt6397_irq_init(mt6397
);
257 ret
= mfd_add_devices(&pdev
->dev
, -1, mt6397_devs
,
258 ARRAY_SIZE(mt6397_devs
), NULL
, 0, NULL
);
260 dev_err(&pdev
->dev
, "failed to add child devices: %d\n", ret
);
265 static int mt6397_remove(struct platform_device
*pdev
)
267 mfd_remove_devices(&pdev
->dev
);
272 static const struct of_device_id mt6397_of_match
[] = {
273 { .compatible
= "mediatek,mt6397" },
276 MODULE_DEVICE_TABLE(of
, mt6397_of_match
);
278 static struct platform_driver mt6397_driver
= {
279 .probe
= mt6397_probe
,
280 .remove
= mt6397_remove
,
283 .of_match_table
= of_match_ptr(mt6397_of_match
),
284 .pm
= &mt6397_pm_ops
,
288 module_platform_driver(mt6397_driver
);
290 MODULE_AUTHOR("Flora Fu, MediaTek");
291 MODULE_DESCRIPTION("Driver for MediaTek MT6397 PMIC");
292 MODULE_LICENSE("GPL");
293 MODULE_ALIAS("platform:mt6397");