Factor out fill_processor_name() and strcpy() functions.
authorUwe Hermann <uwe@hermann-uwe.de>
Wed, 29 Sep 2010 09:54:16 +0000 (09:54 +0000)
committerUwe Hermann <uwe@hermann-uwe.de>
Wed, 29 Sep 2010 09:54:16 +0000 (09:54 +0000)
The fill_processor_name() function was duplicated in multiple
model_*_init.c files, move it into a new src/cpu/x86/name
directory.

The strcpy() function was also duplicated multiple times, move it
to <string.h> where we already have similar functions.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5879 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

15 files changed:
src/cpu/amd/model_fxx/processor_name.c
src/cpu/intel/model_1067x/Makefile.inc
src/cpu/intel/model_1067x/model_1067x_init.c
src/cpu/intel/model_106cx/Makefile.inc
src/cpu/intel/model_106cx/model_106cx_init.c
src/cpu/intel/model_68x/Makefile.inc
src/cpu/intel/model_68x/model_68x_init.c
src/cpu/intel/model_6bx/Makefile.inc
src/cpu/intel/model_6bx/model_6bx_init.c
src/cpu/intel/model_6ex/Makefile.inc
src/cpu/intel/model_6ex/model_6ex_init.c
src/cpu/intel/model_6fx/Makefile.inc
src/cpu/intel/model_6fx/model_6fx_init.c
src/include/cpu/x86/name.h [new file with mode: 0644]
src/include/string.h

index 8465e3ce3453f40b17a5682d4e921711b0080a5f..3f3d973d7d88b9ca21036cb12727f984e3ba65be 100644 (file)
@@ -111,12 +111,6 @@ static inline void wrmsr_amd(unsigned index, msr_t msr)
                 );
 }
 
