Re: [PATCH v1 1/3] irqchip/gic: enable irq target all

2020-12-02 Thread Thomas Gleixner
Hanks, On Tue, Dec 01 2020 at 21:54, Hanks Chen wrote: > On Fri, 2020-11-27 at 18:11 +, Marc Zyngier wrote: >> On 2020-11-27 14:15, Hanks Chen wrote: >> > + /* >> > + * No move required, if interrupt is 1 of N IRQ. >> > + * write current cpu_online_mask into affinity mask. >> > + */ >>

Re: [PATCH v1 1/3] irqchip/gic: enable irq target all

2020-12-01 Thread Hanks Chen
Hi Marc, Sorry for the late reply. On Fri, 2020-11-27 at 18:11 +, Marc Zyngier wrote: > On 2020-11-27 14:15, Hanks Chen wrote: > > Support for interrupt distribution design for SMP system solutions. > > As far as I know, we have been supporting interrupt distribution on > ARM SMP systems

Re: [PATCH v1 1/3] irqchip/gic: enable irq target all

2020-11-28 Thread Marc Zyngier
On 2020-11-27 18:56, Catalin Marinas wrote: On Fri, Nov 27, 2020 at 06:11:01PM +, Marc Zyngier wrote: On 2020-11-27 14:15, Hanks Chen wrote: > Support for interrupt distribution design for SMP system solutions. As far as I know, we have been supporting interrupt distribution on ARM SMP

Re: [PATCH v1 1/3] irqchip/gic: enable irq target all

2020-11-27 Thread Catalin Marinas
On Fri, Nov 27, 2020 at 06:11:01PM +, Marc Zyngier wrote: > On 2020-11-27 14:15, Hanks Chen wrote: > > Support for interrupt distribution design for SMP system solutions. > > As far as I know, we have been supporting interrupt distribution on > ARM SMP systems pretty well for the past...

Re: [PATCH v1 1/3] irqchip/gic: enable irq target all

2020-11-27 Thread Marc Zyngier
On 2020-11-27 14:15, Hanks Chen wrote: Support for interrupt distribution design for SMP system solutions. As far as I know, we have been supporting interrupt distribution on ARM SMP systems pretty well for the past... what... 15 years? I'm sure Russell can dig out an ARM926 SMP system that

[PATCH v1 1/3] irqchip/gic: enable irq target all

2020-11-27 Thread Hanks Chen
Support for interrupt distribution design for SMP system solutions. With this feature enabled ,the SPI interrupts would be routed to all the cores rather than boot core to achieve better load balance of interrupt handling. That is, interrupts might be serviced simultaneously on different CPUs.