* [PATCH 1/2] ns16550: reject IRQ above nr_irqs @ 2022-03-10 14:34 Marek Marczykowski-Górecki 2022-03-10 14:34 ` [PATCH 2/2] ns16550: Add support for Intel LPSS UART Marek Marczykowski-Górecki 2022-03-10 15:23 ` [PATCH 1/2] ns16550: reject IRQ above nr_irqs Jan Beulich 0 siblings, 2 replies; 18+ messages in thread From: Marek Marczykowski-Górecki @ 2022-03-10 14:34 UTC (permalink / raw) To: xen-devel Cc: Marek Marczykowski-Górecki, Andrew Cooper, George Dunlap, Jan Beulich, Julien Grall, Stefano Stabellini, Wei Liu Intel LPSS has INTERRUPT_LINE set to 0xff by default, that can't possibly work. While a proper IRQ configuration may be useful, validating value retrieved from the hardware is still necessary. If it fails, use the device in poll mode. Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> --- xen/drivers/char/ns16550.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xen/drivers/char/ns16550.c b/xen/drivers/char/ns16550.c index e5b4a9085516..2d7c8c11bc69 100644 --- a/xen/drivers/char/ns16550.c +++ b/xen/drivers/char/ns16550.c @@ -1221,6 +1221,9 @@ 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 >= nr_irqs) + uart->irq = 0; + return 0; } } -- 2.31.1 ^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 2/2] ns16550: Add support for Intel LPSS UART 2022-03-10 14:34 [PATCH 1/2] ns16550: reject IRQ above nr_irqs Marek Marczykowski-Górecki @ 2022-03-10 14:34 ` Marek Marczykowski-Górecki 2022-03-15 9:04 ` Jan Beulich 2022-03-10 15:23 ` [PATCH 1/2] ns16550: reject IRQ above nr_irqs Jan Beulich 1 sibling, 1 reply; 18+ messages in thread From: Marek Marczykowski-Górecki @ 2022-03-10 14:34 UTC (permalink / raw) To: xen-devel Cc: Marek Marczykowski-Górecki, Andrew Cooper, George Dunlap, Jan Beulich, Julien Grall, Stefano Stabellini, Wei Liu This adds support for serial console as found in a laptop with TGL-LP (StarBook MkV). Since the device is on the bus 0, it needs to be enabled via "com1=...,amt", not just "...,pci". Device specification is in Intel docs 631119-007 and 631120-001. Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> --- This adds only a single device (UART#2) to the table - the only one I have present, but the specification includes other device ids too. Should I add them too? I don't have a way to test that, though. --- xen/drivers/char/ns16550.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/xen/drivers/char/ns16550.c b/xen/drivers/char/ns16550.c index 2d7c8c11bc69..edf981db22f4 100644 --- a/xen/drivers/char/ns16550.c +++ b/xen/drivers/char/ns16550.c @@ -91,6 +91,7 @@ struct ns16550_config { param_exar_xr17v352, param_exar_xr17v354, param_exar_xr17v358, + param_intel_lpss, } param; }; @@ -822,6 +823,16 @@ static const struct ns16550_config_param __initconst uart_param[] = { .mmio = 1, .max_ports = 8, }, + [param_intel_lpss] = { + .uart_offset = 0x000, + .reg_shift = 2, + .reg_width = 1, + .fifo_size = 64, + .lsr_mask = UART_LSR_THRE, + .bar0 = 1, + .mmio = 1, + .max_ports = 1, + }, }; static const struct ns16550_config __initconst uart_config[] = @@ -1066,6 +1077,12 @@ static const struct ns16550_config __initconst uart_config[] = .dev_id = 0x0358, .param = param_exar_xr17v358 }, + /* Intel Corp. TGL-LP LPSS PCI */ + { + .vendor_id = PCI_VENDOR_ID_INTEL, + .dev_id = 0xa0c7, + .param = param_intel_lpss + }, }; static int __init -- 2.31.1 ^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH 2/2] ns16550: Add support for Intel LPSS UART 2022-03-10 14:34 ` [PATCH 2/2] ns16550: Add support for Intel LPSS UART Marek Marczykowski-Górecki @ 2022-03-15 9:04 ` Jan Beulich 0 siblings, 0 replies; 18+ messages in thread From: Jan Beulich @ 2022-03-15 9:04 UTC (permalink / raw) To: Marek Marczykowski-Górecki Cc: Andrew Cooper, George Dunlap, Julien Grall, Stefano Stabellini, Wei Liu, xen-devel On 10.03.2022 15:34, Marek Marczykowski-Górecki wrote: > This adds support for serial console as found in a laptop with TGL-LP > (StarBook MkV). Since the device is on the bus 0, it needs to be enabled > via "com1=...,amt", not just "...,pci". > > Device specification is in Intel docs 631119-007 and 631120-001. > > Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Reviewed-by: Jan Beulich <jbeulich@suse.com> > --- > This adds only a single device (UART#2) to the table - the only one I > have present, but the specification includes other device ids too. Should I > add them too? I don't have a way to test that, though. Personally I would have added the other ones as well, likely even going further and including those from the other 500 Series variant as well, and maybe yet further including e.g. 600 Series IDs too. But if you want to restrict this to what you can test, that's certainly fine. Jan ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/2] ns16550: reject IRQ above nr_irqs 2022-03-10 14:34 [PATCH 1/2] ns16550: reject IRQ above nr_irqs Marek Marczykowski-Górecki 2022-03-10 14:34 ` [PATCH 2/2] ns16550: Add support for Intel LPSS UART Marek Marczykowski-Górecki @ 2022-03-10 15:23 ` Jan Beulich 2022-03-10 15:47 ` Roger Pau Monné 1 sibling, 1 reply; 18+ messages in thread From: Jan Beulich @ 2022-03-10 15:23 UTC (permalink / raw) To: Marek Marczykowski-Górecki Cc: Andrew Cooper, George Dunlap, Julien Grall, Stefano Stabellini, Wei Liu, xen-devel On 10.03.2022 15:34, Marek Marczykowski-Górecki wrote: > --- a/xen/drivers/char/ns16550.c > +++ b/xen/drivers/char/ns16550.c > @@ -1221,6 +1221,9 @@ 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 >= nr_irqs) > + uart->irq = 0; Don't you mean nr_irqs_gsi here? Also (nit) please add the missing blanks immediately inside the parentheses. Jan ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/2] ns16550: reject IRQ above nr_irqs 2022-03-10 15:23 ` [PATCH 1/2] ns16550: reject IRQ above nr_irqs Jan Beulich @ 2022-03-10 15:47 ` Roger Pau Monné 2022-03-10 16:08 ` Jan Beulich 0 siblings, 1 reply; 18+ messages in thread From: Roger Pau Monné @ 2022-03-10 15:47 UTC (permalink / raw) To: Jan Beulich Cc: Marek Marczykowski-Górecki, Andrew Cooper, George Dunlap, Julien Grall, Stefano Stabellini, Wei Liu, xen-devel On Thu, Mar 10, 2022 at 04:23:00PM +0100, Jan Beulich wrote: > On 10.03.2022 15:34, Marek Marczykowski-Górecki wrote: > > --- a/xen/drivers/char/ns16550.c > > +++ b/xen/drivers/char/ns16550.c > > @@ -1221,6 +1221,9 @@ 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 >= nr_irqs) > > + uart->irq = 0; > > Don't you mean nr_irqs_gsi here? Also (nit) please add the missing blanks > immediately inside the parentheses. If we use nr_irqs_gsi we will need to make the check x86 only AFAICT. Thanks, Roger. ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/2] ns16550: reject IRQ above nr_irqs 2022-03-10 15:47 ` Roger Pau Monné @ 2022-03-10 16:08 ` Jan Beulich 2022-03-10 16:12 ` Roger Pau Monné 0 siblings, 1 reply; 18+ messages in thread From: Jan Beulich @ 2022-03-10 16:08 UTC (permalink / raw) To: Roger Pau Monné Cc: Marek Marczykowski-Górecki, Andrew Cooper, George Dunlap, Julien Grall, Stefano Stabellini, Wei Liu, xen-devel On 10.03.2022 16:47, Roger Pau Monné wrote: > On Thu, Mar 10, 2022 at 04:23:00PM +0100, Jan Beulich wrote: >> On 10.03.2022 15:34, Marek Marczykowski-Górecki wrote: >>> --- a/xen/drivers/char/ns16550.c >>> +++ b/xen/drivers/char/ns16550.c >>> @@ -1221,6 +1221,9 @@ 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 >= nr_irqs) >>> + uart->irq = 0; >> >> Don't you mean nr_irqs_gsi here? Also (nit) please add the missing blanks >> immediately inside the parentheses. > > If we use nr_irqs_gsi we will need to make the check x86 only AFAICT. Down the road (when Arm wants to select HAS_PCI) - yes. Not necessarily right away. After all Arm wants to have an equivalent check here then, not merely checking against nr_irqs instead. So putting a conditional here right away would hide the need for putting in place an Arm-specific alternative. Jan ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/2] ns16550: reject IRQ above nr_irqs 2022-03-10 16:08 ` Jan Beulich @ 2022-03-10 16:12 ` Roger Pau Monné 2022-03-10 16:21 ` Julien Grall 0 siblings, 1 reply; 18+ messages in thread From: Roger Pau Monné @ 2022-03-10 16:12 UTC (permalink / raw) To: Jan Beulich Cc: Marek Marczykowski-Górecki, Andrew Cooper, George Dunlap, Julien Grall, Stefano Stabellini, Wei Liu, xen-devel On Thu, Mar 10, 2022 at 05:08:07PM +0100, Jan Beulich wrote: > On 10.03.2022 16:47, Roger Pau Monné wrote: > > On Thu, Mar 10, 2022 at 04:23:00PM +0100, Jan Beulich wrote: > >> On 10.03.2022 15:34, Marek Marczykowski-Górecki wrote: > >>> --- a/xen/drivers/char/ns16550.c > >>> +++ b/xen/drivers/char/ns16550.c > >>> @@ -1221,6 +1221,9 @@ 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 >= nr_irqs) > >>> + uart->irq = 0; > >> > >> Don't you mean nr_irqs_gsi here? Also (nit) please add the missing blanks > >> immediately inside the parentheses. > > > > If we use nr_irqs_gsi we will need to make the check x86 only AFAICT. > > Down the road (when Arm wants to select HAS_PCI) - yes. Not necessarily > right away. After all Arm wants to have an equivalent check here then, > not merely checking against nr_irqs instead. So putting a conditional > here right away would hide the need for putting in place an Arm-specific > alternative. Oh, I always forget Arm doesn't have CONFIG_HAS_PCI enabled just yet. Roger. ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/2] ns16550: reject IRQ above nr_irqs 2022-03-10 16:12 ` Roger Pau Monné @ 2022-03-10 16:21 ` Julien Grall 2022-03-10 16:34 ` Jan Beulich 2022-03-10 16:37 ` Marek Marczykowski-Górecki 0 siblings, 2 replies; 18+ messages in thread From: Julien Grall @ 2022-03-10 16:21 UTC (permalink / raw) To: Roger Pau Monné, Jan Beulich Cc: Marek Marczykowski-Górecki, Andrew Cooper, George Dunlap, Stefano Stabellini, Wei Liu, xen-devel Hi, On 10/03/2022 16:12, Roger Pau Monné wrote: > On Thu, Mar 10, 2022 at 05:08:07PM +0100, Jan Beulich wrote: >> On 10.03.2022 16:47, Roger Pau Monné wrote: >>> On Thu, Mar 10, 2022 at 04:23:00PM +0100, Jan Beulich wrote: >>>> On 10.03.2022 15:34, Marek Marczykowski-Górecki wrote: >>>>> --- a/xen/drivers/char/ns16550.c >>>>> +++ b/xen/drivers/char/ns16550.c >>>>> @@ -1221,6 +1221,9 @@ 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 >= nr_irqs) >>>>> + uart->irq = 0; >>>> >>>> Don't you mean nr_irqs_gsi here? Also (nit) please add the missing blanks >>>> immediately inside the parentheses. >>> >>> If we use nr_irqs_gsi we will need to make the check x86 only AFAICT. >> >> Down the road (when Arm wants to select HAS_PCI) - yes. Not necessarily >> right away. After all Arm wants to have an equivalent check here then, >> not merely checking against nr_irqs instead. So putting a conditional >> here right away would hide the need for putting in place an Arm-specific >> alternative. > > Oh, I always forget Arm doesn't have CONFIG_HAS_PCI enabled just yet. The PCI code in ns16550.c is gated by CONFIG_HAS_PCI and CONFIG_X86. I am not sure we will ever see a support for PCI UART card in Xen on Arm. However, if it evers happens then neither nr_irqs or nr_irqs_gsi would help here because from the interrupt controller PoV 0xff may be a valid (GICv2 supports up to 1024 interrupts). Is there any reason we can't explicitely check 0xff? Cheers, -- Julien Grall ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/2] ns16550: reject IRQ above nr_irqs 2022-03-10 16:21 ` Julien Grall @ 2022-03-10 16:34 ` Jan Beulich 2022-03-10 16:37 ` Marek Marczykowski-Górecki 1 sibling, 0 replies; 18+ messages in thread From: Jan Beulich @ 2022-03-10 16:34 UTC (permalink / raw) To: Julien Grall Cc: Marek Marczykowski-Górecki, Andrew Cooper, George Dunlap, Stefano Stabellini, Wei Liu, xen-devel, Roger Pau Monné On 10.03.2022 17:21, Julien Grall wrote: > On 10/03/2022 16:12, Roger Pau Monné wrote: >> On Thu, Mar 10, 2022 at 05:08:07PM +0100, Jan Beulich wrote: >>> On 10.03.2022 16:47, Roger Pau Monné wrote: >>>> On Thu, Mar 10, 2022 at 04:23:00PM +0100, Jan Beulich wrote: >>>>> On 10.03.2022 15:34, Marek Marczykowski-Górecki wrote: >>>>>> --- a/xen/drivers/char/ns16550.c >>>>>> +++ b/xen/drivers/char/ns16550.c >>>>>> @@ -1221,6 +1221,9 @@ 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 >= nr_irqs) >>>>>> + uart->irq = 0; >>>>> >>>>> Don't you mean nr_irqs_gsi here? Also (nit) please add the missing blanks >>>>> immediately inside the parentheses. >>>> >>>> If we use nr_irqs_gsi we will need to make the check x86 only AFAICT. >>> >>> Down the road (when Arm wants to select HAS_PCI) - yes. Not necessarily >>> right away. After all Arm wants to have an equivalent check here then, >>> not merely checking against nr_irqs instead. So putting a conditional >>> here right away would hide the need for putting in place an Arm-specific >>> alternative. >> >> Oh, I always forget Arm doesn't have CONFIG_HAS_PCI enabled just yet. > The PCI code in ns16550.c is gated by CONFIG_HAS_PCI and CONFIG_X86. I > am not sure we will ever see a support for PCI UART card in Xen on Arm. > > However, if it evers happens then neither nr_irqs or nr_irqs_gsi would > help here because from the interrupt controller PoV 0xff may be a valid > (GICv2 supports up to 1024 interrupts). > > Is there any reason we can't explicitely check 0xff? FF isn't called out by the spec as having a special meaning. Unlike I think Andrew did say somewhere, FF does not indicate "none". That's instead indicated by PIN returning zero. That's my reading of the spec, at least. Jan ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/2] ns16550: reject IRQ above nr_irqs 2022-03-10 16:21 ` Julien Grall 2022-03-10 16:34 ` Jan Beulich @ 2022-03-10 16:37 ` Marek Marczykowski-Górecki 2022-03-11 10:23 ` Julien Grall 1 sibling, 1 reply; 18+ messages in thread From: Marek Marczykowski-Górecki @ 2022-03-10 16:37 UTC (permalink / raw) To: Julien Grall Cc: Roger Pau Monné, Jan Beulich, Andrew Cooper, George Dunlap, Stefano Stabellini, Wei Liu, xen-devel [-- Attachment #1: Type: text/plain, Size: 2160 bytes --] On Thu, Mar 10, 2022 at 04:21:50PM +0000, Julien Grall wrote: > Hi, > > On 10/03/2022 16:12, Roger Pau Monné wrote: > > On Thu, Mar 10, 2022 at 05:08:07PM +0100, Jan Beulich wrote: > > > On 10.03.2022 16:47, Roger Pau Monné wrote: > > > > On Thu, Mar 10, 2022 at 04:23:00PM +0100, Jan Beulich wrote: > > > > > On 10.03.2022 15:34, Marek Marczykowski-Górecki wrote: > > > > > > --- a/xen/drivers/char/ns16550.c > > > > > > +++ b/xen/drivers/char/ns16550.c > > > > > > @@ -1221,6 +1221,9 @@ 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 >= nr_irqs) > > > > > > + uart->irq = 0; > > > > > > > > > > Don't you mean nr_irqs_gsi here? Also (nit) please add the missing blanks > > > > > immediately inside the parentheses. > > > > > > > > If we use nr_irqs_gsi we will need to make the check x86 only AFAICT. > > > > > > Down the road (when Arm wants to select HAS_PCI) - yes. Not necessarily > > > right away. After all Arm wants to have an equivalent check here then, > > > not merely checking against nr_irqs instead. So putting a conditional > > > here right away would hide the need for putting in place an Arm-specific > > > alternative. > > > > Oh, I always forget Arm doesn't have CONFIG_HAS_PCI enabled just yet. > The PCI code in ns16550.c is gated by CONFIG_HAS_PCI and CONFIG_X86. I am > not sure we will ever see a support for PCI UART card in Xen on Arm. > > However, if it evers happens then neither nr_irqs or nr_irqs_gsi would help > here because from the interrupt controller PoV 0xff may be a valid (GICv2 > supports up to 1024 interrupts). > > Is there any reason we can't explicitely check 0xff? That's what my v0.1 did, but Roger suggested nr_irqs. And I agree, because the value is later used (on x86) to access irq_desc array (via irq_to_desc), which has nr_irqs size. -- Best Regards, Marek Marczykowski-Górecki Invisible Things Lab [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/2] ns16550: reject IRQ above nr_irqs 2022-03-10 16:37 ` Marek Marczykowski-Górecki @ 2022-03-11 10:23 ` Julien Grall 2022-03-11 10:52 ` Marek Marczykowski-Górecki 0 siblings, 1 reply; 18+ messages in thread From: Julien Grall @ 2022-03-11 10:23 UTC (permalink / raw) To: Marek Marczykowski-Górecki Cc: Roger Pau Monné, Jan Beulich, Andrew Cooper, George Dunlap, Stefano Stabellini, Wei Liu, xen-devel Hi Marek, On 10/03/2022 16:37, Marek Marczykowski-Górecki wrote: > On Thu, Mar 10, 2022 at 04:21:50PM +0000, Julien Grall wrote: >> Hi, >> >> On 10/03/2022 16:12, Roger Pau Monné wrote: >>> On Thu, Mar 10, 2022 at 05:08:07PM +0100, Jan Beulich wrote: >>>> On 10.03.2022 16:47, Roger Pau Monné wrote: >>>>> On Thu, Mar 10, 2022 at 04:23:00PM +0100, Jan Beulich wrote: >>>>>> On 10.03.2022 15:34, Marek Marczykowski-Górecki wrote: >>>>>>> --- a/xen/drivers/char/ns16550.c >>>>>>> +++ b/xen/drivers/char/ns16550.c >>>>>>> @@ -1221,6 +1221,9 @@ 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 >= nr_irqs) >>>>>>> + uart->irq = 0; >>>>>> >>>>>> Don't you mean nr_irqs_gsi here? Also (nit) please add the missing blanks >>>>>> immediately inside the parentheses. >>>>> >>>>> If we use nr_irqs_gsi we will need to make the check x86 only AFAICT. >>>> >>>> Down the road (when Arm wants to select HAS_PCI) - yes. Not necessarily >>>> right away. After all Arm wants to have an equivalent check here then, >>>> not merely checking against nr_irqs instead. So putting a conditional >>>> here right away would hide the need for putting in place an Arm-specific >>>> alternative. >>> >>> Oh, I always forget Arm doesn't have CONFIG_HAS_PCI enabled just yet. >> The PCI code in ns16550.c is gated by CONFIG_HAS_PCI and CONFIG_X86. I am >> not sure we will ever see a support for PCI UART card in Xen on Arm. >> >> However, if it evers happens then neither nr_irqs or nr_irqs_gsi would help >> here because from the interrupt controller PoV 0xff may be a valid (GICv2 >> supports up to 1024 interrupts). >> >> Is there any reason we can't explicitely check 0xff? > > That's what my v0.1 did, but Roger suggested nr_irqs. And I agree, > because the value is later used (on x86) to access irq_desc array (via > irq_to_desc), which has nr_irqs size. I think it would be better if that check is closer to who access the irq_desc. This would be helpful for other users (I am sure this is not the only potential place where the IRQ may be wrong). So how about moving it in setup_irq()? Cheers, -- Julien Grall ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/2] ns16550: reject IRQ above nr_irqs 2022-03-11 10:23 ` Julien Grall @ 2022-03-11 10:52 ` Marek Marczykowski-Górecki 2022-03-11 11:15 ` Julien Grall 0 siblings, 1 reply; 18+ messages in thread From: Marek Marczykowski-Górecki @ 2022-03-11 10:52 UTC (permalink / raw) To: Julien Grall Cc: Roger Pau Monné, Jan Beulich, Andrew Cooper, George Dunlap, Stefano Stabellini, Wei Liu, xen-devel [-- Attachment #1: Type: text/plain, Size: 3026 bytes --] On Fri, Mar 11, 2022 at 10:23:03AM +0000, Julien Grall wrote: > Hi Marek, > > On 10/03/2022 16:37, Marek Marczykowski-Górecki wrote: > > On Thu, Mar 10, 2022 at 04:21:50PM +0000, Julien Grall wrote: > > > Hi, > > > > > > On 10/03/2022 16:12, Roger Pau Monné wrote: > > > > On Thu, Mar 10, 2022 at 05:08:07PM +0100, Jan Beulich wrote: > > > > > On 10.03.2022 16:47, Roger Pau Monné wrote: > > > > > > On Thu, Mar 10, 2022 at 04:23:00PM +0100, Jan Beulich wrote: > > > > > > > On 10.03.2022 15:34, Marek Marczykowski-Górecki wrote: > > > > > > > > --- a/xen/drivers/char/ns16550.c > > > > > > > > +++ b/xen/drivers/char/ns16550.c > > > > > > > > @@ -1221,6 +1221,9 @@ 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 >= nr_irqs) > > > > > > > > + uart->irq = 0; > > > > > > > > > > > > > > Don't you mean nr_irqs_gsi here? Also (nit) please add the missing blanks > > > > > > > immediately inside the parentheses. > > > > > > > > > > > > If we use nr_irqs_gsi we will need to make the check x86 only AFAICT. > > > > > > > > > > Down the road (when Arm wants to select HAS_PCI) - yes. Not necessarily > > > > > right away. After all Arm wants to have an equivalent check here then, > > > > > not merely checking against nr_irqs instead. So putting a conditional > > > > > here right away would hide the need for putting in place an Arm-specific > > > > > alternative. > > > > > > > > Oh, I always forget Arm doesn't have CONFIG_HAS_PCI enabled just yet. > > > The PCI code in ns16550.c is gated by CONFIG_HAS_PCI and CONFIG_X86. I am > > > not sure we will ever see a support for PCI UART card in Xen on Arm. > > > > > > However, if it evers happens then neither nr_irqs or nr_irqs_gsi would help > > > here because from the interrupt controller PoV 0xff may be a valid (GICv2 > > > supports up to 1024 interrupts). > > > > > > Is there any reason we can't explicitely check 0xff? > > > > That's what my v0.1 did, but Roger suggested nr_irqs. And I agree, > > because the value is later used (on x86) to access irq_desc array (via > > irq_to_desc), which has nr_irqs size. > > I think it would be better if that check is closer to who access the > irq_desc. This would be helpful for other users (I am sure this is not the > only potential place where the IRQ may be wrong). So how about moving it in > setup_irq()? I don't like it, it's rather fragile approach (at least in the current code base, without some refactor). There are a bunch of places using uart->irq (even if just checking if its -1 or 0) before setup_irq() call. This includes smp_intr_init(), which is what was the first thing crashing with 0xff set there. -- Best Regards, Marek Marczykowski-Górecki Invisible Things Lab [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/2] ns16550: reject IRQ above nr_irqs 2022-03-11 10:52 ` Marek Marczykowski-Górecki @ 2022-03-11 11:15 ` Julien Grall 2022-03-11 15:04 ` Roger Pau Monné 0 siblings, 1 reply; 18+ messages in thread From: Julien Grall @ 2022-03-11 11:15 UTC (permalink / raw) To: Marek Marczykowski-Górecki Cc: Roger Pau Monné, Jan Beulich, Andrew Cooper, George Dunlap, Stefano Stabellini, Wei Liu, xen-devel Hi, On 11/03/2022 10:52, Marek Marczykowski-Górecki wrote: > On Fri, Mar 11, 2022 at 10:23:03AM +0000, Julien Grall wrote: >> Hi Marek, >> >> On 10/03/2022 16:37, Marek Marczykowski-Górecki wrote: >>> On Thu, Mar 10, 2022 at 04:21:50PM +0000, Julien Grall wrote: >>>> Hi, >>>> >>>> On 10/03/2022 16:12, Roger Pau Monné wrote: >>>>> On Thu, Mar 10, 2022 at 05:08:07PM +0100, Jan Beulich wrote: >>>>>> On 10.03.2022 16:47, Roger Pau Monné wrote: >>>>>>> On Thu, Mar 10, 2022 at 04:23:00PM +0100, Jan Beulich wrote: >>>>>>>> On 10.03.2022 15:34, Marek Marczykowski-Górecki wrote: >>>>>>>>> --- a/xen/drivers/char/ns16550.c >>>>>>>>> +++ b/xen/drivers/char/ns16550.c >>>>>>>>> @@ -1221,6 +1221,9 @@ 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 >= nr_irqs) >>>>>>>>> + uart->irq = 0; >>>>>>>> >>>>>>>> Don't you mean nr_irqs_gsi here? Also (nit) please add the missing blanks >>>>>>>> immediately inside the parentheses. >>>>>>> >>>>>>> If we use nr_irqs_gsi we will need to make the check x86 only AFAICT. >>>>>> >>>>>> Down the road (when Arm wants to select HAS_PCI) - yes. Not necessarily >>>>>> right away. After all Arm wants to have an equivalent check here then, >>>>>> not merely checking against nr_irqs instead. So putting a conditional >>>>>> here right away would hide the need for putting in place an Arm-specific >>>>>> alternative. >>>>> >>>>> Oh, I always forget Arm doesn't have CONFIG_HAS_PCI enabled just yet. >>>> The PCI code in ns16550.c is gated by CONFIG_HAS_PCI and CONFIG_X86. I am >>>> not sure we will ever see a support for PCI UART card in Xen on Arm. >>>> >>>> However, if it evers happens then neither nr_irqs or nr_irqs_gsi would help >>>> here because from the interrupt controller PoV 0xff may be a valid (GICv2 >>>> supports up to 1024 interrupts). >>>> >>>> Is there any reason we can't explicitely check 0xff? >>> >>> That's what my v0.1 did, but Roger suggested nr_irqs. And I agree, >>> because the value is later used (on x86) to access irq_desc array (via >>> irq_to_desc), which has nr_irqs size. >> >> I think it would be better if that check is closer to who access the >> irq_desc. This would be helpful for other users (I am sure this is not the >> only potential place where the IRQ may be wrong). So how about moving it in >> setup_irq()? > > I don't like it, it's rather fragile approach (at least in the current > code base, without some refactor). There are a bunch of places using > uart->irq (even if just checking if its -1 or 0) before setup_irq() > call. This includes smp_intr_init(), which is what was the first thing > crashing with 0xff set there. Even if the code is gated with !CONFIG_X86, it sounds wrong to me to have such check in an UART driver. It only prevents us to do an out-of-bound access. There are no guarantee the interrupt will be usable (on Arm 256 is a valid interrupt). As I wrote, I don't expect the code to be used any time soon on Arm. So I am not going to argue too much on the approach. However, we should at least clarify in the commit message/title that this is x86 and pci only. Cheers, -- Julien Grall ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/2] ns16550: reject IRQ above nr_irqs 2022-03-11 11:15 ` Julien Grall @ 2022-03-11 15:04 ` Roger Pau Monné 2022-03-11 15:19 ` Julien Grall 0 siblings, 1 reply; 18+ messages in thread From: Roger Pau Monné @ 2022-03-11 15:04 UTC (permalink / raw) To: Julien Grall Cc: Marek Marczykowski-Górecki, Jan Beulich, Andrew Cooper, George Dunlap, Stefano Stabellini, Wei Liu, xen-devel On Fri, Mar 11, 2022 at 11:15:13AM +0000, Julien Grall wrote: > Hi, > > On 11/03/2022 10:52, Marek Marczykowski-Górecki wrote: > > On Fri, Mar 11, 2022 at 10:23:03AM +0000, Julien Grall wrote: > > > Hi Marek, > > > > > > On 10/03/2022 16:37, Marek Marczykowski-Górecki wrote: > > > > On Thu, Mar 10, 2022 at 04:21:50PM +0000, Julien Grall wrote: > > > > > Hi, > > > > > > > > > > On 10/03/2022 16:12, Roger Pau Monné wrote: > > > > > > On Thu, Mar 10, 2022 at 05:08:07PM +0100, Jan Beulich wrote: > > > > > > > On 10.03.2022 16:47, Roger Pau Monné wrote: > > > > > > > > On Thu, Mar 10, 2022 at 04:23:00PM +0100, Jan Beulich wrote: > > > > > > > > > On 10.03.2022 15:34, Marek Marczykowski-Górecki wrote: > > > > > > > > > > --- a/xen/drivers/char/ns16550.c > > > > > > > > > > +++ b/xen/drivers/char/ns16550.c > > > > > > > > > > @@ -1221,6 +1221,9 @@ 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 >= nr_irqs) > > > > > > > > > > + uart->irq = 0; > > > > > > > > > > > > > > > > > > Don't you mean nr_irqs_gsi here? Also (nit) please add the missing blanks > > > > > > > > > immediately inside the parentheses. > > > > > > > > > > > > > > > > If we use nr_irqs_gsi we will need to make the check x86 only AFAICT. > > > > > > > > > > > > > > Down the road (when Arm wants to select HAS_PCI) - yes. Not necessarily > > > > > > > right away. After all Arm wants to have an equivalent check here then, > > > > > > > not merely checking against nr_irqs instead. So putting a conditional > > > > > > > here right away would hide the need for putting in place an Arm-specific > > > > > > > alternative. > > > > > > > > > > > > Oh, I always forget Arm doesn't have CONFIG_HAS_PCI enabled just yet. > > > > > The PCI code in ns16550.c is gated by CONFIG_HAS_PCI and CONFIG_X86. I am > > > > > not sure we will ever see a support for PCI UART card in Xen on Arm. > > > > > > > > > > However, if it evers happens then neither nr_irqs or nr_irqs_gsi would help > > > > > here because from the interrupt controller PoV 0xff may be a valid (GICv2 > > > > > supports up to 1024 interrupts). > > > > > > > > > > Is there any reason we can't explicitely check 0xff? > > > > > > > > That's what my v0.1 did, but Roger suggested nr_irqs. And I agree, > > > > because the value is later used (on x86) to access irq_desc array (via > > > > irq_to_desc), which has nr_irqs size. > > > > > > I think it would be better if that check is closer to who access the > > > irq_desc. This would be helpful for other users (I am sure this is not the > > > only potential place where the IRQ may be wrong). So how about moving it in > > > setup_irq()? > > > > I don't like it, it's rather fragile approach (at least in the current > > code base, without some refactor). There are a bunch of places using > > uart->irq (even if just checking if its -1 or 0) before setup_irq() > > call. This includes smp_intr_init(), which is what was the first thing > > crashing with 0xff set there. > > Even if the code is gated with !CONFIG_X86, it sounds wrong to me to have > such check in an UART driver. It only prevents us to do an out-of-bound > access. There are no guarantee the interrupt will be usable (on Arm 256 is a > valid interrupt). It's a sanity check of a value we get from the hardware, I don't think it's that strange. It's mostly similar to doing sanity checks of input values we get from users. Could you add an error message to note that an incorrect irq to use was reported by hardware? Thanks, Roger. ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/2] ns16550: reject IRQ above nr_irqs 2022-03-11 15:04 ` Roger Pau Monné @ 2022-03-11 15:19 ` Julien Grall 2022-03-11 15:43 ` Roger Pau Monné 0 siblings, 1 reply; 18+ messages in thread From: Julien Grall @ 2022-03-11 15:19 UTC (permalink / raw) To: Roger Pau Monné Cc: Marek Marczykowski-Górecki, Jan Beulich, Andrew Cooper, George Dunlap, Stefano Stabellini, Wei Liu, xen-devel Hi Roger, On 11/03/2022 15:04, Roger Pau Monné wrote: > On Fri, Mar 11, 2022 at 11:15:13AM +0000, Julien Grall wrote: >> Hi, >> >> On 11/03/2022 10:52, Marek Marczykowski-Górecki wrote: >>> On Fri, Mar 11, 2022 at 10:23:03AM +0000, Julien Grall wrote: >>>> Hi Marek, >>>> >>>> On 10/03/2022 16:37, Marek Marczykowski-Górecki wrote: >>>>> On Thu, Mar 10, 2022 at 04:21:50PM +0000, Julien Grall wrote: >>>>>> Hi, >>>>>> >>>>>> On 10/03/2022 16:12, Roger Pau Monné wrote: >>>>>>> On Thu, Mar 10, 2022 at 05:08:07PM +0100, Jan Beulich wrote: >>>>>>>> On 10.03.2022 16:47, Roger Pau Monné wrote: >>>>>>>>> On Thu, Mar 10, 2022 at 04:23:00PM +0100, Jan Beulich wrote: >>>>>>>>>> On 10.03.2022 15:34, Marek Marczykowski-Górecki wrote: >>>>>>>>>>> --- a/xen/drivers/char/ns16550.c >>>>>>>>>>> +++ b/xen/drivers/char/ns16550.c >>>>>>>>>>> @@ -1221,6 +1221,9 @@ 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 >= nr_irqs) >>>>>>>>>>> + uart->irq = 0; >>>>>>>>>> >>>>>>>>>> Don't you mean nr_irqs_gsi here? Also (nit) please add the missing blanks >>>>>>>>>> immediately inside the parentheses. >>>>>>>>> >>>>>>>>> If we use nr_irqs_gsi we will need to make the check x86 only AFAICT. >>>>>>>> >>>>>>>> Down the road (when Arm wants to select HAS_PCI) - yes. Not necessarily >>>>>>>> right away. After all Arm wants to have an equivalent check here then, >>>>>>>> not merely checking against nr_irqs instead. So putting a conditional >>>>>>>> here right away would hide the need for putting in place an Arm-specific >>>>>>>> alternative. >>>>>>> >>>>>>> Oh, I always forget Arm doesn't have CONFIG_HAS_PCI enabled just yet. >>>>>> The PCI code in ns16550.c is gated by CONFIG_HAS_PCI and CONFIG_X86. I am >>>>>> not sure we will ever see a support for PCI UART card in Xen on Arm. >>>>>> >>>>>> However, if it evers happens then neither nr_irqs or nr_irqs_gsi would help >>>>>> here because from the interrupt controller PoV 0xff may be a valid (GICv2 >>>>>> supports up to 1024 interrupts). >>>>>> >>>>>> Is there any reason we can't explicitely check 0xff? >>>>> >>>>> That's what my v0.1 did, but Roger suggested nr_irqs. And I agree, >>>>> because the value is later used (on x86) to access irq_desc array (via >>>>> irq_to_desc), which has nr_irqs size. >>>> >>>> I think it would be better if that check is closer to who access the >>>> irq_desc. This would be helpful for other users (I am sure this is not the >>>> only potential place where the IRQ may be wrong). So how about moving it in >>>> setup_irq()? >>> >>> I don't like it, it's rather fragile approach (at least in the current >>> code base, without some refactor). There are a bunch of places using >>> uart->irq (even if just checking if its -1 or 0) before setup_irq() >>> call. This includes smp_intr_init(), which is what was the first thing >>> crashing with 0xff set there. >> >> Even if the code is gated with !CONFIG_X86, it sounds wrong to me to have >> such check in an UART driver. It only prevents us to do an out-of-bound >> access. There are no guarantee the interrupt will be usable (on Arm 256 is a >> valid interrupt). > > It's a sanity check of a value we get from the hardware, I don't think > it's that strange. I think it is strange because the behavior would be different between the architectures. On x86, we would reject the interrupt and poll. On Arm, we would accept the interrupt and the UART would be unusable. > It's mostly similar to doing sanity checks of input > values we get from users. I am a bit concerned that we are using an unrelated check (see above why) to catch the "misconfiguration". I think it would be good to understand why the interrupt line is 0xff and properly fix it. Is it a misconfiguration? Is it intended to indicate "no IRQ"? Can we actually trust the value for the Intel LPSS? Cheers, -- Julien Grall ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/2] ns16550: reject IRQ above nr_irqs 2022-03-11 15:19 ` Julien Grall @ 2022-03-11 15:43 ` Roger Pau Monné 2022-03-11 16:32 ` Marek Marczykowski-Górecki 0 siblings, 1 reply; 18+ messages in thread From: Roger Pau Monné @ 2022-03-11 15:43 UTC (permalink / raw) To: Julien Grall Cc: Marek Marczykowski-Górecki, Jan Beulich, Andrew Cooper, George Dunlap, Stefano Stabellini, Wei Liu, xen-devel On Fri, Mar 11, 2022 at 03:19:22PM +0000, Julien Grall wrote: > Hi Roger, > > On 11/03/2022 15:04, Roger Pau Monné wrote: > > On Fri, Mar 11, 2022 at 11:15:13AM +0000, Julien Grall wrote: > > > Hi, > > > > > > On 11/03/2022 10:52, Marek Marczykowski-Górecki wrote: > > > > On Fri, Mar 11, 2022 at 10:23:03AM +0000, Julien Grall wrote: > > > > > Hi Marek, > > > > > > > > > > On 10/03/2022 16:37, Marek Marczykowski-Górecki wrote: > > > > > > On Thu, Mar 10, 2022 at 04:21:50PM +0000, Julien Grall wrote: > > > > > > > Hi, > > > > > > > > > > > > > > On 10/03/2022 16:12, Roger Pau Monné wrote: > > > > > > > > On Thu, Mar 10, 2022 at 05:08:07PM +0100, Jan Beulich wrote: > > > > > > > > > On 10.03.2022 16:47, Roger Pau Monné wrote: > > > > > > > > > > On Thu, Mar 10, 2022 at 04:23:00PM +0100, Jan Beulich wrote: > > > > > > > > > > > On 10.03.2022 15:34, Marek Marczykowski-Górecki wrote: > > > > > > > > > > > > --- a/xen/drivers/char/ns16550.c > > > > > > > > > > > > +++ b/xen/drivers/char/ns16550.c > > > > > > > > > > > > @@ -1221,6 +1221,9 @@ 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 >= nr_irqs) > > > > > > > > > > > > + uart->irq = 0; > > > > > > > > > > > > > > > > > > > > > > Don't you mean nr_irqs_gsi here? Also (nit) please add the missing blanks > > > > > > > > > > > immediately inside the parentheses. > > > > > > > > > > > > > > > > > > > > If we use nr_irqs_gsi we will need to make the check x86 only AFAICT. > > > > > > > > > > > > > > > > > > Down the road (when Arm wants to select HAS_PCI) - yes. Not necessarily > > > > > > > > > right away. After all Arm wants to have an equivalent check here then, > > > > > > > > > not merely checking against nr_irqs instead. So putting a conditional > > > > > > > > > here right away would hide the need for putting in place an Arm-specific > > > > > > > > > alternative. > > > > > > > > > > > > > > > > Oh, I always forget Arm doesn't have CONFIG_HAS_PCI enabled just yet. > > > > > > > The PCI code in ns16550.c is gated by CONFIG_HAS_PCI and CONFIG_X86. I am > > > > > > > not sure we will ever see a support for PCI UART card in Xen on Arm. > > > > > > > > > > > > > > However, if it evers happens then neither nr_irqs or nr_irqs_gsi would help > > > > > > > here because from the interrupt controller PoV 0xff may be a valid (GICv2 > > > > > > > supports up to 1024 interrupts). > > > > > > > > > > > > > > Is there any reason we can't explicitely check 0xff? > > > > > > > > > > > > That's what my v0.1 did, but Roger suggested nr_irqs. And I agree, > > > > > > because the value is later used (on x86) to access irq_desc array (via > > > > > > irq_to_desc), which has nr_irqs size. > > > > > > > > > > I think it would be better if that check is closer to who access the > > > > > irq_desc. This would be helpful for other users (I am sure this is not the > > > > > only potential place where the IRQ may be wrong). So how about moving it in > > > > > setup_irq()? > > > > > > > > I don't like it, it's rather fragile approach (at least in the current > > > > code base, without some refactor). There are a bunch of places using > > > > uart->irq (even if just checking if its -1 or 0) before setup_irq() > > > > call. This includes smp_intr_init(), which is what was the first thing > > > > crashing with 0xff set there. > > > > > > Even if the code is gated with !CONFIG_X86, it sounds wrong to me to have > > > such check in an UART driver. It only prevents us to do an out-of-bound > > > access. There are no guarantee the interrupt will be usable (on Arm 256 is a > > > valid interrupt). > > > > It's a sanity check of a value we get from the hardware, I don't think > > it's that strange. > > I think it is strange because the behavior would be different between the > architectures. On x86, we would reject the interrupt and poll. On Arm, we > would accept the interrupt and the UART would be unusable. > > > It's mostly similar to doing sanity checks of input > > values we get from users. > I am a bit concerned that we are using an unrelated check (see above > why) to catch the "misconfiguration". > > I think it would be good to understand why the interrupt line is 0xff and > properly fix it. Is it a misconfiguration? Is it intended to indicate "no > IRQ"? Can we actually trust the value for the Intel LPSS? Sorry, maybe this wasn't clear. My suggestion was not to just do this fix and call it done, but rather to add this check for sanity and then figure out how to properly handle this specific device. So adding the check here is not a workaround in order to support Intel LPSS, but rather a generic fix to ns16550 for an issue which happens to be triggered by Intel LPSS. We would still need to figure how to handle that specific Line value. I haven't looked at the docs, will do on Monday hopefully. Thanks, Roger. ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/2] ns16550: reject IRQ above nr_irqs 2022-03-11 15:43 ` Roger Pau Monné @ 2022-03-11 16:32 ` Marek Marczykowski-Górecki 2022-03-15 10:02 ` Roger Pau Monné 0 siblings, 1 reply; 18+ messages in thread From: Marek Marczykowski-Górecki @ 2022-03-11 16:32 UTC (permalink / raw) To: Roger Pau Monné Cc: Julien Grall, Jan Beulich, Andrew Cooper, George Dunlap, Stefano Stabellini, Wei Liu, xen-devel [-- Attachment #1: Type: text/plain, Size: 907 bytes --] On Fri, Mar 11, 2022 at 04:43:22PM +0100, Roger Pau Monné wrote: > Sorry, maybe this wasn't clear. My suggestion was not to just do this > fix and call it done, but rather to add this check for sanity and then > figure out how to properly handle this specific device. Yes, I agree. Having it properly configured is preferred. Linux manages to do that, but I'm not sure how exactly. But ... > So adding the check here is not a workaround in order to support Intel > LPSS, but rather a generic fix to ns16550 for an issue which happens > to be triggered by Intel LPSS. We would still need to figure how to > handle that specific Line value. I haven't looked at the docs, will do > on Monday hopefully. ... having fallback to a poll mode is still better than crashing the hypervisor or not using such console at all. -- Best Regards, Marek Marczykowski-Górecki Invisible Things Lab [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH 1/2] ns16550: reject IRQ above nr_irqs 2022-03-11 16:32 ` Marek Marczykowski-Górecki @ 2022-03-15 10:02 ` Roger Pau Monné 0 siblings, 0 replies; 18+ messages in thread From: Roger Pau Monné @ 2022-03-15 10:02 UTC (permalink / raw) To: Marek Marczykowski-Górecki Cc: Julien Grall, Jan Beulich, Andrew Cooper, George Dunlap, Stefano Stabellini, Wei Liu, xen-devel On Fri, Mar 11, 2022 at 05:32:45PM +0100, Marek Marczykowski-Górecki wrote: > On Fri, Mar 11, 2022 at 04:43:22PM +0100, Roger Pau Monné wrote: > > Sorry, maybe this wasn't clear. My suggestion was not to just do this > > fix and call it done, but rather to add this check for sanity and then > > figure out how to properly handle this specific device. > > Yes, I agree. Having it properly configured is preferred. Linux manages > to do that, but I'm not sure how exactly. But ... I think it might get the interrupt from ACPI data, which is likely out of scope for Xen. Can you take a look at ACPI data from the box and see whether the interrupt is reported there? (search for a _CRS method belonging to the LPSS device) Sadly the LPSS spec doesn't contain any help regarding the usage of 0xff in the Interrupt Line register. Out of curiosity, can you print what's in the Interrupt Pin register? (PCI_INTERRUPT_PIN) Thanks, Roger. ^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2022-03-15 10:03 UTC | newest] Thread overview: 18+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-03-10 14:34 [PATCH 1/2] ns16550: reject IRQ above nr_irqs Marek Marczykowski-Górecki 2022-03-10 14:34 ` [PATCH 2/2] ns16550: Add support for Intel LPSS UART Marek Marczykowski-Górecki 2022-03-15 9:04 ` Jan Beulich 2022-03-10 15:23 ` [PATCH 1/2] ns16550: reject IRQ above nr_irqs Jan Beulich 2022-03-10 15:47 ` Roger Pau Monné 2022-03-10 16:08 ` Jan Beulich 2022-03-10 16:12 ` Roger Pau Monné 2022-03-10 16:21 ` Julien Grall 2022-03-10 16:34 ` Jan Beulich 2022-03-10 16:37 ` Marek Marczykowski-Górecki 2022-03-11 10:23 ` Julien Grall 2022-03-11 10:52 ` Marek Marczykowski-Górecki 2022-03-11 11:15 ` Julien Grall 2022-03-11 15:04 ` Roger Pau Monné 2022-03-11 15:19 ` Julien Grall 2022-03-11 15:43 ` Roger Pau Monné 2022-03-11 16:32 ` Marek Marczykowski-Górecki 2022-03-15 10:02 ` Roger Pau Monné
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.