From: "Grygorii.Strashko@linaro.org" <grygorii.strashko@linaro.org>
To: Nishanth Menon <nm@ti.com>,
Alexandre Belloni <alexandre.belloni@free-electrons.com>,
Alessandro Zummo <a.zummo@towertech.it>
Cc: linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org,
rtc-linux@googlegroups.com
Subject: Re: [PATCH V2] drivers/rtc/rtc-ds1307.c: Enable the mcp794xx alarm after programming time
Date: Thu, 23 Apr 2015 13:17:38 +0300 [thread overview]
Message-ID: <5538C6C2.5010508@linaro.org> (raw)
In-Reply-To: <55383625.3070108@ti.com>
On 04/23/2015 03:00 AM, Nishanth Menon wrote:
> On 04/22/2015 08:26 AM, Grygorii.Strashko@linaro.org wrote:
>> Hi,
>>
>> On 04/21/2015 03:51 AM, Nishanth Menon wrote:
>>> Alarm interrupt enable register is at offset 0x7, while the time
>>> registers for the alarm follow that. When we program Alarm interrupt
>>> enable prior to programming the time, it is possible that previous
>>> time value could be close or match at the time of alarm enable
>>> resulting in interrupt trigger which is unexpected (and does not match
>>> the time we expect it to trigger).
>>>
>>> To prevent this scenario from occuring, program the ALM0_EN bit only
>>> after the alarm time is appropriately programmed.
>>>
>>> Ofcourse, I2C programming is non-atomic, so there are loopholes where
>>> the interrupt wont trigger if the time requested is in the past at
>>> the time of programming the ALM0_EN bit. However, we will not have
>>> unexpected interrupts while the time is programmed after the interrupt
>>> are enabled.
>>
>> I think it will be nice if you will mention that you going to follow
>> vendor recommendations - AN1491 Configuring the MCP794XX RTCC Family
>> http://ww1.microchip.com/downloads/en/AppNotes/01491A.pdf
>> ;)
>> "Also, it is recommended that the alarm registers be loaded
>> before the alarm is enabled."
>>
>
> Hmm... i did not know that existed, thanks for digging it up.. that
> teaches me to look for docs before putting a scope/LA on the board
> (not that I regret doing that)... That said, reading the app note, I
> kind of realized:
> a) that playing with ST bit for programming time is not done, but
> then, that implies that oscillator will have to be restarted (upto a
> few seconds for certain crystals).. but that said, it does not seem
> mandatory or seem to (yet seen) functional issues...
>
> b) We dont have flexibility yet to describe if we do indeed have a
> backup battery or not - VBATEN should be set only if we have a backup
> battery on the platform :( - on some it might even be optional thanks
> to certain compliance requirements of shipping boards internationally
> and general "unlike" of lithium ion in cargo hold..
>
> c) we dont have capability to control the alarm polarity in the driver
> which, by the way, we probably should also control OUT polarity (when
> ALARM is not asserted)..
>
> d) we dont have support for external 32k oscillator(X1 only) instead
> of assuming we always have a 32k crystal(X1 and X2)...
>
> Ugghhh... more cleaning up to do for the future..
>
> that said, the sequence it does recommend (in page 4):
> The following steps show how the Alarm 0 is config-
> ured. Alarm 1 can be configured in the same manner.
> 1. Write 0x23 to the Alarm0 Seconds register
> [0x0A].
> 2. Write 0x47 to the Alarm0 Minutes register
> [0x0B].
> 3. Write 0x71 to the Alarm0 Hours register [0x0C]
> – 11 hours in 12-hour format.
> 4. Write 0x72 to the Alarm0 Day register [0x0D] –
> Tuesday + Alarm Polarity Low + Match on all.
> The Alarm0 Interrupt Flag is also cleared.
> 5. Write 0x14 to the Alarm0 Date register [0x0E].
> 6. Write 0x08 to the Alarm0 Month register [0x0F].
> With all the Alarm0 registers set we can now activate
> the Alarm0 on the Control register.
> 7. Write 0x10 to the Control register [0x07] –
> Alarm0 enabled no CLKOUT, Alarm1 disabled
>
> before this patch we do ( http://pastebin.ubuntu.com/10863880/)
> CONTROL r[7] = 0x90 (OUT=1, ALM0EN=1)
> OSCTRIM r[8] = 0x00
> EEUNLOCK r[9] = 0x00
> ALM0SEC r[A] = 0x01
> ALM0MIN r[B] = 0x45
> ALM0HOUR r[C] = 0x23
> ALM0WKDAY r[D] = 0x75 <-ALMOIF is cleared
> ALM0DATE r[E] = 0x09
> ALM0MTH r[F] = 0x04
> RSRVED r[10] = 0x01
>
> with this patch, we do:
> burst( CONTROL r[7] = 0x80 (OUT=1)
> OSCTRIM r[8] = 0x00
> EEUNLOCK r[9] = 0x00
> ALM0SEC r[A] = 0x01
> ALM0MIN r[B] = 0x45
> ALM0HOUR r[C] = 0x23
> ALM0WKDAY r[D] = 0x75 <-ALMOIF is cleared
> ALM0DATE r[E] = 0x09
> ALM0MTH r[F] = 0x04
> RSRVED r[10] = 0x01
> )
> CONTROL r[7] = 0x90 (OUT=1, ALM0EN=1)
>
> Which is slightly unoptimal way of what the app note recommends. - as
> I mentioned earlier in this thread, I will try and do optimizations in
> a later patch.
>
> Given that Andrew had picked up this patch, I dont see a reason to
> respin this yet. but will include the app note for future patches -
> thanks for pointing it out to me.
^^ Up to you. Np, Always yours!
>>>
>>> Signed-off-by: Nishanth Menon <nm@ti.com>
>>> ---
>>> Changes in v2:
>>> - minor typo fix in comments
>>> - merged up code that I missed committing in
>>>
>>> V1: https://patchwork.kernel.org/patch/6245041/
>>>
>>> drivers/rtc/rtc-ds1307.c | 12 ++++++------
>>> 1 file changed, 6 insertions(+), 6 deletions(-)
>>>
>>> diff --git a/drivers/rtc/rtc-ds1307.c b/drivers/rtc/rtc-ds1307.c
>>> index 4ffabb322a9a..3cd4783375a5 100644
>>> --- a/drivers/rtc/rtc-ds1307.c
>>> +++ b/drivers/rtc/rtc-ds1307.c
>>> @@ -742,17 +742,17 @@ static int mcp794xx_set_alarm(struct device *dev, struct rtc_wkalrm *t)
>>> regs[6] &= ~MCP794XX_BIT_ALMX_IF;
>>> /* Set alarm match: second, minute, hour, day, date, month. */
>>> regs[6] |= MCP794XX_MSK_ALMX_MATCH;
>>> -
>>> - if (t->enabled)
>>> - regs[0] |= MCP794XX_BIT_ALM0_EN;
>>> - else
>>> - regs[0] &= ~MCP794XX_BIT_ALM0_EN;
>>> + /* Disable interrupt. We will not enable until completely programmed */
>>> + regs[0] &= ~MCP794XX_BIT_ALM0_EN;
>>>
>>> ret = ds1307->write_block_data(client, MCP794XX_REG_CONTROL, 10, regs);
>>> if (ret < 0)
>>> return ret;
>>>
>>> - return 0;
>>> + if (!t->enabled)
>>> + return 0;
>>> + regs[0] |= MCP794XX_BIT_ALM0_EN;
>>> + return i2c_smbus_write_byte_data(client, MCP794XX_REG_CONTROL, regs[0]);
>>
>> So, It seems, that right sequence should be:
>> - disable alarmX
>> - read alarmX regs
>> - configure alarmX regs
>> - load alarmX regs
>> - enable alarmX
> Not exactly.... see above. we can optimize this for a better sequence
> as follows - since there are already un-necessary reads being
> performed. probably just a couple of reads might be
> sufficient..(ALM0WKDAY has some control bits as well.. Ugggh..
> anyways..)...
>
>
> Will have to think more about optimizing more later.
Also I've done some fast investigation and I found that ~half of RTC drivers disable
ALM IRQ before start accessing Alarm regs (twl-rtc.c) while another half don't do that :)
(just FYI)
>
>>
>> More over, looks like, alarm/alarm IRQ should be enabled/disabled separately from set_alarm/RTC_ALM_SET
>> by RTC_AIE_ON, RTC_AIE_OFF. Should it?
>
--
regards,
-grygorii
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: "Grygorii.Strashko@linaro.org" <grygorii.strashko@linaro.org>
To: Nishanth Menon <nm@ti.com>,
Alexandre Belloni <alexandre.belloni@free-electrons.com>,
Alessandro Zummo <a.zummo@towertech.it>
Cc: linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org,
rtc-linux@googlegroups.com
Subject: [rtc-linux] Re: [PATCH V2] drivers/rtc/rtc-ds1307.c: Enable the mcp794xx alarm after programming time
Date: Thu, 23 Apr 2015 13:17:38 +0300 [thread overview]
Message-ID: <5538C6C2.5010508@linaro.org> (raw)
In-Reply-To: <55383625.3070108@ti.com>
On 04/23/2015 03:00 AM, Nishanth Menon wrote:
> On 04/22/2015 08:26 AM, Grygorii.Strashko@linaro.org wrote:
>> Hi,
>>
>> On 04/21/2015 03:51 AM, Nishanth Menon wrote:
>>> Alarm interrupt enable register is at offset 0x7, while the time
>>> registers for the alarm follow that. When we program Alarm interrupt
>>> enable prior to programming the time, it is possible that previous
>>> time value could be close or match at the time of alarm enable
>>> resulting in interrupt trigger which is unexpected (and does not match
>>> the time we expect it to trigger).
>>>
>>> To prevent this scenario from occuring, program the ALM0_EN bit only
>>> after the alarm time is appropriately programmed.
>>>
>>> Ofcourse, I2C programming is non-atomic, so there are loopholes where
>>> the interrupt wont trigger if the time requested is in the past at
>>> the time of programming the ALM0_EN bit. However, we will not have
>>> unexpected interrupts while the time is programmed after the interrupt
>>> are enabled.
>>
>> I think it will be nice if you will mention that you going to follow
>> vendor recommendations - AN1491 Configuring the MCP794XX RTCC Family
>> http://ww1.microchip.com/downloads/en/AppNotes/01491A.pdf
>> ;)
>> "Also, it is recommended that the alarm registers be loaded
>> before the alarm is enabled."
>>
>=20
> Hmm... i did not know that existed, thanks for digging it up.. that
> teaches me to look for docs before putting a scope/LA on the board
> (not that I regret doing that)... That said, reading the app note, I
> kind of realized:
> a) that playing with ST bit for programming time is not done, but
> then, that implies that oscillator will have to be restarted (upto a
> few seconds for certain crystals).. but that said, it does not seem
> mandatory or seem to (yet seen) functional issues...
>=20
> b) We dont have flexibility yet to describe if we do indeed have a
> backup battery or not - VBATEN should be set only if we have a backup
> battery on the platform :( - on some it might even be optional thanks
> to certain compliance requirements of shipping boards internationally
> and general "unlike" of lithium ion in cargo hold..
>=20
> c) we dont have capability to control the alarm polarity in the driver
> which, by the way, we probably should also control OUT polarity (when
> ALARM is not asserted)..
>=20
> d) we dont have support for external 32k oscillator(X1 only) instead
> of assuming we always have a 32k crystal(X1 and X2)...
>=20
> Ugghhh... more cleaning up to do for the future..
>=20
> that said, the sequence it does recommend (in page 4):
> The following steps show how the Alarm 0 is config-
> ured. Alarm 1 can be configured in the same manner.
> 1. Write 0x23 to the Alarm0 Seconds register
> [0x0A].
> 2. Write 0x47 to the Alarm0 Minutes register
> [0x0B].
> 3. Write 0x71 to the Alarm0 Hours register [0x0C]
> =E2=80=93 11 hours in 12-hour format.
> 4. Write 0x72 to the Alarm0 Day register [0x0D] =E2=80=93
> Tuesday + Alarm Polarity Low + Match on all.
> The Alarm0 Interrupt Flag is also cleared.
> 5. Write 0x14 to the Alarm0 Date register [0x0E].
> 6. Write 0x08 to the Alarm0 Month register [0x0F].
> With all the Alarm0 registers set we can now activate
> the Alarm0 on the Control register.
> 7. Write 0x10 to the Control register [0x07] =E2=80=93
> Alarm0 enabled no CLKOUT, Alarm1 disabled
>=20
> before this patch we do ( http://pastebin.ubuntu.com/10863880/)
> CONTROL r[7] =3D 0x90 (OUT=3D1, ALM0EN=3D1)
> OSCTRIM r[8] =3D 0x00
> EEUNLOCK r[9] =3D 0x00
> ALM0SEC r[A] =3D 0x01
> ALM0MIN r[B] =3D 0x45
> ALM0HOUR r[C] =3D 0x23
> ALM0WKDAY r[D] =3D 0x75 <-ALMOIF is cleared
> ALM0DATE r[E] =3D 0x09
> ALM0MTH r[F] =3D 0x04
> RSRVED r[10] =3D 0x01
>=20
> with this patch, we do:
> burst( CONTROL r[7] =3D 0x80 (OUT=3D1)
> OSCTRIM r[8] =3D 0x00
> EEUNLOCK r[9] =3D 0x00
> ALM0SEC r[A] =3D 0x01
> ALM0MIN r[B] =3D 0x45
> ALM0HOUR r[C] =3D 0x23
> ALM0WKDAY r[D] =3D 0x75 <-ALMOIF is cleared
> ALM0DATE r[E] =3D 0x09
> ALM0MTH r[F] =3D 0x04
> RSRVED r[10] =3D 0x01
> )
> CONTROL r[7] =3D 0x90 (OUT=3D1, ALM0EN=3D1)
>=20
> Which is slightly unoptimal way of what the app note recommends. - as
> I mentioned earlier in this thread, I will try and do optimizations in
> a later patch.
>=20
> Given that Andrew had picked up this patch, I dont see a reason to
> respin this yet. but will include the app note for future patches -
> thanks for pointing it out to me.
^^ Up to you. Np, Always yours!
>>>
>>> Signed-off-by: Nishanth Menon <nm@ti.com>
>>> ---
>>> Changes in v2:
>>> - minor typo fix in comments
>>> - merged up code that I missed committing in
>>>
>>> V1: https://patchwork.kernel.org/patch/6245041/
>>>
>>> drivers/rtc/rtc-ds1307.c | 12 ++++++------
>>> 1 file changed, 6 insertions(+), 6 deletions(-)
>>>
>>> diff --git a/drivers/rtc/rtc-ds1307.c b/drivers/rtc/rtc-ds1307.c
>>> index 4ffabb322a9a..3cd4783375a5 100644
>>> --- a/drivers/rtc/rtc-ds1307.c
>>> +++ b/drivers/rtc/rtc-ds1307.c
>>> @@ -742,17 +742,17 @@ static int mcp794xx_set_alarm(struct device *dev,=
struct rtc_wkalrm *t)
>>> regs[6] &=3D ~MCP794XX_BIT_ALMX_IF;
>>> /* Set alarm match: second, minute, hour, day, date, month. */
>>> regs[6] |=3D MCP794XX_MSK_ALMX_MATCH;
>>> -
>>> - if (t->enabled)
>>> - regs[0] |=3D MCP794XX_BIT_ALM0_EN;
>>> - else
>>> - regs[0] &=3D ~MCP794XX_BIT_ALM0_EN;
>>> + /* Disable interrupt. We will not enable until completely programmed =
*/
>>> + regs[0] &=3D ~MCP794XX_BIT_ALM0_EN;
>>> =20
>>> ret =3D ds1307->write_block_data(client, MCP794XX_REG_CONTROL, 10, =
regs);
>>> if (ret < 0)
>>> return ret;
>>> =20
>>> - return 0;
>>> + if (!t->enabled)
>>> + return 0;
>>> + regs[0] |=3D MCP794XX_BIT_ALM0_EN;
>>> + return i2c_smbus_write_byte_data(client, MCP794XX_REG_CONTROL, regs[0=
]);
>>
>> So, It seems, that right sequence should be:
>> - disable alarmX
>> - read alarmX regs
>> - configure alarmX regs
>> - load alarmX regs
>> - enable alarmX
> Not exactly.... see above. we can optimize this for a better sequence
> as follows - since there are already un-necessary reads being
> performed. probably just a couple of reads might be
> sufficient..(ALM0WKDAY has some control bits as well.. Ugggh..
> anyways..)...
>=20
>=20
> Will have to think more about optimizing more later.
Also I've done some fast investigation and I found that ~half of RTC driver=
s disable
ALM IRQ before start accessing Alarm regs (twl-rtc.c) while another half =
don't do that :)
(just FYI)
>=20
>>
>> More over, looks like, alarm/alarm IRQ should be enabled/disabled separa=
tely from set_alarm/RTC_ALM_SET
>> by RTC_AIE_ON, RTC_AIE_OFF. Should it?
>=20
--=20
regards,
-grygorii
--=20
--=20
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.
---=20
You received this message because you are subscribed to the Google Groups "=
rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
WARNING: multiple messages have this Message-ID (diff)
From: "Grygorii.Strashko@linaro.org" <grygorii.strashko@linaro.org>
To: Nishanth Menon <nm@ti.com>,
Alexandre Belloni <alexandre.belloni@free-electrons.com>,
Alessandro Zummo <a.zummo@towertech.it>
Cc: linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org,
rtc-linux@googlegroups.com
Subject: Re: [PATCH V2] drivers/rtc/rtc-ds1307.c: Enable the mcp794xx alarm after programming time
Date: Thu, 23 Apr 2015 13:17:38 +0300 [thread overview]
Message-ID: <5538C6C2.5010508@linaro.org> (raw)
In-Reply-To: <55383625.3070108@ti.com>
On 04/23/2015 03:00 AM, Nishanth Menon wrote:
> On 04/22/2015 08:26 AM, Grygorii.Strashko@linaro.org wrote:
>> Hi,
>>
>> On 04/21/2015 03:51 AM, Nishanth Menon wrote:
>>> Alarm interrupt enable register is at offset 0x7, while the time
>>> registers for the alarm follow that. When we program Alarm interrupt
>>> enable prior to programming the time, it is possible that previous
>>> time value could be close or match at the time of alarm enable
>>> resulting in interrupt trigger which is unexpected (and does not match
>>> the time we expect it to trigger).
>>>
>>> To prevent this scenario from occuring, program the ALM0_EN bit only
>>> after the alarm time is appropriately programmed.
>>>
>>> Ofcourse, I2C programming is non-atomic, so there are loopholes where
>>> the interrupt wont trigger if the time requested is in the past at
>>> the time of programming the ALM0_EN bit. However, we will not have
>>> unexpected interrupts while the time is programmed after the interrupt
>>> are enabled.
>>
>> I think it will be nice if you will mention that you going to follow
>> vendor recommendations - AN1491 Configuring the MCP794XX RTCC Family
>> http://ww1.microchip.com/downloads/en/AppNotes/01491A.pdf
>> ;)
>> "Also, it is recommended that the alarm registers be loaded
>> before the alarm is enabled."
>>
>
> Hmm... i did not know that existed, thanks for digging it up.. that
> teaches me to look for docs before putting a scope/LA on the board
> (not that I regret doing that)... That said, reading the app note, I
> kind of realized:
> a) that playing with ST bit for programming time is not done, but
> then, that implies that oscillator will have to be restarted (upto a
> few seconds for certain crystals).. but that said, it does not seem
> mandatory or seem to (yet seen) functional issues...
>
> b) We dont have flexibility yet to describe if we do indeed have a
> backup battery or not - VBATEN should be set only if we have a backup
> battery on the platform :( - on some it might even be optional thanks
> to certain compliance requirements of shipping boards internationally
> and general "unlike" of lithium ion in cargo hold..
>
> c) we dont have capability to control the alarm polarity in the driver
> which, by the way, we probably should also control OUT polarity (when
> ALARM is not asserted)..
>
> d) we dont have support for external 32k oscillator(X1 only) instead
> of assuming we always have a 32k crystal(X1 and X2)...
>
> Ugghhh... more cleaning up to do for the future..
>
> that said, the sequence it does recommend (in page 4):
> The following steps show how the Alarm 0 is config-
> ured. Alarm 1 can be configured in the same manner.
> 1. Write 0x23 to the Alarm0 Seconds register
> [0x0A].
> 2. Write 0x47 to the Alarm0 Minutes register
> [0x0B].
> 3. Write 0x71 to the Alarm0 Hours register [0x0C]
> – 11 hours in 12-hour format.
> 4. Write 0x72 to the Alarm0 Day register [0x0D] –
> Tuesday + Alarm Polarity Low + Match on all.
> The Alarm0 Interrupt Flag is also cleared.
> 5. Write 0x14 to the Alarm0 Date register [0x0E].
> 6. Write 0x08 to the Alarm0 Month register [0x0F].
> With all the Alarm0 registers set we can now activate
> the Alarm0 on the Control register.
> 7. Write 0x10 to the Control register [0x07] –
> Alarm0 enabled no CLKOUT, Alarm1 disabled
>
> before this patch we do ( http://pastebin.ubuntu.com/10863880/)
> CONTROL r[7] = 0x90 (OUT=1, ALM0EN=1)
> OSCTRIM r[8] = 0x00
> EEUNLOCK r[9] = 0x00
> ALM0SEC r[A] = 0x01
> ALM0MIN r[B] = 0x45
> ALM0HOUR r[C] = 0x23
> ALM0WKDAY r[D] = 0x75 <-ALMOIF is cleared
> ALM0DATE r[E] = 0x09
> ALM0MTH r[F] = 0x04
> RSRVED r[10] = 0x01
>
> with this patch, we do:
> burst( CONTROL r[7] = 0x80 (OUT=1)
> OSCTRIM r[8] = 0x00
> EEUNLOCK r[9] = 0x00
> ALM0SEC r[A] = 0x01
> ALM0MIN r[B] = 0x45
> ALM0HOUR r[C] = 0x23
> ALM0WKDAY r[D] = 0x75 <-ALMOIF is cleared
> ALM0DATE r[E] = 0x09
> ALM0MTH r[F] = 0x04
> RSRVED r[10] = 0x01
> )
> CONTROL r[7] = 0x90 (OUT=1, ALM0EN=1)
>
> Which is slightly unoptimal way of what the app note recommends. - as
> I mentioned earlier in this thread, I will try and do optimizations in
> a later patch.
>
> Given that Andrew had picked up this patch, I dont see a reason to
> respin this yet. but will include the app note for future patches -
> thanks for pointing it out to me.
^^ Up to you. Np, Always yours!
>>>
>>> Signed-off-by: Nishanth Menon <nm@ti.com>
>>> ---
>>> Changes in v2:
>>> - minor typo fix in comments
>>> - merged up code that I missed committing in
>>>
>>> V1: https://patchwork.kernel.org/patch/6245041/
>>>
>>> drivers/rtc/rtc-ds1307.c | 12 ++++++------
>>> 1 file changed, 6 insertions(+), 6 deletions(-)
>>>
>>> diff --git a/drivers/rtc/rtc-ds1307.c b/drivers/rtc/rtc-ds1307.c
>>> index 4ffabb322a9a..3cd4783375a5 100644
>>> --- a/drivers/rtc/rtc-ds1307.c
>>> +++ b/drivers/rtc/rtc-ds1307.c
>>> @@ -742,17 +742,17 @@ static int mcp794xx_set_alarm(struct device *dev, struct rtc_wkalrm *t)
>>> regs[6] &= ~MCP794XX_BIT_ALMX_IF;
>>> /* Set alarm match: second, minute, hour, day, date, month. */
>>> regs[6] |= MCP794XX_MSK_ALMX_MATCH;
>>> -
>>> - if (t->enabled)
>>> - regs[0] |= MCP794XX_BIT_ALM0_EN;
>>> - else
>>> - regs[0] &= ~MCP794XX_BIT_ALM0_EN;
>>> + /* Disable interrupt. We will not enable until completely programmed */
>>> + regs[0] &= ~MCP794XX_BIT_ALM0_EN;
>>>
>>> ret = ds1307->write_block_data(client, MCP794XX_REG_CONTROL, 10, regs);
>>> if (ret < 0)
>>> return ret;
>>>
>>> - return 0;
>>> + if (!t->enabled)
>>> + return 0;
>>> + regs[0] |= MCP794XX_BIT_ALM0_EN;
>>> + return i2c_smbus_write_byte_data(client, MCP794XX_REG_CONTROL, regs[0]);
>>
>> So, It seems, that right sequence should be:
>> - disable alarmX
>> - read alarmX regs
>> - configure alarmX regs
>> - load alarmX regs
>> - enable alarmX
> Not exactly.... see above. we can optimize this for a better sequence
> as follows - since there are already un-necessary reads being
> performed. probably just a couple of reads might be
> sufficient..(ALM0WKDAY has some control bits as well.. Ugggh..
> anyways..)...
>
>
> Will have to think more about optimizing more later.
Also I've done some fast investigation and I found that ~half of RTC drivers disable
ALM IRQ before start accessing Alarm regs (twl-rtc.c) while another half don't do that :)
(just FYI)
>
>>
>> More over, looks like, alarm/alarm IRQ should be enabled/disabled separately from set_alarm/RTC_ALM_SET
>> by RTC_AIE_ON, RTC_AIE_OFF. Should it?
>
--
regards,
-grygorii
next prev parent reply other threads:[~2015-04-23 10:17 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-21 0:51 [PATCH V2] drivers/rtc/rtc-ds1307.c: Enable the mcp794xx alarm after programming time Nishanth Menon
2015-04-21 0:51 ` Nishanth Menon
2015-04-21 0:51 ` [rtc-linux] " Nishanth Menon
2015-04-21 23:41 ` Alexandre Belloni
2015-04-21 23:41 ` [rtc-linux] " Alexandre Belloni
2015-04-21 23:58 ` Nishanth Menon
2015-04-21 23:58 ` Nishanth Menon
2015-04-21 23:58 ` [rtc-linux] " Nishanth Menon
2015-04-22 1:09 ` Alexandre Belloni
2015-04-22 1:09 ` [rtc-linux] " Alexandre Belloni
2015-04-22 1:59 ` Nishanth Menon
2015-04-22 1:59 ` Nishanth Menon
2015-04-22 1:59 ` [rtc-linux] " Nishanth Menon
2015-04-22 11:30 ` Alexandre Belloni
2015-04-22 11:30 ` [rtc-linux] " Alexandre Belloni
2015-04-23 0:04 ` Nishanth Menon
2015-04-23 0:04 ` Nishanth Menon
2015-04-23 0:04 ` [rtc-linux] " Nishanth Menon
2015-04-24 9:41 ` Alexandre Belloni
2015-04-24 9:41 ` [rtc-linux] " Alexandre Belloni
2015-04-22 13:26 ` Grygorii.Strashko@linaro.org
2015-04-22 13:26 ` [rtc-linux] " Grygorii.Strashko@linaro.org
2015-04-23 0:00 ` Nishanth Menon
2015-04-23 0:00 ` Nishanth Menon
2015-04-23 0:00 ` [rtc-linux] " Nishanth Menon
2015-04-23 10:17 ` Grygorii.Strashko@linaro.org [this message]
2015-04-23 10:17 ` Grygorii.Strashko@linaro.org
2015-04-23 10:17 ` [rtc-linux] " Grygorii.Strashko@linaro.org
2015-04-23 13:11 ` Nishanth Menon
2015-04-23 13:11 ` Nishanth Menon
2015-04-23 13:11 ` [rtc-linux] " Nishanth Menon
2015-04-23 15:29 ` Grygorii.Strashko@linaro.org
2015-04-23 15:29 ` [rtc-linux] " Grygorii.Strashko@linaro.org
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=5538C6C2.5010508@linaro.org \
--to=grygorii.strashko@linaro.org \
--cc=a.zummo@towertech.it \
--cc=alexandre.belloni@free-electrons.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=nm@ti.com \
--cc=rtc-linux@googlegroups.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.