From: Josh Cartwright <joshc@codeaurora.org>
To: "Ivan T. Ivanov" <iivanov@mm-sol.com>
Cc: Rohit Vaswani <rvaswani@codeaurora.org>,
David Brown <davidb@codeaurora.org>,
Mark Rutland <mark.rutland@arm.com>,
devicetree@vger.kernel.org, Russell King <linux@arm.linux.org.uk>,
Ian Campbell <ian.campbell@citrix.com>,
Pawel Moll <pawel.moll@arm.com>,
Stephen Warren <swarren@wwwdotorg.org>,
linux-arm-msm@vger.kernel.org,
Rob Herring <rob.herring@calxeda.com>,
linux-kernel@vger.kernel.org,
Bryan Huntsman <bryanh@codeaurora.org>,
Daniel Walker <dwalker@fifo99.com>,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/2] ARM: msm: Add support for MSM8974 Dragonboard
Date: Wed, 11 Sep 2013 13:12:26 -0500 [thread overview]
Message-ID: <20130911181226.GU808@joshc.qualcomm.com> (raw)
In-Reply-To: <1375780486.2725.7.camel@iivanov-dev.int.mm-sol.com>
Hey Ivan-
On Tue, Aug 06, 2013 at 12:14:46PM +0300, Ivan T. Ivanov wrote:
[..]
> Enable low-level debug print routines to direct their
> output to the serial port on MSM 8974 devices.
>
> Signed-off-by: Ivan T. Ivanov <iivanov@mm-sol.com>
> ---
> arch/arm/Kconfig.debug | 8 ++++++++
> arch/arm/mach-msm/board-dt-8974.c | 2 ++
> arch/arm/mach-msm/include/mach/msm_iomap.h | 4 ++++
> 3 files changed, 14 insertions(+)
[..]
> diff --git a/arch/arm/mach-msm/board-dt-8974.c b/arch/arm/mach-msm/board-dt-8974.c
> index 697623e..0ce016a 100644
> --- a/arch/arm/mach-msm/board-dt-8974.c
> +++ b/arch/arm/mach-msm/board-dt-8974.c
> @@ -12,6 +12,7 @@
>
> #include <linux/of_platform.h>
> #include <asm/mach/arch.h>
> +#include <asm/mach/map.h>
>
> static const char * const msm8974_dt_match[] __initconst = {
> "qcom,msm8974-db",
> @@ -20,4 +21,5 @@ static const char * const msm8974_dt_match[] __initconst = {
>
> DT_MACHINE_START(MSM8974_DT, "Qualcomm MSM (Flattened Device Tree)")
> .dt_compat = msm8974_dt_match,
> + .map_io = debug_ll_io_init,
If/when you get this patch cooked up ontop of Rohit's, changes to this
file (renamed to board-dt.c) should not be necessary. As of bc37324
("ARM: mmu: Call debug_ll_io_init if no map_io function is specified"),
the debug ll uart mapping is setup automatically.
Thanks,
Josh
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation
WARNING: multiple messages have this Message-ID (diff)
From: joshc@codeaurora.org (Josh Cartwright)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/2] ARM: msm: Add support for MSM8974 Dragonboard
Date: Wed, 11 Sep 2013 13:12:26 -0500 [thread overview]
Message-ID: <20130911181226.GU808@joshc.qualcomm.com> (raw)
In-Reply-To: <1375780486.2725.7.camel@iivanov-dev.int.mm-sol.com>
Hey Ivan-
On Tue, Aug 06, 2013 at 12:14:46PM +0300, Ivan T. Ivanov wrote:
[..]
> Enable low-level debug print routines to direct their
> output to the serial port on MSM 8974 devices.
>
> Signed-off-by: Ivan T. Ivanov <iivanov@mm-sol.com>
> ---
> arch/arm/Kconfig.debug | 8 ++++++++
> arch/arm/mach-msm/board-dt-8974.c | 2 ++
> arch/arm/mach-msm/include/mach/msm_iomap.h | 4 ++++
> 3 files changed, 14 insertions(+)
[..]
> diff --git a/arch/arm/mach-msm/board-dt-8974.c b/arch/arm/mach-msm/board-dt-8974.c
> index 697623e..0ce016a 100644
> --- a/arch/arm/mach-msm/board-dt-8974.c
> +++ b/arch/arm/mach-msm/board-dt-8974.c
> @@ -12,6 +12,7 @@
>
> #include <linux/of_platform.h>
> #include <asm/mach/arch.h>
> +#include <asm/mach/map.h>
>
> static const char * const msm8974_dt_match[] __initconst = {
> "qcom,msm8974-db",
> @@ -20,4 +21,5 @@ static const char * const msm8974_dt_match[] __initconst = {
>
> DT_MACHINE_START(MSM8974_DT, "Qualcomm MSM (Flattened Device Tree)")
> .dt_compat = msm8974_dt_match,
> + .map_io = debug_ll_io_init,
If/when you get this patch cooked up ontop of Rohit's, changes to this
file (renamed to board-dt.c) should not be necessary. As of bc37324
("ARM: mmu: Call debug_ll_io_init if no map_io function is specified"),
the debug ll uart mapping is setup automatically.
Thanks,
Josh
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation
next prev parent reply other threads:[~2013-09-11 18:13 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-05 23:02 [PATCH 1/2] ARM: msm: Add support for MSM8974 Dragonboard Rohit Vaswani
2013-08-05 23:02 ` Rohit Vaswani
2013-08-05 23:02 ` [PATCH 2/2] defconfig: msm_defconfig: Enable CONFIG_ARCH_MSM8974 Rohit Vaswani
2013-08-05 23:02 ` Rohit Vaswani
2013-08-06 9:14 ` [PATCH 1/2] ARM: msm: Add support for MSM8974 Dragonboard Ivan T. Ivanov
2013-08-06 9:14 ` Ivan T. Ivanov
2013-09-11 18:00 ` David Brown
2013-09-11 18:00 ` David Brown
2013-09-12 14:05 ` Ivan T. Ivanov
2013-09-12 14:05 ` Ivan T. Ivanov
2013-09-12 16:34 ` Rohit Vaswani
2013-09-12 16:34 ` Rohit Vaswani
2013-09-13 6:56 ` Ivan T. Ivanov
2013-09-13 6:56 ` Ivan T. Ivanov
2013-09-11 18:12 ` Josh Cartwright [this message]
2013-09-11 18:12 ` Josh Cartwright
2013-09-12 14:03 ` Ivan T. Ivanov
2013-09-12 14:03 ` Ivan T. Ivanov
2013-08-06 14:01 ` Javier Martinez Canillas
2013-08-06 14:01 ` Javier Martinez Canillas
2013-08-06 18:32 ` Rohit Vaswani
2013-08-06 18:32 ` Rohit Vaswani
2013-08-06 15:47 ` Kumar Gala
2013-08-06 15:47 ` Kumar Gala
2013-08-06 18:28 ` Rohit Vaswani
2013-08-06 18:28 ` Rohit Vaswani
2013-08-06 18:33 ` Kumar Gala
2013-08-06 18:33 ` Kumar Gala
[not found] ` <1375743779-24993-1-git-send-email-rvaswani-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2013-09-13 14:40 ` Mark Rutland
2013-09-13 14:40 ` Mark Rutland
2013-09-13 14:40 ` Mark Rutland
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=20130911181226.GU808@joshc.qualcomm.com \
--to=joshc@codeaurora.org \
--cc=bryanh@codeaurora.org \
--cc=davidb@codeaurora.org \
--cc=devicetree@vger.kernel.org \
--cc=dwalker@fifo99.com \
--cc=ian.campbell@citrix.com \
--cc=iivanov@mm-sol.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=mark.rutland@arm.com \
--cc=pawel.moll@arm.com \
--cc=rob.herring@calxeda.com \
--cc=rvaswani@codeaurora.org \
--cc=swarren@wwwdotorg.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.