aboutsummaryrefslogtreecommitdiffstats
path: root/arch/cris/arch-v10
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-01-22 10:38:37 -0500
committerJonathan Herman <hermanjl@cs.unc.edu>2013-01-22 10:38:37 -0500
commitfcc9d2e5a6c89d22b8b773a64fb4ad21ac318446 (patch)
treea57612d1888735a2ec7972891b68c1ac5ec8faea /arch/cris/arch-v10
parent8dea78da5cee153b8af9c07a2745f6c55057fe12 (diff)
Added missing tegra files.HEADmaster
Diffstat (limited to 'arch/cris/arch-v10')
-rw-r--r--arch/cris/arch-v10/drivers/ds1302.c516
-rw-r--r--arch/cris/arch-v10/drivers/pcf8563.c381
2 files changed, 897 insertions, 0 deletions
diff --git a/arch/cris/arch-v10/drivers/ds1302.c b/arch/cris/arch-v10/drivers/ds1302.c
new file mode 100644
index 00000000000..3d655dcc65d
--- /dev/null
+++ b/arch/cris/arch-v10/drivers/ds1302.c
@@ -0,0 +1,516 @@
1/*!***************************************************************************
2*!
3*! FILE NAME : ds1302.c
4*!
5*! DESCRIPTION: Implements an interface for the DS1302 RTC through Etrax I/O
6*!
7*! Functions exported: ds1302_readreg, ds1302_writereg, ds1302_init
8*!
9*! ---------------------------------------------------------------------------
10*!
11*! (C) Copyright 1999-2007 Axis Communications AB, LUND, SWEDEN
12*!
13*!***************************************************************************/
14
15
16#include <linux/fs.h>
17#include <linux/init.h>
18#include <linux/mm.h>
19#include <linux/module.h>
20#include <linux/miscdevice.h>
21#include <linux/delay.h>
22#include <linux/mutex.h>
23#include <linux/bcd.h>
24#include <linux/capability.h>
25
26#include <asm/uaccess.h>
27#include <asm/system.h>
28#include <arch/svinto.h>
29#include <asm/io.h>
30#include <asm/rtc.h>
31#include <arch/io_interface_mux.h>
32
33#include "i2c.h"
34
35#define RTC_MAJOR_NR 121 /* local major, change later */
36
37static DEFINE_MUTEX(ds1302_mutex);
38static const char ds1302_name[] = "ds1302";
39
40/* The DS1302 might be connected to different bits on different products.
41 * It has three signals - SDA, SCL and RST. RST and SCL are always outputs,
42 * but SDA can have a selected direction.
43 * For now, only PORT_PB is hardcoded.
44 */
45
46/* The RST bit may be on either the Generic Port or Port PB. */
47#ifdef CONFIG_ETRAX_DS1302_RST_ON_GENERIC_PORT
48#define TK_RST_OUT(x) REG_SHADOW_SET(R_PORT_G_DATA, port_g_data_shadow, CONFIG_ETRAX_DS1302_RSTBIT, x)
49#define TK_RST_DIR(x)
50#else
51#define TK_RST_OUT(x) REG_SHADOW_SET(R_PORT_PB_DATA, port_pb_data_shadow, CONFIG_ETRAX_DS1302_RSTBIT, x)
52#define TK_RST_DIR(x) REG_SHADOW_SET(R_PORT_PB_DIR, port_pb_dir_shadow, CONFIG_ETRAX_DS1302_RSTBIT, x)
53#endif
54
55
56#define TK_SDA_OUT(x) REG_SHADOW_SET(R_PORT_PB_DATA, port_pb_data_shadow, CONFIG_ETRAX_DS1302_SDABIT, x)
57#define TK_SCL_OUT(x) REG_SHADOW_SET(R_PORT_PB_DATA, port_pb_data_shadow, CONFIG_ETRAX_DS1302_SCLBIT, x)
58
59#define TK_SDA_IN() ((*R_PORT_PB_READ >> CONFIG_ETRAX_DS1302_SDABIT) & 1)
60/* 1 is out, 0 is in */
61#define TK_SDA_DIR(x) REG_SHADOW_SET(R_PORT_PB_DIR, port_pb_dir_shadow, CONFIG_ETRAX_DS1302_SDABIT, x)
62#define TK_SCL_DIR(x) REG_SHADOW_SET(R_PORT_PB_DIR, port_pb_dir_shadow, CONFIG_ETRAX_DS1302_SCLBIT, x)
63
64
65/*
66 * The reason for tempudelay and not udelay is that loops_per_usec
67 * (used in udelay) is not set when functions here are called from time.c
68 */
69
70static void tempudelay(int usecs)
71{
72 volatile int loops;
73
74 for(loops = usecs * 12; loops > 0; loops--)
75 /* nothing */;
76}
77
78
79/* Send 8 bits. */
80static void
81out_byte(unsigned char x)
82{
83 int i;
84 TK_SDA_DIR(1);
85 for (i = 8; i--;) {
86 /* The chip latches incoming bits on the rising edge of SCL. */
87 TK_SCL_OUT(0);
88 TK_SDA_OUT(x & 1);
89 tempudelay(1);
90 TK_SCL_OUT(1);
91 tempudelay(1);
92 x >>= 1;
93 }
94 TK_SDA_DIR(0);
95}
96
97static unsigned char
98in_byte(void)
99{
100 unsigned char x = 0;
101 int i;
102
103 /* Read byte. Bits come LSB first, on the falling edge of SCL.
104 * Assume SDA is in input direction already.
105 */
106 TK_SDA_DIR(0);
107
108 for (i = 8; i--;) {
109 TK_SCL_OUT(0);
110 tempudelay(1);
111 x >>= 1;
112 x |= (TK_SDA_IN() << 7);
113 TK_SCL_OUT(1);
114 tempudelay(1);
115 }
116
117 return x;
118}
119
120/* Prepares for a transaction by de-activating RST (active-low). */
121
122static void
123start(void)
124{
125 TK_SCL_OUT(0);
126 tempudelay(1);
127 TK_RST_OUT(0);
128 tempudelay(5);
129 TK_RST_OUT(1);
130}
131
132/* Ends a transaction by taking RST active again. */
133
134static void
135stop(void)
136{
137 tempudelay(2);
138 TK_RST_OUT(0);
139}
140
141/* Enable writing. */
142
143static void
144ds1302_wenable(void)
145{
146 start();
147 out_byte(0x8e); /* Write control register */
148 out_byte(0x00); /* Disable write protect bit 7 = 0 */
149 stop();
150}
151
152/* Disable writing. */
153
154static void
155ds1302_wdisable(void)
156{
157 start();
158 out_byte(0x8e); /* Write control register */
159 out_byte(0x80); /* Disable write protect bit 7 = 0 */
160 stop();
161}
162
163
164
165/* Read a byte from the selected register in the DS1302. */
166
167unsigned char
168ds1302_readreg(int reg)
169{
170 unsigned char x;
171
172 start();
173 out_byte(0x81 | (reg << 1)); /* read register */
174 x = in_byte();
175 stop();
176
177 return x;
178}
179
180/* Write a byte to the selected register. */
181
182void
183ds1302_writereg(int reg, unsigned char val)
184{
185#ifndef CONFIG_ETRAX_RTC_READONLY
186 int do_writereg = 1;
187#else
188 int do_writereg = 0;
189
190 if (reg == RTC_TRICKLECHARGER)
191 do_writereg = 1;
192#endif
193
194 if (do_writereg) {
195 ds1302_wenable();
196 start();
197 out_byte(0x80 | (reg << 1)); /* write register */
198 out_byte(val);
199 stop();
200 ds1302_wdisable();
201 }
202}
203
204void
205get_rtc_time(struct rtc_time *rtc_tm)
206{
207 unsigned long flags;
208
209 local_irq_save(flags);
210
211 rtc_tm->tm_sec = CMOS_READ(RTC_SECONDS);
212 rtc_tm->tm_min = CMOS_READ(RTC_MINUTES);
213 rtc_tm->tm_hour = CMOS_READ(RTC_HOURS);
214 rtc_tm->tm_mday = CMOS_READ(RTC_DAY_OF_MONTH);
215 rtc_tm->tm_mon = CMOS_READ(RTC_MONTH);
216 rtc_tm->tm_year = CMOS_READ(RTC_YEAR);
217
218 local_irq_restore(flags);
219
220 rtc_tm->tm_sec = bcd2bin(rtc_tm->tm_sec);
221 rtc_tm->tm_min = bcd2bin(rtc_tm->tm_min);
222 rtc_tm->tm_hour = bcd2bin(rtc_tm->tm_hour);
223 rtc_tm->tm_mday = bcd2bin(rtc_tm->tm_mday);
224 rtc_tm->tm_mon = bcd2bin(rtc_tm->tm_mon);
225 rtc_tm->tm_year = bcd2bin(rtc_tm->tm_year);
226
227 /*
228 * Account for differences between how the RTC uses the values
229 * and how they are defined in a struct rtc_time;
230 */
231
232 if (rtc_tm->tm_year <= 69)
233 rtc_tm->tm_year += 100;
234
235 rtc_tm->tm_mon--;
236}
237
238static unsigned char days_in_mo[] =
239 {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
240
241/* ioctl that supports RTC_RD_TIME and RTC_SET_TIME (read and set time/date). */
242
243static int rtc_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
244{
245 unsigned long flags;
246
247 switch(cmd) {
248 case RTC_RD_TIME: /* read the time/date from RTC */
249 {
250 struct rtc_time rtc_tm;
251
252 memset(&rtc_tm, 0, sizeof (struct rtc_time));
253 get_rtc_time(&rtc_tm);
254 if (copy_to_user((struct rtc_time*)arg, &rtc_tm, sizeof(struct rtc_time)))
255 return -EFAULT;
256 return 0;
257 }
258
259 case RTC_SET_TIME: /* set the RTC */
260 {
261 struct rtc_time rtc_tm;
262 unsigned char mon, day, hrs, min, sec, leap_yr;
263 unsigned int yrs;
264
265 if (!capable(CAP_SYS_TIME))
266 return -EPERM;
267
268 if (copy_from_user(&rtc_tm, (struct rtc_time*)arg, sizeof(struct rtc_time)))
269 return -EFAULT;
270
271 yrs = rtc_tm.tm_year + 1900;
272 mon = rtc_tm.tm_mon + 1; /* tm_mon starts at zero */
273 day = rtc_tm.tm_mday;
274 hrs = rtc_tm.tm_hour;
275 min = rtc_tm.tm_min;
276 sec = rtc_tm.tm_sec;
277
278
279 if ((yrs < 1970) || (yrs > 2069))
280 return -EINVAL;
281
282 leap_yr = ((!(yrs % 4) && (yrs % 100)) || !(yrs % 400));
283
284 if ((mon > 12) || (day == 0))
285 return -EINVAL;
286
287 if (day > (days_in_mo[mon] + ((mon == 2) && leap_yr)))
288 return -EINVAL;
289
290 if ((hrs >= 24) || (min >= 60) || (sec >= 60))
291 return -EINVAL;
292
293 if (yrs >= 2000)
294 yrs -= 2000; /* RTC (0, 1, ... 69) */
295 else
296 yrs -= 1900; /* RTC (70, 71, ... 99) */
297
298 sec = bin2bcd(sec);
299 min = bin2bcd(min);
300 hrs = bin2bcd(hrs);
301 day = bin2bcd(day);
302 mon = bin2bcd(mon);
303 yrs = bin2bcd(yrs);
304
305 local_irq_save(flags);
306 CMOS_WRITE(yrs, RTC_YEAR);
307 CMOS_WRITE(mon, RTC_MONTH);
308 CMOS_WRITE(day, RTC_DAY_OF_MONTH);
309 CMOS_WRITE(hrs, RTC_HOURS);
310 CMOS_WRITE(min, RTC_MINUTES);
311 CMOS_WRITE(sec, RTC_SECONDS);
312 local_irq_restore(flags);
313
314 /* Notice that at this point, the RTC is updated but
315 * the kernel is still running with the old time.
316 * You need to set that separately with settimeofday
317 * or adjtimex.
318 */
319 return 0;
320 }
321
322 case RTC_SET_CHARGE: /* set the RTC TRICKLE CHARGE register */
323 {
324 int tcs_val;
325
326 if (!capable(CAP_SYS_TIME))
327 return -EPERM;
328
329 if(copy_from_user(&tcs_val, (int*)arg, sizeof(int)))
330 return -EFAULT;
331
332 tcs_val = RTC_TCR_PATTERN | (tcs_val & 0x0F);
333 ds1302_writereg(RTC_TRICKLECHARGER, tcs_val);
334 return 0;
335 }
336 case RTC_VL_READ:
337 {
338 /* TODO:
339 * Implement voltage low detection support
340 */
341 printk(KERN_WARNING "DS1302: RTC Voltage Low detection"
342 " is not supported\n");
343 return 0;
344 }
345 case RTC_VL_CLR:
346 {
347 /* TODO:
348 * Nothing to do since Voltage Low detection is not supported
349 */
350 return 0;
351 }
352 default:
353 return -ENOIOCTLCMD;
354 }
355}
356
357static long rtc_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
358{
359 int ret;
360
361 mutex_lock(&ds1302_mutex);
362 ret = rtc_ioctl(file, cmd, arg);
363 mutex_unlock(&ds1302_mutex);
364
365 return ret;
366}
367
368static void
369print_rtc_status(void)
370{
371 struct rtc_time tm;
372
373 get_rtc_time(&tm);
374
375 /*
376 * There is no way to tell if the luser has the RTC set for local
377 * time or for Universal Standard Time (GMT). Probably local though.
378 */
379
380 printk(KERN_INFO "rtc_time\t: %02d:%02d:%02d\n",
381 tm.tm_hour, tm.tm_min, tm.tm_sec);
382 printk(KERN_INFO "rtc_date\t: %04d-%02d-%02d\n",
383 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday);
384}
385
386/* The various file operations we support. */
387
388static const struct file_operations rtc_fops = {
389 .owner = THIS_MODULE,
390 .unlocked_ioctl = rtc_unlocked_ioctl,
391 .llseek = noop_llseek,
392};
393
394/* Probe for the chip by writing something to its RAM and try reading it back. */
395
396#define MAGIC_PATTERN 0x42
397
398static int __init
399ds1302_probe(void)
400{
401 int retval, res;
402
403 TK_RST_DIR(1);
404 TK_SCL_DIR(1);
405 TK_SDA_DIR(0);
406
407 /* Try to talk to timekeeper. */
408
409 ds1302_wenable();
410 start();
411 out_byte(0xc0); /* write RAM byte 0 */
412 out_byte(MAGIC_PATTERN); /* write something magic */
413 start();
414 out_byte(0xc1); /* read RAM byte 0 */
415
416 if((res = in_byte()) == MAGIC_PATTERN) {
417 stop();
418 ds1302_wdisable();
419 printk(KERN_INFO "%s: RTC found.\n", ds1302_name);
420 printk(KERN_INFO "%s: SDA, SCL, RST on PB%i, PB%i, %s%i\n",
421 ds1302_name,
422 CONFIG_ETRAX_DS1302_SDABIT,
423 CONFIG_ETRAX_DS1302_SCLBIT,
424#ifdef CONFIG_ETRAX_DS1302_RST_ON_GENERIC_PORT
425 "GENIO",
426#else
427 "PB",
428#endif
429 CONFIG_ETRAX_DS1302_RSTBIT);
430 print_rtc_status();
431 retval = 1;
432 } else {
433 stop();
434 retval = 0;
435 }
436
437 return retval;
438}
439
440
441/* Just probe for the RTC and register the device to handle the ioctl needed. */
442
443int __init
444ds1302_init(void)
445{
446#ifdef CONFIG_ETRAX_I2C
447 i2c_init();
448#endif
449
450 if (!ds1302_probe()) {
451#ifdef CONFIG_ETRAX_DS1302_RST_ON_GENERIC_PORT
452#if CONFIG_ETRAX_DS1302_RSTBIT == 27
453 /*
454 * The only way to set g27 to output is to enable ATA.
455 *
456 * Make sure that R_GEN_CONFIG is setup correct.
457 */
458 /* Allocating the ATA interface will grab almost all
459 * pins in I/O groups a, b, c and d. A consequence of
460 * allocating the ATA interface is that the fixed
461 * interfaces shared RAM, parallel port 0, parallel
462 * port 1, parallel port W, SCSI-8 port 0, SCSI-8 port
463 * 1, SCSI-W, serial port 2, serial port 3,
464 * synchronous serial port 3 and USB port 2 and almost
465 * all GPIO pins on port g cannot be used.
466 */
467 if (cris_request_io_interface(if_ata, "ds1302/ATA")) {
468 printk(KERN_WARNING "ds1302: Failed to get IO interface\n");
469 return -1;
470 }
471
472#elif CONFIG_ETRAX_DS1302_RSTBIT == 0
473 if (cris_io_interface_allocate_pins(if_gpio_grp_a,
474 'g',
475 CONFIG_ETRAX_DS1302_RSTBIT,
476 CONFIG_ETRAX_DS1302_RSTBIT)) {
477 printk(KERN_WARNING "ds1302: Failed to get IO interface\n");
478 return -1;
479 }
480
481 /* Set the direction of this bit to out. */
482 genconfig_shadow = ((genconfig_shadow &
483 ~IO_MASK(R_GEN_CONFIG, g0dir)) |
484 (IO_STATE(R_GEN_CONFIG, g0dir, out)));
485 *R_GEN_CONFIG = genconfig_shadow;
486#endif
487 if (!ds1302_probe()) {
488 printk(KERN_WARNING "%s: RTC not found.\n", ds1302_name);
489 return -1;
490 }
491#else
492 printk(KERN_WARNING "%s: RTC not found.\n", ds1302_name);
493 return -1;
494#endif
495 }
496 /* Initialise trickle charger */
497 ds1302_writereg(RTC_TRICKLECHARGER,
498 RTC_TCR_PATTERN |(CONFIG_ETRAX_DS1302_TRICKLE_CHARGE & 0x0F));
499 /* Start clock by resetting CLOCK_HALT */
500 ds1302_writereg(RTC_SECONDS, (ds1302_readreg(RTC_SECONDS) & 0x7F));
501 return 0;
502}
503
504static int __init ds1302_register(void)
505{
506 ds1302_init();
507 if (register_chrdev(RTC_MAJOR_NR, ds1302_name, &rtc_fops)) {
508 printk(KERN_INFO "%s: unable to get major %d for rtc\n",
509 ds1302_name, RTC_MAJOR_NR);
510 return -1;
511 }
512 return 0;
513
514}
515
516module_init(ds1302_register);
diff --git a/arch/cris/arch-v10/drivers/pcf8563.c b/arch/cris/arch-v10/drivers/pcf8563.c
new file mode 100644
index 00000000000..1391b731ad1
--- /dev/null
+++ b/arch/cris/arch-v10/drivers/pcf8563.c
@@ -0,0 +1,381 @@
1/*
2 * PCF8563 RTC
3 *
4 * From Phillips' datasheet:
5 *
6 * The PCF8563 is a CMOS real-time clock/calendar optimized for low power
7 * consumption. A programmable clock output, interrupt output and voltage
8 * low detector are also provided. All address and data are transferred
9 * serially via two-line bidirectional I2C-bus. Maximum bus speed is
10 * 400 kbits/s. The built-in word address register is incremented
11 * automatically after each written or read byte.
12 *
13 * Copyright (c) 2002-2007, Axis Communications AB
14 * All rights reserved.
15 *
16 * Author: Tobias Anderberg <tobiasa@axis.com>.
17 *
18 */
19
20#include <linux/module.h>
21#include <linux/kernel.h>
22#include <linux/types.h>
23#include <linux/sched.h>
24#include <linux/init.h>
25#include <linux/fs.h>
26#include <linux/ioctl.h>
27#include <linux/delay.h>
28#include <linux/bcd.h>
29#include <linux/mutex.h>
30
31#include <asm/uaccess.h>
32#include <asm/system.h>
33#include <asm/io.h>
34#include <asm/rtc.h>
35
36#include "i2c.h"
37
38#define PCF8563_MAJOR 121 /* Local major number. */
39#define DEVICE_NAME "rtc" /* Name which is registered in /proc/devices. */
40#define PCF8563_NAME "PCF8563"
41#define DRIVER_VERSION "$Revision: 1.24 $"
42
43/* I2C bus slave registers. */
44#define RTC_I2C_READ 0xa3
45#define RTC_I2C_WRITE 0xa2
46
47/* Two simple wrapper macros, saves a few keystrokes. */
48#define rtc_read(x) i2c_readreg(RTC_I2C_READ, x)
49#define rtc_write(x,y) i2c_writereg(RTC_I2C_WRITE, x, y)
50
51static DEFINE_MUTEX(pcf8563_mutex);
52static DEFINE_MUTEX(rtc_lock); /* Protect state etc */
53
54static const unsigned char days_in_month[] =
55 { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
56
57static long pcf8563_unlocked_ioctl(struct file *, unsigned int, unsigned long);
58
59/* Cache VL bit value read at driver init since writing the RTC_SECOND
60 * register clears the VL status.
61 */
62static int voltage_low;
63
64static const struct file_operations pcf8563_fops = {
65 .owner = THIS_MODULE,
66 .unlocked_ioctl = pcf8563_unlocked_ioctl,
67 .llseek = noop_llseek,
68};
69
70unsigned char
71pcf8563_readreg(int reg)
72{
73 unsigned char res = rtc_read(reg);
74
75 /* The PCF8563 does not return 0 for unimplemented bits. */
76 switch (reg) {
77 case RTC_SECONDS:
78 case RTC_MINUTES:
79 res &= 0x7F;
80 break;
81 case RTC_HOURS:
82 case RTC_DAY_OF_MONTH:
83 res &= 0x3F;
84 break;
85 case RTC_WEEKDAY:
86 res &= 0x07;
87 break;
88 case RTC_MONTH:
89 res &= 0x1F;
90 break;
91 case RTC_CONTROL1:
92 res &= 0xA8;
93 break;
94 case RTC_CONTROL2:
95 res &= 0x1F;
96 break;
97 case RTC_CLOCKOUT_FREQ:
98 case RTC_TIMER_CONTROL:
99 res &= 0x83;
100 break;
101 }
102 return res;
103}
104
105void
106pcf8563_writereg(int reg, unsigned char val)
107{
108 rtc_write(reg, val);
109}
110
111void
112get_rtc_time(struct rtc_time *tm)
113{
114 tm->tm_sec = rtc_read(RTC_SECONDS);
115 tm->tm_min = rtc_read(RTC_MINUTES);
116 tm->tm_hour = rtc_read(RTC_HOURS);
117 tm->tm_mday = rtc_read(RTC_DAY_OF_MONTH);
118 tm->tm_wday = rtc_read(RTC_WEEKDAY);
119 tm->tm_mon = rtc_read(RTC_MONTH);
120 tm->tm_year = rtc_read(RTC_YEAR);
121
122 if (tm->tm_sec & 0x80) {
123 printk(KERN_ERR "%s: RTC Voltage Low - reliable date/time "
124 "information is no longer guaranteed!\n", PCF8563_NAME);
125 }
126
127 tm->tm_year = bcd2bin(tm->tm_year) +
128 ((tm->tm_mon & 0x80) ? 100 : 0);
129 tm->tm_sec &= 0x7F;
130 tm->tm_min &= 0x7F;
131 tm->tm_hour &= 0x3F;
132 tm->tm_mday &= 0x3F;
133 tm->tm_wday &= 0x07; /* Not coded in BCD. */
134 tm->tm_mon &= 0x1F;
135
136 tm->tm_sec = bcd2bin(tm->tm_sec);
137 tm->tm_min = bcd2bin(tm->tm_min);
138 tm->tm_hour = bcd2bin(tm->tm_hour);
139 tm->tm_mday = bcd2bin(tm->tm_mday);
140 tm->tm_mon = bcd2bin(tm->tm_mon);
141 tm->tm_mon--; /* Month is 1..12 in RTC but 0..11 in linux */
142}
143
144int __init
145pcf8563_init(void)
146{
147 static int res;
148 static int first = 1;
149
150 if (!first)
151 return res;
152 first = 0;
153
154 /* Initiate the i2c protocol. */
155 res = i2c_init();
156 if (res < 0) {
157 printk(KERN_CRIT "pcf8563_init: Failed to init i2c.\n");
158 return res;
159 }
160
161 /*
162 * First of all we need to reset the chip. This is done by
163 * clearing control1, control2 and clk freq and resetting
164 * all alarms.
165 */
166 if (rtc_write(RTC_CONTROL1, 0x00) < 0)
167 goto err;
168
169 if (rtc_write(RTC_CONTROL2, 0x00) < 0)
170 goto err;
171
172 if (rtc_write(RTC_CLOCKOUT_FREQ, 0x00) < 0)
173 goto err;
174
175 if (rtc_write(RTC_TIMER_CONTROL, 0x03) < 0)
176 goto err;
177
178 /* Reset the alarms. */
179 if (rtc_write(RTC_MINUTE_ALARM, 0x80) < 0)
180 goto err;
181
182 if (rtc_write(RTC_HOUR_ALARM, 0x80) < 0)
183 goto err;
184
185 if (rtc_write(RTC_DAY_ALARM, 0x80) < 0)
186 goto err;
187
188 if (rtc_write(RTC_WEEKDAY_ALARM, 0x80) < 0)
189 goto err;
190
191 /* Check for low voltage, and warn about it. */
192 if (rtc_read(RTC_SECONDS) & 0x80) {
193 voltage_low = 1;
194 printk(KERN_WARNING "%s: RTC Voltage Low - reliable "
195 "date/time information is no longer guaranteed!\n",
196 PCF8563_NAME);
197 }
198
199 return res;
200
201err:
202 printk(KERN_INFO "%s: Error initializing chip.\n", PCF8563_NAME);
203 res = -1;
204 return res;
205}
206
207void __exit
208pcf8563_exit(void)
209{
210 unregister_chrdev(PCF8563_MAJOR, DEVICE_NAME);
211}
212
213/*
214 * ioctl calls for this driver. Why return -ENOTTY upon error? Because
215 * POSIX says so!
216 */
217static int pcf8563_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
218{
219 /* Some sanity checks. */
220 if (_IOC_TYPE(cmd) != RTC_MAGIC)
221 return -ENOTTY;
222
223 if (_IOC_NR(cmd) > RTC_MAX_IOCTL)
224 return -ENOTTY;
225
226 switch (cmd) {
227 case RTC_RD_TIME:
228 {
229 struct rtc_time tm;
230
231 mutex_lock(&rtc_lock);
232 memset(&tm, 0, sizeof tm);
233 get_rtc_time(&tm);
234
235 if (copy_to_user((struct rtc_time *) arg, &tm,
236 sizeof tm)) {
237 mutex_unlock(&rtc_lock);
238 return -EFAULT;
239 }
240
241 mutex_unlock(&rtc_lock);
242
243 return 0;
244 }
245 case RTC_SET_TIME:
246 {
247 int leap;
248 int year;
249 int century;
250 struct rtc_time tm;
251
252 memset(&tm, 0, sizeof tm);
253 if (!capable(CAP_SYS_TIME))
254 return -EPERM;
255
256 if (copy_from_user(&tm, (struct rtc_time *) arg, sizeof tm))
257 return -EFAULT;
258
259 /* Convert from struct tm to struct rtc_time. */
260 tm.tm_year += 1900;
261 tm.tm_mon += 1;
262
263 /*
264 * Check if tm.tm_year is a leap year. A year is a leap
265 * year if it is divisible by 4 but not 100, except
266 * that years divisible by 400 _are_ leap years.
267 */
268 year = tm.tm_year;
269 leap = (tm.tm_mon == 2) &&
270 ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0);
271
272 /* Perform some sanity checks. */
273 if ((tm.tm_year < 1970) ||
274 (tm.tm_mon > 12) ||
275 (tm.tm_mday == 0) ||
276 (tm.tm_mday > days_in_month[tm.tm_mon] + leap) ||
277 (tm.tm_wday >= 7) ||
278 (tm.tm_hour >= 24) ||
279 (tm.tm_min >= 60) ||
280 (tm.tm_sec >= 60))
281 return -EINVAL;
282
283 century = (tm.tm_year >= 2000) ? 0x80 : 0;
284 tm.tm_year = tm.tm_year % 100;
285
286 tm.tm_year = bin2bcd(tm.tm_year);
287 tm.tm_mon = bin2bcd(tm.tm_mon);
288 tm.tm_mday = bin2bcd(tm.tm_mday);
289 tm.tm_hour = bin2bcd(tm.tm_hour);
290 tm.tm_min = bin2bcd(tm.tm_min);
291 tm.tm_sec = bin2bcd(tm.tm_sec);
292 tm.tm_mon |= century;
293
294 mutex_lock(&rtc_lock);
295
296 rtc_write(RTC_YEAR, tm.tm_year);
297 rtc_write(RTC_MONTH, tm.tm_mon);
298 rtc_write(RTC_WEEKDAY, tm.tm_wday); /* Not coded in BCD. */
299 rtc_write(RTC_DAY_OF_MONTH, tm.tm_mday);
300 rtc_write(RTC_HOURS, tm.tm_hour);
301 rtc_write(RTC_MINUTES, tm.tm_min);
302 rtc_write(RTC_SECONDS, tm.tm_sec);
303
304 mutex_unlock(&rtc_lock);
305
306 return 0;
307 }
308 case RTC_VL_READ:
309 if (voltage_low) {
310 printk(KERN_ERR "%s: RTC Voltage Low - "
311 "reliable date/time information is no "
312 "longer guaranteed!\n", PCF8563_NAME);
313 }
314
315 if (copy_to_user((int *) arg, &voltage_low, sizeof(int)))
316 return -EFAULT;
317 return 0;
318
319 case RTC_VL_CLR:
320 {
321 /* Clear the VL bit in the seconds register in case
322 * the time has not been set already (which would
323 * have cleared it). This does not really matter
324 * because of the cached voltage_low value but do it
325 * anyway for consistency. */
326
327 int ret = rtc_read(RTC_SECONDS);
328
329 rtc_write(RTC_SECONDS, (ret & 0x7F));
330
331 /* Clear the cached value. */
332 voltage_low = 0;
333
334 return 0;
335 }
336 default:
337 return -ENOTTY;
338 }
339
340 return 0;
341}
342
343static long pcf8563_unlocked_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
344{
345 int ret;
346
347 mutex_lock(&pcf8563_mutex);
348 ret = pcf8563_ioctl(filp, cmd, arg);
349 mutex_unlock(&pcf8563_mutex);
350
351 return ret;
352}
353
354static int __init pcf8563_register(void)
355{
356 if (pcf8563_init() < 0) {
357 printk(KERN_INFO "%s: Unable to initialize Real-Time Clock "
358 "Driver, %s\n", PCF8563_NAME, DRIVER_VERSION);
359 return -1;
360 }
361
362 if (register_chrdev(PCF8563_MAJOR, DEVICE_NAME, &pcf8563_fops) < 0) {
363 printk(KERN_INFO "%s: Unable to get major number %d for RTC device.\n",
364 PCF8563_NAME, PCF8563_MAJOR);
365 return -1;
366 }
367
368 printk(KERN_INFO "%s Real-Time Clock Driver, %s\n", PCF8563_NAME,
369 DRIVER_VERSION);
370
371 /* Check for low voltage, and warn about it. */
372 if (voltage_low) {
373 printk(KERN_WARNING "%s: RTC Voltage Low - reliable date/time "
374 "information is no longer guaranteed!\n", PCF8563_NAME);
375 }
376
377 return 0;
378}
379
380module_init(pcf8563_register);
381module_exit(pcf8563_exit);