summaryrefslogtreecommitdiffstats
path: root/include/asm-ppc/cache.h
blob: 8bdffcdfb5f5ccc3d7a33807753bfa8f82efb6d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * include/asm-ppc/cache.h
 */
#ifndef __ARCH_PPC_CACHE_H
#define __ARCH_PPC_CACHE_H

/* bytes per L1 cache line */
/* a guess */ /* a correct one -- Cort */
#define        L1_CACHE_BYTES  32      

#define        L1_CACHE_ALIGN(x)       (((x)+(L1_CACHE_BYTES-1))&~(L1_CACHE_BYTES-1))

#endif