- Wait for mouse acks properly.
[cake.git] / rom / exec / cachecleare.c
blobb73a285264d7aa4b16d6e50dc950d8b5723f704d
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: CacheClearE() - Clear the caches with extended control.
6 Lang: english
7 */
9 #include <exec/types.h>
10 #include <exec/execbase.h>
11 #include <aros/libcall.h>
13 /*****************************************************************************
15 NAME */
16 #include <proto/exec.h>
18 AROS_LH3(void, CacheClearE,
20 /* SYNOPSIS */
21 AROS_LHA(APTR, address, A0),
22 AROS_LHA(ULONG, length, D0),
23 AROS_LHA(ULONG, caches, D1),
25 /* LOCATION */
26 struct ExecBase *, SysBase, 107, Exec)
28 /* FUNCTION
29 Flush the contents of the CPU instruction or data caches. If some
30 of the cache contains dirty data, push it to memory first.
32 For most systems DMA will not effect processor caches. If *any*
33 external (non-processor) event changes system memory, you MUST
34 clear the cache. For example:
36 DMA
37 Code relocation to run at a different address
38 Building jump tables
39 Loading code from disk
41 INPUTS
42 address - Address to start the operation. This address may be
43 rounded DOWN due to hardware granularity.
44 length - Length of the memory to flush. This will be rounded
45 up, of $FFFFFFFF to indicate that all addresses
46 should be cleared.
47 caches - Bit flags to indicate which caches should be cleared
49 CACRF_ClearI - Clear the instruction cache
50 CACRF_ClearD - Clear the data cache
52 All other bits are reserved.
54 RESULT
55 The caches will be flushed.
57 NOTES
58 It is possible that on some systems the entire cache will be
59 even if this was not the specific request.
61 EXAMPLE
63 BUGS
65 SEE ALSO
66 CacheClearU(), CacheControl()
68 INTERNALS
69 This is a rather CPU dependant function. You should replace it
70 in your $(KERNEL).
72 ******************************************************************************/
74 AROS_LIBFUNC_INIT
75 #warning TODO: Write exec/CacheClearE()
76 /* iaint: I am sick of this continually printing out... */
77 #if DEBUG
78 aros_print_not_implemented("CacheClearE");
79 #endif
80 AROS_LIBFUNC_EXIT
81 } /* CacheClearE */