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

Re: [PATCH v5 1/2] ns16550: use poll mode if INTERRUPT_LINE is 0xff


  • To: Roger Pau Monné <roger.pau@xxxxxxxxxx>
  • From: Jan Beulich <jbeulich@xxxxxxxx>
  • Date: Tue, 17 May 2022 17:46:07 +0200
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=suse.com; dmarc=pass action=none header.from=suse.com; dkim=pass header.d=suse.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=OxU+XQIN+20RPe0OAAG0AXWfFvbd33EKNiuLv7QbyXQ=; b=AOBeI2br7DC4+AuuDKbEz5j2fNPELVPEqsLT00MXZ/9CvZR3qvPErZX/gDzGxOTkPGPrNaSHPMhrKQqzJR6TLhQ4sVEGxiiBnh5q/xS6sStMAzBWMjOzh2DbnLCiL7Eu6hAruyhJSgQvWivb+TIeZdC6wiMVjAwkIDLqUtA81NlKbgE3nOGqPTMDUeiOxmFdidhoPxRuH36MKQKWS31M/eOxT8kTp6U+mWFf5Pexin6x2e7qkgfJ8OuBBBPQBQT8go6VJQEiWxRtov9u/FlBsh9dVHKJJVtZo/npzpovOdlih0vOJUvygQd8D6659gKi2wwNYgt2DSTF8EtlLW90Jg==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=aXsWAgJa0wHI517yM66Yc+GHZ28ooorWpnCsFBqwswqnQcdDTsAkCAMEjA8nbmqgI3phmE5hiV1UBJ27M5RM1TYEUG129Bdxb8sIZOKqBWaDizLfsW67qWNrg9beyahIcgVZ/o+wC32Byl4r/7J8CJThBVKSZJ3ljsBWa3aepBh+w2/yFzOoarHBaLCKlojENZirHp7UaJFPz6t32J9ZQe2mEo8XFYCe6MlZmfqpW+XTdh7cdT7PCs5a6+soIAiOeotKiuA039PEA9NSkpmbjIxZ73axqUCKZPFz+dvuqXpzc4ctdUuYOjLqFAXgQ5L0/id0pE9wt+rl3jFhQsMeSg==
  • Authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=suse.com;
  • Cc: Marek Marczykowski-Górecki <marmarek@xxxxxxxxxxxxxxxxxxxxxx>, Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, George Dunlap <george.dunlap@xxxxxxxxxx>, Julien Grall <julien@xxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>, Wei Liu <wl@xxxxxxx>, xen-devel@xxxxxxxxxxxxxxxxxxxx
  • Delivery-date: Tue, 17 May 2022 15:46:11 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>

On 17.05.2022 17:43, Roger Pau Monné wrote:
> On Tue, May 17, 2022 at 05:13:46PM +0200, Jan Beulich wrote:
>> On 17.05.2022 16:48, Roger Pau Monné wrote:
>>> On Tue, May 17, 2022 at 04:41:31PM +0200, Jan Beulich wrote:
>>>> On 11.05.2022 16:30, Marek Marczykowski-Górecki wrote:
>>>>> --- a/xen/drivers/char/ns16550.c
>>>>> +++ b/xen/drivers/char/ns16550.c
>>>>> @@ -1238,6 +1238,13 @@ pci_uart_config(struct ns16550 *uart, bool_t 
>>>>> skip_amt, unsigned int idx)
>>>>>                              pci_conf_read8(PCI_SBDF(0, b, d, f),
>>>>>                                             PCI_INTERRUPT_LINE) : 0;
>>>>>  
>>>>> +                if ( uart->irq == 0xff )
>>>>> +                    uart->irq = 0;
>>>>> +                if ( !uart->irq )
>>>>> +                    printk(XENLOG_INFO
>>>>> +                           "ns16550: %pp no legacy IRQ, using poll 
>>>>> mode\n",
>>>>> +                           &PCI_SBDF(0, b, d, f));
>>>>> +
>>>>>                  return 0;
>>>>>              }
>>>>>          }
>>>>
>>>> While this code is inside a CONFIG_HAS_PCI conditional, I still
>>>> think - as was previously suggested - that the 1st if() should be
>>>> inside a CONFIG_X86 conditional, to not leave a trap for other
>>>> architectures to fall into.
>>>
>>> The CONFIG_HAS_PCI region is itself inside of a (bigger) CONFIG_X86
>>> region already.
>>
>> But that's likely to change sooner or later, I expect. I'd rather see
>> the surrounding region be shrunk in scope. Already when that
>> CONFIG_X86 was introduced I had reservations, as I don't think all of
>> the enclosed code really is x86-specific.
> 
> My though was that anyone removing the CONFIG_X86 guard will already
> have to deal with setting ->irq properly, as I expect this will differ
> between arches, at which point the check are likely to diverge anyway.

Hmm, true. What I would really like (and what I should have spelled out)
is that the build would fail if this code was enabled for no-x86, such
that it ends up very obvious that something needs doing there. Hence ...

> In any case, I don't see an issue with adding an extra guard, albeit a
> comment would also be acceptable IMO.

... maybe

#ifdef CONFIG_X86
    ...
#else
# error
#endif

?

Jan




 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.