All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V4] MIPS: Loongson-3: Enable the COP2 usage
@ 2014-07-31  1:06 Huacai Chen
  2014-07-31  1:13 ` Huacai Chen
  0 siblings, 1 reply; 3+ messages in thread
From: Huacai Chen @ 2014-07-31  1:06 UTC (permalink / raw)
  To: Ralf Baechle
  Cc: John Crispin, Steven J. Hill, Aurelien Jarno, linux-mips,
	Fuxin Zhang, Zhangjin Wu, Huacai Chen

Loongson-3 has some specific instructions (MMI/SIMD) in coprocessor 2.
COP2 isn't independent because it share COP1 (FPU)'s registers. This
patch enable the COP2 usage so user-space programs can use the MMI/SIMD
instructions. When COP2 exception happens, we enable both COP1 (FPU)
and COP2, only in this way the fp context can be saved and restored
correctly.

V4: Make it work fine in preemptible kernel.

Signed-off-by: Huacai Chen <chenhc@lemote.com>
---
 arch/mips/include/asm/cop2.h            |    8 ++++
 arch/mips/loongson/loongson-3/Makefile  |    2 +-
 arch/mips/loongson/loongson-3/cop2-ex.c |   63 +++++++++++++++++++++++++++++++
 3 files changed, 72 insertions(+), 1 deletions(-)
 create mode 100644 arch/mips/loongson/loongson-3/cop2-ex.c

diff --git a/arch/mips/include/asm/cop2.h b/arch/mips/include/asm/cop2.h
index c1516cc..d035298 100644
--- a/arch/mips/include/asm/cop2.h
+++ b/arch/mips/include/asm/cop2.h
@@ -32,6 +32,14 @@ extern void nlm_cop2_restore(struct nlm_cop2_state *);
 #define cop2_present		1
 #define cop2_lazy_restore	0
 
+#elif defined(CONFIG_CPU_LOONGSON3)
+
+#define cop2_save(r)
+#define cop2_restore(r)
+
+#define cop2_present		1
+#define cop2_lazy_restore	1
+
 #else
 
 #define cop2_present		0
diff --git a/arch/mips/loongson/loongson-3/Makefile b/arch/mips/loongson/loongson-3/Makefile
index 471b0f2a..b4df775 100644
--- a/arch/mips/loongson/loongson-3/Makefile
+++ b/arch/mips/loongson/loongson-3/Makefile
@@ -1,7 +1,7 @@
 #
 # Makefile for Loongson-3 family machines
 #
-obj-y			+= irq.o
+obj-y			+= irq.o cop2-ex.o
 
 obj-$(CONFIG_SMP)	+= smp.o
 
diff --git a/arch/mips/loongson/loongson-3/cop2-ex.c b/arch/mips/loongson/loongson-3/cop2-ex.c
new file mode 100644
index 0000000..c1e9503
--- /dev/null
+++ b/arch/mips/loongson/loongson-3/cop2-ex.c
@@ -0,0 +1,63 @@
+/*
+ * This file is subject to the terms and conditions of the GNU General Public
+ * License.  See the file "COPYING" in the main directory of this archive
+ * for more details.
+ *
+ * Copyright (C) 2014 Lemote Corporation.
+ *   written by Huacai Chen <chenhc@lemote.com>
+ *
+ * based on arch/mips/cavium-octeon/cpu.c
+ * Copyright (C) 2009 Wind River Systems,
+ *   written by Ralf Baechle <ralf@linux-mips.org>
+ */
+#include <linux/init.h>
+#include <linux/sched.h>
+#include <linux/notifier.h>
+
+#include <asm/fpu.h>
+#include <asm/cop2.h>
+#include <asm/current.h>
+#include <asm/mipsregs.h>
+
+static int loongson_cu2_call(struct notifier_block *nfb, unsigned long action,
+	void *data)
+{
+	int fpu_owned;
+	int fr = !test_thread_flag(TIF_32BIT_FPREGS);
+
+	switch (action) {
+	case CU2_EXCEPTION:
+		preempt_disable();
+		fpu_owned = __is_fpu_owner();
+		if (!fr)
+			set_c0_status(ST0_CU1 | ST0_CU2);
+		else
+			set_c0_status(ST0_CU1 | ST0_CU2 | ST0_FR);
+		enable_fpu_hazard();
+		KSTK_STATUS(current) |= (ST0_CU1 | ST0_CU2);
+		if (fr)
+			KSTK_STATUS(current) |= ST0_FR;
+		else
+			KSTK_STATUS(current) &= ~ST0_FR;
+		/* If FPU is owned, we needn't init or restore fp */
+		if(!fpu_owned) {
+			set_thread_flag(TIF_USEDFPU);
+			if (!used_math()) {
+				_init_fpu();
+				set_used_math();
+			} else
+				_restore_fp(current);
+		}
+		preempt_enable();
+
+		return NOTIFY_STOP;	/* Don't call default notifier */
+	}
+
+	return NOTIFY_OK;		/* Let default notifier send signals */
+}
+
+static int __init loongson_cu2_setup(void)
+{
+	return cu2_notifier(loongson_cu2_call, 0);
+}
+early_initcall(loongson_cu2_setup);
-- 
1.7.7.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH V4] MIPS: Loongson-3: Enable the COP2 usage
  2014-07-31  1:06 [PATCH V4] MIPS: Loongson-3: Enable the COP2 usage Huacai Chen
@ 2014-07-31  1:13 ` Huacai Chen
  2014-08-25 18:22   ` Ralf Baechle
  0 siblings, 1 reply; 3+ messages in thread
From: Huacai Chen @ 2014-07-31  1:13 UTC (permalink / raw)
  To: Ralf Baechle
  Cc: John Crispin, Steven J. Hill, Aurelien Jarno,
	Linux MIPS Mailing List, Fuxin Zhang, Zhangjin Wu, Huacai Chen

Hi, Ralf,

I found that the V3 of Loongson's patchset has been merged into
mips-for-linux-next. But the 7th patch (this one) should be updated
for preemptible kernel. The reason is nearly the same as
http://www.linux-mips.org/archives/linux-mips/2014-07/msg00237.html.
Thanks.

Huacai

On Thu, Jul 31, 2014 at 9:06 AM, Huacai Chen <chenhc@lemote.com> wrote:
> Loongson-3 has some specific instructions (MMI/SIMD) in coprocessor 2.
> COP2 isn't independent because it share COP1 (FPU)'s registers. This
> patch enable the COP2 usage so user-space programs can use the MMI/SIMD
> instructions. When COP2 exception happens, we enable both COP1 (FPU)
> and COP2, only in this way the fp context can be saved and restored
> correctly.
>
> V4: Make it work fine in preemptible kernel.
>
> Signed-off-by: Huacai Chen <chenhc@lemote.com>
> ---
>  arch/mips/include/asm/cop2.h            |    8 ++++
>  arch/mips/loongson/loongson-3/Makefile  |    2 +-
>  arch/mips/loongson/loongson-3/cop2-ex.c |   63 +++++++++++++++++++++++++++++++
>  3 files changed, 72 insertions(+), 1 deletions(-)
>  create mode 100644 arch/mips/loongson/loongson-3/cop2-ex.c
>
> diff --git a/arch/mips/include/asm/cop2.h b/arch/mips/include/asm/cop2.h
> index c1516cc..d035298 100644
> --- a/arch/mips/include/asm/cop2.h
> +++ b/arch/mips/include/asm/cop2.h
> @@ -32,6 +32,14 @@ extern void nlm_cop2_restore(struct nlm_cop2_state *);
>  #define cop2_present           1
>  #define cop2_lazy_restore      0
>
> +#elif defined(CONFIG_CPU_LOONGSON3)
> +
> +#define cop2_save(r)
> +#define cop2_restore(r)
> +
> +#define cop2_present           1
> +#define cop2_lazy_restore      1
> +
>  #else
>
>  #define cop2_present           0
> diff --git a/arch/mips/loongson/loongson-3/Makefile b/arch/mips/loongson/loongson-3/Makefile
> index 471b0f2a..b4df775 100644
> --- a/arch/mips/loongson/loongson-3/Makefile
> +++ b/arch/mips/loongson/loongson-3/Makefile
> @@ -1,7 +1,7 @@
>  #
>  # Makefile for Loongson-3 family machines
>  #
> -obj-y                  += irq.o
> +obj-y                  += irq.o cop2-ex.o
>
>  obj-$(CONFIG_SMP)      += smp.o
>
> diff --git a/arch/mips/loongson/loongson-3/cop2-ex.c b/arch/mips/loongson/loongson-3/cop2-ex.c
> new file mode 100644
> index 0000000..c1e9503
> --- /dev/null
> +++ b/arch/mips/loongson/loongson-3/cop2-ex.c
> @@ -0,0 +1,63 @@
> +/*
> + * This file is subject to the terms and conditions of the GNU General Public
> + * License.  See the file "COPYING" in the main directory of this archive
> + * for more details.
> + *
> + * Copyright (C) 2014 Lemote Corporation.
> + *   written by Huacai Chen <chenhc@lemote.com>
> + *
> + * based on arch/mips/cavium-octeon/cpu.c
> + * Copyright (C) 2009 Wind River Systems,
> + *   written by Ralf Baechle <ralf@linux-mips.org>
> + */
> +#include <linux/init.h>
> +#include <linux/sched.h>
> +#include <linux/notifier.h>
> +
> +#include <asm/fpu.h>
> +#include <asm/cop2.h>
> +#include <asm/current.h>
> +#include <asm/mipsregs.h>
> +
> +static int loongson_cu2_call(struct notifier_block *nfb, unsigned long action,
> +       void *data)
> +{
> +       int fpu_owned;
> +       int fr = !test_thread_flag(TIF_32BIT_FPREGS);
> +
> +       switch (action) {
> +       case CU2_EXCEPTION:
> +               preempt_disable();
> +               fpu_owned = __is_fpu_owner();
> +               if (!fr)
> +                       set_c0_status(ST0_CU1 | ST0_CU2);
> +               else
> +                       set_c0_status(ST0_CU1 | ST0_CU2 | ST0_FR);
> +               enable_fpu_hazard();
> +               KSTK_STATUS(current) |= (ST0_CU1 | ST0_CU2);
> +               if (fr)
> +                       KSTK_STATUS(current) |= ST0_FR;
> +               else
> +                       KSTK_STATUS(current) &= ~ST0_FR;
> +               /* If FPU is owned, we needn't init or restore fp */
> +               if(!fpu_owned) {
> +                       set_thread_flag(TIF_USEDFPU);
> +                       if (!used_math()) {
> +                               _init_fpu();
> +                               set_used_math();
> +                       } else
> +                               _restore_fp(current);
> +               }
> +               preempt_enable();
> +
> +               return NOTIFY_STOP;     /* Don't call default notifier */
> +       }
> +
> +       return NOTIFY_OK;               /* Let default notifier send signals */
> +}
> +
> +static int __init loongson_cu2_setup(void)
> +{
> +       return cu2_notifier(loongson_cu2_call, 0);
> +}
> +early_initcall(loongson_cu2_setup);
> --
> 1.7.7.3
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH V4] MIPS: Loongson-3: Enable the COP2 usage
  2014-07-31  1:13 ` Huacai Chen
@ 2014-08-25 18:22   ` Ralf Baechle
  0 siblings, 0 replies; 3+ messages in thread
From: Ralf Baechle @ 2014-08-25 18:22 UTC (permalink / raw)
  To: Huacai Chen
  Cc: John Crispin, Steven J. Hill, Aurelien Jarno,
	Linux MIPS Mailing List, Fuxin Zhang, Zhangjin Wu

On Thu, Jul 31, 2014 at 09:13:37AM +0800, Huacai Chen wrote:

> 
> I found that the V3 of Loongson's patchset has been merged into
> mips-for-linux-next. But the 7th patch (this one) should be updated
> for preemptible kernel. The reason is nearly the same as
> http://www.linux-mips.org/archives/linux-mips/2014-07/msg00237.html.
> Thanks.

I'm marking this one as rejected because V3 plus
https://patchwork.linux-mips.org/patch/7515/ which are already applied
are identical.

Thanks,

  Ralf

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-08-25 18:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-31  1:06 [PATCH V4] MIPS: Loongson-3: Enable the COP2 usage Huacai Chen
2014-07-31  1:13 ` Huacai Chen
2014-08-25 18:22   ` Ralf Baechle

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.