On 24 March 2018 at 19:24, Michael Davidsaver <mdavidsa...@gmail.com> wrote: > instead of a read-modify-write, do direct translation > of device registers to struct tm members. > > This new ds1338_update() is the reverse of > the existing capture_current_time(). > > Simplifies later handling of CENTURY bit in > similar Dallas RTC chips. > > Signed-off-by: Michael Davidsaver <mdavidsa...@gmail.com> > --- > hw/timer/ds1338.c | 86 > ++++++++++++++++++++++++++----------------------------- > 1 file changed, 40 insertions(+), 46 deletions(-) > > diff --git a/hw/timer/ds1338.c b/hw/timer/ds1338.c > index 9bcda26e51..071c031563 100644 > --- a/hw/timer/ds1338.c > +++ b/hw/timer/ds1338.c > @@ -159,6 +159,42 @@ static int ds1338_recv(I2CSlave *i2c) > return res; > } > > +/* call after guest writes to current time registers > + * to re-compute our offset from host time. > + */ > +static void ds1338_update(DS1338State *s) > +{ > + > + struct tm now; > + memset(&now, 0, sizeof(now));
You can zero initialize a struct with just struct tm now = {}; so you don't need the memset. > + > + /* TODO: Implement CH (stop) bit? */ > + now.tm_sec = from_bcd(s->nvram[R_SEC] & 0x7f); > + now.tm_min = from_bcd(s->nvram[R_MIN] & 0x7f); > + if (ARRAY_FIELD_EX32(s->nvram, HOUR, SET12)) { > + /* 12 hour (1-12) */ > + /* read and wrap 1-12 -> 0-11 */ > + now.tm_hour = from_bcd(ARRAY_FIELD_EX32(s->nvram, HOUR, HOUR12)) % > 12u; > + if (ARRAY_FIELD_EX32(s->nvram, HOUR, AMPM)) { > + now.tm_hour += 12; > + } > + > + } else { > + now.tm_hour = from_bcd(ARRAY_FIELD_EX32(s->nvram, HOUR, HOUR24)); > + } > + { > + /* The day field is supposed to contain a value in > + the range 1-7. Otherwise behavior is undefined. > + */ This patch is a good opportunity to bring the format of this comment in line with the others in the file, ie /* multiple lines * all have a star on the left */ > + int user_wday = (s->nvram[R_WDAY] & 7) - 1; I would just declare user_wday at the top of the function, and then you can drop the local {} scope. > + s->wday_offset = (user_wday - now.tm_wday + 7) % 7; This line copied from the previous code is still assuming that 'now' contains valid date information, so it won't produce the right answer. What you need to do is (1) move this down to after you set s->offset, so that we have the new offset value, and then (2) call qemu_get_timedate(&now, s->offset); to get an updated 'now' struct with a valid now.tm_wday; (3) then you can do s->wday_offset = (user_wday - now.tm_wday + 7) % 7; (I think that's right, anyway -- you should check my working...) > + } > + now.tm_mday = from_bcd(s->nvram[R_DATE] & 0x3f); > + now.tm_mon = from_bcd(s->nvram[R_MONTH] & 0x1f) - 1; > + now.tm_year = from_bcd(s->nvram[R_YEAR]) + 100; > + s->offset = qemu_timedate_diff(&now); > + The rest of this looks good. thanks -- PMM