]> Git Repo - linux.git/blob - drivers/platform/x86/intel_bxtwc_tmu.c
Merge tag 'for-rc-adfs' of git://git.armlinux.org.uk/~rmk/linux-arm
[linux.git] / drivers / platform / x86 / intel_bxtwc_tmu.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Intel BXT Whiskey Cove PMIC TMU driver
4  *
5  * Copyright (C) 2016 Intel Corporation. All rights reserved.
6  *
7  * This driver adds TMU (Time Management Unit) support for Intel BXT platform.
8  * It enables the alarm wake-up functionality in the TMU unit of Whiskey Cove
9  * PMIC.
10  */
11
12 #include <linux/module.h>
13 #include <linux/mod_devicetable.h>
14 #include <linux/interrupt.h>
15 #include <linux/platform_device.h>
16 #include <linux/mfd/intel_soc_pmic.h>
17
18 #define BXTWC_TMUIRQ            0x4fb6
19 #define BXTWC_MIRQLVL1          0x4e0e
20 #define BXTWC_MTMUIRQ_REG       0x4fb7
21 #define BXTWC_MIRQLVL1_MTMU     BIT(1)
22 #define BXTWC_TMU_WK_ALRM       BIT(1)
23 #define BXTWC_TMU_SYS_ALRM      BIT(2)
24 #define BXTWC_TMU_ALRM_MASK     (BXTWC_TMU_WK_ALRM | BXTWC_TMU_SYS_ALRM)
25 #define BXTWC_TMU_ALRM_IRQ      (BXTWC_TMU_WK_ALRM | BXTWC_TMU_SYS_ALRM)
26
27 struct wcove_tmu {
28         int irq;
29         struct device *dev;
30         struct regmap *regmap;
31 };
32
33 static irqreturn_t bxt_wcove_tmu_irq_handler(int irq, void *data)
34 {
35         struct wcove_tmu *wctmu = data;
36         unsigned int tmu_irq;
37
38         /* Read TMU interrupt reg */
39         regmap_read(wctmu->regmap, BXTWC_TMUIRQ, &tmu_irq);
40         if (tmu_irq & BXTWC_TMU_ALRM_IRQ) {
41                 /* clear TMU irq */
42                 regmap_write(wctmu->regmap, BXTWC_TMUIRQ, tmu_irq);
43                 return IRQ_HANDLED;
44         }
45         return IRQ_NONE;
46 }
47
48 static int bxt_wcove_tmu_probe(struct platform_device *pdev)
49 {
50         struct intel_soc_pmic *pmic = dev_get_drvdata(pdev->dev.parent);
51         struct regmap_irq_chip_data *regmap_irq_chip;
52         struct wcove_tmu *wctmu;
53         int ret, virq, irq;
54
55         wctmu = devm_kzalloc(&pdev->dev, sizeof(*wctmu), GFP_KERNEL);
56         if (!wctmu)
57                 return -ENOMEM;
58
59         wctmu->dev = &pdev->dev;
60         wctmu->regmap = pmic->regmap;
61
62         irq = platform_get_irq(pdev, 0);
63
64         if (irq < 0) {
65                 dev_err(&pdev->dev, "invalid irq %d\n", irq);
66                 return irq;
67         }
68
69         regmap_irq_chip = pmic->irq_chip_data_tmu;
70         virq = regmap_irq_get_virq(regmap_irq_chip, irq);
71         if (virq < 0) {
72                 dev_err(&pdev->dev,
73                         "failed to get virtual interrupt=%d\n", irq);
74                 return virq;
75         }
76
77         ret = devm_request_threaded_irq(&pdev->dev, virq,
78                                         NULL, bxt_wcove_tmu_irq_handler,
79                                         IRQF_ONESHOT, "bxt_wcove_tmu", wctmu);
80         if (ret) {
81                 dev_err(&pdev->dev, "request irq failed: %d,virq: %d\n",
82                                                         ret, virq);
83                 return ret;
84         }
85         wctmu->irq = virq;
86
87         /* Unmask TMU second level Wake & System alarm */
88         regmap_update_bits(wctmu->regmap, BXTWC_MTMUIRQ_REG,
89                                   BXTWC_TMU_ALRM_MASK, 0);
90
91         platform_set_drvdata(pdev, wctmu);
92         return 0;
93 }
94
95 static int bxt_wcove_tmu_remove(struct platform_device *pdev)
96 {
97         struct wcove_tmu *wctmu = platform_get_drvdata(pdev);
98         unsigned int val;
99
100         /* Mask TMU interrupts */
101         regmap_read(wctmu->regmap, BXTWC_MIRQLVL1, &val);
102         regmap_write(wctmu->regmap, BXTWC_MIRQLVL1,
103                         val | BXTWC_MIRQLVL1_MTMU);
104         regmap_read(wctmu->regmap, BXTWC_MTMUIRQ_REG, &val);
105         regmap_write(wctmu->regmap, BXTWC_MTMUIRQ_REG,
106                         val | BXTWC_TMU_ALRM_MASK);
107         return 0;
108 }
109
110 #ifdef CONFIG_PM_SLEEP
111 static int bxtwc_tmu_suspend(struct device *dev)
112 {
113         struct wcove_tmu *wctmu = dev_get_drvdata(dev);
114
115         enable_irq_wake(wctmu->irq);
116         return 0;
117 }
118
119 static int bxtwc_tmu_resume(struct device *dev)
120 {
121         struct wcove_tmu *wctmu = dev_get_drvdata(dev);
122
123         disable_irq_wake(wctmu->irq);
124         return 0;
125 }
126 #endif
127
128 static SIMPLE_DEV_PM_OPS(bxtwc_tmu_pm_ops, bxtwc_tmu_suspend, bxtwc_tmu_resume);
129
130 static const struct platform_device_id bxt_wcove_tmu_id_table[] = {
131         { .name = "bxt_wcove_tmu" },
132         {},
133 };
134 MODULE_DEVICE_TABLE(platform, bxt_wcove_tmu_id_table);
135
136 static struct platform_driver bxt_wcove_tmu_driver = {
137         .probe = bxt_wcove_tmu_probe,
138         .remove = bxt_wcove_tmu_remove,
139         .driver = {
140                 .name = "bxt_wcove_tmu",
141                 .pm     = &bxtwc_tmu_pm_ops,
142         },
143         .id_table = bxt_wcove_tmu_id_table,
144 };
145
146 module_platform_driver(bxt_wcove_tmu_driver);
147
148 MODULE_LICENSE("GPL v2");
149 MODULE_AUTHOR("Nilesh Bacchewar <[email protected]>");
150 MODULE_DESCRIPTION("BXT Whiskey Cove TMU Driver");
This page took 0.042292 seconds and 4 git commands to generate.