2 * (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
3 * (C) Copyright 2012 Renesas Solutions Corp.
5 * SPDX-License-Identifier: GPL-2.0+
10 u32 rmobile_get_cpu_type(void)
14 struct r8a7740_hpb *hpb = (struct r8a7740_hpb *)HPB_BASE;
16 id = readl(hpb->cccr);
17 type = (id >> 8) & 0xFF;
22 u32 rmobile_get_cpu_rev(void)
26 struct r8a7740_hpb *hpb = (struct r8a7740_hpb *)HPB_BASE;
28 id = readl(hpb->cccr);
29 rev = (id >> 4) & 0xF;