2019-06-04 08:11:33 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2008-02-06 09:38:46 +00:00
|
|
|
/*
|
|
|
|
* An rtc driver for the Dallas DS1511
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Atsushi Nemoto <anemo@mba.ocn.ne.jp>
|
2009-09-23 23:03:20 +00:00
|
|
|
* Copyright (C) 2007 Andrew Sharp <andy.sharp@lsi.com>
|
2008-02-06 09:38:46 +00:00
|
|
|
*
|
|
|
|
* Real time clock driver for the Dallas 1511 chip, which also
|
|
|
|
* contains a watchdog timer. There is a tiny amount of code that
|
|
|
|
* platform code could use to mess with the watchdog device a little
|
|
|
|
* bit, but not a full watchdog driver.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/bcd.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/kernel.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/gfp.h>
|
2008-02-06 09:38:46 +00:00
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/rtc.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/io.h>
|
2011-05-27 13:57:25 +00:00
|
|
|
#include <linux/module.h>
|
2008-02-06 09:38:46 +00:00
|
|
|
|
2024-02-27 23:04:19 +00:00
|
|
|
#define DS1511_SEC 0x0
|
|
|
|
#define DS1511_MIN 0x1
|
|
|
|
#define DS1511_HOUR 0x2
|
|
|
|
#define DS1511_DOW 0x3
|
|
|
|
#define DS1511_DOM 0x4
|
|
|
|
#define DS1511_MONTH 0x5
|
|
|
|
#define DS1511_YEAR 0x6
|
|
|
|
#define DS1511_CENTURY 0x7
|
|
|
|
#define DS1511_AM1_SEC 0x8
|
|
|
|
#define DS1511_AM2_MIN 0x9
|
|
|
|
#define DS1511_AM3_HOUR 0xa
|
|
|
|
#define DS1511_AM4_DATE 0xb
|
|
|
|
#define DS1511_WD_MSEC 0xc
|
|
|
|
#define DS1511_WD_SEC 0xd
|
|
|
|
#define DS1511_CONTROL_A 0xe
|
|
|
|
#define DS1511_CONTROL_B 0xf
|
|
|
|
#define DS1511_RAMADDR_LSB 0x10
|
|
|
|
#define DS1511_RAMDATA 0x13
|
2008-02-06 09:38:46 +00:00
|
|
|
|
|
|
|
#define DS1511_BLF1 0x80
|
|
|
|
#define DS1511_BLF2 0x40
|
|
|
|
#define DS1511_PRS 0x20
|
|
|
|
#define DS1511_PAB 0x10
|
|
|
|
#define DS1511_TDF 0x08
|
|
|
|
#define DS1511_KSF 0x04
|
|
|
|
#define DS1511_WDF 0x02
|
|
|
|
#define DS1511_IRQF 0x01
|
|
|
|
#define DS1511_TE 0x80
|
|
|
|
#define DS1511_CS 0x40
|
|
|
|
#define DS1511_BME 0x20
|
|
|
|
#define DS1511_TPE 0x10
|
|
|
|
#define DS1511_TIE 0x08
|
|
|
|
#define DS1511_KIE 0x04
|
|
|
|
#define DS1511_WDE 0x02
|
|
|
|
#define DS1511_WDS 0x01
|
rtc: ds1511: clean up ds1511_nvram_read()/ds1511_nvram_write()
The change removes redundant sysfs binary file boundary checks, since
this task is already done on caller side in fs/sysfs/file.c
The change enables burst mode of access to SRAM for any read()/write()
operations, it is worth to mention that this may influence on
userspace, for instance prior to the change
read(fd, buf, 1);
read(fd, buf + 1, 1);
and
read(fd, buf, 2);
sequences of syscalls over DS1511's sysfs "nvram" fd led to different
DS1511 state changes and/or buf content, if some userspace applications
are written specifically for DS1511 and exploit this strange
"feature", they may be impacted.
Also the change corrects NVRAM size accessible to userspace from 255
bytes to 256 bytes.
Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
2015-08-05 18:12:58 +00:00
|
|
|
#define DS1511_RAM_MAX 0x100
|
2008-02-06 09:38:46 +00:00
|
|
|
|
2024-02-27 23:04:26 +00:00
|
|
|
struct ds1511_data {
|
2008-02-06 09:38:46 +00:00
|
|
|
struct rtc_device *rtc;
|
|
|
|
void __iomem *ioaddr; /* virtual base address */
|
|
|
|
int irq;
|
2009-12-16 00:45:58 +00:00
|
|
|
spinlock_t lock;
|
2008-02-06 09:38:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static DEFINE_SPINLOCK(ds1511_lock);
|
|
|
|
|
|
|
|
static __iomem char *ds1511_base;
|
|
|
|
static u32 reg_spacing = 1;
|
|
|
|
|
2024-02-27 23:04:27 +00:00
|
|
|
static void rtc_write(uint8_t val, uint32_t reg)
|
2008-02-06 09:38:46 +00:00
|
|
|
{
|
|
|
|
writeb(val, ds1511_base + (reg * reg_spacing));
|
|
|
|
}
|
|
|
|
|
2024-02-27 23:04:27 +00:00
|
|
|
static uint8_t rtc_read(uint32_t reg)
|
2008-02-06 09:38:46 +00:00
|
|
|
{
|
|
|
|
return readb(ds1511_base + (reg * reg_spacing));
|
|
|
|
}
|
|
|
|
|
2024-02-27 23:04:27 +00:00
|
|
|
static void rtc_disable_update(void)
|
2008-02-06 09:38:46 +00:00
|
|
|
{
|
2024-02-27 23:04:19 +00:00
|
|
|
rtc_write((rtc_read(DS1511_CONTROL_B) & ~DS1511_TE), DS1511_CONTROL_B);
|
2008-02-06 09:38:46 +00:00
|
|
|
}
|
|
|
|
|
2024-02-27 23:04:20 +00:00
|
|
|
static void rtc_enable_update(void)
|
2008-02-06 09:38:46 +00:00
|
|
|
{
|
2024-02-27 23:04:19 +00:00
|
|
|
rtc_write((rtc_read(DS1511_CONTROL_B) | DS1511_TE), DS1511_CONTROL_B);
|
2008-02-06 09:38:46 +00:00
|
|
|
}
|
|
|
|
|
2008-04-28 09:11:55 +00:00
|
|
|
static int ds1511_rtc_set_time(struct device *dev, struct rtc_time *rtc_tm)
|
2008-02-06 09:38:46 +00:00
|
|
|
{
|
|
|
|
u8 mon, day, dow, hrs, min, sec, yrs, cen;
|
2008-05-07 03:42:30 +00:00
|
|
|
unsigned long flags;
|
2008-02-06 09:38:46 +00:00
|
|
|
|
|
|
|
yrs = rtc_tm->tm_year % 100;
|
2024-02-27 23:04:17 +00:00
|
|
|
cen = 19 + rtc_tm->tm_year / 100;
|
2008-02-06 09:38:46 +00:00
|
|
|
mon = rtc_tm->tm_mon + 1; /* tm_mon starts at zero */
|
|
|
|
day = rtc_tm->tm_mday;
|
|
|
|
dow = rtc_tm->tm_wday & 0x7; /* automatic BCD */
|
|
|
|
hrs = rtc_tm->tm_hour;
|
|
|
|
min = rtc_tm->tm_min;
|
|
|
|
sec = rtc_tm->tm_sec;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* each register is a different number of valid bits
|
|
|
|
*/
|
2008-10-19 03:28:41 +00:00
|
|
|
sec = bin2bcd(sec) & 0x7f;
|
|
|
|
min = bin2bcd(min) & 0x7f;
|
|
|
|
hrs = bin2bcd(hrs) & 0x3f;
|
|
|
|
day = bin2bcd(day) & 0x3f;
|
|
|
|
mon = bin2bcd(mon) & 0x1f;
|
|
|
|
yrs = bin2bcd(yrs) & 0xff;
|
|
|
|
cen = bin2bcd(cen) & 0xff;
|
2008-02-06 09:38:46 +00:00
|
|
|
|
|
|
|
spin_lock_irqsave(&ds1511_lock, flags);
|
|
|
|
rtc_disable_update();
|
2024-02-27 23:04:19 +00:00
|
|
|
rtc_write(cen, DS1511_CENTURY);
|
|
|
|
rtc_write(yrs, DS1511_YEAR);
|
|
|
|
rtc_write((rtc_read(DS1511_MONTH) & 0xe0) | mon, DS1511_MONTH);
|
|
|
|
rtc_write(day, DS1511_DOM);
|
|
|
|
rtc_write(hrs, DS1511_HOUR);
|
|
|
|
rtc_write(min, DS1511_MIN);
|
|
|
|
rtc_write(sec, DS1511_SEC);
|
|
|
|
rtc_write(dow, DS1511_DOW);
|
2008-02-06 09:38:46 +00:00
|
|
|
rtc_enable_update();
|
|
|
|
spin_unlock_irqrestore(&ds1511_lock, flags);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-28 09:11:55 +00:00
|
|
|
static int ds1511_rtc_read_time(struct device *dev, struct rtc_time *rtc_tm)
|
2008-02-06 09:38:46 +00:00
|
|
|
{
|
|
|
|
unsigned int century;
|
2008-05-07 03:42:30 +00:00
|
|
|
unsigned long flags;
|
2008-02-06 09:38:46 +00:00
|
|
|
|
|
|
|
spin_lock_irqsave(&ds1511_lock, flags);
|
|
|
|
rtc_disable_update();
|
|
|
|
|
2024-02-27 23:04:19 +00:00
|
|
|
rtc_tm->tm_sec = rtc_read(DS1511_SEC) & 0x7f;
|
|
|
|
rtc_tm->tm_min = rtc_read(DS1511_MIN) & 0x7f;
|
|
|
|
rtc_tm->tm_hour = rtc_read(DS1511_HOUR) & 0x3f;
|
|
|
|
rtc_tm->tm_mday = rtc_read(DS1511_DOM) & 0x3f;
|
|
|
|
rtc_tm->tm_wday = rtc_read(DS1511_DOW) & 0x7;
|
|
|
|
rtc_tm->tm_mon = rtc_read(DS1511_MONTH) & 0x1f;
|
|
|
|
rtc_tm->tm_year = rtc_read(DS1511_YEAR) & 0x7f;
|
|
|
|
century = rtc_read(DS1511_CENTURY);
|
2008-02-06 09:38:46 +00:00
|
|
|
|
|
|
|
rtc_enable_update();
|
|
|
|
spin_unlock_irqrestore(&ds1511_lock, flags);
|
|
|
|
|
2008-10-19 03:28:41 +00:00
|
|
|
rtc_tm->tm_sec = bcd2bin(rtc_tm->tm_sec);
|
|
|
|
rtc_tm->tm_min = bcd2bin(rtc_tm->tm_min);
|
|
|
|
rtc_tm->tm_hour = bcd2bin(rtc_tm->tm_hour);
|
|
|
|
rtc_tm->tm_mday = bcd2bin(rtc_tm->tm_mday);
|
|
|
|
rtc_tm->tm_wday = bcd2bin(rtc_tm->tm_wday);
|
|
|
|
rtc_tm->tm_mon = bcd2bin(rtc_tm->tm_mon);
|
|
|
|
rtc_tm->tm_year = bcd2bin(rtc_tm->tm_year);
|
|
|
|
century = bcd2bin(century) * 100;
|
2008-02-06 09:38:46 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Account for differences between how the RTC uses the values
|
|
|
|
* and how they are defined in a struct rtc_time;
|
|
|
|
*/
|
|
|
|
century += rtc_tm->tm_year;
|
|
|
|
rtc_tm->tm_year = century - 1900;
|
|
|
|
|
|
|
|
rtc_tm->tm_mon--;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-02-27 23:04:22 +00:00
|
|
|
static void ds1511_rtc_alarm_enable(unsigned int enabled)
|
2008-02-06 09:38:46 +00:00
|
|
|
{
|
2024-02-27 23:04:22 +00:00
|
|
|
rtc_write(rtc_read(DS1511_CONTROL_B) | (enabled ? DS1511_TIE : 0), DS1511_CONTROL_B);
|
2008-02-06 09:38:46 +00:00
|
|
|
}
|
|
|
|
|
2024-02-27 23:04:20 +00:00
|
|
|
static int ds1511_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
|
2008-02-06 09:38:46 +00:00
|
|
|
{
|
2024-02-27 23:04:26 +00:00
|
|
|
struct ds1511_data *ds1511 = dev_get_drvdata(dev);
|
2024-02-27 23:04:22 +00:00
|
|
|
unsigned long flags;
|
2008-02-06 09:38:46 +00:00
|
|
|
|
2024-02-27 23:04:26 +00:00
|
|
|
spin_lock_irqsave(&ds1511->lock, flags);
|
2024-02-27 23:04:25 +00:00
|
|
|
rtc_write(bin2bcd(alrm->time.tm_mday) & 0x3f, DS1511_AM4_DATE);
|
|
|
|
rtc_write(bin2bcd(alrm->time.tm_hour) & 0x3f, DS1511_AM3_HOUR);
|
|
|
|
rtc_write(bin2bcd(alrm->time.tm_min) & 0x7f, DS1511_AM2_MIN);
|
|
|
|
rtc_write(bin2bcd(alrm->time.tm_sec) & 0x7f, DS1511_AM1_SEC);
|
2024-02-27 23:04:22 +00:00
|
|
|
ds1511_rtc_alarm_enable(alrm->enabled);
|
|
|
|
|
|
|
|
rtc_read(DS1511_CONTROL_A); /* clear interrupts */
|
2024-02-27 23:04:26 +00:00
|
|
|
spin_unlock_irqrestore(&ds1511->lock, flags);
|
2024-02-27 23:04:22 +00:00
|
|
|
|
2008-02-06 09:38:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-02-27 23:04:20 +00:00
|
|
|
static int ds1511_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
|
2008-02-06 09:38:46 +00:00
|
|
|
{
|
2024-02-27 23:04:25 +00:00
|
|
|
alrm->time.tm_mday = bcd2bin(rtc_read(DS1511_AM4_DATE) & 0x3f);
|
|
|
|
alrm->time.tm_hour = bcd2bin(rtc_read(DS1511_AM3_HOUR) & 0x3f);
|
|
|
|
alrm->time.tm_min = bcd2bin(rtc_read(DS1511_AM2_MIN) & 0x7f);
|
|
|
|
alrm->time.tm_sec = bcd2bin(rtc_read(DS1511_AM1_SEC) & 0x7f);
|
|
|
|
alrm->enabled = !!(rtc_read(DS1511_CONTROL_B) & DS1511_TIE);
|
2008-02-06 09:38:46 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2024-02-27 23:04:20 +00:00
|
|
|
static irqreturn_t ds1511_interrupt(int irq, void *dev_id)
|
2008-02-06 09:38:46 +00:00
|
|
|
{
|
|
|
|
struct platform_device *pdev = dev_id;
|
2024-02-27 23:04:26 +00:00
|
|
|
struct ds1511_data *ds1511 = platform_get_drvdata(pdev);
|
2009-12-16 00:45:58 +00:00
|
|
|
unsigned long events = 0;
|
2008-02-06 09:38:46 +00:00
|
|
|
|
2024-02-27 23:04:26 +00:00
|
|
|
spin_lock(&ds1511->lock);
|
2008-02-06 09:38:46 +00:00
|
|
|
/*
|
|
|
|
* read and clear interrupt
|
|
|
|
*/
|
2024-02-27 23:04:19 +00:00
|
|
|
if (rtc_read(DS1511_CONTROL_A) & DS1511_IRQF) {
|
2024-02-27 23:04:21 +00:00
|
|
|
events = RTC_IRQF | RTC_AF;
|
2024-02-27 23:04:26 +00:00
|
|
|
rtc_update_irq(ds1511->rtc, 1, events);
|
2009-12-16 00:45:58 +00:00
|
|
|
}
|
2024-02-27 23:04:26 +00:00
|
|
|
spin_unlock(&ds1511->lock);
|
2009-12-16 00:45:58 +00:00
|
|
|
return events ? IRQ_HANDLED : IRQ_NONE;
|
2008-02-06 09:38:46 +00:00
|
|
|
}
|
|
|
|
|
2009-12-16 00:45:58 +00:00
|
|
|
static int ds1511_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)
|
2008-02-06 09:38:46 +00:00
|
|
|
{
|
2024-02-27 23:04:26 +00:00
|
|
|
struct ds1511_data *ds1511 = dev_get_drvdata(dev);
|
2024-02-27 23:04:22 +00:00
|
|
|
unsigned long flags;
|
2008-02-06 09:38:46 +00:00
|
|
|
|
2024-02-27 23:04:26 +00:00
|
|
|
spin_lock_irqsave(&ds1511->lock, flags);
|
2024-02-27 23:04:22 +00:00
|
|
|
ds1511_rtc_alarm_enable(enabled);
|
2024-02-27 23:04:26 +00:00
|
|
|
spin_unlock_irqrestore(&ds1511->lock, flags);
|
2024-02-27 23:04:22 +00:00
|
|
|
|
2009-12-16 00:45:58 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-02-06 09:38:46 +00:00
|
|
|
static const struct rtc_class_ops ds1511_rtc_ops = {
|
2009-12-16 00:45:58 +00:00
|
|
|
.read_time = ds1511_rtc_read_time,
|
|
|
|
.set_time = ds1511_rtc_set_time,
|
|
|
|
.read_alarm = ds1511_rtc_read_alarm,
|
|
|
|
.set_alarm = ds1511_rtc_set_alarm,
|
|
|
|
.alarm_irq_enable = ds1511_rtc_alarm_irq_enable,
|
2008-02-06 09:38:46 +00:00
|
|
|
};
|
|
|
|
|
2017-10-12 22:05:29 +00:00
|
|
|
static int ds1511_nvram_read(void *priv, unsigned int pos, void *buf,
|
|
|
|
size_t size)
|
2008-02-06 09:38:46 +00:00
|
|
|
{
|
2017-10-12 22:05:29 +00:00
|
|
|
int i;
|
2008-02-06 09:38:46 +00:00
|
|
|
|
|
|
|
rtc_write(pos, DS1511_RAMADDR_LSB);
|
2017-10-12 22:05:29 +00:00
|
|
|
for (i = 0; i < size; i++)
|
|
|
|
*(char *)buf++ = rtc_read(DS1511_RAMDATA);
|
2013-07-03 22:05:49 +00:00
|
|
|
|
2017-10-12 22:05:29 +00:00
|
|
|
return 0;
|
2008-02-06 09:38:46 +00:00
|
|
|
}
|
|
|
|
|
2017-10-12 22:05:29 +00:00
|
|
|
static int ds1511_nvram_write(void *priv, unsigned int pos, void *buf,
|
|
|
|
size_t size)
|
2008-02-06 09:38:46 +00:00
|
|
|
{
|
2017-10-12 22:05:29 +00:00
|
|
|
int i;
|
2008-02-06 09:38:46 +00:00
|
|
|
|
|
|
|
rtc_write(pos, DS1511_RAMADDR_LSB);
|
2017-10-12 22:05:29 +00:00
|
|
|
for (i = 0; i < size; i++)
|
|
|
|
rtc_write(*(char *)buf++, DS1511_RAMDATA);
|
2013-07-03 22:05:49 +00:00
|
|
|
|
2017-10-12 22:05:29 +00:00
|
|
|
return 0;
|
2008-02-06 09:38:46 +00:00
|
|
|
}
|
|
|
|
|
2012-12-21 21:09:38 +00:00
|
|
|
static int ds1511_rtc_probe(struct platform_device *pdev)
|
2008-02-06 09:38:46 +00:00
|
|
|
{
|
2024-02-27 23:04:26 +00:00
|
|
|
struct ds1511_data *ds1511;
|
2008-02-06 09:38:46 +00:00
|
|
|
int ret = 0;
|
2018-02-12 22:47:25 +00:00
|
|
|
struct nvmem_config ds1511_nvmem_cfg = {
|
|
|
|
.name = "ds1511_nvram",
|
|
|
|
.word_size = 1,
|
|
|
|
.stride = 1,
|
|
|
|
.size = DS1511_RAM_MAX,
|
|
|
|
.reg_read = ds1511_nvram_read,
|
|
|
|
.reg_write = ds1511_nvram_write,
|
|
|
|
.priv = &pdev->dev,
|
|
|
|
};
|
2008-02-06 09:38:46 +00:00
|
|
|
|
2024-02-27 23:04:26 +00:00
|
|
|
ds1511 = devm_kzalloc(&pdev->dev, sizeof(*ds1511), GFP_KERNEL);
|
|
|
|
if (!ds1511)
|
2008-02-06 09:38:46 +00:00
|
|
|
return -ENOMEM;
|
2013-09-11 21:24:27 +00:00
|
|
|
|
2019-10-06 10:29:20 +00:00
|
|
|
ds1511_base = devm_platform_ioremap_resource(pdev, 0);
|
2013-09-11 21:24:27 +00:00
|
|
|
if (IS_ERR(ds1511_base))
|
|
|
|
return PTR_ERR(ds1511_base);
|
2024-02-27 23:04:26 +00:00
|
|
|
ds1511->ioaddr = ds1511_base;
|
|
|
|
ds1511->irq = platform_get_irq(pdev, 0);
|
2008-02-06 09:38:46 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* turn on the clock and the crystal, etc.
|
|
|
|
*/
|
2024-02-27 23:04:19 +00:00
|
|
|
rtc_write(DS1511_BME, DS1511_CONTROL_B);
|
|
|
|
rtc_write(0, DS1511_CONTROL_A);
|
2008-02-06 09:38:46 +00:00
|
|
|
/*
|
|
|
|
* clear the wdog counter
|
|
|
|
*/
|
|
|
|
rtc_write(0, DS1511_WD_MSEC);
|
|
|
|
rtc_write(0, DS1511_WD_SEC);
|
|
|
|
/*
|
|
|
|
* start the clock
|
|
|
|
*/
|
|
|
|
rtc_enable_update();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* check for a dying bat-tree
|
|
|
|
*/
|
2024-02-27 23:04:19 +00:00
|
|
|
if (rtc_read(DS1511_CONTROL_A) & DS1511_BLF1)
|
2008-02-06 09:38:46 +00:00
|
|
|
dev_warn(&pdev->dev, "voltage-low detected.\n");
|
|
|
|
|
2024-02-27 23:04:26 +00:00
|
|
|
spin_lock_init(&ds1511->lock);
|
|
|
|
platform_set_drvdata(pdev, ds1511);
|
2014-04-03 21:49:36 +00:00
|
|
|
|
2024-02-27 23:04:26 +00:00
|
|
|
ds1511->rtc = devm_rtc_allocate_device(&pdev->dev);
|
|
|
|
if (IS_ERR(ds1511->rtc))
|
|
|
|
return PTR_ERR(ds1511->rtc);
|
2014-04-03 21:49:36 +00:00
|
|
|
|
2024-02-27 23:04:26 +00:00
|
|
|
ds1511->rtc->ops = &ds1511_rtc_ops;
|
2024-02-27 23:13:54 +00:00
|
|
|
ds1511->rtc->range_max = RTC_TIMESTAMP_END_2099;
|
2024-02-27 23:13:55 +00:00
|
|
|
ds1511->rtc->alarm_offset_max = 28 * 24 * 60 * 60 - 1;
|
2017-10-12 22:05:27 +00:00
|
|
|
|
2008-02-06 09:38:46 +00:00
|
|
|
/*
|
|
|
|
* if the platform has an interrupt in mind for this device,
|
|
|
|
* then by all means, set it
|
|
|
|
*/
|
2024-02-27 23:04:26 +00:00
|
|
|
if (ds1511->irq > 0) {
|
2024-02-27 23:04:19 +00:00
|
|
|
rtc_read(DS1511_CONTROL_A);
|
2024-02-27 23:04:26 +00:00
|
|
|
if (devm_request_irq(&pdev->dev, ds1511->irq, ds1511_interrupt,
|
2012-03-23 22:02:34 +00:00
|
|
|
IRQF_SHARED, pdev->name, pdev) < 0) {
|
2008-02-06 09:38:46 +00:00
|
|
|
|
|
|
|
dev_warn(&pdev->dev, "interrupt not available.\n");
|
2024-02-27 23:04:26 +00:00
|
|
|
ds1511->irq = 0;
|
2008-02-06 09:38:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-27 23:04:26 +00:00
|
|
|
if (ds1511->irq == 0)
|
|
|
|
clear_bit(RTC_FEATURE_ALARM, ds1511->rtc->features);
|
2024-02-27 23:04:23 +00:00
|
|
|
|
2024-02-27 23:04:26 +00:00
|
|
|
ret = devm_rtc_register_device(ds1511->rtc);
|
2024-02-27 23:04:23 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2024-02-27 23:04:26 +00:00
|
|
|
devm_rtc_nvmem_register(ds1511->rtc, &ds1511_nvmem_cfg);
|
2024-02-27 23:04:23 +00:00
|
|
|
|
2008-02-06 09:38:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-11 04:29:25 +00:00
|
|
|
/* work with hotplug and coldplug */
|
|
|
|
MODULE_ALIAS("platform:ds1511");
|
|
|
|
|
2008-02-06 09:38:46 +00:00
|
|
|
static struct platform_driver ds1511_rtc_driver = {
|
|
|
|
.probe = ds1511_rtc_probe,
|
|
|
|
.driver = {
|
|
|
|
.name = "ds1511",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2012-01-10 23:10:48 +00:00
|
|
|
module_platform_driver(ds1511_rtc_driver);
|
2008-02-06 09:38:46 +00:00
|
|
|
|
2009-09-23 23:03:20 +00:00
|
|
|
MODULE_AUTHOR("Andrew Sharp <andy.sharp@lsi.com>");
|
2008-02-06 09:38:46 +00:00
|
|
|
MODULE_DESCRIPTION("Dallas DS1511 RTC driver");
|
|
|
|
MODULE_LICENSE("GPL");
|