From: sergei.shtylyov@cogentembedded.com (Sergei Shtylyov)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC 08/17] ARM: shmobile: r8a7779: Add helper to read mode pins
Date: Mon, 25 Nov 2013 15:53:25 +0400 [thread overview]
Message-ID: <52933A35.7070206@cogentembedded.com> (raw)
In-Reply-To: <1385342312-1967-9-git-send-email-horms+renesas@verge.net.au>
Hello.
On 25-11-2013 5:18, Simon Horman wrote:
> Add and use helper to read mode pins.
> This will be re-used when moving marzen-reference to
> the common clock framework.
> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
> ---
> arch/arm/mach-shmobile/clock-r8a7779.c | 11 ++---------
> arch/arm/mach-shmobile/include/mach/r8a7779.h | 1 +
> arch/arm/mach-shmobile/setup-r8a7779.c | 14 ++++++++++++++
> 3 files changed, 17 insertions(+), 9 deletions(-)
> diff --git a/arch/arm/mach-shmobile/clock-r8a7779.c b/arch/arm/mach-shmobile/clock-r8a7779.c
> index b7ce0e7..decf122 100644
> --- a/arch/arm/mach-shmobile/clock-r8a7779.c
> +++ b/arch/arm/mach-shmobile/clock-r8a7779.c
[...]
> diff --git a/arch/arm/mach-shmobile/setup-r8a7779.c b/arch/arm/mach-shmobile/setup-r8a7779.c
> index 8f94531..4e3fbfb 100644
> --- a/arch/arm/mach-shmobile/setup-r8a7779.c
> +++ b/arch/arm/mach-shmobile/setup-r8a7779.c
> @@ -874,6 +874,20 @@ void __init r8a7779_add_standard_devices_dt(void)
> of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
> }
>
> +#define MODEMR 0xffcc0020
> +
> +u32 __init r8a7779_read_mode_pins(void)
> +{
> + void __iomem *modemr = ioremap_nocache(MODEMR, PAGE_SIZE);
Why waste 2 4K pages if you're only interested in 4 bytes (i.e. 1 page)? I
remember I've already asked that question...
> + u32 mode;
> +
> + BUG_ON(!modemr);
> + mode = ioread32(modemr);
> + iounmap(modemr);
> +
> + return mode;
> +}
> +
WBR, Sergei
next prev parent reply other threads:[~2013-11-25 11:53 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-25 1:18 [RFC 00/17] ARM: shmobile: r8a7779, marzen: multiplatform Simon Horman
[not found] ` <1385342312-1967-16-git-send-email-horms+renesas@verge.net.au>
2013-11-25 6:51 ` [RFC 15/17] ARM: shmobile: Remove non-multiplatform Marzen reference support Kuninori Morimoto
2013-11-26 0:26 ` Simon Horman
[not found] ` <1385342312-1967-17-git-send-email-horms+renesas@verge.net.au>
2013-11-25 6:56 ` [RFC 16/17] ARM: shmobile: Let Marzen multiplatform boot with Marzen DTB Kuninori Morimoto
2013-11-26 0:27 ` Simon Horman
[not found] ` <1385342312-1967-9-git-send-email-horms+renesas@verge.net.au>
2013-11-25 11:53 ` Sergei Shtylyov [this message]
2013-11-26 0:34 ` [RFC 08/17] ARM: shmobile: r8a7779: Add helper to read mode pins Simon Horman
[not found] ` <1385342312-1967-14-git-send-email-horms+renesas@verge.net.au>
2013-11-25 12:15 ` [RFC 13/17] ARM: shmobile: marzen-reference: Initialize CPG device Sergei Shtylyov
2013-11-26 0:35 ` Simon Horman
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=52933A35.7070206@cogentembedded.com \
--to=sergei.shtylyov@cogentembedded.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).