Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1279899

Re: [PATCH v2 3/4] ARM: amba: Move reading of periphid to amba_match()

Path csiph.com!news.mixmin.net!eternal-september.org!feeder.eternal-september.org!aioe.org!bofh.it!news.nic.it!robomod
From Ulf Hansson <ulf.hansson@linaro.org>
Newsgroups linux.kernel
Subject Re: [PATCH v2 3/4] ARM: amba: Move reading of periphid to amba_match()
Date Mon, 30 Nov 2015 15:10:02 +0100
Message-ID <qAxjs-4Ex-5@gated-at.bofh.it> (permalink)
References <qz4jw-5fF-7@gated-at.bofh.it> <qz4jx-5fF-19@gated-at.bofh.it>
X-Original-To Marek Szyprowski <m.szyprowski@samsung.com>, Tomeu Vizoso <tomeu.vizoso@collabora.com>
Dkim-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro-org.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=6BM5m95yHLCKetup2VMkBFh/sEwZ7MezEcUrc1B5qU8=; b=HSHCrBO5aeFBmWaCoVY6bp2IJq/XjWedyEscgp8JceSrQhnSRKqPnAzDWwsiiC7MIa owuSm4zDkWdajosctRl+sLNswZXn8D9DbC4BmA33urPnTWFdg756T2T6k6iY46VPBA8a JHdOVbUsy/FAlH0ygzb4uOmyg8HMT04wy1YsYsI42Xz53+oFNXIw6gmjvV7pWDAoxvLs Oo5ObqENwOUcsdHzKGG0c1UFd/zL2LPz/eTWlVu7EEFY+6z1nTQ/gLe7iR85r+7LwHEV n7kk55tsGInN3nmynIaeKCzkvca6yktvxA8boximOU5+DiWc059NPvLYdXWkWjslh1xf 2giw==
X-Google-Dkim-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=6BM5m95yHLCKetup2VMkBFh/sEwZ7MezEcUrc1B5qU8=; b=hOfGEZyHCnZ/Yv0kh9YI3eQtr29LyBlUMWrp9qANAgVw4EMYKChkCIQjZFmFQUfBb/ HOOrFHqhSILPKptFlqlex797PiI3Q3ouRN6jvy1UeBPoUVF7SmJbXLLWRxipyFX2gopG 87k9mg1JNlr+gv81orxsxBeg/gymgHdj9CH/qJE/nwrudrI7KLlHOLSQx3SvJ9j/Bnn1 kaA3nflrNtzfeY1IkZhxaqG6wlwemuyKJSnA+kXAiAQoW9LI8ZbJlqKZkbbwJ8azlUv0 5qdUcyoRtceS/cni/7bI9ld/sUljmGDzXAe6kDp+NTa3hRVxJ3VcLF0hmhkNNO6TitKV 7a0Q==
X-Gm-Message-State ALoCoQnJrBPxpd1mFQ3gpg5If6gMzhDQdSmsHpGdvfYig5B7tToMBAcWc8YXrGrsEu9gfgbs71uS
MIME-Version 1.0
X-Received by 10.13.202.133 with SMTP id m127mr19138317ywd.207.1448892455772; Mon, 30 Nov 2015 06:07:35 -0800 (PST)
Content-Type text/plain; charset=UTF-8
Sender robomod@news.nic.it
List-ID <linux-kernel.vger.kernel.org>
X-Mailing-List linux-kernel@vger.kernel.org
Approved robomod@news.nic.it
Lines 189
Organization linux.* mail to news gateway
X-Original-Cc linux-samsung-soc <linux-samsung-soc@vger.kernel.org>, "linux-arm-kernel@lists.infradead.org" <linux-arm-kernel@lists.infradead.org>, "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>, Russell King - ARM Linux <linux@arm.linux.org.uk>, Greg Kroah-Hartman <gregkh@linuxfoundation.org>, Kukjin Kim <kgene@kernel.org>, Krzysztof Kozlowski <k.kozlowski@samsung.com>, Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
X-Original-Date Mon, 30 Nov 2015 15:07:35 +0100
X-Original-Message-ID <CAPDyKFoj1VTYY-uwzQW+XSzdfYkpATgkQNOAO38SCfqTVJYWKw@mail.gmail.com>
X-Original-References <1448542190-19498-1-git-send-email-m.szyprowski@samsung.com> <1448542190-19498-4-git-send-email-m.szyprowski@samsung.com>
X-Original-Sender linux-kernel-owner@vger.kernel.org
Xref csiph.com linux.kernel:1279899

