4 * Copyright (c) 2001 John Fremlin
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Causality Limited.
18 * 4. The name of Causality Limited may not be used to endorse or promote
19 * products derived from this software without specific prior written
22 * THIS SOFTWARE IS PROVIDED BY CAUSALITY LIMITED ``AS IS'' AND ANY EXPRESS
23 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25 * DISCLAIMED. IN NO EVENT SHALL CAUSALITY LIMITED BE LIABLE FOR ANY DIRECT,
26 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * ARM7TDMI assembly functions for CPU / MMU / TLB specific operations
37 #include <machine/cpu.h>
38 #include <machine/asm.h>
41 * Functions to set the MMU Translation Table Base register
43 * We need to clean and flush the cache as it uses virtual
44 * addresses that are about to change.
46 ENTRY(arm7tdmi_setttb)
47 mov r1, r0 /* store the TTB in a safe place */
48 mov r2, lr /* ditto with lr */
50 bl _C_LABEL(arm7tdmi_cache_flushID)
53 mcr p15, 0, r1, c2, c0, 0
55 /* If we have updated the TTB we must flush the TLB */
56 bl _C_LABEL(arm7tdmi_tlb_flushID)
58 /* For good measure we will flush the IDC as well */
59 bl _C_LABEL(arm7tdmi_cache_flushID)
66 ENTRY(arm7tdmi_tlb_flushID)
68 mcr p15, 0, r0, c8, c7, 0
71 ENTRY(arm7tdmi_tlb_flushID_SE)
72 mcr p15, 0, r0, c8, c7, 1
78 ENTRY(arm7tdmi_cache_flushID)
81 mcr p15, 0, r0, c7, c7, 0
83 /* Make sure that the pipeline is emptied */
92 * These are the CPU-specific parts of the context switcher cpu_switch()
93 * These functions actually perform the TTB reload.
95 ENTRY(arm7tdmi_context_switch)
96 b _C_LABEL(arm7tdmi_setttb)