From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 3/6] ARM: shmobile: r7s72100: Add RSPI resources
Date: Tue, 24 Dec 2013 15:41:51 +0000 [thread overview]
Message-ID: <52B9AB3F.4080907@cogentembedded.com> (raw)
In-Reply-To: <1387886210-3634-4-git-send-email-geert+renesas@linux-m68k.org>
Hello.
On 24-12-2013 15:56, Geert Uytterhoeven wrote:
The subject is somewhat deficient: you're only only adding resources,
you're registering devices themselves...
> Signed-off-by: Geert Uytterhoeven <geert+renesas@linux-m68k.org>
> ---
> arch/arm/mach-shmobile/setup-r7s72100.c | 25 +++++++++++++++++++++++++
> 1 file changed, 25 insertions(+)
> diff --git a/arch/arm/mach-shmobile/setup-r7s72100.c b/arch/arm/mach-shmobile/setup-r7s72100.c
> index 55f0b9c7c482..fbcb0c798994 100644
> --- a/arch/arm/mach-shmobile/setup-r7s72100.c
> +++ b/arch/arm/mach-shmobile/setup-r7s72100.c
> @@ -79,6 +79,26 @@ static struct resource mtu2_0_resources[] __initdata = {
> &mtu2_##idx##_platform_data, \
> sizeof(struct sh_timer_config))
>
> +/* RSPI */
> +#define RSPI_RESOURCE(idx, baseaddr, irq) \
> +static const struct resource rspi##idx##_resources[] __initconst = { \
> + DEFINE_RES_MEM(baseaddr, 0x24), \
> + DEFINE_RES_IRQ(irq), /* SPEI */ \
> + DEFINE_RES_IRQ(irq + 1), /* SPRI */ \
> + DEFINE_RES_IRQ(irq + 2), /* SPTI */ \
> +}
> +
> +RSPI_RESOURCE(0, 0xe800c800, gic_iid(270));
> +RSPI_RESOURCE(1, 0xe800d000, gic_iid(273));
> +RSPI_RESOURCE(2, 0xe800d800, gic_iid(276));
> +RSPI_RESOURCE(3, 0xe800e000, gic_iid(279));
> +RSPI_RESOURCE(4, 0xe800e800, gic_iid(282));
> +
> +#define r7s72100_register_rspi(idx) \
> + platform_device_register_simple("rspi" #idx, idx, \
Hm, do you really mean device names like "rspi0.0"?
> + rspi##idx##_resources, \
> + ARRAY_SIZE(rspi##idx##_resources))
> +
WBR, Sergei
WARNING: multiple messages have this Message-ID (diff)
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Geert Uytterhoeven <geert+renesas@linux-m68k.org>,
linux-sh@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org, linux-spi@vger.kernel.org
Subject: Re: [PATCH 3/6] ARM: shmobile: r7s72100: Add RSPI resources
Date: Tue, 24 Dec 2013 19:41:51 +0400 [thread overview]
Message-ID: <52B9AB3F.4080907@cogentembedded.com> (raw)
In-Reply-To: <1387886210-3634-4-git-send-email-geert+renesas@linux-m68k.org>
Hello.
On 24-12-2013 15:56, Geert Uytterhoeven wrote:
The subject is somewhat deficient: you're only only adding resources,
you're registering devices themselves...
> Signed-off-by: Geert Uytterhoeven <geert+renesas@linux-m68k.org>
> ---
> arch/arm/mach-shmobile/setup-r7s72100.c | 25 +++++++++++++++++++++++++
> 1 file changed, 25 insertions(+)
> diff --git a/arch/arm/mach-shmobile/setup-r7s72100.c b/arch/arm/mach-shmobile/setup-r7s72100.c
> index 55f0b9c7c482..fbcb0c798994 100644
> --- a/arch/arm/mach-shmobile/setup-r7s72100.c
> +++ b/arch/arm/mach-shmobile/setup-r7s72100.c
> @@ -79,6 +79,26 @@ static struct resource mtu2_0_resources[] __initdata = {
> &mtu2_##idx##_platform_data, \
> sizeof(struct sh_timer_config))
>
> +/* RSPI */
> +#define RSPI_RESOURCE(idx, baseaddr, irq) \
> +static const struct resource rspi##idx##_resources[] __initconst = { \
> + DEFINE_RES_MEM(baseaddr, 0x24), \
> + DEFINE_RES_IRQ(irq), /* SPEI */ \
> + DEFINE_RES_IRQ(irq + 1), /* SPRI */ \
> + DEFINE_RES_IRQ(irq + 2), /* SPTI */ \
> +}
> +
> +RSPI_RESOURCE(0, 0xe800c800, gic_iid(270));
> +RSPI_RESOURCE(1, 0xe800d000, gic_iid(273));
> +RSPI_RESOURCE(2, 0xe800d800, gic_iid(276));
> +RSPI_RESOURCE(3, 0xe800e000, gic_iid(279));
> +RSPI_RESOURCE(4, 0xe800e800, gic_iid(282));
> +
> +#define r7s72100_register_rspi(idx) \
> + platform_device_register_simple("rspi" #idx, idx, \
Hm, do you really mean device names like "rspi0.0"?
> + rspi##idx##_resources, \
> + ARRAY_SIZE(rspi##idx##_resources))
> +
WBR, Sergei
WARNING: multiple messages have this Message-ID (diff)
From: sergei.shtylyov@cogentembedded.com (Sergei Shtylyov)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 3/6] ARM: shmobile: r7s72100: Add RSPI resources
Date: Tue, 24 Dec 2013 19:41:51 +0400 [thread overview]
Message-ID: <52B9AB3F.4080907@cogentembedded.com> (raw)
In-Reply-To: <1387886210-3634-4-git-send-email-geert+renesas@linux-m68k.org>
Hello.
On 24-12-2013 15:56, Geert Uytterhoeven wrote:
The subject is somewhat deficient: you're only only adding resources,
you're registering devices themselves...
> Signed-off-by: Geert Uytterhoeven <geert+renesas@linux-m68k.org>
> ---
> arch/arm/mach-shmobile/setup-r7s72100.c | 25 +++++++++++++++++++++++++
> 1 file changed, 25 insertions(+)
> diff --git a/arch/arm/mach-shmobile/setup-r7s72100.c b/arch/arm/mach-shmobile/setup-r7s72100.c
> index 55f0b9c7c482..fbcb0c798994 100644
> --- a/arch/arm/mach-shmobile/setup-r7s72100.c
> +++ b/arch/arm/mach-shmobile/setup-r7s72100.c
> @@ -79,6 +79,26 @@ static struct resource mtu2_0_resources[] __initdata = {
> &mtu2_##idx##_platform_data, \
> sizeof(struct sh_timer_config))
>
> +/* RSPI */
> +#define RSPI_RESOURCE(idx, baseaddr, irq) \
> +static const struct resource rspi##idx##_resources[] __initconst = { \
> + DEFINE_RES_MEM(baseaddr, 0x24), \
> + DEFINE_RES_IRQ(irq), /* SPEI */ \
> + DEFINE_RES_IRQ(irq + 1), /* SPRI */ \
> + DEFINE_RES_IRQ(irq + 2), /* SPTI */ \
> +}
> +
> +RSPI_RESOURCE(0, 0xe800c800, gic_iid(270));
> +RSPI_RESOURCE(1, 0xe800d000, gic_iid(273));
> +RSPI_RESOURCE(2, 0xe800d800, gic_iid(276));
> +RSPI_RESOURCE(3, 0xe800e000, gic_iid(279));
> +RSPI_RESOURCE(4, 0xe800e800, gic_iid(282));
> +
> +#define r7s72100_register_rspi(idx) \
> + platform_device_register_simple("rspi" #idx, idx, \
Hm, do you really mean device names like "rspi0.0"?
> + rspi##idx##_resources, \
> + ARRAY_SIZE(rspi##idx##_resources))
> +
WBR, Sergei
next prev parent reply other threads:[~2013-12-24 15:41 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-24 11:56 [PATCH 0/6] Preliminary SoC and board integration for RSPI on RZ/A1H Geert Uytterhoeven
2013-12-24 11:56 ` Geert Uytterhoeven
2013-12-24 11:56 ` Geert Uytterhoeven
2013-12-24 11:56 ` [PATCH 1/6] pinctrl: sh-pfc: r7s72100: Add RSPI support Geert Uytterhoeven
2013-12-24 11:56 ` Geert Uytterhoeven
2013-12-24 11:56 ` Geert Uytterhoeven
2014-01-07 19:03 ` Linus Walleij
2014-01-07 19:03 ` Linus Walleij
2014-01-07 19:03 ` Linus Walleij
2014-01-07 19:07 ` Geert Uytterhoeven
2014-01-07 19:07 ` Geert Uytterhoeven
2014-01-07 19:07 ` Geert Uytterhoeven
2013-12-24 11:56 ` [PATCH 2/6] ARM: shmobile: r7s72100: Add RSPI clocks Geert Uytterhoeven
2013-12-24 11:56 ` Geert Uytterhoeven
2013-12-24 11:56 ` Geert Uytterhoeven
2013-12-25 0:51 ` Kuninori Morimoto
2013-12-25 0:51 ` Kuninori Morimoto
2013-12-25 0:51 ` Kuninori Morimoto
2013-12-24 11:56 ` [PATCH 3/6] ARM: shmobile: r7s72100: Add RSPI resources Geert Uytterhoeven
2013-12-24 11:56 ` Geert Uytterhoeven
2013-12-24 11:56 ` Geert Uytterhoeven
2013-12-24 15:41 ` Sergei Shtylyov [this message]
2013-12-24 15:41 ` Sergei Shtylyov
2013-12-24 15:41 ` Sergei Shtylyov
2013-12-24 11:56 ` [PATCH 4/6] [RFC] Documentation: dt: Add Renesas RSPI/QSPI bindings Geert Uytterhoeven
2013-12-24 11:56 ` Geert Uytterhoeven
2013-12-24 11:56 ` Geert Uytterhoeven
2013-12-27 16:18 ` Laurent Pinchart
2013-12-27 16:18 ` Laurent Pinchart
2013-12-27 16:18 ` Laurent Pinchart
2013-12-27 19:01 ` Geert Uytterhoeven
2013-12-27 19:01 ` Geert Uytterhoeven
2013-12-27 19:01 ` Geert Uytterhoeven
2013-12-29 23:22 ` Laurent Pinchart
2013-12-29 23:22 ` Laurent Pinchart
2013-12-29 23:22 ` Laurent Pinchart
2013-12-30 9:37 ` Geert Uytterhoeven
2013-12-30 9:37 ` Geert Uytterhoeven
2013-12-30 9:37 ` Geert Uytterhoeven
2013-12-30 15:18 ` Laurent Pinchart
2013-12-30 15:18 ` Laurent Pinchart
2013-12-30 15:18 ` Laurent Pinchart
2013-12-30 17:20 ` Geert Uytterhoeven
2013-12-30 17:20 ` Geert Uytterhoeven
2013-12-30 17:20 ` Geert Uytterhoeven
2013-12-24 11:56 ` [PATCH 5/6] [RFC] ARM: shmobile: r7s72100 dtsi: Add RSPI nodes Geert Uytterhoeven
2013-12-24 11:56 ` Geert Uytterhoeven
2013-12-24 11:56 ` Geert Uytterhoeven
2013-12-24 11:56 ` [PATCH 6/6] [RFC] arm: shmobile: genmai reference: " Geert Uytterhoeven
2013-12-24 11:56 ` Geert Uytterhoeven
2013-12-24 11:56 ` Geert Uytterhoeven
2013-12-24 15:45 ` Sergei Shtylyov
2013-12-24 15:45 ` Sergei Shtylyov
2013-12-24 15:45 ` Sergei Shtylyov
2013-12-24 19:46 ` Geert Uytterhoeven
2013-12-24 19:46 ` Geert Uytterhoeven
2013-12-24 19:46 ` Geert Uytterhoeven
2013-12-27 16:20 ` Laurent Pinchart
2013-12-27 16:20 ` Laurent Pinchart
2013-12-27 16:20 ` Laurent Pinchart
2013-12-27 19:08 ` Geert Uytterhoeven
2013-12-27 19:08 ` Geert Uytterhoeven
2013-12-27 19:08 ` Geert Uytterhoeven
2013-12-28 11:48 ` Laurent Pinchart
2013-12-28 11:48 ` Laurent Pinchart
2013-12-28 11:48 ` Laurent Pinchart
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=52B9AB3F.4080907@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 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.