Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 1 | /* |
| 2 | * A driver for the RTC embedded in the Cirrus Logic EP93XX processors |
| 3 | * Copyright (c) 2006 Tower Technologies |
| 4 | * |
| 5 | * Author: Alessandro Zummo <a.zummo@towertech.it> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/rtc.h> |
| 14 | #include <linux/platform_device.h> |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 15 | #include <linux/io.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 16 | #include <linux/gfp.h> |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 17 | |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 18 | #define EP93XX_RTC_DATA 0x000 |
| 19 | #define EP93XX_RTC_MATCH 0x004 |
| 20 | #define EP93XX_RTC_STATUS 0x008 |
| 21 | #define EP93XX_RTC_STATUS_INTR (1<<0) |
| 22 | #define EP93XX_RTC_LOAD 0x00C |
| 23 | #define EP93XX_RTC_CONTROL 0x010 |
| 24 | #define EP93XX_RTC_CONTROL_MIE (1<<0) |
| 25 | #define EP93XX_RTC_SWCOMP 0x108 |
| 26 | #define EP93XX_RTC_SWCOMP_DEL_MASK 0x001f0000 |
| 27 | #define EP93XX_RTC_SWCOMP_DEL_SHIFT 16 |
| 28 | #define EP93XX_RTC_SWCOMP_INT_MASK 0x0000ffff |
| 29 | #define EP93XX_RTC_SWCOMP_INT_SHIFT 0 |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 30 | |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 31 | struct ep93xx_rtc { |
| 32 | void __iomem *mmio_base; |
Axel Lin | bf6ed02 | 2011-08-10 21:11:26 +0800 | [diff] [blame] | 33 | struct rtc_device *rtc; |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 34 | }; |
| 35 | |
| 36 | static int ep93xx_rtc_get_swcomp(struct device *dev, unsigned short *preload, |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 37 | unsigned short *delete) |
| 38 | { |
Jingoo Han | 28dc5f8 | 2013-11-12 15:10:43 -0800 | [diff] [blame] | 39 | struct ep93xx_rtc *ep93xx_rtc = dev_get_platdata(dev); |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 40 | unsigned long comp; |
| 41 | |
H Hartley Sweeten | ff32ff1 | 2012-03-21 10:55:31 -0700 | [diff] [blame] | 42 | comp = readl(ep93xx_rtc->mmio_base + EP93XX_RTC_SWCOMP); |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 43 | |
| 44 | if (preload) |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 45 | *preload = (comp & EP93XX_RTC_SWCOMP_INT_MASK) |
| 46 | >> EP93XX_RTC_SWCOMP_INT_SHIFT; |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 47 | |
| 48 | if (delete) |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 49 | *delete = (comp & EP93XX_RTC_SWCOMP_DEL_MASK) |
| 50 | >> EP93XX_RTC_SWCOMP_DEL_SHIFT; |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 51 | |
| 52 | return 0; |
| 53 | } |
| 54 | |
| 55 | static int ep93xx_rtc_read_time(struct device *dev, struct rtc_time *tm) |
| 56 | { |
Jingoo Han | 28dc5f8 | 2013-11-12 15:10:43 -0800 | [diff] [blame] | 57 | struct ep93xx_rtc *ep93xx_rtc = dev_get_platdata(dev); |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 58 | unsigned long time; |
| 59 | |
Colin Ian King | 725412d9 | 2018-11-01 14:53:52 +0000 | [diff] [blame] | 60 | time = readl(ep93xx_rtc->mmio_base + EP93XX_RTC_DATA); |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 61 | |
| 62 | rtc_time_to_tm(time, tm); |
| 63 | return 0; |
| 64 | } |
| 65 | |
| 66 | static int ep93xx_rtc_set_mmss(struct device *dev, unsigned long secs) |
| 67 | { |
Jingoo Han | 28dc5f8 | 2013-11-12 15:10:43 -0800 | [diff] [blame] | 68 | struct ep93xx_rtc *ep93xx_rtc = dev_get_platdata(dev); |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 69 | |
H Hartley Sweeten | ff32ff1 | 2012-03-21 10:55:31 -0700 | [diff] [blame] | 70 | writel(secs + 1, ep93xx_rtc->mmio_base + EP93XX_RTC_LOAD); |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 71 | return 0; |
| 72 | } |
| 73 | |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 74 | static int ep93xx_rtc_proc(struct device *dev, struct seq_file *seq) |
| 75 | { |
| 76 | unsigned short preload, delete; |
| 77 | |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 78 | ep93xx_rtc_get_swcomp(dev, &preload, &delete); |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 79 | |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 80 | seq_printf(seq, "preload\t\t: %d\n", preload); |
| 81 | seq_printf(seq, "delete\t\t: %d\n", delete); |
| 82 | |
| 83 | return 0; |
| 84 | } |
| 85 | |
David Brownell | ff8371a | 2006-09-30 23:28:17 -0700 | [diff] [blame] | 86 | static const struct rtc_class_ops ep93xx_rtc_ops = { |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 87 | .read_time = ep93xx_rtc_read_time, |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 88 | .set_mmss = ep93xx_rtc_set_mmss, |
| 89 | .proc = ep93xx_rtc_proc, |
| 90 | }; |
| 91 | |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 92 | static ssize_t ep93xx_rtc_show_comp_preload(struct device *dev, |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 93 | struct device_attribute *attr, char *buf) |
| 94 | { |
| 95 | unsigned short preload; |
| 96 | |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 97 | ep93xx_rtc_get_swcomp(dev, &preload, NULL); |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 98 | |
| 99 | return sprintf(buf, "%d\n", preload); |
| 100 | } |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 101 | static DEVICE_ATTR(comp_preload, S_IRUGO, ep93xx_rtc_show_comp_preload, NULL); |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 102 | |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 103 | static ssize_t ep93xx_rtc_show_comp_delete(struct device *dev, |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 104 | struct device_attribute *attr, char *buf) |
| 105 | { |
| 106 | unsigned short delete; |
| 107 | |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 108 | ep93xx_rtc_get_swcomp(dev, NULL, &delete); |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 109 | |
| 110 | return sprintf(buf, "%d\n", delete); |
| 111 | } |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 112 | static DEVICE_ATTR(comp_delete, S_IRUGO, ep93xx_rtc_show_comp_delete, NULL); |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 113 | |
H Hartley Sweeten | b4877d2 | 2010-03-05 13:44:20 -0800 | [diff] [blame] | 114 | static struct attribute *ep93xx_rtc_attrs[] = { |
| 115 | &dev_attr_comp_preload.attr, |
| 116 | &dev_attr_comp_delete.attr, |
| 117 | NULL |
| 118 | }; |
| 119 | |
| 120 | static const struct attribute_group ep93xx_rtc_sysfs_files = { |
| 121 | .attrs = ep93xx_rtc_attrs, |
| 122 | }; |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 123 | |
Greg Kroah-Hartman | 5a167f4 | 2012-12-21 13:09:38 -0800 | [diff] [blame] | 124 | static int ep93xx_rtc_probe(struct platform_device *pdev) |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 125 | { |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 126 | struct ep93xx_rtc *ep93xx_rtc; |
| 127 | struct resource *res; |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 128 | int err; |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 129 | |
H Hartley Sweeten | b4877d2 | 2010-03-05 13:44:20 -0800 | [diff] [blame] | 130 | ep93xx_rtc = devm_kzalloc(&pdev->dev, sizeof(*ep93xx_rtc), GFP_KERNEL); |
| 131 | if (!ep93xx_rtc) |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 132 | return -ENOMEM; |
| 133 | |
| 134 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Julia Lawall | 7c1d69e | 2013-09-11 14:24:27 -0700 | [diff] [blame] | 135 | ep93xx_rtc->mmio_base = devm_ioremap_resource(&pdev->dev, res); |
| 136 | if (IS_ERR(ep93xx_rtc->mmio_base)) |
| 137 | return PTR_ERR(ep93xx_rtc->mmio_base); |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 138 | |
Axel Lin | bf6ed02 | 2011-08-10 21:11:26 +0800 | [diff] [blame] | 139 | platform_set_drvdata(pdev, ep93xx_rtc); |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 140 | |
Alexandre Belloni | bac68b3 | 2019-04-19 09:59:59 +0200 | [diff] [blame^] | 141 | ep93xx_rtc->rtc = devm_rtc_allocate_device(&pdev->dev); |
Alexandre Belloni | b809d19 | 2019-04-19 09:59:58 +0200 | [diff] [blame] | 142 | if (IS_ERR(ep93xx_rtc->rtc)) |
| 143 | return PTR_ERR(ep93xx_rtc->rtc); |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 144 | |
Alexandre Belloni | bac68b3 | 2019-04-19 09:59:59 +0200 | [diff] [blame^] | 145 | ep93xx_rtc->rtc->ops = &ep93xx_rtc_ops; |
| 146 | |
| 147 | err = rtc_register_device(ep93xx_rtc->rtc); |
| 148 | if (err) |
| 149 | return err; |
| 150 | |
H Hartley Sweeten | b4877d2 | 2010-03-05 13:44:20 -0800 | [diff] [blame] | 151 | err = sysfs_create_group(&pdev->dev.kobj, &ep93xx_rtc_sysfs_files); |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 152 | if (err) |
Alexandre Belloni | b809d19 | 2019-04-19 09:59:58 +0200 | [diff] [blame] | 153 | return err; |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 154 | |
| 155 | return 0; |
| 156 | } |
| 157 | |
Greg Kroah-Hartman | 5a167f4 | 2012-12-21 13:09:38 -0800 | [diff] [blame] | 158 | static int ep93xx_rtc_remove(struct platform_device *pdev) |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 159 | { |
H Hartley Sweeten | b4877d2 | 2010-03-05 13:44:20 -0800 | [diff] [blame] | 160 | sysfs_remove_group(&pdev->dev.kobj, &ep93xx_rtc_sysfs_files); |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 161 | |
| 162 | return 0; |
| 163 | } |
| 164 | |
Hartley Sweeten | 38f7b00 | 2009-04-15 23:18:26 +0100 | [diff] [blame] | 165 | static struct platform_driver ep93xx_rtc_driver = { |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 166 | .driver = { |
| 167 | .name = "ep93xx-rtc", |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 168 | }, |
H Hartley Sweeten | 84d56b3 | 2012-05-29 15:07:36 -0700 | [diff] [blame] | 169 | .probe = ep93xx_rtc_probe, |
Greg Kroah-Hartman | 5a167f4 | 2012-12-21 13:09:38 -0800 | [diff] [blame] | 170 | .remove = ep93xx_rtc_remove, |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 171 | }; |
| 172 | |
H Hartley Sweeten | 84d56b3 | 2012-05-29 15:07:36 -0700 | [diff] [blame] | 173 | module_platform_driver(ep93xx_rtc_driver); |
Alessandro Zummo | fd507e2 | 2006-03-27 01:16:45 -0800 | [diff] [blame] | 174 | |
| 175 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); |
| 176 | MODULE_DESCRIPTION("EP93XX RTC driver"); |
| 177 | MODULE_LICENSE("GPL"); |
H Hartley Sweeten | 84d56b3 | 2012-05-29 15:07:36 -0700 | [diff] [blame] | 178 | MODULE_ALIAS("platform:ep93xx-rtc"); |