sh: Report movli.l/movco.l capabilities.
authorPaul Mundt <lethal@linux-sh.org>
Wed, 27 Sep 2006 09:24:28 +0000 (18:24 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Wed, 27 Sep 2006 09:24:28 +0000 (18:24 +0900)
Add llsc to cpu_flags[] and comment cpu-features.h.

Signed-off-by: Jamie Lenehan <nynaeve@twibble.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/kernel/setup.c
include/asm-sh/cpu-features.h

index de8df96..6810de3 100644 (file)
@@ -413,8 +413,10 @@ const char *get_cpu_subtype(void)
 }
 
 #ifdef CONFIG_PROC_FS
+/* Symbolic CPU flags, keep in sync with asm/cpu-features.h */
 static const char *cpu_flags[] = {
-       "none", "fpu", "p2flush", "mmuassoc", "dsp", "perfctr", "ptea", NULL
+       "none", "fpu", "p2flush", "mmuassoc", "dsp", "perfctr",
+       "ptea", "llsc", NULL
 };
 
 static void show_cpuflags(struct seq_file *m)
index e398947..e1260aa 100644 (file)
@@ -3,6 +3,14 @@
 
 /*
  * Processor flags
+ *
+ * Note: When adding a new flag, keep cpu_flags[] in
+ * arch/sh/kernel/setup.c in sync so symbolic name
+ * mapping of the processor flags has a chance of being
+ * reasonably accurate.
+ *
+ * These flags are also available through the ELF
+ * auxiliary vector as AT_HWCAP.
  */
 #define CPU_HAS_FPU            0x0001  /* Hardware FPU support */
 #define CPU_HAS_P2_FLUSH_BUG   0x0002  /* Need to flush the cache in P2 area */