From: Anthony Liguori <anthony@codemonkey.ws>
To: Gleb Natapov <gleb@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] make rtc alatm work
Date: Tue, 06 Jul 2010 10:46:08 -0500 [thread overview]
Message-ID: <4C334FC0.9000507@codemonkey.ws> (raw)
In-Reply-To: <20100705083634.GL4689@redhat.com>
On 07/05/2010 03:36 AM, Gleb Natapov wrote:
> Convert alarm time from BCD if needed before comparing with current
> time.
>
> Signed-off-by: Gleb Natapov<gleb@redhat.com>
>
Applied. Thanks.
Regards,
Anthony Liguori
> diff --git a/hw/mc146818rtc.c b/hw/mc146818rtc.c
> index c3459bf..2b91fa8 100644
> --- a/hw/mc146818rtc.c
> +++ b/hw/mc146818rtc.c
> @@ -214,7 +214,6 @@ static void cmos_ioport_write(void *opaque, uint32_t addr, uint32_t data)
> case RTC_SECONDS_ALARM:
> case RTC_MINUTES_ALARM:
> case RTC_HOURS_ALARM:
> - /* XXX: not supported */
> s->cmos_data[s->cmos_index] = data;
> break;
> case RTC_SECONDS:
> @@ -414,11 +413,11 @@ static void rtc_update_second2(void *opaque)
> /* check alarm */
> if (s->cmos_data[RTC_REG_B]& REG_B_AIE) {
> if (((s->cmos_data[RTC_SECONDS_ALARM]& 0xc0) == 0xc0 ||
> - s->cmos_data[RTC_SECONDS_ALARM] == s->current_tm.tm_sec)&&
> + rtc_from_bcd(s, s->cmos_data[RTC_SECONDS_ALARM]) == s->current_tm.tm_sec)&&
> ((s->cmos_data[RTC_MINUTES_ALARM]& 0xc0) == 0xc0 ||
> - s->cmos_data[RTC_MINUTES_ALARM] == s->current_tm.tm_mon)&&
> + rtc_from_bcd(s, s->cmos_data[RTC_MINUTES_ALARM]) == s->current_tm.tm_min)&&
> ((s->cmos_data[RTC_HOURS_ALARM]& 0xc0) == 0xc0 ||
> - s->cmos_data[RTC_HOURS_ALARM] == s->current_tm.tm_hour)) {
> + rtc_from_bcd(s, s->cmos_data[RTC_HOURS_ALARM]) == s->current_tm.tm_hour)) {
>
> s->cmos_data[RTC_REG_C] |= 0xa0;
> qemu_irq_raise(s->irq);
> --
> Gleb.
>
>
>
prev parent reply other threads:[~2010-07-06 15:46 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-07-05 8:36 [Qemu-devel] [PATCH] make rtc alatm work Gleb Natapov
2010-07-06 15:46 ` Anthony Liguori [this message]
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=4C334FC0.9000507@codemonkey.ws \
--to=anthony@codemonkey.ws \
--cc=gleb@redhat.com \
--cc=qemu-devel@nongnu.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).