All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chanwoo Choi <cw00.choi@samsung.com>
To: Arnd Bergmann <arnd@arndb.de>, kgene.kim@samsung.com, t.figa@samsung.com
Cc: linux-arm-kernel@lists.infradead.org,
	linux-samsung-soc@vger.kernel.org, hyunhee.kim@samsung.com,
	sw0312.kim@samsung.com, linux-kernel@vger.kernel.org,
	yj44.cho@samsung.com, inki.dae@samsung.com,
	kyungmin.park@samsung.com
Subject: Re: [PATCH 01/27] ARM: EXYNOS: Add Exynos3250 SoC ID
Date: Fri, 11 Apr 2014 10:31:05 +0900	[thread overview]
Message-ID: <534745D9.30604@samsung.com> (raw)
In-Reply-To: <5032959.JQvlxpLHiQ@wuerfel>

Hi,

On 04/10/2014 06:43 PM, Arnd Bergmann wrote:
> On Thursday 10 April 2014 18:28:18 Chanwoo Choi wrote:
>> This patch add Exynos3250's SoC ID. Exynos 3250 is System-On-Chip(SoC) that
>> is based on the 32-bit RISC processor for Smartphone. Exynos3250 uses Cortex-A7
>> dual cores and has a target speed of 1.0GHz.
>>
>> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
>> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
>> ---
>>  arch/arm/mach-exynos/Kconfig             | 22 ++++++++++++++++++++++
>>  arch/arm/mach-exynos/exynos.c            |  1 +
>>  arch/arm/plat-samsung/include/plat/cpu.h | 10 ++++++++++
>>  3 files changed, 33 insertions(+)
>>
>> diff --git a/arch/arm/mach-exynos/Kconfig b/arch/arm/mach-exynos/Kconfig
>> index fc8bf18..6da8a68 100644
>> --- a/arch/arm/mach-exynos/Kconfig
>> +++ b/arch/arm/mach-exynos/Kconfig
>> @@ -11,6 +11,17 @@ if ARCH_EXYNOS
>>  
>>  menu "SAMSUNG EXYNOS SoCs Support"
>>  
>> +config ARCH_EXYNOS3
>> +	bool "SAMSUNG EXYNOS3"
>> +	select ARM_AMBA
>> +	select CLKSRC_OF
>> +	select HAVE_ARM_SCU if SMP
>> +	select HAVE_SMP
>> +	select PINCTRL
>> +	select PM_GENERIC_DOMAINS if PM_RUNTIME
>> +	help
>> +	  Samsung EXYNOS3 SoCs based systems
>> +
> 
> Isn't S5PV210 also called an Exynos3 these days? Are we going to get
> any conflicts here when merging that code into Exynos as Tomasz has
> suggested in the past?

I knew. But, S5PV210/S5PC110 has not yet included in Exynos3 category on mainline.
Need opinion of Exynos SoC Maintainer to clear this ambiguous stuff.

Dear Kukjin and Tomasz,
I need your opinion about this patch.

Best Regards,
Chanwoo Choi



WARNING: multiple messages have this Message-ID (diff)
From: cw00.choi@samsung.com (Chanwoo Choi)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 01/27] ARM: EXYNOS: Add Exynos3250 SoC ID
Date: Fri, 11 Apr 2014 10:31:05 +0900	[thread overview]
Message-ID: <534745D9.30604@samsung.com> (raw)
In-Reply-To: <5032959.JQvlxpLHiQ@wuerfel>

Hi,

On 04/10/2014 06:43 PM, Arnd Bergmann wrote:
> On Thursday 10 April 2014 18:28:18 Chanwoo Choi wrote:
>> This patch add Exynos3250's SoC ID. Exynos 3250 is System-On-Chip(SoC) that
>> is based on the 32-bit RISC processor for Smartphone. Exynos3250 uses Cortex-A7
>> dual cores and has a target speed of 1.0GHz.
>>
>> Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
>> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
>> ---
>>  arch/arm/mach-exynos/Kconfig             | 22 ++++++++++++++++++++++
>>  arch/arm/mach-exynos/exynos.c            |  1 +
>>  arch/arm/plat-samsung/include/plat/cpu.h | 10 ++++++++++
>>  3 files changed, 33 insertions(+)
>>
>> diff --git a/arch/arm/mach-exynos/Kconfig b/arch/arm/mach-exynos/Kconfig
>> index fc8bf18..6da8a68 100644
>> --- a/arch/arm/mach-exynos/Kconfig
>> +++ b/arch/arm/mach-exynos/Kconfig
>> @@ -11,6 +11,17 @@ if ARCH_EXYNOS
>>  
>>  menu "SAMSUNG EXYNOS SoCs Support"
>>  
>> +config ARCH_EXYNOS3
>> +	bool "SAMSUNG EXYNOS3"
>> +	select ARM_AMBA
>> +	select CLKSRC_OF
>> +	select HAVE_ARM_SCU if SMP
>> +	select HAVE_SMP
>> +	select PINCTRL
>> +	select PM_GENERIC_DOMAINS if PM_RUNTIME
>> +	help
>> +	  Samsung EXYNOS3 SoCs based systems
>> +
> 
> Isn't S5PV210 also called an Exynos3 these days? Are we going to get
> any conflicts here when merging that code into Exynos as Tomasz has
> suggested in the past?

