linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] of: irq: Add a helper function for irq_of_parse_and_map
       [not found] <1532187494-2704-1-git-send-email-liu.xiang6@zte.com.cn>
@ 2018-07-23 15:28 ` Rob Herring
  2018-07-24 13:19   ` liuxiang
  0 siblings, 1 reply; 2+ messages in thread
From: Rob Herring @ 2018-07-23 15:28 UTC (permalink / raw)
  To: liu.xiang6; +Cc: Frank Rowand, devicetree, linux-kernel, liuxiang_1999

On Sat, Jul 21, 2018 at 9:38 AM Liu Xiang <liu.xiang6@zte.com.cn> wrote:
>
> Implement a resource managed irq_of_parse_and_map function.

That is obvious from the diff. Why do you need this?

Anything that is a platform device should use platform_get_irq. The
mapping is created by the core Also, of_irq_get() is preferred over
irq_of_parse_and_map() for new users as it has better error return
handling.

>
> Signed-off-by: Liu Xiang <liu.xiang6@zte.com.cn>
> ---
>  drivers/of/irq.c       | 38 ++++++++++++++++++++++++++++++++++++++
>  include/linux/of_irq.h |  7 +++++++
>  2 files changed, 45 insertions(+)
>
> diff --git a/drivers/of/irq.c b/drivers/of/irq.c
> index 02ad93a..947fe41 100644
> --- a/drivers/of/irq.c
> +++ b/drivers/of/irq.c
> @@ -45,6 +45,44 @@ unsigned int irq_of_parse_and_map(struct device_node *dev, int index)
>  }
>  EXPORT_SYMBOL_GPL(irq_of_parse_and_map);
>
> +static void devm_irq_dispose_mapping(struct device *dev, void *res)
> +{
> +       irq_dispose_mapping(*(unsigned int *)res);

We don't ref count creating mappings, so this would break for any shared irq.

Rob

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re:Re: [PATCH] of: irq: Add a helper function for irq_of_parse_and_map
  2018-07-23 15:28 ` [PATCH] of: irq: Add a helper function for irq_of_parse_and_map Rob Herring
@ 2018-07-24 13:19   ` liuxiang
  0 siblings, 0 replies; 2+ messages in thread
From: liuxiang @ 2018-07-24 13:19 UTC (permalink / raw)
  To: Rob Herring; +Cc: liu.xiang6, Frank Rowand, devicetree, linux-kernel


I found in probe function some drivers use irq_of_parse_and_map
and do not call irq_dispose_mapping in err path, while other drivers do.
So I think a resource managed irq_of_parse_and_map function can 
be better to finish this job.

At 2018-07-23 23:28:52, "Rob Herring" <robh+dt@kernel.org> wrote:
>On Sat, Jul 21, 2018 at 9:38 AM Liu Xiang <liu.xiang6@zte.com.cn> wrote:
>>
>> Implement a resource managed irq_of_parse_and_map function.
>
>That is obvious from the diff. Why do you need this?
>
>Anything that is a platform device should use platform_get_irq. The
>mapping is created by the core Also, of_irq_get() is preferred over
>irq_of_parse_and_map() for new users as it has better error return
>handling.
>
>>
>> Signed-off-by: Liu Xiang <liu.xiang6@zte.com.cn>
>> ---
>>  drivers/of/irq.c       | 38 ++++++++++++++++++++++++++++++++++++++
>>  include/linux/of_irq.h |  7 +++++++
>>  2 files changed, 45 insertions(+)
>>
>> diff --git a/drivers/of/irq.c b/drivers/of/irq.c
>> index 02ad93a..947fe41 100644
>> --- a/drivers/of/irq.c
>> +++ b/drivers/of/irq.c
>> @@ -45,6 +45,44 @@ unsigned int irq_of_parse_and_map(struct device_node *dev, int index)
>>  }
>>  EXPORT_SYMBOL_GPL(irq_of_parse_and_map);
>>
>> +static void devm_irq_dispose_mapping(struct device *dev, void *res)
>> +{
>> +       irq_dispose_mapping(*(unsigned int *)res);
>
>We don't ref count creating mappings, so this would break for any shared irq.
>
>Rob

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-07-24 13:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1532187494-2704-1-git-send-email-liu.xiang6@zte.com.cn>
2018-07-23 15:28 ` [PATCH] of: irq: Add a helper function for irq_of_parse_and_map Rob Herring
2018-07-24 13:19   ` liuxiang

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).