From: swarren@wwwdotorg.org (Stephen Warren)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2] pinctrl/nomadik: make independent of prcmu driver
Date: Fri, 09 Nov 2012 10:16:03 -0700 [thread overview]
Message-ID: <509D3A53.6080007@wwwdotorg.org> (raw)
In-Reply-To: <1352456915-28738-1-git-send-email-linus.walleij@stericsson.com>
On 11/09/2012 03:28 AM, Linus Walleij wrote:
> From: Jonas Aaberg <jonas.aberg@stericsson.com>
>
> Currently there are some unnecessary criss-cross
> dependencies between the PRCMU driver in MFD and a lot of
> other drivers, mainly because other drivers need to poke
> around in the PRCM register range.
>
> In cases like this there are actually just a few select
> registers that the pinctrl driver need to read/modify/write,
> and it turns out that no other driver is actually using
> these registers, so there are no concurrency issues
> whatsoever.
>
> So: don't let the location of the register range complicate
> things, just poke into these registers directly and skip
> a layer of indirection.
>
> Take this opportunity to add kerneldoc to the pinctrl
> state container.
> diff --git a/drivers/pinctrl/pinctrl-nomadik.c b/drivers/pinctrl/pinctrl-nomadik.c
> + res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> + if (res) {
> + npct->prcm_base = devm_ioremap(&pdev->dev, res->start,
> + resource_size(res));
> + if (!npct->prcm_base) {
> + dev_err(&pdev->dev,
> + "failed to ioremap PRCM registers\n");
> + return -ENOMEM;
> + }
> + } else {
> + dev_info(&pdev->dev,
> + "No PRCM base, assume no ALT-Cx control is available\n");
> + }
Where is "assume no ALT-Cx control is available" implemented; I don't
see anything that uses npct->prcm_base to conditionally enable/block any
features. Is it just assumed that the DT won't contain any entries that
trigger writes to the PRCM registers? That seems fragile; it could cause
a "user"-triggered kernel crash.
Aside from that, this seems fine. Much smaller than V1:-)
next prev parent reply other threads:[~2012-11-09 17:16 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-09 10:28 [PATCH v2] pinctrl/nomadik: make independent of prcmu driver Linus Walleij
2012-11-09 17:16 ` Stephen Warren [this message]
2012-11-11 18:40 ` Linus Walleij
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=509D3A53.6080007@wwwdotorg.org \
--to=swarren@wwwdotorg.org \
--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