I knew. But, S5PV210/S5PC110 has not yet included in Exynos3 category on mainline.
Need opinion of Exynos SoC Maintainer to clear this ambiguous stuff.

Dear Kukjin and Tomasz,
I need your opinion about this patch.

Best Regards,
Chanwoo Choi

  reply	other threads:[~2014-04-11  1:31 UTC|newest]

Thread overview: 122+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-10  9:28 [PATCH 00/27] Support new Exynos3250 SoC based on Cortex-A7 dual core Chanwoo Choi
2014-04-10  9:28 ` Chanwoo Choi
2014-04-10  9:28 ` Chanwoo Choi
2014-04-10  9:28 ` [PATCH 01/27] ARM: EXYNOS: Add Exynos3250 SoC ID Chanwoo Choi
2014-04-10  9:28   ` Chanwoo Choi
2014-04-10  9:28   ` Chanwoo Choi
2014-04-10  9:43   ` Arnd Bergmann
2014-04-10  9:43     ` Arnd Bergmann
2014-04-10  9:43     ` Arnd Bergmann
2014-04-11  1:31     ` Chanwoo Choi [this message]
2014-04-11  1:31       ` Chanwoo Choi
2014-04-14  6:20       ` Chanwoo Choi
2014-04-14  6:20         ` Chanwoo Choi
2014-04-10  9:28 ` [PATCH 02/27] ARM: EXYNOS: Add IO mapping for non-secure SYSRAM of Exynos3250 Chanwoo Choi
2014-04-10  9:28   ` Chanwoo Choi
2014-04-10  9:45   ` Arnd Bergmann
2014-04-10  9:45     ` Arnd Bergmann
2014-04-10  9:45     ` Arnd Bergmann
2014-04-10  9:57     ` Chanho Park
2014-04-10  9:57       ` Chanho Park
2014-04-10  9:28 ` [PATCH 03/27] ARM: EXYNOS: Add IO mapping for PMU " Chanwoo Choi
2014-04-10  9:28   ` Chanwoo Choi
2014-04-10  9:46   ` Arnd Bergmann
2014-04-10  9:46     ` Arnd Bergmann
2014-04-10  9:46     ` Arnd Bergmann
2014-04-14  6:04     ` Chanwoo Choi
2014-04-14  6:04       ` Chanwoo Choi
2014-04-10  9:28 ` [PATCH 04/27] ARM: EXYNOS: Support secondary CPU boot of Exynos4212 Chanwoo Choi
2014-04-10  9:28   ` Chanwoo Choi
2014-04-10  9:28 ` [PATCH 05/27] ARM: EXYNOS: Support secondary CPU boot of Exynos3250 Chanwoo Choi
2014-04-10  9:28   ` Chanwoo Choi
2014-04-10  9:28 ` [PATCH 06/27] ARM: EXYNOS:: Enter a15 lowpower mode for Exynos3250 based on Cortex-a7 Chanwoo Choi
2014-04-10  9:28   ` Chanwoo Choi
2014-04-10  9:28   ` Chanwoo Choi
2014-04-10  9:40   ` Arnd Bergmann
2014-04-10  9:40     ` Arnd Bergmann
2014-04-10 10:38     ` Chanwoo Choi
2014-04-10 10:38       ` Chanwoo Choi
2014-04-10  9:51   ` Marc Zyngier
2014-04-10  9:51     ` Marc Zyngier
2014-04-10  9:51     ` Marc Zyngier
2014-04-10 10:56     ` Chanwoo Choi
2014-04-10 10:56       ` Chanwoo Choi
2014-04-10 10:56       ` Chanwoo Choi
2014-04-10 12:07       ` Marc Zyngier
2014-04-10 12:07         ` Marc Zyngier
2014-04-10 12:07         ` Marc Zyngier
2014-04-11  0:36         ` Chanwoo Choi
2014-04-11  0:36           ` Chanwoo Choi
2014-04-11  0:36           ` Chanwoo Choi
2014-04-10  9:28 ` [PATCH 07/27] irqchip: Declare cortex-a7's irqchip to initialize gic from dt Chanwoo Choi
2014-04-10  9:28   ` Chanwoo Choi
2014-04-10  9:28   ` Chanwoo Choi
2014-04-10 10:04   ` Marc Zyngier
2014-04-10 10:04     ` Marc Zyngier
2014-04-10 10:04     ` Marc Zyngier
2014-04-10 10:09     ` armdev
2014-04-10 10:09       ` armdev
2014-04-10 10:09       ` armdev
2014-04-10 10:21       ` Marc Zyngier
2014-04-10 10:21         ` Marc Zyngier
2014-04-10 10:21         ` Marc Zyngier
2014-04-10 10:30         ` armdev
2014-04-10 10:30           ` armdev
2014-04-10 10:30           ` armdev
2014-04-10 10:41           ` Marc Zyngier
2014-04-10 10:41             ` Marc Zyngier
2014-04-10 10:41             ` Marc Zyngier
2014-04-10 10:42             ` armdev
2014-04-10 10:42               ` armdev
2014-04-10 10:42               ` armdev
2014-04-10 10:50               ` Marc Zyngier
2014-04-10 10:50                 ` Marc Zyngier
2014-04-10 10:50                 ` Marc Zyngier
2014-04-10 10:37     ` Chanho Park
2014-04-10 10:37       ` Chanho Park
2014-04-10 10:46       ` Marc Zyngier
2014-04-10 10:46         ` Marc Zyngier
2014-04-10 10:46         ` Marc Zyngier
2014-04-10 13:02     ` Mark Rutland
2014-04-10 13:02       ` Mark Rutland
2014-04-10 13:02       ` Mark Rutland
2014-04-10  9:28 ` [PATCH 08/27] pinctrl: exynos: Add driver data for Exynos3250 Chanwoo Choi
2014-04-10  9:28   ` Chanwoo Choi
2014-04-10 18:42   ` Linus Walleij
2014-04-10 18:42     ` Linus Walleij
2014-04-10 18:42     ` Linus Walleij
2014-04-10 19:17     ` Tomasz Figa
2014-04-10 19:17       ` Tomasz Figa
2014-04-10 19:17       ` Tomasz Figa
2014-04-11  0:44       ` Chanwoo Choi
2014-04-11  0:44         ` Chanwoo Choi
2014-04-11  0:44         ` Chanwoo Choi
2014-04-10  9:32 ` [PATCH 00/27] Support new Exynos3250 SoC based on Cortex-A7 dual core Chanwoo Choi
2014-04-10  9:32   ` Chanwoo Choi
2014-04-10  9:37 Chanwoo Choi
2014-04-10  9:37 ` [PATCH 01/27] ARM: EXYNOS: Add Exynos3250 SoC ID Chanwoo Choi
2014-04-10  9:37   ` Chanwoo Choi
2014-04-11  1:46   ` Olof Johansson
2014-04-11  1:46     ` Olof Johansson
2014-04-11  6:32     ` Chanwoo Choi
2014-04-11  6:32       ` Chanwoo Choi
2014-04-11  7:09       ` Chanwoo Choi
2014-04-11  7:09         ` Chanwoo Choi
2014-04-11  8:12         ` Arnd Bergmann
2014-04-11  8:12           ` Arnd Bergmann
2014-04-11  8:12           ` Arnd Bergmann
2014-04-11  8:39       ` Tomasz Figa
2014-04-11  8:39         ` Tomasz Figa
2014-04-14  5:13         ` Chanwoo Choi
2014-04-14  5:13           ` Chanwoo Choi
2014-04-16 15:53           ` Tomasz Figa
2014-04-16 15:53             ` Tomasz Figa
2014-04-17  1:37             ` Chanwoo Choi
2014-04-17  1:37               ` Chanwoo Choi
2014-04-11  3:56   ` Sachin Kamat
2014-04-11  3:56     ` Sachin Kamat
2014-04-11  5:54     ` Chanwoo Choi
2014-04-11  5:54       ` Chanwoo Choi
2014-04-11  5:56       ` Sachin Kamat
2014-04-11  5:56         ` Sachin Kamat
2014-04-11  6:07         ` Chanwoo Choi
2014-04-11  6:07           ` Chanwoo Choi

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=534745D9.30604@samsung.com \
    --to=cw00.choi@samsung.com \
    --cc=arnd@arndb.de \
    --cc=hyunhee.kim@samsung.com \
    --cc=inki.dae@samsung.com \
    --cc=kgene.kim@samsung.com \
    --cc=kyungmin.park@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=sw0312.kim@samsung.com \
    --cc=t.figa@samsung.com \
    --cc=yj44.cho@samsung.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.