Blame view

drivers/rtc/rtc-max8925.c 8.01 KB
d2912cb15   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-only
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
2
3
4
5
6
  /*
   * RTC driver for Maxim MAX8925
   *
   * Copyright (C) 2009-2010 Marvell International Ltd.
   *	Haojian Zhuang <haojian.zhuang@marvell.com>
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
7
8
9
10
   */
  
  #include <linux/module.h>
  #include <linux/i2c.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
11
  #include <linux/slab.h>
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  #include <linux/rtc.h>
  #include <linux/platform_device.h>
  #include <linux/mfd/max8925.h>
  
  enum {
  	RTC_SEC = 0,
  	RTC_MIN,
  	RTC_HOUR,
  	RTC_WEEKDAY,
  	RTC_DATE,
  	RTC_MONTH,
  	RTC_YEAR1,
  	RTC_YEAR2,
  };
  
  #define MAX8925_RTC_SEC			0x00
  #define MAX8925_RTC_MIN			0x01
  #define MAX8925_RTC_HOUR		0x02
  #define MAX8925_RTC_WEEKDAY		0x03
  #define MAX8925_RTC_DATE		0x04
  #define MAX8925_RTC_MONTH		0x05
  #define MAX8925_RTC_YEAR1		0x06
  #define MAX8925_RTC_YEAR2		0x07
  #define MAX8925_ALARM0_SEC		0x08
  #define MAX8925_ALARM0_MIN		0x09
  #define MAX8925_ALARM0_HOUR		0x0a
  #define MAX8925_ALARM0_WEEKDAY		0x0b
  #define MAX8925_ALARM0_DATE		0x0c
  #define MAX8925_ALARM0_MON		0x0d
  #define MAX8925_ALARM0_YEAR1		0x0e
  #define MAX8925_ALARM0_YEAR2		0x0f
  #define MAX8925_ALARM1_SEC		0x10
  #define MAX8925_ALARM1_MIN		0x11
  #define MAX8925_ALARM1_HOUR		0x12
  #define MAX8925_ALARM1_WEEKDAY		0x13
  #define MAX8925_ALARM1_DATE		0x14
  #define MAX8925_ALARM1_MON		0x15
  #define MAX8925_ALARM1_YEAR1		0x16
  #define MAX8925_ALARM1_YEAR2		0x17
  #define MAX8925_RTC_CNTL		0x1b
  #define MAX8925_RTC_STATUS		0x20
  
  #define TIME_NUM			8
  #define ALARM_1SEC			(1 << 7)
  #define HOUR_12				(1 << 7)
  #define HOUR_AM_PM			(1 << 5)
  #define ALARM0_IRQ			(1 << 3)
  #define ALARM1_IRQ			(1 << 2)
  #define ALARM0_STATUS			(1 << 2)
  #define ALARM1_STATUS			(1 << 1)
  
  
  struct max8925_rtc_info {
  	struct rtc_device	*rtc_dev;
  	struct max8925_chip	*chip;
  	struct i2c_client	*rtc;
  	struct device		*dev;
c1a2f31df   Haojian Zhuang   mfd: Transfer rtc...
69
  	int			irq;
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
  };
  
  static irqreturn_t rtc_update_handler(int irq, void *data)
  {
  	struct max8925_rtc_info *info = (struct max8925_rtc_info *)data;
  
  	/* disable ALARM0 except for 1SEC alarm */
  	max8925_set_bits(info->rtc, MAX8925_ALARM0_CNTL, 0x7f, 0);
  	rtc_update_irq(info->rtc_dev, 1, RTC_IRQF | RTC_AF);
  	return IRQ_HANDLED;
  }
  
  static int tm_calc(struct rtc_time *tm, unsigned char *buf, int len)
  {
  	if (len < TIME_NUM)
  		return -EINVAL;
  	tm->tm_year = (buf[RTC_YEAR2] >> 4) * 1000
  			+ (buf[RTC_YEAR2] & 0xf) * 100
  			+ (buf[RTC_YEAR1] >> 4) * 10
  			+ (buf[RTC_YEAR1] & 0xf);
  	tm->tm_year -= 1900;
  	tm->tm_mon = ((buf[RTC_MONTH] >> 4) & 0x01) * 10
  			+ (buf[RTC_MONTH] & 0x0f);
  	tm->tm_mday = ((buf[RTC_DATE] >> 4) & 0x03) * 10
  			+ (buf[RTC_DATE] & 0x0f);
  	tm->tm_wday = buf[RTC_WEEKDAY] & 0x07;
  	if (buf[RTC_HOUR] & HOUR_12) {
  		tm->tm_hour = ((buf[RTC_HOUR] >> 4) & 0x1) * 10
  				+ (buf[RTC_HOUR] & 0x0f);
  		if (buf[RTC_HOUR] & HOUR_AM_PM)
  			tm->tm_hour += 12;
  	} else
  		tm->tm_hour = ((buf[RTC_HOUR] >> 4) & 0x03) * 10
  				+ (buf[RTC_HOUR] & 0x0f);
  	tm->tm_min = ((buf[RTC_MIN] >> 4) & 0x7) * 10
  			+ (buf[RTC_MIN] & 0x0f);
  	tm->tm_sec = ((buf[RTC_SEC] >> 4) & 0x7) * 10
  			+ (buf[RTC_SEC] & 0x0f);
  	return 0;
  }
  
  static int data_calc(unsigned char *buf, struct rtc_time *tm, int len)
  {
  	unsigned char high, low;
  
  	if (len < TIME_NUM)
  		return -EINVAL;
  
  	high = (tm->tm_year + 1900) / 1000;
  	low = (tm->tm_year + 1900) / 100;
  	low = low - high * 10;
  	buf[RTC_YEAR2] = (high << 4) + low;
  	high = (tm->tm_year + 1900) / 10;
  	low = tm->tm_year + 1900;
  	low = low - high * 10;
  	high = high - (high / 10) * 10;
  	buf[RTC_YEAR1] = (high << 4) + low;
  	high = tm->tm_mon / 10;
  	low = tm->tm_mon;
  	low = low - high * 10;
  	buf[RTC_MONTH] = (high << 4) + low;
  	high = tm->tm_mday / 10;
  	low = tm->tm_mday;
  	low = low - high * 10;
  	buf[RTC_DATE] = (high << 4) + low;
  	buf[RTC_WEEKDAY] = tm->tm_wday;
  	high = tm->tm_hour / 10;
  	low = tm->tm_hour;
  	low = low - high * 10;
  	buf[RTC_HOUR] = (high << 4) + low;
  	high = tm->tm_min / 10;
  	low = tm->tm_min;
  	low = low - high * 10;
  	buf[RTC_MIN] = (high << 4) + low;
  	high = tm->tm_sec / 10;
  	low = tm->tm_sec;
  	low = low - high * 10;
  	buf[RTC_SEC] = (high << 4) + low;
  	return 0;
  }
  
  static int max8925_rtc_read_time(struct device *dev, struct rtc_time *tm)
  {
  	struct max8925_rtc_info *info = dev_get_drvdata(dev);
  	unsigned char buf[TIME_NUM];
  	int ret;
  
  	ret = max8925_bulk_read(info->rtc, MAX8925_RTC_SEC, TIME_NUM, buf);
  	if (ret < 0)
  		goto out;
  	ret = tm_calc(tm, buf, TIME_NUM);
  out:
  	return ret;
  }
  
  static int max8925_rtc_set_time(struct device *dev, struct rtc_time *tm)
  {
  	struct max8925_rtc_info *info = dev_get_drvdata(dev);
  	unsigned char buf[TIME_NUM];
  	int ret;
  
  	ret = data_calc(buf, tm, TIME_NUM);
  	if (ret < 0)
  		goto out;
  	ret = max8925_bulk_write(info->rtc, MAX8925_RTC_SEC, TIME_NUM, buf);
  out:
  	return ret;
  }
  
  static int max8925_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
  {
  	struct max8925_rtc_info *info = dev_get_drvdata(dev);
  	unsigned char buf[TIME_NUM];
  	int ret;
  
  	ret = max8925_bulk_read(info->rtc, MAX8925_ALARM0_SEC, TIME_NUM, buf);
  	if (ret < 0)
  		goto out;
  	ret = tm_calc(&alrm->time, buf, TIME_NUM);
  	if (ret < 0)
  		goto out;
  	ret = max8925_reg_read(info->rtc, MAX8925_RTC_IRQ_MASK);
  	if (ret < 0)
  		goto out;
fad0738dc   Kevin Liu   drivers/rtc/rtc-m...
194
  	if (ret & ALARM0_IRQ) {
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
195
  		alrm->enabled = 0;
fad0738dc   Kevin Liu   drivers/rtc/rtc-m...
196
197
198
199
200
201
202
203
204
  	} else {
  		ret = max8925_reg_read(info->rtc, MAX8925_ALARM0_CNTL);
  		if (ret < 0)
  			goto out;
  		if (!ret)
  			alrm->enabled = 0;
  		else
  			alrm->enabled = 1;
  	}
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
205
206
207
208
209
210
211
  	ret = max8925_reg_read(info->rtc, MAX8925_RTC_STATUS);
  	if (ret < 0)
  		goto out;
  	if (ret & ALARM0_STATUS)
  		alrm->pending = 1;
  	else
  		alrm->pending = 0;
0cf30bdd9   Kevin Liu   drivers/rtc/rtc-m...
212
  	return 0;
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
  out:
  	return ret;
  }
  
  static int max8925_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
  {
  	struct max8925_rtc_info *info = dev_get_drvdata(dev);
  	unsigned char buf[TIME_NUM];
  	int ret;
  
  	ret = data_calc(buf, &alrm->time, TIME_NUM);
  	if (ret < 0)
  		goto out;
  	ret = max8925_bulk_write(info->rtc, MAX8925_ALARM0_SEC, TIME_NUM, buf);
  	if (ret < 0)
  		goto out;
fad0738dc   Kevin Liu   drivers/rtc/rtc-m...
229
230
231
232
233
  	if (alrm->enabled)
  		/* only enable alarm on year/month/day/hour/min/sec */
  		ret = max8925_reg_write(info->rtc, MAX8925_ALARM0_CNTL, 0x77);
  	else
  		ret = max8925_reg_write(info->rtc, MAX8925_ALARM0_CNTL, 0x0);
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
234
235
236
237
238
239
240
241
242
243
  out:
  	return ret;
  }
  
  static const struct rtc_class_ops max8925_rtc_ops = {
  	.read_time	= max8925_rtc_read_time,
  	.set_time	= max8925_rtc_set_time,
  	.read_alarm	= max8925_rtc_read_alarm,
  	.set_alarm	= max8925_rtc_set_alarm,
  };
