1 /*!***************************************************************************
3 *! FILE NAME : ds1302.c
5 *! DESCRIPTION: Implements an interface for the DS1302 RTC through Etrax I/O
7 *! Functions exported: ds1302_readreg, ds1302_writereg, ds1302_init
9 *! ---------------------------------------------------------------------------
11 *! (C) Copyright 1999-2007 Axis Communications AB, LUND, SWEDEN
13 *!***************************************************************************/
17 #include <linux/init.h>
19 #include <linux/module.h>
20 #include <linux/miscdevice.h>
21 #include <linux/delay.h>
22 #include <linux/bcd.h>
23 #include <linux/capability.h>
25 #include <asm/uaccess.h>
26 #include <asm/system.h>
27 #include <arch/svinto.h>
30 #include <arch/io_interface_mux.h>
34 #define RTC_MAJOR_NR 121 /* local major, change later */
36 static const char ds1302_name
[] = "ds1302";
38 /* The DS1302 might be connected to different bits on different products.
39 * It has three signals - SDA, SCL and RST. RST and SCL are always outputs,
40 * but SDA can have a selected direction.
41 * For now, only PORT_PB is hardcoded.
44 /* The RST bit may be on either the Generic Port or Port PB. */
45 #ifdef CONFIG_ETRAX_DS1302_RST_ON_GENERIC_PORT
46 #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_OUT(x) REG_SHADOW_SET(R_PORT_PB_DATA, port_pb_data_shadow, CONFIG_ETRAX_DS1302_RSTBIT, x)
50 #define TK_RST_DIR(x) REG_SHADOW_SET(R_PORT_PB_DIR, port_pb_dir_shadow, CONFIG_ETRAX_DS1302_RSTBIT, x)
54 #define TK_SDA_OUT(x) REG_SHADOW_SET(R_PORT_PB_DATA, port_pb_data_shadow, CONFIG_ETRAX_DS1302_SDABIT, x)
55 #define TK_SCL_OUT(x) REG_SHADOW_SET(R_PORT_PB_DATA, port_pb_data_shadow, CONFIG_ETRAX_DS1302_SCLBIT, x)
57 #define TK_SDA_IN() ((*R_PORT_PB_READ >> CONFIG_ETRAX_DS1302_SDABIT) & 1)
58 /* 1 is out, 0 is in */
59 #define TK_SDA_DIR(x) REG_SHADOW_SET(R_PORT_PB_DIR, port_pb_dir_shadow, CONFIG_ETRAX_DS1302_SDABIT, x)
60 #define TK_SCL_DIR(x) REG_SHADOW_SET(R_PORT_PB_DIR, port_pb_dir_shadow, CONFIG_ETRAX_DS1302_SCLBIT, x)
64 * The reason for tempudelay and not udelay is that loops_per_usec
65 * (used in udelay) is not set when functions here are called from time.c
68 static void tempudelay(int usecs
)
72 for(loops
= usecs
* 12; loops
> 0; loops
--)
79 out_byte(unsigned char x
)
84 /* The chip latches incoming bits on the rising edge of SCL. */
101 /* Read byte. Bits come LSB first, on the falling edge of SCL.
102 * Assume SDA is in input direction already.
110 x
|= (TK_SDA_IN() << 7);
118 /* Prepares for a transaction by de-activating RST (active-low). */
130 /* Ends a transaction by taking RST active again. */
139 /* Enable writing. */
145 out_byte(0x8e); /* Write control register */
146 out_byte(0x00); /* Disable write protect bit 7 = 0 */
150 /* Disable writing. */
153 ds1302_wdisable(void)
156 out_byte(0x8e); /* Write control register */
157 out_byte(0x80); /* Disable write protect bit 7 = 0 */
163 /* Read a byte from the selected register in the DS1302. */
166 ds1302_readreg(int reg
)
171 out_byte(0x81 | (reg
<< 1)); /* read register */
178 /* Write a byte to the selected register. */
181 ds1302_writereg(int reg
, unsigned char val
)
183 #ifndef CONFIG_ETRAX_RTC_READONLY
188 if (reg
== RTC_TRICKLECHARGER
)
195 out_byte(0x80 | (reg
<< 1)); /* write register */
203 get_rtc_time(struct rtc_time
*rtc_tm
)
207 local_irq_save(flags
);
209 rtc_tm
->tm_sec
= CMOS_READ(RTC_SECONDS
);
210 rtc_tm
->tm_min
= CMOS_READ(RTC_MINUTES
);
211 rtc_tm
->tm_hour
= CMOS_READ(RTC_HOURS
);
212 rtc_tm
->tm_mday
= CMOS_READ(RTC_DAY_OF_MONTH
);
213 rtc_tm
->tm_mon
= CMOS_READ(RTC_MONTH
);
214 rtc_tm
->tm_year
= CMOS_READ(RTC_YEAR
);
216 local_irq_restore(flags
);
218 rtc_tm
->tm_sec
= bcd2bin(rtc_tm
->tm_sec
);
219 rtc_tm
->tm_min
= bcd2bin(rtc_tm
->tm_min
);
220 rtc_tm
->tm_hour
= bcd2bin(rtc_tm
->tm_hour
);
221 rtc_tm
->tm_mday
= bcd2bin(rtc_tm
->tm_mday
);
222 rtc_tm
->tm_mon
= bcd2bin(rtc_tm
->tm_mon
);
223 rtc_tm
->tm_year
= bcd2bin(rtc_tm
->tm_year
);
226 * Account for differences between how the RTC uses the values
227 * and how they are defined in a struct rtc_time;
230 if (rtc_tm
->tm_year
<= 69)
231 rtc_tm
->tm_year
+= 100;
236 static unsigned char days_in_mo
[] =
237 {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
239 /* ioctl that supports RTC_RD_TIME and RTC_SET_TIME (read and set time/date). */
242 rtc_ioctl(struct inode
*inode
, struct file
*file
, unsigned int cmd
,
248 case RTC_RD_TIME
: /* read the time/date from RTC */
250 struct rtc_time rtc_tm
;
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
)))
259 case RTC_SET_TIME
: /* set the RTC */
261 struct rtc_time rtc_tm
;
262 unsigned char mon
, day
, hrs
, min
, sec
, leap_yr
;
265 if (!capable(CAP_SYS_TIME
))
268 if (copy_from_user(&rtc_tm
, (struct rtc_time
*)arg
, sizeof(struct rtc_time
)))
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
;
279 if ((yrs
< 1970) || (yrs
> 2069))
282 leap_yr
= ((!(yrs
% 4) && (yrs
% 100)) || !(yrs
% 400));
284 if ((mon
> 12) || (day
== 0))
287 if (day
> (days_in_mo
[mon
] + ((mon
== 2) && leap_yr
)))
290 if ((hrs
>= 24) || (min
>= 60) || (sec
>= 60))
294 yrs
-= 2000; /* RTC (0, 1, ... 69) */
296 yrs
-= 1900; /* RTC (70, 71, ... 99) */
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
);
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
322 case RTC_SET_CHARGE
: /* set the RTC TRICKLE CHARGE register */
326 if (!capable(CAP_SYS_TIME
))
329 if(copy_from_user(&tcs_val
, (int*)arg
, sizeof(int)))
332 tcs_val
= RTC_TCR_PATTERN
| (tcs_val
& 0x0F);
333 ds1302_writereg(RTC_TRICKLECHARGER
, tcs_val
);
339 * Implement voltage low detection support
341 printk(KERN_WARNING
"DS1302: RTC Voltage Low detection"
342 " is not supported\n");
348 * Nothing to do since Voltage Low detection is not supported
358 print_rtc_status(void)
365 * There is no way to tell if the luser has the RTC set for local
366 * time or for Universal Standard Time (GMT). Probably local though.
369 printk(KERN_INFO
"rtc_time\t: %02d:%02d:%02d\n",
370 tm
.tm_hour
, tm
.tm_min
, tm
.tm_sec
);
371 printk(KERN_INFO
"rtc_date\t: %04d-%02d-%02d\n",
372 tm
.tm_year
+ 1900, tm
.tm_mon
+ 1, tm
.tm_mday
);
375 /* The various file operations we support. */
377 static const struct file_operations rtc_fops
= {
378 .owner
= THIS_MODULE
,
382 /* Probe for the chip by writing something to its RAM and try reading it back. */
384 #define MAGIC_PATTERN 0x42
395 /* Try to talk to timekeeper. */
399 out_byte(0xc0); /* write RAM byte 0 */
400 out_byte(MAGIC_PATTERN
); /* write something magic */
402 out_byte(0xc1); /* read RAM byte 0 */
404 if((res
= in_byte()) == MAGIC_PATTERN
) {
407 printk(KERN_INFO
"%s: RTC found.\n", ds1302_name
);
408 printk(KERN_INFO
"%s: SDA, SCL, RST on PB%i, PB%i, %s%i\n",
410 CONFIG_ETRAX_DS1302_SDABIT
,
411 CONFIG_ETRAX_DS1302_SCLBIT
,
412 #ifdef CONFIG_ETRAX_DS1302_RST_ON_GENERIC_PORT
417 CONFIG_ETRAX_DS1302_RSTBIT
);
429 /* Just probe for the RTC and register the device to handle the ioctl needed. */
434 #ifdef CONFIG_ETRAX_I2C
438 if (!ds1302_probe()) {
439 #ifdef CONFIG_ETRAX_DS1302_RST_ON_GENERIC_PORT
440 #if CONFIG_ETRAX_DS1302_RSTBIT == 27
442 * The only way to set g27 to output is to enable ATA.
444 * Make sure that R_GEN_CONFIG is setup correct.
446 /* Allocating the ATA interface will grab almost all
447 * pins in I/O groups a, b, c and d. A consequence of
448 * allocating the ATA interface is that the fixed
449 * interfaces shared RAM, parallel port 0, parallel
450 * port 1, parallel port W, SCSI-8 port 0, SCSI-8 port
451 * 1, SCSI-W, serial port 2, serial port 3,
452 * synchronous serial port 3 and USB port 2 and almost
453 * all GPIO pins on port g cannot be used.
455 if (cris_request_io_interface(if_ata
, "ds1302/ATA")) {
456 printk(KERN_WARNING
"ds1302: Failed to get IO interface\n");
460 #elif CONFIG_ETRAX_DS1302_RSTBIT == 0
461 if (cris_io_interface_allocate_pins(if_gpio_grp_a
,
463 CONFIG_ETRAX_DS1302_RSTBIT
,
464 CONFIG_ETRAX_DS1302_RSTBIT
)) {
465 printk(KERN_WARNING
"ds1302: Failed to get IO interface\n");
469 /* Set the direction of this bit to out. */
470 genconfig_shadow
= ((genconfig_shadow
&
471 ~IO_MASK(R_GEN_CONFIG
, g0dir
)) |
472 (IO_STATE(R_GEN_CONFIG
, g0dir
, out
)));
473 *R_GEN_CONFIG
= genconfig_shadow
;
475 if (!ds1302_probe()) {
476 printk(KERN_WARNING
"%s: RTC not found.\n", ds1302_name
);
480 printk(KERN_WARNING
"%s: RTC not found.\n", ds1302_name
);
484 /* Initialise trickle charger */
485 ds1302_writereg(RTC_TRICKLECHARGER
,
486 RTC_TCR_PATTERN
|(CONFIG_ETRAX_DS1302_TRICKLE_CHARGE
& 0x0F));
487 /* Start clock by resetting CLOCK_HALT */
488 ds1302_writereg(RTC_SECONDS
, (ds1302_readreg(RTC_SECONDS
) & 0x7F));
492 static int __init
ds1302_register(void)
495 if (register_chrdev(RTC_MAJOR_NR
, ds1302_name
, &rtc_fops
)) {
496 printk(KERN_INFO
"%s: unable to get major %d for rtc\n",
497 ds1302_name
, RTC_MAJOR_NR
);
504 module_init(ds1302_register
);