blob: dfe8950ae1947258d7daa5ef819bd0002b18e0a3 [file] [log] [blame]
Nobuhiro Iwamatsucfa291b2012-07-20 13:06:54 +09001/*
2 * (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
3 * (C) Copyright 2012 Renesas Solutions Corp.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsucfa291b2012-07-20 13:06:54 +09006 */
7#include <common.h>
8#include <asm/io.h>
9
10u32 rmobile_get_cpu_type(void)
11{
12 u32 id;
13 u32 type;
14 struct r8a7740_hpb *hpb = (struct r8a7740_hpb *)HPB_BASE;
15
16 id = readl(hpb->cccr);
17 type = (id >> 8) & 0xFF;
18
19 return type;
20}
21
Nobuhiro Iwamatsu62d0b6b2012-07-20 13:07:43 +090022u32 rmobile_get_cpu_rev(void)
Nobuhiro Iwamatsucfa291b2012-07-20 13:06:54 +090023{
24 u32 id;
25 u32 rev;
26 struct r8a7740_hpb *hpb = (struct r8a7740_hpb *)HPB_BASE;
27
28 id = readl(hpb->cccr);
29 rev = (id >> 4) & 0xF;
30
31 return rev;
32}