]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/cpu/armv7/s5p-common/cpu_info.c
exynos: pwm: Add a driver for the exynos5 PWM
[u-boot] / arch / arm / cpu / armv7 / s5p-common / cpu_info.c
index a8d91e769fc1ddfdbf1e881bfca78d07709e6891..764c6614ea7f2bad8eb6dd15fb3c9c2a3f20081a 100644 (file)
@@ -5,9 +5,12 @@
  * SPDX-License-Identifier:    GPL-2.0+
  */
 #include <common.h>
+#include <fdtdec.h>
 #include <asm/io.h>
 #include <asm/arch/clk.h>
 
+DECLARE_GLOBAL_DATA_PTR;
+
 /* Default is s5pc100 */
 unsigned int s5p_cpu_id = 0xC100;
 /* Default is EVT1 */
@@ -30,11 +33,17 @@ u32 get_device_type(void)
 #ifdef CONFIG_DISPLAY_CPUINFO
 int print_cpuinfo(void)
 {
-       char buf[32];
+       const char *cpu_model;
+       int len;
+
+       /* For SoC with no real CPU ID in naming convention. */
+       cpu_model = fdt_getprop(gd->fdt_blob, 0, "cpu-model", &len);
+       if (cpu_model)
+               printf("CPU:   %.*s @ ", len, cpu_model);
+       else
+               printf("CPU:   %s%X @ ", s5p_get_cpu_name(), s5p_cpu_id);
 
-       printf("CPU:\t%s%X@%sMHz\n",
-                       s5p_get_cpu_name(), s5p_cpu_id,
-                       strmhz(buf, get_arm_clk()));
+       print_freq(get_arm_clk(), "\n");
 
        return 0;
 }