From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v3 1/1] ARM: shmobile: r8a7778: add I2C support
Date: Thu, 16 May 2013 14:25:13 +0000 [thread overview]
Message-ID: <5194EC49.9000508@cogentembedded.com> (raw)
In-Reply-To: <87txm3wwzh.wl%kuninori.morimoto.gx@renesas.com>
Hello.
On 16-05-2013 5:10, Kuninori Morimoto wrote:
> Basically, this patch is good for me.
> But I have some comment.
> Sergei Shtylyov wrote:
>> From: Vladimir Barinov <vladimir.barinov@cogentembedded.com>
>> Add I2C clocks and platform devices for R8A7778 SoC.
>> Don't forget to also add the peripheral clock which the I2C driver uses.
>> Signed-off-by: Vladimir Barinov <vladimir.barinov@cogentembedded.com>
>> [Sergei: changed the registration function to platform_device_register_simple(),
>> annotated I2C resources as '__initdata', regrouped MSTPxxx *enum* members, added
>> the copyright.]
>> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
>> Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> (snip)
>> - MSTP026, MSTP025, MSTP024, MSTP023, MSTP022, MSTP021,
>> + MSTP030, MSTP029,
>> + MSTP028, MSTP027, MSTP026, MSTP025, MSTP024, MSTP023, MSTP022, MSTP021,
>
> It should be
> MSTP30,
> MSPT029, MSPT028, MSPT027...
This will cause a warning from checkpatch.pl for the violation of
80-column line limit, I think.
>> +/* I2C */
>> +static struct resource i2c0_resources[] __initdata = {
>> + DEFINE_RES_MEM(0xffc70000, 0x1000),
>> + DEFINE_RES_IRQ(gic_iid(0x63)),
>> +};
>> +
>> +static struct resource i2c1_resources[] __initdata = {
>> + DEFINE_RES_MEM(0xffc71000, 0x1000),
>> + DEFINE_RES_IRQ(gic_iid(0x6e)),
>> +};
>> +
>> +static struct resource i2c2_resources[] __initdata = {
>> + DEFINE_RES_MEM(0xffc72000, 0x1000),
>> + DEFINE_RES_IRQ(gic_iid(0x6c)),
>> +};
>> +
>> +static struct resource i2c3_resources[] __initdata = {
>> + DEFINE_RES_MEM(0xffc73000, 0x1000),
>> + DEFINE_RES_IRQ(gic_iid(0x6d)),
>> +};
>> +
>> +#define r8a7778_register_i2c(idx) \
>> + platform_device_register_simple( \
>> + "i2c-rcar", idx, \
>> + i2c##idx##_resources, \
>> + ARRAY_SIZE(i2c##idx##_resources))
>> +
>> /* USB PHY */
>> static struct resource usb_phy_resources[] __initdata = {
>> DEFINE_RES_MEM(0xffe70800, 0x100),
>> @@ -294,6 +321,11 @@ void __init r8a7778_add_standard_devices
>>
>> r8a7778_register_tmu(0);
>> r8a7778_register_tmu(1);
>> +
>> + r8a7778_register_i2c(0);
>> + r8a7778_register_i2c(1);
>> + r8a7778_register_i2c(2);
>> + r8a7778_register_i2c(3);
>> }
>
> i2c1 - i2c3 pins are pin-multi.
Ah, you mean there should be I2C related entries in the pinmux table
in the BOCK-W code?
> I guess using r8a7778_add_i2c_devices(idx) from board code is better method
Why? Not at all, I think, since we don't have the platform data.
> Best regards
> ---
> Kuninori Morimoto
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 v3 1/1] ARM: shmobile: r8a7778: add I2C support
Date: Thu, 16 May 2013 18:25:13 +0400 [thread overview]
Message-ID: <5194EC49.9000508@cogentembedded.com> (raw)
In-Reply-To: <87txm3wwzh.wl%kuninori.morimoto.gx@renesas.com>
Hello.
On 16-05-2013 5:10, Kuninori Morimoto wrote:
> Basically, this patch is good for me.
> But I have some comment.
> Sergei Shtylyov wrote:
>> From: Vladimir Barinov <vladimir.barinov@cogentembedded.com>
>> Add I2C clocks and platform devices for R8A7778 SoC.
>> Don't forget to also add the peripheral clock which the I2C driver uses.
>> Signed-off-by: Vladimir Barinov <vladimir.barinov@cogentembedded.com>
>> [Sergei: changed the registration function to platform_device_register_simple(),
>> annotated I2C resources as '__initdata', regrouped MSTPxxx *enum* members, added
>> the copyright.]
>> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
>> Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> (snip)
>> - MSTP026, MSTP025, MSTP024, MSTP023, MSTP022, MSTP021,
>> + MSTP030, MSTP029,
>> + MSTP028, MSTP027, MSTP026, MSTP025, MSTP024, MSTP023, MSTP022, MSTP021,
>
> It should be
> MSTP30,
> MSPT029, MSPT028, MSPT027...
This will cause a warning from checkpatch.pl for the violation of
80-column line limit, I think.
>> +/* I2C */
>> +static struct resource i2c0_resources[] __initdata = {
>> + DEFINE_RES_MEM(0xffc70000, 0x1000),
>> + DEFINE_RES_IRQ(gic_iid(0x63)),
>> +};
>> +
>> +static struct resource i2c1_resources[] __initdata = {
>> + DEFINE_RES_MEM(0xffc71000, 0x1000),
>> + DEFINE_RES_IRQ(gic_iid(0x6e)),
>> +};
>> +
>> +static struct resource i2c2_resources[] __initdata = {
>> + DEFINE_RES_MEM(0xffc72000, 0x1000),
>> + DEFINE_RES_IRQ(gic_iid(0x6c)),
>> +};
>> +
>> +static struct resource i2c3_resources[] __initdata = {
>> + DEFINE_RES_MEM(0xffc73000, 0x1000),
>> + DEFINE_RES_IRQ(gic_iid(0x6d)),
>> +};
>> +
>> +#define r8a7778_register_i2c(idx) \
>> + platform_device_register_simple( \
>> + "i2c-rcar", idx, \
>> + i2c##idx##_resources, \
>> + ARRAY_SIZE(i2c##idx##_resources))
>> +
>> /* USB PHY */
>> static struct resource usb_phy_resources[] __initdata = {
>> DEFINE_RES_MEM(0xffe70800, 0x100),
>> @@ -294,6 +321,11 @@ void __init r8a7778_add_standard_devices
>>
>> r8a7778_register_tmu(0);
>> r8a7778_register_tmu(1);
>> +
>> + r8a7778_register_i2c(0);
>> + r8a7778_register_i2c(1);
>> + r8a7778_register_i2c(2);
>> + r8a7778_register_i2c(3);
>> }
>
> i2c1 - i2c3 pins are pin-multi.
Ah, you mean there should be I2C related entries in the pinmux table
in the BOCK-W code?
> I guess using r8a7778_add_i2c_devices(idx) from board code is better method
Why? Not at all, I think, since we don't have the platform data.
> Best regards
> ---
> Kuninori Morimoto
WBR, Sergei
next prev parent reply other threads:[~2013-05-16 14:25 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-23 16:12 [PATCH v3 0/1] Add I2C support to R8A7778/BOCK-W Sergei Shtylyov
2013-04-23 16:12 ` Sergei Shtylyov
2013-04-23 16:15 ` [PATCH v3 1/1] ARM: shmobile: r8a7778: add I2C support Sergei Shtylyov
2013-04-23 16:15 ` Sergei Shtylyov
2013-05-16 1:10 ` Kuninori Morimoto
2013-05-16 1:10 ` Kuninori Morimoto
2013-05-16 14:25 ` Sergei Shtylyov [this message]
2013-05-16 14:25 ` Sergei Shtylyov
2013-05-16 14:30 ` Sergei Shtylyov
2013-05-16 14:30 ` Sergei Shtylyov
2013-06-02 18:52 ` Sergei Shtylyov
2013-06-02 18:52 ` Sergei Shtylyov
2013-06-04 1:33 ` Simon Horman
2013-06-04 1:33 ` 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=5194EC49.9000508@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.