time.c 16.8 KB
Newer Older
1
/*
2
 * Copyright (c) 2006-2021, RT-Thread Development Team
3 4 5 6 7 8
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 * Change Logs:
 * Date           Author       Notes
 * 2019-08-21     zhangjun     copy from minilibc
9
 * 2020-09-07     Meco Man     combine gcc armcc iccarm
10
 * 2021-02-05     Meco Man     add timegm()
mysterywolf's avatar
mysterywolf 已提交
11
 * 2021-02-07     Meco Man     fixed gettimeofday()
mysterywolf's avatar
mysterywolf 已提交
12
 * 2021-02-08     Meco Man     add settimeofday() stime()
13
 * 2021-02-10     Meco Man     add ctime_r() and re-implement ctime()
14
 * 2021-02-11     Meco Man     fix bug #3183 - align days[] and months[] to 4 bytes
mysterywolf's avatar
mysterywolf 已提交
15
 * 2021-02-12     Meco Man     add errno
16 17 18
 * 2012-12-08     Bernard      <clock_time.c> fix the issue of _timevalue.tv_usec initialization,
 *                             which found by Rob <rdent@iinet.net.au>
 * 2021-02-12     Meco Man     move all of the functions located in <clock_time.c> to this file
mysterywolf's avatar
mysterywolf 已提交
19
 * 2021-03-15     Meco Man     fixed a bug of leaking memory in asctime()
20
 * 2021-05-01     Meco Man     support fixed timezone
21
 * 2021-07-21     Meco Man     implement that change/set timezone APIs
22 23
 */

mysterywolf's avatar
mysterywolf 已提交
24
#include "sys/time.h"
25
#include <sys/errno.h>
26
#include <rtthread.h>
27
#include <rthw.h>
28 29 30 31
#ifdef RT_USING_DEVICE
#include <rtdevice.h>
#endif

32
#define DBG_TAG    "time"
mysterywolf's avatar
mysterywolf 已提交
33 34 35
#define DBG_LVL    DBG_INFO
#include <rtdbg.h>

36 37 38
/* seconds per day */
#define SPD 24*60*60

39
/* days per month -- nonleap! */
40
static const short __spm[13] =
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
{
    0,
    (31),
    (31 + 28),
    (31 + 28 + 31),
    (31 + 28 + 31 + 30),
    (31 + 28 + 31 + 30 + 31),
    (31 + 28 + 31 + 30 + 31 + 30),
    (31 + 28 + 31 + 30 + 31 + 30 + 31),
    (31 + 28 + 31 + 30 + 31 + 30 + 31 + 31),
    (31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30),
    (31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31),
    (31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30),
    (31 + 28 + 31 + 30 + 31 + 30 + 31 + 31 + 30 + 31 + 30 + 31),
};
56 57 58

ALIGN(4) static const char days[] = "Sun Mon Tue Wed Thu Fri Sat ";
ALIGN(4) static const char months[] = "Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec ";
59

60
static int __isleap(int year)
61 62 63 64 65 66 67
{
    /* every fourth year is a leap year except for century years that are
     * not divisible by 400. */
    /*  return (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0)); */
    return (!(year % 4) && ((year % 100) || !(year % 400)));
}

68 69 70 71 72 73
static void num2str(char *c, int i)
{
    c[0] = i / 10 + '0';
    c[1] = i % 10 + '0';
}

mysterywolf's avatar
mysterywolf 已提交
74
/**
75
 * Get time from RTC device (without timezone, UTC+0)
mysterywolf's avatar
mysterywolf 已提交
76
 * @param tv: struct timeval
77
 * @return the operation status, RT_EOK on successful
mysterywolf's avatar
mysterywolf 已提交
78
 */
