mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
6d7ed21d17
* 'defcfg' of master.kernel.org:/home/rmk/linux-2.6-arm: ARM: 6647/1: add Versatile Express defconfig ARM: 6644/1: mach-ux500: update the U8500 defconfig * 'drivers' of master.kernel.org:/home/rmk/linux-2.6-arm: ARM: 6764/1: pl011: factor out FIFO to TTY code ARM: 6763/1: pl011: add optional RX DMA to PL011 v2 ARM: 6758/1: amba: support pm ops ARM: amba: make amba_driver id_table const ARM: amba: make internal ID table handling const ARM: amba: make probe() functions take const id tables ARM: 6662/1: amba: make amba_bustype non-static ARM: mmci: add dmaengine-based DMA support ARM: mmci: no need for separate host->data_xfered ARM: mmci: avoid unnecessary switch to data available PIO interrupts ARM: mmci: no need to call flush_dcache_page() with sg_miter API ARM: mmci: avoid reporting too many completed bytes on fifo overrun ALSA: AACI: make fifo variables more explanitory ALSA: AACI: no need to call snd_pcm_period_elapsed() for each period ALSA: AACI: use snd_pcm_lib_period_bytes() ALSA: AACI: clean up AACI announcement printk ALSA: AACI: fix channel mask selection ALSA: AACI: fix number of channels for record ALSA: AACI: fix multiple IRQ claiming * 'cyberpro-next' of master.kernel.org:/home/rmk/linux-2.6-arm: VIDEO: cyberpro: remove unused cyber2000fb_get_fb_var() VIDEO: cyberpro: remove useless function extreg pointers VIDEO: cyberpro: update handling of device structures VIDEO: cyberpro: add support for video capture I2C VIDEO: cyberpro: make 'reg_b0_lock' always present VIDEO: cyberpro: add I2C support VIDEO: cyberpro: select lowest multipler/divisor for PLL
201 lines
4 KiB
C
201 lines
4 KiB
C
/*
|
|
* linux/drivers/rtc/rtc-pl030.c
|
|
*
|
|
* Copyright (C) 2000-2001 Deep Blue Solutions Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
#include <linux/module.h>
|
|
#include <linux/rtc.h>
|
|
#include <linux/init.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/amba/bus.h>
|
|
#include <linux/io.h>
|
|
#include <linux/slab.h>
|
|
|
|
#define RTC_DR (0)
|
|
#define RTC_MR (4)
|
|
#define RTC_STAT (8)
|
|
#define RTC_EOI (8)
|
|
#define RTC_LR (12)
|
|
#define RTC_CR (16)
|
|
#define RTC_CR_MIE (1 << 0)
|
|
|
|
struct pl030_rtc {
|
|
struct rtc_device *rtc;
|
|
void __iomem *base;
|
|
};
|
|
|
|
static irqreturn_t pl030_interrupt(int irq, void *dev_id)
|
|
{
|
|
struct pl030_rtc *rtc = dev_id;
|
|
writel(0, rtc->base + RTC_EOI);
|
|
return IRQ_HANDLED;
|
|
}
|
|
|
|
static int pl030_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
|
|
{
|
|
struct pl030_rtc *rtc = dev_get_drvdata(dev);
|
|
|
|
rtc_time_to_tm(readl(rtc->base + RTC_MR), &alrm->time);
|
|
return 0;
|
|
}
|
|
|
|
static int pl030_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
|
|
{
|
|
struct pl030_rtc *rtc = dev_get_drvdata(dev);
|
|
unsigned long time;
|
|
int ret;
|
|
|
|
/*
|
|
* At the moment, we can only deal with non-wildcarded alarm times.
|
|
*/
|
|
ret = rtc_valid_tm(&alrm->time);
|
|
if (ret == 0)
|
|
ret = rtc_tm_to_time(&alrm->time, &time);
|
|
if (ret == 0)
|
|
writel(time, rtc->base + RTC_MR);
|
|
return ret;
|
|
}
|
|
|
|
static int pl030_read_time(struct device *dev, struct rtc_time *tm)
|
|
{
|
|
struct pl030_rtc *rtc = dev_get_drvdata(dev);
|
|
|
|
rtc_time_to_tm(readl(rtc->base + RTC_DR), tm);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Set the RTC time. Unfortunately, we can't accurately set
|
|
* the point at which the counter updates.
|
|
*
|
|
* Also, since RTC_LR is transferred to RTC_CR on next rising
|
|
* edge of the 1Hz clock, we must write the time one second
|
|
* in advance.
|
|
*/
|
|
static int pl030_set_time(struct device *dev, struct rtc_time *tm)
|
|
{
|
|
struct pl030_rtc *rtc = dev_get_drvdata(dev);
|
|
unsigned long time;
|
|
int ret;
|
|
|
|
ret = rtc_tm_to_time(tm, &time);
|
|
if (ret == 0)
|
|
writel(time + 1, rtc->base + RTC_LR);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static const struct rtc_class_ops pl030_ops = {
|
|
.read_time = pl030_read_time,
|
|
.set_time = pl030_set_time,
|
|
.read_alarm = pl030_read_alarm,
|
|
.set_alarm = pl030_set_alarm,
|
|
};
|
|
|
|
static int pl030_probe(struct amba_device *dev, const struct amba_id *id)
|
|
{
|
|
struct pl030_rtc *rtc;
|
|
int ret;
|
|
|
|
ret = amba_request_regions(dev, NULL);
|
|
if (ret)
|
|
goto err_req;
|
|
|
|
rtc = kmalloc(sizeof(*rtc), GFP_KERNEL);
|
|
if (!rtc) {
|
|
ret = -ENOMEM;
|
|
goto err_rtc;
|
|
}
|
|
|
|
rtc->base = ioremap(dev->res.start, resource_size(&dev->res));
|
|
if (!rtc->base) {
|
|
ret = -ENOMEM;
|
|
goto err_map;
|
|
}
|
|
|
|
__raw_writel(0, rtc->base + RTC_CR);
|
|
__raw_writel(0, rtc->base + RTC_EOI);
|
|
|
|
amba_set_drvdata(dev, rtc);
|
|
|
|
ret = request_irq(dev->irq[0], pl030_interrupt, IRQF_DISABLED,
|
|
"rtc-pl030", rtc);
|
|
if (ret)
|
|
goto err_irq;
|
|
|
|
rtc->rtc = rtc_device_register("pl030", &dev->dev, &pl030_ops,
|
|
THIS_MODULE);
|
|
if (IS_ERR(rtc->rtc)) {
|
|
ret = PTR_ERR(rtc->rtc);
|
|
goto err_reg;
|
|
}
|
|
|
|
return 0;
|
|
|
|
err_reg:
|
|
free_irq(dev->irq[0], rtc);
|
|
err_irq:
|
|
iounmap(rtc->base);
|
|
err_map:
|
|
kfree(rtc);
|
|
err_rtc:
|
|
amba_release_regions(dev);
|
|
err_req:
|
|
return ret;
|
|
}
|
|
|
|
static int pl030_remove(struct amba_device *dev)
|
|
{
|
|
struct pl030_rtc *rtc = amba_get_drvdata(dev);
|
|
|
|
amba_set_drvdata(dev, NULL);
|
|
|
|
writel(0, rtc->base + RTC_CR);
|
|
|
|
free_irq(dev->irq[0], rtc);
|
|
rtc_device_unregister(rtc->rtc);
|
|
iounmap(rtc->base);
|
|
kfree(rtc);
|
|
amba_release_regions(dev);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct amba_id pl030_ids[] = {
|
|
{
|
|
.id = 0x00041030,
|
|
.mask = 0x000fffff,
|
|
},
|
|
{ 0, 0 },
|
|
};
|
|
|
|
static struct amba_driver pl030_driver = {
|
|
.drv = {
|
|
.name = "rtc-pl030",
|
|
},
|
|
.probe = pl030_probe,
|
|
.remove = pl030_remove,
|
|
.id_table = pl030_ids,
|
|
};
|
|
|
|
static int __init pl030_init(void)
|
|
{
|
|
return amba_driver_register(&pl030_driver);
|
|
}
|
|
|
|
static void __exit pl030_exit(void)
|
|
{
|
|
amba_driver_unregister(&pl030_driver);
|
|
}
|
|
|
|
module_init(pl030_init);
|
|
module_exit(pl030_exit);
|
|
|
|
MODULE_AUTHOR("Russell King <rmk@arm.linux.org.uk>");
|
|
MODULE_DESCRIPTION("ARM AMBA PL030 RTC Driver");
|
|
MODULE_LICENSE("GPL");
|