qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Thomas Huth <thuth@redhat.com>
To: Bernhard Beschow <shentey@gmail.com>,
	Paolo Bonzini <pbonzini@redhat.com>,
	qemu-devel@nongnu.org,
	Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Cc: "Michael S Tsirkin" <mst@redhat.com>,
	"Philippe Mathieu-Daudé" <philmd@linaro.org>,
	"BALATON Zoltan" <balaton@eik.bme.hu>
Subject: Re: [PATCH v4] hw/rtc/mc146818rtc: Make this rtc device target independent
Date: Mon, 2 Jan 2023 17:09:08 +0100	[thread overview]
Message-ID: <1328eea1-437d-6c43-a542-9e1a4d1d751e@redhat.com> (raw)
In-Reply-To: <aa12364c-ff9b-3252-1fa0-7d72876b0796@redhat.com>

On 02/01/2023 14.36, Thomas Huth wrote:
> On 31/12/2022 00.45, Bernhard Beschow wrote:
>>
>> Am 29. Dezember 2022 10:58:48 UTC schrieb Thomas Huth <thuth@redhat.com>:
[...]
>>> static uint32_t rtc_periodic_clock_ticks(RTCState *s)
>>> {
>>> @@ -922,14 +911,15 @@ static void rtc_realizefn(DeviceState *dev, Error 
>>> **errp)
>>>      rtc_set_date_from_host(isadev);
>>>
>>>      switch (s->lost_tick_policy) {
>>> -#ifdef TARGET_I386
>>> -    case LOST_TICK_POLICY_SLEW:
>>> -        s->coalesced_timer =
>>> -            timer_new_ns(rtc_clock, rtc_coalesced_timer, s);
>>> -        break;
>>> -#endif
>>>      case LOST_TICK_POLICY_DISCARD:
>>>          break;
>>> +    case LOST_TICK_POLICY_SLEW:
>>> +        /* Slew tick policy is only available on x86 */
>>> +        if (arch_type == QEMU_ARCH_I386) {
>>
>> This reflects the intention much better than before, which is nice.
>>
>> How does `arch_type` play together with qemu-system-all? IIUC it should be 
>> possible to load all arch backends simultaneously while `arch_type` is an 
>> external symbol defined by each arch backend differently. So this seems to 
>> conflict.
> 
> I assume that there still will be a main arch_type for the current selected 
> machine? ... not sure how this will exactly work, though ...
> 
>> Can we just add a property such as "slew-tick-policy-available" instead? 
>> It should default to false and all x86 machines would need to opt in 
>> explicitly.
> 
> Sounds like a good idea, it's certainly better than checking arch_type here 
> ... I'll give it a try, thanks!

I've now had a look at this, and it's also getting ugly: Since the property 
has to be set before realize() is done, the setting of the property has to 
be added to the mc146818_rtc_init() function. Thus this function would need 
a new parameter - and it then needs to be changed all over the place, i.e. 
also for all the non-x86 machines, defeating the idea of a default value...

Maybe it makes more sense to check for a TYPE_X86_MACHINE machine type instead?

  Thomas



  reply	other threads:[~2023-01-02 16:09 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-29 10:58 [PATCH v4] hw/rtc/mc146818rtc: Make this rtc device target independent Thomas Huth
2022-12-30 23:45 ` Bernhard Beschow
2023-01-02 13:36   ` Thomas Huth
2023-01-02 16:09     ` Thomas Huth [this message]
2023-01-02 16:47       ` Bernhard Beschow
2023-01-02 16:50         ` Thomas Huth

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=1328eea1-437d-6c43-a542-9e1a4d1d751e@redhat.com \
    --to=thuth@redhat.com \
    --cc=balaton@eik.bme.hu \
    --cc=mark.cave-ayland@ilande.co.uk \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=philmd@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=shentey@gmail.com \
    /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).