public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Ondrej Zary <linux@rainbow-software.org>
To: "H. Peter Anvin" <hpa@zytor.com>
Cc: Kernel development list <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] [resend] Add support for Rise mP6 CPUs
Date: Sun, 18 Mar 2012 17:08:34 +0100	[thread overview]
Message-ID: <201203181708.34932.linux@rainbow-software.org> (raw)
In-Reply-To: <cca346f3-b150-441e-a89e-83abce037b31@email.android.com>

On Saturday 17 March 2012 18:16:53 H. Peter Anvin wrote:
> Did Rise ever ship any production parts?

AFAIK, the Kirin CPUs (PR166-PR266) were mass produced. You can get them on 
eBay (mostly PR266).

> Ondrej Zary <linux@rainbow-software.org> wrote:
> >Add detection for Rise mP6 x86 CPUs and a quirk to mark CMPXCHG8B as
> >present.
> >
> >Result:
> >$ cat /proc/cpuinfo
> >processor       : 0
> >vendor_id       : RiseRiseRise
> >cpu family      : 5
> >model           : 0
> >model name      : mP6 (Kirin)
> >stepping        : 4
> >cpu MHz         : 200.443
> >cache size      : 16 KB
> >fdiv_bug        : no
> >hlt_bug         : no
> >f00f_bug        : no
> >coma_bug        : no
> >fpu             : yes
> >fpu_exception   : yes
> >cpuid level     : 1
> >wp              : yes
> >flags           : fpu tsc cx8 mmx up
> >bogomips        : 400.88
> >clflush size    : 32
> >cache_alignment : 32
> >address sizes   : 32 bits physical, 32 bits virtual
> >power management:
> >
> >Signed-off-by: Ondrej Zary <linux@rainbow-software.org>
> >
> >diff --git a/arch/x86/Kconfig.cpu b/arch/x86/Kconfig.cpu
> >index 3c57033..5a356f3 100644
> >--- a/arch/x86/Kconfig.cpu
> >+++ b/arch/x86/Kconfig.cpu
> >@@ -505,3 +505,12 @@ config CPU_SUP_UMC_32
> > 	  CPU might render the kernel unbootable.
> >
> > 	  If unsure, say N.
> >+
> >+config CPU_SUP_RISE_32
> >+	default y
> >+	bool "Support Rise processors" if PROCESSOR_SELECT
> >+	depends on !64BIT
> >+	---help---
> >+	  This enables detection, tunings and quirks for Rise processors
> >+
> >+	  If unsure, say N.
> >diff --git a/arch/x86/include/asm/processor.h
> >b/arch/x86/include/asm/processor.h
> >index aa9088c..e3a4e7f 100644
> >--- a/arch/x86/include/asm/processor.h
> >+++ b/arch/x86/include/asm/processor.h
> >@@ -119,7 +119,8 @@ struct cpuinfo_x86 {
> > #define X86_VENDOR_CENTAUR	5
> > #define X86_VENDOR_TRANSMETA	7
> > #define X86_VENDOR_NSC		8
> >-#define X86_VENDOR_NUM		9
> >+#define X86_VENDOR_RISE		9
> >+#define X86_VENDOR_NUM		10
> >
> > #define X86_VENDOR_UNKNOWN	0xff
> >
> >diff --git a/arch/x86/kernel/cpu/Makefile
> >b/arch/x86/kernel/cpu/Makefile
> >index 25f24dc..1013eb6 100644
> >--- a/arch/x86/kernel/cpu/Makefile
> >+++ b/arch/x86/kernel/cpu/Makefile
> >@@ -26,6 +26,7 @@ obj-$(CONFIG_CPU_SUP_CYRIX_32)		+= cyrix.o
> > obj-$(CONFIG_CPU_SUP_CENTAUR)		+= centaur.o
> > obj-$(CONFIG_CPU_SUP_TRANSMETA_32)	+= transmeta.o
> > obj-$(CONFIG_CPU_SUP_UMC_32)		+= umc.o
> >+obj-$(CONFIG_CPU_SUP_RISE_32)		+= rise.o
> >
> > obj-$(CONFIG_PERF_EVENTS)		+= perf_event.o
> >
> >diff --git a/arch/x86/kernel/cpu/rise.c b/arch/x86/kernel/cpu/rise.c
> >new file mode 100644
> >index 0000000..2072a0f
> >--- /dev/null
> >+++ b/arch/x86/kernel/cpu/rise.c
> >@@ -0,0 +1,34 @@
> >+#include <linux/kernel.h>
> >+#include <linux/init.h>
> >+#include <asm/processor.h>
> >+#include "cpu.h"
> >+
> >+static void __cpuinit init_rise(struct cpuinfo_x86 *c)
> >+{
> >+	/*
> >+	 * Datasheet says:
> >+	 * The CMPXCHG8B instruction is supported and always enabled on the
> >+	 * Rise mP6 processor; however, the default CPUID function bit is set
> >+	 * to 0 to circumvent a reported bug in Windows NT.
> >+	 */
> >+	set_cpu_cap(c, X86_FEATURE_CX8);
> >+	/* cache is always 16KB (8KB code + 8KB data) */
> >+	c->x86_cache_size = 16;
> >+}
> >+
> >+static const struct cpu_dev __cpuinitconst rise_cpu_dev = {
> >+	.c_vendor	= "Rise",
> >+	.c_ident	= { "RiseRiseRise" },
> >+	.c_models = {
> >+		{ .vendor = X86_VENDOR_RISE, .family = 5, .model_names =
> >+		  {
> >+			  [0] = "mP6 (Kirin)",
> >+			  [2] = "mP6 (Lynx)",
> >+		  }
> >+		},
> >+	},
> >+	.c_init		= init_rise,
> >+	.c_x86_vendor	= X86_VENDOR_RISE,
> >+};
> >+
> >+cpu_dev_register(rise_cpu_dev);
> >
> >--
> >Ondrej Zary


-- 
Ondrej Zary

      reply	other threads:[~2012-03-18 16:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-17 10:36 [PATCH] [resend] Add support for Rise mP6 CPUs Ondrej Zary
2012-03-17 17:16 ` H. Peter Anvin
2012-03-18 16:08   ` Ondrej Zary [this message]

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=201203181708.34932.linux@rainbow-software.org \
    --to=linux@rainbow-software.org \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox