source: rtems/c/src/lib/libcpu/sparc/cache/cache_.h @ f55215a

4.115
Last change on this file since f55215a was f55215a, checked in by Sebastian Huber <sebastian.huber@…>, on 09/10/13 at 06:50:24

bsps: Fix cache manager support

  • Property mode set to 100644
File size: 581 bytes
Line 
1/*
2 *  SPARC Cache Manager Support
3 */
4
5#ifndef __SPARC_CACHE_h
6#define __SPARC_CACHE_h
7
8/*
9 * CACHE MANAGER: The following functions are CPU-specific.
10 * They provide the basic implementation for the rtems_* cache
11 * management routines. If a given function has no meaning for the CPU,
12 * it does nothing by default.
13 *
14 * FIXME: Some functions simply have not been implemented.
15 */
16
17#if defined(HAS_INSTRUCTION_CACHE)
18#define CPU_CACHE_SUPPORT_PROVIDES_RANGE_FUNCTIONS
19#define CPU_INSTRUCTION_CACHE_ALIGNMENT 0
20#endif
21
22#include <libcpu/cache.h>
23
24#endif
25/* end of include file */
Note: See TracBrowser for help on using the repository browser.