]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/rtc/rtc-generic.c
char/genrtc: remove powerpc support
[mirror_ubuntu-artful-kernel.git] / drivers / rtc / rtc-generic.c
CommitLineData
3afe6d04
GU
1/* rtc-generic: RTC driver using the generic RTC abstraction
2 *
3 * Copyright (C) 2008 Kyle McMartin <kyle@mcmartin.ca>
4 */
5
6#include <linux/kernel.h>
7#include <linux/module.h>
8#include <linux/time.h>
9#include <linux/platform_device.h>
10#include <linux/rtc.h>
11
169047f4 12#if 0
3afe6d04
GU
13#include <asm/rtc.h>
14
15static int generic_get_time(struct device *dev, struct rtc_time *tm)
16{
17 unsigned int ret = get_rtc_time(tm);
18
19 if (ret & RTC_BATT_BAD)
20 return -EOPNOTSUPP;
21
22 return rtc_valid_tm(tm);
23}
24
25static int generic_set_time(struct device *dev, struct rtc_time *tm)
26{
27 if (set_rtc_time(tm) < 0)
28 return -EOPNOTSUPP;
29
30 return 0;
31}
32
33static const struct rtc_class_ops generic_rtc_ops = {
34 .read_time = generic_get_time,
35 .set_time = generic_set_time,
36};
64232fc3
AB
37#else
38#define generic_rtc_ops *(struct rtc_class_ops*)NULL
39#endif
3afe6d04
GU
40
41static int __init generic_rtc_probe(struct platform_device *dev)
42{
43 struct rtc_device *rtc;
64232fc3
AB
44 const struct rtc_class_ops *ops;
45
46 ops = dev_get_platdata(&dev->dev);
47 if (!ops)
48 ops = &generic_rtc_ops;
3afe6d04 49
360fe134 50 rtc = devm_rtc_device_register(&dev->dev, "rtc-generic",
64232fc3 51 ops, THIS_MODULE);
3afe6d04
GU
52 if (IS_ERR(rtc))
53 return PTR_ERR(rtc);
54
55 platform_set_drvdata(dev, rtc);
56
57 return 0;
58}
59
3afe6d04
GU
60static struct platform_driver generic_rtc_driver = {
61 .driver = {
62 .name = "rtc-generic",
3afe6d04 63 },
3afe6d04
GU
64};
65
a53f9a4e 66module_platform_driver_probe(generic_rtc_driver, generic_rtc_probe);
3afe6d04
GU
67
68MODULE_AUTHOR("Kyle McMartin <kyle@mcmartin.ca>");
69MODULE_LICENSE("GPL");
70MODULE_DESCRIPTION("Generic RTC driver");
71MODULE_ALIAS("platform:rtc-generic");