blob: f37f1c031631c77bf266c1398b5f23322b5f201a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/sh/kernel/cpu/init.c
3 *
4 * CPU init code
5 *
Paul Mundtffe1b4e2007-03-12 16:15:22 +09006 * Copyright (C) 2002 - 2007 Paul Mundt
Richard Curnowb638d0b2006-09-27 14:09:26 +09007 * Copyright (C) 2003 Richard Curnow
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file "COPYING" in the main directory of this archive
11 * for more details.
12 */
13#include <linux/init.h>
14#include <linux/kernel.h>
Paul Mundtaec5e0e2006-12-25 09:51:47 +090015#include <linux/mm.h>
16#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/processor.h>
18#include <asm/uaccess.h>
Paul Mundtf3c25752006-09-27 18:36:17 +090019#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/system.h>
21#include <asm/cacheflush.h>
22#include <asm/cache.h>
23#include <asm/io.h>
Paul Mundtaba10302007-09-21 18:32:32 +090024#include <asm/smp.h>
Paul Mundtc881cbc2007-11-10 20:18:18 +090025#ifdef CONFIG_SUPERH32
26#include <asm/ubc.h>
27#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29/*
30 * Generic wrapper for command line arguments to disable on-chip
31 * peripherals (nofpu, nodsp, and so forth).
32 */
33#define onchip_setup(x) \
34static int x##_disabled __initdata = 0; \
35 \
36static int __init x##_setup(char *opts) \
37{ \
38 x##_disabled = 1; \
OGAWA Hirofumi9b410462006-03-31 02:30:33 -080039 return 1; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070040} \
41__setup("no" __stringify(x), x##_setup);
42
43onchip_setup(fpu);
44onchip_setup(dsp);
45
Paul Mundt45ed2852007-03-08 18:12:17 +090046#ifdef CONFIG_SPECULATIVE_EXECUTION
47#define CPUOPM 0xff2f0000
48#define CPUOPM_RABD (1 << 5)
49
50static void __init speculative_execution_init(void)
51{
52 /* Clear RABD */
53 ctrl_outl(ctrl_inl(CPUOPM) & ~CPUOPM_RABD, CPUOPM);
54
55 /* Flush the update */
56 (void)ctrl_inl(CPUOPM);
57 ctrl_barrier();
58}
59#else
60#define speculative_execution_init() do { } while (0)
61#endif
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/*
64 * Generic first-level cache init
65 */
66static void __init cache_init(void)
67{
68 unsigned long ccr, flags;
69
Paul Mundtffe1b4e2007-03-12 16:15:22 +090070 /* First setup the rest of the I-cache info */
71 current_cpu_data.icache.entry_mask = current_cpu_data.icache.way_incr -
72 current_cpu_data.icache.linesz;
73
74 current_cpu_data.icache.way_size = current_cpu_data.icache.sets *
75 current_cpu_data.icache.linesz;
76
77 /* And the D-cache too */
78 current_cpu_data.dcache.entry_mask = current_cpu_data.dcache.way_incr -
79 current_cpu_data.dcache.linesz;
80
81 current_cpu_data.dcache.way_size = current_cpu_data.dcache.sets *
82 current_cpu_data.dcache.linesz;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 jump_to_P2();
85 ccr = ctrl_inl(CCR);
86
87 /*
Richard Curnowb638d0b2006-09-27 14:09:26 +090088 * At this point we don't know whether the cache is enabled or not - a
89 * bootloader may have enabled it. There are at least 2 things that
90 * could be dirty in the cache at this point:
91 * 1. kernel command line set up by boot loader
92 * 2. spilled registers from the prolog of this function
93 * => before re-initialising the cache, we must do a purge of the whole
94 * cache out to memory for safety. As long as nothing is spilled
95 * during the loop to lines that have already been done, this is safe.
96 * - RPC
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 */
98 if (ccr & CCR_CACHE_ENABLE) {
99 unsigned long ways, waysize, addrstart;
100
Paul Mundt11c19652006-12-25 10:19:56 +0900101 waysize = current_cpu_data.dcache.sets;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900103#ifdef CCR_CACHE_ORA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 /*
105 * If the OC is already in RAM mode, we only have
106 * half of the entries to flush..
107 */
108 if (ccr & CCR_CACHE_ORA)
109 waysize >>= 1;
Yoshinori Sato9d4436a2006-11-05 15:40:13 +0900110#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Paul Mundt11c19652006-12-25 10:19:56 +0900112 waysize <<= current_cpu_data.dcache.entry_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114#ifdef CCR_CACHE_EMODE
115 /* If EMODE is not set, we only have 1 way to flush. */
116 if (!(ccr & CCR_CACHE_EMODE))
117 ways = 1;
118 else
119#endif
Paul Mundt11c19652006-12-25 10:19:56 +0900120 ways = current_cpu_data.dcache.ways;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 addrstart = CACHE_OC_ADDRESS_ARRAY;
123 do {
124 unsigned long addr;
125
126 for (addr = addrstart;
127 addr < addrstart + waysize;
Paul Mundt11c19652006-12-25 10:19:56 +0900128 addr += current_cpu_data.dcache.linesz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 ctrl_outl(0, addr);
130
Paul Mundt11c19652006-12-25 10:19:56 +0900131 addrstart += current_cpu_data.dcache.way_incr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 } while (--ways);
133 }
134
135 /*
136 * Default CCR values .. enable the caches
137 * and invalidate them immediately..
138 */
139 flags = CCR_CACHE_ENABLE | CCR_CACHE_INVALIDATE;
140
141#ifdef CCR_CACHE_EMODE
142 /* Force EMODE if possible */
Paul Mundt11c19652006-12-25 10:19:56 +0900143 if (current_cpu_data.dcache.ways > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 flags |= CCR_CACHE_EMODE;
Richard Curnowb638d0b2006-09-27 14:09:26 +0900145 else
146 flags &= ~CCR_CACHE_EMODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#endif
148
Paul Mundte7bd34a2007-07-31 17:07:28 +0900149#if defined(CONFIG_CACHE_WRITETHROUGH)
150 /* Write-through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 flags |= CCR_CACHE_WT;
Paul Mundte7bd34a2007-07-31 17:07:28 +0900152#elif defined(CONFIG_CACHE_WRITEBACK)
153 /* Write-back */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 flags |= CCR_CACHE_CB;
Paul Mundte7bd34a2007-07-31 17:07:28 +0900155#else
156 /* Off */
157 flags &= ~CCR_CACHE_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158#endif
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 ctrl_outl(flags, CCR);
161 back_to_P1();
162}
163
164#ifdef CONFIG_SH_DSP
165static void __init release_dsp(void)
166{
167 unsigned long sr;
168
169 /* Clear SR.DSP bit */
170 __asm__ __volatile__ (
171 "stc\tsr, %0\n\t"
172 "and\t%1, %0\n\t"
173 "ldc\t%0, sr\n\t"
174 : "=&r" (sr)
175 : "r" (~SR_DSP)
176 );
177}
178
179static void __init dsp_init(void)
180{
181 unsigned long sr;
182
183 /*
184 * Set the SR.DSP bit, wait for one instruction, and then read
185 * back the SR value.
186 */
187 __asm__ __volatile__ (
188 "stc\tsr, %0\n\t"
189 "or\t%1, %0\n\t"
190 "ldc\t%0, sr\n\t"
191 "nop\n\t"
192 "stc\tsr, %0\n\t"
193 : "=&r" (sr)
194 : "r" (SR_DSP)
195 );
196
197 /* If the DSP bit is still set, this CPU has a DSP */
198 if (sr & SR_DSP)
Paul Mundt11c19652006-12-25 10:19:56 +0900199 current_cpu_data.flags |= CPU_HAS_DSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 /* Now that we've determined the DSP status, clear the DSP bit. */
202 release_dsp();
203}
204#endif /* CONFIG_SH_DSP */
205
206/**
207 * sh_cpu_init
208 *
209 * This is our initial entry point for each CPU, and is invoked on the boot
210 * CPU prior to calling start_kernel(). For SMP, a combination of this and
211 * start_secondary() will bring up each processor to a ready state prior
212 * to hand forking the idle loop.
213 *
214 * We do all of the basic processor init here, including setting up the
215 * caches, FPU, DSP, kicking the UBC, etc. By the time start_kernel() is
216 * hit (and subsequently platform_setup()) things like determining the
217 * CPU subtype and initial configuration will all be done.
218 *
219 * Each processor family is still responsible for doing its own probing
220 * and cache configuration in detect_cpu_and_cache_system().
221 */
Paul Mundtaba10302007-09-21 18:32:32 +0900222
223asmlinkage void __cpuinit sh_cpu_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Paul Mundtaba10302007-09-21 18:32:32 +0900225 current_thread_info()->cpu = hard_smp_processor_id();
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /* First, probe the CPU */
228 detect_cpu_and_cache_system();
229
Paul Mundtffe1b4e2007-03-12 16:15:22 +0900230 if (current_cpu_data.type == CPU_SH_NONE)
231 panic("Unknown CPU");
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 /* Init the cache */
234 cache_init();
235
Paul Mundtaba10302007-09-21 18:32:32 +0900236 if (raw_smp_processor_id() == 0)
237 shm_align_mask = max_t(unsigned long,
238 current_cpu_data.dcache.way_size - 1,
239 PAGE_SIZE - 1);
Paul Mundtf3c25752006-09-27 18:36:17 +0900240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 /* Disable the FPU */
242 if (fpu_disabled) {
243 printk("FPU Disabled\n");
Paul Mundt11c19652006-12-25 10:19:56 +0900244 current_cpu_data.flags &= ~CPU_HAS_FPU;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 disable_fpu();
246 }
247
248 /* FPU initialization */
Paul Mundt11c19652006-12-25 10:19:56 +0900249 if ((current_cpu_data.flags & CPU_HAS_FPU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 clear_thread_flag(TIF_USEDFPU);
251 clear_used_math();
252 }
253
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900254 /*
255 * Initialize the per-CPU ASID cache very early, since the
256 * TLB flushing routines depend on this being setup.
257 */
258 current_cpu_data.asid_cache = NO_CONTEXT;
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260#ifdef CONFIG_SH_DSP
261 /* Probe for DSP */
262 dsp_init();
263
264 /* Disable the DSP */
265 if (dsp_disabled) {
266 printk("DSP Disabled\n");
Paul Mundt11c19652006-12-25 10:19:56 +0900267 current_cpu_data.flags &= ~CPU_HAS_DSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 release_dsp();
269 }
270#endif
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 /*
273 * Some brain-damaged loaders decided it would be a good idea to put
274 * the UBC to sleep. This causes some issues when it comes to things
275 * like PTRACE_SINGLESTEP or doing hardware watchpoints in GDB. So ..
276 * we wake it up and hope that all is well.
277 */
Paul Mundtc881cbc2007-11-10 20:18:18 +0900278#ifdef CONFIG_SUPERH32
Paul Mundtaba10302007-09-21 18:32:32 +0900279 if (raw_smp_processor_id() == 0)
280 ubc_wakeup();
Paul Mundtc881cbc2007-11-10 20:18:18 +0900281#endif
282
Paul Mundt45ed2852007-03-08 18:12:17 +0900283 speculative_execution_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}