2016-07-22 04:38:31 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012-2014 Panasonic Corporation
|
|
|
|
* Copyright (C) 2015-2016 Socionext Inc.
|
|
|
|
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <linux/io.h>
|
2016-08-10 07:08:36 +00:00
|
|
|
#include <linux/kernel.h>
|
2016-07-22 04:38:31 +00:00
|
|
|
#include <asm/armv7.h>
|
2016-08-10 07:08:36 +00:00
|
|
|
#include <asm/processor.h>
|
2016-07-22 04:38:31 +00:00
|
|
|
|
2016-08-10 07:08:37 +00:00
|
|
|
#include "cache-uniphier.h"
|
2016-07-22 04:38:31 +00:00
|
|
|
#include "ssc-regs.h"
|
|
|
|
|
2016-08-10 07:08:36 +00:00
|
|
|
#define UNIPHIER_SSCOQAD_IS_NEEDED(op) \
|
|
|
|
((op & UNIPHIER_SSCOQM_S_MASK) == UNIPHIER_SSCOQM_S_RANGE)
|
2016-08-10 07:08:37 +00:00
|
|
|
#define UNIPHIER_SSCOQWM_IS_NEEDED(op) \
|
|
|
|
((op & UNIPHIER_SSCOQM_TID_MASK) == UNIPHIER_SSCOQM_TID_WAY)
|
2016-08-10 07:08:36 +00:00
|
|
|
|
|
|
|
/* uniphier_cache_sync - perform a sync point for a particular cache level */
|
2016-07-22 04:38:31 +00:00
|
|
|
static void uniphier_cache_sync(void)
|
|
|
|
{
|
|
|
|
/* drain internal buffers */
|
|
|
|
writel(UNIPHIER_SSCOPE_CM_SYNC, UNIPHIER_SSCOPE);
|
|
|
|
/* need a read back to confirm */
|
|
|
|
readl(UNIPHIER_SSCOPE);
|
|
|
|
}
|
|
|
|
|
2016-08-10 07:08:36 +00:00
|
|
|
/**
|
|
|
|
* uniphier_cache_maint_common - run a queue operation
|
|
|
|
*
|
|
|
|
* @start: start address of range operation (don't care for "all" operation)
|
|
|
|
* @size: data size of range operation (don't care for "all" operation)
|
2016-08-10 07:08:37 +00:00
|
|
|
* @ways: target ways (don't care for operations other than pre-fetch, touch
|
2016-08-10 07:08:36 +00:00
|
|
|
* @operation: flags to specify the desired cache operation
|
|
|
|
*/
|
2016-08-10 07:08:37 +00:00
|
|
|
static void uniphier_cache_maint_common(u32 start, u32 size, u32 ways,
|
|
|
|
u32 operation)
|
2016-07-22 04:38:31 +00:00
|
|
|
{
|
|
|
|
/* clear the complete notification flag */
|
|
|
|
writel(UNIPHIER_SSCOLPQS_EF, UNIPHIER_SSCOLPQS);
|
|
|
|
|
|
|
|
do {
|
2016-08-10 07:08:36 +00:00
|
|
|
/* set cache operation */
|
|
|
|
writel(UNIPHIER_SSCOQM_CE | operation, UNIPHIER_SSCOQM);
|
2016-07-22 04:38:31 +00:00
|
|
|
|
2016-08-10 07:08:36 +00:00
|
|
|
/* set address range if needed */
|
|
|
|
if (likely(UNIPHIER_SSCOQAD_IS_NEEDED(operation))) {
|
|
|
|
writel(start, UNIPHIER_SSCOQAD);
|
|
|
|
writel(size, UNIPHIER_SSCOQSZ);
|
|
|
|
}
|
2016-08-10 07:08:37 +00:00
|
|
|
|
|
|
|
/* set target ways if needed */
|
|
|
|
if (unlikely(UNIPHIER_SSCOQWM_IS_NEEDED(operation)))
|
|
|
|
writel(ways, UNIPHIER_SSCOQWN);
|
2016-08-10 07:08:36 +00:00
|
|
|
} while (unlikely(readl(UNIPHIER_SSCOPPQSEF) &
|
|
|
|
(UNIPHIER_SSCOPPQSEF_FE | UNIPHIER_SSCOPPQSEF_OE)));
|
2016-07-22 04:38:31 +00:00
|
|
|
|
2016-08-10 07:08:36 +00:00
|
|
|
/* wait until the operation is completed */
|
|
|
|
while (likely(readl(UNIPHIER_SSCOLPQS) != UNIPHIER_SSCOLPQS_EF))
|
|
|
|
cpu_relax();
|
2016-07-22 04:38:31 +00:00
|
|
|
}
|
|
|
|
|
2016-08-10 07:08:36 +00:00
|
|
|
static void uniphier_cache_maint_all(u32 operation)
|
2016-07-22 04:38:31 +00:00
|
|
|
{
|
2016-08-10 07:08:37 +00:00
|
|
|
uniphier_cache_maint_common(0, 0, 0, UNIPHIER_SSCOQM_S_ALL | operation);
|
2016-07-22 04:38:31 +00:00
|
|
|
|
2016-08-10 07:08:36 +00:00
|
|
|
uniphier_cache_sync();
|
2016-07-22 04:38:31 +00:00
|
|
|
}
|
|
|
|
|
2016-08-10 07:08:37 +00:00
|
|
|
static void uniphier_cache_maint_range(u32 start, u32 end, u32 ways,
|
|
|
|
u32 operation)
|
2016-07-22 04:38:31 +00:00
|
|
|
{
|
|
|
|
u32 size;
|
|
|
|
|
|
|
|
/*
|
2016-08-10 07:08:36 +00:00
|
|
|
* If the start address is not aligned,
|
|
|
|
* perform a cache operation for the first cache-line
|
2016-07-22 04:38:31 +00:00
|
|
|
*/
|
|
|
|
start = start & ~(UNIPHIER_SSC_LINE_SIZE - 1);
|
|
|
|
|
|
|
|
size = end - start;
|
|
|
|
|
|
|
|
if (unlikely(size >= (u32)(-UNIPHIER_SSC_LINE_SIZE))) {
|
|
|
|
/* this means cache operation for all range */
|
|
|
|
uniphier_cache_maint_all(operation);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-08-10 07:08:36 +00:00
|
|
|
* If the end address is not aligned,
|
|
|
|
* perform a cache operation for the last cache-line
|
2016-07-22 04:38:31 +00:00
|
|
|
*/
|
|
|
|
size = ALIGN(size, UNIPHIER_SSC_LINE_SIZE);
|
|
|
|
|
|
|
|
while (size) {
|
2016-08-10 07:08:36 +00:00
|
|
|
u32 chunk_size = min_t(u32, size, UNIPHIER_SSC_RANGE_OP_MAX_SIZE);
|
|
|
|
|
2016-08-10 07:08:37 +00:00
|
|
|
uniphier_cache_maint_common(start, chunk_size, ways,
|
2016-08-10 07:08:36 +00:00
|
|
|
UNIPHIER_SSCOQM_S_RANGE | operation);
|
2016-07-22 04:38:31 +00:00
|
|
|
|
|
|
|
start += chunk_size;
|
|
|
|
size -= chunk_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
uniphier_cache_sync();
|
|
|
|
}
|
|
|
|
|
2016-08-10 07:08:37 +00:00
|
|
|
void uniphier_cache_prefetch_range(u32 start, u32 end, u32 ways)
|
|
|
|
{
|
|
|
|
uniphier_cache_maint_range(start, end, ways,
|
|
|
|
UNIPHIER_SSCOQM_TID_WAY |
|
|
|
|
UNIPHIER_SSCOQM_CM_PREFETCH);
|
|
|
|
}
|
|
|
|
|
|
|
|
void uniphier_cache_touch_range(u32 start, u32 end, u32 ways)
|
|
|
|
{
|
|
|
|
uniphier_cache_maint_range(start, end, ways,
|
|
|
|
UNIPHIER_SSCOQM_TID_WAY |
|
|
|
|
UNIPHIER_SSCOQM_CM_TOUCH);
|
|
|
|
}
|
|
|
|
|
|
|
|
void uniphier_cache_touch_zero_range(u32 start, u32 end, u32 ways)
|
|
|
|
{
|
|
|
|
uniphier_cache_maint_range(start, end, ways,
|
|
|
|
UNIPHIER_SSCOQM_TID_WAY |
|
|
|
|
UNIPHIER_SSCOQM_CM_TOUCH_ZERO);
|
|
|
|
}
|
|
|
|
|
2016-08-10 07:08:42 +00:00
|
|
|
static void uniphier_cache_endisable(int enable)
|
|
|
|
{
|
|
|
|
u32 tmp;
|
|
|
|
|
|
|
|
tmp = readl(UNIPHIER_SSCC);
|
|
|
|
if (enable)
|
|
|
|
tmp |= UNIPHIER_SSCC_ON;
|
|
|
|
else
|
|
|
|
tmp &= ~UNIPHIER_SSCC_ON;
|
|
|
|
writel(tmp, UNIPHIER_SSCC);
|
|
|
|
}
|
|
|
|
|
|
|
|
void uniphier_cache_enable(void)
|
|
|
|
{
|
|
|
|
uniphier_cache_endisable(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void uniphier_cache_disable(void)
|
|
|
|
{
|
|
|
|
uniphier_cache_endisable(0);
|
|
|
|
}
|
|
|
|
|
2016-08-10 07:08:37 +00:00
|
|
|
#ifdef CONFIG_UNIPHIER_L2CACHE_ON
|
2016-08-10 07:08:36 +00:00
|
|
|
void v7_outer_cache_flush_all(void)
|
|
|
|
{
|
|
|
|
uniphier_cache_maint_all(UNIPHIER_SSCOQM_CM_FLUSH);
|
|
|
|
}
|
|
|
|
|
|
|
|
void v7_outer_cache_inval_all(void)
|
|
|
|
{
|
|
|
|
uniphier_cache_maint_all(UNIPHIER_SSCOQM_CM_INV);
|
|
|
|
}
|
|
|
|
|
2016-07-22 04:38:31 +00:00
|
|
|
void v7_outer_cache_flush_range(u32 start, u32 end)
|
|
|
|
{
|
2016-08-10 07:08:37 +00:00
|
|
|
uniphier_cache_maint_range(start, end, 0, UNIPHIER_SSCOQM_CM_FLUSH);
|
2016-07-22 04:38:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void v7_outer_cache_inval_range(u32 start, u32 end)
|
|
|
|
{
|
|
|
|
if (start & (UNIPHIER_SSC_LINE_SIZE - 1)) {
|
|
|
|
start &= ~(UNIPHIER_SSC_LINE_SIZE - 1);
|
2016-08-10 07:08:37 +00:00
|
|
|
uniphier_cache_maint_range(start, UNIPHIER_SSC_LINE_SIZE, 0,
|
2016-08-10 07:08:36 +00:00
|
|
|
UNIPHIER_SSCOQM_CM_FLUSH);
|
2016-07-22 04:38:31 +00:00
|
|
|
start += UNIPHIER_SSC_LINE_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (start >= end) {
|
|
|
|
uniphier_cache_sync();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (end & (UNIPHIER_SSC_LINE_SIZE - 1)) {
|
|
|
|
end &= ~(UNIPHIER_SSC_LINE_SIZE - 1);
|
2016-08-10 07:08:37 +00:00
|
|
|
uniphier_cache_maint_range(end, UNIPHIER_SSC_LINE_SIZE, 0,
|
2016-08-10 07:08:36 +00:00
|
|
|
UNIPHIER_SSCOQM_CM_FLUSH);
|
2016-07-22 04:38:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (start >= end) {
|
|
|
|
uniphier_cache_sync();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-08-10 07:08:37 +00:00
|
|
|
uniphier_cache_maint_range(start, end, 0, UNIPHIER_SSCOQM_CM_INV);
|
2016-07-22 04:38:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void v7_outer_cache_enable(void)
|
|
|
|
{
|
|
|
|
writel(U32_MAX, UNIPHIER_SSCLPDAWCR); /* activate all ways */
|
2016-08-10 07:08:42 +00:00
|
|
|
uniphier_cache_enable();
|
2016-07-22 04:38:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void v7_outer_cache_disable(void)
|
|
|
|
{
|
2016-08-10 07:08:42 +00:00
|
|
|
uniphier_cache_disable();
|
2016-07-22 04:38:31 +00:00
|
|
|
}
|
2016-08-10 07:08:38 +00:00
|
|
|
#endif
|
2016-07-22 04:38:31 +00:00
|
|
|
|
|
|
|
void enable_caches(void)
|
|
|
|
{
|
|
|
|
dcache_enable();
|
|
|
|
}
|