1 /* $Id: cache.h,v 1.4 2000/02/04 07:40:53 ralf Exp $
2 *
3 * This file is subject to the terms and conditions of the GNU General Public
4 * License. See the file "COPYING" in the main directory of this archive
5 * for more details.
6 *
7 * Copyright (C) 1997, 1998, 1999 Ralf Baechle
8 * Copyright (C) 1999 Silicon Graphics, Inc.
9 */
10 #ifndef _ASM_CACHE_H
11 #define _ASM_CACHE_H
12
13 #include <linux/config.h>
14
15 #if defined(CONFIG_CPU_R3000) || defined(CONFIG_CPU_R6000)
16 #define L1_CACHE_BYTES 16
17 #else
18 #define L1_CACHE_BYTES 32 /* A guess */
19 #endif
20
21 #define SMP_CACHE_BYTES L1_CACHE_BYTES
22
23 #endif /* _ASM_CACHE_H */
24
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.