include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / blackfin / kernel / process.c
CommitLineData
1394f032 1/*
96f1050d 2 * Blackfin architecture-dependent process handling
1394f032 3 *
96f1050d 4 * Copyright 2004-2009 Analog Devices Inc.
1394f032 5 *
96f1050d 6 * Licensed under the GPL-2 or later
1394f032
BW
7 */
8
9#include <linux/module.h>
10#include <linux/smp_lock.h>
11#include <linux/unistd.h>
12#include <linux/user.h>
1f83b8f1 13#include <linux/uaccess.h>
5a0e3ad6 14#include <linux/slab.h>
8b5f79f9
VM
15#include <linux/sched.h>
16#include <linux/tick.h>
d31c5ab1
BW
17#include <linux/fs.h>
18#include <linux/err.h>
1394f032
BW
19
20#include <asm/blackfin.h>
7adfb58f 21#include <asm/fixed_code.h>
dbc895f9 22#include <asm/mem_map.h>
1394f032 23
1394f032
BW
24asmlinkage void ret_from_fork(void);
25
26/* Points to the SDRAM backup memory for the stack that is currently in
27 * L1 scratchpad memory.
28 */
29void *current_l1_stack_save;
30
31/* The number of tasks currently using a L1 stack area. The SRAM is
32 * allocated/deallocated whenever this changes from/to zero.
33 */
34int nr_l1stack_tasks;
35
36/* Start and length of the area in L1 scratchpad memory which we've allocated
37 * for process stacks.
38 */
39void *l1_stack_base;
40unsigned long l1_stack_len;
41
42/*
43 * Powermanagement idle function, if any..
44 */
45void (*pm_idle)(void) = NULL;
46EXPORT_SYMBOL(pm_idle);
47
48void (*pm_power_off)(void) = NULL;
49EXPORT_SYMBOL(pm_power_off);
50
1394f032
BW
51/*
52 * The idle loop on BFIN
53 */
54#ifdef CONFIG_IDLE_L1
8b5f79f9 55static void default_idle(void)__attribute__((l1_text));
1394f032
BW
56void cpu_idle(void)__attribute__((l1_text));
57#endif
58
8b5f79f9
VM
59/*
60 * This is our default idle handler. We need to disable
61 * interrupts here to ensure we don't miss a wakeup call.
62 */
63static void default_idle(void)
1394f032 64{
6a01f230
YL
65#ifdef CONFIG_IPIPE
66 ipipe_suspend_domain();
67#endif
68 local_irq_disable_hw();
8b5f79f9
VM
69 if (!need_resched())
70 idle_with_irq_disabled();
1394f032 71
6a01f230 72 local_irq_enable_hw();
8b5f79f9 73}
1394f032
BW
74
75/*
8b5f79f9
VM
76 * The idle thread. We try to conserve power, while trying to keep
77 * overall latency low. The architecture specific idle is passed
78 * a value to indicate the level of "idleness" of the system.
1394f032
BW
79 */
80void cpu_idle(void)
81{
82 /* endless idle loop with no priority at all */
83 while (1) {
8b5f79f9
VM
84 void (*idle)(void) = pm_idle;
85
86#ifdef CONFIG_HOTPLUG_CPU
87 if (cpu_is_offline(smp_processor_id()))
88 cpu_die();
89#endif
90 if (!idle)
91 idle = default_idle;
b8f8c3cf 92 tick_nohz_stop_sched_tick(1);
8b5f79f9
VM
93 while (!need_resched())
94 idle();
95 tick_nohz_restart_sched_tick();
1394f032
BW
96 preempt_enable_no_resched();
97 schedule();
98 preempt_disable();
99 }
100}
101
1394f032
BW
102/*
103 * This gets run with P1 containing the
104 * function to call, and R1 containing
105 * the "args". Note P0 is clobbered on the way here.
106 */
107void kernel_thread_helper(void);
108__asm__(".section .text\n"
109 ".align 4\n"
110 "_kernel_thread_helper:\n\t"
111 "\tsp += -12;\n\t"
112 "\tr0 = r1;\n\t" "\tcall (p1);\n\t" "\tcall _do_exit;\n" ".previous");
113
114/*
115 * Create a kernel thread.
116 */
117pid_t kernel_thread(int (*fn) (void *), void *arg, unsigned long flags)
118{
119 struct pt_regs regs;
120
121 memset(&regs, 0, sizeof(regs));
122
123 regs.r1 = (unsigned long)arg;
124 regs.p1 = (unsigned long)fn;
125 regs.pc = (unsigned long)kernel_thread_helper;
126 regs.orig_p0 = -1;
127 /* Set bit 2 to tell ret_from_fork we should be returning to kernel
128 mode. */
129 regs.ipend = 0x8002;
130 __asm__ __volatile__("%0 = syscfg;":"=da"(regs.syscfg):);
131 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, &regs, 0, NULL,
132 NULL);
133}
fe8015ce 134EXPORT_SYMBOL(kernel_thread);
1394f032 135
d5ce528c
MF
136/*
137 * Do necessary setup to start up a newly executed thread.
138 *
139 * pass the data segment into user programs if it exists,
140 * it can't hurt anything as far as I can tell
141 */
142void start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp)
143{
144 set_fs(USER_DS);
145 regs->pc = new_ip;
146 if (current->mm)
147 regs->p5 = current->mm->start_data;
aa23531c 148#ifndef CONFIG_SMP
d5ce528c
MF
149 task_thread_info(current)->l1_task_info.stack_start =
150 (void *)current->mm->context.stack_start;
151 task_thread_info(current)->l1_task_info.lowest_sp = (void *)new_sp;
152 memcpy(L1_SCRATCH_TASK_INFO, &task_thread_info(current)->l1_task_info,
153 sizeof(*L1_SCRATCH_TASK_INFO));
154#endif
155 wrusp(new_sp);
156}
157EXPORT_SYMBOL_GPL(start_thread);
158
1394f032
BW
159void flush_thread(void)
160{
161}
162
163asmlinkage int bfin_vfork(struct pt_regs *regs)
164{
165 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, rdusp(), regs, 0, NULL,
166 NULL);
167}
168
169asmlinkage int bfin_clone(struct pt_regs *regs)
170{
171 unsigned long clone_flags;
172 unsigned long newsp;
173
8f65873e
GY
174#ifdef __ARCH_SYNC_CORE_DCACHE
175 if (current->rt.nr_cpus_allowed == num_possible_cpus()) {
176 current->cpus_allowed = cpumask_of_cpu(smp_processor_id());
177 current->rt.nr_cpus_allowed = 1;
178 }
179#endif
180
1394f032
BW
181 /* syscall2 puts clone_flags in r0 and usp in r1 */
182 clone_flags = regs->r0;
183 newsp = regs->r1;
184 if (!newsp)
185 newsp = rdusp();
186 else
187 newsp -= 12;
188 return do_fork(clone_flags, newsp, regs, 0, NULL, NULL);
189}
190
191int
6f2c55b8 192copy_thread(unsigned long clone_flags,
1394f032
BW
193 unsigned long usp, unsigned long topstk,
194 struct task_struct *p, struct pt_regs *regs)
195{
196 struct pt_regs *childregs;
197
198 childregs = (struct pt_regs *) (task_stack_page(p) + THREAD_SIZE) - 1;
199 *childregs = *regs;
200 childregs->r0 = 0;
201
202 p->thread.usp = usp;
203 p->thread.ksp = (unsigned long)childregs;
204 p->thread.pc = (unsigned long)ret_from_fork;
205
206 return 0;
207}
208
1394f032
BW
209/*
210 * sys_execve() executes a new program.
211 */
0ddeeca2 212asmlinkage int sys_execve(char __user *name, char __user * __user *argv, char __user * __user *envp)
1394f032
BW
213{
214 int error;
215 char *filename;
216 struct pt_regs *regs = (struct pt_regs *)((&name) + 6);
217
1394f032
BW
218 filename = getname(name);
219 error = PTR_ERR(filename);
220 if (IS_ERR(filename))
25708a5f 221 return error;
1394f032
BW
222 error = do_execve(filename, argv, envp, regs);
223 putname(filename);
1394f032
BW
224 return error;
225}
226
227unsigned long get_wchan(struct task_struct *p)
228{
229 unsigned long fp, pc;
230 unsigned long stack_page;
231 int count = 0;
232 if (!p || p == current || p->state == TASK_RUNNING)
233 return 0;
234
235 stack_page = (unsigned long)p;
236 fp = p->thread.usp;
237 do {
238 if (fp < stack_page + sizeof(struct thread_info) ||
239 fp >= 8184 + stack_page)
240 return 0;
241 pc = ((unsigned long *)fp)[1];
242 if (!in_sched_functions(pc))
243 return pc;
244 fp = *(unsigned long *)fp;
245 }
246 while (count++ < 16);
247 return 0;
248}
249
7adfb58f
BS
250void finish_atomic_sections (struct pt_regs *regs)
251{
19d6d7d5 252 int __user *up0 = (int __user *)regs->p0;
0ddeeca2 253
7adfb58f 254 switch (regs->pc) {
2f5a0864
MF
255 default:
256 /* not in middle of an atomic step, so resume like normal */
257 return;
258
7adfb58f 259 case ATOMIC_XCHG32 + 2:
0ddeeca2 260 put_user(regs->r1, up0);
7adfb58f
BS
261 break;
262
263 case ATOMIC_CAS32 + 2:
264 case ATOMIC_CAS32 + 4:
265 if (regs->r0 == regs->r1)
92649494 266 case ATOMIC_CAS32 + 6:
0ddeeca2 267 put_user(regs->r2, up0);
7adfb58f 268 break;
7adfb58f
BS
269
270 case ATOMIC_ADD32 + 2:
271 regs->r0 = regs->r1 + regs->r0;
272 /* fall through */
273 case ATOMIC_ADD32 + 4:
0ddeeca2 274 put_user(regs->r0, up0);
7adfb58f
BS
275 break;
276
277 case ATOMIC_SUB32 + 2:
278 regs->r0 = regs->r1 - regs->r0;
279 /* fall through */
280 case ATOMIC_SUB32 + 4:
0ddeeca2 281 put_user(regs->r0, up0);
7adfb58f
BS
282 break;
283
284 case ATOMIC_IOR32 + 2:
285 regs->r0 = regs->r1 | regs->r0;
286 /* fall through */
287 case ATOMIC_IOR32 + 4:
0ddeeca2 288 put_user(regs->r0, up0);
7adfb58f
BS
289 break;
290
291 case ATOMIC_AND32 + 2:
292 regs->r0 = regs->r1 & regs->r0;
293 /* fall through */
294 case ATOMIC_AND32 + 4:
0ddeeca2 295 put_user(regs->r0, up0);
7adfb58f
BS
296 break;
297
298 case ATOMIC_XOR32 + 2:
299 regs->r0 = regs->r1 ^ regs->r0;
300 /* fall through */
301 case ATOMIC_XOR32 + 4:
0ddeeca2 302 put_user(regs->r0, up0);
7adfb58f
BS
303 break;
304 }
2f5a0864
MF
305
306 /*
307 * We've finished the atomic section, and the only thing left for
308 * userspace is to do a RTS, so we might as well handle that too
309 * since we need to update the PC anyways.
310 */
311 regs->pc = regs->rets;
7adfb58f
BS
312}
313
e56e03b0
MF
314static inline
315int in_mem(unsigned long addr, unsigned long size,
316 unsigned long start, unsigned long end)
317{
318 return addr >= start && addr + size <= end;
319}
320static inline
321int in_mem_const_off(unsigned long addr, unsigned long size, unsigned long off,
322 unsigned long const_addr, unsigned long const_size)
323{
324 return const_size &&
325 in_mem(addr, size, const_addr + off, const_addr + const_size);
326}
327static inline
328int in_mem_const(unsigned long addr, unsigned long size,
329 unsigned long const_addr, unsigned long const_size)
330{
fb4b5d3a 331 return in_mem_const_off(addr, size, 0, const_addr, const_size);
e56e03b0 332}
13048f88 333#define ASYNC_ENABLED(bnum, bctlnum) \
e56e03b0 334({ \
13048f88
BS
335 (bfin_read_EBIU_AMGCTL() & 0xe) < ((bnum + 1) << 1) ? 0 : \
336 bfin_read_EBIU_AMBCTL##bctlnum() & B##bnum##RDYEN ? 0 : \
337 1; \
e56e03b0 338})
13048f88
BS
339/*
340 * We can't read EBIU banks that aren't enabled or we end up hanging
341 * on the access to the async space. Make sure we validate accesses
342 * that cross async banks too.
343 * 0 - found, but unusable
344 * 1 - found & usable
345 * 2 - not found
346 */
347static
348int in_async(unsigned long addr, unsigned long size)
349{
350 if (addr >= ASYNC_BANK0_BASE && addr < ASYNC_BANK0_BASE + ASYNC_BANK0_SIZE) {
351 if (!ASYNC_ENABLED(0, 0))
352 return 0;
353 if (addr + size <= ASYNC_BANK0_BASE + ASYNC_BANK0_SIZE)
354 return 1;
355 size -= ASYNC_BANK0_BASE + ASYNC_BANK0_SIZE - addr;
356 addr = ASYNC_BANK0_BASE + ASYNC_BANK0_SIZE;
357 }
358 if (addr >= ASYNC_BANK1_BASE && addr < ASYNC_BANK1_BASE + ASYNC_BANK1_SIZE) {
359 if (!ASYNC_ENABLED(1, 0))
360 return 0;
361 if (addr + size <= ASYNC_BANK1_BASE + ASYNC_BANK1_SIZE)
362 return 1;
363 size -= ASYNC_BANK1_BASE + ASYNC_BANK1_SIZE - addr;
364 addr = ASYNC_BANK1_BASE + ASYNC_BANK1_SIZE;
365 }
366 if (addr >= ASYNC_BANK2_BASE && addr < ASYNC_BANK2_BASE + ASYNC_BANK2_SIZE) {
367 if (!ASYNC_ENABLED(2, 1))
368 return 0;
369 if (addr + size <= ASYNC_BANK2_BASE + ASYNC_BANK2_SIZE)
370 return 1;
371 size -= ASYNC_BANK2_BASE + ASYNC_BANK2_SIZE - addr;
372 addr = ASYNC_BANK2_BASE + ASYNC_BANK2_SIZE;
373 }
374 if (addr >= ASYNC_BANK3_BASE && addr < ASYNC_BANK3_BASE + ASYNC_BANK3_SIZE) {
375 if (ASYNC_ENABLED(3, 1))
376 return 0;
377 if (addr + size <= ASYNC_BANK3_BASE + ASYNC_BANK3_SIZE)
378 return 1;
379 return 0;
380 }
381
382 /* not within async bounds */
383 return 2;
384}
e56e03b0
MF
385
386int bfin_mem_access_type(unsigned long addr, unsigned long size)
387{
388 int cpu = raw_smp_processor_id();
389
390 /* Check that things do not wrap around */
391 if (addr > ULONG_MAX - size)
392 return -EFAULT;
393
394 if (in_mem(addr, size, FIXED_CODE_START, physical_mem_end))
395 return BFIN_MEM_ACCESS_CORE;
396
397 if (in_mem_const(addr, size, L1_CODE_START, L1_CODE_LENGTH))
398 return cpu == 0 ? BFIN_MEM_ACCESS_ITEST : BFIN_MEM_ACCESS_IDMA;
399 if (in_mem_const(addr, size, L1_SCRATCH_START, L1_SCRATCH_LENGTH))
400 return cpu == 0 ? BFIN_MEM_ACCESS_CORE_ONLY : -EFAULT;
401 if (in_mem_const(addr, size, L1_DATA_A_START, L1_DATA_A_LENGTH))
402 return cpu == 0 ? BFIN_MEM_ACCESS_CORE : BFIN_MEM_ACCESS_IDMA;
403 if (in_mem_const(addr, size, L1_DATA_B_START, L1_DATA_B_LENGTH))
404 return cpu == 0 ? BFIN_MEM_ACCESS_CORE : BFIN_MEM_ACCESS_IDMA;
405#ifdef COREB_L1_CODE_START
fb4b5d3a 406 if (in_mem_const(addr, size, COREB_L1_CODE_START, COREB_L1_CODE_LENGTH))
e56e03b0
MF
407 return cpu == 1 ? BFIN_MEM_ACCESS_ITEST : BFIN_MEM_ACCESS_IDMA;
408 if (in_mem_const(addr, size, COREB_L1_SCRATCH_START, L1_SCRATCH_LENGTH))
409 return cpu == 1 ? BFIN_MEM_ACCESS_CORE_ONLY : -EFAULT;
fb4b5d3a 410 if (in_mem_const(addr, size, COREB_L1_DATA_A_START, COREB_L1_DATA_A_LENGTH))
e56e03b0 411 return cpu == 1 ? BFIN_MEM_ACCESS_CORE : BFIN_MEM_ACCESS_IDMA;
fb4b5d3a 412 if (in_mem_const(addr, size, COREB_L1_DATA_B_START, COREB_L1_DATA_B_LENGTH))
e56e03b0
MF
413 return cpu == 1 ? BFIN_MEM_ACCESS_CORE : BFIN_MEM_ACCESS_IDMA;
414#endif
415 if (in_mem_const(addr, size, L2_START, L2_LENGTH))
416 return BFIN_MEM_ACCESS_CORE;
417
418 if (addr >= SYSMMR_BASE)
419 return BFIN_MEM_ACCESS_CORE_ONLY;
420
13048f88
BS
421 switch (in_async(addr, size)) {
422 case 0: return -EFAULT;
423 case 1: return BFIN_MEM_ACCESS_CORE;
424 case 2: /* fall through */;
425 }
e56e03b0
MF
426
427 if (in_mem_const(addr, size, BOOT_ROM_START, BOOT_ROM_LENGTH))
428 return BFIN_MEM_ACCESS_CORE;
429 if (in_mem_const(addr, size, L1_ROM_START, L1_ROM_LENGTH))
430 return BFIN_MEM_ACCESS_DMA;
431
432 return -EFAULT;
433}
434
1394f032 435#if defined(CONFIG_ACCESS_CHECK)
a43b739f
MF
436#ifdef CONFIG_ACCESS_OK_L1
437__attribute__((l1_text))
438#endif
b03b08ba 439/* Return 1 if access to memory range is OK, 0 otherwise */
1394f032
BW
440int _access_ok(unsigned long addr, unsigned long size)
441{
13048f88
BS
442 int aret;
443
bc41bb11
BS
444 if (size == 0)
445 return 1;
e56e03b0
MF
446 /* Check that things do not wrap around */
447 if (addr > ULONG_MAX - size)
1394f032 448 return 0;
1f83b8f1 449 if (segment_eq(get_fs(), KERNEL_DS))
1394f032
BW
450 return 1;
451#ifdef CONFIG_MTD_UCLINUX
e56e03b0
MF
452 if (1)
453#else
454 if (0)
455#endif
456 {
457 if (in_mem(addr, size, memory_start, memory_end))
458 return 1;
459 if (in_mem(addr, size, memory_mtd_end, physical_mem_end))
460 return 1;
461# ifndef CONFIG_ROMFS_ON_MTD
462 if (0)
463# endif
464 /* For XIP, allow user space to use pointers within the ROMFS. */
465 if (in_mem(addr, size, memory_mtd_start, memory_mtd_end))
466 return 1;
467 } else {
468 if (in_mem(addr, size, memory_start, physical_mem_end))
469 return 1;
470 }
471
472 if (in_mem(addr, size, (unsigned long)__init_begin, (unsigned long)__init_end))
1394f032 473 return 1;
d5adb029 474
e56e03b0 475 if (in_mem_const(addr, size, L1_CODE_START, L1_CODE_LENGTH))
d5adb029 476 return 1;
e56e03b0 477 if (in_mem_const_off(addr, size, _etext_l1 - _stext_l1, L1_CODE_START, L1_CODE_LENGTH))
1394f032 478 return 1;
e56e03b0 479 if (in_mem_const_off(addr, size, _ebss_l1 - _sdata_l1, L1_DATA_A_START, L1_DATA_A_LENGTH))
1394f032 480 return 1;
e56e03b0 481 if (in_mem_const_off(addr, size, _ebss_b_l1 - _sdata_b_l1, L1_DATA_B_START, L1_DATA_B_LENGTH))
1394f032 482 return 1;
e56e03b0 483#ifdef COREB_L1_CODE_START
fb4b5d3a 484 if (in_mem_const(addr, size, COREB_L1_CODE_START, COREB_L1_CODE_LENGTH))
1394f032 485 return 1;
e56e03b0 486 if (in_mem_const(addr, size, COREB_L1_SCRATCH_START, L1_SCRATCH_LENGTH))
1394f032 487 return 1;
fb4b5d3a 488 if (in_mem_const(addr, size, COREB_L1_DATA_A_START, COREB_L1_DATA_A_LENGTH))
1394f032 489 return 1;
fb4b5d3a 490 if (in_mem_const(addr, size, COREB_L1_DATA_B_START, COREB_L1_DATA_B_LENGTH))
b2c2f303 491 return 1;
1394f032 492#endif
13048f88
BS
493
494 aret = in_async(addr, size);
495 if (aret < 2)
496 return aret;
497
e56e03b0
MF
498 if (in_mem_const_off(addr, size, _ebss_l2 - _stext_l2, L2_START, L2_LENGTH))
499 return 1;
500
501 if (in_mem_const(addr, size, BOOT_ROM_START, BOOT_ROM_LENGTH))
502 return 1;
503 if (in_mem_const(addr, size, L1_ROM_START, L1_ROM_LENGTH))
504 return 1;
505
1394f032
BW
506 return 0;
507}
508EXPORT_SYMBOL(_access_ok);
509#endif /* CONFIG_ACCESS_CHECK */