ARM: renesas: Add R8A77990 E3 SoC ID

Add ID and Kconfig entry for the Renesas R8A77990 E3 SoC.

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
This commit is contained in:
Marek Vasut 2018-04-26 10:09:06 +02:00 committed by Marek Vasut
parent 34f1dba983
commit a0410a6ff2
3 changed files with 5 additions and 0 deletions

View File

@ -12,6 +12,9 @@ config R8A7796
config R8A77970 config R8A77970
bool "Renesas SoC R8A77970" bool "Renesas SoC R8A77970"
config R8A77990
bool "Renesas SoC R8A77990"
config R8A77995 config R8A77995
bool "Renesas SoC R8A77995" bool "Renesas SoC R8A77995"

View File

@ -59,6 +59,7 @@ static const struct {
{ RMOBILE_CPU_TYPE_R8A7796, "R8A7796" }, { RMOBILE_CPU_TYPE_R8A7796, "R8A7796" },
{ RMOBILE_CPU_TYPE_R8A77965, "R8A77965" }, { RMOBILE_CPU_TYPE_R8A77965, "R8A77965" },
{ RMOBILE_CPU_TYPE_R8A77970, "R8A77970" }, { RMOBILE_CPU_TYPE_R8A77970, "R8A77970" },
{ RMOBILE_CPU_TYPE_R8A77990, "R8A77990" },
{ RMOBILE_CPU_TYPE_R8A77995, "R8A77995" }, { RMOBILE_CPU_TYPE_R8A77995, "R8A77995" },
{ 0x0, "CPU" }, { 0x0, "CPU" },
}; };

View File

@ -35,6 +35,7 @@
#define RMOBILE_CPU_TYPE_R8A7796 0x52 #define RMOBILE_CPU_TYPE_R8A7796 0x52
#define RMOBILE_CPU_TYPE_R8A77965 0x55 #define RMOBILE_CPU_TYPE_R8A77965 0x55
#define RMOBILE_CPU_TYPE_R8A77970 0x54 #define RMOBILE_CPU_TYPE_R8A77970 0x54
#define RMOBILE_CPU_TYPE_R8A77990 0x57
#define RMOBILE_CPU_TYPE_R8A77995 0x58 #define RMOBILE_CPU_TYPE_R8A77995 0x58
#ifndef __ASSEMBLY__ #ifndef __ASSEMBLY__