Show key headers only | View raw


On 26 November 2015 at 13:49, Marek Szyprowski <m.szyprowski@samsung.com> wrote:
> From: Tomeu Vizoso <tomeu.vizoso@collabora.com>
>
> Reading the periphid when the Primecell device is registered means that
> the apb pclk must be available by then or the device won't be registered
> at all.
>
> By reading the periphid in amba_match() we can return -EPROBE_DEFER if
> the apb pclk isn't there yet and the device will be retried later.
>
> Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
> ---
>  drivers/amba/bus.c | 88 ++++++++++++++++++++++++++++--------------------------
>  1 file changed, 46 insertions(+), 42 deletions(-)
>
> diff --git a/drivers/amba/bus.c b/drivers/amba/bus.c
> index f009936..72ebf9b 100644
> --- a/drivers/amba/bus.c
> +++ b/drivers/amba/bus.c
> @@ -24,6 +24,8 @@
>
>  #define to_amba_driver(d)      container_of(d, struct amba_driver, drv)
>
> +static int read_periphid(struct amba_device *d, unsigned int *periphid);

I would change this to:
static int amba_read_periphid(struct amba_device *dev);

That will actually also make the patch smaller.

> +
>  static const struct amba_id *
>  amba_lookup(const struct amba_id *table, struct amba_device *dev)
>  {
> @@ -43,11 +45,22 @@ static int amba_match(struct device *dev, struct device_driver *drv)
>  {
>         struct amba_device *pcdev = to_amba_device(dev);
>         struct amba_driver *pcdrv = to_amba_driver(drv);
> +       int ret;
>
>         /* When driver_override is set, only bind to the matching driver */
>         if (pcdev->driver_override)
>                 return !strcmp(pcdev->driver_override, drv->name);
>
> +       if (!pcdev->periphid) {
> +               ret = read_periphid(pcdev, &pcdev->periphid);
> +               if (ret) {
> +                       if (ret != -EPROBE_DEFER)
> +                               dev_err(dev, "Failed to read periphid: %d",
> +                                       ret);
> +                       return ret;
> +               }
> +       }
> +
>         return amba_lookup(pcdrv->id_table, pcdev) != NULL;
>  }
>
> @@ -336,44 +349,22 @@ static void amba_device_release(struct device *dev)
>         kfree(d);
>  }
>
> -/**
> - *     amba_device_add - add a previously allocated AMBA device structure
> - *     @dev: AMBA device allocated by amba_device_alloc
> - *     @parent: resource parent for this devices resources
> - *
> - *     Claim the resource, and read the device cell ID if not already
> - *     initialized.  Register the AMBA device with the Linux device
> - *     manager.
> - */
> -int amba_device_add(struct amba_device *dev, struct resource *parent)
> +static int read_periphid(struct amba_device *d, unsigned int *periphid)
>  {
>         u32 size;
>         void __iomem *tmp;
> -       int i, ret;
> -
> -       WARN_ON(dev->irq[0] == (unsigned int)-1);
> -       WARN_ON(dev->irq[1] == (unsigned int)-1);
> -
> -       ret = request_resource(parent, &dev->res);
> -       if (ret)
> -               goto err_out;
> -
> -       /* Hard-coded primecell ID instead of plug-n-play */

This line now belongs in amba_match(), please move it there instead of
just deleting it.

> -       if (dev->periphid != 0)
> -               goto skip_probe;
> +       int i, ret = 0;
>
>         /*
>          * Dynamically calculate the size of the resource
>          * and use this for iomap
>          */
> -       size = resource_size(&dev->res);
> -       tmp = ioremap(dev->res.start, size);
> -       if (!tmp) {
> -               ret = -ENOMEM;
> -               goto err_release;
> -       }
> +       size = resource_size(&d->res);
> +       tmp = ioremap(d->res.start, size);
> +       if (!tmp)
> +               return -ENOMEM;
>
> -       ret = amba_get_enable_pclk(dev);
> +       ret = amba_get_enable_pclk(d);
>         if (ret == 0) {
>                 u32 pid, cid;
>
> @@ -388,37 +379,50 @@ int amba_device_add(struct amba_device *dev, struct resource *parent)
>                         cid |= (readl(tmp + size - 0x10 + 4 * i) & 255) <<
>                                 (i * 8);
>
> -               amba_put_disable_pclk(dev);
> +               amba_put_disable_pclk(d);
>
>                 if (cid == AMBA_CID || cid == CORESIGHT_CID)
> -                       dev->periphid = pid;
> +                       *periphid = pid;
>
> -               if (!dev->periphid)
> +               if (!*periphid)
>                         ret = -ENODEV;
>         }
>
>         iounmap(tmp);
>
> +       return ret;
> +}
> +
> +/**
> + *     amba_device_add - add a previously allocated AMBA device structure
> + *     @dev: AMBA device allocated by amba_device_alloc
> + *     @parent: resource parent for this devices resources
> + *
> + *     Claim the resource, and register the AMBA device with the Linux device
> + *     manager.
> + */
> +int amba_device_add(struct amba_device *dev, struct resource *parent)
> +{
> +       int ret;
> +
> +       WARN_ON(dev->irq[0] == (unsigned int)-1);
> +       WARN_ON(dev->irq[1] == (unsigned int)-1);
> +
> +       ret = request_resource(parent, &dev->res);
>         if (ret)
> -               goto err_release;
> +               return ret;
>
> - skip_probe:
>         ret = device_add(&dev->dev);
>         if (ret)
> -               goto err_release;
> +               return ret;
>
>         if (dev->irq[0])
>                 ret = device_create_file(&dev->dev, &dev_attr_irq0);
>         if (ret == 0 && dev->irq[1])
>                 ret = device_create_file(&dev->dev, &dev_attr_irq1);
> -       if (ret == 0)
> -               return ret;
> -
> -       device_unregister(&dev->dev);
> +       if (ret)
> +               device_unregister(&dev->dev);
>
> - err_release:
> -       release_resource(&dev->res);
> - err_out:
>         return ret;
>  }
>  EXPORT_SYMBOL_GPL(amba_device_add);
> --
> 1.9.2
>

