d8024df105
This adds the application part of alarm wake up. On some targets like the Fuze+, it will also require a bootloader change to make sure that the device doesn't power down on alarm wake up (for example on the Fuze+ the bootloader requires the power button to be hold sufficiently long, thus preventing alarm wake up to work) Change-Id: I5d01957852355fddbd48110d3d75a5533f07879e
80 lines
2.1 KiB
C
80 lines
2.1 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright © 2011 by Amaury Pouly
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
#ifndef RTC_IMX233_H
|
|
#define RTC_IMX233_H
|
|
|
|
#include "config.h"
|
|
#include "system.h"
|
|
#include "cpu.h"
|
|
|
|
#include "regs/regs-rtc.h"
|
|
|
|
#define HW_RTC_PERSISTENTn(n) *(&HW_RTC_PERSISTENT0 + 4 * (n))
|
|
|
|
struct imx233_rtc_info_t
|
|
{
|
|
uint32_t seconds;
|
|
uint32_t persistent[6];
|
|
uint32_t alarm;
|
|
bool alarm_en, alarm_wake_en, alarm_wake, alarm_irq;
|
|
};
|
|
|
|
static inline void imx233_rtc_init(void)
|
|
{
|
|
BF_CLR(RTC_CTRL, CLKGATE);
|
|
}
|
|
|
|
static inline uint32_t imx233_rtc_read_seconds(void)
|
|
{
|
|
return HW_RTC_SECONDS;
|
|
}
|
|
|
|
static inline uint32_t imx233_rtc_read_persistent(int idx)
|
|
{
|
|
return HW_RTC_PERSISTENTn(idx);
|
|
}
|
|
|
|
static inline void imx233_rtc_clear_msec_irq(void)
|
|
{
|
|
BF_CLR(RTC_CTRL, ONEMSEC_IRQ);
|
|
}
|
|
|
|
static inline void imx233_rtc_enable_msec_irq(bool enable)
|
|
{
|
|
imx233_rtc_clear_msec_irq();
|
|
if(enable)
|
|
BF_SET(RTC_CTRL, ONEMSEC_IRQ_EN);
|
|
else
|
|
BF_CLR(RTC_CTRL, ONEMSEC_IRQ_EN);
|
|
}
|
|
|
|
static inline uint32_t imx233_rtc_read_alarm(void)
|
|
{
|
|
return HW_RTC_ALARM;
|
|
}
|
|
|
|
void imx233_rtc_write_seconds(uint32_t seconds);
|
|
void imx233_rtc_write_persistent(int idx, uint32_t val);
|
|
void imx233_rtc_write_alarm(uint32_t seconds);
|
|
|
|
struct imx233_rtc_info_t imx233_rtc_get_info(void);
|
|
|
|
#endif /* RTC_IMX233_H */
|