blob: 157970688b2aba72037e94b4e08a96fc831184ac [file] [log] [blame]
Michal Simek4511ec12009-03-27 14:25:37 +01001/*
2 * Copyright (C) 2006 Atmark Techno, Inc.
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 */
8
9#ifndef _ASM_MICROBLAZE_SYSTEM_H
10#define _ASM_MICROBLAZE_SYSTEM_H
11
12#include <asm/registers.h>
13#include <asm/setup.h>
14#include <asm/irqflags.h>
15
Remis Lima Baima0a584582009-06-18 19:55:33 +020016#include <asm-generic/cmpxchg.h>
17#include <asm-generic/cmpxchg-local.h>
18
Michal Simekbf2d8092009-12-10 12:07:02 +010019#define __ARCH_WANT_INTERRUPTS_ON_CTXSW
20
Michal Simek4511ec12009-03-27 14:25:37 +010021struct task_struct;
22struct thread_info;
23
24extern struct task_struct *_switch_to(struct thread_info *prev,
25 struct thread_info *next);
26
27#define switch_to(prev, next, last) \
28 do { \
29 (last) = _switch_to(task_thread_info(prev), \
30 task_thread_info(next)); \
31 } while (0)
32
33#define smp_read_barrier_depends() do {} while (0)
34#define read_barrier_depends() do {} while (0)
35
36#define nop() asm volatile ("nop")
37#define mb() barrier()
38#define rmb() mb()
39#define wmb() mb()
40#define set_mb(var, value) do { var = value; mb(); } while (0)
41#define set_wmb(var, value) do { var = value; wmb(); } while (0)
42
43#define smp_mb() mb()
44#define smp_rmb() rmb()
45#define smp_wmb() wmb()
46
47void show_trace(struct task_struct *task, unsigned long *stack);
48void __bad_xchg(volatile void *ptr, int size);
49
50static inline unsigned long __xchg(unsigned long x, volatile void *ptr,
51 int size)
52{
53 unsigned long ret;
54 unsigned long flags;
55
56 switch (size) {
57 case 1:
58 local_irq_save(flags);
59 ret = *(volatile unsigned char *)ptr;
60 *(volatile unsigned char *)ptr = x;
61 local_irq_restore(flags);
62 break;
63
64 case 4:
65 local_irq_save(flags);
66 ret = *(volatile unsigned long *)ptr;
67 *(volatile unsigned long *)ptr = x;
68 local_irq_restore(flags);
69 break;
70 default:
71 __bad_xchg(ptr, size), ret = 0;
72 break;
73 }
74
75 return ret;
76}
77
78void disable_hlt(void);
79void enable_hlt(void);
80void default_idle(void);
81
82#define xchg(ptr, x) \
83 ((__typeof__(*(ptr))) __xchg((unsigned long)(x), (ptr), sizeof(*(ptr))))
84
85void free_init_pages(char *what, unsigned long begin, unsigned long end);
86void free_initmem(void);
87extern char *klimit;
88extern void ret_from_fork(void);
89
90#ifdef CONFIG_DEBUG_FS
91extern struct dentry *of_debugfs_root;
92#endif
93
94#define arch_align_stack(x) (x)
95
96#endif /* _ASM_MICROBLAZE_SYSTEM_H */