79
static rt_err_t get_timeval(struct timeval *tv)
mysterywolf's avatar
mysterywolf 已提交
80 81 82 83 84 85
{
#ifdef RT_USING_RTC
    static rt_device_t device = RT_NULL;
    rt_err_t rst = -RT_ERROR;

    if (tv == RT_NULL)
86
        return -RT_EINVAL;
mysterywolf's avatar
mysterywolf 已提交
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103

    /* default is 0 */
    tv->tv_sec = 0;
    tv->tv_usec = 0;

    /* optimization: find rtc device only first */
    if (device == RT_NULL)
    {
        device = rt_device_find("rtc");
    }

    /* read timestamp from RTC device */
    if (device != RT_NULL)
    {
        if (rt_device_open(device, 0) == RT_EOK)
        {
            rst = rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &tv->tv_sec);
104
            rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIMEVAL, tv);
mysterywolf's avatar
mysterywolf 已提交
105 106 107 108 109
            rt_device_close(device);
        }
    }
    else
    {
mysterywolf's avatar
mysterywolf 已提交
110
        /* LOG_W will cause a recursive printing if ulog timestamp function is enabled */
mysterywolf's avatar
mysterywolf 已提交
111
        rt_kprintf("Cannot find a RTC device to provide time!\r\n");
112
        return -RT_ENOSYS;
mysterywolf's avatar
mysterywolf 已提交
113 114
    }

115
    return rst;
mysterywolf's avatar
mysterywolf 已提交
116 117

#else
mysterywolf's avatar
mysterywolf 已提交
118
    /* LOG_W will cause a recursive printing if ulog timestamp function is enabled */
mysterywolf's avatar
mysterywolf 已提交
119
    rt_kprintf("Cannot find a RTC device to provide time!\r\n");
120
    return -RT_ENOSYS;
mysterywolf's avatar
mysterywolf 已提交
121 122 123 124 125 126
#endif /* RT_USING_RTC */
}

/**
 * Set time to RTC device (without timezone)
 * @param tv: struct timeval
127
 * @return the operation status, RT_EOK on successful
mysterywolf's avatar
mysterywolf 已提交
128 129 130 131 132
 */
static int set_timeval(struct timeval *tv)
{
#ifdef RT_USING_RTC
    static rt_device_t device = RT_NULL;
133
    rt_err_t rst = -RT_ERROR;
mysterywolf's avatar
mysterywolf 已提交
134 135

    if (tv == RT_NULL)
136
        return -RT_EINVAL;
mysterywolf's avatar
mysterywolf 已提交
137 138 139 140 141 142 143 144 145 146 147 148 149

    /* optimization: find rtc device only first */
    if (device == RT_NULL)
    {
        device = rt_device_find("rtc");
    }

    /* read timestamp from RTC device */
    if (device != RT_NULL)
    {
        if (rt_device_open(device, 0) == RT_EOK)
        {
            rst = rt_device_control(device, RT_DEVICE_CTRL_RTC_SET_TIME, &tv->tv_sec);
150
            rt_device_control(device, RT_DEVICE_CTRL_RTC_SET_TIMEVAL, tv);
mysterywolf's avatar
mysterywolf 已提交
151 152 153 154 155 156
            rt_device_close(device);
        }
    }
    else
    {
        LOG_W("Cannot find a RTC device to provide time!");
157
        return -RT_ENOSYS;
mysterywolf's avatar
mysterywolf 已提交
158 159
    }

160
    return rst;
mysterywolf's avatar
mysterywolf 已提交
161 162 163

#else
    LOG_W("Cannot find a RTC device to provide time!");
164
    return -RT_ENOSYS;
mysterywolf's avatar
mysterywolf 已提交
165 166 167
#endif /* RT_USING_RTC */
}

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 194 195 196 197 198 199 200
struct tm *gmtime_r(const time_t *timep, struct tm *r)
{
    time_t i;
    register time_t work = *timep % (SPD);
    r->tm_sec = work % 60;
    work /= 60;
    r->tm_min = work % 60;
    r->tm_hour = work / 60;
    work = *timep / (SPD);
    r->tm_wday = (4 + work) % 7;
    for (i = 1970;; ++i)
    {
        register time_t k = __isleap(i) ? 366 : 365;
        if (work >= k)
            work -= k;
        else
            break;
    }
    r->tm_year = i - 1900;
    r->tm_yday = work;

