blob: 9782c0329c1435295660dcd0c22ad00708dd6dff [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
Robin Getz96f10502009-09-24 14:11:24 +00002 * Blackfin architecture-dependent process handling
Bryan Wu1394f032007-05-06 14:50:22 -07003 *
Robin Getz96f10502009-09-24 14:11:24 +00004 * Copyright 2004-2009 Analog Devices Inc.
Bryan Wu1394f032007-05-06 14:50:22 -07005 *
Robin Getz96f10502009-09-24 14:11:24 +00006 * Licensed under the GPL-2 or later
Bryan Wu1394f032007-05-06 14:50:22 -07007 */
8
9#include <linux/module.h>
Bryan Wu1394f032007-05-06 14:50:22 -070010#include <linux/unistd.h>
11#include <linux/user.h>
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080012#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Vitja Makarov8b5f79f2008-02-29 12:24:23 +080014#include <linux/sched.h>
15#include <linux/tick.h>
Bryan Wud31c5ab2007-08-10 13:00:42 -070016#include <linux/fs.h>
17#include <linux/err.h>
Bryan Wu1394f032007-05-06 14:50:22 -070018
19#include <asm/blackfin.h>
Bernd Schmidt7adfb582007-06-21 11:34:16 +080020#include <asm/fixed_code.h>
Graf Yangdbc895f2009-01-07 23:14:39 +080021#include <asm/mem_map.h>
David Howells3bed8d62012-03-12 23:36:56 +000022#include <asm/irq.h>
Bryan Wu1394f032007-05-06 14:50:22 -070023
Bryan Wu1394f032007-05-06 14:50:22 -070024asmlinkage 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
Bryan Wu1394f032007-05-06 14:50:22 -070042void (*pm_power_off)(void) = NULL;
43EXPORT_SYMBOL(pm_power_off);
44
45/*
Bryan Wu1394f032007-05-06 14:50:22 -070046 * The idle loop on BFIN
47 */
48#ifdef CONFIG_IDLE_L1
Vitja Makarov8b5f79f2008-02-29 12:24:23 +080049static void default_idle(void)__attribute__((l1_text));
Bryan Wu1394f032007-05-06 14:50:22 -070050void cpu_idle(void)__attribute__((l1_text));
51#endif
52
Vitja Makarov8b5f79f2008-02-29 12:24:23 +080053/*
54 * This is our default idle handler. We need to disable
55 * interrupts here to ensure we don't miss a wakeup call.
56 */
57static void default_idle(void)
Bryan Wu1394f032007-05-06 14:50:22 -070058{
Yi Li6a01f232009-01-07 23:14:39 +080059#ifdef CONFIG_IPIPE
60 ipipe_suspend_domain();
61#endif
David Howells3b139cd2010-10-07 14:08:52 +010062 hard_local_irq_disable();
Vitja Makarov8b5f79f2008-02-29 12:24:23 +080063 if (!need_resched())
64 idle_with_irq_disabled();
65
David Howells3b139cd2010-10-07 14:08:52 +010066 hard_local_irq_enable();
Bryan Wu1394f032007-05-06 14:50:22 -070067}
68
Bryan Wu1394f032007-05-06 14:50:22 -070069/*
Vitja Makarov8b5f79f2008-02-29 12:24:23 +080070 * The idle thread. We try to conserve power, while trying to keep
71 * overall latency low. The architecture specific idle is passed
72 * a value to indicate the level of "idleness" of the system.
Bryan Wu1394f032007-05-06 14:50:22 -070073 */
74void cpu_idle(void)
75{
76 /* endless idle loop with no priority at all */
77 while (1) {
Vitja Makarov8b5f79f2008-02-29 12:24:23 +080078
79#ifdef CONFIG_HOTPLUG_CPU
80 if (cpu_is_offline(smp_processor_id()))
81 cpu_die();
82#endif
Frederic Weisbecker1268fbc2011-11-17 18:48:14 +010083 tick_nohz_idle_enter();
84 rcu_idle_enter();
Vitja Makarov8b5f79f2008-02-29 12:24:23 +080085 while (!need_resched())
Lars-Peter Clauseneba87ef2013-02-21 09:56:43 +000086 default_idle();
Frederic Weisbecker1268fbc2011-11-17 18:48:14 +010087 rcu_idle_exit();
88 tick_nohz_idle_exit();
Bob Liub5affb02012-05-16 17:37:24 +080089 preempt_enable_no_resched();
90 schedule();
91 preempt_disable();
Bryan Wu1394f032007-05-06 14:50:22 -070092 }
93}
94
Bryan Wu1394f032007-05-06 14:50:22 -070095/*
Mike Frysingerd5ce5282009-06-13 11:32:34 -040096 * Do necessary setup to start up a newly executed thread.
97 *
98 * pass the data segment into user programs if it exists,
99 * it can't hurt anything as far as I can tell
100 */
101void start_thread(struct pt_regs *regs, unsigned long new_ip, unsigned long new_sp)
102{
Mike Frysingerd5ce5282009-06-13 11:32:34 -0400103 regs->pc = new_ip;
104 if (current->mm)
105 regs->p5 = current->mm->start_data;
Graf Yangaa235312009-09-21 11:51:31 +0000106#ifndef CONFIG_SMP
Mike Frysingerd5ce5282009-06-13 11:32:34 -0400107 task_thread_info(current)->l1_task_info.stack_start =
108 (void *)current->mm->context.stack_start;
109 task_thread_info(current)->l1_task_info.lowest_sp = (void *)new_sp;
110 memcpy(L1_SCRATCH_TASK_INFO, &task_thread_info(current)->l1_task_info,
111 sizeof(*L1_SCRATCH_TASK_INFO));
112#endif
113 wrusp(new_sp);
114}
115EXPORT_SYMBOL_GPL(start_thread);
116
Bryan Wu1394f032007-05-06 14:50:22 -0700117void flush_thread(void)
118{
119}
120
Al Viro135c37b2012-11-13 23:47:37 -0500121asmlinkage int bfin_clone(unsigned long clone_flags, unsigned long newsp)
Bryan Wu1394f032007-05-06 14:50:22 -0700122{
Graf Yang8f658732008-11-18 17:48:22 +0800123#ifdef __ARCH_SYNC_CORE_DCACHE
Peter Zijlstra29baa742012-04-23 12:11:21 +0200124 if (current->nr_cpus_allowed == num_possible_cpus())
KOSAKI Motohiroe887eb62011-04-26 10:56:42 +0900125 set_cpus_allowed_ptr(current, cpumask_of(smp_processor_id()));
Graf Yang8f658732008-11-18 17:48:22 +0800126#endif
Al Viro135c37b2012-11-13 23:47:37 -0500127 if (newsp)
Bryan Wu1394f032007-05-06 14:50:22 -0700128 newsp -= 12;
Al Viroe80d6662012-10-22 23:10:08 -0400129 return do_fork(clone_flags, newsp, 0, NULL, NULL);
Bryan Wu1394f032007-05-06 14:50:22 -0700130}
131
132int
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -0700133copy_thread(unsigned long clone_flags,
Bryan Wu1394f032007-05-06 14:50:22 -0700134 unsigned long usp, unsigned long topstk,
Al Viroafa86fc2012-10-22 22:51:14 -0400135 struct task_struct *p)
Bryan Wu1394f032007-05-06 14:50:22 -0700136{
137 struct pt_regs *childregs;
Al Viroee1e17c2012-10-13 03:22:53 -0400138 unsigned long *v;
Bryan Wu1394f032007-05-06 14:50:22 -0700139
140 childregs = (struct pt_regs *) (task_stack_page(p) + THREAD_SIZE) - 1;
Al Viroee1e17c2012-10-13 03:22:53 -0400141 v = ((unsigned long *)childregs) - 2;
Al Viroafa86fc2012-10-22 22:51:14 -0400142 if (unlikely(p->flags & PF_KTHREAD)) {
Al Viroee1e17c2012-10-13 03:22:53 -0400143 memset(childregs, 0, sizeof(struct pt_regs));
144 v[0] = usp;
145 v[1] = topstk;
146 childregs->orig_p0 = -1;
147 childregs->ipend = 0x8000;
148 __asm__ __volatile__("%0 = syscfg;":"=da"(childregs->syscfg):);
149 p->thread.usp = 0;
150 } else {
Al Viroafa86fc2012-10-22 22:51:14 -0400151 *childregs = *current_pt_regs();
Al Viroee1e17c2012-10-13 03:22:53 -0400152 childregs->r0 = 0;
Al Viro135c37b2012-11-13 23:47:37 -0500153 p->thread.usp = usp ? : rdusp();
Al Viroee1e17c2012-10-13 03:22:53 -0400154 v[0] = v[1] = 0;
155 }
Bryan Wu1394f032007-05-06 14:50:22 -0700156
Al Viroee1e17c2012-10-13 03:22:53 -0400157 p->thread.ksp = (unsigned long)v;
Bryan Wu1394f032007-05-06 14:50:22 -0700158 p->thread.pc = (unsigned long)ret_from_fork;
159
160 return 0;
161}
162
Bryan Wu1394f032007-05-06 14:50:22 -0700163unsigned long get_wchan(struct task_struct *p)
164{
165 unsigned long fp, pc;
166 unsigned long stack_page;
167 int count = 0;
168 if (!p || p == current || p->state == TASK_RUNNING)
169 return 0;
170
171 stack_page = (unsigned long)p;
172 fp = p->thread.usp;
173 do {
174 if (fp < stack_page + sizeof(struct thread_info) ||
175 fp >= 8184 + stack_page)
176 return 0;
177 pc = ((unsigned long *)fp)[1];
178 if (!in_sched_functions(pc))
179 return pc;
180 fp = *(unsigned long *)fp;
181 }
182 while (count++ < 16);
183 return 0;
184}
185
Bernd Schmidt7adfb582007-06-21 11:34:16 +0800186void finish_atomic_sections (struct pt_regs *regs)
187{
Bernd Schmidt19d6d7d2008-05-07 11:41:26 +0800188 int __user *up0 = (int __user *)regs->p0;
Mike Frysinger0ddeeca2008-03-07 02:37:41 +0800189
Bernd Schmidt7adfb582007-06-21 11:34:16 +0800190 switch (regs->pc) {
Mike Frysinger2f5a0862009-11-19 19:15:26 +0000191 default:
192 /* not in middle of an atomic step, so resume like normal */
193 return;
194
Bernd Schmidt7adfb582007-06-21 11:34:16 +0800195 case ATOMIC_XCHG32 + 2:
Mike Frysinger0ddeeca2008-03-07 02:37:41 +0800196 put_user(regs->r1, up0);
Bernd Schmidt7adfb582007-06-21 11:34:16 +0800197 break;
198
199 case ATOMIC_CAS32 + 2:
200 case ATOMIC_CAS32 + 4:
201 if (regs->r0 == regs->r1)
Mike Frysinger92649492009-08-17 19:05:07 +0000202 case ATOMIC_CAS32 + 6:
Mike Frysinger0ddeeca2008-03-07 02:37:41 +0800203 put_user(regs->r2, up0);
Bernd Schmidt7adfb582007-06-21 11:34:16 +0800204 break;
Bernd Schmidt7adfb582007-06-21 11:34:16 +0800205
206 case ATOMIC_ADD32 + 2:
207 regs->r0 = regs->r1 + regs->r0;
208 /* fall through */
209 case ATOMIC_ADD32 + 4:
Mike Frysinger0ddeeca2008-03-07 02:37:41 +0800210 put_user(regs->r0, up0);
Bernd Schmidt7adfb582007-06-21 11:34:16 +0800211 break;
212
213 case ATOMIC_SUB32 + 2:
214 regs->r0 = regs->r1 - regs->r0;
215 /* fall through */
216 case ATOMIC_SUB32 + 4:
Mike Frysinger0ddeeca2008-03-07 02:37:41 +0800217 put_user(regs->r0, up0);
Bernd Schmidt7adfb582007-06-21 11:34:16 +0800218 break;
219
220 case ATOMIC_IOR32 + 2:
221 regs->r0 = regs->r1 | regs->r0;
222 /* fall through */
223 case ATOMIC_IOR32 + 4:
Mike Frysinger0ddeeca2008-03-07 02:37:41 +0800224 put_user(regs->r0, up0);
Bernd Schmidt7adfb582007-06-21 11:34:16 +0800225 break;
226
227 case ATOMIC_AND32 + 2:
228 regs->r0 = regs->r1 & regs->r0;
229 /* fall through */
230 case ATOMIC_AND32 + 4:
Mike Frysinger0ddeeca2008-03-07 02:37:41 +0800231 put_user(regs->r0, up0);
Bernd Schmidt7adfb582007-06-21 11:34:16 +0800232 break;
233
234 case ATOMIC_XOR32 + 2:
235 regs->r0 = regs->r1 ^ regs->r0;
236 /* fall through */
237 case ATOMIC_XOR32 + 4:
Mike Frysinger0ddeeca2008-03-07 02:37:41 +0800238 put_user(regs->r0, up0);
Bernd Schmidt7adfb582007-06-21 11:34:16 +0800239 break;
240 }
Mike Frysinger2f5a0862009-11-19 19:15:26 +0000241
242 /*
243 * We've finished the atomic section, and the only thing left for
244 * userspace is to do a RTS, so we might as well handle that too
245 * since we need to update the PC anyways.
246 */
247 regs->pc = regs->rets;
Bernd Schmidt7adfb582007-06-21 11:34:16 +0800248}
249
Mike Frysingere56e03b2009-06-07 16:31:52 -0400250static inline
251int in_mem(unsigned long addr, unsigned long size,
252 unsigned long start, unsigned long end)
253{
254 return addr >= start && addr + size <= end;
255}
256static inline
257int in_mem_const_off(unsigned long addr, unsigned long size, unsigned long off,
258 unsigned long const_addr, unsigned long const_size)
259{
260 return const_size &&
261 in_mem(addr, size, const_addr + off, const_addr + const_size);
262}
263static inline
264int in_mem_const(unsigned long addr, unsigned long size,
265 unsigned long const_addr, unsigned long const_size)
266{
Mike Frysingerfb4b5d32009-06-29 14:20:10 -0400267 return in_mem_const_off(addr, size, 0, const_addr, const_size);
Mike Frysingere56e03b2009-06-07 16:31:52 -0400268}
Bob Liub5affb02012-05-16 17:37:24 +0800269#ifdef CONFIG_BF60x
270#define ASYNC_ENABLED(bnum, bctlnum) 1
271#else
Bernd Schmidt13048f82009-09-23 16:47:16 +0000272#define ASYNC_ENABLED(bnum, bctlnum) \
Mike Frysingere56e03b2009-06-07 16:31:52 -0400273({ \
Bernd Schmidt13048f82009-09-23 16:47:16 +0000274 (bfin_read_EBIU_AMGCTL() & 0xe) < ((bnum + 1) << 1) ? 0 : \
275 bfin_read_EBIU_AMBCTL##bctlnum() & B##bnum##RDYEN ? 0 : \
276 1; \
Mike Frysingere56e03b2009-06-07 16:31:52 -0400277})
Bob Liub5affb02012-05-16 17:37:24 +0800278#endif
Bernd Schmidt13048f82009-09-23 16:47:16 +0000279/*
280 * We can't read EBIU banks that aren't enabled or we end up hanging
281 * on the access to the async space. Make sure we validate accesses
282 * that cross async banks too.
283 * 0 - found, but unusable
284 * 1 - found & usable
285 * 2 - not found
286 */
287static
288int in_async(unsigned long addr, unsigned long size)
289{
290 if (addr >= ASYNC_BANK0_BASE && addr < ASYNC_BANK0_BASE + ASYNC_BANK0_SIZE) {
291 if (!ASYNC_ENABLED(0, 0))
292 return 0;
293 if (addr + size <= ASYNC_BANK0_BASE + ASYNC_BANK0_SIZE)
294 return 1;
295 size -= ASYNC_BANK0_BASE + ASYNC_BANK0_SIZE - addr;
296 addr = ASYNC_BANK0_BASE + ASYNC_BANK0_SIZE;
297 }
298 if (addr >= ASYNC_BANK1_BASE && addr < ASYNC_BANK1_BASE + ASYNC_BANK1_SIZE) {
299 if (!ASYNC_ENABLED(1, 0))
300 return 0;
301 if (addr + size <= ASYNC_BANK1_BASE + ASYNC_BANK1_SIZE)
302 return 1;
303 size -= ASYNC_BANK1_BASE + ASYNC_BANK1_SIZE - addr;
304 addr = ASYNC_BANK1_BASE + ASYNC_BANK1_SIZE;
305 }
306 if (addr >= ASYNC_BANK2_BASE && addr < ASYNC_BANK2_BASE + ASYNC_BANK2_SIZE) {
307 if (!ASYNC_ENABLED(2, 1))
308 return 0;
309 if (addr + size <= ASYNC_BANK2_BASE + ASYNC_BANK2_SIZE)
310 return 1;
311 size -= ASYNC_BANK2_BASE + ASYNC_BANK2_SIZE - addr;
312 addr = ASYNC_BANK2_BASE + ASYNC_BANK2_SIZE;
313 }
314 if (addr >= ASYNC_BANK3_BASE && addr < ASYNC_BANK3_BASE + ASYNC_BANK3_SIZE) {
315 if (ASYNC_ENABLED(3, 1))
316 return 0;
317 if (addr + size <= ASYNC_BANK3_BASE + ASYNC_BANK3_SIZE)
318 return 1;
319 return 0;
320 }
321
322 /* not within async bounds */
323 return 2;
324}
Mike Frysingere56e03b2009-06-07 16:31:52 -0400325
326int bfin_mem_access_type(unsigned long addr, unsigned long size)
327{
328 int cpu = raw_smp_processor_id();
329
330 /* Check that things do not wrap around */
331 if (addr > ULONG_MAX - size)
332 return -EFAULT;
333
334 if (in_mem(addr, size, FIXED_CODE_START, physical_mem_end))
335 return BFIN_MEM_ACCESS_CORE;
336
337 if (in_mem_const(addr, size, L1_CODE_START, L1_CODE_LENGTH))
338 return cpu == 0 ? BFIN_MEM_ACCESS_ITEST : BFIN_MEM_ACCESS_IDMA;
339 if (in_mem_const(addr, size, L1_SCRATCH_START, L1_SCRATCH_LENGTH))
340 return cpu == 0 ? BFIN_MEM_ACCESS_CORE_ONLY : -EFAULT;
341 if (in_mem_const(addr, size, L1_DATA_A_START, L1_DATA_A_LENGTH))
342 return cpu == 0 ? BFIN_MEM_ACCESS_CORE : BFIN_MEM_ACCESS_IDMA;
343 if (in_mem_const(addr, size, L1_DATA_B_START, L1_DATA_B_LENGTH))
344 return cpu == 0 ? BFIN_MEM_ACCESS_CORE : BFIN_MEM_ACCESS_IDMA;
345#ifdef COREB_L1_CODE_START
Mike Frysingerfb4b5d32009-06-29 14:20:10 -0400346 if (in_mem_const(addr, size, COREB_L1_CODE_START, COREB_L1_CODE_LENGTH))
Mike Frysingere56e03b2009-06-07 16:31:52 -0400347 return cpu == 1 ? BFIN_MEM_ACCESS_ITEST : BFIN_MEM_ACCESS_IDMA;
348 if (in_mem_const(addr, size, COREB_L1_SCRATCH_START, L1_SCRATCH_LENGTH))
349 return cpu == 1 ? BFIN_MEM_ACCESS_CORE_ONLY : -EFAULT;
Mike Frysingerfb4b5d32009-06-29 14:20:10 -0400350 if (in_mem_const(addr, size, COREB_L1_DATA_A_START, COREB_L1_DATA_A_LENGTH))
Mike Frysingere56e03b2009-06-07 16:31:52 -0400351 return cpu == 1 ? BFIN_MEM_ACCESS_CORE : BFIN_MEM_ACCESS_IDMA;
Mike Frysingerfb4b5d32009-06-29 14:20:10 -0400352 if (in_mem_const(addr, size, COREB_L1_DATA_B_START, COREB_L1_DATA_B_LENGTH))
Mike Frysingere56e03b2009-06-07 16:31:52 -0400353 return cpu == 1 ? BFIN_MEM_ACCESS_CORE : BFIN_MEM_ACCESS_IDMA;
354#endif
355 if (in_mem_const(addr, size, L2_START, L2_LENGTH))
356 return BFIN_MEM_ACCESS_CORE;
357
358 if (addr >= SYSMMR_BASE)
359 return BFIN_MEM_ACCESS_CORE_ONLY;
360
Bernd Schmidt13048f82009-09-23 16:47:16 +0000361 switch (in_async(addr, size)) {
362 case 0: return -EFAULT;
363 case 1: return BFIN_MEM_ACCESS_CORE;
364 case 2: /* fall through */;
365 }
Mike Frysingere56e03b2009-06-07 16:31:52 -0400366
367 if (in_mem_const(addr, size, BOOT_ROM_START, BOOT_ROM_LENGTH))
368 return BFIN_MEM_ACCESS_CORE;
369 if (in_mem_const(addr, size, L1_ROM_START, L1_ROM_LENGTH))
370 return BFIN_MEM_ACCESS_DMA;
371
372 return -EFAULT;
373}
374
Bryan Wu1394f032007-05-06 14:50:22 -0700375#if defined(CONFIG_ACCESS_CHECK)
Mike Frysingera43b7392009-06-04 19:24:31 +0000376#ifdef CONFIG_ACCESS_OK_L1
377__attribute__((l1_text))
378#endif
Robin Getzb03b08b2007-12-23 22:57:01 +0800379/* Return 1 if access to memory range is OK, 0 otherwise */
Bryan Wu1394f032007-05-06 14:50:22 -0700380int _access_ok(unsigned long addr, unsigned long size)
381{
Bernd Schmidt13048f82009-09-23 16:47:16 +0000382 int aret;
383
Bernd Schmidtbc41bb12007-10-10 17:54:19 +0800384 if (size == 0)
385 return 1;
Mike Frysingere56e03b2009-06-07 16:31:52 -0400386 /* Check that things do not wrap around */
387 if (addr > ULONG_MAX - size)
Bryan Wu1394f032007-05-06 14:50:22 -0700388 return 0;
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800389 if (segment_eq(get_fs(), KERNEL_DS))
Bryan Wu1394f032007-05-06 14:50:22 -0700390 return 1;
391#ifdef CONFIG_MTD_UCLINUX
Mike Frysingere56e03b2009-06-07 16:31:52 -0400392 if (1)
393#else
394 if (0)
395#endif
396 {
397 if (in_mem(addr, size, memory_start, memory_end))
398 return 1;
399 if (in_mem(addr, size, memory_mtd_end, physical_mem_end))
400 return 1;
401# ifndef CONFIG_ROMFS_ON_MTD
402 if (0)
403# endif
404 /* For XIP, allow user space to use pointers within the ROMFS. */
405 if (in_mem(addr, size, memory_mtd_start, memory_mtd_end))
406 return 1;
407 } else {
408 if (in_mem(addr, size, memory_start, physical_mem_end))
409 return 1;
410 }
411
412 if (in_mem(addr, size, (unsigned long)__init_begin, (unsigned long)__init_end))
Bryan Wu1394f032007-05-06 14:50:22 -0700413 return 1;
Bernd Schmidtd5adb022008-04-24 03:06:15 +0800414
Mike Frysingere56e03b2009-06-07 16:31:52 -0400415 if (in_mem_const(addr, size, L1_CODE_START, L1_CODE_LENGTH))
416 return 1;
417 if (in_mem_const_off(addr, size, _etext_l1 - _stext_l1, L1_CODE_START, L1_CODE_LENGTH))
418 return 1;
419 if (in_mem_const_off(addr, size, _ebss_l1 - _sdata_l1, L1_DATA_A_START, L1_DATA_A_LENGTH))
420 return 1;
421 if (in_mem_const_off(addr, size, _ebss_b_l1 - _sdata_b_l1, L1_DATA_B_START, L1_DATA_B_LENGTH))
422 return 1;
423#ifdef COREB_L1_CODE_START
Mike Frysingerfb4b5d32009-06-29 14:20:10 -0400424 if (in_mem_const(addr, size, COREB_L1_CODE_START, COREB_L1_CODE_LENGTH))
Mike Frysingere56e03b2009-06-07 16:31:52 -0400425 return 1;
426 if (in_mem_const(addr, size, COREB_L1_SCRATCH_START, L1_SCRATCH_LENGTH))
427 return 1;
Mike Frysingerfb4b5d32009-06-29 14:20:10 -0400428 if (in_mem_const(addr, size, COREB_L1_DATA_A_START, COREB_L1_DATA_A_LENGTH))
Mike Frysingere56e03b2009-06-07 16:31:52 -0400429 return 1;
Mike Frysingerfb4b5d32009-06-29 14:20:10 -0400430 if (in_mem_const(addr, size, COREB_L1_DATA_B_START, COREB_L1_DATA_B_LENGTH))
Bernd Schmidtd5adb022008-04-24 03:06:15 +0800431 return 1;
432#endif
Bernd Schmidt13048f82009-09-23 16:47:16 +0000433
Barry Song41c3e332010-06-29 08:43:38 +0000434#ifndef CONFIG_EXCEPTION_L1_SCRATCH
435 if (in_mem_const(addr, size, (unsigned long)l1_stack_base, l1_stack_len))
436 return 1;
437#endif
438
Bernd Schmidt13048f82009-09-23 16:47:16 +0000439 aret = in_async(addr, size);
440 if (aret < 2)
441 return aret;
442
Mike Frysingere56e03b2009-06-07 16:31:52 -0400443 if (in_mem_const_off(addr, size, _ebss_l2 - _stext_l2, L2_START, L2_LENGTH))
Bryan Wu1394f032007-05-06 14:50:22 -0700444 return 1;
Mike Frysingere56e03b2009-06-07 16:31:52 -0400445
446 if (in_mem_const(addr, size, BOOT_ROM_START, BOOT_ROM_LENGTH))
Bryan Wu1394f032007-05-06 14:50:22 -0700447 return 1;
Mike Frysingere56e03b2009-06-07 16:31:52 -0400448 if (in_mem_const(addr, size, L1_ROM_START, L1_ROM_LENGTH))
Bryan Wu1394f032007-05-06 14:50:22 -0700449 return 1;
Mike Frysingere56e03b2009-06-07 16:31:52 -0400450
Bryan Wu1394f032007-05-06 14:50:22 -0700451 return 0;
452}
453EXPORT_SYMBOL(_access_ok);
454#endif /* CONFIG_ACCESS_CHECK */