source: svn/trunk/newcon3bcm2_21bu/toolchain/mips-linux-uclibc/include/asm/cache.h

Last change on this file was 2, checked in by jglee, 11 years ago

first commit

  • Property svn:executable set to *
File size: 594 bytes
Line 
1/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License.  See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1997, 98, 99, 2000, 2003 Ralf Baechle
7 * Copyright (C) 1999 Silicon Graphics, Inc.
8 */
9#ifndef _ASM_CACHE_H
10#define _ASM_CACHE_H
11
12
13#define L1_CACHE_SHIFT          CONFIG_MIPS_L1_CACHE_SHIFT
14#define L1_CACHE_BYTES          (1 << L1_CACHE_SHIFT)
15
16#define L1_CACHE_SHIFT_MAX      6
17#define SMP_CACHE_SHIFT         L1_CACHE_SHIFT
18#define SMP_CACHE_BYTES         L1_CACHE_BYTES
19
20#define ARCH_KMALLOC_MINALIGN   8
21
22#endif /* _ASM_CACHE_H */
Note: See TracBrowser for help on using the repository browser.