From: Thierry Reding <thierry.reding@gmail.com>
To: caesar <caesar.wang@rock-chips.com>
Cc: Beniamino Galvani <b.galvani@gmail.com>,
robh+dt@kernel.org, pawel.moll@arm.com, mark.rutland@arm.com,
ijc+devicetree@hellion.org.uk, galak@codeaurora.org,
rdunlap@infradead.org, linux-pwm@vger.kernel.org,
devicetree@vger.kernel.org, linux-doc@vger.kernel.org,
linux-kernel@vger.kernel.org, cf@rock-chips.com,
addy.ke@rock-chips.com, xjq@rock-chips.com,
huangtao@rock-chips.com, hj@rock-chips.com
Subject: Re: [PATCH 2/2] pwm: add this series patch to support for rk-pwm and vop-pwm.
Date: Fri, 18 Jul 2014 12:03:42 +0200 [thread overview]
Message-ID: <20140718100341.GA30497@ulmo> (raw)
In-Reply-To: <53C8AB34.3050102@rock-chips.com>
[-- Attachment #1: Type: text/plain, Size: 1639 bytes --]
On Fri, Jul 18, 2014 at 01:05:56PM +0800, caesar wrote:
> 于 2014年07月18日 03:24, Beniamino Galvani 写道:
> >On Thu, Jul 17, 2014 at 02:08:14PM +0800, caesar wrote:
[...]
> >>@@ -119,9 +185,12 @@ static int rockchip_pwm_probe(struct platform_device *pdev)
> >> return -ENOMEM;
> >> r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> >>- pc->base = devm_ioremap_resource(&pdev->dev, r);
> >>- if (IS_ERR(pc->base))
> >>- return PTR_ERR(pc->base);
> >>+ pc->base = of_iomap(np, 0);
> >>+ if (!pc->base) {
> >>+ dev_err(&pdev->dev, "failed to map controller\n");
> >>+ ret = -ENOMEM;
> >>+ goto fail_map;
> >>+ }
> >I think that this change is not needed. devm_ioremap_resource()
> >guarantees an automatic unmapping when the device is destroyed.
> >
> >Moreover, when of_iomap() fails you don't need to call iounmap().
> >
> >Beniamino
> VOP-PWM base has be requested for lcdc.
Why?
> When I use devm_ioremap_resource(), the vop-pwm will request region fail.
>
> Example:.931020] rockchip-pwm ff9401a0.pwm: can't request region for
> resource [mem 0xff9401a0-0xff9401af] /pwm@ff9401a0.
> So ,I have to charge it.
>
> I will be simplyfied by having:
> - pc->base = devm_ioremap_resource(&pdev->dev, r);
> + if (!strcmp(of_id->compatible, "rockchip,vop-pwm"))
> + pc->base = devm_ioremap(&pdev->dev, r->start, resource_size(r));
> + else
> + pc->base = devm_ioremap_resource(&pdev->dev, r);
>
> Maybe, Could you give me better suggestions for it?
The right thing to do is not have two drivers access the same device.
Why does lcdc request the PWM register region?
Thierry
[-- Attachment #2: Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2014-07-18 10:03 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-17 6:08 [PATCH 0/2] This series adds support for Rockchip SoCs integrated PWM caesar
2014-07-17 6:08 ` [PATCH 1/2] pwm: add this series patch to introduce for rk-pwm and vop-pwm caesar
2014-07-17 6:08 ` [PATCH 2/2] pwm: add this series patch to support " caesar
2014-07-17 19:24 ` Beniamino Galvani
2014-07-18 5:05 ` caesar
2014-07-18 10:03 ` Thierry Reding [this message]
2014-07-18 11:04 ` caesar
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=20140718100341.GA30497@ulmo \
--to=thierry.reding@gmail.com \
--cc=addy.ke@rock-chips.com \
--cc=b.galvani@gmail.com \
--cc=caesar.wang@rock-chips.com \
--cc=cf@rock-chips.com \
--cc=devicetree@vger.kernel.org \
--cc=galak@codeaurora.org \
--cc=hj@rock-chips.com \
--cc=huangtao@rock-chips.com \
--cc=ijc+devicetree@hellion.org.uk \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pwm@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=pawel.moll@arm.com \
--cc=rdunlap@infradead.org \
--cc=robh+dt@kernel.org \
--cc=xjq@rock-chips.com \
/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).