Ping? On Sat, Jun 20, 2020 at 8:03 PM Huacai Chen <chenhc@xxxxxxxxxx> wrote: > > When use goldfish rtc, the "hwclock" command fails with "select() to > /dev/rtc to wait for clock tick timed out". This is because "hwclock" > need the set_alarm() hook to enable interrupt when alrm->enabled is > true. This operation is missing in goldfish rtc (but other rtc drivers, > such as cmos rtc, enable interrupt here), so add it. > > Signed-off-by: Huacai Chen <chenhc@xxxxxxxxxx> > Signed-off-by: Jiaxun Yang <jiaxun.yang@xxxxxxxxxxx> > --- > drivers/rtc/rtc-goldfish.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/rtc/rtc-goldfish.c b/drivers/rtc/rtc-goldfish.c > index 1a3420e..d5083b0 100644 > --- a/drivers/rtc/rtc-goldfish.c > +++ b/drivers/rtc/rtc-goldfish.c > @@ -73,6 +73,7 @@ static int goldfish_rtc_set_alarm(struct device *dev, > rtc_alarm64 = rtc_tm_to_time64(&alrm->time) * NSEC_PER_SEC; > writel((rtc_alarm64 >> 32), base + TIMER_ALARM_HIGH); > writel(rtc_alarm64, base + TIMER_ALARM_LOW); > + writel(1, base + TIMER_IRQ_ENABLED); > } else { > /* > * if this function was called with enabled=0 > -- > 2.7.0 >