2 * intel_bxtwc_tmu.c - Intel BXT Whiskey Cove PMIC TMU driver
4 * Copyright (C) 2016 Intel Corporation. All rights reserved.
6 * This driver adds TMU (Time Management Unit) support for Intel BXT platform.
7 * It enables the alarm wake-up functionality in the TMU unit of Whiskey Cove
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License version
12 * 2 as published by the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
21 #include <linux/module.h>
22 #include <linux/interrupt.h>
23 #include <linux/platform_device.h>
24 #include <linux/mfd/intel_soc_pmic.h>
26 #define BXTWC_TMUIRQ 0x4fb6
27 #define BXTWC_MIRQLVL1 0x4e0e
28 #define BXTWC_MTMUIRQ_REG 0x4fb7
29 #define BXTWC_MIRQLVL1_MTMU BIT(1)
30 #define BXTWC_TMU_WK_ALRM BIT(1)
31 #define BXTWC_TMU_SYS_ALRM BIT(2)
32 #define BXTWC_TMU_ALRM_MASK (BXTWC_TMU_WK_ALRM | BXTWC_TMU_SYS_ALRM)
33 #define BXTWC_TMU_ALRM_IRQ (BXTWC_TMU_WK_ALRM | BXTWC_TMU_SYS_ALRM)
38 struct regmap *regmap;
41 static irqreturn_t bxt_wcove_tmu_irq_handler(int irq, void *data)
43 struct wcove_tmu *wctmu = data;
46 /* Read TMU interrupt reg */
47 regmap_read(wctmu->regmap, BXTWC_TMUIRQ, &tmu_irq);
48 if (tmu_irq & BXTWC_TMU_ALRM_IRQ) {
50 regmap_write(wctmu->regmap, BXTWC_TMUIRQ, tmu_irq);
56 static int bxt_wcove_tmu_probe(struct platform_device *pdev)
58 struct intel_soc_pmic *pmic = dev_get_drvdata(pdev->dev.parent);
59 struct regmap_irq_chip_data *regmap_irq_chip;
60 struct wcove_tmu *wctmu;
63 wctmu = devm_kzalloc(&pdev->dev, sizeof(*wctmu), GFP_KERNEL);
67 wctmu->dev = &pdev->dev;
68 wctmu->regmap = pmic->regmap;
70 irq = platform_get_irq(pdev, 0);
73 dev_err(&pdev->dev, "invalid irq %d\n", irq);
77 regmap_irq_chip = pmic->irq_chip_data_tmu;
78 virq = regmap_irq_get_virq(regmap_irq_chip, irq);
81 "failed to get virtual interrupt=%d\n", irq);
85 ret = devm_request_threaded_irq(&pdev->dev, virq,
86 NULL, bxt_wcove_tmu_irq_handler,
87 IRQF_ONESHOT, "bxt_wcove_tmu", wctmu);
89 dev_err(&pdev->dev, "request irq failed: %d,virq: %d\n",
95 /* Unmask TMU second level Wake & System alarm */
96 regmap_update_bits(wctmu->regmap, BXTWC_MTMUIRQ_REG,
97 BXTWC_TMU_ALRM_MASK, 0);
99 platform_set_drvdata(pdev, wctmu);
103 static int bxt_wcove_tmu_remove(struct platform_device *pdev)
105 struct wcove_tmu *wctmu = platform_get_drvdata(pdev);
108 /* Mask TMU interrupts */
109 regmap_read(wctmu->regmap, BXTWC_MIRQLVL1, &val);
110 regmap_write(wctmu->regmap, BXTWC_MIRQLVL1,
111 val | BXTWC_MIRQLVL1_MTMU);
112 regmap_read(wctmu->regmap, BXTWC_MTMUIRQ_REG, &val);
113 regmap_write(wctmu->regmap, BXTWC_MTMUIRQ_REG,
114 val | BXTWC_TMU_ALRM_MASK);
118 #ifdef CONFIG_PM_SLEEP
119 static int bxtwc_tmu_suspend(struct device *dev)
121 struct wcove_tmu *wctmu = dev_get_drvdata(dev);
123 enable_irq_wake(wctmu->irq);
127 static int bxtwc_tmu_resume(struct device *dev)
129 struct wcove_tmu *wctmu = dev_get_drvdata(dev);
131 disable_irq_wake(wctmu->irq);
136 static SIMPLE_DEV_PM_OPS(bxtwc_tmu_pm_ops, bxtwc_tmu_suspend, bxtwc_tmu_resume);
138 static const struct platform_device_id bxt_wcove_tmu_id_table[] = {
139 { .name = "bxt_wcove_tmu" },
142 MODULE_DEVICE_TABLE(platform, bxt_wcove_tmu_id_table);
144 static struct platform_driver bxt_wcove_tmu_driver = {
145 .probe = bxt_wcove_tmu_probe,
146 .remove = bxt_wcove_tmu_remove,
148 .name = "bxt_wcove_tmu",
149 .pm = &bxtwc_tmu_pm_ops,
151 .id_table = bxt_wcove_tmu_id_table,
154 module_platform_driver(bxt_wcove_tmu_driver);
156 MODULE_LICENSE("GPL v2");
158 MODULE_DESCRIPTION("BXT Whiskey Cove TMU Driver");