File: r10kcacheops.h

package info (click to toggle)
kernel-source-2.4.14 2.4.14-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 139,160 kB
  • ctags: 428,423
  • sloc: ansic: 2,435,554; asm: 141,119; makefile: 8,258; sh: 3,099; perl: 2,561; yacc: 1,177; cpp: 755; tcl: 577; lex: 352; awk: 251; lisp: 218; sed: 72
file content (47 lines) | stat: -rw-r--r-- 1,327 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Cache operations for the cache instruction.
 *
 * (C) Copyright 1996, 1997, 1999 by Ralf Baechle
 * (C) Copyright 1999 Silicon Graphics, Inc.
 */
#ifndef	_ASM_R10KCACHEOPS_H
#define	_ASM_R10KCACHEOPS_H

/*
 * Cache Operations
 */
#define Index_Invalidate_I      0x00
#define Index_Writeback_Inv_D   0x01
					/* 0x02 is unused */
#define Index_Writeback_Inv_S	0x03
#define Index_Load_Tag_I	0x04
#define Index_Load_Tag_D	0x05
					/* 0x06 is unused */
#define Index_Load_Tag_S	0x07
#define Index_Store_Tag_I	0x08
#define Index_Store_Tag_D	0x09
					/* 0x0a is unused */
#define Index_Store_Tag_S	0x0b
					/* 0x0c - 0x0e are unused */
#define Hit_Invalidate_I	0x10
#define Hit_Invalidate_D	0x11
					/* 0x12 is unused */
#define Hit_Invalidate_S	0x13
#define Cache_Barrier		0x14
#define Hit_Writeback_Inv_D	0x15
					/* 0x16 is unused */
#define Hit_Writeback_Inv_S	0x17
#define Index_Load_Data_I	0x18
#define Index_Load_Data_D	0x19
					/* 0x1a is unused */
#define Index_Load_Data_S	0x1b
#define Index_Store_Data_I	0x1c
#define Index_Store_Data_D	0x1d
					/* 0x1e is unused */
#define Index_Store_Data_S	0x1f

#endif	/* _ASM_R10KCACHEOPS_H */