u-boot-brain/arch/arm/mach-uniphier/cpu-info.c
Masahiro Yamada b8faf5f12b ARM: uniphier: remove part number info from the boot log
As is often the case with SoC development, slightly different
products (i.e. different part number) are developed based on the
same silicon-die.  Such fine grained information is unmaintainable.

Also, "SoC:" is a better fit that "CPU:".

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-07-26 22:27:15 +09:00

77 lines
1.4 KiB
C

/*
* Copyright (C) 2013-2014 Panasonic Corporation
* Copyright (C) 2015-2017 Socionext Inc.
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
#include <linux/errno.h>
#include <linux/io.h>
#include "soc-info.h"
int print_cpuinfo(void)
{
unsigned int id, model, rev, required_model = 1, required_rev = 1;
id = uniphier_get_soc_id();
model = uniphier_get_soc_model();
rev = uniphier_get_soc_revision();
puts("SoC: ");
switch (id) {
case UNIPHIER_SLD3_ID:
puts("sLD3");
required_model = 2;
break;
case UNIPHIER_LD4_ID:
puts("LD4");
required_rev = 2;
break;
case UNIPHIER_PRO4_ID:
puts("Pro4");
break;
case UNIPHIER_SLD8_ID:
puts("sLD8");
break;
case UNIPHIER_PRO5_ID:
puts("Pro5");
break;
case UNIPHIER_PXS2_ID:
puts("PXs2");
break;
case UNIPHIER_LD6B_ID:
puts("LD6b");
break;
case UNIPHIER_LD11_ID:
puts("LD11");
break;
case UNIPHIER_LD20_ID:
puts("LD20");
break;
case UNIPHIER_PXS3_ID:
puts("PXs3");
break;
default:
printf("Unknown Processor ID (0x%x)\n", id);
return -ENOTSUPP;
}
printf(" (model %d, revision %d)\n", model, rev);
if (model < required_model) {
printf("Only model %d or newer is supported.\n",
required_model);
return -ENOTSUPP;
} else if (rev < required_rev) {
printf("Only revision %d or newer is supported.\n",
required_rev);
return -ENOTSUPP;
}
return 0;
}