2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-11-21 08:06:45 +00:00
|
|
|
/*
|
2014-03-28 02:07:39 +00:00
|
|
|
* arch/arm/cpu/armv7/rmobile/cpu_info-rcar.c
|
2013-11-21 08:06:45 +00:00
|
|
|
*
|
2014-03-28 02:07:39 +00:00
|
|
|
* Copyright (C) 2013,2014 Renesas Electronics Corporation
|
2013-11-21 08:06:45 +00:00
|
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
|
2017-05-13 13:57:38 +00:00
|
|
|
#define PRR_MASK 0x7fff
|
|
|
|
#define R8A7796_REV_1_0 0x5200
|
|
|
|
#define R8A7796_REV_1_1 0x5210
|
2013-11-21 08:06:45 +00:00
|
|
|
|
2017-11-09 20:49:48 +00:00
|
|
|
static u32 rmobile_get_prr(void);
|
|
|
|
|
2013-11-21 08:06:45 +00:00
|
|
|
u32 rmobile_get_cpu_type(void)
|
|
|
|
{
|
2017-11-09 20:49:48 +00:00
|
|
|
return (rmobile_get_prr() & 0x00007F00) >> 8;
|
2013-11-21 08:06:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u32 rmobile_get_cpu_rev_integer(void)
|
|
|
|
{
|
2017-11-09 20:49:48 +00:00
|
|
|
const u32 prr = rmobile_get_prr();
|
2017-05-13 13:57:38 +00:00
|
|
|
|
|
|
|
if ((prr & PRR_MASK) == R8A7796_REV_1_1)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return ((prr & 0x000000F0) >> 4) + 1;
|
2013-11-21 08:06:45 +00:00
|
|
|
}
|
2014-03-28 02:15:59 +00:00
|
|
|
|
|
|
|
u32 rmobile_get_cpu_rev_fraction(void)
|
|
|
|
{
|
2017-11-09 20:49:48 +00:00
|
|
|
const u32 prr = rmobile_get_prr();
|
2017-05-13 13:57:38 +00:00
|
|
|
|
|
|
|
if ((prr & PRR_MASK) == R8A7796_REV_1_1)
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return prr & 0x0000000F;
|
2014-03-28 02:15:59 +00:00
|
|
|
}
|
2017-11-09 20:49:48 +00:00
|
|
|
|
|
|
|
#if !CONFIG_IS_ENABLED(DM) || !CONFIG_IS_ENABLED(SYSCON)
|
|
|
|
static u32 rmobile_get_prr(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* On RCar/RMobile Gen2 and older systems, the PRR is always
|
|
|
|
* located at the address below. On newer systems, the PRR
|
|
|
|
* may be located at different address, but that information
|
|
|
|
* is obtained from DT. This code will be removed when all
|
|
|
|
* of the older systems get converted to DM and OF control.
|
|
|
|
*/
|
|
|
|
return readl(0xFF000044);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
|
|
|
|
#include <dm.h>
|
|
|
|
#include <syscon.h>
|
|
|
|
#include <regmap.h>
|
|
|
|
|
|
|
|
struct renesas_prr_priv {
|
|
|
|
fdt_addr_t regs;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
PRR_RCAR,
|
|
|
|
};
|
|
|
|
|
|
|
|
static u32 rmobile_get_prr(void)
|
|
|
|
{
|
|
|
|
struct regmap *map;
|
|
|
|
|
|
|
|
map = syscon_get_regmap_by_driver_data(PRR_RCAR);
|
|
|
|
if (!map) {
|
|
|
|
printf("PRR regmap failed!\n");
|
|
|
|
hang();
|
|
|
|
}
|
|
|
|
|
2018-04-19 03:14:01 +00:00
|
|
|
return readl(map->ranges[0].start);
|
2017-11-09 20:49:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct udevice_id renesas_prr_ids[] = {
|
|
|
|
{ .compatible = "renesas,prr", .data = PRR_RCAR },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(renesas_prr) = {
|
|
|
|
.name = "renesas_prr",
|
|
|
|
.id = UCLASS_SYSCON,
|
|
|
|
.of_match = renesas_prr_ids,
|
|
|
|
.flags = DM_FLAG_PRE_RELOC,
|
|
|
|
};
|
|
|
|
#endif
|