1d1da330da
Gregory Nutt has submitted the SGA and we can migrate the licenses to Apache. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
279 lines
7.3 KiB
C
279 lines
7.3 KiB
C
/****************************************************************************
|
|
* arch/arm/src/armv7-a/arm_cache.c
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership. The
|
|
* ASF licenses this file to you 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
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
#include <nuttx/cache.h>
|
|
#include <nuttx/irq.h>
|
|
|
|
#include "cp15_cacheops.h"
|
|
#include "barriers.h"
|
|
#include "l2cc.h"
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: up_invalidate_dcache
|
|
*
|
|
* Description:
|
|
* Invalidate the data cache within the specified region; we will be
|
|
* performing a DMA operation in this region and we want to purge old data
|
|
* in the cache.
|
|
*
|
|
* Input Parameters:
|
|
* start - virtual start address of region
|
|
* end - virtual end address of region + 1
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
* Assumptions:
|
|
* This operation is not atomic. This function assumes that the caller
|
|
* has exclusive access to the address range so that no harm is done if
|
|
* the operation is pre-empted.
|
|
*
|
|
****************************************************************************/
|
|
|
|
void up_invalidate_dcache(uintptr_t start, uintptr_t end)
|
|
{
|
|
cp15_invalidate_dcache(start, end);
|
|
l2cc_invalidate(start, end);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: up_invalidate_dcache_all
|
|
*
|
|
* Description:
|
|
* Invalidate the entire contents of D cache.
|
|
*
|
|
* NOTE: This function forces L1 and L2 cache operations to be atomic
|
|
* by disabling interrupts.
|
|
*
|
|
* Input Parameters:
|
|
* None
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
void up_invalidate_dcache_all(void)
|
|
{
|
|
#ifdef CONFIG_ARCH_L2CACHE
|
|
irqstate_t flags = enter_critical_section();
|
|
cp15_invalidate_dcache_all();
|
|
l2cc_invalidate_all();
|
|
leave_critical_section(flags);
|
|
#else
|
|
cp15_invalidate_dcache_all();
|
|
#endif
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: up_invalidate_icache_all
|
|
*
|
|
* Description:
|
|
* Invalidate all instruction caches to PoU, also flushes branch target
|
|
* cache
|
|
*
|
|
* Input Parameters:
|
|
* None
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
void up_invalidate_icache_all(void)
|
|
{
|
|
cp15_invalidate_icache();
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: up_clean_dcache
|
|
*
|
|
* Description:
|
|
* Clean the data cache within the specified region by flushing the
|
|
* contents of the data cache to memory.
|
|
*
|
|
* Input Parameters:
|
|
* start - virtual start address of region
|
|
* end - virtual end address of region + 1
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
* Assumptions:
|
|
* This operation is not atomic. This function assumes that the caller
|
|
* has exclusive access to the address range so that no harm is done if
|
|
* the operation is pre-empted.
|
|
*
|
|
****************************************************************************/
|
|
|
|
void up_clean_dcache(uintptr_t start, uintptr_t end)
|
|
{
|
|
cp15_clean_dcache(start, end);
|
|
l2cc_clean(start, end);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: up_flush_dcache
|
|
*
|
|
* Description:
|
|
* Flush the data cache within the specified region by cleaning and
|
|
* invalidating the D cache.
|
|
*
|
|
* Input Parameters:
|
|
* start - virtual start address of region
|
|
* end - virtual end address of region + 1
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
* Assumptions:
|
|
* This operation is not atomic. This function assumes that the caller
|
|
* has exclusive access to the address range so that no harm is done if
|
|
* the operation is pre-empted.
|
|
*
|
|
****************************************************************************/
|
|
|
|
void up_flush_dcache(uintptr_t start, uintptr_t end)
|
|
{
|
|
cp15_flush_dcache(start, end);
|
|
l2cc_flush(start, end);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: up_enable_icache
|
|
*
|
|
* Description:
|
|
* Enable the I-Cache
|
|
*
|
|
* Input Parameters:
|
|
* None
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
void up_enable_icache(void)
|
|
{
|
|
cp15_enable_icache();
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: up_disable_icache
|
|
*
|
|
* Description:
|
|
* Disable the I-Cache
|
|
*
|
|
* Input Parameters:
|
|
* None
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
void up_disable_icache(void)
|
|
{
|
|
cp15_disable_icache();
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: up_enable_dcache
|
|
*
|
|
* Description:
|
|
* Enable the D-Cache
|
|
*
|
|
* Input Parameters:
|
|
* None
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
void up_enable_dcache(void)
|
|
{
|
|
cp15_enable_dcache();
|
|
l2cc_enable();
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: up_disable_dcache
|
|
*
|
|
* Description:
|
|
* Disable the D-Cache
|
|
*
|
|
* Input Parameters:
|
|
* None
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
void up_disable_dcache(void)
|
|
{
|
|
cp15_disable_dcache();
|
|
l2cc_disable();
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: up_coherent_dcache
|
|
*
|
|
* Description:
|
|
* Ensure that the I and D caches are coherent within specified region
|
|
* by cleaning the D cache (i.e., flushing the D cache contents to memory
|
|
* and invalidating the I cache. This is typically used when code has been
|
|
* written to a memory region, and will be executed.
|
|
*
|
|
* Input Parameters:
|
|
* addr - virtual start address of region
|
|
* len - Size of the address region in bytes
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
****************************************************************************/
|
|
|
|
void up_coherent_dcache(uintptr_t addr, size_t len)
|
|
{
|
|
if (len > 0)
|
|
{
|
|
/* Perform the operation on the L1 cache */
|
|
|
|
cp15_coherent_dcache(addr, addr + len);
|
|
|
|
#ifdef CONFIG_ARCH_L2CACHE
|
|
/* If we have an L2 cache, then there more things that need to done */
|
|
|
|
# warning This is insufficient
|
|
#endif
|
|
}
|
|
}
|