blob: 47db289bb0a39af7af229a66e3d9fa13b1919a03 [file] [log] [blame]
Alessandro Zummo7520b942006-03-27 01:16:45 -08001/*
David Brownellcb26b572007-01-05 16:36:37 -08002 * An I2C driver for Ricoh RS5C372 and RV5C38[67] RTCs
Alessandro Zummo7520b942006-03-27 01:16:45 -08003 *
4 * Copyright (C) 2005 Pavel Mironchik <pmironchik@optifacio.net>
5 * Copyright (C) 2006 Tower Technologies
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/i2c.h>
13#include <linux/rtc.h>
14#include <linux/bcd.h>
15
David Brownelld8154612007-07-17 04:04:55 -070016#define DRV_VERSION "0.5"
Alessandro Zummo7520b942006-03-27 01:16:45 -080017
David Brownellcb26b572007-01-05 16:36:37 -080018
19/*
20 * Ricoh has a family of I2C based RTCs, which differ only slightly from
21 * each other. Differences center on pinout (e.g. how many interrupts,
22 * output clock, etc) and how the control registers are used. The '372
23 * is significant only because that's the one this driver first supported.
24 */
Alessandro Zummo7520b942006-03-27 01:16:45 -080025#define RS5C372_REG_SECS 0
26#define RS5C372_REG_MINS 1
27#define RS5C372_REG_HOURS 2
28#define RS5C372_REG_WDAY 3
29#define RS5C372_REG_DAY 4
30#define RS5C372_REG_MONTH 5
31#define RS5C372_REG_YEAR 6
32#define RS5C372_REG_TRIM 7
David Brownellcb26b572007-01-05 16:36:37 -080033# define RS5C372_TRIM_XSL 0x80
34# define RS5C372_TRIM_MASK 0x7F
Alessandro Zummo7520b942006-03-27 01:16:45 -080035
David Brownellcb26b572007-01-05 16:36:37 -080036#define RS5C_REG_ALARM_A_MIN 8 /* or ALARM_W */
37#define RS5C_REG_ALARM_A_HOURS 9
38#define RS5C_REG_ALARM_A_WDAY 10
Alessandro Zummo7520b942006-03-27 01:16:45 -080039
David Brownellcb26b572007-01-05 16:36:37 -080040#define RS5C_REG_ALARM_B_MIN 11 /* or ALARM_D */
41#define RS5C_REG_ALARM_B_HOURS 12
42#define RS5C_REG_ALARM_B_WDAY 13 /* (ALARM_B only) */
Alessandro Zummo7520b942006-03-27 01:16:45 -080043
David Brownellcb26b572007-01-05 16:36:37 -080044#define RS5C_REG_CTRL1 14
45# define RS5C_CTRL1_AALE (1 << 7) /* or WALE */
46# define RS5C_CTRL1_BALE (1 << 6) /* or DALE */
47# define RV5C387_CTRL1_24 (1 << 5)
48# define RS5C372A_CTRL1_SL1 (1 << 5)
49# define RS5C_CTRL1_CT_MASK (7 << 0)
50# define RS5C_CTRL1_CT0 (0 << 0) /* no periodic irq */
51# define RS5C_CTRL1_CT4 (4 << 0) /* 1 Hz level irq */
52#define RS5C_REG_CTRL2 15
53# define RS5C372_CTRL2_24 (1 << 5)
54# define RS5C_CTRL2_XSTP (1 << 4)
55# define RS5C_CTRL2_CTFG (1 << 2)
56# define RS5C_CTRL2_AAFG (1 << 1) /* or WAFG */
57# define RS5C_CTRL2_BAFG (1 << 0) /* or DAFG */
Alessandro Zummo7520b942006-03-27 01:16:45 -080058
David Brownellcb26b572007-01-05 16:36:37 -080059
60/* to read (style 1) or write registers starting at R */
61#define RS5C_ADDR(R) (((R) << 4) | 0)
62
63
64enum rtc_type {
65 rtc_undef = 0,
66 rtc_rs5c372a,
67 rtc_rs5c372b,
68 rtc_rv5c386,
69 rtc_rv5c387a,
70};
71
72/* REVISIT: this assumes that:
73 * - we're in the 21st century, so it's safe to ignore the century
74 * bit for rv5c38[67] (REG_MONTH bit 7);
75 * - we should use ALARM_A not ALARM_B (may be wrong on some boards)
76 */
Riku Voipioc6f24f92006-12-06 20:39:13 -080077struct rs5c372 {
David Brownellcb26b572007-01-05 16:36:37 -080078 struct i2c_client *client;
79 struct rtc_device *rtc;
80 enum rtc_type type;
81 unsigned time24:1;
82 unsigned has_irq:1;
83 char buf[17];
84 char *regs;
Riku Voipioc6f24f92006-12-06 20:39:13 -080085};
86
David Brownellcb26b572007-01-05 16:36:37 -080087static int rs5c_get_regs(struct rs5c372 *rs5c)
Alessandro Zummo7520b942006-03-27 01:16:45 -080088{
David Brownellcb26b572007-01-05 16:36:37 -080089 struct i2c_client *client = rs5c->client;
90 struct i2c_msg msgs[] = {
91 { client->addr, I2C_M_RD, sizeof rs5c->buf, rs5c->buf },
92 };
Alessandro Zummo7520b942006-03-27 01:16:45 -080093
David Brownellcb26b572007-01-05 16:36:37 -080094 /* This implements the third reading method from the datasheet, using
95 * an internal address that's reset after each transaction (by STOP)
96 * to 0x0f ... so we read extra registers, and skip the first one.
97 *
98 * The first method doesn't work with the iop3xx adapter driver, on at
99 * least 80219 chips; this works around that bug.
Alessandro Zummo7520b942006-03-27 01:16:45 -0800100 */
David Brownellcb26b572007-01-05 16:36:37 -0800101 if ((i2c_transfer(client->adapter, msgs, 1)) != 1) {
Paul Mundte2bfe342008-04-28 02:11:57 -0700102 dev_warn(&client->dev, "can't read registers\n");
Alessandro Zummo7520b942006-03-27 01:16:45 -0800103 return -EIO;
104 }
105
David Brownellcb26b572007-01-05 16:36:37 -0800106 dev_dbg(&client->dev,
107 "%02x %02x %02x (%02x) %02x %02x %02x (%02x), "
108 "%02x %02x %02x, %02x %02x %02x; %02x %02x\n",
109 rs5c->regs[0], rs5c->regs[1], rs5c->regs[2], rs5c->regs[3],
110 rs5c->regs[4], rs5c->regs[5], rs5c->regs[6], rs5c->regs[7],
111 rs5c->regs[8], rs5c->regs[9], rs5c->regs[10], rs5c->regs[11],
112 rs5c->regs[12], rs5c->regs[13], rs5c->regs[14], rs5c->regs[15]);
113
114 return 0;
115}
116
117static unsigned rs5c_reg2hr(struct rs5c372 *rs5c, unsigned reg)
118{
119 unsigned hour;
120
121 if (rs5c->time24)
122 return BCD2BIN(reg & 0x3f);
123
124 hour = BCD2BIN(reg & 0x1f);
125 if (hour == 12)
126 hour = 0;
127 if (reg & 0x20)
128 hour += 12;
129 return hour;
130}
131
132static unsigned rs5c_hr2reg(struct rs5c372 *rs5c, unsigned hour)
133{
134 if (rs5c->time24)
135 return BIN2BCD(hour);
136
137 if (hour > 12)
138 return 0x20 | BIN2BCD(hour - 12);
139 if (hour == 12)
140 return 0x20 | BIN2BCD(12);
141 if (hour == 0)
142 return BIN2BCD(12);
143 return BIN2BCD(hour);
144}
145
146static int rs5c372_get_datetime(struct i2c_client *client, struct rtc_time *tm)
147{
148 struct rs5c372 *rs5c = i2c_get_clientdata(client);
149 int status = rs5c_get_regs(rs5c);
150
151 if (status < 0)
152 return status;
153
154 tm->tm_sec = BCD2BIN(rs5c->regs[RS5C372_REG_SECS] & 0x7f);
155 tm->tm_min = BCD2BIN(rs5c->regs[RS5C372_REG_MINS] & 0x7f);
156 tm->tm_hour = rs5c_reg2hr(rs5c, rs5c->regs[RS5C372_REG_HOURS]);
157
158 tm->tm_wday = BCD2BIN(rs5c->regs[RS5C372_REG_WDAY] & 0x07);
159 tm->tm_mday = BCD2BIN(rs5c->regs[RS5C372_REG_DAY] & 0x3f);
Alessandro Zummo7520b942006-03-27 01:16:45 -0800160
161 /* tm->tm_mon is zero-based */
David Brownellcb26b572007-01-05 16:36:37 -0800162 tm->tm_mon = BCD2BIN(rs5c->regs[RS5C372_REG_MONTH] & 0x1f) - 1;
Alessandro Zummo7520b942006-03-27 01:16:45 -0800163
164 /* year is 1900 + tm->tm_year */
David Brownellcb26b572007-01-05 16:36:37 -0800165 tm->tm_year = BCD2BIN(rs5c->regs[RS5C372_REG_YEAR]) + 100;
Alessandro Zummo7520b942006-03-27 01:16:45 -0800166
167 dev_dbg(&client->dev, "%s: tm is secs=%d, mins=%d, hours=%d, "
168 "mday=%d, mon=%d, year=%d, wday=%d\n",
Harvey Harrison2a4e2b8782008-04-28 02:12:00 -0700169 __func__,
Alessandro Zummo7520b942006-03-27 01:16:45 -0800170 tm->tm_sec, tm->tm_min, tm->tm_hour,
171 tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday);
172
David Brownellcb26b572007-01-05 16:36:37 -0800173 /* rtc might need initialization */
174 return rtc_valid_tm(tm);
Alessandro Zummo7520b942006-03-27 01:16:45 -0800175}
176
177static int rs5c372_set_datetime(struct i2c_client *client, struct rtc_time *tm)
178{
David Brownellcb26b572007-01-05 16:36:37 -0800179 struct rs5c372 *rs5c = i2c_get_clientdata(client);
180 unsigned char buf[8];
Alessandro Zummo7520b942006-03-27 01:16:45 -0800181
David Brownellcb26b572007-01-05 16:36:37 -0800182 dev_dbg(&client->dev, "%s: tm is secs=%d, mins=%d, hours=%d "
Alessandro Zummo7520b942006-03-27 01:16:45 -0800183 "mday=%d, mon=%d, year=%d, wday=%d\n",
Harvey Harrison2a4e2b8782008-04-28 02:12:00 -0700184 __func__,
David Brownellcb26b572007-01-05 16:36:37 -0800185 tm->tm_sec, tm->tm_min, tm->tm_hour,
Alessandro Zummo7520b942006-03-27 01:16:45 -0800186 tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday);
187
David Brownellcb26b572007-01-05 16:36:37 -0800188 buf[0] = RS5C_ADDR(RS5C372_REG_SECS);
Alessandro Zummo7520b942006-03-27 01:16:45 -0800189 buf[1] = BIN2BCD(tm->tm_sec);
190 buf[2] = BIN2BCD(tm->tm_min);
David Brownellcb26b572007-01-05 16:36:37 -0800191 buf[3] = rs5c_hr2reg(rs5c, tm->tm_hour);
Alessandro Zummo7520b942006-03-27 01:16:45 -0800192 buf[4] = BIN2BCD(tm->tm_wday);
193 buf[5] = BIN2BCD(tm->tm_mday);
194 buf[6] = BIN2BCD(tm->tm_mon + 1);
195 buf[7] = BIN2BCD(tm->tm_year - 100);
196
197 if ((i2c_master_send(client, buf, 8)) != 8) {
Harvey Harrison2a4e2b8782008-04-28 02:12:00 -0700198 dev_err(&client->dev, "%s: write error\n", __func__);
Alessandro Zummo7520b942006-03-27 01:16:45 -0800199 return -EIO;
200 }
201
202 return 0;
203}
204
David Brownellcb26b572007-01-05 16:36:37 -0800205#if defined(CONFIG_RTC_INTF_PROC) || defined(CONFIG_RTC_INTF_PROC_MODULE)
206#define NEED_TRIM
207#endif
208
209#if defined(CONFIG_RTC_INTF_SYSFS) || defined(CONFIG_RTC_INTF_SYSFS_MODULE)
210#define NEED_TRIM
211#endif
212
213#ifdef NEED_TRIM
Alessandro Zummo7520b942006-03-27 01:16:45 -0800214static int rs5c372_get_trim(struct i2c_client *client, int *osc, int *trim)
215{
Riku Voipioc6f24f92006-12-06 20:39:13 -0800216 struct rs5c372 *rs5c372 = i2c_get_clientdata(client);
David Brownellcb26b572007-01-05 16:36:37 -0800217 u8 tmp = rs5c372->regs[RS5C372_REG_TRIM];
Alessandro Zummo7520b942006-03-27 01:16:45 -0800218
Alessandro Zummo7520b942006-03-27 01:16:45 -0800219 if (osc)
Riku Voipioc6f24f92006-12-06 20:39:13 -0800220 *osc = (tmp & RS5C372_TRIM_XSL) ? 32000 : 32768;
Alessandro Zummo7520b942006-03-27 01:16:45 -0800221
Adrian Bunk17ad78e52006-11-25 11:09:29 -0800222 if (trim) {
Harvey Harrison2a4e2b8782008-04-28 02:12:00 -0700223 dev_dbg(&client->dev, "%s: raw trim=%x\n", __func__, tmp);
David Brownellcb26b572007-01-05 16:36:37 -0800224 tmp &= RS5C372_TRIM_MASK;
225 if (tmp & 0x3e) {
226 int t = tmp & 0x3f;
227
228 if (tmp & 0x40)
229 t = (~t | (s8)0xc0) + 1;
230 else
231 t = t - 1;
232
233 tmp = t * 2;
234 } else
235 tmp = 0;
236 *trim = tmp;
Adrian Bunk17ad78e52006-11-25 11:09:29 -0800237 }
Alessandro Zummo7520b942006-03-27 01:16:45 -0800238
239 return 0;
240}
David Brownellcb26b572007-01-05 16:36:37 -0800241#endif
Alessandro Zummo7520b942006-03-27 01:16:45 -0800242
243static int rs5c372_rtc_read_time(struct device *dev, struct rtc_time *tm)
244{
245 return rs5c372_get_datetime(to_i2c_client(dev), tm);
246}
247
248static int rs5c372_rtc_set_time(struct device *dev, struct rtc_time *tm)
249{
250 return rs5c372_set_datetime(to_i2c_client(dev), tm);
251}
252
David Brownellcb26b572007-01-05 16:36:37 -0800253#if defined(CONFIG_RTC_INTF_DEV) || defined(CONFIG_RTC_INTF_DEV_MODULE)
254
255static int
256rs5c_rtc_ioctl(struct device *dev, unsigned int cmd, unsigned long arg)
257{
258 struct i2c_client *client = to_i2c_client(dev);
259 struct rs5c372 *rs5c = i2c_get_clientdata(client);
260 unsigned char buf[2];
261 int status;
262
263 buf[1] = rs5c->regs[RS5C_REG_CTRL1];
264 switch (cmd) {
265 case RTC_UIE_OFF:
266 case RTC_UIE_ON:
267 /* some 327a modes use a different IRQ pin for 1Hz irqs */
268 if (rs5c->type == rtc_rs5c372a
269 && (buf[1] & RS5C372A_CTRL1_SL1))
270 return -ENOIOCTLCMD;
271 case RTC_AIE_OFF:
272 case RTC_AIE_ON:
273 /* these irq management calls only make sense for chips
274 * which are wired up to an IRQ.
275 */
276 if (!rs5c->has_irq)
277 return -ENOIOCTLCMD;
278 break;
279 default:
280 return -ENOIOCTLCMD;
281 }
282
283 status = rs5c_get_regs(rs5c);
284 if (status < 0)
285 return status;
286
287 buf[0] = RS5C_ADDR(RS5C_REG_CTRL1);
288 switch (cmd) {
289 case RTC_AIE_OFF: /* alarm off */
290 buf[1] &= ~RS5C_CTRL1_AALE;
291 break;
292 case RTC_AIE_ON: /* alarm on */
293 buf[1] |= RS5C_CTRL1_AALE;
294 break;
295 case RTC_UIE_OFF: /* update off */
296 buf[1] &= ~RS5C_CTRL1_CT_MASK;
297 break;
298 case RTC_UIE_ON: /* update on */
299 buf[1] &= ~RS5C_CTRL1_CT_MASK;
300 buf[1] |= RS5C_CTRL1_CT4;
301 break;
302 }
303 if ((i2c_master_send(client, buf, 2)) != 2) {
304 printk(KERN_WARNING "%s: can't update alarm\n",
305 rs5c->rtc->name);
306 status = -EIO;
307 } else
308 rs5c->regs[RS5C_REG_CTRL1] = buf[1];
309 return status;
310}
311
312#else
313#define rs5c_rtc_ioctl NULL
314#endif
315
316
317/* NOTE: Since RTC_WKALM_{RD,SET} were originally defined for EFI,
318 * which only exposes a polled programming interface; and since
319 * these calls map directly to those EFI requests; we don't demand
320 * we have an IRQ for this chip when we go through this API.
321 *
322 * The older x86_pc derived RTC_ALM_{READ,SET} calls require irqs
323 * though, managed through RTC_AIE_{ON,OFF} requests.
324 */
325
326static int rs5c_read_alarm(struct device *dev, struct rtc_wkalrm *t)
327{
328 struct i2c_client *client = to_i2c_client(dev);
329 struct rs5c372 *rs5c = i2c_get_clientdata(client);
330 int status;
331
332 status = rs5c_get_regs(rs5c);
333 if (status < 0)
334 return status;
335
336 /* report alarm time */
337 t->time.tm_sec = 0;
338 t->time.tm_min = BCD2BIN(rs5c->regs[RS5C_REG_ALARM_A_MIN] & 0x7f);
339 t->time.tm_hour = rs5c_reg2hr(rs5c, rs5c->regs[RS5C_REG_ALARM_A_HOURS]);
340 t->time.tm_mday = -1;
341 t->time.tm_mon = -1;
342 t->time.tm_year = -1;
343 t->time.tm_wday = -1;
344 t->time.tm_yday = -1;
345 t->time.tm_isdst = -1;
346
347 /* ... and status */
348 t->enabled = !!(rs5c->regs[RS5C_REG_CTRL1] & RS5C_CTRL1_AALE);
349 t->pending = !!(rs5c->regs[RS5C_REG_CTRL2] & RS5C_CTRL2_AAFG);
350
351 return 0;
352}
353
354static int rs5c_set_alarm(struct device *dev, struct rtc_wkalrm *t)
355{
356 struct i2c_client *client = to_i2c_client(dev);
357 struct rs5c372 *rs5c = i2c_get_clientdata(client);
358 int status;
359 unsigned char buf[4];
360
361 /* only handle up to 24 hours in the future, like RTC_ALM_SET */
362 if (t->time.tm_mday != -1
363 || t->time.tm_mon != -1
364 || t->time.tm_year != -1)
365 return -EINVAL;
366
367 /* REVISIT: round up tm_sec */
368
369 /* if needed, disable irq (clears pending status) */
370 status = rs5c_get_regs(rs5c);
371 if (status < 0)
372 return status;
373 if (rs5c->regs[RS5C_REG_CTRL1] & RS5C_CTRL1_AALE) {
374 buf[0] = RS5C_ADDR(RS5C_REG_CTRL1);
375 buf[1] = rs5c->regs[RS5C_REG_CTRL1] & ~RS5C_CTRL1_AALE;
376 if (i2c_master_send(client, buf, 2) != 2) {
377 pr_debug("%s: can't disable alarm\n", rs5c->rtc->name);
378 return -EIO;
379 }
380 rs5c->regs[RS5C_REG_CTRL1] = buf[1];
381 }
382
383 /* set alarm */
384 buf[0] = RS5C_ADDR(RS5C_REG_ALARM_A_MIN);
385 buf[1] = BIN2BCD(t->time.tm_min);
386 buf[2] = rs5c_hr2reg(rs5c, t->time.tm_hour);
387 buf[3] = 0x7f; /* any/all days */
388 if ((i2c_master_send(client, buf, 4)) != 4) {
389 pr_debug("%s: can't set alarm time\n", rs5c->rtc->name);
390 return -EIO;
391 }
392
393 /* ... and maybe enable its irq */
394 if (t->enabled) {
395 buf[0] = RS5C_ADDR(RS5C_REG_CTRL1);
396 buf[1] = rs5c->regs[RS5C_REG_CTRL1] | RS5C_CTRL1_AALE;
397 if ((i2c_master_send(client, buf, 2)) != 2)
398 printk(KERN_WARNING "%s: can't enable alarm\n",
399 rs5c->rtc->name);
400 rs5c->regs[RS5C_REG_CTRL1] = buf[1];
401 }
402
403 return 0;
404}
405
406#if defined(CONFIG_RTC_INTF_PROC) || defined(CONFIG_RTC_INTF_PROC_MODULE)
407
Alessandro Zummo7520b942006-03-27 01:16:45 -0800408static int rs5c372_rtc_proc(struct device *dev, struct seq_file *seq)
409{
410 int err, osc, trim;
411
Alessandro Zummoadfb4342006-04-10 22:54:43 -0700412 err = rs5c372_get_trim(to_i2c_client(dev), &osc, &trim);
413 if (err == 0) {
David Brownellcb26b572007-01-05 16:36:37 -0800414 seq_printf(seq, "crystal\t\t: %d.%03d KHz\n",
415 osc / 1000, osc % 1000);
416 seq_printf(seq, "trim\t\t: %d\n", trim);
Alessandro Zummo7520b942006-03-27 01:16:45 -0800417 }
418
419 return 0;
420}
421
David Brownellcb26b572007-01-05 16:36:37 -0800422#else
423#define rs5c372_rtc_proc NULL
424#endif
425
David Brownellff8371a2006-09-30 23:28:17 -0700426static const struct rtc_class_ops rs5c372_rtc_ops = {
Alessandro Zummo7520b942006-03-27 01:16:45 -0800427 .proc = rs5c372_rtc_proc,
David Brownellcb26b572007-01-05 16:36:37 -0800428 .ioctl = rs5c_rtc_ioctl,
Alessandro Zummo7520b942006-03-27 01:16:45 -0800429 .read_time = rs5c372_rtc_read_time,
430 .set_time = rs5c372_rtc_set_time,
David Brownellcb26b572007-01-05 16:36:37 -0800431 .read_alarm = rs5c_read_alarm,
432 .set_alarm = rs5c_set_alarm,
Alessandro Zummo7520b942006-03-27 01:16:45 -0800433};
434
David Brownellcb26b572007-01-05 16:36:37 -0800435#if defined(CONFIG_RTC_INTF_SYSFS) || defined(CONFIG_RTC_INTF_SYSFS_MODULE)
436
Alessandro Zummo7520b942006-03-27 01:16:45 -0800437static ssize_t rs5c372_sysfs_show_trim(struct device *dev,
438 struct device_attribute *attr, char *buf)
439{
Alessandro Zummo82896072006-04-10 22:54:44 -0700440 int err, trim;
Alessandro Zummo7520b942006-03-27 01:16:45 -0800441
Alessandro Zummo82896072006-04-10 22:54:44 -0700442 err = rs5c372_get_trim(to_i2c_client(dev), NULL, &trim);
443 if (err)
444 return err;
Alessandro Zummo7520b942006-03-27 01:16:45 -0800445
David Brownellcb26b572007-01-05 16:36:37 -0800446 return sprintf(buf, "%d\n", trim);
Alessandro Zummo7520b942006-03-27 01:16:45 -0800447}
448static DEVICE_ATTR(trim, S_IRUGO, rs5c372_sysfs_show_trim, NULL);
449
450static ssize_t rs5c372_sysfs_show_osc(struct device *dev,
451 struct device_attribute *attr, char *buf)
452{
Alessandro Zummo82896072006-04-10 22:54:44 -0700453 int err, osc;
Alessandro Zummo7520b942006-03-27 01:16:45 -0800454
Alessandro Zummo82896072006-04-10 22:54:44 -0700455 err = rs5c372_get_trim(to_i2c_client(dev), &osc, NULL);
456 if (err)
457 return err;
Alessandro Zummo7520b942006-03-27 01:16:45 -0800458
Alessandro Zummo82896072006-04-10 22:54:44 -0700459 return sprintf(buf, "%d.%03d KHz\n", osc / 1000, osc % 1000);
Alessandro Zummo7520b942006-03-27 01:16:45 -0800460}
461static DEVICE_ATTR(osc, S_IRUGO, rs5c372_sysfs_show_osc, NULL);
462
David Brownellcb26b572007-01-05 16:36:37 -0800463static int rs5c_sysfs_register(struct device *dev)
Alessandro Zummo7520b942006-03-27 01:16:45 -0800464{
David Brownellcb26b572007-01-05 16:36:37 -0800465 int err;
466
467 err = device_create_file(dev, &dev_attr_trim);
468 if (err)
469 return err;
470 err = device_create_file(dev, &dev_attr_osc);
471 if (err)
472 device_remove_file(dev, &dev_attr_trim);
473
474 return err;
Alessandro Zummo7520b942006-03-27 01:16:45 -0800475}
476
David Brownelld8154612007-07-17 04:04:55 -0700477static void rs5c_sysfs_unregister(struct device *dev)
478{
479 device_remove_file(dev, &dev_attr_trim);
480 device_remove_file(dev, &dev_attr_osc);
481}
482
David Brownellcb26b572007-01-05 16:36:37 -0800483#else
484static int rs5c_sysfs_register(struct device *dev)
485{
486 return 0;
487}
David Brownelld8154612007-07-17 04:04:55 -0700488
489static void rs5c_sysfs_unregister(struct device *dev)
490{
491 /* nothing */
492}
David Brownellcb26b572007-01-05 16:36:37 -0800493#endif /* SYSFS */
494
495static struct i2c_driver rs5c372_driver;
496
Jean Delvared2653e92008-04-29 23:11:39 +0200497static int rs5c372_probe(struct i2c_client *client,
498 const struct i2c_device_id *id)
Alessandro Zummo7520b942006-03-27 01:16:45 -0800499{
500 int err = 0;
Riku Voipioc6f24f92006-12-06 20:39:13 -0800501 struct rs5c372 *rs5c372;
David Brownellcb26b572007-01-05 16:36:37 -0800502 struct rtc_time tm;
Alessandro Zummo7520b942006-03-27 01:16:45 -0800503
Harvey Harrison2a4e2b8782008-04-28 02:12:00 -0700504 dev_dbg(&client->dev, "%s\n", __func__);
Alessandro Zummo7520b942006-03-27 01:16:45 -0800505
David Brownelld8154612007-07-17 04:04:55 -0700506 if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
Alessandro Zummo7520b942006-03-27 01:16:45 -0800507 err = -ENODEV;
508 goto exit;
509 }
510
Riku Voipioc6f24f92006-12-06 20:39:13 -0800511 if (!(rs5c372 = kzalloc(sizeof(struct rs5c372), GFP_KERNEL))) {
Alessandro Zummo7520b942006-03-27 01:16:45 -0800512 err = -ENOMEM;
513 goto exit;
514 }
David Brownellcb26b572007-01-05 16:36:37 -0800515
David Brownellcb26b572007-01-05 16:36:37 -0800516 rs5c372->client = client;
Riku Voipioc6f24f92006-12-06 20:39:13 -0800517 i2c_set_clientdata(client, rs5c372);
518
Paul Mundte2bfe342008-04-28 02:11:57 -0700519 /* we read registers 0x0f then 0x00-0x0f; skip the first one */
520 rs5c372->regs = &rs5c372->buf[1];
521
David Brownellcb26b572007-01-05 16:36:37 -0800522 err = rs5c_get_regs(rs5c372);
523 if (err < 0)
David Brownelld8154612007-07-17 04:04:55 -0700524 goto exit_kfree;
David Brownellcb26b572007-01-05 16:36:37 -0800525
David Brownelld8154612007-07-17 04:04:55 -0700526 if (strcmp(client->name, "rs5c372a") == 0)
527 rs5c372->type = rtc_rs5c372a;
528 else if (strcmp(client->name, "rs5c372b") == 0)
529 rs5c372->type = rtc_rs5c372b;
530 else if (strcmp(client->name, "rv5c386") == 0)
531 rs5c372->type = rtc_rv5c386;
532 else if (strcmp(client->name, "rv5c387a") == 0)
533 rs5c372->type = rtc_rv5c387a;
534 else {
David Brownellcb26b572007-01-05 16:36:37 -0800535 rs5c372->type = rtc_rs5c372b;
536 dev_warn(&client->dev, "assuming rs5c372b\n");
537 }
538
539 /* clock may be set for am/pm or 24 hr time */
540 switch (rs5c372->type) {
541 case rtc_rs5c372a:
542 case rtc_rs5c372b:
543 /* alarm uses ALARM_A; and nINTRA on 372a, nINTR on 372b.
544 * so does periodic irq, except some 327a modes.
545 */
546 if (rs5c372->regs[RS5C_REG_CTRL2] & RS5C372_CTRL2_24)
547 rs5c372->time24 = 1;
548 break;
549 case rtc_rv5c386:
550 case rtc_rv5c387a:
551 if (rs5c372->regs[RS5C_REG_CTRL1] & RV5C387_CTRL1_24)
552 rs5c372->time24 = 1;
553 /* alarm uses ALARM_W; and nINTRB for alarm and periodic
554 * irq, on both 386 and 387
555 */
556 break;
557 default:
558 dev_err(&client->dev, "unknown RTC type\n");
David Brownelld8154612007-07-17 04:04:55 -0700559 goto exit_kfree;
David Brownellcb26b572007-01-05 16:36:37 -0800560 }
561
562 /* if the oscillator lost power and no other software (like
563 * the bootloader) set it up, do it here.
564 */
565 if (rs5c372->regs[RS5C_REG_CTRL2] & RS5C_CTRL2_XSTP) {
566 unsigned char buf[3];
567
568 rs5c372->regs[RS5C_REG_CTRL2] &= ~RS5C_CTRL2_XSTP;
569
570 buf[0] = RS5C_ADDR(RS5C_REG_CTRL1);
571 buf[1] = rs5c372->regs[RS5C_REG_CTRL1];
572 buf[2] = rs5c372->regs[RS5C_REG_CTRL2];
573
574 /* use 24hr mode */
575 switch (rs5c372->type) {
576 case rtc_rs5c372a:
577 case rtc_rs5c372b:
578 buf[2] |= RS5C372_CTRL2_24;
579 rs5c372->time24 = 1;
580 break;
581 case rtc_rv5c386:
582 case rtc_rv5c387a:
583 buf[1] |= RV5C387_CTRL1_24;
584 rs5c372->time24 = 1;
585 break;
586 default:
587 /* impossible */
588 break;
589 }
590
591 if ((i2c_master_send(client, buf, 3)) != 3) {
592 dev_err(&client->dev, "setup error\n");
David Brownelld8154612007-07-17 04:04:55 -0700593 goto exit_kfree;
David Brownellcb26b572007-01-05 16:36:37 -0800594 }
595 rs5c372->regs[RS5C_REG_CTRL1] = buf[1];
596 rs5c372->regs[RS5C_REG_CTRL2] = buf[2];
597 }
598
599 if (rs5c372_get_datetime(client, &tm) < 0)
600 dev_warn(&client->dev, "clock needs to be set\n");
601
602 dev_info(&client->dev, "%s found, %s, driver version " DRV_VERSION "\n",
603 ({ char *s; switch (rs5c372->type) {
604 case rtc_rs5c372a: s = "rs5c372a"; break;
605 case rtc_rs5c372b: s = "rs5c372b"; break;
606 case rtc_rv5c386: s = "rv5c386"; break;
607 case rtc_rv5c387a: s = "rv5c387a"; break;
608 default: s = "chip"; break;
609 }; s;}),
610 rs5c372->time24 ? "24hr" : "am/pm"
611 );
612
David Brownelld8154612007-07-17 04:04:55 -0700613 /* REVISIT use client->irq to register alarm irq ... */
Alessandro Zummo7520b942006-03-27 01:16:45 -0800614
Riku Voipioc6f24f92006-12-06 20:39:13 -0800615 rs5c372->rtc = rtc_device_register(rs5c372_driver.driver.name,
616 &client->dev, &rs5c372_rtc_ops, THIS_MODULE);
Alessandro Zummo7520b942006-03-27 01:16:45 -0800617
Riku Voipioc6f24f92006-12-06 20:39:13 -0800618 if (IS_ERR(rs5c372->rtc)) {
619 err = PTR_ERR(rs5c372->rtc);
David Brownelld8154612007-07-17 04:04:55 -0700620 goto exit_kfree;
Alessandro Zummo7520b942006-03-27 01:16:45 -0800621 }
622
David Brownellcb26b572007-01-05 16:36:37 -0800623 err = rs5c_sysfs_register(&client->dev);
Riku Voipioc6f24f92006-12-06 20:39:13 -0800624 if (err)
625 goto exit_devreg;
Alessandro Zummo7520b942006-03-27 01:16:45 -0800626
627 return 0;
628
Jeff Garzik91046a82006-12-06 20:35:34 -0800629exit_devreg:
Riku Voipioc6f24f92006-12-06 20:39:13 -0800630 rtc_device_unregister(rs5c372->rtc);
Jeff Garzik91046a82006-12-06 20:35:34 -0800631
Alessandro Zummo7520b942006-03-27 01:16:45 -0800632exit_kfree:
Riku Voipioc6f24f92006-12-06 20:39:13 -0800633 kfree(rs5c372);
Alessandro Zummo7520b942006-03-27 01:16:45 -0800634
635exit:
636 return err;
637}
638
David Brownelld8154612007-07-17 04:04:55 -0700639static int rs5c372_remove(struct i2c_client *client)
David Brownellcb26b572007-01-05 16:36:37 -0800640{
Riku Voipioc6f24f92006-12-06 20:39:13 -0800641 struct rs5c372 *rs5c372 = i2c_get_clientdata(client);
Alessandro Zummo7520b942006-03-27 01:16:45 -0800642
David Brownelld8154612007-07-17 04:04:55 -0700643 rtc_device_unregister(rs5c372->rtc);
644 rs5c_sysfs_unregister(&client->dev);
Riku Voipioc6f24f92006-12-06 20:39:13 -0800645 kfree(rs5c372);
Alessandro Zummo7520b942006-03-27 01:16:45 -0800646 return 0;
647}
648
David Brownellcb26b572007-01-05 16:36:37 -0800649static struct i2c_driver rs5c372_driver = {
650 .driver = {
651 .name = "rtc-rs5c372",
652 },
David Brownelld8154612007-07-17 04:04:55 -0700653 .probe = rs5c372_probe,
654 .remove = rs5c372_remove,
David Brownellcb26b572007-01-05 16:36:37 -0800655};
656
Alessandro Zummo7520b942006-03-27 01:16:45 -0800657static __init int rs5c372_init(void)
658{
659 return i2c_add_driver(&rs5c372_driver);
660}
661
662static __exit void rs5c372_exit(void)
663{
664 i2c_del_driver(&rs5c372_driver);
665}
666
667module_init(rs5c372_init);
668module_exit(rs5c372_exit);
669
670MODULE_AUTHOR(
671 "Pavel Mironchik <pmironchik@optifacio.net>, "
672 "Alessandro Zummo <a.zummo@towertech.it>");
673MODULE_DESCRIPTION("Ricoh RS5C372 RTC driver");
674MODULE_LICENSE("GPL");
675MODULE_VERSION(DRV_VERSION);