    r->tm_mday = 1;
    if (__isleap(i) && (work > 58))
    {
        if (work == 59)
            r->tm_mday = 2; /* 29.2. */
        work -= 1;
    }

    for (i = 11; i && (__spm[i] > work); --i)
        ;
    r->tm_mon = i;
    r->tm_mday += work - __spm[i];
mysterywolf's avatar
mysterywolf 已提交
201

202
    r->tm_isdst = tz_is_dst();
203 204
    return r;
}
mysterywolf's avatar
update  
mysterywolf 已提交
205
RTM_EXPORT(gmtime_r);
206 207 208 209 210 211

struct tm* gmtime(const time_t* t)
{
    static struct tm tmp;
    return gmtime_r(t, &tmp);
}
mysterywolf's avatar
update  
mysterywolf 已提交
212
RTM_EXPORT(gmtime);
213 214 215

struct tm* localtime_r(const time_t* t, struct tm* r)
{
216 217
    time_t local_tz;

218
    local_tz = *t + tz_get() * 3600;
219
    return gmtime_r(&local_tz, r);
220
}
mysterywolf's avatar
update  
mysterywolf 已提交
221
RTM_EXPORT(localtime_r);
222 223 224 225 226 227

struct tm* localtime(const time_t* t)
{
    static struct tm tmp;
    return localtime_r(t, &tmp);
}
mysterywolf's avatar
update  
mysterywolf 已提交
228
RTM_EXPORT(localtime);
229 230 231

time_t mktime(struct tm * const t)
{
mysterywolf's avatar
mysterywolf 已提交
232 233 234
    time_t timestamp;

    timestamp = timegm(t);
235
    timestamp = timestamp - 3600 * tz_get();
mysterywolf's avatar
mysterywolf 已提交
236
    return timestamp;
237
}
mysterywolf's avatar
update  
mysterywolf 已提交
238
RTM_EXPORT(mktime);
239 240 241

char* asctime_r(const struct tm *t, char *buf)
{
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
    /* Checking input validity */
    if (rt_strlen(days) <= (t->tm_wday << 2) || rt_strlen(months) <= (t->tm_mon << 2))
    {
        LOG_W("asctime_r: the input parameters exceeded the limit, please check it.");
        *(int*) buf = *(int*) days;
        *(int*) (buf + 4) = *(int*) months;
        num2str(buf + 8, t->tm_mday);
        if (buf[8] == '0')
            buf[8] = ' ';
        buf[10] = ' ';
        num2str(buf + 11, t->tm_hour);
        buf[13] = ':';
        num2str(buf + 14, t->tm_min);
        buf[16] = ':';
        num2str(buf + 17, t->tm_sec);
        buf[19] = ' ';
        num2str(buf + 20, 2000 / 100);
        num2str(buf + 22, 2000 % 100);
        buf[24] = '\n';
        buf[25] = '\0';
        return buf;
    }

265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
    /* "Wed Jun 30 21:49:08 1993\n" */
    *(int*) buf = *(int*) (days + (t->tm_wday << 2));
    *(int*) (buf + 4) = *(int*) (months + (t->tm_mon << 2));
    num2str(buf + 8, t->tm_mday);
    if (buf[8] == '0')
        buf[8] = ' ';
    buf[10] = ' ';
    num2str(buf + 11, t->tm_hour);
    buf[13] = ':';
    num2str(buf + 14, t->tm_min);
    buf[16] = ':';
    num2str(buf + 17, t->tm_sec);
    buf[19] = ' ';
    num2str(buf + 20, (t->tm_year + 1900) / 100);
    num2str(buf + 22, (t->tm_year + 1900) % 100);
    buf[24] = '\n';
281
    buf[25] = '\0';
282 283
    return buf;
}
mysterywolf's avatar
update  
mysterywolf 已提交
284
RTM_EXPORT(asctime_r);
285 286 287

