LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Emil Medve <Emilian.Medve@Freescale.com>
To: <scottwood@Freescale.com>, <linuxppc-dev@lists.ozlabs.org>,
<linux-kernel@vger.kernel.org>
Cc: Geoff Thorpe <Geoff.Thorpe@Freescale.com>
Subject: [RFC v3 04/10] powerpc/mpc85xx: Add platform support for the Freescale DPAA QMan
Date: Mon, 9 Mar 2015 09:41:49 -0500 [thread overview]
Message-ID: <1425912115-27398-5-git-send-email-Emilian.Medve@Freescale.com> (raw)
In-Reply-To: <1425912115-27398-1-git-send-email-Emilian.Medve@Freescale.com>
From: Geoff Thorpe <Geoff.Thorpe@freescale.com>
Signed-off-by: Geoff Thorpe <Geoff.Thorpe@freescale.com>
---
arch/powerpc/platforms/85xx/corenet_generic.c | 8 +++++++-
arch/powerpc/platforms/85xx/p1023_rdb.c | 8 +++++++-
2 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/arch/powerpc/platforms/85xx/corenet_generic.c b/arch/powerpc/platforms/85xx/corenet_generic.c
index c5a82c9..255f542 100644
--- a/arch/powerpc/platforms/85xx/corenet_generic.c
+++ b/arch/powerpc/platforms/85xx/corenet_generic.c
@@ -201,15 +201,21 @@ static int __init corenet_generic_probe(void)
}
/* Early setup is required for large chunks of contiguous (and coarsely-aligned)
- * memory. The following shoe-horns BMan "init_early" calls into the
+ * memory. The following shoe-horns Q/BMan "init_early" calls into the
* platform setup to let them parse their CCSR nodes early on.
*/
+#ifdef CONFIG_FSL_QMAN_CONFIG
+void __init qman_init_early(void);
+#endif
#ifdef CONFIG_FSL_BMAN_CONFIG
void __init bman_init_early(void);
#endif
__init void corenet_ds_init_early(void)
{
+#ifdef CONFIG_FSL_QMAN_CONFIG
+ qman_init_early();
+#endif
#ifdef CONFIG_FSL_BMAN_CONFIG
bman_init_early();
#endif
diff --git a/arch/powerpc/platforms/85xx/p1023_rdb.c b/arch/powerpc/platforms/85xx/p1023_rdb.c
index e629394..ab06296 100644
--- a/arch/powerpc/platforms/85xx/p1023_rdb.c
+++ b/arch/powerpc/platforms/85xx/p1023_rdb.c
@@ -106,14 +106,20 @@ static int __init p1023_rdb_probe(void)
}
/* Early setup is required for large chunks of contiguous (and coarsely-aligned)
- * memory. The following shoe-horns BMan "init_early" calls into the
+ * memory. The following shoe-horns Q/BMan "init_early" calls into the
* platform setup to let them parse their CCSR nodes early on. */
+#ifdef CONFIG_FSL_QMAN_CONFIG
+void __init qman_init_early(void);
+#endif
#ifdef CONFIG_FSL_BMAN_CONFIG
void __init bman_init_early(void);
#endif
static __init void p1023_rdb_init_early(void)
{
+#ifdef CONFIG_FSL_QMAN_CONFIG
+ qman_init_early();
+#endif
#ifdef CONFIG_FSL_BMAN_CONFIG
bman_init_early();
#endif
--
2.3.0
next prev parent reply other threads:[~2015-03-09 15:02 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-09 14:41 [RFC v3 00/10] Freescale DPAA B/QMan drivers Emil Medve
2015-03-09 14:41 ` [RFC v3 01/10] fsl_bman: Add drivers for the Freescale DPAA BMan Emil Medve
2015-03-09 14:41 ` [RFC v3 02/10] fsl_qman: Add drivers for the Freescale DPAA QMan Emil Medve
2015-03-09 14:41 ` [RFC v3 03/10] powerpc/mpc85xx: Add platform support for the Freescale DPAA BMan Emil Medve
2015-03-09 14:41 ` Emil Medve [this message]
2015-03-09 14:41 ` [RFC v3 05/10] fsl_bman: Add self-tester Emil Medve
2015-03-09 14:41 ` [RFC v3 06/10] fsl_qman: " Emil Medve
2015-03-09 14:41 ` [RFC v3 07/10] fsl_bman: Add debugfs support Emil Medve
2015-03-09 14:41 ` [RFC v3 08/10] fsl_qman: " Emil Medve
2015-03-09 14:41 ` [RFC v3 09/10] fsl_bman: Add HOTPLUG_CPU support Emil Medve
2015-03-09 14:41 ` [RFC v3 10/10] fsl_qman: " Emil Medve
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=1425912115-27398-5-git-send-email-Emilian.Medve@Freescale.com \
--to=emilian.medve@freescale.com \
--cc=Geoff.Thorpe@Freescale.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=scottwood@Freescale.com \
--subject='Re: [RFC v3 04/10] powerpc/mpc85xx: Add platform support for the Freescale DPAA QMan' \
/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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).