1ba1c684cb
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15594 a1c6a512-1295-4272-9138-f99709370657
125 lines
3.4 KiB
C
125 lines
3.4 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2002 by Linus Nielsen Feltzing, Uwe Freese, Laurent Baum
|
|
*
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
#include "config.h"
|
|
#include "i2c.h"
|
|
#include "rtc.h"
|
|
#include "kernel.h"
|
|
#include "system.h"
|
|
|
|
void rtc_init(void)
|
|
{
|
|
/* RTC Enable */
|
|
RTCCON |= 1;
|
|
}
|
|
|
|
int rtc_read_datetime(unsigned char* buf)
|
|
{
|
|
buf[0] = BCDSEC;
|
|
buf[1] = BCDMIN;
|
|
buf[2] = BCDHOUR;
|
|
buf[3] = BCDDAY-1; /* timefuncs wants 0..6 for wday */
|
|
buf[4] = BCDDATE;
|
|
buf[5] = BCDMON;
|
|
buf[6] = BCDYEAR;
|
|
|
|
return 1;
|
|
}
|
|
|
|
int rtc_write_datetime(unsigned char* buf)
|
|
{
|
|
BCDSEC = buf[0];
|
|
BCDMIN = buf[1];
|
|
BCDHOUR = buf[2];
|
|
BCDDAY = buf[3]+1; /* chip wants 1..7 for wday */
|
|
BCDDATE = buf[4];
|
|
BCDMON = buf[5];
|
|
BCDYEAR = buf[6];
|
|
|
|
return 1;
|
|
}
|
|
|
|
#ifdef HAVE_RTC_ALARM
|
|
/* This alarm code works in that it at least triggers INT_RTC. I am guessing
|
|
* that the OF bootloader for the Gigabeat detects the startup by alarm and shuts down.
|
|
* This code is available for use once the OF bootloader is no longer required.
|
|
*/
|
|
|
|
/* check whether the unit has been started by the RTC alarm function
|
|
* This code has not been written/checked for the gigabeat
|
|
*/
|
|
bool rtc_check_alarm_started(bool release_alarm)
|
|
{
|
|
static bool alarm_state, run_before;
|
|
bool rc;
|
|
|
|
if (run_before) {
|
|
rc = alarm_state;
|
|
alarm_state &= ~release_alarm;
|
|
} else {
|
|
/* This call resets AF, so we store the state for later recall */
|
|
rc = alarm_state = rtc_check_alarm_flag();
|
|
run_before = true;
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
|
|
/*
|
|
* I don't think this matters on the gigabeat, it seems designed to shut off the alarm in the
|
|
* event one happens while the player is running. This does not cause any problems on the
|
|
* gigabeat as the interupt is recieved (if not masked) and ignored.
|
|
*/
|
|
bool rtc_check_alarm_flag(void)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/* set alarm time registers to the given time (repeat once per day) */
|
|
void rtc_set_alarm(int h, int m)
|
|
{
|
|
ALMMIN=(((m / 10) << 4) | (m % 10)) & 0x7f; /* minutes */
|
|
ALMHOUR=(((h / 10) << 4) | (h % 10)) & 0x3f; /* hour */
|
|
}
|
|
|
|
/* read out the current alarm time */
|
|
void rtc_get_alarm(int *h, int *m)
|
|
{
|
|
*m=((ALMMIN & 0x70) >> 4) * 10 + (ALMMIN & 0x0f);
|
|
*h=((ALMHOUR & 0x30) >> 4) * 10 + (ALMHOUR & 0x0f);
|
|
}
|
|
|
|
/* turn alarm on or off by setting the alarm flag enable
|
|
* returns false if alarm was set and alarm flag (output) is off
|
|
*/
|
|
bool rtc_enable_alarm(bool enable)
|
|
{
|
|
if (enable)
|
|
{
|
|
RTCALM=0x46;
|
|
INTMSK&=~(1<<30);
|
|
}
|
|
else
|
|
{
|
|
RTCALM=0x00;
|
|
INTMSK|=(1<<30);
|
|
}
|
|
|
|
return false; /* all ok */
|
|
}
|
|
#endif
|