2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2012-02-05 23:01:47 +00:00
|
|
|
/*
|
|
|
|
* Lowlevel setup for SMDK5250 board based on S5PC520
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Samsung Electronics
|
|
|
|
*/
|
|
|
|
|
2013-04-04 23:09:20 +00:00
|
|
|
#include <common.h>
|
2012-02-05 23:01:47 +00:00
|
|
|
#include <asm/arch/tzpc.h>
|
2013-04-04 23:09:19 +00:00
|
|
|
#include <asm/io.h>
|
2012-02-05 23:01:47 +00:00
|
|
|
|
|
|
|
/* Setting TZPC[TrustZone Protection Controller] */
|
|
|
|
void tzpc_init(void)
|
|
|
|
{
|
2012-03-14 17:34:02 +00:00
|
|
|
struct exynos_tzpc *tzpc;
|
2013-04-04 23:09:20 +00:00
|
|
|
unsigned int addr, start = 0, end = 0;
|
2012-02-05 23:01:47 +00:00
|
|
|
|
2013-04-04 23:09:20 +00:00
|
|
|
start = samsung_get_base_tzpc();
|
|
|
|
|
|
|
|
if (cpu_is_exynos5())
|
|
|
|
end = start + ((EXYNOS5_NR_TZPC_BANKS - 1) * TZPC_BASE_OFFSET);
|
|
|
|
else if (cpu_is_exynos4())
|
|
|
|
end = start + ((EXYNOS4_NR_TZPC_BANKS - 1) * TZPC_BASE_OFFSET);
|
|
|
|
|
|
|
|
for (addr = start; addr <= end; addr += TZPC_BASE_OFFSET) {
|
2012-04-02 07:51:33 +00:00
|
|
|
tzpc = (struct exynos_tzpc *)addr;
|
2012-02-05 23:01:47 +00:00
|
|
|
|
2013-04-04 23:09:20 +00:00
|
|
|
if (addr == start)
|
2012-02-05 23:01:47 +00:00
|
|
|
writel(R0SIZE, &tzpc->r0size);
|
|
|
|
|
|
|
|
writel(DECPROTXSET, &tzpc->decprot0set);
|
|
|
|
writel(DECPROTXSET, &tzpc->decprot1set);
|
|
|
|
|
2013-04-04 23:09:20 +00:00
|
|
|
if (cpu_is_exynos5() && (addr == end))
|
|
|
|
break;
|
|
|
|
|
|
|
|
writel(DECPROTXSET, &tzpc->decprot2set);
|
|
|
|
writel(DECPROTXSET, &tzpc->decprot3set);
|
2012-02-05 23:01:47 +00:00
|
|
|
}
|
|
|
|
}
|