From: Daniel Lezcano <daniel.lezcano@linaro.org>
To: Michal Simek <michal.simek@xilinx.com>
Cc: linux-arm-kernel@lists.infradead.org, linux-pm@vger.kernel.org
Subject: Re: [RFC PATCH] ARM: zynq: cpuidle: convert to platform driver
Date: Fri, 27 Sep 2013 09:21:52 +0200 [thread overview]
Message-ID: <52453210.6090606@linaro.org> (raw)
In-Reply-To: <22edc518-27ad-4dcf-918a-def23df93bcc@DB9EHSMHS022.ehs.local>
On 09/27/2013 07:12 AM, Michal Simek wrote:
> Hi Daniel,
>
> On 09/26/2013 06:15 PM, Daniel Lezcano wrote:
>> As the ux500 and the kirkwood driver, make the zynq driver a platform driver
>>
>> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
>> ---
>> arch/arm/mach-zynq/common.c | 7 +++++++
>> drivers/cpuidle/cpuidle-zynq.c | 15 ++++++++++-----
>> 2 files changed, 17 insertions(+), 5 deletions(-)
>>
>> diff --git a/arch/arm/mach-zynq/common.c b/arch/arm/mach-zynq/common.c
>> index 5f25256..0f0d88f 100644
>> --- a/arch/arm/mach-zynq/common.c
>> +++ b/arch/arm/mach-zynq/common.c
>> @@ -44,6 +44,10 @@ static struct of_device_id zynq_of_bus_ids[] __initdata = {
>> {}
>> };
>>
>> +static struct platform_device zynq_cpuidle_device = {
>> + .name = "cpuidle-zynq",
>> +};
>> +
>> /**
>> * zynq_init_machine - System specific initialization, intended to be
>> * called from board specific initialization.
>> @@ -56,6 +60,9 @@ static void __init zynq_init_machine(void)
>> l2x0_of_init(0x02060000, 0xF0F0FFFF);
>>
>> of_platform_bus_probe(NULL, zynq_of_bus_ids, NULL);
>> +
>> + if (of_machine_is_compatible("xlnx,zynq-7000"))
>
> This is not needed because all zynq platforms have this compatibility string
> and there is no any other clone.
Ah, ok. So it is not needed in the current code. I will write its
removal in a separate patch.
Thanks
-- Daniel
--
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
WARNING: multiple messages have this Message-ID (diff)
From: daniel.lezcano@linaro.org (Daniel Lezcano)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC PATCH] ARM: zynq: cpuidle: convert to platform driver
Date: Fri, 27 Sep 2013 09:21:52 +0200 [thread overview]
Message-ID: <52453210.6090606@linaro.org> (raw)
In-Reply-To: <22edc518-27ad-4dcf-918a-def23df93bcc@DB9EHSMHS022.ehs.local>
On 09/27/2013 07:12 AM, Michal Simek wrote:
> Hi Daniel,
>
> On 09/26/2013 06:15 PM, Daniel Lezcano wrote:
>> As the ux500 and the kirkwood driver, make the zynq driver a platform driver
>>
>> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
>> ---
>> arch/arm/mach-zynq/common.c | 7 +++++++
>> drivers/cpuidle/cpuidle-zynq.c | 15 ++++++++++-----
>> 2 files changed, 17 insertions(+), 5 deletions(-)
>>
>> diff --git a/arch/arm/mach-zynq/common.c b/arch/arm/mach-zynq/common.c
>> index 5f25256..0f0d88f 100644
>> --- a/arch/arm/mach-zynq/common.c
>> +++ b/arch/arm/mach-zynq/common.c
>> @@ -44,6 +44,10 @@ static struct of_device_id zynq_of_bus_ids[] __initdata = {
>> {}
>> };
>>
>> +static struct platform_device zynq_cpuidle_device = {
>> + .name = "cpuidle-zynq",
>> +};
>> +
>> /**
>> * zynq_init_machine - System specific initialization, intended to be
>> * called from board specific initialization.
>> @@ -56,6 +60,9 @@ static void __init zynq_init_machine(void)
>> l2x0_of_init(0x02060000, 0xF0F0FFFF);
>>
>> of_platform_bus_probe(NULL, zynq_of_bus_ids, NULL);
>> +
>> + if (of_machine_is_compatible("xlnx,zynq-7000"))
>
> This is not needed because all zynq platforms have this compatibility string
> and there is no any other clone.
Ah, ok. So it is not needed in the current code. I will write its
removal in a separate patch.
Thanks
-- Daniel
--
<http://www.linaro.org/> Linaro.org ? Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
next prev parent reply other threads:[~2013-09-27 7:21 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-26 16:15 [RFC PATCH] ARM: zynq: cpuidle: convert to platform driver Daniel Lezcano
2013-09-26 16:15 ` Daniel Lezcano
2013-09-27 5:12 ` Michal Simek
2013-09-27 5:12 ` Michal Simek
2013-09-27 7:21 ` Daniel Lezcano [this message]
2013-09-27 7:21 ` Daniel Lezcano
2013-09-27 8:14 ` Michal Simek
2013-09-27 8:14 ` Michal Simek
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=52453210.6090606@linaro.org \
--to=daniel.lezcano@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-pm@vger.kernel.org \
--cc=michal.simek@xilinx.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 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.