-static inline void strcpy(char *dst, const char *src)
-{
-       while (*src) *dst++ = *src++;
-}
-
-
 int init_processor_name(void)
 {
 #if CONFIG_K8_REV_F_SUPPORT == 0
index 085423389dd5e80619194737d99f1f1825398792..a1db11072c6181c6a5d78973ad171283e6d20cd1 100644 (file)
@@ -1 +1,3 @@
 driver-y += model_1067x_init.o
+subdirs-y += ../../x86/name
+
index 0452ce711890bc39a2ab99fbdb88c498772fcde8..a379805cb688e80c198a2f02abb7d43bca5228b6 100644 (file)
@@ -31,6 +31,7 @@
 #include <cpu/intel/hyperthreading.h>
 #include <cpu/x86/cache.h>
 #include <cpu/x86/mtrr.h>
+#include <cpu/x86/name.h>
 
 static const uint32_t microcode_updates[] = {
        /*  Dummy terminator  */
@@ -40,11 +41,6 @@ static const uint32_t microcode_updates[] = {
         0x0, 0x0, 0x0, 0x0,
 };
 
-static inline void strcpy(char *dst, char *src)
-{
-       while (*src) *dst++ = *src++;
-}
-
 static void init_timer(void)
 {
        /* Set the apic timer to no interrupts and periodic mode */
@@ -57,33 +53,6 @@ static void init_timer(void)
        lapic_write(LAPIC_TMICT, 0xffffffff);
 }
 
-static void fill_processor_name(char *processor_name)
-{
-       struct cpuid_result regs;
-       char temp_processor_name[49];
-       char *processor_name_start;
-       unsigned int *name_as_ints = (unsigned int *)temp_processor_name;
-       int i;
-
-       for (i=0; i<3; i++) {
-               regs = cpuid(0x80000002 + i);
-               name_as_ints[i*4 + 0] = regs.eax;
-               name_as_ints[i*4 + 1] = regs.ebx;
-               name_as_ints[i*4 + 2] = regs.ecx;
-               name_as_ints[i*4 + 3] = regs.edx;
-       }
-
-       temp_processor_name[48] = 0;
-
-       /* Skip leading spaces */
-       processor_name_start = temp_processor_name;
-       while (*processor_name_start == ' ')
-               processor_name_start++;
-
-       memset(processor_name, 0, 49);
-       strcpy(processor_name, processor_name_start);
-}
-
 #define IA32_FEATURE_CONTROL 0x003a
 
 #define CPUID_VMX (1 << 5)
index 2c991ff7b4da75176cc0bcf52edf99019c8c600d..890a529cc3ef3f30a7d169abd417359187fdd0f7 100644 (file)
@@ -1,3 +1,4 @@
 driver-y += model_106cx_init.o
+subdirs-y += ../../x86/name
 
 cpu_incs += $(src)/cpu/intel/model_106cx/cache_as_ram.inc
index 025cb4ca5306b6dcea4ebb1f1318f6b753051cee..4a621df31ab4e301ef5d96bda289c4790d41b043 100644 (file)
@@ -29,6 +29,7 @@
 #include <cpu/intel/hyperthreading.h>
 #include <cpu/x86/cache.h>
 #include <cpu/x86/mtrr.h>
+#include <cpu/x86/name.h>
 #include <usbdebug.h>
 
 static const uint32_t microcode_updates[] = {
@@ -46,38 +47,6 @@ static const uint32_t microcode_updates[] = {
         0x0, 0x0, 0x0, 0x0,
 };
 
-static inline void strcpy(char *dst, char *src)
-{
-       while (*src) *dst++ = *src++;
-}
-
-static void fill_processor_name(char *processor_name)
-{
-       struct cpuid_result regs;
-       char temp_processor_name[49];
-       char *processor_name_start;
-       unsigned int *name_as_ints = (unsigned int *)temp_processor_name;
-       int i;
-
-       for (i=0; i<3; i++) {
-               regs = cpuid(0x80000002 + i);
-               name_as_ints[i*4 + 0] = regs.eax;
-               name_as_ints[i*4 + 1] = regs.ebx;
-               name_as_ints[i*4 + 2] = regs.ecx;
-               name_as_ints[i*4 + 3] = regs.edx;
-       }
-
-       temp_processor_name[48] = 0;
-
-       /* Skip leading spaces */
-       processor_name_start = temp_processor_name;
-       while (*processor_name_start == ' ')
-               processor_name_start++;
-
-       memset(processor_name, 0, 49);
-       strcpy(processor_name, processor_name_start);
-}
-
 #define IA32_FEATURE_CONTROL 0x003a
 
 #define CPUID_VMX (1 << 5)
index 0b437c121bd31ab748138f7bccc4300a376361a3..810ef19972c72bed93eadb83e68fef1594442c99 100644 (file)
@@ -19,3 +19,5 @@
 ##
 
 driver-y += model_68x_init.o
+subdirs-y += ../../x86/name
+
index 0ff92ccb0143543eb6222343def08aeb14710dbd..0cb7b415a07835810f7cef364a8bb9a4e9af2f65 100644 (file)
@@ -30,6 +30,7 @@
 #include <cpu/x86/lapic.h>
 #include <cpu/intel/microcode.h>
 #include <cpu/x86/cache.h>
+#include <cpu/x86/name.h>
 #include <usbdebug.h>
 
 static const uint32_t microcode_updates[] = {
@@ -58,38 +59,6 @@ static const uint32_t microcode_updates[] = {
         0x0, 0x0, 0x0, 0x0,
 };
 
-static inline void strcpy(char *dst, char *src)
-{
-       while (*src) *dst++ = *src++;
-}
-
-static void fill_processor_name(char *processor_name)
-{
-       struct cpuid_result regs;
-       char temp_processor_name[49];
-       char *processor_name_start;
-       unsigned int *name_as_ints = (unsigned int *)temp_processor_name;
-       int i;
-
-       for (i=0; i<3; i++) {
-               regs = cpuid(0x80000002 + i);
-               name_as_ints[i*4 + 0] = regs.eax;
-               name_as_ints[i*4 + 1] = regs.ebx;
-               name_as_ints[i*4 + 2] = regs.ecx;
-               name_as_ints[i*4 + 3] = regs.edx;
-       }
-
-       temp_processor_name[48] = 0;
-
-       /* Skip leading spaces */
-       processor_name_start = temp_processor_name;
-       while (*processor_name_start == ' ')
-               processor_name_start++;
-
-       memset(processor_name, 0, 49);
-       strcpy(processor_name, processor_name_start);
-}
-
 #if CONFIG_USBDEBUG
 static unsigned ehci_debug_addr;
 #endif
index d176d28fa019c4b14f07d8f774f5b63c98983bbe..c10aff170ddbc1c8ce031f91e2c82a63282bc3cf 100644 (file)
@@ -1 +1,2 @@
 driver-y += model_6bx_init.o
+subdirs-y += ../../x86/name
index b7498e99b080878cccd746d9346f0062eda28a0a..89807cbe0eb3de6968ab0a44b0992b00d6b27ccf 100644 (file)
@@ -30,6 +30,7 @@
 #include <cpu/x86/lapic.h>
 #include <cpu/intel/microcode.h>
 #include <cpu/x86/cache.h>
+#include <cpu/x86/name.h>
 #include <usbdebug.h>
 
 static const uint32_t microcode_updates[] = {
@@ -44,38 +45,6 @@ static const uint32_t microcode_updates[] = {
         0x0, 0x0, 0x0, 0x0,
 };
 
-static inline void strcpy(char *dst, char *src)
-{
-       while (*src) *dst++ = *src++;
-}
-
-static void fill_processor_name(char *processor_name)
-{
-       struct cpuid_result regs;
-       char temp_processor_name[49];
-       char *processor_name_start;
-       unsigned int *name_as_ints = (unsigned int *)temp_processor_name;
-       int i;
-
-       for (i=0; i<3; i++) {
-               regs = cpuid(0x80000002 + i);
-               name_as_ints[i*4 + 0] = regs.eax;
-               name_as_ints[i*4 + 1] = regs.ebx;
-               name_as_ints[i*4 + 2] = regs.ecx;
-               name_as_ints[i*4 + 3] = regs.edx;
-       }
-
-       temp_processor_name[48] = 0;
-
-       /* Skip leading spaces */
-       processor_name_start = temp_processor_name;
-       while (*processor_name_start == ' ')
-               processor_name_start++;
-
-       memset(processor_name, 0, 49);
-       strcpy(processor_name, processor_name_start);
-}
-
 #if CONFIG_USBDEBUG
 static unsigned ehci_debug_addr;
 #endif
index f9a3c53f5a93961461e38086477813a8b9e8e031..8ad1e3910f4ebf2d8269673c3ae3cd482340f466 100644 (file)
@@ -1,3 +1,4 @@
 driver-y += model_6ex_init.o
+subdirs-y += ../../x86/name
 
 cpu_incs += $(src)/cpu/intel/model_6ex/cache_as_ram.inc
index 4af6d844fafe4c9e9fc98a12d72ef7543d84164d..b6a951335ce5f1bd78a540f144c87754424b364f 100644 (file)
@@ -31,6 +31,7 @@
 #include <cpu/intel/hyperthreading.h>
 #include <cpu/x86/cache.h>
 #include <cpu/x86/mtrr.h>
+#include <cpu/x86/name.h>
 #include <usbdebug.h>
 
 static const uint32_t microcode_updates[] = {
@@ -44,38 +45,6 @@ static const uint32_t microcode_updates[] = {
         0x0, 0x0, 0x0, 0x0,
 };
 
-static inline void strcpy(char *dst, char *src)
-{
-       while (*src) *dst++ = *src++;
-}
-
-static void fill_processor_name(char *processor_name)
-{
-       struct cpuid_result regs;
-       char temp_processor_name[49];
-       char *processor_name_start;
-       unsigned int *name_as_ints = (unsigned int *)temp_processor_name;
-       int i;
-
-       for (i=0; i<3; i++) {
-               regs = cpuid(0x80000002 + i);
-               name_as_ints[i*4 + 0] = regs.eax;
-               name_as_ints[i*4 + 1] = regs.ebx;
-               name_as_ints[i*4 + 2] = regs.ecx;
-               name_as_ints[i*4 + 3] = regs.edx;
-       }
-
-       temp_processor_name[48] = 0;
-
-       /* Skip leading spaces */
-       processor_name_start = temp_processor_name;
-       while (*processor_name_start == ' ')
-               processor_name_start++;
-
-       memset(processor_name, 0, 49);
-       strcpy(processor_name, processor_name_start);
-}
-
 #define IA32_FEATURE_CONTROL 0x003a
 
 #define CPUID_VMX (1 << 5)
index 4db78019cbd7275b3d9c7877b2d5c79edbde6152..0e32754d7f2f42af2a98aea07c7dc1faeabaa037 100644 (file)
@@ -1 +1,2 @@
 driver-y += model_6fx_init.o
+subdirs-y += ../../x86/name
index 62b30da75be8c1faff26d64c366670e61e815593..c43b8debb1f513d42148f2c6e5e44bbd0400bcac 100644 (file)
@@ -31,6 +31,7 @@
 #include <cpu/intel/hyperthreading.h>
 #include <cpu/x86/cache.h>
 #include <cpu/x86/mtrr.h>
+#include <cpu/x86/name.h>
 #include <usbdebug.h>
 
 static const uint32_t microcode_updates[] = {
@@ -58,38 +59,6 @@ static const uint32_t microcode_updates[] = {
         0x0, 0x0, 0x0, 0x0,
 };
 
-static inline void strcpy(char *dst, char *src)
-{
-       while (*src) *dst++ = *src++;
-}
-
-static void fill_processor_name(char *processor_name)
-{
-       struct cpuid_result regs;
-       char temp_processor_name[49];
-       char *processor_name_start;
-       unsigned int *name_as_ints = (unsigned int *)temp_processor_name;
-       int i;
-
-       for (i=0; i<3; i++) {
-               regs = cpuid(0x80000002 + i);
-               name_as_ints[i*4 + 0] = regs.eax;
-               name_as_ints[i*4 + 1] = regs.ebx;
-               name_as_ints[i*4 + 2] = regs.ecx;
-               name_as_ints[i*4 + 3] = regs.edx;
-       }
-
-       temp_processor_name[48] = 0;
-
-       /* Skip leading spaces */
-       processor_name_start = temp_processor_name;
-       while (*processor_name_start == ' ')
-               processor_name_start++;
-
-       memset(processor_name, 0, 49);
-       strcpy(processor_name, processor_name_start);
-}
-
 #define IA32_FEATURE_CONTROL 0x003a
 
 #define CPUID_VMX (1 << 5)
diff --git a/src/include/cpu/x86/name.h b/src/include/cpu/x86/name.h
new file mode 100644 (file)
index 0000000..2fec878
--- /dev/null
@@ -0,0 +1,26 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * 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, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef CPU_X86_NAME_H
+#define CPU_X86_NAME_H
+
+void fill_processor_name(char *processor_name);
+
+#endif
+
index 04c3733f8be4fe8e861807cdfd4dbf575a48e1ae..21689473ce39342f43011e7e6ab842baca3a09e0 100644 (file)
@@ -68,6 +68,12 @@ static inline char *strncpy(char *to, const char *from, int count)
        return ret;
 }
 
+static inline void strcpy(char *dst, const char *src)
+{
+       while (*src)
+               *dst++ = *src++;
+}
+
 static inline int strcmp(const char *s1, const char *s2)
 {
        int r;