1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _M68K_SEGMENT_H
3 #define _M68K_SEGMENT_H
6 /* Address spaces (FC0-FC2) */
9 #define __USER_DS (USER_DATA)
11 #define USER_PROGRAM (2)
12 #define SUPER_DATA (5)
14 #define __KERNEL_DS (SUPER_DATA)
16 #define SUPER_PROGRAM (6)
25 #define MAKE_MM_SEG(s) ((mm_segment_t) { (s) })
27 #ifdef CONFIG_CPU_HAS_ADDRESS_SPACES
29 * Get/set the SFC/DFC registers for MOVES instructions
31 #define USER_DS MAKE_MM_SEG(__USER_DS)
32 #define KERNEL_DS MAKE_MM_SEG(__KERNEL_DS)
34 static inline mm_segment_t get_fs(void)
37 __asm__ ("movec %/dfc,%0":"=r" (_v.seg):);
41 static inline void set_fs(mm_segment_t val)
43 __asm__ __volatile__ ("movec %0,%/sfc\n\t"
45 : /* no outputs */ : "r" (val.seg) : "memory");
49 #define USER_DS MAKE_MM_SEG(TASK_SIZE)
50 #define KERNEL_DS MAKE_MM_SEG(0xFFFFFFFF)
51 #define get_fs() (current_thread_info()->addr_limit)
52 #define set_fs(x) (current_thread_info()->addr_limit = (x))
55 #define uaccess_kernel() (get_fs().seg == KERNEL_DS.seg)
57 #endif /* __ASSEMBLY__ */
59 #endif /* _M68K_SEGMENT_H */