lkml.org 
[lkml]   [2021]   [Mar]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] irqchip/irq-mst: Support polarity configuration
On 2021-03-08 03:01, Mark-PK Tsai wrote:
> From: Marc Zyngier <maz@kernel.org>
>
>> >
>> > Support irq polarity configuration and save and restore the config
>> > when system suspend and resume.
>> >
>> > Signed-off-by: Mark-PK Tsai <mark-pk.tsai@mediatek.com>
>> > ---
>> > drivers/irqchip/irq-mst-intc.c | 87 ++++++++++++++++++++++++++++++++--
>> > 1 file changed, 84 insertions(+), 3 deletions(-)
>> >
>> > diff --git a/drivers/irqchip/irq-mst-intc.c b/drivers/irqchip/irq-mst-intc.c
>> > index 143657b0cf28..979a4d55bcb1 100644
>> > --- a/drivers/irqchip/irq-mst-intc.c
>> > +++ b/drivers/irqchip/irq-mst-intc.c
>> > @@ -13,15 +13,25 @@
>> > #include <linux/of_irq.h>
>> > #include <linux/slab.h>
>> > #include <linux/spinlock.h>
>> > +#include <linux/syscore_ops.h>
>> >
>> > -#define INTC_MASK 0x0
>> > -#define INTC_EOI 0x20
>> > +#define INTC_MASK 0x0
>> > +#define INTC_REV_POLARITY 0x10
>> > +#define INTC_EOI 0x20
>> > +
>> > +#ifdef CONFIG_PM_SLEEP
>> > +static LIST_HEAD(mst_intc_list);
>> > +#endif
>> >
>> > struct mst_intc_chip_data {
>> > raw_spinlock_t lock;
>> > unsigned int irq_start, nr_irqs;
>> > void __iomem *base;
>> > bool no_eoi;
>> > +#ifdef CONFIG_PM_SLEEP
>> > + struct list_head entry;
>> > + u16 saved_polarity_conf[DIV_ROUND_UP(64, 16)];
>>
>> Where is this 64 coming from?
>
> The maximum number of interrupts a mst-intc supports is 64 in
> Mstar and Mediatek SoCs now.
> So I just use the maximum number of interrupts here.

Then please use a named constant instead of a magic number.

Thanks,

M.
--
Jazz is not dead. It just smells funny...

\
 
 \ /
  Last update: 2021-03-08 10:11    [W:0.064 / U:0.388 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site