Kind regards
Uffe
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v2 0/4] Exynos4210: fix power domain for MDMA1 device Marek Szyprowski <m.szyprowski@samsung.com> - 2015-11-26 14:00 +0100
  [PATCH v2 2/4] driver core: handle -EPROBE_DEFER from bus_type.match() Marek Szyprowski <m.szyprowski@samsung.com> - 2015-11-26 14:00 +0100
    Re: [PATCH v2 2/4] driver core: handle -EPROBE_DEFER from bus_type.match() Ulf Hansson <ulf.hansson@linaro.org> - 2015-11-30 14:40 +0100
      Re: [PATCH v2 2/4] driver core: handle -EPROBE_DEFER from  bus_type.match() Marek Szyprowski <m.szyprowski@samsung.com> - 2015-12-01 10:30 +0100
        Re: [PATCH v2 2/4] driver core: handle -EPROBE_DEFER from bus_type.match() Ulf Hansson <ulf.hansson@linaro.org> - 2015-12-01 14:00 +0100
  [PATCH v2 1/4] ARM: dts: exynos4210: MDMA1 device belongs to LCD0  power domain Marek Szyprowski <m.szyprowski@samsung.com> - 2015-11-26 14:00 +0100
    Re: [PATCH v2 1/4] ARM: dts: exynos4210: MDMA1 device belongs to LCD0  power domain Krzysztof Kozlowski <k.kozlowski@samsung.com> - 2015-11-30 08:00 +0100
  [PATCH v2 3/4] ARM: amba: Move reading of periphid to amba_match() Marek Szyprowski <m.szyprowski@samsung.com> - 2015-11-26 14:00 +0100
    Re: [PATCH v2 3/4] ARM: amba: Move reading of periphid to amba_match() Ulf Hansson <ulf.hansson@linaro.org> - 2015-11-30 15:10 +0100
  [PATCH v2 4/4] ARM: amba: Properly handle devices with power domains Marek Szyprowski <m.szyprowski@samsung.com> - 2015-11-26 14:00 +0100

csiph-web