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

4.104.114.84.95
Last change on this file since ca406082 was ca406082, checked in by Joel Sherrill <joel.sherrill@…>, on 11/15/00 at 21:40:05

2000-11-14 Jiri Gaisler <jgais@…>

  • Makefile.am, configure.in: Added support for instruction cache enabling based on CPU model.
  • cache/.cvsignore, cache/Makefile.am, cache/cache.c, cache/cache_.h: New files.
  • Property mode set to 100644
File size: 530 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_INSTRUCTION_CACHE_ALIGNMENT 0
19#endif
20
21#include <libcpu/cache.h>
22
23#endif
24/* end of include file */
Note: See TracBrowser for help on using the repository browser.