Thread (5 messages) flat view 5 messages, 3 authors, 2012-01-09

Re: [PATCH 1/3] KVM: PPC: epapr: Factor out the epapr init

From: Alexander Graf <hidden>
Date: 2012-01-09 13:50:20
Also in: kvm

On 05.01.2012, at 10:06, Liu Yu wrote:
from the kvm guest paravirt init code.
Your patch description could be slightly more ... verbose :)
=20
Signed-off-by: Liu Yu <redacted>
---
arch/powerpc/include/asm/epapr_hcalls.h |    8 +++++
arch/powerpc/kernel/Makefile            |    1 +
arch/powerpc/kernel/epapr_para.c        |   45 =
+++++++++++++++++++++++++++++++
quoted hunk ↗ jump to hunk
arch/powerpc/kernel/kvm.c               |    9 +++++-
4 files changed, 62 insertions(+), 1 deletions(-)
create mode 100644 arch/powerpc/kernel/epapr_para.c
=20
diff --git a/arch/powerpc/include/asm/epapr_hcalls.h =
b/arch/powerpc/include/asm/epapr_hcalls.h
quoted hunk ↗ jump to hunk
index f3b0c2c..c4b86e4 100644
--- a/arch/powerpc/include/asm/epapr_hcalls.h
+++ b/arch/powerpc/include/asm/epapr_hcalls.h
@@ -148,6 +148,14 @@
#define EV_HCALL_CLOBBERS2 EV_HCALL_CLOBBERS3, "r5"
#define EV_HCALL_CLOBBERS1 EV_HCALL_CLOBBERS2, "r4"
=20
+extern u32 *epapr_hcall_insts;
+extern int epapr_hcall_insts_len;
+
+static inline void epapr_get_hcall_insts(u32 **instp, int *lenp)
+{
+	*instp =3D epapr_hcall_insts;
+	*lenp =3D epapr_hcall_insts_len;
Why do we need this? Can't we just directly access the variables?
+}
=20
/*
 * We use "uintptr_t" to define a register because it's guaranteed to =
be a
quoted hunk ↗ jump to hunk
diff --git a/arch/powerpc/kernel/Makefile =
b/arch/powerpc/kernel/Makefile
quoted hunk ↗ jump to hunk
index ce4f7f1..1052bbc 100644
--- a/arch/powerpc/kernel/Makefile
+++ b/arch/powerpc/kernel/Makefile
@@ -134,6 +134,7 @@ ifneq ($(CONFIG_XMON)$(CONFIG_KEXEC),)
obj-y				+=3D ppc_save_regs.o
endif
=20
+obj-$(CONFIG_BOOKE)		+=3D epapr_para.o
obj-$(CONFIG_KVM_GUEST)		+=3D kvm.o kvm_emul.o
=20
# Disable GCOV in odd or sensitive code
diff --git a/arch/powerpc/kernel/epapr_para.c =
b/arch/powerpc/kernel/epapr_para.c
quoted hunk ↗ jump to hunk
new file mode 100644
index 0000000..714dcb3
--- /dev/null
+++ b/arch/powerpc/kernel/epapr_para.c
@@ -0,0 +1,45 @@
+/*
+ * ePAPR para-virtualization support.
+ *
+ * This program is free software; you can redistribute it and/or =
modify
+ * it under the terms of the GNU General Public License, version 2, =
as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA  =
02110-1301, USA.
+ *
+ * Copyright (C) 2012 Freescale Semiconductor, Inc.
+ */
+
+#include <linux/of.h>
+#include <asm/epapr_hcalls.h>
+
+u32 *epapr_hcall_insts;
+int epapr_hcall_insts_len;
+
+static int __init epapr_para_init(void)
+{
+	struct device_node *hyper_node;
+	u32 *insts;
+	int len;
+
+	hyper_node =3D of_find_node_by_path("/hypervisor");
+	if (!hyper_node)
+		return -ENODEV;
+
+	insts =3D (u32*)of_get_property(hyper_node, =
"hcall-instructions", &len);
+	if (!(len % 4) && (len >=3D (4 * 4))) {
+		epapr_hcall_insts =3D insts;
+		epapr_hcall_insts_len =3D len;
+	}
else error()?
quoted hunk ↗ jump to hunk
+
+	return 0;
+}
+
+early_initcall(epapr_para_init);
diff --git a/arch/powerpc/kernel/kvm.c b/arch/powerpc/kernel/kvm.c
index b06bdae..82a9137 100644
--- a/arch/powerpc/kernel/kvm.c
+++ b/arch/powerpc/kernel/kvm.c
@@ -28,6 +28,7 @@
#include <asm/sections.h>
#include <asm/cacheflush.h>
#include <asm/disassemble.h>
+#include <asm/epapr_hcalls.h>
=20
#define KVM_MAGIC_PAGE		(-4096L)
#define magic_var(x) KVM_MAGIC_PAGE + offsetof(struct =
kvm_vcpu_arch_shared, x)
quoted hunk ↗ jump to hunk
@@ -535,9 +536,10 @@ EXPORT_SYMBOL_GPL(kvm_hypercall);
static int kvm_para_setup(void)
{
	extern u32 kvm_hypercall_start;
-	struct device_node *hyper_node;
	u32 *insts;
	int len, i;
+#ifndef CONFIG_BOOKE
Ugh - now you're duplicating even more code. Why not completely unify it =
and always call epapr_get_hcall_insts() on all ppc platforms?

quoted hunk ↗ jump to hunk
+	struct device_node *hyper_node;
=20
	hyper_node =3D of_find_node_by_path("/hypervisor");
	if (!hyper_node)
@@ -548,6 +550,11 @@ static int kvm_para_setup(void)
		return -1;
	if (len > (4 * 4))
		return -1;
+#else
+	epapr_get_hcall_insts(&insts, &len);
+	if (insts =3D=3D NULL)
+		return -1;
+#endif	/* !BOOKE */
=20
	for (i =3D 0; i < (len / 4); i++)
		kvm_patch_ins(&(&kvm_hypercall_start)[i], insts[i]);
--=20
1.6.4
=20
=20
--
To unsubscribe from this list: send the line "unsubscribe kvm-ppc" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help