VxWorks Reference Manual : Libraries

cacheSh7729Lib

NAME

cacheSh7729Lib - Hitachi SH7729 cache management library

ROUTINES

cacheSh7729LibInit( ) - initialize the SH7729 cache library

DESCRIPTION

This library contains architecture-specific cache library functions for the Hitachi SH7729 architecture.

The cache is 16-Kbytes (16 bytes X 256 entries X 4 ways) mixed instruction and data cache that operates in write-through or write-back (copyback) mode. Cache line size is fixed at 16 bytes, and the cache address array holds physical addresses as cache tags. Cache entries may be "flushed" by accesses to the address array in privileged mode. There is a write-back buffer which can hold one line of cache entry, and the completion of write-back cycle is assured by accessing to any cache through region.

For general information about caching, see the manual entry for cacheLib.

INCLUDE FILES

cacheLib.h

SEE ALSO

cacheSh7729Lib, cacheLib


Libraries : Routines

cacheSh7729LibInit( )

NAME

cacheSh7729LibInit( ) - initialize the SH7729 cache library

SYNOPSIS

STATUS cacheSh7729LibInit
    (
    CACHE_MODE instMode, /* instruction cache mode (ignored) */
    CACHE_MODE dataMode  /* data cache mode */
    )

DESCRIPTION

This routine initializes the cache library for the Hitachi SH7729 processor. It initializes the function pointers and configures the caches to the specified cache modes. Modes should be set before caching is enabled. If two complementary flags are set (enable/disable), no action is taken for any of the input flags.

The following caching modes are available for the SH7729 processor:

SH7729: CACHE_WRITETHROUGH (cache for instruction and data)
CACHE_COPYBACK (cache for instruction and data)
CACHE_COPYBACK_P1 (copy-back cache for P1)
CACHE_DMA_BYPASS_P0 (allocate DMA buffer to P2, free it to P0)
CACHE_DMA_BYPASS_P1 (allocate DMA buffer to P2, free it to P1)
CACHE_DMA_BYPASS_P3 (allocate DMA buffer to P2, free it to P3)
The CACHE_DMA_BYPASS_Px modes allow to allocate "cache-safe" buffers without MMU. If none of CACHE_DMA_BYPASS_Px modes is specified, cacheDmaMalloc( ) returns a cache-safe buffer on logical space, which is created by the MMU. If CACHE_DMA_BYPASS_P0 is selected, cacheDmaMalloc( ) returns a cache-safe buffer on P2 space, and cacheDmaFree( ) releases the buffer to P0 space. Namely, if the system memory partition is located on P0, cache-safe buffers can be allocated and freed without MMU, by selecting CACHE_DMA_BYPASS_P0.

RETURNS

OK, or ERROR.

SEE ALSO

cacheSh7729Lib