From: "Heiko Stübner" <heiko@sntech.de>
To: Kukjin Kim <kgene.kim@samsung.com>, arm@kernel.org
Cc: t.figa@samsung.com, linux-samsung-soc@vger.kernel.org,
'Russell King' <linux@arm.linux.org.uk>,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2 0/4] ARM: S3C24XX: cleanup debug macro/earlyprintk
Date: Tue, 06 May 2014 10:44:01 +0200 [thread overview]
Message-ID: <2586347.kOddnpvo1Z@diego> (raw)
In-Reply-To: <0cc401cf68e1$eb87f580$c297e080$@samsung.com>
Am Dienstag, 6. Mai 2014, 13:16:14 schrieb Kukjin Kim:
> Heiko Stübner wrote:
> > This series tries to simplify the s3c24xx debug macro, removing
> > dependencies
> > on mach/ includes, static mappings and finally moving it into
> > include/debug.
>
> I think, it's good way :)
>
> > The one slightly invasive change is the need for the developer to select
> > the uart type by himself, which gets rid of the debug macro trying to
> > determine the uart type itself.
> >
> > But as usage of the debug-uart is not the common case - especially in a
> > multiplatform scenario - I didn't worry to much.
>
> Yeah, I also don't want s3c24xx to support multiplatform in near future.
>
> > Based on 3.15-rc1 and tested on a S3C2442 Openmoko Freerunner (GTA02)
> >
> > changes since v1:
> > - do not introduce a secondary choice option, instead implement the
> >
> > s3c2410 debug uarts as separate options
> >
> > Heiko Stuebner (4):
> > ARM: compressed/head.S: remove s3c24xx special case
> > ARM: S3C24XX: trim down debug uart handling
> > ARM: S3C24XX: use generic DEBUG_UART_PHY/_VIRT in debug macro
> > ARM: S3C24XX: move debug-macro.S into the common space
> >
> > arch/arm/Kconfig.debug | 54 +++++++++++-
> > arch/arm/boot/compressed/head.S | 5 --
> > arch/arm/include/debug/s3c24xx.S | 46 +++++++++++
> > arch/arm/mach-s3c24xx/Kconfig | 28 -------
> > arch/arm/mach-s3c24xx/include/mach/debug-macro.S | 101 ------------------
> >
> > -----
> >
> > 5 files changed, 98 insertions(+), 136 deletions(-)
> > create mode 100644 arch/arm/include/debug/s3c24xx.S
> > delete mode 100644 arch/arm/mach-s3c24xx/include/mach/debug-macro.S
> >
> > --
> > 1.9.0
>
> Basically I'm OK on this series but need to get review from Russell?
Russell pointed out a bad decision on my part in v1, so I guess he is aware of
this series :-) . I've also added arm@kernel.org now, so they can complain, if
anything is done wrong [should've probably done that from the beginning].
Heiko
WARNING: multiple messages have this Message-ID (diff)
From: heiko@sntech.de (Heiko Stübner)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 0/4] ARM: S3C24XX: cleanup debug macro/earlyprintk
Date: Tue, 06 May 2014 10:44:01 +0200 [thread overview]
Message-ID: <2586347.kOddnpvo1Z@diego> (raw)
In-Reply-To: <0cc401cf68e1$eb87f580$c297e080$@samsung.com>
Am Dienstag, 6. Mai 2014, 13:16:14 schrieb Kukjin Kim:
> Heiko St?bner wrote:
> > This series tries to simplify the s3c24xx debug macro, removing
> > dependencies
> > on mach/ includes, static mappings and finally moving it into
> > include/debug.
>
> I think, it's good way :)
>
> > The one slightly invasive change is the need for the developer to select
> > the uart type by himself, which gets rid of the debug macro trying to
> > determine the uart type itself.
> >
> > But as usage of the debug-uart is not the common case - especially in a
> > multiplatform scenario - I didn't worry to much.
>
> Yeah, I also don't want s3c24xx to support multiplatform in near future.
>
> > Based on 3.15-rc1 and tested on a S3C2442 Openmoko Freerunner (GTA02)
> >
> > changes since v1:
> > - do not introduce a secondary choice option, instead implement the
> >
> > s3c2410 debug uarts as separate options
> >
> > Heiko Stuebner (4):
> > ARM: compressed/head.S: remove s3c24xx special case
> > ARM: S3C24XX: trim down debug uart handling
> > ARM: S3C24XX: use generic DEBUG_UART_PHY/_VIRT in debug macro
> > ARM: S3C24XX: move debug-macro.S into the common space
> >
> > arch/arm/Kconfig.debug | 54 +++++++++++-
> > arch/arm/boot/compressed/head.S | 5 --
> > arch/arm/include/debug/s3c24xx.S | 46 +++++++++++
> > arch/arm/mach-s3c24xx/Kconfig | 28 -------
> > arch/arm/mach-s3c24xx/include/mach/debug-macro.S | 101 ------------------
> >
> > -----
> >
> > 5 files changed, 98 insertions(+), 136 deletions(-)
> > create mode 100644 arch/arm/include/debug/s3c24xx.S
> > delete mode 100644 arch/arm/mach-s3c24xx/include/mach/debug-macro.S
> >
> > --
> > 1.9.0
>
> Basically I'm OK on this series but need to get review from Russell?
Russell pointed out a bad decision on my part in v1, so I guess he is aware of
this series :-) . I've also added arm at kernel.org now, so they can complain, if
anything is done wrong [should've probably done that from the beginning].
Heiko
next prev parent reply other threads:[~2014-05-06 8:44 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-24 13:21 [PATCH v2 0/4] ARM: S3C24XX: cleanup debug macro/earlyprintk Heiko Stübner
2014-04-24 13:21 ` Heiko Stübner
2014-04-24 13:22 ` [PATCH v2 1/4] ARM: compressed/head.S: remove s3c24xx special case Heiko Stübner
2014-04-24 13:22 ` Heiko Stübner
2014-04-24 13:23 ` [PATCH v2 2/4] ARM: S3C24XX: trim down debug uart handling Heiko Stübner
2014-04-24 13:23 ` Heiko Stübner
2014-04-24 13:23 ` [PATCH v2 3/4] ARM: S3C24XX: use generic DEBUG_UART_PHY/_VIRT in debug macro Heiko Stübner
2014-04-24 13:23 ` Heiko Stübner
2014-04-24 13:24 ` [PATCH v2 4/4] ARM: S3C24XX: move debug-macro.S into the common space Heiko Stübner
2014-04-24 13:24 ` Heiko Stübner
2014-05-06 4:16 ` [PATCH v2 0/4] ARM: S3C24XX: cleanup debug macro/earlyprintk Kukjin Kim
2014-05-06 4:16 ` Kukjin Kim
2014-05-06 8:44 ` Heiko Stübner [this message]
2014-05-06 8:44 ` Heiko Stübner
2014-05-13 5:32 ` Kukjin Kim
2014-05-13 5:32 ` 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=2586347.kOddnpvo1Z@diego \
--to=heiko@sntech.de \
--cc=arm@kernel.org \
--cc=kgene.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=t.figa@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.