From: Roy Pledge <Roy.Pledge@freescale.com>
To: <linuxppc-dev@lists.ozlabs.org>, <scottwood@freescale.com>
Cc: <netdev@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: [v2 09/11] soc/bman: Add HOTPLUG_CPU support to the BMan driver
Date: Wed, 12 Aug 2015 16:14:55 -0400 [thread overview]
Message-ID: <1439410497-19039-10-git-send-email-Roy.Pledge@freescale.com> (raw)
In-Reply-To: <1439410497-19039-1-git-send-email-Roy.Pledge@freescale.com>
From: Hai-Ying Wang <Haiying.Wang@freescale.com>
Add support for CPU hotplug for the DPAA 1.0 Buffer Manager
driver
Signed-off-by: Hai-Ying Wang <Haiying.Wang@freescale.com>
Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
Signed-off-by: Roy Pledge <Roy.Pledge@freescale.com>
---
drivers/soc/fsl/qbman/bman_portal.c | 40 +++++++++++++++++++++++++++++++++++
drivers/soc/fsl/qbman/dpaa_sys.h | 3 +++
2 files changed, 43 insertions(+)
diff --git a/drivers/soc/fsl/qbman/bman_portal.c b/drivers/soc/fsl/qbman/bman_portal.c
index 62d8f64..f33d671 100644
--- a/drivers/soc/fsl/qbman/bman_portal.c
+++ b/drivers/soc/fsl/qbman/bman_portal.c
@@ -129,6 +129,42 @@ static void __cold bman_offline_cpu(unsigned int cpu)
}
}
+#ifdef CONFIG_HOTPLUG_CPU
+static void __cold bman_online_cpu(unsigned int cpu)
+{
+ struct bman_portal *p = (struct bman_portal *)affine_bportals[cpu];
+ const struct bm_portal_config *pcfg;
+
+ if (p) {
+ pcfg = bman_get_bm_portal_config(p);
+ if (pcfg)
+ irq_set_affinity(pcfg->public_cfg.irq, cpumask_of(cpu));
+ }
+}
+
+static int __cold bman_hotplug_cpu_callback(struct notifier_block *nfb,
+ unsigned long action, void *hcpu)
+{
+ unsigned int cpu = (unsigned long)hcpu;
+
+ switch (action) {
+ case CPU_ONLINE:
+ case CPU_ONLINE_FROZEN:
+ bman_online_cpu(cpu);
+ break;
+ case CPU_DOWN_PREPARE:
+ case CPU_DOWN_PREPARE_FROZEN:
+ bman_offline_cpu(cpu);
+ }
+
+ return NOTIFY_OK;
+}
+
+static struct notifier_block bman_hotplug_cpu_notifier = {
+ .notifier_call = bman_hotplug_cpu_callback,
+};
+#endif /* CONFIG_HOTPLUG_CPU */
+
static int __cold bman_portal_probe(struct platform_device *of_dev)
{
struct device *dev = &of_dev->dev;
@@ -342,6 +378,10 @@ static int __init bman_portal_driver_register(struct platform_driver *drv)
for_each_cpu(cpu, &offline_cpus)
bman_offline_cpu(cpu);
+#ifdef CONFIG_HOTPLUG_CPU
+ register_hotcpu_notifier(&bman_hotplug_cpu_notifier);
+#endif
+
bman_seed_bpid_range(0, bman_pool_max);
return 0;
diff --git a/drivers/soc/fsl/qbman/dpaa_sys.h b/drivers/soc/fsl/qbman/dpaa_sys.h
index 0dd341c..d1da092 100644
--- a/drivers/soc/fsl/qbman/dpaa_sys.h
+++ b/drivers/soc/fsl/qbman/dpaa_sys.h
@@ -43,6 +43,9 @@
#include <linux/vmalloc.h>
#include <linux/platform_device.h>
#include <linux/ctype.h>
+#ifdef CONFIG_HOTPLUG_CPU
+#include <linux/cpu.h>
+#endif
#include <asm/pgtable.h>
--
1.7.9.5
next prev parent reply other threads:[~2015-08-12 20:15 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-12 20:14 [v2 00/11] Freescale DPAA QBMan Drivers Roy Pledge
2015-08-12 20:14 ` [v2 01/11] powerpc: re-add devm_ioremap_prot() Roy Pledge
2015-08-12 20:14 ` [v2 02/11] soc/fsl: Introduce DPAA BMan device management driver Roy Pledge
2015-08-25 0:11 ` Scott Wood
2015-08-12 20:14 ` [v2 03/11] soc/fsl: Introduce the DPAA BMan portal driver Roy Pledge
2015-08-25 1:25 ` Scott Wood
2015-10-27 14:38 ` Sebastian Huber
2015-08-12 20:14 ` [v2 04/11] soc/fsl: Introduce drivers for the DPAA QMan Roy Pledge
2015-09-12 1:10 ` Scott Wood
2015-09-15 15:32 ` Roy Pledge
2015-08-12 20:14 ` [v2 05/11] soc/bman: Add self-tester for BMan driver Roy Pledge
2015-08-12 20:14 ` [v2 06/11] soc/qman: Add self-tester for QMan driver Roy Pledge
2015-08-12 20:14 ` [v2 07/11] soc/bman: Add debugfs support for the BMan driver Roy Pledge
2015-08-12 20:14 ` [v2 08/11] soc/qman: Add debugfs support for the QMan driver Roy Pledge
2015-08-12 20:14 ` Roy Pledge [this message]
2015-08-12 20:14 ` [v2 10/11] soc/qman: Add HOTPLUG_CPU support to " Roy Pledge
2015-08-12 20:14 ` [v2 11/11] soc/qman: add qman_delete_cgr_safe() Roy Pledge
2015-08-24 22:33 ` [v2 00/11] Freescale DPAA QBMan Drivers Scott Wood
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=1439410497-19039-10-git-send-email-Roy.Pledge@freescale.com \
--to=roy.pledge@freescale.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=netdev@vger.kernel.org \
--cc=scottwood@freescale.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 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).