All of lore.kernel.org
 help / color / mirror / Atom feed
From: Antoine Mathys <barsamin@gmail.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>, paul@codesourcery.com
Subject: [Qemu-devel] [PATCH v4 6/6] hw/ds1338.c: Fix handling of DAY (wday) register.
Date: Thu, 13 Dec 2012 00:00:26 +0100	[thread overview]
Message-ID: <50C90C8A.5060204@gmail.com> (raw)
In-Reply-To: <50C90B8D.3090801@gmail.com>

Per the datasheet, the DAY (wday) register is user defined. Implement this.

Signed-off-by: Antoine Mathys <barsamin@gmail.com>
---
  hw/ds1338.c |   15 ++++++++++++---
  1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/hw/ds1338.c b/hw/ds1338.c
index 94a2f54..1aefa3b 100644
--- a/hw/ds1338.c
+++ b/hw/ds1338.c
@@ -26,6 +26,7 @@
  typedef struct {
      I2CSlave i2c;
      int64_t offset;
+    uint8_t wday_offset;
      uint8_t nvram[NVRAM_SIZE];
      int32_t ptr;
      bool addr_byte;
@@ -33,12 +34,13 @@ typedef struct {

  static const VMStateDescription vmstate_ds1338 = {
      .name = "ds1338",
-    .version_id = 1,
+    .version_id = 2,
      .minimum_version_id = 1,
      .minimum_version_id_old = 1,
      .fields = (VMStateField[]) {
          VMSTATE_I2C_SLAVE(i2c, DS1338State),
          VMSTATE_INT64(offset, DS1338State),
+        VMSTATE_UINT8_V(wday_offset, DS1338State, 2),
          VMSTATE_UINT8_ARRAY(nvram, DS1338State, NVRAM_SIZE),
          VMSTATE_INT32(ptr, DS1338State),
          VMSTATE_BOOL(addr_byte, DS1338State),
@@ -68,7 +70,7 @@ static void capture_current_time(DS1338State *s)
      } else {
          s->nvram[2] = to_bcd(now.tm_hour);
      }
-    s->nvram[3] = to_bcd(now.tm_wday + 1);
+    s->nvram[3] = (now.tm_wday + s->wday_offset) % 7 + 1;
      s->nvram[4] = to_bcd(now.tm_mday);
      s->nvram[5] = to_bcd(now.tm_mon + 1);
      s->nvram[6] = to_bcd(now.tm_year - 100);
@@ -152,7 +154,13 @@ static int ds1338_send(I2CSlave *i2c, uint8_t data)
              }
              break;
          case 3:
-            now.tm_wday = from_bcd(data & 7) - 1;
+            {
+                /* The day field is supposed to contain a value in
+                   the range 1-7. Otherwise behavior is undefined.
+                 */
+                int user_wday = (data & 7) - 1;
+                s->wday_offset = (user_wday - now.tm_wday + 7) % 7;
+            }
              break;
          case 4:
              now.tm_mday = from_bcd(data & 0x3f);
@@ -194,6 +202,7 @@ static void ds1338_reset(DeviceState *dev)

      /* The clock is running and synchronized with the host */
      s->offset = 0;
+    s->wday_offset = 0;
      memset(s->nvram, 0, NVRAM_SIZE);
      s->ptr = 0;
      s->addr_byte = false;
-- 
1.7.10.4

  parent reply	other threads:[~2012-12-12 23:00 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-12 22:56 [Qemu-devel] [PATCH v4 0/6] hw/ds1338.c Antoine Mathys
2012-12-12 22:59 ` [Qemu-devel] [PATCH v4 1/6] hw/ds1338.c: Correct bug in conversion to BCD Antoine Mathys
2012-12-12 22:59 ` [Qemu-devel] [PATCH v4 2/6] hw/ds1338.c: Add definitions for various flags in the RTC registers Antoine Mathys
2012-12-12 22:59 ` [Qemu-devel] [PATCH v4 3/6] hw/ds1338.c: Fix handling of HOURS register Antoine Mathys
2012-12-12 22:59 ` [Qemu-devel] [PATCH v4 4/6] hw/ds1338.c: Ensure state is properly initialized Antoine Mathys
2012-12-12 23:00 ` [Qemu-devel] [PATCH v4 5/6] hw/ds1338.c: Implement support for the control register Antoine Mathys
2012-12-12 23:00 ` Antoine Mathys [this message]
2012-12-13 14:09 ` [Qemu-devel] [PATCH v4 0/6] hw/ds1338.c Peter Maydell
2012-12-14 13:40   ` Antoine Mathys

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=50C90C8A.5060204@gmail.com \
    --to=barsamin@gmail.com \
    --cc=paul@codesourcery.com \
    --cc=peter.maydell@linaro.org \
    --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 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.