1
2#include <asm_defs.h>
3
4.text
5
6
7	/* that one can be inlined */
8FUNCTION(flush_insn_pipeline_030):
9	nop
10	rts
11FUNCTION_END(flush_insn_pipeline_030)
12
13	/* flush all ATC entries */
14FUNCTION(flush_atc_all_030):
15	pflusha
16	rts
17FUNCTION_END(flush_atc_all_030)
18
19	/* flush ATC entries for given address */
20FUNCTION(flush_atc_addr_030):
21	move.l	(4,%a7),%a0
22	pflush	#0,#0,(%a0)
23	rts
24FUNCTION_END(flush_atc_addr_030)
25
26
27
28