2009-12-11 17:42:01 +08:00
|
|
|
/*
|
|
|
|
* File : rtc.c
|
|
|
|
* This file is part of RT-Thread RTOS
|
|
|
|
* COPYRIGHT (C) 2006, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* The license and distribution terms for this file may be
|
|
|
|
* found in the file LICENSE in this distribution or at
|
|
|
|
* http://openlab.rt-thread.com/license/LICENSE
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
2010-03-20 01:44:24 +08:00
|
|
|
* 2009-04-26 yi.qiu first version
|
|
|
|
* 2010-03-18 Gary Lee add functions such as GregorianDay
|
|
|
|
* and rt_rtc_time_to_tm
|
|
|
|
* 2009-03-20 yi.qiu clean up
|
2009-12-11 17:42:01 +08:00
|
|
|
*/
|
|
|
|
|
2010-01-10 23:15:27 +08:00
|
|
|
#include <rtthread.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <s3c24x0.h>
|
2009-12-11 17:42:01 +08:00
|
|
|
|
2010-03-20 01:44:24 +08:00
|
|
|
#define RTC_DEBUG
|
|
|
|
|
2010-03-24 21:37:20 +08:00
|
|
|
#define RTC_ENABLE RTCCON |= 0x01; /*RTC read and write enable */
|
|
|
|
#define RTC_DISABLE RTCCON &= ~0x01; /* RTC read and write disable */
|
2010-03-20 01:44:24 +08:00
|
|
|
#define BCD2BIN(n) (((((n) >> 4) & 0x0F) * 10) + ((n) & 0x0F))
|
|
|
|
#define BIN2BCD(n) ((((n) / 10) << 4) | ((n) % 10))
|
2009-12-11 17:42:01 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function get rtc time
|
|
|
|
*/
|
2010-03-20 01:44:24 +08:00
|
|
|
void rt_hw_rtc_get(struct tm *ti)
|
2009-12-11 17:42:01 +08:00
|
|
|
{
|
|
|
|
rt_uint8_t sec, min, hour, mday, wday, mon, year;
|
|
|
|
|
|
|
|
/* enable access to RTC registers */
|
2010-03-24 21:37:20 +08:00
|
|
|
RTCCON |= RTC_ENABLE;
|
2009-12-11 17:42:01 +08:00
|
|
|
|
|
|
|
/* read RTC registers */
|
2009-12-18 13:25:41 +08:00
|
|
|
do
|
2009-12-11 17:42:01 +08:00
|
|
|
{
|
2010-03-20 01:44:24 +08:00
|
|
|
sec = BCDSEC;
|
|
|
|
min = BCDMIN;
|
2010-01-10 23:15:27 +08:00
|
|
|
hour = BCDHOUR;
|
|
|
|
mday = BCDDATE;
|
|
|
|
wday = BCDDAY;
|
|
|
|
mon = BCDMON;
|
|
|
|
year = BCDYEAR;
|
2010-03-24 21:37:20 +08:00
|
|
|
} while (sec != BCDSEC);
|
|
|
|
|
|
|
|
/*
|
|
|
|
rt_kprintf("sec:%x min:%x hour:%x mday:%x wday:%x mon:%x year:%x\n",
|
|
|
|
sec, min, hour, mday, wday, mon, year);
|
|
|
|
*/
|
2009-12-11 17:42:01 +08:00
|
|
|
|
|
|
|
/* disable access to RTC registers */
|
2010-03-20 01:44:24 +08:00
|
|
|
RTC_DISABLE
|
2010-01-10 23:15:27 +08:00
|
|
|
|
|
|
|
ti->tm_sec = BCD2BIN(sec & 0x7F);
|
|
|
|
ti->tm_min = BCD2BIN(min & 0x7F);
|
|
|
|
ti->tm_hour = BCD2BIN(hour & 0x3F);
|
|
|
|
ti->tm_mday = BCD2BIN(mday & 0x3F);
|
|
|
|
ti->tm_mon = BCD2BIN(mon & 0x1F);
|
|
|
|
ti->tm_year = BCD2BIN(year);
|
|
|
|
ti->tm_wday = BCD2BIN(wday & 0x07);
|
|
|
|
ti->tm_yday = 0;
|
|
|
|
ti->tm_isdst = 0;
|
2009-12-11 17:42:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function set rtc time
|
|
|
|
*/
|
2010-03-20 01:44:24 +08:00
|
|
|
void rt_hw_rtc_set(struct tm *ti)
|
2009-12-11 17:42:01 +08:00
|
|
|
{
|
|
|
|
rt_uint8_t sec, min, hour, mday, wday, mon, year;
|
|
|
|
|
2010-03-20 01:44:24 +08:00
|
|
|
year = BIN2BCD(ti->tm_year);
|
2010-01-10 23:15:27 +08:00
|
|
|
mon = BIN2BCD(ti->tm_mon);
|
|
|
|
wday = BIN2BCD(ti->tm_wday);
|
|
|
|
mday = BIN2BCD(ti->tm_mday);
|
|
|
|
hour = BIN2BCD(ti->tm_hour);
|
2010-03-20 01:44:24 +08:00
|
|
|
min = BIN2BCD(ti->tm_min);
|
|
|
|
sec = BIN2BCD(ti->tm_sec);
|
2009-12-11 17:42:01 +08:00
|
|
|
|
|
|
|
/* enable access to RTC registers */
|
2010-03-20 01:44:24 +08:00
|
|
|
RTC_ENABLE
|
2009-12-11 17:42:01 +08:00
|
|
|
|
2010-03-24 21:37:20 +08:00
|
|
|
do{
|
|
|
|
/* write RTC registers */
|
|
|
|
BCDSEC = sec;
|
|
|
|
BCDMIN = min;
|
|
|
|
BCDHOUR = hour;
|
|
|
|
BCDDATE = mday;
|
|
|
|
BCDDAY = wday;
|
|
|
|
BCDMON = mon;
|
|
|
|
BCDYEAR = year;
|
|
|
|
}while (sec != BCDSEC);
|
|
|
|
|
2009-12-11 17:42:01 +08:00
|
|
|
/* disable access to RTC registers */
|
2010-03-20 01:44:24 +08:00
|
|
|
RTC_DISABLE
|
2009-12-11 17:42:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function reset rtc
|
|
|
|
*/
|
|
|
|
void rt_hw_rtc_reset (void)
|
|
|
|
{
|
|
|
|
RTCCON = (RTCCON & ~0x06) | 0x08;
|
|
|
|
RTCCON &= ~(0x08|0x01);
|
|
|
|
}
|
|
|
|
|
2010-01-10 23:15:27 +08:00
|
|
|
static struct rt_device rtc;
|
|
|
|
static rt_err_t rt_rtc_open(rt_device_t dev, rt_uint16_t oflag)
|
|
|
|
{
|
2010-03-20 01:44:24 +08:00
|
|
|
RTC_ENABLE
|
2010-02-11 10:53:43 +08:00
|
|
|
return RT_EOK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static rt_err_t rt_rtc_close(rt_device_t dev)
|
|
|
|
{
|
2010-03-20 01:44:24 +08:00
|
|
|
RTC_DISABLE
|
2010-01-10 23:15:27 +08:00
|
|
|
return RT_EOK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static rt_size_t rt_rtc_read(rt_device_t dev, rt_off_t pos, void* buffer, rt_size_t size)
|
|
|
|
{
|
2010-02-10 16:25:45 +08:00
|
|
|
return RT_EOK;
|
2010-01-10 23:15:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static rt_err_t rt_rtc_control(rt_device_t dev, rt_uint8_t cmd, void *args)
|
|
|
|
{
|
2010-03-20 01:44:24 +08:00
|
|
|
struct tm* time;
|
2010-01-10 23:15:27 +08:00
|
|
|
RT_ASSERT(dev != RT_NULL);
|
|
|
|
|
2010-03-20 01:44:24 +08:00
|
|
|
time = (struct tm*)args;
|
2010-01-10 23:15:27 +08:00
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case RT_DEVICE_CTRL_RTC_GET_TIME:
|
|
|
|
/* read device */
|
2010-02-10 16:25:45 +08:00
|
|
|
rt_hw_rtc_get(time);
|
2010-01-10 23:15:27 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RT_DEVICE_CTRL_RTC_SET_TIME:
|
|
|
|
/* write device */
|
2010-02-10 16:25:45 +08:00
|
|
|
rt_hw_rtc_set(time);
|
2010-01-10 23:15:27 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RT_EOK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void rt_hw_rtc_init(void)
|
|
|
|
{
|
|
|
|
rtc.type = RT_Device_Class_RTC;
|
|
|
|
|
|
|
|
/* register rtc device */
|
|
|
|
rtc.init = RT_NULL;
|
|
|
|
rtc.open = rt_rtc_open;
|
2010-02-11 10:53:43 +08:00
|
|
|
rtc.close = rt_rtc_close;
|
2010-01-10 23:15:27 +08:00
|
|
|
rtc.read = rt_rtc_read;
|
|
|
|
rtc.write = RT_NULL;
|
|
|
|
rtc.control = rt_rtc_control;
|
|
|
|
|
|
|
|
/* no private */
|
|
|
|
rtc.private = RT_NULL;
|
|
|
|
|
|
|
|
rt_device_register(&rtc, "rtc", RT_DEVICE_FLAG_RDWR);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
time_t time(time_t* t)
|
2010-03-24 21:37:20 +08:00
|
|
|
{
|
|
|
|
rt_kprintf("not implement yet\n");
|
|
|
|
return 0;
|
2010-01-10 23:15:27 +08:00
|
|
|
}
|
|
|
|
|
2010-02-01 23:16:05 +08:00
|
|
|
#ifdef RT_USING_FINSH
|
|
|
|
#include <finsh.h>
|
2010-01-10 23:15:27 +08:00
|
|
|
void set_date(rt_uint32_t year, rt_uint32_t month, rt_uint32_t day)
|
|
|
|
{
|
2010-03-20 01:44:24 +08:00
|
|
|
struct tm ti;
|
2010-01-10 23:15:27 +08:00
|
|
|
rt_device_t device;
|
|
|
|
|
|
|
|
device = rt_device_find("rtc");
|
|
|
|
if (device != RT_NULL)
|
|
|
|
{
|
|
|
|
rt_rtc_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &ti);
|
|
|
|
ti.tm_year = year - 1900;
|
|
|
|
ti.tm_mon = month - 1;
|
|
|
|
ti.tm_mday = day;
|
|
|
|
rt_rtc_control(device, RT_DEVICE_CTRL_RTC_SET_TIME, &ti);
|
|
|
|
}
|
|
|
|
}
|
2010-02-10 16:25:45 +08:00
|
|
|
FINSH_FUNCTION_EXPORT(set_date, set date(year, month, day))
|
2010-01-10 23:15:27 +08:00
|
|
|
|
|
|
|
void set_time(rt_uint32_t hour, rt_uint32_t minute, rt_uint32_t second)
|
|
|
|
{
|
2010-03-20 01:44:24 +08:00
|
|
|
struct tm ti;
|
2010-01-10 23:15:27 +08:00
|
|
|
rt_device_t device;
|
|
|
|
|
|
|
|
device = rt_device_find("rtc");
|
|
|
|
if (device != RT_NULL)
|
|
|
|
{
|
|
|
|
rt_rtc_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &ti);
|
|
|
|
ti.tm_hour = hour;
|
2010-03-20 01:44:24 +08:00
|
|
|
ti.tm_min = minute;
|
2010-01-10 23:15:27 +08:00
|
|
|
ti.tm_sec = second;
|
|
|
|
rt_rtc_control(device, RT_DEVICE_CTRL_RTC_SET_TIME, &ti);
|
|
|
|
}
|
|
|
|
}
|
2010-02-10 16:25:45 +08:00
|
|
|
FINSH_FUNCTION_EXPORT(set_time, set time(hour, minute, second))
|
2010-01-10 23:15:27 +08:00
|
|
|
|
2010-02-10 16:25:45 +08:00
|
|
|
void list_date(void)
|
2010-01-10 23:15:27 +08:00
|
|
|
{
|
2010-03-24 21:37:20 +08:00
|
|
|
struct tm ti;
|
|
|
|
rt_device_t device;
|
|
|
|
|
|
|
|
device = rt_device_find("rtc");
|
|
|
|
if (device != RT_NULL)
|
|
|
|
{
|
|
|
|
rt_rtc_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &ti);
|
|
|
|
|
|
|
|
rt_kprintf("%04d-%02d-%02d %02d-%02d-%02d\n",
|
|
|
|
ti.tm_year + 1900, ti.tm_mon+1, ti.tm_mday,
|
|
|
|
ti.tm_hour, ti.tm_min, ti.tm_sec);
|
|
|
|
}
|
2010-01-10 23:15:27 +08:00
|
|
|
}
|
2010-02-10 16:25:45 +08:00
|
|
|
FINSH_FUNCTION_EXPORT(list_date, list date)
|
2010-01-10 23:15:27 +08:00
|
|
|
#endif
|