linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: jeffy.chen@rock-chips.com (JeffyChen)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 01/13] iommu/rockchip: Request irqs in rk_iommu_probe()
Date: Wed, 17 Jan 2018 15:45:13 +0800	[thread overview]
Message-ID: <5A5EFF09.3070604@rock-chips.com> (raw)
In-Reply-To: <CAAFQd5Bnv3cLJ0wWY4+LJ+0GzDcm0F9QArY+QfFg692hd6UPjQ@mail.gmail.com>

Hi Tomasz,

On 01/17/2018 03:16 PM, Tomasz Figa wrote:
>>> >>
>>> >>This lacks consistency. of_irq_count() is used for counting, but
>>> >>platform_get_irq() is used for getting. Either platform_ or of_ API
>>> >>should be used for both and I'd lean for platform_, since it's more
>>> >>general.
>> >
>> >hmmm, right, i was thinking of removing num_irq, and do something like:
>> >while (nr++) {
>> >   err = platform_get_irq(dev, nr);
>> >   if (err == -EPROBE_DEFER)
>> >      break;
>> >   if (err < 0)
>> >      return err;
>> >   ....
>> >}
>> >
>> >but forgot to do that..
> Was there anything wrong with platform_irq_count() used by existing code?

just thought the platform_irq_count might ignore some errors(except for 
EPROBE_DEFER):

int platform_irq_count(struct platform_device *dev)
{
         int ret, nr = 0;

         while ((ret = platform_get_irq(dev, nr)) >= 0)
                 nr++;

         if (ret == -EPROBE_DEFER)
                 return ret;

         return nr;
}

but guess that would not matter..

>
>> >
>>> >>
>>>> >>>+               if (irq < 0) {
>>>> >>>+                       dev_err(dev, "Failed to get IRQ, %d\n", irq);
>>>> >>>                          return -ENXIO;
>>>> >>>                  }
>>>> >>>+               err = devm_request_irq(iommu->dev, irq, rk_iommu_irq,
>>>> >>>+                                      IRQF_SHARED, dev_name(dev),
>>>> >>>iommu);
>>>> >>>+               if (err)
>>>> >>>+                       return err;
>>>> >>>          }
>>> >>
>>> >>
>>> >>Looks like there is some more initialization below. Is the driver okay
>>> >>with the IRQ being potentially fired right here? (Shared IRQ handlers
>>> >>might be run at request_irq() time for testing.)
>>> >>
>> >right, forget about that. maybe we can check iommu->domain not NULL in
>> >rk_iommu_irq()
> Maybe we could just move IRQ requesting to the end of probe?
>
ok, that should work too.

and maybe we should also check power status in the irq handler? if it 
get fired after powered off...

> Best regards,
> Tomasz
>
>
>

  reply	other threads:[~2018-01-17  7:45 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20180116132540.18939-1-jeffy.chen@rock-chips.com>
     [not found] ` <20180116132540.18939-3-jeffy.chen@rock-chips.com>
2018-01-17  4:23   ` [PATCH v2 02/13] iommu/rockchip: Suppress unbinding Tomasz Figa
2018-01-17  5:32     ` Tomasz Figa
     [not found] ` <20180116132540.18939-5-jeffy.chen@rock-chips.com>
2018-01-17  5:22   ` [PATCH v2 04/13] iommu/rockchip: Fix error handling in probe Tomasz Figa
     [not found] ` <20180116132540.18939-6-jeffy.chen@rock-chips.com>
2018-01-17  5:26   ` [PATCH v2 05/13] iommu/rockchip: Fix error handling in init Tomasz Figa
     [not found]     ` <5A5EF7D3.90405@rock-chips.com>
2018-01-17  7:19       ` Tomasz Figa
2018-01-17 12:27         ` Tomasz Figa
2018-01-17 11:36     ` Robin Murphy
     [not found] ` <20180116132540.18939-11-jeffy.chen@rock-chips.com>
2018-01-17  5:37   ` [PATCH v2 10/13] iommu/rockchip: Use IOMMU device for dma mapping operations Tomasz Figa
     [not found] ` <20180116132540.18939-12-jeffy.chen@rock-chips.com>
2018-01-17  5:44   ` [PATCH v2 11/13] iommu/rockchip: Use OF_IOMMU to attach devices automatically Tomasz Figa
     [not found]     ` <5A5EF94E.7010806@rock-chips.com>
2018-01-17  7:30       ` Tomasz Figa
2018-01-17  7:47         ` JeffyChen
     [not found] ` <20180116132540.18939-13-jeffy.chen@rock-chips.com>
2018-01-17  6:20   ` [PATCH v2 12/13] iommu/rockchip: Add runtime PM support Tomasz Figa
     [not found]     ` <5A5EFAB2.7040001@rock-chips.com>
2018-01-17  7:38       ` Tomasz Figa
2018-01-17  7:52         ` JeffyChen
2018-01-17  8:48           ` JeffyChen
     [not found] ` <20180116132540.18939-2-jeffy.chen@rock-chips.com>
2018-01-17  4:21   ` [PATCH v2 01/13] iommu/rockchip: Request irqs in rk_iommu_probe() Tomasz Figa
     [not found]     ` <5A5EF672.6040304@rock-chips.com>
2018-01-17  7:16       ` Tomasz Figa
2018-01-17  7:45         ` JeffyChen [this message]
2018-01-17 12:18   ` Robin Murphy
2018-01-17 12:46     ` JeffyChen
     [not found] ` <20180116132540.18939-10-jeffy.chen@rock-chips.com>
2018-01-17 12:31   ` [PATCH v2 09/13] iommu/rockchip: Use iommu_group_get_for_dev() for add_device Robin Murphy
2018-01-17 12:47     ` JeffyChen
2018-01-17 12:53       ` JeffyChen
     [not found] ` <20180116132540.18939-14-jeffy.chen@rock-chips.com>
2018-01-17 13:00   ` [PATCH v2 13/13] iommu/rockchip: Support sharing IOMMU between masters Robin Murphy
2018-01-17 13:32     ` JeffyChen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5A5EFF09.3070604@rock-chips.com \
    --to=jeffy.chen@rock-chips.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).