5a167f454   Greg Kroah-Hartman   Drivers: rtc: rem...
244
  static int max8925_rtc_probe(struct platform_device *pdev)
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
245
246
247
  {
  	struct max8925_chip *chip = dev_get_drvdata(pdev->dev.parent);
  	struct max8925_rtc_info *info;
c1a2f31df   Haojian Zhuang   mfd: Transfer rtc...
248
  	int ret;
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
249

e035be6a5   Sachin Kamat   drivers/rtc/rtc-m...
250
251
  	info = devm_kzalloc(&pdev->dev, sizeof(struct max8925_rtc_info),
  			    GFP_KERNEL);
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
252
253
254
255
256
  	if (!info)
  		return -ENOMEM;
  	info->chip = chip;
  	info->rtc = chip->rtc;
  	info->dev = &pdev->dev;
c1a2f31df   Haojian Zhuang   mfd: Transfer rtc...
257
  	info->irq = platform_get_irq(pdev, 0);
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
258

e035be6a5   Sachin Kamat   drivers/rtc/rtc-m...
259
260
261
  	ret = devm_request_threaded_irq(&pdev->dev, info->irq, NULL,
  					rtc_update_handler, IRQF_ONESHOT,
  					"rtc-alarm0", info);
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
262
263
264
  	if (ret < 0) {
  		dev_err(chip->dev, "Failed to request IRQ: #%d: %d
  ",
c1a2f31df   Haojian Zhuang   mfd: Transfer rtc...
265
  			info->irq, ret);
28e1de094   Jingoo Han   rtc: rtc-max8925:...
266
  		return ret;
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
267
  	}
f945a3d96   Zhangfei Gao   rtc: max8925: Cal...
268
  	dev_set_drvdata(&pdev->dev, info);
2f5c4fe8f   John Stultz   rtc: max8925: Ini...
269
270
  	/* XXX - isn't this redundant? */
  	platform_set_drvdata(pdev, info);
f945a3d96   Zhangfei Gao   rtc: max8925: Cal...
271

74d836c41   Kevin Liu   rtc: max8925: Add...
272
  	device_init_wakeup(&pdev->dev, 1);
e035be6a5   Sachin Kamat   drivers/rtc/rtc-m...
273
  	info->rtc_dev = devm_rtc_device_register(&pdev->dev, "max8925-rtc",
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
274
275
276
277
278
  					&max8925_rtc_ops, THIS_MODULE);
  	ret = PTR_ERR(info->rtc_dev);
  	if (IS_ERR(info->rtc_dev)) {
  		dev_err(&pdev->dev, "Failed to register RTC device: %d
  ", ret);
28e1de094   Jingoo Han   rtc: rtc-max8925:...
279
  		return ret;
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
280
  	}
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
281
  	return 0;
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
282
  }
74d836c41   Kevin Liu   rtc: max8925: Add...
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
  #ifdef CONFIG_PM_SLEEP
  static int max8925_rtc_suspend(struct device *dev)
  {
  	struct platform_device *pdev = to_platform_device(dev);
  	struct max8925_chip *chip = dev_get_drvdata(pdev->dev.parent);
  
  	if (device_may_wakeup(dev))
  		chip->wakeup_flag |= 1 << MAX8925_IRQ_RTC_ALARM0;
  	return 0;
  }
  static int max8925_rtc_resume(struct device *dev)
  {
  	struct platform_device *pdev = to_platform_device(dev);
  	struct max8925_chip *chip = dev_get_drvdata(pdev->dev.parent);
  
  	if (device_may_wakeup(dev))
  		chip->wakeup_flag &= ~(1 << MAX8925_IRQ_RTC_ALARM0);
  	return 0;
  }
  #endif
  
  static SIMPLE_DEV_PM_OPS(max8925_rtc_pm_ops, max8925_rtc_suspend, max8925_rtc_resume);
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
305
306
307
  static struct platform_driver max8925_rtc_driver = {
  	.driver		= {
  		.name	= "max8925-rtc",
74d836c41   Kevin Liu   rtc: max8925: Add...
308
  		.pm     = &max8925_rtc_pm_ops,
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
309
310
  	},
  	.probe		= max8925_rtc_probe,
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
311
  };
0c4eae665   Axel Lin   rtc: convert driv...
312
  module_platform_driver(max8925_rtc_driver);
a39069f6c   Haojian Zhuang   rtc: Enable rtc i...
313
314
315
316
  
  MODULE_DESCRIPTION("Maxim MAX8925 RTC driver");
  MODULE_AUTHOR("Haojian Zhuang <haojian.zhuang@marvell.com>");
  MODULE_LICENSE("GPL");