2 * linux/arch/arm/mm/proc-arm720.S: MMU functions for ARM720
4 * Copyright (C) 2000 Steve Hill (sjhill@cotw.com)
5 * Rob Scott (rscott@mtrob.fdns.net)
6 * Copyright (C) 2000 ARM Limited, Deep Blue Solutions Ltd.
7 * hacked for non-paged-MM by Hyok S. Choi, 2004.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 * These are the low level assembler for performing cache and TLB
25 * functions on the ARM720T. The ARM720T has a writethrough IDC
26 * cache, so we don't need to clean it.
29 * 05-09-2000 SJH Created by moving 720 specific functions
30 * out of 'proc-arm6,7.S' per RMK discussion
31 * 07-25-2000 SJH Added idle function.
32 * 08-25-2000 DBS Updated for integration of ARM Ltd version.
33 * 04-20-2004 HSC modified for non-paged memory management mode.
35 #include <linux/linkage.h>
36 #include <linux/init.h>
37 #include <asm/assembler.h>
38 #include <asm/asm-offsets.h>
39 #include <asm/hwcap.h>
40 #include <asm/pgtable-hwdef.h>
41 #include <asm/pgtable.h>
42 #include <asm/ptrace.h>
44 #include "proc-macros.S"
47 * Function: arm720_proc_init (void)
48 * : arm720_proc_fin (void)
50 * Notes : This processor does not require these
52 ENTRY(cpu_arm720_dcache_clean_area)
53 ENTRY(cpu_arm720_proc_init)
56 ENTRY(cpu_arm720_proc_fin)
57 mrc p15, 0, r0, c1, c0, 0
58 bic r0, r0, #0x1000 @ ...i............
59 bic r0, r0, #0x000e @ ............wca.
60 mcr p15, 0, r0, c1, c0, 0 @ disable caches
64 * Function: arm720_proc_do_idle(void)
65 * Params : r0 = unused
66 * Purpose : put the processor in proper idle mode
68 ENTRY(cpu_arm720_do_idle)
72 * Function: arm720_switch_mm(unsigned long pgd_phys)
73 * Params : pgd_phys Physical address of page table
74 * Purpose : Perform a task switch, saving the old process' state and restoring
77 ENTRY(cpu_arm720_switch_mm)
80 mcr p15, 0, r1, c7, c7, 0 @ invalidate cache
81 mcr p15, 0, r0, c2, c0, 0 @ update page table ptr
82 mcr p15, 0, r1, c8, c7, 0 @ flush TLB (v4)
87 * Function: arm720_set_pte_ext(pte_t *ptep, pte_t pte, unsigned int ext)
88 * Params : r0 = Address to set
90 * Purpose : Set a PTE and flush it out of any WB cache
93 ENTRY(cpu_arm720_set_pte_ext)
95 armv3_set_pte_ext wc_disable=0
100 * Function: arm720_reset
101 * Params : r0 = address to jump to
102 * Notes : This sets up everything for a reset
104 ENTRY(cpu_arm720_reset)
106 mcr p15, 0, ip, c7, c7, 0 @ invalidate cache
108 mcr p15, 0, ip, c8, c7, 0 @ flush TLB (v4)
110 mrc p15, 0, ip, c1, c0, 0 @ get ctrl register
111 bic ip, ip, #0x000f @ ............wcam
112 bic ip, ip, #0x2100 @ ..v....s........
113 mcr p15, 0, ip, c1, c0, 0 @ ctrl register
118 .type __arm710_setup, #function
121 mcr p15, 0, r0, c7, c7, 0 @ invalidate caches
123 mcr p15, 0, r0, c8, c7, 0 @ flush TLB (v4)
125 mrc p15, 0, r0, c1, c0 @ get control register
126 ldr r5, arm710_cr1_clear
128 ldr r5, arm710_cr1_set
130 mov pc, lr @ __ret (head.S)
131 .size __arm710_setup, . - __arm710_setup
135 * .RVI ZFRS BLDP WCAM
136 * .... 0001 ..11 1101
139 .type arm710_cr1_clear, #object
140 .type arm710_cr1_set, #object
146 .type __arm720_setup, #function
149 mcr p15, 0, r0, c7, c7, 0 @ invalidate caches
151 mcr p15, 0, r0, c8, c7, 0 @ flush TLB (v4)
155 mrc p15, 0, r0, c1, c0 @ get control register
158 mov pc, lr @ __ret (head.S)
159 .size __arm720_setup, . - __arm720_setup
163 * .RVI ZFRS BLDP WCAM
164 * ..1. 1001 ..11 1101
167 .type arm720_crval, #object
169 crval clear=0x00002f3f, mmuset=0x0000213d, ucset=0x00000130
174 * Purpose : Function pointers used to access above functions - all calls
177 .type arm720_processor_functions, #object
178 ENTRY(arm720_processor_functions)
181 .word cpu_arm720_proc_init
182 .word cpu_arm720_proc_fin
183 .word cpu_arm720_reset
184 .word cpu_arm720_do_idle
185 .word cpu_arm720_dcache_clean_area
186 .word cpu_arm720_switch_mm
187 .word cpu_arm720_set_pte_ext
191 .size arm720_processor_functions, . - arm720_processor_functions
195 .type cpu_arch_name, #object
196 cpu_arch_name: .asciz "armv4t"
197 .size cpu_arch_name, . - cpu_arch_name
199 .type cpu_elf_name, #object
200 cpu_elf_name: .asciz "v4"
201 .size cpu_elf_name, . - cpu_elf_name
203 .type cpu_arm710_name, #object
206 .size cpu_arm710_name, . - cpu_arm710_name
208 .type cpu_arm720_name, #object
211 .size cpu_arm720_name, . - cpu_arm720_name
216 * See <asm/procinfo.h> for a definition of this structure.
219 .section ".proc.info.init", #alloc, #execinstr
221 .type __arm710_proc_info, #object
223 .long 0x41807100 @ cpu_val
224 .long 0xffffff00 @ cpu_mask
225 .long PMD_TYPE_SECT | \
226 PMD_SECT_BUFFERABLE | \
227 PMD_SECT_CACHEABLE | \
229 PMD_SECT_AP_WRITE | \
231 .long PMD_TYPE_SECT | \
233 PMD_SECT_AP_WRITE | \
235 b __arm710_setup @ cpu_flush
236 .long cpu_arch_name @ arch_name
237 .long cpu_elf_name @ elf_name
238 .long HWCAP_SWP | HWCAP_HALF | HWCAP_THUMB @ elf_hwcap
239 .long cpu_arm710_name @ name
240 .long arm720_processor_functions
244 .size __arm710_proc_info, . - __arm710_proc_info
246 .type __arm720_proc_info, #object
248 .long 0x41807200 @ cpu_val
249 .long 0xffffff00 @ cpu_mask
250 .long PMD_TYPE_SECT | \
251 PMD_SECT_BUFFERABLE | \
252 PMD_SECT_CACHEABLE | \
254 PMD_SECT_AP_WRITE | \
256 .long PMD_TYPE_SECT | \
258 PMD_SECT_AP_WRITE | \
260 b __arm720_setup @ cpu_flush
261 .long cpu_arch_name @ arch_name
262 .long cpu_elf_name @ elf_name
263 .long HWCAP_SWP | HWCAP_HALF | HWCAP_THUMB @ elf_hwcap
264 .long cpu_arm720_name @ name
265 .long arm720_processor_functions
269 .size __arm720_proc_info, . - __arm720_proc_info