f2fs: split discard command in prior to block layer
[linux/fpc-iii.git] / drivers / rtc / rtc-ftrtc010.c
blob61f798c6101fec6a716a50722c47faed9b36fecb
1 /*
2 * Faraday Technology FTRTC010 driver
4 * Copyright (C) 2009 Janos Laube <janos.dev@gmail.com>
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.
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.
16 * Original code for older kernel 2.6.15 are from Stormlinksemi
17 * first update from Janos Laube for > 2.6.29 kernels
19 * checkpatch fixes and usage of rtc-lib code
20 * Hans Ulli Kroll <ulli.kroll@googlemail.com>
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>
29 #include <linux/clk.h>
31 #define DRV_NAME "rtc-ftrtc010"
33 MODULE_AUTHOR("Hans Ulli Kroll <ulli.kroll@googlemail.com>");
34 MODULE_DESCRIPTION("RTC driver for Gemini SoC");
35 MODULE_LICENSE("GPL");
36 MODULE_ALIAS("platform:" DRV_NAME);
38 struct ftrtc010_rtc {
39 struct rtc_device *rtc_dev;
40 void __iomem *rtc_base;
41 int rtc_irq;
42 struct clk *pclk;
43 struct clk *extclk;
46 enum 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,
58 static irqreturn_t ftrtc010_rtc_interrupt(int irq, void *dev)
60 return IRQ_HANDLED;
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
68 * This FIX works pretty fine and Stormlinksemi aka Cortina-Networks does
69 * the same thing, without the rtc-lib.c calls.
72 static int ftrtc010_rtc_read_time(struct device *dev, struct rtc_time *tm)
74 struct ftrtc010_rtc *rtc = dev_get_drvdata(dev);
76 u32 days, hour, min, sec, offset;
77 timeu64_t time;
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);
85 time = offset + days * 86400 + hour * 3600 + min * 60 + sec;
87 rtc_time64_to_tm(time, tm);
89 return 0;
92 static int ftrtc010_rtc_set_time(struct device *dev, struct rtc_time *tm)
94 struct ftrtc010_rtc *rtc = dev_get_drvdata(dev);
95 u32 sec, min, hour, day, offset;
96 timeu64_t time;
98 time = rtc_tm_to_time64(tm);
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);
105 offset = time - (day * 86400 + hour * 3600 + min * 60 + sec);
107 writel(offset, rtc->rtc_base + FTRTC010_RTC_RECORD);
108 writel(0x01, rtc->rtc_base + FTRTC010_RTC_CR);
110 return 0;
113 static const struct rtc_class_ops ftrtc010_rtc_ops = {
114 .read_time = ftrtc010_rtc_read_time,
115 .set_time = ftrtc010_rtc_set_time,
118 static int ftrtc010_rtc_probe(struct platform_device *pdev)
120 u32 days, hour, min, sec;
121 struct ftrtc010_rtc *rtc;
122 struct device *dev = &pdev->dev;
123 struct resource *res;
124 int ret;
126 rtc = devm_kzalloc(&pdev->dev, sizeof(*rtc), GFP_KERNEL);
127 if (unlikely(!rtc))
128 return -ENOMEM;
129 platform_set_drvdata(pdev, rtc);
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;
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;
152 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
153 if (!res)
154 return -ENODEV;
156 rtc->rtc_irq = res->start;
158 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
159 if (!res)
160 return -ENODEV;
162 rtc->rtc_base = devm_ioremap(dev, res->start,
163 resource_size(res));
164 if (!rtc->rtc_base)
165 return -ENOMEM;
167 rtc->rtc_dev = devm_rtc_allocate_device(dev);
168 if (IS_ERR(rtc->rtc_dev))
169 return PTR_ERR(rtc->rtc_dev);
171 rtc->rtc_dev->ops = &ftrtc010_rtc_ops;
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);
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;
182 ret = devm_request_irq(dev, rtc->rtc_irq, ftrtc010_rtc_interrupt,
183 IRQF_SHARED, pdev->name, dev);
184 if (unlikely(ret))
185 return ret;
187 return rtc_register_device(rtc->rtc_dev);
190 static int ftrtc010_rtc_remove(struct platform_device *pdev)
192 struct ftrtc010_rtc *rtc = platform_get_drvdata(pdev);
194 if (!IS_ERR(rtc->extclk))
195 clk_disable_unprepare(rtc->extclk);
196 if (!IS_ERR(rtc->pclk))
197 clk_disable_unprepare(rtc->pclk);
199 return 0;
202 static const struct of_device_id ftrtc010_rtc_dt_match[] = {
203 { .compatible = "cortina,gemini-rtc" },
204 { .compatible = "faraday,ftrtc010" },
207 MODULE_DEVICE_TABLE(of, ftrtc010_rtc_dt_match);
209 static struct platform_driver ftrtc010_rtc_driver = {
210 .driver = {
211 .name = DRV_NAME,
212 .of_match_table = ftrtc010_rtc_dt_match,
214 .probe = ftrtc010_rtc_probe,
215 .remove = ftrtc010_rtc_remove,
218 module_platform_driver_probe(ftrtc010_rtc_driver, ftrtc010_rtc_probe);