From: Kukjin Kim <kgene.kim@samsung.com>
To: "Heiko Stübner" <heiko@sntech.de>
Cc: Kukjin Kim <kgene.kim@samsung.com>,
linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org, rmk+kernel@arm.linux.org.uk,
ben-linux@fluff.org
Subject: Re: [PATCH 12/12] ARM: restart: S3C24XX: use new restart hook
Date: Tue, 20 Dec 2011 22:34:58 +0900 [thread overview]
Message-ID: <4EF08F02.9010604@samsung.com> (raw)
In-Reply-To: <201112201418.07935.heiko@sntech.de>
On 12/20/11 22:18, Heiko Stübner wrote:
> Am Dienstag, 20. Dezember 2011, 13:48:36 schrieb Kukjin Kim:
>> Hook these platforms restart code into the new restart hook rather
>> than using arch_reset().
>> And adds local header file, common.h in arch/arm/mach-s3c2410/ and
>> arch/arm/mach-s3c2440/ directories.
>>
>> Cc: Ben Dooks<ben-linux@fluff.org>
>> Cc: Russell King<rmk+kernel@arm.linux.org.uk>
>> Signed-off-by: Kukjin Kim<kgene.kim@samsung.com>
> just for my understanding would it not also be possible to move the function
> prototype to plat-samsung/include/plat/s3c2410.h and s3c244x.h?
>
Hi Heiko,
Yeah, we have many choices about that and I will sort out the
mach-s3c24.. directories to mach-s3c24xx or just mach-s3c...
> Or should these files vanish in the long run?
>
Yes, as per Russell's suggestion, I think we don't need that and as a
note, I'm working on removing plat-s3c24xx and plat-s5p, just keeping
one plat-samsung.
>
> Also, if you have a minute could you take a look at the
> [PATCH 1/8] s3c-hsudc: move platform_data struct to global header
> from yesterday, as Felipe Balbi would like an Ack on it.
>
Sure, let me look at that tomorrow with others.
Thanks.
Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.
>
>> ---
>> arch/arm/mach-s3c2410/common.h | 17 +++++++++++++
>> arch/arm/mach-s3c2410/include/mach/system-reset.h | 27
>> --------------------- arch/arm/mach-s3c2410/include/mach/system.h |
>> 2 -
>> arch/arm/mach-s3c2410/mach-amlm5900.c | 3 ++
>> arch/arm/mach-s3c2410/mach-bast.c | 2 +
>> arch/arm/mach-s3c2410/mach-h1940.c | 3 ++
>> arch/arm/mach-s3c2410/mach-n30.c | 4 +++
>> arch/arm/mach-s3c2410/mach-otom.c | 3 ++
>> arch/arm/mach-s3c2410/mach-qt2410.c | 5 ++-
>> arch/arm/mach-s3c2410/mach-smdk2410.c | 5 ++-
>> arch/arm/mach-s3c2410/mach-tct_hammer.c | 3 ++
>> arch/arm/mach-s3c2410/mach-vr1000.c | 2 +
>> arch/arm/mach-s3c2410/s3c2410.c | 9 +++++++
>> arch/arm/mach-s3c2440/common.h | 17 +++++++++++++
>> arch/arm/mach-s3c2440/mach-anubis.c | 3 ++
>> arch/arm/mach-s3c2440/mach-at2440evb.c | 3 ++
>> arch/arm/mach-s3c2440/mach-gta02.c | 2 +
>> arch/arm/mach-s3c2440/mach-mini2440.c | 3 ++
>> arch/arm/mach-s3c2440/mach-nexcoder.c | 3 ++
>> arch/arm/mach-s3c2440/mach-osiris.c | 3 ++
>> arch/arm/mach-s3c2440/mach-rx1950.c | 3 ++
>> arch/arm/mach-s3c2440/mach-rx3715.c | 3 ++
>> arch/arm/mach-s3c2440/mach-smdk2440.c | 3 ++
>> arch/arm/mach-s3c2440/s3c2440.c | 9 +++++++
>> arch/arm/plat-s3c24xx/cpu.c | 2 -
>> 25 files changed, 104 insertions(+), 35 deletions(-)
>> create mode 100644 arch/arm/mach-s3c2410/common.h
>> delete mode 100644 arch/arm/mach-s3c2410/include/mach/system-reset.h
>> create mode 100644 arch/arm/mach-s3c2440/common.h
WARNING: multiple messages have this Message-ID (diff)
From: kgene.kim@samsung.com (Kukjin Kim)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 12/12] ARM: restart: S3C24XX: use new restart hook
Date: Tue, 20 Dec 2011 22:34:58 +0900 [thread overview]
Message-ID: <4EF08F02.9010604@samsung.com> (raw)
In-Reply-To: <201112201418.07935.heiko@sntech.de>
On 12/20/11 22:18, Heiko St?bner wrote:
> Am Dienstag, 20. Dezember 2011, 13:48:36 schrieb Kukjin Kim:
>> Hook these platforms restart code into the new restart hook rather
>> than using arch_reset().
>> And adds local header file, common.h in arch/arm/mach-s3c2410/ and
>> arch/arm/mach-s3c2440/ directories.
>>
>> Cc: Ben Dooks<ben-linux@fluff.org>
>> Cc: Russell King<rmk+kernel@arm.linux.org.uk>
>> Signed-off-by: Kukjin Kim<kgene.kim@samsung.com>
> just for my understanding would it not also be possible to move the function
> prototype to plat-samsung/include/plat/s3c2410.h and s3c244x.h?
>
Hi Heiko,
Yeah, we have many choices about that and I will sort out the
mach-s3c24.. directories to mach-s3c24xx or just mach-s3c...
> Or should these files vanish in the long run?
>
Yes, as per Russell's suggestion, I think we don't need that and as a
note, I'm working on removing plat-s3c24xx and plat-s5p, just keeping
one plat-samsung.
>
> Also, if you have a minute could you take a look at the
> [PATCH 1/8] s3c-hsudc: move platform_data struct to global header
> from yesterday, as Felipe Balbi would like an Ack on it.
>
Sure, let me look at that tomorrow with others.
Thanks.
Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.
>
>> ---
>> arch/arm/mach-s3c2410/common.h | 17 +++++++++++++
>> arch/arm/mach-s3c2410/include/mach/system-reset.h | 27
>> --------------------- arch/arm/mach-s3c2410/include/mach/system.h |
>> 2 -
>> arch/arm/mach-s3c2410/mach-amlm5900.c | 3 ++
>> arch/arm/mach-s3c2410/mach-bast.c | 2 +
>> arch/arm/mach-s3c2410/mach-h1940.c | 3 ++
>> arch/arm/mach-s3c2410/mach-n30.c | 4 +++
>> arch/arm/mach-s3c2410/mach-otom.c | 3 ++
>> arch/arm/mach-s3c2410/mach-qt2410.c | 5 ++-
>> arch/arm/mach-s3c2410/mach-smdk2410.c | 5 ++-
>> arch/arm/mach-s3c2410/mach-tct_hammer.c | 3 ++
>> arch/arm/mach-s3c2410/mach-vr1000.c | 2 +
>> arch/arm/mach-s3c2410/s3c2410.c | 9 +++++++
>> arch/arm/mach-s3c2440/common.h | 17 +++++++++++++
>> arch/arm/mach-s3c2440/mach-anubis.c | 3 ++
>> arch/arm/mach-s3c2440/mach-at2440evb.c | 3 ++
>> arch/arm/mach-s3c2440/mach-gta02.c | 2 +
>> arch/arm/mach-s3c2440/mach-mini2440.c | 3 ++
>> arch/arm/mach-s3c2440/mach-nexcoder.c | 3 ++
>> arch/arm/mach-s3c2440/mach-osiris.c | 3 ++
>> arch/arm/mach-s3c2440/mach-rx1950.c | 3 ++
>> arch/arm/mach-s3c2440/mach-rx3715.c | 3 ++
>> arch/arm/mach-s3c2440/mach-smdk2440.c | 3 ++
>> arch/arm/mach-s3c2440/s3c2440.c | 9 +++++++
>> arch/arm/plat-s3c24xx/cpu.c | 2 -
>> 25 files changed, 104 insertions(+), 35 deletions(-)
>> create mode 100644 arch/arm/mach-s3c2410/common.h
>> delete mode 100644 arch/arm/mach-s3c2410/include/mach/system-reset.h
>> create mode 100644 arch/arm/mach-s3c2440/common.h
next prev parent reply other threads:[~2011-12-20 13:35 UTC|newest]
Thread overview: 82+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-20 12:48 [PATCH 00/12] ARM: restart: SAMSUNG: use new restart hook Kukjin Kim
2011-12-20 12:48 ` Kukjin Kim
2011-12-20 12:48 ` [PATCH 01/12] ARM: S3C64XX: introduce arch/arm/mach-s3c64xx/common.[ch] Kukjin Kim
2011-12-20 12:48 ` Kukjin Kim
2011-12-20 12:48 ` [PATCH 02/12] ARM: restart: S3C64XX: use new restart hook Kukjin Kim
2011-12-20 12:48 ` Kukjin Kim
2011-12-21 1:45 ` Kukjin Kim
2011-12-21 1:45 ` Kukjin Kim
2012-01-03 11:51 ` Russell King - ARM Linux
2012-01-03 11:51 ` Russell King - ARM Linux
2011-12-20 12:48 ` [PATCH 03/12] ARM: S5P64X0: introduce arch/arm/mach-s5p64x0/common.[ch] Kukjin Kim
2011-12-20 12:48 ` Kukjin Kim
2011-12-20 12:48 ` [PATCH 04/12] ARM: restart: S5P64X0: use new restart hook Kukjin Kim
2011-12-20 12:48 ` Kukjin Kim
2011-12-21 1:38 ` Kukjin Kim
2011-12-21 1:38 ` Kukjin Kim
2011-12-20 12:48 ` [PATCH 05/12] ARM: S5PC100: introduce arch/arm/mach-s5pc100/common.[ch] Kukjin Kim
2011-12-20 12:48 ` Kukjin Kim
2011-12-20 12:48 ` [PATCH 06/12] ARM: restart: S5PC100: use new restart hook Kukjin Kim
2011-12-20 12:48 ` Kukjin Kim
2011-12-21 1:39 ` Kukjin Kim
2011-12-21 1:39 ` Kukjin Kim
2011-12-20 12:48 ` [PATCH 07/12] ARM: S5PV210: introduce arch/arm/mach-s5pv210/common.[ch] Kukjin Kim
2011-12-20 12:48 ` Kukjin Kim
2011-12-23 19:14 ` Russell King - ARM Linux
2011-12-23 19:14 ` Russell King - ARM Linux
2011-12-20 12:48 ` [PATCH 08/12] ARM: restart: S5PV210: use new restart hook Kukjin Kim
2011-12-20 12:48 ` Kukjin Kim
2011-12-21 1:40 ` Kukjin Kim
2011-12-21 1:40 ` Kukjin Kim
2011-12-20 12:48 ` [PATCH 09/12] ARM: EXYNOS: introduce arch/arm/mach-exynos/common.[ch] Kukjin Kim
2011-12-20 12:48 ` Kukjin Kim
2011-12-23 19:19 ` Russell King - ARM Linux
2011-12-23 19:19 ` Russell King - ARM Linux
2011-12-24 1:10 ` Kukjin Kim
2011-12-24 1:10 ` Kukjin Kim
2011-12-27 7:31 ` Kukjin Kim
2011-12-27 7:31 ` Kukjin Kim
2012-01-03 10:41 ` Russell King - ARM Linux
2012-01-03 10:41 ` Russell King - ARM Linux
2012-01-03 10:49 ` Kukjin Kim
2012-01-03 10:49 ` Kukjin Kim
2012-01-03 10:54 ` Russell King - ARM Linux
2012-01-03 10:54 ` Russell King - ARM Linux
2012-01-03 11:01 ` Kukjin Kim
2012-01-03 11:01 ` Kukjin Kim
2012-01-03 11:20 ` Russell King - ARM Linux
2012-01-03 11:20 ` Russell King - ARM Linux
2012-01-03 11:54 ` Kukjin Kim
2012-01-03 11:54 ` Kukjin Kim
2012-01-03 12:00 ` Russell King - ARM Linux
2012-01-03 12:00 ` Russell King - ARM Linux
2012-01-03 12:07 ` Kukjin Kim
2012-01-03 12:07 ` Kukjin Kim
2011-12-20 12:48 ` [PATCH 10/12] ARM: restart: EXYNOS: use new restart hook Kukjin Kim
2011-12-20 12:48 ` Kukjin Kim
2011-12-21 1:42 ` Kukjin Kim
2011-12-21 1:42 ` Kukjin Kim
2011-12-20 12:48 ` [PATCH 11/12] ARM: restart: S3C24XX: move SWRST based S3C platforms to machine_desc hook Kukjin Kim
2011-12-20 12:48 ` Kukjin Kim
2011-12-20 12:48 ` [PATCH 12/12] ARM: restart: S3C24XX: use new restart hook Kukjin Kim
2011-12-20 12:48 ` Kukjin Kim
2011-12-20 13:18 ` Heiko Stübner
2011-12-20 13:18 ` Heiko Stübner
2011-12-20 13:34 ` Kukjin Kim [this message]
2011-12-20 13:34 ` Kukjin Kim
2012-01-02 13:14 ` Heiko Stübner
2012-01-02 13:14 ` Heiko Stübner
2012-01-02 13:26 ` Mark Brown
2012-01-02 13:26 ` Mark Brown
2012-01-02 13:33 ` Heiko Stübner
2012-01-02 13:33 ` Heiko Stübner
2012-01-02 13:39 ` Mark Brown
2012-01-02 13:39 ` Mark Brown
2012-01-03 6:08 ` Kukjin Kim
2012-01-03 6:08 ` Kukjin Kim
2011-12-21 1:44 ` Kukjin Kim
2011-12-21 1:44 ` Kukjin Kim
2011-12-20 21:00 ` [PATCH 00/12] ARM: restart: SAMSUNG: " Russell King - ARM Linux
2011-12-20 21:00 ` Russell King - ARM Linux
2011-12-21 1:37 ` Kukjin Kim
2011-12-21 1:37 ` Kukjin Kim
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=4EF08F02.9010604@samsung.com \
--to=kgene.kim@samsung.com \
--cc=ben-linux@fluff.org \
--cc=heiko@sntech.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=rmk+kernel@arm.linux.org.uk \
/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.