char* asctime(const struct tm *timeptr)
{
288
    static char buf[26];
289 290
    return asctime_r(timeptr, buf);
}
mysterywolf's avatar
update  
mysterywolf 已提交
291
RTM_EXPORT(asctime);
292

293
char *ctime_r(const time_t * tim_p, char * result)
294
{
mysterywolf's avatar
mysterywolf 已提交
295
    struct tm tm;
mysterywolf's avatar
mysterywolf 已提交
296
    return asctime_r(localtime_r(tim_p, &tm), result);
297
}
mysterywolf's avatar
update  
mysterywolf 已提交
298
RTM_EXPORT(ctime_r);
299 300 301

char* ctime(const time_t *tim_p)
{
mysterywolf's avatar
mysterywolf 已提交
302
    return asctime(localtime(tim_p));
303
}
mysterywolf's avatar
update  
mysterywolf 已提交
304
RTM_EXPORT(ctime);
305

306 307 308 309 310 311 312 313 314 315 316 317 318
/**
 * Returns the current time.
 *
 * @param time_t * t the timestamp pointer, if not used, keep NULL.
 *
 * @return The value ((time_t)-1) is returned if the calendar time is not available.
 *         If timer is not a NULL pointer, the return value is also stored in timer.
 *
 */
RT_WEAK time_t time(time_t *t)
{
    struct timeval now;

319
    if(get_timeval(&now) == RT_EOK)
320
    {
321 322 323 324 325 326 327 328
        if (t)
        {
            *t = now.tv_sec;
        }
        return now.tv_sec;
    }
    else
    {
329
        rt_set_errno(EFAULT);
330
        return ((time_t)-1);
331
    }
332
}
mysterywolf's avatar
update  
mysterywolf 已提交
333
RTM_EXPORT(time);
334 335 336 337 338

RT_WEAK clock_t clock(void)
{
    return rt_tick_get();
}
mysterywolf's avatar
update  
mysterywolf 已提交
339
RTM_EXPORT(clock);
340

mysterywolf's avatar
mysterywolf 已提交
341
int stime(const time_t *t)
342
{
mysterywolf's avatar
mysterywolf 已提交
343 344 345 346
    struct timeval tv;

    if (!t)
    {
347
        rt_set_errno(EFAULT);
mysterywolf's avatar
mysterywolf 已提交
348 349
        return -1;
    }
mysterywolf's avatar
mysterywolf 已提交
350

mysterywolf's avatar
mysterywolf 已提交
351
    tv.tv_sec = *t;
352
    if (set_timeval(&tv) == RT_EOK)
mysterywolf's avatar
mysterywolf 已提交
353
    {
mysterywolf's avatar
mysterywolf 已提交
354
        return 0;
mysterywolf's avatar
mysterywolf 已提交
355 356
    }
    else
357
    {
358
        rt_set_errno(EFAULT);
mysterywolf's avatar
mysterywolf 已提交
359
        return -1;
360 361
    }
}
mysterywolf's avatar
update  
mysterywolf 已提交
362
RTM_EXPORT(stime);
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436

