From: Alexandre Belloni <alexandre.belloni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
To: Oleksij Rempel <linux-YEK0n+YFykbzxQdaRaTXBw@public.gmane.org>
Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
a.zummo-BfzFCNDTiLLj+vYz1yj4TQ@public.gmane.org,
rtc-linux-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
Subject: Re: [PATCH 1/2] rtc: add rtc-asm9260 driver
Date: Mon, 1 Feb 2016 17:05:10 +0100 [thread overview]
Message-ID: <20160201160510.GS20165@piout.net> (raw)
In-Reply-To: <1454056802-23386-2-git-send-email-linux-YEK0n+YFykbzxQdaRaTXBw@public.gmane.org>
On 29/01/2016 at 09:40:01 +0100, Oleksij Rempel wrote :
> +static irqreturn_t asm9260_rtc_irq(int irq, void *dev_id)
> +{
> + struct asm9260_rtc_priv *priv = dev_id;
> + u32 isr;
> + unsigned long events = 0;
> +
> + isr = ioread32(priv->iobase + HW_CIIR);
> + if (!isr)
> + return IRQ_NONE;
> +
> + iowrite32(0, priv->iobase + HW_CIIR);
> +
> + events |= RTC_AF | RTC_IRQF;
> +
> + rtc_update_irq(priv->rtc, 1, events);
> +
> + return IRQ_HANDLED;
> +}
> +
> +static int asm9260_rtc_read_time(struct device *dev, struct rtc_time *tm)
> +{
> + struct asm9260_rtc_priv *priv = dev_get_drvdata(dev);
> + u32 ctime0, ctime1, ctime2;
> + unsigned long irq_flags;
> +
It would be nice to actually use BM_RTC_OSCF and return -EINVAL if it is
set.
> + spin_lock_irqsave(&priv->lock, irq_flags);
> + ctime0 = ioread32(priv->iobase + HW_CTIME0);
> + ctime1 = ioread32(priv->iobase + HW_CTIME1);
> + ctime2 = ioread32(priv->iobase + HW_CTIME2);
> +
> + if (ctime1 != ioread32(priv->iobase + HW_CTIME1)) {
> + /*
> + * woops, counter flipped right now. Now we are safe
> + * to reread.
> + */
> + ctime0 = ioread32(priv->iobase + HW_CTIME0);
> + ctime1 = ioread32(priv->iobase + HW_CTIME1);
> + ctime2 = ioread32(priv->iobase + HW_CTIME2);
> + }
> + spin_unlock_irqrestore(&priv->lock, irq_flags);
> +
> + tm->tm_sec = (ctime0 >> BM_CTIME0_SEC_S) & BM_CTIME0_SEC_M;
> + tm->tm_min = (ctime0 >> BM_CTIME0_MIN_S) & BM_CTIME0_MIN_M;
> + tm->tm_hour = (ctime0 >> BM_CTIME0_HOUR_S) & BM_CTIME0_HOUR_M;
> + tm->tm_wday = (ctime0 >> BM_CTIME0_DOW_S) & BM_CTIME0_DOW_M;
> +
> + tm->tm_mday = (ctime1 >> BM_CTIME1_DOM_S) & BM_CTIME1_DOM_M;
> + tm->tm_mon = (ctime1 >> BM_CTIME1_MON_S) & BM_CTIME1_MON_M;
> + tm->tm_year = (ctime1 >> BM_CTIME1_YEAR_S) & BM_CTIME1_YEAR_M;
> +
> + tm->tm_yday = (ctime2 >> BM_CTIME2_DOY_S) & BM_CTIME2_DOY_M;
> +
> + return 0;
> +}
> +
> +static int asm9260_rtc_set_time(struct device *dev, struct rtc_time *tm)
> +{
> + struct asm9260_rtc_priv *priv = dev_get_drvdata(dev);
> + unsigned long irq_flags;
> +
> + spin_lock_irqsave(&priv->lock, irq_flags);
> + /*
> + * make sure SEC counter will not flip other counter on write time,
> + * real value will be written at the enf of sequence.
> + */
> + iowrite32(0, priv->iobase + HW_SEC);
> +
> + iowrite32(tm->tm_year, priv->iobase + HW_YEAR);
> + iowrite32(tm->tm_mon, priv->iobase + HW_MONTH);
> + iowrite32(tm->tm_mday, priv->iobase + HW_DOM);
> + iowrite32(tm->tm_wday, priv->iobase + HW_DOW);
> + iowrite32(tm->tm_yday, priv->iobase + HW_DOY);
> + iowrite32(tm->tm_hour, priv->iobase + HW_HOUR);
> + iowrite32(tm->tm_min, priv->iobase + HW_MIN);
> + iowrite32(tm->tm_sec, priv->iobase + HW_SEC);
That would be a good time to reset BM_RTC_OSCF. Maybe it can also be
useful to enable the interrupt but there isn't much more to do than
print an error message.
> + spin_unlock_irqrestore(&priv->lock, irq_flags);
> +
> + return 0;
> +}
> +
--
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2016-02-01 16:05 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-29 8:40 [PATCH 0/2] add Alphascale asm9260 RTC driver Oleksij Rempel
[not found] ` <1454056802-23386-1-git-send-email-linux-YEK0n+YFykbzxQdaRaTXBw@public.gmane.org>
2016-01-29 8:40 ` [PATCH 1/2] rtc: add rtc-asm9260 driver Oleksij Rempel
[not found] ` <1454056802-23386-2-git-send-email-linux-YEK0n+YFykbzxQdaRaTXBw@public.gmane.org>
2016-02-01 16:05 ` Alexandre Belloni [this message]
[not found] ` <20160201160510.GS20165-m++hUPXGwpdeoWH0uzbU5w@public.gmane.org>
2016-02-02 8:24 ` Oleksij Rempel
2016-01-29 8:40 ` [PATCH 2/2] doc: dt: add documentation for alphascale,asm9260-rtc Oleksij Rempel
[not found] ` <1454056802-23386-3-git-send-email-linux-YEK0n+YFykbzxQdaRaTXBw@public.gmane.org>
2016-02-01 15:27 ` Rob Herring
2016-02-01 15:55 ` Alexandre Belloni
[not found] ` <20160201155527.GR20165-m++hUPXGwpdeoWH0uzbU5w@public.gmane.org>
2016-02-02 8:46 ` Oleksij Rempel
[not found] ` <56B06CCA.4060208-YEK0n+YFykbzxQdaRaTXBw@public.gmane.org>
2016-02-02 10:28 ` Alexandre Belloni
[not found] ` <20160202102804.GT20165-m++hUPXGwpdeoWH0uzbU5w@public.gmane.org>
2016-02-02 19:56 ` [PATCH v2 0/2] add Alphascale asm9260 RTC driver Oleksij Rempel
[not found] ` <1454442971-25225-1-git-send-email-linux-YEK0n+YFykbzxQdaRaTXBw@public.gmane.org>
2016-02-02 19:56 ` [PATCH v2 1/2] rtc: add rtc-asm9260 driver Oleksij Rempel
2016-02-02 19:56 ` [PATCH v2 2/2] doc: dt: add documentation for alphascale,asm9260-rtc Oleksij Rempel
[not found] ` <1454442971-25225-3-git-send-email-linux-YEK0n+YFykbzxQdaRaTXBw@public.gmane.org>
2016-02-02 21:12 ` Rob Herring
2016-02-20 4:38 ` [PATCH v2 0/2] add Alphascale asm9260 RTC driver Alexandre Belloni
2016-02-02 8:42 ` [PATCH 2/2] doc: dt: add documentation for alphascale,asm9260-rtc Oleksij Rempel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160201160510.GS20165@piout.net \
--to=alexandre.belloni-wi1+55scjutkeb57/3fjtnbpr1lh4cv8@public.gmane.org \
--cc=a.zummo-BfzFCNDTiLLj+vYz1yj4TQ@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-YEK0n+YFykbzxQdaRaTXBw@public.gmane.org \
--cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=rtc-linux-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).