All of lore.kernel.org
 help / color / mirror / Atom feed
From: JeffyChen <jeffy.chen-TNX95d0MmH7DzftRWevZcw@public.gmane.org>
To: Tomasz Figa <tfiga-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
Cc: Heiko Stuebner <heiko-4mtYJXux2i+zQB+pC5nmwQ@public.gmane.org>,
	open-Y9sIeH5OGRo@public.gmane.org,
	list-Y9sIeH5OGRo@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Ricky Liang <jcliang-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>,
	"open list:ARM/Rockchip SoC..."
	<linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org>,
	IOMMU DRIVERS
	<iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Subject: Re: [PATCH v2 11/13] iommu/rockchip: Use OF_IOMMU to attach devices automatically
Date: Wed, 17 Jan 2018 15:20:46 +0800	[thread overview]
Message-ID: <5A5EF94E.7010806@rock-chips.com> (raw)
In-Reply-To: <CAAFQd5C=SM21CmL8J334HseJ6SJH1wAVzKhrsk_cXMmpf8mK8g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

Hi Tomasz,

Thanks for your reply.

On 01/17/2018 01:44 PM, Tomasz Figa wrote:
> On Tue, Jan 16, 2018 at 10:25 PM, Jeffy Chen <jeffy.chen-TNX95d0MmH7DzftRWevZcw@public.gmane.org> wrote:
>> Converts the rockchip-iommu driver to use the OF_IOMMU infrastructure,
>> which allows attaching master devices to their IOMMUs automatically
>> according to DT properties.
>>
>> Signed-off-by: Jeffy Chen <jeffy.chen-TNX95d0MmH7DzftRWevZcw@public.gmane.org>
>> ---
>>
>> Changes in v2: None
>>
>>   drivers/iommu/rockchip-iommu.c | 116 +++++++++++------------------------------
>>   1 file changed, 31 insertions(+), 85 deletions(-)
>>
>> diff --git a/drivers/iommu/rockchip-iommu.c b/drivers/iommu/rockchip-iommu.c
>> index 51e4f982c4a6..c2d3ac82184e 100644
>> --- a/drivers/iommu/rockchip-iommu.c
>> +++ b/drivers/iommu/rockchip-iommu.c
> [snip]
>> +static int rk_iommu_of_xlate(struct device *dev,
>> +                            struct of_phandle_args *args)
>> +{
>> +       struct platform_device *iommu_dev;
>> +
>> +       iommu_dev = of_find_device_by_node(args->np);
>> +       if (!iommu_dev) {
>> +               dev_err(dev, "iommu %pOF not found\n", args->np);
>> +               return -ENODEV;
>> +       }
>> +
>> +       dev->archdata.iommu = platform_get_drvdata(iommu_dev);
>
> This will work only if that iommu was already probed. Do we have any
> guarantees that this callback is not called earlier?
in of_iommu.c, the of_iommu_xlate would check for fwnode before calling 
this.

but it's possible the probe failed after calling 
iommu_device_set_fwnode, so i'll try to add some checks here, and maybe 
adjust probe() to prevent it too.

>
> Best regards,
> Tomasz
>
>
>

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

Thread overview: 99+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-16 13:25 [PATCH v2 00/13] iommu/rockchip: Use OF_IOMMU Jeffy Chen
2018-01-16 13:25 ` Jeffy Chen
2018-01-16 13:25 ` [PATCH v2 01/13] iommu/rockchip: Request irqs in rk_iommu_probe() Jeffy Chen
2018-01-16 13:25   ` Jeffy Chen
2018-01-17  4:21   ` Tomasz Figa
2018-01-17  4:21     ` Tomasz Figa
2018-01-17  4:21     ` Tomasz Figa
     [not found]     ` <CAAFQd5AO6_GYMs0xac-4ECFH9pn_ssg8jsFVoif0WDQ-daSuRA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-01-17  7:08       ` JeffyChen
2018-01-17  7:16         ` Tomasz Figa
2018-01-17  7:16           ` Tomasz Figa
2018-01-17  7:45           ` JeffyChen
2018-01-17  7:45             ` JeffyChen
2018-01-17  7:45             ` JeffyChen
2018-01-17 12:18   ` Robin Murphy
2018-01-17 12:18     ` Robin Murphy
2018-01-17 12:18     ` Robin Murphy
2018-01-17 12:46     ` JeffyChen
2018-01-17 12:46       ` JeffyChen
2018-01-16 13:25 ` [PATCH v2 02/13] iommu/rockchip: Suppress unbinding Jeffy Chen
2018-01-16 13:25   ` Jeffy Chen
2018-01-17  4:23   ` Tomasz Figa
2018-01-17  4:23     ` Tomasz Figa
2018-01-17  4:23     ` Tomasz Figa
2018-01-17  5:32     ` Tomasz Figa
2018-01-17  5:32       ` Tomasz Figa
2018-01-17  5:32       ` Tomasz Figa
     [not found]       ` <CAAFQd5CXH_20649oZNrzFjHoKfpDi6gHF91jd3uCyjyOkH+Ohw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-01-17  7:16         ` JeffyChen
2018-01-16 13:25 ` [PATCH v2 03/13] iommu/rockchip: Fix error handling in attach Jeffy Chen
2018-01-16 13:25   ` Jeffy Chen
2018-01-16 13:25 ` [PATCH v2 04/13] iommu/rockchip: Fix error handling in probe Jeffy Chen
2018-01-16 13:25   ` Jeffy Chen
2018-01-17  5:22   ` Tomasz Figa
2018-01-17  5:22     ` Tomasz Figa
2018-01-17  5:22     ` Tomasz Figa
2018-01-16 13:25 ` [PATCH v2 05/13] iommu/rockchip: Fix error handling in init Jeffy Chen
2018-01-16 13:25   ` Jeffy Chen
2018-01-17  5:26   ` Tomasz Figa
2018-01-17  5:26     ` Tomasz Figa
     [not found]     ` <CAAFQd5AFHheE+5Dx=0=BeL2W1EYd=Kmcb8fKcCBFRgP8ViuxgQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-01-17  7:14       ` JeffyChen
2018-01-17  7:19         ` Tomasz Figa
2018-01-17  7:19           ` Tomasz Figa
2018-01-17 12:27           ` Tomasz Figa
2018-01-17 12:27             ` Tomasz Figa
2018-01-17 11:36     ` Robin Murphy
2018-01-17 11:36       ` Robin Murphy
     [not found]       ` <e227cf1e-f00a-5cdb-487c-bf0046f3acbb-5wv7dgnIgG8@public.gmane.org>
2018-01-17 12:44         ` JeffyChen
2018-01-16 13:25 ` [PATCH v2 06/13] iommu/rockchip: Use iopoll helpers to wait for hardware Jeffy Chen
2018-01-16 13:25   ` Jeffy Chen
2018-01-16 13:25 ` [PATCH v2 07/13] iommu/rockchip: Fix TLB flush of secondary IOMMUs Jeffy Chen
2018-01-16 13:25 ` [PATCH v2 08/13] iommu/rockchip: Control clocks needed to access the IOMMU Jeffy Chen
2018-01-16 13:25   ` Jeffy Chen
2018-01-16 13:25 ` [PATCH v2 09/13] iommu/rockchip: Use iommu_group_get_for_dev() for add_device Jeffy Chen
2018-01-16 13:25   ` Jeffy Chen
2018-01-17 12:31   ` Robin Murphy
2018-01-17 12:31     ` Robin Murphy
2018-01-17 12:31     ` Robin Murphy
2018-01-17 12:47     ` JeffyChen
2018-01-17 12:47       ` JeffyChen
2018-01-17 12:47       ` JeffyChen
2018-01-17 12:53       ` JeffyChen
2018-01-17 12:53         ` JeffyChen
2018-01-17 12:53         ` JeffyChen
2018-01-16 13:25 ` [PATCH v2 10/13] iommu/rockchip: Use IOMMU device for dma mapping operations Jeffy Chen
2018-01-16 13:25   ` Jeffy Chen
2018-01-17  5:37   ` Tomasz Figa
2018-01-17  5:37     ` Tomasz Figa
2018-01-17  5:37     ` Tomasz Figa
2018-01-16 13:25 ` [PATCH v2 11/13] iommu/rockchip: Use OF_IOMMU to attach devices automatically Jeffy Chen
2018-01-16 13:25   ` Jeffy Chen
2018-01-17  5:44   ` Tomasz Figa
2018-01-17  5:44     ` Tomasz Figa
2018-01-17  5:44     ` Tomasz Figa
     [not found]     ` <CAAFQd5C=SM21CmL8J334HseJ6SJH1wAVzKhrsk_cXMmpf8mK8g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-01-17  7:20       ` JeffyChen [this message]
2018-01-17  7:30         ` Tomasz Figa
2018-01-17  7:30           ` Tomasz Figa
2018-01-17  7:47           ` JeffyChen
2018-01-17  7:47             ` JeffyChen
2018-01-17  7:47             ` JeffyChen
2018-01-16 13:25 ` [PATCH v2 12/13] iommu/rockchip: Add runtime PM support Jeffy Chen
2018-01-16 13:25   ` Jeffy Chen
2018-01-17  6:20   ` Tomasz Figa
2018-01-17  6:20     ` Tomasz Figa
2018-01-17  6:20     ` Tomasz Figa
     [not found]     ` <CAAFQd5DCxgsL52+5XetV9MRDecL7dN6_QdHysKUOWaEqSf=ijw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-01-17  7:26       ` JeffyChen
2018-01-17  7:38         ` Tomasz Figa
2018-01-17  7:38           ` Tomasz Figa
2018-01-17  7:52           ` JeffyChen
2018-01-17  7:52             ` JeffyChen
2018-01-17  8:48             ` JeffyChen
2018-01-17  8:48               ` JeffyChen
2018-01-17  8:48               ` JeffyChen
2018-01-16 13:25 ` [PATCH v2 13/13] iommu/rockchip: Support sharing IOMMU between masters Jeffy Chen
2018-01-16 13:25   ` Jeffy Chen
2018-01-17 13:00   ` Robin Murphy
2018-01-17 13:00     ` Robin Murphy
2018-01-17 13:00     ` Robin Murphy
2018-01-17 13:32     ` JeffyChen
2018-01-17 13:32       ` JeffyChen
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=5A5EF94E.7010806@rock-chips.com \
    --to=jeffy.chen-tnx95d0mmh7dzftrwevzcw@public.gmane.org \
    --cc=heiko-4mtYJXux2i+zQB+pC5nmwQ@public.gmane.org \
    --cc=iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org \
    --cc=jcliang-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=list-Y9sIeH5OGRo@public.gmane.org \
    --cc=open-Y9sIeH5OGRo@public.gmane.org \
    --cc=tfiga-F7+t8E8rja9g9hUCZPvPmw@public.gmane.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 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.