Re: [rtc-linux] [PATCH] rtc: rtc-lpc32xx: Introduce RTC driver for the LPC32XX SoC (v2)

From: Wan ZongShun
Date: Wed Aug 11 2010 - 21:31:22 EST


2010/8/12 <wellsk40@xxxxxxxxx>:
> From: Kevin Wells <wellsk40@xxxxxxxxx>
>
> This patch contains the RTC driver for the built-in RTC in
> the LPC32XX SoC. This patch includes updates from the initial
> review comments.
>
> Changes since v1:
> Â Â Â ÂFixed spaces/tabbing in lpc32xx entry in Kconfig/Makefile
> Â Â Â ÂRemove improper enable for rtc->alarm_enabled
> Â Â Â ÂRemoved typecast on rtc structure in irq handler
> Â Â Â ÂSwitch to resource managed (devm_) variants of kzalloc
> Â Â Â Â Â Â Â Âand other functions in probe. Updated remove
> Â Â Â Â Â Â Â Âbased on these changes.
> Â Â Â ÂDisabled alarm on probe instead of keeping current register
> Â Â Â Â Â Â Â Âsettings. No changes for suspend.
> Â Â Â ÂAllowed driver to continue operation without wakeup or
> Â Â Â Â Â Â Â Âalarm irq if the rtc irq request failed.
> Â Â Â ÂRelocated module_init and _exit macros to just after it's
> Â Â Â Â Â Â Â Âassociated function
> Â Â Â ÂPassed a NULL pointer to .driver.pm in platform driver
> Â Â Â Â Â Â Â Âstructure instead of a list of NULL functions.
> Â Â Â ÂAdded MODULE_ALIAS
>
> Signed-off-by: Kevin Wells <wellsk40@xxxxxxxxx>
> Signed-off-by: Durgesh Pattamatta <durgesh.pattamatta@xxxxxxx>

Now, it looks good to me.

Acked-by: Wan ZongShun <mcuos.com@xxxxxxxxx>