time_t timegm(struct tm * const t)
{
    register time_t day;
    register time_t i;
    register time_t years = t->tm_year - 70;

    if (t->tm_sec > 60)
    {
        t->tm_min += t->tm_sec / 60;
        t->tm_sec %= 60;
    }
    if (t->tm_min > 60)
    {
        t->tm_hour += t->tm_min / 60;
        t->tm_min %= 60;
    }
    if (t->tm_hour > 24)
    {
        t->tm_mday += t->tm_hour / 24;
        t->tm_hour %= 24;
    }
    if (t->tm_mon > 12)
    {
        t->tm_year += t->tm_mon / 12;
        t->tm_mon %= 12;
    }
    while (t->tm_mday > __spm[1 + t->tm_mon])
    {
        if (t->tm_mon == 1 && __isleap(t->tm_year + 1900))
        {
            --t->tm_mday;
        }
        t->tm_mday -= __spm[t->tm_mon];
        ++t->tm_mon;
        if (t->tm_mon > 11)
        {
            t->tm_mon = 0;
            ++t->tm_year;
        }
    }

    if (t->tm_year < 70)
        return (time_t) - 1;

    /* Days since 1970 is 365 * number of years + number of leap years since 1970 */
    day = years * 365 + (years + 1) / 4;

    /* After 2100 we have to substract 3 leap years for every 400 years
     This is not intuitive. Most mktime implementations do not support
     dates after 2059, anyway, so we might leave this out for it's
     bloat. */
    if (years >= 131)
    {
        years -= 131;
        years /= 100;
        day -= (years >> 2) * 3 + 1;
        if ((years &= 3) == 3)
            years--;
        day -= years;
    }

    day += t->tm_yday = __spm[t->tm_mon] + t->tm_mday - 1 +
                        (__isleap(t->tm_year + 1900) & (t->tm_mon > 1));

    /* day is now the number of days since 'Jan 1 1970' */
    i = 7;
    t->tm_wday = (day + 4) % i; /* Sunday=0, Monday=1, ..., Saturday=6 */

    i = 24;
    day *= i;
    i = 60;
    return ((day + t->tm_hour) * i + t->tm_min) * i + t->tm_sec;
}
mysterywolf's avatar
update  
mysterywolf 已提交
437
RTM_EXPORT(timegm);
mysterywolf's avatar
mysterywolf 已提交
438 439 440

int gettimeofday(struct timeval *tv, struct timezone *tz)
{
mysterywolf's avatar
mysterywolf 已提交
441 442 443 444 445
    /* The use of the timezone structure is obsolete;
     * the tz argument should normally be specified as NULL.
     * The tz_dsttime field has never been used under Linux.
     * Thus, the following is purely of historic interest.
     */
446 447
    if(tz != RT_NULL)
    {
mysterywolf's avatar
mysterywolf 已提交
448
        tz->tz_dsttime = DST_NONE;
449
        tz->tz_minuteswest = -(tz_get() * 60);
450 451 452
    }

    if (tv != RT_NULL && get_timeval(tv) == RT_EOK)
mysterywolf's avatar
mysterywolf 已提交
453 454 455 456 457
    {
        return 0;
    }
    else
    {
458
        rt_set_errno(EFAULT);
mysterywolf's avatar
mysterywolf 已提交
459 460 461
        return -1;
    }
}
mysterywolf's avatar
update  
mysterywolf 已提交
462
RTM_EXPORT(gettimeofday);
mysterywolf's avatar
mysterywolf 已提交
463 464 465

int settimeofday(const struct timeval *tv, const struct timezone *tz)
{
mysterywolf's avatar
mysterywolf 已提交
466 467 468 469 470 471 472
    /* The use of the timezone structure is obsolete;
     * the tz argument should normally be specified as NULL.
     * The tz_dsttime field has never been used under Linux.
     * Thus, the following is purely of historic interest.
     */
    if (tv != RT_NULL
        && tv->tv_usec >= 0
mysterywolf's avatar
mysterywolf 已提交
473
        && set_timeval((struct timeval *)tv) == RT_EOK)
mysterywolf's avatar
mysterywolf 已提交
474
    {
mysterywolf's avatar
mysterywolf 已提交
475
        return 0;
mysterywolf's avatar
mysterywolf 已提交
476 477 478
    }
    else
    {
mysterywolf's avatar
mysterywolf 已提交
479
        rt_set_errno(EINVAL);
mysterywolf's avatar
mysterywolf 已提交
480 481 482
        return -1;
    }
}
mysterywolf's avatar
update  
mysterywolf 已提交
483
RTM_EXPORT(settimeofday);
484

mysterywolf's avatar
mysterywolf 已提交
485
/* inherent in the toolchain */
486
RTM_EXPORT(difftime);
mysterywolf's avatar
mysterywolf 已提交
487
RTM_EXPORT(strftime);
mysterywolf's avatar
mysterywolf 已提交
488

489
#ifdef RT_USING_POSIX
490 491 492 493

#ifdef RT_USING_RTC
static volatile struct timeval _timevalue;
static int _rt_clock_time_system_init()
494
{
495 496
    register rt_base_t level;
    time_t time = 0;
497 498 499 500 501 502 503
    rt_tick_t tick;
    rt_device_t device;

    device = rt_device_find("rtc");
    if (device != RT_NULL)
    {
        /* get realtime seconds */
504 505 506 507 508 509 510 511 512
        if(rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time) == RT_EOK)
        {
            level = rt_hw_interrupt_disable();
            tick = rt_tick_get(); /* get tick */
            _timevalue.tv_usec = (tick%RT_TICK_PER_SECOND) * MICROSECOND_PER_TICK;
            _timevalue.tv_sec = time - tick/RT_TICK_PER_SECOND - 1;
            rt_hw_interrupt_enable(level);
            return 0;
        }
513 514
    }

515 516 517 518
    level = rt_hw_interrupt_disable();
    _timevalue.tv_usec = 0;
    _timevalue.tv_sec = 0;
    rt_hw_interrupt_enable(level);
519

520
    return -1;
521
}
522 523
INIT_COMPONENT_EXPORT(_rt_clock_time_system_init);
#endif /* RT_USING_RTC */
524 525 526

int clock_getres(clockid_t clockid, struct timespec *res)
{
527 528 529 530
#ifndef RT_USING_RTC
    LOG_W("Cannot find a RTC device to save time!");
    return -1;
#else
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
    int ret = 0;

    if (res == RT_NULL)
    {
        rt_set_errno(EINVAL);
        return -1;
    }

    switch (clockid)
    {
    case CLOCK_REALTIME:
        res->tv_sec = 0;
        res->tv_nsec = NANOSECOND_PER_SECOND/RT_TICK_PER_SECOND;
        break;

#ifdef RT_USING_CPUTIME
    case CLOCK_CPUTIME_ID:
        res->tv_sec  = 0;
        res->tv_nsec = clock_cpu_getres();
        break;
#endif

    default:
        ret = -1;
        rt_set_errno(EINVAL);
        break;
    }

    return ret;
560
#endif /* RT_USING_RTC */
561 562 563 564 565
}
RTM_EXPORT(clock_getres);

int clock_gettime(clockid_t clockid, struct timespec *tp)
{
566 567 568 569
#ifndef RT_USING_RTC
    LOG_W("Cannot find a RTC device to save time!");
    return -1;
#else
570 571 572 573 574 575 576 577 578 579 580 581
    int ret = 0;

    if (tp == RT_NULL)
    {
        rt_set_errno(EINVAL);
        return -1;
    }

    switch (clockid)
    {
    case CLOCK_REALTIME:
        {
582 583
            int tick;
            register rt_base_t level;
584

585 586
            level = rt_hw_interrupt_disable();
            tick = rt_tick_get(); /* get tick */
587 588
            tp->tv_sec  = _timevalue.tv_sec + tick / RT_TICK_PER_SECOND;
            tp->tv_nsec = (_timevalue.tv_usec + (tick % RT_TICK_PER_SECOND) * MICROSECOND_PER_TICK) * 1000;
589
            rt_hw_interrupt_enable(level);
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
        }
        break;

#ifdef RT_USING_CPUTIME
    case CLOCK_CPUTIME_ID:
        {
            float unit = 0;
            long long cpu_tick;

            unit = clock_cpu_getres();
            cpu_tick = clock_cpu_gettime();

            tp->tv_sec  = ((int)(cpu_tick * unit)) / NANOSECOND_PER_SECOND;
            tp->tv_nsec = ((int)(cpu_tick * unit)) % NANOSECOND_PER_SECOND;
        }
        break;
#endif
    default:
        rt_set_errno(EINVAL);
        ret = -1;
    }

    return ret;
613
#endif /* RT_USING_RTC */
614 615 616 617 618
}
RTM_EXPORT(clock_gettime);

