mfd: kempld-core: Constify variables that point to const structure
[linux-2.6-block.git] / drivers / rtc / rtc-ftrtc010.c
CommitLineData
98a9bb5b 1/*
1d61d259 2 * Faraday Technology FTRTC010 driver
98a9bb5b
HUK
3 *
4 * Copyright (C) 2009 Janos Laube <janos.dev@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * Original code for older kernel 2.6.15 are from Stormlinksemi
17 * first update from Janos Laube for > 2.6.29 kernels
18 *
19 * checkpatch fixes and usage of rtc-lib code
20 * Hans Ulli Kroll <ulli.kroll@googlemail.com>
21 */
22
23#include <linux/rtc.h>
24#include <linux/io.h>
25#include <linux/slab.h>
26#include <linux/platform_device.h>
27#include <linux/kernel.h>
28#include <linux/module.h>
ac05fba3 29#include <linux/clk.h>
98a9bb5b 30
1d61d259 31#define DRV_NAME "rtc-ftrtc010"
98a9bb5b
HUK
32
33MODULE_AUTHOR("Hans Ulli Kroll <ulli.kroll@googlemail.com>");
34MODULE_DESCRIPTION("RTC driver for Gemini SoC");
35MODULE_LICENSE("GPL");
36MODULE_ALIAS("platform:" DRV_NAME);
37
1d61d259 38struct ftrtc010_rtc {
98a9bb5b
HUK
39 struct rtc_device *rtc_dev;
40 void __iomem *rtc_base;
41 int rtc_irq;
ac05fba3
LW
42 struct clk *pclk;
43 struct clk *extclk;
98a9bb5b
HUK
44};
45
1d61d259
LW
46enum ftrtc010_rtc_offsets {
47 FTRTC010_RTC_SECOND = 0x00,
48 FTRTC010_RTC_MINUTE = 0x04,
49 FTRTC010_RTC_HOUR = 0x08,
50 FTRTC010_RTC_DAYS = 0x0C,
51 FTRTC010_RTC_ALARM_SECOND = 0x10,
52 FTRTC010_RTC_ALARM_MINUTE = 0x14,
53 FTRTC010_RTC_ALARM_HOUR = 0x18,
54 FTRTC010_RTC_RECORD = 0x1C,
55 FTRTC010_RTC_CR = 0x20,
98a9bb5b
HUK
56};
57
1d61d259 58static irqreturn_t ftrtc010_rtc_interrupt(int irq, void *dev)
98a9bb5b
HUK
59{
60 return IRQ_HANDLED;
61}
62
63/*
64 * Looks like the RTC in the Gemini SoC is (totaly) broken
65 * We can't read/write directly the time from RTC registers.
66 * We must do some "offset" calculation to get the real time
67 *
68 * This FIX works pretty fine and Stormlinksemi aka Cortina-Networks does
69 * the same thing, without the rtc-lib.c calls.
70 */
71
1d61d259 72static int ftrtc010_rtc_read_time(struct device *dev, struct rtc_time *tm)
98a9bb5b 73{
1d61d259 74 struct ftrtc010_rtc *rtc = dev_get_drvdata(dev);
98a9bb5b 75
73318f8b
AB
76 u32 days, hour, min, sec, offset;
77 timeu64_t time;
98a9bb5b 78
1d61d259
LW
79 sec = readl(rtc->rtc_base + FTRTC010_RTC_SECOND);
80 min = readl(rtc->rtc_base + FTRTC010_RTC_MINUTE);
81 hour = readl(rtc->rtc_base + FTRTC010_RTC_HOUR);
82 days = readl(rtc->rtc_base + FTRTC010_RTC_DAYS);
83 offset = readl(rtc->rtc_base + FTRTC010_RTC_RECORD);
98a9bb5b
HUK
84
85 time = offset + days * 86400 + hour * 3600 + min * 60 + sec;
86
73318f8b 87 rtc_time64_to_tm(time, tm);
98a9bb5b
HUK
88
89 return 0;
90}
91
1d61d259 92static int ftrtc010_rtc_set_time(struct device *dev, struct rtc_time *tm)
98a9bb5b 93{
1d61d259 94 struct ftrtc010_rtc *rtc = dev_get_drvdata(dev);
73318f8b
AB
95 u32 sec, min, hour, day, offset;
96 timeu64_t time;
98a9bb5b 97
73318f8b 98 time = rtc_tm_to_time64(tm);
98a9bb5b 99
1d61d259
LW
100 sec = readl(rtc->rtc_base + FTRTC010_RTC_SECOND);
101 min = readl(rtc->rtc_base + FTRTC010_RTC_MINUTE);
102 hour = readl(rtc->rtc_base + FTRTC010_RTC_HOUR);
103 day = readl(rtc->rtc_base + FTRTC010_RTC_DAYS);
98a9bb5b
HUK
104
105 offset = time - (day * 86400 + hour * 3600 + min * 60 + sec);
106
1d61d259
LW
107 writel(offset, rtc->rtc_base + FTRTC010_RTC_RECORD);
108 writel(0x01, rtc->rtc_base + FTRTC010_RTC_CR);
98a9bb5b
HUK
109
110 return 0;
111}
112
1d61d259
LW
113static const struct rtc_class_ops ftrtc010_rtc_ops = {
114 .read_time = ftrtc010_rtc_read_time,
115 .set_time = ftrtc010_rtc_set_time,
98a9bb5b
HUK
116};
117
1d61d259 118static int ftrtc010_rtc_probe(struct platform_device *pdev)
98a9bb5b 119{
b8e62b58 120 u32 days, hour, min, sec;
1d61d259 121 struct ftrtc010_rtc *rtc;
98a9bb5b
HUK
122 struct device *dev = &pdev->dev;
123 struct resource *res;
124 int ret;
125
126 rtc = devm_kzalloc(&pdev->dev, sizeof(*rtc), GFP_KERNEL);
127 if (unlikely(!rtc))
128 return -ENOMEM;
129 platform_set_drvdata(pdev, rtc);
130
ac05fba3
LW
131 rtc->pclk = devm_clk_get(dev, "PCLK");
132 if (IS_ERR(rtc->pclk)) {
133 dev_err(dev, "could not get PCLK\n");
134 } else {
135 ret = clk_prepare_enable(rtc->pclk);
136 if (ret) {
137 dev_err(dev, "failed to enable PCLK\n");
138 return ret;
139 }
140 }
141 rtc->extclk = devm_clk_get(dev, "EXTCLK");
142 if (IS_ERR(rtc->extclk)) {
143 dev_err(dev, "could not get EXTCLK\n");
144 } else {
145 ret = clk_prepare_enable(rtc->extclk);
146 if (ret) {
147 dev_err(dev, "failed to enable EXTCLK\n");
148 return ret;
149 }
150 }
151
98a9bb5b
HUK
152 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
153 if (!res)
154 return -ENODEV;
155
156 rtc->rtc_irq = res->start;
157
158 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
159 if (!res)
160 return -ENODEV;
161
162 rtc->rtc_base = devm_ioremap(dev, res->start,
45b4c85b 163 resource_size(res));
332e0d13
PB
164 if (!rtc->rtc_base)
165 return -ENOMEM;
98a9bb5b 166
e38d161f
AB
167 rtc->rtc_dev = devm_rtc_allocate_device(dev);
168 if (IS_ERR(rtc->rtc_dev))
169 return PTR_ERR(rtc->rtc_dev);
170
171 rtc->rtc_dev->ops = &ftrtc010_rtc_ops;
172
b8e62b58
AB
173 sec = readl(rtc->rtc_base + FTRTC010_RTC_SECOND);
174 min = readl(rtc->rtc_base + FTRTC010_RTC_MINUTE);
175 hour = readl(rtc->rtc_base + FTRTC010_RTC_HOUR);
176 days = readl(rtc->rtc_base + FTRTC010_RTC_DAYS);
177
178 rtc->rtc_dev->range_min = (u64)days * 86400 + hour * 3600 +
179 min * 60 + sec;
180 rtc->rtc_dev->range_max = U32_MAX + rtc->rtc_dev->range_min;
181
1d61d259 182 ret = devm_request_irq(dev, rtc->rtc_irq, ftrtc010_rtc_interrupt,
98a9bb5b
HUK
183 IRQF_SHARED, pdev->name, dev);
184 if (unlikely(ret))
185 return ret;
186
e38d161f 187 return rtc_register_device(rtc->rtc_dev);
98a9bb5b
HUK
188}
189
1d61d259 190static int ftrtc010_rtc_remove(struct platform_device *pdev)
98a9bb5b 191{
1d61d259 192 struct ftrtc010_rtc *rtc = platform_get_drvdata(pdev);
98a9bb5b 193
ac05fba3
LW
194 if (!IS_ERR(rtc->extclk))
195 clk_disable_unprepare(rtc->extclk);
196 if (!IS_ERR(rtc->pclk))
197 clk_disable_unprepare(rtc->pclk);
98a9bb5b
HUK
198
199 return 0;
200}
201
1d61d259 202static const struct of_device_id ftrtc010_rtc_dt_match[] = {
bc7d8ebf 203 { .compatible = "cortina,gemini-rtc" },
1d61d259 204 { .compatible = "faraday,ftrtc010" },
bc7d8ebf
LW
205 { }
206};
1d61d259 207MODULE_DEVICE_TABLE(of, ftrtc010_rtc_dt_match);
bc7d8ebf 208
1d61d259 209static struct platform_driver ftrtc010_rtc_driver = {
98a9bb5b
HUK
210 .driver = {
211 .name = DRV_NAME,
1d61d259 212 .of_match_table = ftrtc010_rtc_dt_match,
98a9bb5b 213 },
1d61d259
LW
214 .probe = ftrtc010_rtc_probe,
215 .remove = ftrtc010_rtc_remove,
98a9bb5b
HUK
216};
217
1d61d259 218module_platform_driver_probe(ftrtc010_rtc_driver, ftrtc010_rtc_probe);