summaryrefslogtreecommitdiff
path: root/testsuites/sptests/spcache01 (follow)
AgeCommit message (Collapse)Author
2020-04-16Canonicalize config.h includeSebastian Huber
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2018-07-20score: Add _CPU_Instruction_no_operation()Sebastian Huber
This helps to reduce the use of architecture-specific defines throughout the code base.
2018-04-10testsuite/sptests: Merged nested Makefile.am files into one Makefile.amChris Johns
This change is part of the testsuite Makefile.am reorganization. Update #3382
2017-11-06tests: Use simple console driverSebastian Huber
Update #3170. Update #3199.
2017-10-28tests: Remove TEST_INITSebastian Huber
The TEST_EXTERN is a used only by the system.h style tests and they use CONFIGURE_INIT appropriately. Update #3170. Update #3199.
2017-10-23testsuite: Use printk for all test output where possible.Chris Johns
- Remove the printf support leaving the direct printk support configured with TESTS_USE_PRINTK and all other output goes via a buffered vsniprintf call to printk. - Control the test's single init for functions and global data with TEST_INIT and not CONFIGURE_INIT. They are now separate. Updates #3170.
2017-07-19sptests/spcache01: Use standard test IOSebastian Huber
Update #3076.
2017-04-05spcache01: Instruction cache invalidate workaroundSebastian Huber
On some systems, the instruction cache invalidation is not allowed by the MMU.
2015-03-05tests: Fix warningsSebastian Huber
2014-12-16Delete CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEMSebastian Huber
This define was superfluous, undocumented and used inconsistently.
2014-11-27rtems: Add rtems_cache_coherent_allocate()Sebastian Huber
Add rtems_cache_coherent_free() and rtems_cache_coherent_add_area().
2014-11-25rtems: Move rtems_cache_aligned_malloc()Sebastian Huber
Make sure also the size is cache aligned since otherwise we may have some overlap with the next allocation block. A cache invalidate on this area would be fatal.
2014-11-25sptest/spcache01: New test casesSebastian Huber
2014-08-25sptests/spcache01: Make inline assembly conditional to account for OpenRISC ↵Hesham ALMatary
l.nop instruction.
2014-03-25tests/sptests: Use <rtems/test.h>Sebastian Huber
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns
2014-03-14score: Add SMP lock profiling supportSebastian Huber
2014-03-11score: Add function to destroy SMP locksSebastian Huber
2014-03-11score: Add local context to SMP lock APISebastian Huber
Add a local context structure to the SMP lock API for acquire and release pairs. This context can be used to store the ISR level and profiling information. It may be later used to enable more sophisticated lock algorithms, e.g. MCS locks. There is only one lock that cannot be used with a local context. This is the per-CPU lock since here we would have to transfer the local context through a context switch which is very complicated.
2014-02-28rtems: Add cache size functionsSebastian Huber
Add rtems_cache_get_data_cache_size() and rtems_cache_get_instruction_cache_size().
2014-02-28rtems: Use size_t for cache line sizeSebastian Huber
A cache line cannot have a negative size.
2014-02-28sptests/spcache01: Detect write-through cacheSebastian Huber
2014-02-24sptests/spcache01: New testSebastian Huber