int clock_settime(clockid_t clockid, const struct timespec *tp)
{
619 620 621 622 623
#ifndef RT_USING_RTC
    LOG_W("Cannot find a RTC device to save time!");
    return -1;
#else
    register rt_base_t level;
624 625 626 627 628 629 630 631 632 633 634 635 636
    int second;
    rt_tick_t tick;
    rt_device_t device;

    if ((clockid != CLOCK_REALTIME) || (tp == RT_NULL))
    {
        rt_set_errno(EINVAL);
        return -1;
    }

    /* get second */
    second = tp->tv_sec;

637 638
    level = rt_hw_interrupt_disable();
    tick = rt_tick_get(); /* get tick */
639 640 641
    /* update timevalue */
    _timevalue.tv_usec = MICROSECOND_PER_SECOND - (tick % RT_TICK_PER_SECOND) * MICROSECOND_PER_TICK;
    _timevalue.tv_sec = second - tick/RT_TICK_PER_SECOND - 1;
642
    rt_hw_interrupt_enable(level);
643 644 645 646 647 648

    /* update for RTC device */
    device = rt_device_find("rtc");
    if (device != RT_NULL)
    {
        /* set realtime seconds */
649 650 651 652
        if(rt_device_control(device, RT_DEVICE_CTRL_RTC_SET_TIME, &second) == RT_EOK)
        {
            return 0;
        }
653 654
    }

655 656
    return -1;
#endif /* RT_USING_RTC */
657 658
}
RTM_EXPORT(clock_settime);
mysterywolf's avatar
mysterywolf 已提交
659

660
int rt_timespec_to_tick(const struct timespec *time)
mysterywolf's avatar
mysterywolf 已提交
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
{
    int tick;
    int nsecond, second;
    struct timespec tp;

    RT_ASSERT(time != RT_NULL);

    tick = RT_WAITING_FOREVER;
    if (time != NULL)
    {
        /* get current tp */
        clock_gettime(CLOCK_REALTIME, &tp);

        if ((time->tv_nsec - tp.tv_nsec) < 0)
        {
            nsecond = NANOSECOND_PER_SECOND - (tp.tv_nsec - time->tv_nsec);
            second  = time->tv_sec - tp.tv_sec - 1;
        }
        else
        {
            nsecond = time->tv_nsec - tp.tv_nsec;
            second  = time->tv_sec - tp.tv_sec;
        }

        tick = second * RT_TICK_PER_SECOND + nsecond * RT_TICK_PER_SECOND / NANOSECOND_PER_SECOND;
        if (tick < 0) tick = 0;
    }

    return tick;
}
691
RTM_EXPORT(rt_timespec_to_tick);
mysterywolf's avatar
mysterywolf 已提交
692

693
#endif /* RT_USING_POSIX */
694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719


/* timezone */
#ifndef RT_LIBC_DEFAULT_TIMEZONE
#define RT_LIBC_DEFAULT_TIMEZONE    8
#endif

static volatile int8_t _current_timezone = RT_LIBC_DEFAULT_TIMEZONE;

void tz_set(int8_t tz)
{
    register rt_base_t level;
    level = rt_hw_interrupt_disable();
    _current_timezone = tz;
    rt_hw_interrupt_enable(level);
}

int8_t tz_get(void)
{
    return _current_timezone;
}

int8_t tz_is_dst(void)
{
    return 0;
}