📄 kcache2.c
字号:
/*=================================================================//// kcache2.c//// Cache feature/timing tests////==========================================================================//####COPYRIGHTBEGIN####// // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License // Version 1.1 (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.redhat.com/ // // Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. // // The Original Code is eCos - Embedded Configurable Operating System, // released September 30, 1998. // // The Initial Developer of the Original Code is Red Hat. // Portions created by Red Hat are // Copyright (C) 1998, 1999, 2000 Red Hat, Inc. // All Rights Reserved. // ------------------------------------------- // //####COPYRIGHTEND####//==========================================================================//#####DESCRIPTIONBEGIN####//// Author(s): jskov, based on kcache1.c by dsm// Contributors: jskov// Date: 1998-12-10// Description: Tests some of the more exotic cache macros.//####DESCRIPTIONEND####*/#include <cyg/hal/hal_arch.h> // CYGNUM_HAL_STACK_SIZE_TYPICAL#include <cyg/kernel/kapi.h>#include <cyg/infra/testcase.h>#ifdef CYGVAR_KERNEL_COUNTERS_CLOCK#ifdef CYGFUN_KERNEL_API_C#include <cyg/infra/diag.h>#include <cyg/hal/hal_cache.h>// -------------------------------------------------------------------------#define NTHREADS 1#define STACKSIZE CYGNUM_HAL_STACK_SIZE_TYPICAL// The following are defaults for loop variables. Note they will be overriden// on simulator targets, where detected - there is no point testing a cache// which doesn't exist :-).#define TEST_DZERO_LOOPS 5000 // default number of loops for test_dzero()#define TIME_ILOCK_LOOPS 10000 // default number of loops for time_ilock()#define TIME_DLOCK_LOOPS 10000 // default number of loops for time_dlock()static cyg_handle_t thread[NTHREADS];static cyg_thread thread_obj[NTHREADS];static char stack[NTHREADS][STACKSIZE];#define MAXSIZE 1<<18volatile char m[MAXSIZE];// -------------------------------------------------------------------------// Test of data cache zero.// o Timing comparison with instructions doing the same amount of work.// o Check that area cleared with the DCACHE_ZERO macro contains zeros.#ifdef HAL_DCACHE_ZEROstatic void test_dzero(void){ register cyg_uint32 k, i; cyg_tick_count_t count0, count1; cyg_ucount32 t; volatile cyg_uint32* aligned_p; volatile cyg_uint32* p; register CYG_INTERRUPT_STATE oldints; cyg_ucount32 test_dzero_loops = TEST_DZERO_LOOPS; CYG_TEST_INFO("Data cache zero"); if (cyg_test_is_simulator) test_dzero_loops=10; aligned_p = (volatile cyg_uint32*) (((unsigned long) &m[HAL_DCACHE_LINE_SIZE*2]) & ~(HAL_DCACHE_LINE_SIZE-1)); // Time with conventional instructions. HAL_DISABLE_INTERRUPTS(oldints); HAL_DCACHE_SYNC(); HAL_DCACHE_DISABLE(); HAL_DCACHE_SYNC(); HAL_DCACHE_INVALIDATE_ALL(); HAL_DCACHE_ENABLE(); HAL_RESTORE_INTERRUPTS(oldints); count0 = cyg_current_time(); for (k = 0; k < test_dzero_loops; k++) { p = aligned_p; for (i = 0; i < HAL_DCACHE_SETS; i++) {#if (16 == HAL_DCACHE_LINE_SIZE) *p++ = 0; *p++ = 0; *p++ = 0; *p++ = 0;#else#error "Not defined for this cache line size."#endif } HAL_DISABLE_INTERRUPTS(oldints); HAL_DCACHE_SYNC(); HAL_DCACHE_DISABLE(); HAL_DCACHE_SYNC(); HAL_DCACHE_INVALIDATE_ALL(); HAL_DCACHE_ENABLE(); HAL_RESTORE_INTERRUPTS(oldints); } count1 = cyg_current_time(); t = count1 - count0; diag_printf("time with instructions: %d\n", t); // Initialize the area with non-zero so we can check whether // the macro cleared the area properly. p = aligned_p; for (i = 0; i < HAL_DCACHE_SETS*HAL_DCACHE_LINE_SIZE/sizeof(cyg_uint32); i++) { *p++ = 0xdeadbeef; } // Time with DCACHE_ZERO. HAL_DISABLE_INTERRUPTS(oldints); HAL_DCACHE_SYNC(); HAL_DCACHE_DISABLE(); HAL_DCACHE_SYNC(); HAL_DCACHE_INVALIDATE_ALL(); HAL_DCACHE_ENABLE(); HAL_RESTORE_INTERRUPTS(oldints); count0 = cyg_current_time(); for (k = 0; k < test_dzero_loops; k++) { HAL_DCACHE_ZERO(aligned_p, HAL_DCACHE_SETS*HAL_DCACHE_LINE_SIZE); HAL_DISABLE_INTERRUPTS(oldints); HAL_DCACHE_SYNC(); HAL_DCACHE_DISABLE(); HAL_DCACHE_SYNC(); HAL_DCACHE_INVALIDATE_ALL(); HAL_DCACHE_ENABLE(); HAL_RESTORE_INTERRUPTS(oldints); } count1 = cyg_current_time(); t = count1 - count0; diag_printf("time with HAL_DCACHE_ZERO: %d\n", t); // Verify that the area was actually cleared. { cyg_uint32 d; d = 0; p = aligned_p; for (i = 0; i < HAL_DCACHE_SETS*HAL_DCACHE_LINE_SIZE/sizeof(cyg_uint32); i++) { d |= *p++; } CYG_TEST_CHECK(0 == d, "region not properly cleared"); }}#endif// -------------------------------------------------------------------------// Test of data cache write hint.// Just check that the macro compiles.#ifdef HAL_DCACHE_WRITE_HINTstatic void test_dwrite_hint(void){ register cyg_uint32 k; register CYG_INTERRUPT_STATE oldints; CYG_TEST_INFO("Data cache write hint"); HAL_DISABLE_INTERRUPTS(oldints); HAL_DCACHE_SYNC(); HAL_DCACHE_DISABLE(); HAL_DCACHE_SYNC(); HAL_DCACHE_INVALIDATE_ALL(); HAL_DCACHE_ENABLE(); HAL_RESTORE_INTERRUPTS(oldints); HAL_DCACHE_WRITE_HINT(&m[HAL_DCACHE_LINE_SIZE*2], 2*HAL_DCACHE_LINE_SIZE); for (k = 0; k < 20; k++); m[HAL_DCACHE_LINE_SIZE*2] = 42;}#endif// -------------------------------------------------------------------------// Test of data cache read hint.// Just check that the macro compiles.#ifdef HAL_DCACHE_READ_HINTstatic void test_dread_hint(void){ register char c; register cyg_uint32 k; register CYG_INTERRUPT_STATE oldints; CYG_TEST_INFO("Data cache read hint"); HAL_DISABLE_INTERRUPTS(oldints); HAL_DCACHE_SYNC(); HAL_DCACHE_DISABLE(); HAL_DCACHE_SYNC(); HAL_DCACHE_INVALIDATE_ALL(); HAL_DCACHE_ENABLE(); HAL_RESTORE_INTERRUPTS(oldints); HAL_DCACHE_READ_HINT(&m[HAL_DCACHE_LINE_SIZE*2], 2*HAL_DCACHE_LINE_SIZE); for (k = 0; k < 20; k++); c = m[HAL_DCACHE_LINE_SIZE*2];}#endif// -------------------------------------------------------------------------// Test of data cache line store.// Just check that the macro compiles.#ifdef HAL_DCACHE_STOREstatic void test_dstore(void){ volatile cyg_uint8* aligned_p; cyg_int32 i; register CYG_INTERRUPT_STATE oldints; CYG_TEST_INFO("Data cache store region"); for (i = 0; i < HAL_DCACHE_LINE_SIZE*16; i++) m[i] = 0; HAL_DISABLE_INTERRUPTS(oldints); HAL_DCACHE_SYNC(); HAL_DCACHE_DISABLE(); HAL_DCACHE_SYNC(); HAL_DCACHE_INVALIDATE_ALL(); HAL_DCACHE_ENABLE(); HAL_RESTORE_INTERRUPTS(oldints); aligned_p = (volatile cyg_uint8*) (((unsigned long) &m[HAL_DCACHE_LINE_SIZE*2]) & ~(HAL_DCACHE_LINE_SIZE-1)); aligned_p[0] = 42; HAL_DCACHE_STORE(aligned_p, HAL_DCACHE_LINE_SIZE);}#endif// -------------------------------------------------------------------------// Test of data cache line flush.// o Requires write-back cache.// o Check that flushed data is written to memory.// o Simple range check of macro.#ifdef HAL_DCACHE_FLUSHstatic void test_dflush(void){ volatile cyg_uint8* aligned_p; cyg_int32 i; register CYG_INTERRUPT_STATE oldints; CYG_TEST_INFO("Data cache flush region"); for (i = 0; i < HAL_DCACHE_LINE_SIZE*16; i++) m[i] = 0; HAL_DISABLE_INTERRUPTS(oldints); HAL_DCACHE_SYNC(); HAL_DCACHE_DISABLE(); HAL_DCACHE_SYNC(); HAL_DCACHE_INVALIDATE_ALL(); HAL_DCACHE_ENABLE(); HAL_RESTORE_INTERRUPTS(oldints); aligned_p = (volatile cyg_uint8*) (((unsigned long) &m[HAL_DCACHE_LINE_SIZE*2]) & ~(HAL_DCACHE_LINE_SIZE-1)); aligned_p[0] = 42; aligned_p[HAL_DCACHE_LINE_SIZE] = 43; HAL_DCACHE_FLUSH(aligned_p, HAL_DCACHE_LINE_SIZE); HAL_DCACHE_DISABLE(); CYG_TEST_CHECK(42 == aligned_p[0], "memory didn't contain flushed data"); CYG_TEST_CHECK(0 == aligned_p[HAL_DCACHE_LINE_SIZE], "flushed beyond region"); HAL_DCACHE_ENABLE();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -