summaryrefslogtreecommitdiffstats
path: root/qemu/roms/u-boot/drivers/rtc/mcfrtc.c
diff options
context:
space:
mode:
authorRajithaY <rajithax.yerrumsetty@intel.com>2017-04-25 03:31:15 -0700
committerRajitha Yerrumchetty <rajithax.yerrumsetty@intel.com>2017-05-22 06:48:08 +0000
commitbb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch)
treeca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/roms/u-boot/drivers/rtc/mcfrtc.c
parenta14b48d18a9ed03ec191cf16b162206998a895ce (diff)
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to kvmfornfv repo and make use of the updated latest qemu for the execution of all testcase Change-Id: I1280af507a857675c7f81d30c95255635667bdd7 Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/roms/u-boot/drivers/rtc/mcfrtc.c')
-rw-r--r--qemu/roms/u-boot/drivers/rtc/mcfrtc.c109
1 files changed, 0 insertions, 109 deletions
diff --git a/qemu/roms/u-boot/drivers/rtc/mcfrtc.c b/qemu/roms/u-boot/drivers/rtc/mcfrtc.c
deleted file mode 100644
index 8961ca4f8..000000000
--- a/qemu/roms/u-boot/drivers/rtc/mcfrtc.c
+++ /dev/null
@@ -1,109 +0,0 @@
-/*
- * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
- * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#include <common.h>
-
-#if defined(CONFIG_CMD_DATE)
-
-#include <command.h>
-#include <rtc.h>
-#include <asm/immap.h>
-#include <asm/rtc.h>
-
-#undef RTC_DEBUG
-
-#ifndef CONFIG_SYS_MCFRTC_BASE
-#error RTC_BASE is not defined!
-#endif
-
-#define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
-#define STARTOFTIME 1970
-
-int rtc_get(struct rtc_time *tmp)
-{
- volatile rtc_t *rtc = (rtc_t *) (CONFIG_SYS_MCFRTC_BASE);
-
- int rtc_days, rtc_hrs, rtc_mins;
- int tim;
-
- rtc_days = rtc->days;
- rtc_hrs = rtc->hourmin >> 8;
- rtc_mins = RTC_HOURMIN_MINUTES(rtc->hourmin);
-
- tim = (rtc_days * 24) + rtc_hrs;
- tim = (tim * 60) + rtc_mins;
- tim = (tim * 60) + rtc->seconds;
-
- to_tm(tim, tmp);
-
- tmp->tm_yday = 0;
- tmp->tm_isdst = 0;
-
-#ifdef RTC_DEBUG
- printf("Get DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
- tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
- tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
-#endif
-
- return 0;
-}
-
-int rtc_set(struct rtc_time *tmp)
-{
- volatile rtc_t *rtc = (rtc_t *) (CONFIG_SYS_MCFRTC_BASE);
-
- static int month_days[12] = {
- 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31
- };
- int days, i, months;
-
- if (tmp->tm_year > 2037) {
- printf("Unable to handle. Exceeding integer limitation!\n");
- tmp->tm_year = 2027;
- }
-#ifdef RTC_DEBUG
- printf("Set DATE: %4d-%02d-%02d (wday=%d) TIME: %2d:%02d:%02d\n",
- tmp->tm_year, tmp->tm_mon, tmp->tm_mday, tmp->tm_wday,
- tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
-#endif
-
- /* calculate days by years */
- for (i = STARTOFTIME, days = 0; i < tmp->tm_year; i++) {
- days += 365 + isleap(i);
- }
-
- /* calculate days by months */
- months = tmp->tm_mon - 1;
- for (i = 0; i < months; i++) {
- days += month_days[i];
-
- if (i == 1)
- days += isleap(i);
- }
-
- days += tmp->tm_mday - 1;
-
- rtc->days = days;
- rtc->hourmin = (tmp->tm_hour << 8) | tmp->tm_min;
- rtc->seconds = tmp->tm_sec;
-
- return 0;
-}
-
-void rtc_reset(void)
-{
- volatile rtc_t *rtc = (rtc_t *) (CONFIG_SYS_MCFRTC_BASE);
-
- if ((rtc->cr & RTC_CR_EN) == 0) {
- printf("real-time-clock was stopped. Now starting...\n");
- rtc->cr |= RTC_CR_EN;
- }
-
- rtc->cr |= RTC_CR_SWR;
-}
-
-#endif /* CONFIG_MCFRTC && CONFIG_CMD_DATE */