2015-04-11 07:44:37 +08:00
|
|
|
/* cache.c - cache manipulation */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2013-2014 Wind River Systems, Inc.
|
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-04-11 07:44:37 +08:00
|
|
|
*
|
2015-10-07 00:00:37 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
/*
|
2015-10-21 00:42:33 +08:00
|
|
|
* DESCRIPTION
|
|
|
|
* This module contains functions for manipulation caches.
|
2015-07-02 05:22:39 +08:00
|
|
|
*/
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
#include <nanokernel.h>
|
2015-05-29 01:56:47 +08:00
|
|
|
#include <arch/cpu.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
#include <misc/util.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_CLFLUSH_INSTRUCTION_SUPPORTED
|
|
|
|
|
|
|
|
#if (CONFIG_CACHE_LINE_SIZE == 0)
|
|
|
|
#error Cannot use this implementation with a cache line size of 0
|
|
|
|
#endif
|
|
|
|
|
2015-07-02 05:22:39 +08:00
|
|
|
/**
|
|
|
|
*
|
2015-07-02 05:51:40 +08:00
|
|
|
* @brief Flush a page to main memory
|
2015-07-02 05:22:39 +08:00
|
|
|
*
|
|
|
|
* No alignment is required for either <virt> or <size>, but since
|
2015-09-19 04:18:15 +08:00
|
|
|
* sys_cache_flush() iterates on the cache lines, a cache line alignment for
|
|
|
|
* both is optimal.
|
2015-07-02 05:22:39 +08:00
|
|
|
*
|
|
|
|
* The cache line size is specified via the CONFIG_CACHE_LINE_SIZE kconfig
|
|
|
|
* option.
|
|
|
|
*
|
2015-07-02 05:29:04 +08:00
|
|
|
* @return N/A
|
2015-07-02 05:22:39 +08:00
|
|
|
*/
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-09-19 04:18:15 +08:00
|
|
|
void sys_cache_flush(vaddr_t virt, size_t size)
|
2015-04-11 07:44:37 +08:00
|
|
|
{
|
|
|
|
int end;
|
|
|
|
|
|
|
|
size = ROUND_UP(size, CONFIG_CACHE_LINE_SIZE);
|
|
|
|
end = virt + size;
|
|
|
|
|
|
|
|
for (; virt < end; virt += CONFIG_CACHE_LINE_SIZE) {
|
|
|
|
__asm__ volatile("clflush %0;\n\t" : : "m"(virt));
|
|
|
|
}
|
|
|
|
|
|
|
|
__asm__ volatile("mfence;\n\t");
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_CLFLUSH_INSTRUCTION_SUPPORTED */
|