blob: 7fac8c6121349e03e96bd00694e379c499326e5b [file] [log] [blame]
Hyok S. Choi43f5f012006-09-26 17:38:05 +09001/*
2 * linux/arch/arm/mm/proc-arm9tdmi.S: utility functions for ARM9TDMI
3 *
4 * Copyright (C) 2003-2006 Hyok S. Choi <hyok.choi@samsung.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 */
11#include <linux/linkage.h>
12#include <linux/init.h>
13#include <asm/assembler.h>
14#include <asm/asm-offsets.h>
Russell King5ec94072008-09-07 19:15:31 +010015#include <asm/hwcap.h>
Hyok S. Choi43f5f012006-09-26 17:38:05 +090016#include <asm/pgtable-hwdef.h>
17#include <asm/pgtable.h>
Hyok S. Choi43f5f012006-09-26 17:38:05 +090018#include <asm/ptrace.h>
19
Dave Martinb4a19f02011-06-23 17:21:28 +010020#include "proc-macros.S"
21
Hyok S. Choi43f5f012006-09-26 17:38:05 +090022 .text
23/*
24 * cpu_arm9tdmi_proc_init()
25 * cpu_arm9tdmi_do_idle()
26 * cpu_arm9tdmi_dcache_clean_area()
27 * cpu_arm9tdmi_switch_mm()
28 *
29 * These are not required.
30 */
31ENTRY(cpu_arm9tdmi_proc_init)
32ENTRY(cpu_arm9tdmi_do_idle)
33ENTRY(cpu_arm9tdmi_dcache_clean_area)
34ENTRY(cpu_arm9tdmi_switch_mm)
Russell King6ebbf2c2014-06-30 16:29:12 +010035 ret lr
Hyok S. Choi43f5f012006-09-26 17:38:05 +090036
37/*
38 * cpu_arm9tdmi_proc_fin()
39 */
40ENTRY(cpu_arm9tdmi_proc_fin)
Russell King6ebbf2c2014-06-30 16:29:12 +010041 ret lr
Hyok S. Choi43f5f012006-09-26 17:38:05 +090042
43/*
44 * Function: cpu_arm9tdmi_reset(loc)
45 * Params : loc(r0) address to jump to
46 * Purpose : Sets up everything for a reset and jump to the location for soft reset.
47 */
Will Deacon1a4baaf2011-11-15 13:25:04 +000048 .pushsection .idmap.text, "ax"
Hyok S. Choi43f5f012006-09-26 17:38:05 +090049ENTRY(cpu_arm9tdmi_reset)
Russell King6ebbf2c2014-06-30 16:29:12 +010050 ret r0
Will Deacon1a4baaf2011-11-15 13:25:04 +000051ENDPROC(cpu_arm9tdmi_reset)
52 .popsection
Hyok S. Choi43f5f012006-09-26 17:38:05 +090053
Hyok S. Choi43f5f012006-09-26 17:38:05 +090054 .type __arm9tdmi_setup, #function
55__arm9tdmi_setup:
Russell King6ebbf2c2014-06-30 16:29:12 +010056 ret lr
Hyok S. Choi43f5f012006-09-26 17:38:05 +090057 .size __arm9tdmi_setup, . - __arm9tdmi_setup
58
59 __INITDATA
60
Dave Martinb4a19f02011-06-23 17:21:28 +010061 @ define struct processor (see <asm/proc-fns.h> and proc-macros.S)
62 define_processor_functions arm9tdmi, dabort=nommu_early_abort, pabort=legacy_pabort, nommu=1
Hyok S. Choi43f5f012006-09-26 17:38:05 +090063
64 .section ".rodata"
65
Dave Martinb4a19f02011-06-23 17:21:28 +010066 string cpu_arch_name, "armv4t"
67 string cpu_elf_name, "v4"
68 string cpu_arm9tdmi_name, "ARM9TDMI"
69 string cpu_p2001_name, "P2001"
Hyok S. Choi43f5f012006-09-26 17:38:05 +090070
71 .align
72
Ard Biesheuvelbf357062015-03-18 07:29:32 +010073 .section ".proc.info.init", #alloc
Hyok S. Choi43f5f012006-09-26 17:38:05 +090074
Dave Martinb4a19f02011-06-23 17:21:28 +010075.macro arm9tdmi_proc_info name:req, cpu_val:req, cpu_mask:req, cpu_name:req
76 .type __\name\()_proc_info, #object
77__\name\()_proc_info:
78 .long \cpu_val
79 .long \cpu_mask
Hyok S. Choi43f5f012006-09-26 17:38:05 +090080 .long 0
81 .long 0
Ard Biesheuvelbf357062015-03-18 07:29:32 +010082 initfn __arm9tdmi_setup, __\name\()_proc_info
Hyok S. Choi43f5f012006-09-26 17:38:05 +090083 .long cpu_arch_name
84 .long cpu_elf_name
85 .long HWCAP_SWP | HWCAP_THUMB | HWCAP_26BIT
Dave Martinb4a19f02011-06-23 17:21:28 +010086 .long \cpu_name
Hyok S. Choi43f5f012006-09-26 17:38:05 +090087 .long arm9tdmi_processor_functions
88 .long 0
89 .long 0
90 .long v4_cache_fns
Dave Martinb4a19f02011-06-23 17:21:28 +010091 .size __\name\()_proc_info, . - __\name\()_proc_info
92.endm
Hyok S. Choi43f5f012006-09-26 17:38:05 +090093
Dave Martinb4a19f02011-06-23 17:21:28 +010094 arm9tdmi_proc_info arm9tdmi, 0x41009900, 0xfff8ff00, cpu_arm9tdmi_name
95 arm9tdmi_proc_info p2001, 0x41029000, 0xffffffff, cpu_p2001_name