1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * linux/arch/arm/mm/proc-arm720.S: MMU functions for ARM720
5 * Copyright (C) 2000 Steve Hill (sjhill@cotw.com)
6 * Rob Scott (rscott@mtrob.fdns.net)
7 * Copyright (C) 2000 ARM Limited, Deep Blue Solutions Ltd.
8 * hacked for non-paged-MM by Hyok S. Choi, 2004.
10 * These are the low level assembler for performing cache and TLB
11 * functions on the ARM720T. The ARM720T has a writethrough IDC
12 * cache, so we don't need to clean it.
15 * 05-09-2000 SJH Created by moving 720 specific functions
16 * out of 'proc-arm6,7.S' per RMK discussion
17 * 07-25-2000 SJH Added idle function.
18 * 08-25-2000 DBS Updated for integration of ARM Ltd version.
19 * 04-20-2004 HSC modified for non-paged memory management mode.
21 #include <linux/linkage.h>
22 #include <linux/init.h>
23 #include <asm/assembler.h>
24 #include <asm/asm-offsets.h>
25 #include <asm/hwcap.h>
26 #include <asm/pgtable-hwdef.h>
27 #include <asm/pgtable.h>
28 #include <asm/ptrace.h>
30 #include "proc-macros.S"
33 * Function: arm720_proc_init (void)
34 * : arm720_proc_fin (void)
36 * Notes : This processor does not require these
38 ENTRY(cpu_arm720_dcache_clean_area)
39 ENTRY(cpu_arm720_proc_init)
42 ENTRY(cpu_arm720_proc_fin)
43 mrc p15, 0, r0, c1, c0, 0
44 bic r0, r0, #0x1000 @ ...i............
45 bic r0, r0, #0x000e @ ............wca.
46 mcr p15, 0, r0, c1, c0, 0 @ disable caches
50 * Function: arm720_proc_do_idle(void)
51 * Params : r0 = unused
52 * Purpose : put the processor in proper idle mode
54 ENTRY(cpu_arm720_do_idle)
58 * Function: arm720_switch_mm(unsigned long pgd_phys)
59 * Params : pgd_phys Physical address of page table
60 * Purpose : Perform a task switch, saving the old process' state and restoring
63 ENTRY(cpu_arm720_switch_mm)
66 mcr p15, 0, r1, c7, c7, 0 @ invalidate cache
67 mcr p15, 0, r0, c2, c0, 0 @ update page table ptr
68 mcr p15, 0, r1, c8, c7, 0 @ flush TLB (v4)
73 * Function: arm720_set_pte_ext(pte_t *ptep, pte_t pte, unsigned int ext)
74 * Params : r0 = Address to set
76 * Purpose : Set a PTE and flush it out of any WB cache
79 ENTRY(cpu_arm720_set_pte_ext)
81 armv3_set_pte_ext wc_disable=0
86 * Function: arm720_reset
87 * Params : r0 = address to jump to
88 * Notes : This sets up everything for a reset
90 .pushsection .idmap.text, "ax"
91 ENTRY(cpu_arm720_reset)
93 mcr p15, 0, ip, c7, c7, 0 @ invalidate cache
95 mcr p15, 0, ip, c8, c7, 0 @ flush TLB (v4)
97 mrc p15, 0, ip, c1, c0, 0 @ get ctrl register
98 bic ip, ip, #0x000f @ ............wcam
99 bic ip, ip, #0x2100 @ ..v....s........
100 mcr p15, 0, ip, c1, c0, 0 @ ctrl register
102 ENDPROC(cpu_arm720_reset)
105 .type __arm710_setup, #function
108 mcr p15, 0, r0, c7, c7, 0 @ invalidate caches
110 mcr p15, 0, r0, c8, c7, 0 @ flush TLB (v4)
112 mrc p15, 0, r0, c1, c0 @ get control register
113 ldr r5, arm710_cr1_clear
115 ldr r5, arm710_cr1_set
117 ret lr @ __ret (head.S)
118 .size __arm710_setup, . - __arm710_setup
122 * .RVI ZFRS BLDP WCAM
123 * .... 0001 ..11 1101
126 .type arm710_cr1_clear, #object
127 .type arm710_cr1_set, #object
133 .type __arm720_setup, #function
136 mcr p15, 0, r0, c7, c7, 0 @ invalidate caches
138 mcr p15, 0, r0, c8, c7, 0 @ flush TLB (v4)
142 mrc p15, 0, r0, c1, c0 @ get control register
145 ret lr @ __ret (head.S)
146 .size __arm720_setup, . - __arm720_setup
150 * .RVI ZFRS BLDP WCAM
151 * ..1. 1001 ..11 1101
154 .type arm720_crval, #object
156 crval clear=0x00002f3f, mmuset=0x0000213d, ucset=0x00000130
159 @ define struct processor (see <asm/proc-fns.h> and proc-macros.S)
160 define_processor_functions arm720, dabort=v4t_late_abort, pabort=legacy_pabort
164 string cpu_arch_name, "armv4t"
165 string cpu_elf_name, "v4"
166 string cpu_arm710_name, "ARM710T"
167 string cpu_arm720_name, "ARM720T"
172 * See <asm/procinfo.h> for a definition of this structure.
175 .section ".proc.info.init", "a"
177 .macro arm720_proc_info name:req, cpu_val:req, cpu_mask:req, cpu_name:req, cpu_flush:req
178 .type __\name\()_proc_info,#object
179 __\name\()_proc_info:
182 .long PMD_TYPE_SECT | \
183 PMD_SECT_BUFFERABLE | \
184 PMD_SECT_CACHEABLE | \
186 PMD_SECT_AP_WRITE | \
188 .long PMD_TYPE_SECT | \
190 PMD_SECT_AP_WRITE | \
192 initfn \cpu_flush, __\name\()_proc_info @ cpu_flush
193 .long cpu_arch_name @ arch_name
194 .long cpu_elf_name @ elf_name
195 .long HWCAP_SWP | HWCAP_HALF | HWCAP_THUMB @ elf_hwcap
197 .long arm720_processor_functions
201 .size __\name\()_proc_info, . - __\name\()_proc_info
204 arm720_proc_info arm710, 0x41807100, 0xffffff00, cpu_arm710_name, __arm710_setup
205 arm720_proc_info arm720, 0x41807200, 0xffffff00, cpu_arm720_name, __arm720_setup