qemu-arm
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-arm] [PATCH] Check correct register for clock source


From: Cédric Le Goater
Subject: Re: [Qemu-arm] [PATCH] Check correct register for clock source
Date: Fri, 6 Sep 2019 09:26:42 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0

On 06/09/2019 03:16, Joel Stanley wrote:
> On Fri, 6 Sep 2019 at 01:10, Amithash Prasad <address@hidden> wrote:
>>
>> When WDT_RESTART is written, the data is not the contents
>> of the WDT_CTRL register. Hence ensure we are looking at
>> WDT_CTRL to check if bit WDT_CTRL_1MHZ_CLK is set or not.
>>
>> Signed-off-by: Amithash Prasad <address@hidden>
> 
> Reviewed-by: Joel Stanley <address@hidden>
> 
> Thanks for the patch!

yes. I have pushed it on the aspeed-4.2 branch but it can go independently
as there are no conflicts. I changed the title slightly to reflect the
area being changed.

On the clock topic, we should consider looking at the "Clock framework API" 
from  Damien Hedde :

        http://patchwork.ozlabs.org/cover/1157671/

Thanks,

C. 

> 
>> ---
>>  hw/watchdog/wdt_aspeed.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/hw/watchdog/wdt_aspeed.c b/hw/watchdog/wdt_aspeed.c
>> index 9b93213417..f710036535 100644
>> --- a/hw/watchdog/wdt_aspeed.c
>> +++ b/hw/watchdog/wdt_aspeed.c
>> @@ -140,7 +140,7 @@ static void aspeed_wdt_write(void *opaque, hwaddr 
>> offset, uint64_t data,
>>      case WDT_RESTART:
>>          if ((data & 0xFFFF) == WDT_RESTART_MAGIC) {
>>              s->regs[WDT_STATUS] = s->regs[WDT_RELOAD_VALUE];
>> -            aspeed_wdt_reload(s, !(data & WDT_CTRL_1MHZ_CLK));
>> +            aspeed_wdt_reload(s, !(s->regs[WDT_CTRL] & WDT_CTRL_1MHZ_CLK));
>>          }
>>          break;
>>      case WDT_CTRL:
>> --
>> 2.21.0
>>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]