2021-03-04 15:02:21 +08:00
|
|
|
/****************************************************************************
|
2015-11-21 07:36:10 +08:00
|
|
|
* drivers/timers/pcf85263.c
|
|
|
|
*
|
2021-03-04 14:10:42 +08:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2015-11-21 07:36:10 +08:00
|
|
|
*
|
2021-03-04 14:10:42 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-11-21 07:36:10 +08:00
|
|
|
*
|
2021-03-04 14:10:42 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2015-11-21 07:36:10 +08:00
|
|
|
*
|
2021-03-04 15:02:21 +08:00
|
|
|
****************************************************************************/
|
2015-11-21 07:36:10 +08:00
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/****************************************************************************
|
2015-11-21 07:36:10 +08:00
|
|
|
* Included Files
|
2021-03-04 15:02:21 +08:00
|
|
|
****************************************************************************/
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include <nuttx/arch.h>
|
2016-01-30 22:00:16 +08:00
|
|
|
#include <nuttx/i2c/i2c_master.h>
|
2015-11-21 07:36:10 +08:00
|
|
|
#include <nuttx/timers/pcf85263.h>
|
|
|
|
|
|
|
|
#include "pcf85263.h"
|
|
|
|
|
|
|
|
#ifdef CONFIG_RTC_PCF85263
|
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/****************************************************************************
|
2015-11-21 07:36:10 +08:00
|
|
|
* Pre-processor Definitions
|
2021-03-04 15:02:21 +08:00
|
|
|
****************************************************************************/
|
2019-12-07 13:36:33 +08:00
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/* Configuration ************************************************************/
|
2019-12-07 13:36:33 +08:00
|
|
|
|
2015-11-21 07:36:10 +08:00
|
|
|
/* This RTC implementation supports only date/time RTC hardware */
|
|
|
|
|
|
|
|
#ifndef CONFIG_RTC_DATETIME
|
|
|
|
# error CONFIG_RTC_DATETIME must be set to use this driver
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_RTC_HIRES
|
|
|
|
# error CONFIG_RTC_HIRES must NOT be set with this driver
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CONFIG_PCF85263_I2C_FREQUENCY
|
|
|
|
# error CONFIG_PCF85263_I2C_FREQUENCY is not configured
|
|
|
|
# define CONFIG_PCF85263_I2C_FREQUENCY 400000
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CONFIG_PCF85263_I2C_FREQUENCY > 400000
|
|
|
|
# error CONFIG_PCF85263_I2C_FREQUENCY is out of range
|
|
|
|
#endif
|
|
|
|
|
2015-11-21 21:14:36 +08:00
|
|
|
#define PCF85263_I2C_ADDRESS 0x51
|
2015-11-21 07:36:10 +08:00
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/****************************************************************************
|
2020-02-23 16:50:23 +08:00
|
|
|
* Private Types
|
2021-03-04 15:02:21 +08:00
|
|
|
****************************************************************************/
|
2019-12-07 13:36:33 +08:00
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/* This structure describes the state of the PCF85263 chip.
|
|
|
|
* Only a single RTC is supported.
|
2015-11-21 07:36:10 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
struct pcf85263_dev_s
|
|
|
|
{
|
2016-01-30 22:36:47 +08:00
|
|
|
FAR struct i2c_master_s *i2c; /* Contained reference to the I2C bus driver */
|
2015-11-21 07:36:10 +08:00
|
|
|
};
|
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/****************************************************************************
|
2015-11-21 07:36:10 +08:00
|
|
|
* Public Data
|
2021-03-04 15:02:21 +08:00
|
|
|
****************************************************************************/
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
/* g_rtc_enabled is set true after the RTC has successfully initialized */
|
|
|
|
|
|
|
|
volatile bool g_rtc_enabled = false;
|
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/****************************************************************************
|
2015-11-21 07:36:10 +08:00
|
|
|
* Private Data
|
2021-03-04 15:02:21 +08:00
|
|
|
****************************************************************************/
|
2019-12-07 13:36:33 +08:00
|
|
|
|
2015-11-21 07:36:10 +08:00
|
|
|
/* The state of the PCF85263 chip. Only a single RTC is supported */
|
|
|
|
|
|
|
|
static struct pcf85263_dev_s g_pcf85263;
|
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/****************************************************************************
|
2015-11-21 07:36:10 +08:00
|
|
|
* Private Functions
|
2021-03-04 15:02:21 +08:00
|
|
|
****************************************************************************/
|
2015-11-21 07:36:10 +08:00
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/****************************************************************************
|
2015-11-21 07:36:10 +08:00
|
|
|
* Name: rtc_dumptime
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Show the broken out time.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
2021-03-04 15:02:21 +08:00
|
|
|
****************************************************************************/
|
2015-11-21 07:36:10 +08:00
|
|
|
|
2016-06-16 21:39:23 +08:00
|
|
|
#ifdef CONFIG_DEBUG_RTC_INFO
|
2015-11-21 07:36:10 +08:00
|
|
|
static void rtc_dumptime(FAR struct tm *tp, FAR const char *msg)
|
|
|
|
{
|
2016-06-16 21:39:23 +08:00
|
|
|
rtcinfo("%s:\n", msg);
|
|
|
|
rtcinfo(" tm_sec: %08x\n", tp->tm_sec);
|
|
|
|
rtcinfo(" tm_min: %08x\n", tp->tm_min);
|
|
|
|
rtcinfo(" tm_hour: %08x\n", tp->tm_hour);
|
|
|
|
rtcinfo(" tm_mday: %08x\n", tp->tm_mday);
|
|
|
|
rtcinfo(" tm_mon: %08x\n", tp->tm_mon);
|
|
|
|
rtcinfo(" tm_year: %08x\n", tp->tm_year);
|
|
|
|
rtcinfo(" tm_wday: %08x\n", tp->tm_wday);
|
|
|
|
rtcinfo(" tm_yday: %08x\n", tp->tm_yday);
|
|
|
|
rtcinfo(" tm_isdst: %08x\n", tp->tm_isdst);
|
2015-11-21 07:36:10 +08:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
# define rtc_dumptime(tp, msg)
|
|
|
|
#endif
|
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/****************************************************************************
|
2015-11-21 07:36:10 +08:00
|
|
|
* Name: rtc_bin2bcd
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Converts a 2 digit binary to BCD format
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* value - The byte to be converted.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The value in BCD representation
|
|
|
|
*
|
2021-03-04 15:02:21 +08:00
|
|
|
****************************************************************************/
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
static uint8_t rtc_bin2bcd(int value)
|
|
|
|
{
|
|
|
|
uint8_t msbcd = 0;
|
|
|
|
|
|
|
|
while (value >= 10)
|
|
|
|
{
|
|
|
|
msbcd++;
|
|
|
|
value -= 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (msbcd << 4) | value;
|
|
|
|
}
|
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/****************************************************************************
|
2015-11-21 07:36:10 +08:00
|
|
|
* Name: rtc_bcd2bin
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Convert from 2 digit BCD to binary.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* value - The BCD value to be converted.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The value in binary representation
|
|
|
|
*
|
2021-03-04 15:02:21 +08:00
|
|
|
****************************************************************************/
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
static int rtc_bcd2bin(uint8_t value)
|
|
|
|
{
|
|
|
|
int tens = ((int)value >> 4) * 10;
|
|
|
|
return tens + (value & 0x0f);
|
|
|
|
}
|
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/****************************************************************************
|
2015-11-21 07:36:10 +08:00
|
|
|
* Public Functions
|
2021-03-04 15:02:21 +08:00
|
|
|
****************************************************************************/
|
2015-11-21 07:36:10 +08:00
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/****************************************************************************
|
2015-11-21 07:36:10 +08:00
|
|
|
* Name: pcf85263_rtc_initialize
|
|
|
|
*
|
|
|
|
* Description:
|
2021-03-04 15:02:21 +08:00
|
|
|
* Initialize the hardware RTC per the selected configuration.
|
|
|
|
* This function is called once during the OS initialization sequence by
|
|
|
|
* board-specific logic.
|
2015-11-21 07:36:10 +08:00
|
|
|
*
|
2021-03-04 15:02:21 +08:00
|
|
|
* After pcf85263_rtc_initialize() is called, the OS function
|
|
|
|
* clock_synchronize() should also be called to synchronize the system
|
|
|
|
* timer to a hardware RTC. That operation is normally performed
|
|
|
|
* automatically by the system during clock initialization.
|
|
|
|
* However, when an external RTC is used, the board logic will need to
|
|
|
|
* explicitly re-synchronize the system timer to the RTC when the RTC
|
2015-11-21 07:36:10 +08:00
|
|
|
* becomes available.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) on success; a negated errno on failure
|
|
|
|
*
|
2021-03-04 15:02:21 +08:00
|
|
|
****************************************************************************/
|
2015-11-21 07:36:10 +08:00
|
|
|
|
2016-01-30 22:36:47 +08:00
|
|
|
int pcf85263_rtc_initialize(FAR struct i2c_master_s *i2c)
|
2015-11-21 07:36:10 +08:00
|
|
|
{
|
|
|
|
/* Remember the i2c device and claim that the RTC is enabled */
|
|
|
|
|
2015-12-22 04:39:40 +08:00
|
|
|
g_pcf85263.i2c = i2c;
|
|
|
|
g_rtc_enabled = true;
|
2015-11-21 07:36:10 +08:00
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/****************************************************************************
|
2015-11-21 07:36:10 +08:00
|
|
|
* Name: up_rtc_getdatetime
|
|
|
|
*
|
|
|
|
* Description:
|
2021-03-04 15:02:21 +08:00
|
|
|
* Get the current date and time from the date/time RTC.
|
|
|
|
* This interface is only supported by the date/time RTC hardware
|
|
|
|
* implementation.
|
|
|
|
* It is used to replace the system timer. It is only used by the RTOS
|
|
|
|
* during initialization to set up the system time when CONFIG_RTC and
|
|
|
|
* CONFIG_RTC_DATETIME are selected (and CONFIG_RTC_HIRES is not).
|
2015-11-21 07:36:10 +08:00
|
|
|
*
|
2021-03-04 15:02:21 +08:00
|
|
|
* NOTE: Some date/time RTC hardware is capability of sub-second accuracy.
|
|
|
|
* That sub-second accuracy is lost in this interface. However, since the
|
|
|
|
* system time is reinitialized on each power-up/reset, there will be no
|
|
|
|
* timing inaccuracy in the long run.
|
2015-11-21 07:36:10 +08:00
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* tp - The location to return the high resolution time value.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) on success; a negated errno on failure
|
|
|
|
*
|
2021-03-04 15:02:21 +08:00
|
|
|
****************************************************************************/
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
int up_rtc_getdatetime(FAR struct tm *tp)
|
|
|
|
{
|
|
|
|
struct i2c_msg_s msg[4];
|
|
|
|
uint8_t secaddr;
|
|
|
|
uint8_t buffer[7];
|
|
|
|
uint8_t seconds;
|
|
|
|
int ret;
|
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/* If this function is called before the RTC has been initialized
|
|
|
|
* (and it will be), then just return the data/time of the epoch,
|
|
|
|
* 12:00 am, Jan 1, 1970.
|
2015-11-21 07:36:10 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (!g_rtc_enabled)
|
|
|
|
{
|
|
|
|
tp->tm_sec = 0;
|
|
|
|
tp->tm_min = 0;
|
|
|
|
tp->tm_hour = 0;
|
|
|
|
|
|
|
|
/* Jan 1, 1970 was a Thursday */
|
|
|
|
|
|
|
|
tp->tm_wday = 4;
|
|
|
|
tp->tm_mday = 1;
|
|
|
|
tp->tm_mon = 0;
|
|
|
|
tp->tm_year = 70;
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Select to begin reading at the seconds register */
|
|
|
|
|
2016-02-02 04:17:20 +08:00
|
|
|
secaddr = PCF85263_RTC_SECONDS;
|
2015-11-21 07:36:10 +08:00
|
|
|
|
2016-02-02 04:17:20 +08:00
|
|
|
msg[0].frequency = CONFIG_PCF85263_I2C_FREQUENCY;
|
|
|
|
msg[0].addr = PCF85263_I2C_ADDRESS;
|
|
|
|
msg[0].flags = 0;
|
|
|
|
msg[0].buffer = &secaddr;
|
|
|
|
msg[0].length = 1;
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
/* Set up to read 7 registers: secondss, minutes, hour, day-of-week, date,
|
|
|
|
* month, year
|
|
|
|
*/
|
|
|
|
|
2016-02-02 04:17:20 +08:00
|
|
|
msg[1].frequency = CONFIG_PCF85263_I2C_FREQUENCY;
|
|
|
|
msg[1].addr = PCF85263_I2C_ADDRESS;
|
|
|
|
msg[1].flags = I2C_M_READ;
|
|
|
|
msg[1].buffer = buffer;
|
|
|
|
msg[1].length = 7;
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
/* Read the seconds register again */
|
|
|
|
|
2016-02-02 04:17:20 +08:00
|
|
|
msg[2].frequency = CONFIG_PCF85263_I2C_FREQUENCY;
|
|
|
|
msg[2].addr = PCF85263_I2C_ADDRESS;
|
|
|
|
msg[2].flags = 0;
|
|
|
|
msg[2].buffer = &secaddr;
|
|
|
|
msg[2].length = 1;
|
2015-11-21 07:36:10 +08:00
|
|
|
|
2016-02-02 04:17:20 +08:00
|
|
|
msg[3].frequency = CONFIG_PCF85263_I2C_FREQUENCY;
|
|
|
|
msg[3].addr = PCF85263_I2C_ADDRESS;
|
|
|
|
msg[3].flags = I2C_M_READ;
|
|
|
|
msg[3].buffer = &seconds;
|
|
|
|
msg[3].length = 1;
|
2015-11-21 07:36:10 +08:00
|
|
|
|
2016-02-02 02:14:31 +08:00
|
|
|
/* Perform the transfer. The transfer may be performed repeatedly of the
|
2021-03-04 15:02:21 +08:00
|
|
|
* seconds values decreases, meaning that that was a rollover in the
|
|
|
|
* seconds.
|
2015-11-21 07:36:10 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
ret = I2C_TRANSFER(g_pcf85263.i2c, msg, 4);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2023-09-05 20:58:18 +08:00
|
|
|
rtcerr("ERROR: I2C_TRANSFER failed: %d\n", ret);
|
2015-11-21 07:36:10 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while ((buffer[0] & PCF85263_RTC_SECONDS_MASK) >
|
|
|
|
(seconds & PCF85263_RTC_SECONDS_MASK));
|
|
|
|
|
|
|
|
/* Format the return time */
|
2019-12-07 13:36:33 +08:00
|
|
|
|
2015-11-21 07:36:10 +08:00
|
|
|
/* Return seconds (0-61) */
|
|
|
|
|
|
|
|
tp->tm_sec = rtc_bcd2bin(buffer[0] & PCF85263_RTC_SECONDS_MASK);
|
|
|
|
|
|
|
|
/* Return minutes (0-59) */
|
|
|
|
|
|
|
|
tp->tm_min = rtc_bcd2bin(buffer[1] & PCF85263_RTC_MINUTES_MASK);
|
|
|
|
|
|
|
|
/* Return hour (0-23). This assumes 24-hour time was set. */
|
|
|
|
|
|
|
|
tp->tm_hour = rtc_bcd2bin(buffer[2] & PCF85263_RTC_HOURS24_MASK);
|
|
|
|
|
|
|
|
/* Return the day of the month (1-31) */
|
|
|
|
|
|
|
|
tp->tm_mday = rtc_bcd2bin(buffer[3] & PCF85263_RTC_DAYS_MASK);
|
|
|
|
|
|
|
|
/* Return the day of the week (0-6) */
|
|
|
|
|
|
|
|
tp->tm_wday = (rtc_bcd2bin(buffer[4]) & PCF85263_RTC_WEEKDAYS_MASK);
|
|
|
|
|
|
|
|
/* Return the month (0-11) */
|
|
|
|
|
|
|
|
tp->tm_mon = rtc_bcd2bin(buffer[5] & PCF85263_RTC_MONTHS_MASK) - 1;
|
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/* Return the years since 1900. The RTC will hold years since 1968
|
|
|
|
* (a leap year like 2000).
|
2015-11-21 07:36:10 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
tp->tm_year = rtc_bcd2bin(buffer[6]) + 68;
|
|
|
|
|
|
|
|
rtc_dumptime(tp, "Returning");
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/****************************************************************************
|
2015-11-21 07:36:10 +08:00
|
|
|
* Name: up_rtc_settime
|
|
|
|
*
|
|
|
|
* Description:
|
2021-03-04 15:02:21 +08:00
|
|
|
* Set the RTC to the provided time. All RTC implementations must be able
|
|
|
|
* to set their time based on a standard timespec.
|
2015-11-21 07:36:10 +08:00
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* tp - the time to use
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) on success; a negated errno on failure
|
|
|
|
*
|
2021-03-04 15:02:21 +08:00
|
|
|
****************************************************************************/
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
int up_rtc_settime(FAR const struct timespec *tp)
|
|
|
|
{
|
|
|
|
struct i2c_msg_s msg[3];
|
|
|
|
struct tm newtm;
|
|
|
|
time_t newtime;
|
2015-11-21 07:39:41 +08:00
|
|
|
uint8_t buffer[9];
|
2015-12-22 04:00:25 +08:00
|
|
|
uint8_t cmd;
|
2015-11-21 07:36:10 +08:00
|
|
|
uint8_t seconds;
|
|
|
|
int ret;
|
|
|
|
|
2021-03-04 15:02:21 +08:00
|
|
|
/* If this function is called before the RTC has been initialized then just
|
|
|
|
* return an error.
|
2015-11-21 07:36:10 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (!g_rtc_enabled)
|
|
|
|
{
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
rtc_dumptime(tp, "Setting time");
|
|
|
|
|
|
|
|
/* Get the broken out time */
|
|
|
|
|
|
|
|
newtime = (time_t)tp->tv_sec;
|
|
|
|
if (tp->tv_nsec >= 500000000)
|
|
|
|
{
|
|
|
|
/* Round up */
|
|
|
|
|
|
|
|
newtime++;
|
|
|
|
}
|
|
|
|
|
2019-12-07 13:36:33 +08:00
|
|
|
if (localtime_r(&newtime, &newtm) == NULL)
|
|
|
|
{
|
2023-09-05 20:58:18 +08:00
|
|
|
rtcerr("ERROR: localtime_r failed\n");
|
2019-12-07 13:36:33 +08:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2015-11-21 07:36:10 +08:00
|
|
|
rtc_dumptime(&tm, "New time");
|
|
|
|
|
|
|
|
/* Construct the message */
|
2019-12-07 13:36:33 +08:00
|
|
|
|
2015-12-22 04:00:25 +08:00
|
|
|
/* Write starting with the 100ths of seconds register */
|
2015-11-21 07:36:10 +08:00
|
|
|
|
2015-11-21 07:39:41 +08:00
|
|
|
buffer[0] = PCF85263_RTC_100TH_SECONDS;
|
|
|
|
|
|
|
|
/* Clear the 100ths of seconds */
|
|
|
|
|
|
|
|
buffer[1] = 0;
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
/* Save seconds (0-59) converted to BCD */
|
|
|
|
|
2015-11-21 07:39:41 +08:00
|
|
|
buffer[2] = rtc_bin2bcd(newtm.tm_sec);
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
/* Save minutes (0-59) converted to BCD */
|
|
|
|
|
2015-11-21 07:39:41 +08:00
|
|
|
buffer[3] = rtc_bin2bcd(newtm.tm_min);
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
/* Save hour (0-23) with 24-hour time indication */
|
|
|
|
|
2015-11-21 07:39:41 +08:00
|
|
|
buffer[4] = rtc_bin2bcd(newtm.tm_hour);
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
/* Save the day of the month (1-31) */
|
|
|
|
|
2015-11-21 07:39:41 +08:00
|
|
|
buffer[5] = rtc_bin2bcd(newtm.tm_mday);
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
/* Save the day of the week (1-7) */
|
|
|
|
|
2015-11-21 07:39:41 +08:00
|
|
|
buffer[6] = rtc_bin2bcd(newtm.tm_wday);
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
/* Save the month (1-12) */
|
|
|
|
|
2015-11-21 07:39:41 +08:00
|
|
|
buffer[7] = rtc_bin2bcd(newtm.tm_mon + 1);
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
/* Save the year. Use years since 1968 (a leap year like 2000) */
|
|
|
|
|
2015-11-21 07:39:41 +08:00
|
|
|
buffer[8] = rtc_bin2bcd(newtm.tm_year - 68);
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
/* Setup the I2C message */
|
|
|
|
|
2016-02-02 04:17:20 +08:00
|
|
|
msg[0].frequency = CONFIG_PCF85263_I2C_FREQUENCY;
|
|
|
|
msg[0].addr = PCF85263_I2C_ADDRESS;
|
|
|
|
msg[0].flags = 0;
|
|
|
|
msg[0].buffer = buffer;
|
|
|
|
msg[0].length = 9;
|
2015-11-21 07:36:10 +08:00
|
|
|
|
|
|
|
/* Read back the seconds register */
|
|
|
|
|
2016-02-02 04:17:20 +08:00
|
|
|
cmd = PCF85263_RTC_SECONDS;
|
2015-12-22 04:00:25 +08:00
|
|
|
|
2016-02-02 04:17:20 +08:00
|
|
|
msg[1].frequency = CONFIG_PCF85263_I2C_FREQUENCY;
|
|
|
|
msg[1].addr = PCF85263_I2C_ADDRESS;
|
|
|
|
msg[1].flags = 0;
|
|
|
|
msg[1].buffer = &cmd;
|
|
|
|
msg[1].length = 1;
|
2015-11-21 07:36:10 +08:00
|
|
|
|
2016-02-02 04:17:20 +08:00
|
|
|
msg[2].frequency = CONFIG_PCF85263_I2C_FREQUENCY;
|
|
|
|
msg[2].addr = PCF85263_I2C_ADDRESS;
|
|
|
|
msg[2].flags = I2C_M_READ;
|
|
|
|
msg[2].buffer = &seconds;
|
|
|
|
msg[2].length = 1;
|
2015-11-21 07:36:10 +08:00
|
|
|
|
2016-02-01 22:57:22 +08:00
|
|
|
/* Perform the transfer. This transfer will be repeated if the seconds
|
|
|
|
* count rolls over to a smaller value while writing.
|
2015-11-21 07:36:10 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
ret = I2C_TRANSFER(g_pcf85263.i2c, msg, 3);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
2023-09-05 20:58:18 +08:00
|
|
|
rtcerr("ERROR: I2C_TRANSFER failed: %d\n", ret);
|
2015-11-21 07:36:10 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
2015-11-21 07:39:41 +08:00
|
|
|
while ((buffer[2] & PCF85263_RTC_SECONDS_MASK) >
|
2015-11-21 07:36:10 +08:00
|
|
|
(seconds & PCF85263_RTC_SECONDS_MASK));
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_RTC_PCF85263 */
|