2 * Copyright (C) 2006 Atmark Techno, Inc.
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
9 #ifndef _ASM_MICROBLAZE_SYSTEM_H
10 #define _ASM_MICROBLAZE_SYSTEM_H
12 #include <asm/registers.h>
13 #include <asm/setup.h>
14 #include <asm/irqflags.h>
15 #include <asm/cache.h>
17 #include <asm-generic/cmpxchg.h>
18 #include <asm-generic/cmpxchg-local.h>
20 #define __ARCH_WANT_INTERRUPTS_ON_CTXSW
25 extern struct task_struct
*_switch_to(struct thread_info
*prev
,
26 struct thread_info
*next
);
28 #define switch_to(prev, next, last) \
30 (last) = _switch_to(task_thread_info(prev), \
31 task_thread_info(next)); \
34 #define smp_read_barrier_depends() do {} while (0)
35 #define read_barrier_depends() do {} while (0)
37 #define nop() asm volatile ("nop")
38 #define mb() barrier()
41 #define set_mb(var, value) do { var = value; mb(); } while (0)
42 #define set_wmb(var, value) do { var = value; wmb(); } while (0)
45 #define smp_rmb() rmb()
46 #define smp_wmb() wmb()
48 void __bad_xchg(volatile void *ptr
, int size
);
50 static inline unsigned long __xchg(unsigned long x
, volatile void *ptr
,
58 local_irq_save(flags
);
59 ret
= *(volatile unsigned char *)ptr
;
60 *(volatile unsigned char *)ptr
= x
;
61 local_irq_restore(flags
);
65 local_irq_save(flags
);
66 ret
= *(volatile unsigned long *)ptr
;
67 *(volatile unsigned long *)ptr
= x
;
68 local_irq_restore(flags
);
71 __bad_xchg(ptr
, size
), ret
= 0;
78 void disable_hlt(void);
79 void enable_hlt(void);
80 void default_idle(void);
82 #define xchg(ptr, x) \
83 ((__typeof__(*(ptr))) __xchg((unsigned long)(x), (ptr), sizeof(*(ptr))))
85 void free_init_pages(char *what
, unsigned long begin
, unsigned long end
);
86 void free_initmem(void);
88 extern void ret_from_fork(void);
90 extern void *alloc_maybe_bootmem(size_t size
, gfp_t mask
);
91 extern void *zalloc_maybe_bootmem(size_t size
, gfp_t mask
);
93 #ifdef CONFIG_DEBUG_FS
94 extern struct dentry
*of_debugfs_root
;
97 #define arch_align_stack(x) (x)
100 * MicroBlaze doesn't handle unaligned accesses in hardware.
102 * Based on this we force the IP header alignment in network drivers.
104 #define NET_IP_ALIGN 2
106 #endif /* _ASM_MICROBLAZE_SYSTEM_H */