> ---
> Âdrivers/rtc/Kconfig    |  Â9 +
> Âdrivers/rtc/Makefile   Â|  Â1 +
> Âdrivers/rtc/rtc-lpc32xx.c | Â392 +++++++++++++++++++++++++++++++++++++++++++++
> Â3 files changed, 402 insertions(+), 0 deletions(-)
> Âcreate mode 100644 drivers/rtc/rtc-lpc32xx.c
>
> diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig
> index 4301a6c..5bfb91e 100644
> --- a/drivers/rtc/Kconfig
> +++ b/drivers/rtc/Kconfig
> @@ -916,4 +916,13 @@ config RTC_DRV_JZ4740
> Â Â Â Â ÂThis driver can also be buillt as a module. If so, the module
> Â Â Â Â Âwill be called rtc-jz4740.
>
> +config RTC_DRV_LPC32XX
> + Â Â Â depends on ARCH_LPC32XX
> + Â Â Â tristate "NXP LPC32XX RTC"
> + Â Â Â help
> + Â Â Â Â This enables support for the NXP RTC in the LPC32XX
> +
> + Â Â Â Â This driver can also be buillt as a module. If so, the module
> + Â Â Â Â will be called rtc-lpc32xx.
> +
> Âendif # RTC_CLASS
> diff --git a/drivers/rtc/Makefile b/drivers/rtc/Makefile
> index fedf9bb..f90c5ad 100644
> --- a/drivers/rtc/Makefile
> +++ b/drivers/rtc/Makefile
> @@ -48,6 +48,7 @@ obj-$(CONFIG_RTC_DRV_FM3130) Â+= rtc-fm3130.o
> Âobj-$(CONFIG_RTC_DRV_GENERIC) Â+= rtc-generic.o
> Âobj-$(CONFIG_RTC_DRV_ISL1208) Â+= rtc-isl1208.o
> Âobj-$(CONFIG_RTC_DRV_JZ4740) Â += rtc-jz4740.o
> +obj-$(CONFIG_RTC_DRV_LPC32XX) Â+= rtc-lpc32xx.o
> Âobj-$(CONFIG_RTC_DRV_M41T80) Â += rtc-m41t80.o
> Âobj-$(CONFIG_RTC_DRV_M41T94) Â += rtc-m41t94.o
> Âobj-$(CONFIG_RTC_DRV_M48T35) Â += rtc-m48t35.o
> diff --git a/drivers/rtc/rtc-lpc32xx.c b/drivers/rtc/rtc-lpc32xx.c
> new file mode 100644
> index 0000000..b331742
> --- /dev/null
> +++ b/drivers/rtc/rtc-lpc32xx.c
> @@ -0,0 +1,392 @@
> +/*
> + * Copyright (C) 2010 NXP Semiconductors
> + *
> + * 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.
> + *
> + * ÂYou should have received a copy of the GNU General Public License along
> + * Âwith this program; if not, write to the Free Software Foundation, Inc.,
> + * Â675 Mass Ave, Cambridge, MA 02139, USA.
> + */
> +
> +#include <linux/kernel.h>
> +#include <linux/module.h>
> +#include <linux/init.h>
> +#include <linux/platform_device.h>
> +#include <linux/spinlock.h>
> +#include <linux/rtc.h>
> +#include <linux/slab.h>
> +#include <linux/io.h>
> +
> +/*
> + * Clock and Power control register offsets
> + */
> +#define RTC_UCOUNT Â Â Â Â Â Â 0x00
> +#define RTC_DCOUNT Â Â Â Â Â Â 0x04
> +#define RTC_MATCH0 Â Â Â Â Â Â 0x08
> +#define RTC_MATCH1 Â Â Â Â Â Â 0x0C
> +#define RTC_CTRL Â Â Â Â Â Â Â 0x10
> +#define RTC_INTSTAT Â Â Â Â Â Â0x14
> +#define RTC_KEY Â Â Â Â Â Â Â Â Â Â Â Â0x18
> +#define RTC_SRAM Â Â Â Â Â Â Â 0x80
> +
> +#define RTC_MATCH0_EN Â Â Â Â Â(1 << 0)
> +#define RTC_MATCH1_EN Â Â Â Â Â(1 << 1)
> +#define RTC_ONSW_MATCH0_EN Â Â (1 << 2)
> +#define RTC_ONSW_MATCH1_EN Â Â (1 << 3)
> +#define RTC_SW_RESET Â Â Â Â Â (1 << 4)
> +#define RTC_CNTR_DIS Â Â Â Â Â (1 << 6)
> +#define RTC_ONSW_FORCE_HIGH Â Â(1 << 7)
> +
> +#define RTC_MATCH0_INT_STS Â Â (1 << 0)
> +#define RTC_MATCH1_INT_STS Â Â (1 << 1)
> +#define RTC_ONSW_INT_STS Â Â Â (1 << 2)
> +
> +#define RTC_KEY_ONSW_LOADVAL Â 0xB5C13F27
> +
> +#define RTC_NAME "rtc-lpc32xx"
> +
> +#define rtc_readl(dev, reg) \
> + Â Â Â __raw_readl((dev)->rtc_base + (reg))
> +#define rtc_writel(dev, reg, val) \
> + Â Â Â __raw_writel((val), (dev)->rtc_base + (reg))
> +
> +struct lpc32xx_rtc {
> + Â Â Â void __iomem *rtc_base;
> + Â Â Â int irq;
> + Â Â Â int alarm_enabled;
> + Â Â Â struct rtc_device *rtc;
> + Â Â Â spinlock_t lock;
> +};
> +
> +static int lpc32xx_rtc_read_time(struct device *dev, struct rtc_time *time)
> +{
> + Â Â Â unsigned long elapsed_sec;
> + Â Â Â struct lpc32xx_rtc *rtc = dev_get_drvdata(dev);
> +
> + Â Â Â elapsed_sec = rtc_readl(rtc, RTC_UCOUNT);
> + Â Â Â rtc_time_to_tm(elapsed_sec, time);
> +
> + Â Â Â return rtc_valid_tm(time);
> +}
> +
> +static int lpc32xx_rtc_set_mmss(struct device *dev, unsigned long secs)
> +{
> + Â Â Â struct lpc32xx_rtc *rtc = dev_get_drvdata(dev);
> + Â Â Â u32 tmp;
> +
> + Â Â Â spin_lock_irq(&rtc->lock);
> +
> + Â Â Â /* RTC must be disabled during count update */
> + Â Â Â tmp = rtc_readl(rtc, RTC_CTRL);
> + Â Â Â rtc_writel(rtc, RTC_CTRL, tmp | RTC_CNTR_DIS);
> + Â Â Â rtc_writel(rtc, RTC_UCOUNT, secs);
> + Â Â Â rtc_writel(rtc, RTC_DCOUNT, 0xFFFFFFFF - secs);
> + Â Â Â rtc_writel(rtc, RTC_CTRL, tmp &= ~RTC_CNTR_DIS);
> +
> + Â Â Â spin_unlock_irq(&rtc->lock);
> +
> + Â Â Â return 0;
> +}
> +
> +static int lpc32xx_rtc_read_alarm(struct device *dev,
> + Â Â Â struct rtc_wkalrm *wkalrm)
> +{
> + Â Â Â struct lpc32xx_rtc *rtc = dev_get_drvdata(dev);
> +
> + Â Â Â rtc_time_to_tm(rtc_readl(rtc, RTC_MATCH0), &wkalrm->time);
> + Â Â Â wkalrm->enabled = rtc->alarm_enabled;
> +
> + Â Â Â return rtc_valid_tm(&wkalrm->time);
> +}
> +
> +static int lpc32xx_rtc_set_alarm(struct device *dev,
> + Â Â Â struct rtc_wkalrm *wkalrm)
> +{
> + Â Â Â struct lpc32xx_rtc *rtc = dev_get_drvdata(dev);
> + Â Â Â unsigned long alarmsecs;
> + Â Â Â u32 tmp;
> + Â Â Â int ret;
> +
> + Â Â Â ret = rtc_tm_to_time(&wkalrm->time, &alarmsecs);
> + Â Â Â if (ret < 0) {
> + Â Â Â Â Â Â Â dev_err(dev, "Failed to convert time: %d\n", ret);
> + Â Â Â Â Â Â Â return ret;
> + Â Â Â }
> +
> + Â Â Â spin_lock_irq(&rtc->lock);
> +
> + Â Â Â /* Disable alarm during update */
> + Â Â Â tmp = rtc_readl(rtc, RTC_CTRL);
> + Â Â Â rtc_writel(rtc, RTC_CTRL, tmp & ~RTC_MATCH0_EN);
> +
> + Â Â Â rtc->alarm_enabled = wkalrm->enabled;
> + Â Â Â if (wkalrm->enabled) {
> + Â Â Â Â Â Â Â rtc_writel(rtc, RTC_MATCH0, alarmsecs);
> + Â Â Â Â Â Â Â rtc_writel(rtc, RTC_INTSTAT, RTC_MATCH0_INT_STS);
> + Â Â Â Â Â Â Â rtc_writel(rtc, RTC_CTRL, tmp | RTC_MATCH0_EN);
> + Â Â Â }
> +
> + Â Â Â spin_unlock_irq(&rtc->lock);
> +
> + Â Â Â return 0;
> +}
> +
> +static int lpc32xx_rtc_alarm_irq_enable(struct device *dev,
> + Â Â Â unsigned int enabled)
> +{
> + Â Â Â struct lpc32xx_rtc *rtc = dev_get_drvdata(dev);
> + Â Â Â u32 tmp;
> +
> + Â Â Â spin_lock_irq(&rtc->lock);
> + Â Â Â rtc->alarm_enabled = (int) enabled;
> + Â Â Â tmp = rtc_readl(rtc, RTC_CTRL);
> +
> + Â Â Â if (enabled)
> + Â Â Â Â Â Â Â tmp |= RTC_MATCH0_EN;
> + Â Â Â else
> + Â Â Â Â Â Â Â tmp &= ~RTC_MATCH0_EN;
> +
> + Â Â Â rtc_writel(rtc, RTC_CTRL, tmp);
> + Â Â Â spin_unlock_irq(&rtc->lock);
> +
> + Â Â Â return 0;
> +}
> +
> +static irqreturn_t lpc32xx_rtc_alarm_interrupt(int irq, void *dev)
> +{
> + Â Â Â struct lpc32xx_rtc *rtc = dev;
> +
> + Â Â Â spin_lock(&rtc->lock);
> +
> + Â Â Â /* Disable alarm interrupt */
> + Â Â Â rtc_writel(rtc, RTC_CTRL,
> + Â Â Â Â Â Â Â rtc_readl(rtc, RTC_CTRL) & ~RTC_MATCH0_EN);
> + Â Â Â rtc->alarm_enabled = 0;
> +
> + Â Â Â /*
> + Â Â Â Â* Write a large value to the match value so the RTC won't
> + Â Â Â Â* keep firing the match status
> + Â Â Â Â*/
> + Â Â Â rtc_writel(rtc, RTC_MATCH0, 0xFFFFFFFF);
> + Â Â Â rtc_writel(rtc, RTC_INTSTAT, RTC_MATCH0_INT_STS);
> +
> + Â Â Â spin_unlock(&rtc->lock);
> +
> + Â Â Â rtc_update_irq(rtc->rtc, 1, RTC_IRQF | RTC_AF);
> +
> + Â Â Â return IRQ_HANDLED;
> +}
> +
> +static const struct rtc_class_ops lpc32xx_rtc_ops = {
> +    .read_time       Â= lpc32xx_rtc_read_time,
> +    .set_mmss        = lpc32xx_rtc_set_mmss,
> +    .read_alarm       = lpc32xx_rtc_read_alarm,
> +    .set_alarm       Â= lpc32xx_rtc_set_alarm,
> +    .alarm_irq_enable    = lpc32xx_rtc_alarm_irq_enable,
> +};
> +
> +static int __devinit lpc32xx_rtc_probe(struct platform_device *pdev)
> +{
> + Â Â Â struct resource *res;
> + Â Â Â struct lpc32xx_rtc *rtc;
> + Â Â Â resource_size_t size;
> + Â Â Â int rtcirq;
> + Â Â Â u32 tmp;
> +
> + Â Â Â res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> + Â Â Â if (!res) {
> + Â Â Â Â Â Â Â dev_err(&pdev->dev, "Can't get memory resource\n");
> + Â Â Â Â Â Â Â return -ENOENT;
> + Â Â Â }
> +
> + Â Â Â rtcirq = platform_get_irq(pdev, 0);
> + Â Â Â if (rtcirq < 0 || rtcirq >= NR_IRQS) {
> + Â Â Â Â Â Â Â dev_warn(&pdev->dev, "Can't get interrupt resource\n");
> + Â Â Â Â Â Â Â rtcirq = -1;
> + Â Â Â }
> +
> + Â Â Â rtc = devm_kzalloc(&pdev->dev, sizeof(*rtc), GFP_KERNEL);
> + Â Â Â if (unlikely(!rtc)) {
> + Â Â Â Â Â Â Â dev_err(&pdev->dev, "Can't allocate memory\n");
> + Â Â Â Â Â Â Â return -ENOMEM;
> + Â Â Â }
> + Â Â Â rtc->irq = rtcirq;
> +
> + Â Â Â size = resource_size(res);
> +
> + Â Â Â if (!devm_request_mem_region(&pdev->dev, res->start, size,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Âpdev->name)) {
> + Â Â Â Â Â Â Â dev_err(&pdev->dev, "RTC registers are not free\n");
> + Â Â Â Â Â Â Â return -EBUSY;
> + Â Â Â }
> +
> + Â Â Â rtc->rtc_base = devm_ioremap(&pdev->dev, res->start, size);
> + Â Â Â if (!rtc->rtc_base) {
> + Â Â Â Â Â Â Â dev_err(&pdev->dev, "Can't map memory\n");
> + Â Â Â Â Â Â Â return -ENOMEM;
> + Â Â Â }
> +
> + Â Â Â spin_lock_init(&rtc->lock);
> +
> + Â Â Â /*
> + Â Â Â Â* The RTC is on a seperate power domain and can keep it's state
> + Â Â Â Â* across a chip power cycle. If the RTC has never been previously
> + Â Â Â Â* setup, then set it up now for the first time.
> + Â Â Â Â*/
> + Â Â Â tmp = rtc_readl(rtc, RTC_CTRL);
> + Â Â Â if (rtc_readl(rtc, RTC_KEY) == RTC_KEY_ONSW_LOADVAL) {
> + Â Â Â Â Â Â Â tmp &= ~(RTC_SW_RESET | RTC_CNTR_DIS | RTC_MATCH0_EN |
> + Â Â Â Â Â Â Â Â Â Â Â RTC_MATCH1_EN | RTC_ONSW_MATCH0_EN |
> + Â Â Â Â Â Â Â Â Â Â Â RTC_ONSW_MATCH1_EN | RTC_ONSW_FORCE_HIGH);
> + Â Â Â Â Â Â Â rtc_writel(rtc, RTC_CTRL, tmp);
> +
> + Â Â Â Â Â Â Â /* Clear latched interrupt states */
> + Â Â Â Â Â Â Â rtc_writel(rtc, RTC_MATCH0, 0xFFFFFFFF);
> + Â Â Â Â Â Â Â rtc_writel(rtc, RTC_INTSTAT, RTC_MATCH0_INT_STS |
> + Â Â Â Â Â Â Â Â Â Â Â RTC_MATCH1_INT_STS | RTC_ONSW_INT_STS);
> +
> + Â Â Â Â Â Â Â /* Write key value to RTC so it won't reload on reset */
> + Â Â Â Â Â Â Â rtc_writel(rtc, RTC_KEY, RTC_KEY_ONSW_LOADVAL);
> + Â Â Â } else
> + Â Â Â Â Â Â Â rtc_writel(rtc, RTC_CTRL, tmp & ~RTC_ONSW_MATCH0_EN);
> +
> + Â Â Â platform_set_drvdata(pdev, rtc);
> +
> + Â Â Â rtc->rtc = rtc_device_register(RTC_NAME, &pdev->dev, &lpc32xx_rtc_ops,
> + Â Â Â Â Â Â Â THIS_MODULE);
> + Â Â Â if (IS_ERR(rtc->rtc)) {
> + Â Â Â Â Â Â Â dev_err(&pdev->dev, "Can't get RTC\n");
> + Â Â Â Â Â Â Â return PTR_ERR(rtc->rtc);
> + Â Â Â }
> +
> + Â Â Â /*
> + Â Â Â Â* IRQ is enabled after device registration in case alarm IRQ
> + Â Â Â Â* is pending upon suspend exit.
> + Â Â Â Â*/
> + Â Â Â if (rtc->irq >= 0) {
> + Â Â Â Â Â Â Â if (devm_request_irq(&pdev->dev, rtc->irq,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Âlpc32xx_rtc_alarm_interrupt,
> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â ÂIRQF_DISABLED, pdev->name, rtc) < 0) {
> + Â Â Â Â Â Â Â Â Â Â Â dev_warn(&pdev->dev, "Can't request interrupt.\n");
> + Â Â Â Â Â Â Â Â Â Â Â rtc->irq = -1;
> + Â Â Â Â Â Â Â } else
> + Â Â Â Â Â Â Â Â Â Â Â device_init_wakeup(&pdev->dev, 1);
> + Â Â Â }
> +
> + Â Â Â return 0;
> +}
> +
> +static int __devexit lpc32xx_rtc_remove(struct platform_device *pdev)
> +{
> + Â Â Â struct lpc32xx_rtc *rtc = platform_get_drvdata(pdev);
> +
> + Â Â Â if (rtc->irq >= 0)
> + Â Â Â Â Â Â Â device_init_wakeup(&pdev->dev, 0);
> +
> + Â Â Â rtc_device_unregister(rtc->rtc);
> +
> + Â Â Â return 0;
> +}
> +
> +#ifdef CONFIG_PM
> +static int lpc32xx_rtc_suspend(struct device *dev)
> +{
> + Â Â Â struct platform_device *pdev = to_platform_device(dev);
> + Â Â Â struct lpc32xx_rtc *rtc = platform_get_drvdata(pdev);
> +
> + Â Â Â if (rtc->irq >= 0) {
> + Â Â Â Â Â Â Â if (device_may_wakeup(&pdev->dev))
> + Â Â Â Â Â Â Â Â Â Â Â enable_irq_wake(rtc->irq);
> + Â Â Â Â Â Â Â else
> + Â Â Â Â Â Â Â Â Â Â Â disable_irq_wake(rtc->irq);
> + Â Â Â }
> +
> + Â Â Â return 0;
> +}
> +
> +static int lpc32xx_rtc_resume(struct device *dev)
> +{
> + Â Â Â struct platform_device *pdev = to_platform_device(dev);
> + Â Â Â struct lpc32xx_rtc *rtc = platform_get_drvdata(pdev);
> +
> + Â Â Â if (rtc->irq >= 0 && device_may_wakeup(&pdev->dev))
> + Â Â Â Â Â Â Â disable_irq_wake(rtc->irq);
> +
> + Â Â Â return 0;
> +}
> +
> +/* Unconditionally disable the alarm */
> +static int lpc32xx_rtc_freeze(struct device *dev)
> +{
> + Â Â Â struct platform_device *pdev = to_platform_device(dev);
> + Â Â Â struct lpc32xx_rtc *rtc = platform_get_drvdata(pdev);
> +
> + Â Â Â spin_lock_irq(&rtc->lock);
> +
> + Â Â Â rtc_writel(rtc, RTC_CTRL,
> + Â Â Â Â Â Â Â rtc_readl(rtc, RTC_CTRL) & ~RTC_MATCH0_EN);
> +
> + Â Â Â spin_unlock_irq(&rtc->lock);
> +
> + Â Â Â return 0;
> +}
> +
> +static int lpc32xx_rtc_thaw(struct device *dev)
> +{
> + Â Â Â struct platform_device *pdev = to_platform_device(dev);
> + Â Â Â struct lpc32xx_rtc *rtc = platform_get_drvdata(pdev);
> +
> + Â Â Â if (rtc->alarm_enabled) {
> + Â Â Â Â Â Â Â spin_lock_irq(&rtc->lock);
> +
> + Â Â Â Â Â Â Â rtc_writel(rtc, RTC_CTRL,
> + Â Â Â Â Â Â Â Â Â Â Â rtc_readl(rtc, RTC_CTRL) | RTC_MATCH0_EN);
> +
> + Â Â Â Â Â Â Â spin_unlock_irq(&rtc->lock);
> + Â Â Â }
> +
> + Â Â Â return 0;
> +}
> +
> +static const struct dev_pm_ops lpc32xx_rtc_pm_ops = {
> + Â Â Â .suspend = lpc32xx_rtc_suspend,
> + Â Â Â .resume = lpc32xx_rtc_resume,
> + Â Â Â .freeze = lpc32xx_rtc_freeze,
> + Â Â Â .thaw = lpc32xx_rtc_thaw,
> + Â Â Â .restore = lpc32xx_rtc_resume
> +};
> +
> +#define LPC32XX_RTC_PM_OPS (&lpc32xx_rtc_pm_ops)
> +#else
> +#define LPC32XX_RTC_PM_OPS NULL
> +#endif
> +
> +static struct platform_driver lpc32xx_rtc_driver = {
> +    .probe     Â= lpc32xx_rtc_probe,
> +    .remove     = __devexit_p(lpc32xx_rtc_remove),
> + Â Â Â .driver = {
> +        .name  = RTC_NAME,
> + Â Â Â Â Â Â Â .owner Â= THIS_MODULE,
> +        .pm   = LPC32XX_RTC_PM_OPS
> + Â Â Â },
> +};
> +
> +static int __init lpc32xx_rtc_init(void)
> +{
> + Â Â Â return platform_driver_register(&lpc32xx_rtc_driver);
> +}
> +module_init(lpc32xx_rtc_init);
> +
> +static void __exit lpc32xx_rtc_exit(void)
> +{
> + Â Â Â platform_driver_unregister(&lpc32xx_rtc_driver);
> +}
> +module_exit(lpc32xx_rtc_exit);
> +
> +MODULE_AUTHOR("Kevin Wells <wellsk40@xxxxxxxxx");
> +MODULE_DESCRIPTION("RTC driver for the LPC32xx SoC");
> +MODULE_LICENSE("GPL");
> +MODULE_ALIAS("platform:rtc-lpc32xx");
> --
> 1.7.1.1
>
> --
> You received this message because you are subscribed to "rtc-linux".
> Membership options at http://groups.google.com/group/rtc-linux .
> Please read http://groups.google.com/group/rtc-linux/web/checklist
> before submitting a driver.



--
*linux-arm-kernel mailing list
mail addr:linux-arm-kernel@xxxxxxxxxxxxxxxxxxx
you can subscribe by:
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

* linux-arm-NUC900 mailing list
mail addr:NUC900@xxxxxxxxxxxxxxxx
main web: https://groups.google.com/group/NUC900
you can subscribe it by sending me mail:
mcuos.com@xxxxxxxxx
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/