⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uaccess.h

📁 《嵌入式系统设计与实例开发实验教材二源码》Linux内核移植与编译实验
💻 H
📖 第 1 页 / 共 2 页
字号:
#ifndef __M68K_UACCESS_H#define __M68K_UACCESS_H/* * User space memory access functions */#include <linux/sched.h>#include <asm/segment.h>#define VERIFY_READ	0#define VERIFY_WRITE	1/* We let the MMU do all checking */#define access_ok(type,addr,size) 1extern inline int verify_area(int type, const void * addr, unsigned long size){	return access_ok(type,addr,size)?0:-EFAULT;}/* * The exception table consists of pairs of addresses: the first is the * address of an instruction that is allowed to fault, and the second is * the address at which the program should continue.  No registers are * modified, so it is entirely up to the continuation code to figure out * what to do. * * All the routines below use bits of fixup code that are out of line * with the main instruction path.  This means when everything is well, * we don't even have to jump over them.  Further, they do not intrude * on our cache or tlb entries. */struct exception_table_entry{	unsigned long insn, fixup;};/* Returns 0 if exception not found and fixup otherwise.  */extern unsigned long search_exception_table(unsigned long);/* * These are the main single-value transfer routines.  They automatically * use the right size if we just have the right pointer type. */#define put_user(x, ptr)				\({							\    int __pu_err;					\    typeof(*(ptr)) __pu_val = (x);			\    switch (sizeof (*(ptr))) {				\    case 1:						\	__put_user_asm(__pu_err, __pu_val, ptr, b);	\	break;						\    case 2:						\	__put_user_asm(__pu_err, __pu_val, ptr, w);	\	break;						\    case 4:						\	__put_user_asm(__pu_err, __pu_val, ptr, l);	\	break;						\    case 8:                                             \       __pu_err = __constant_copy_to_user(ptr, &__pu_val, 8);        \       break;                                           \    default:						\	__pu_err = __put_user_bad();			\	break;						\    }							\    __pu_err;						\})#define __put_user(x, ptr) put_user(x, ptr)extern int __put_user_bad(void);/* * Tell gcc we read from memory instead of writing: this is because * we do not write to any memory gcc knows about, so there are no * aliasing issues. */#define __put_user_asm(err,x,ptr,bwl)			\__asm__ __volatile__					\    ("21:moves" #bwl " %2,%1\n"				\     "1:\n"						\     ".section .fixup,\"ax\"\n"				\     "   .even\n"					\     "2: movel %3,%0\n"					\     "   jra 1b\n"					\     ".previous\n"					\     ".section __ex_table,\"a\"\n"			\     "   .align 4\n"					\     "   .long 21b,2b\n"				\     "   .long 1b,2b\n"					\     ".previous"					\     : "=d"(err)					\     : "m"(*(ptr)), "r"(x), "i"(-EFAULT), "0"(0))#define get_user(x, ptr)					\({								\    int __gu_err;						\    typeof(*(ptr)) __gu_val;					\    switch (sizeof(*(ptr))) {					\    case 1:							\	__get_user_asm(__gu_err, __gu_val, ptr, b, "=d");	\	break;							\    case 2:							\	__get_user_asm(__gu_err, __gu_val, ptr, w, "=r");	\	break;							\    case 4:							\	__get_user_asm(__gu_err, __gu_val, ptr, l, "=r");	\	break;							\    case 8:                                                     \        __gu_err = __constant_copy_from_user(&__gu_val, ptr, 8);  \        break;                                                  \    default:							\	__gu_val = 0;						\	__gu_err = __get_user_bad();				\	break;							\    }								\    (x) = __gu_val;						\    __gu_err;							\})#define __get_user(x, ptr) get_user(x, ptr)extern int __get_user_bad(void);#define __get_user_asm(err,x,ptr,bwl,reg)	\__asm__ __volatile__				\    ("1: moves" #bwl " %2,%1\n"			\     "2:\n"					\     ".section .fixup,\"ax\"\n"			\     "   .even\n"				\     "3: movel %3,%0\n"				\     "   sub" #bwl " %1,%1\n"			\     "   jra 2b\n"				\     ".previous\n"				\     ".section __ex_table,\"a\"\n"		\     "   .align 4\n"				\     "   .long 1b,3b\n"				\     ".previous"				\     : "=d"(err), reg(x)			\     : "m"(*(ptr)), "i" (-EFAULT), "0"(0))static inline unsigned long__generic_copy_from_user(void *to, const void *from, unsigned long n){    unsigned long tmp;    __asm__ __volatile__	("   tstl %2\n"	 "   jeq 2f\n"	 "1: movesl (%1)+,%3\n"	 "   movel %3,(%0)+\n"	 "   subql #1,%2\n"	 "   jne 1b\n"	 "2: movel %4,%2\n"	 "   bclr #1,%2\n"	 "   jeq 4f\n"	 "3: movesw (%1)+,%3\n"	 "   movew %3,(%0)+\n"	 "4: bclr #0,%2\n"	 "   jeq 6f\n"	 "5: movesb (%1)+,%3\n"	 "   moveb %3,(%0)+\n"	 "6:\n"	 ".section .fixup,\"ax\"\n"	 "   .even\n"	 "7: movel %2,%%d0\n"	 "71:clrl (%0)+\n"	 "   subql #1,%%d0\n"	 "   jne 71b\n"	 "   lsll #2,%2\n"	 "   addl %4,%2\n"	 "   btst #1,%4\n"	 "   jne 81f\n"	 "   btst #0,%4\n"	 "   jne 91f\n"	 "   jra 6b\n"	 "8: addql #2,%2\n"	 "81:clrw (%0)+\n"	 "   btst #0,%4\n"	 "   jne 91f\n"	 "   jra 6b\n"	 "9: addql #1,%2\n"	 "91:clrb (%0)+\n"	 "   jra 6b\n"         ".previous\n"	 ".section __ex_table,\"a\"\n"	 "   .align 4\n"	 "   .long 1b,7b\n"	 "   .long 3b,8b\n"	 "   .long 5b,9b\n"	 ".previous"	 : "=a"(to), "=a"(from), "=d"(n), "=&d"(tmp)	 : "d"(n & 3), "0"(to), "1"(from), "2"(n/4)	 : "d0", "memory");    return n;}static inline unsigned long__generic_copy_to_user(void *to, const void *from, unsigned long n){    unsigned long tmp;    __asm__ __volatile__	("   tstl %2\n"	 "   jeq 3f\n"	 "1: movel (%1)+,%3\n"	 "22:movesl %3,(%0)+\n"	 "2: subql #1,%2\n"	 "   jne 1b\n"	 "3: movel %4,%2\n"	 "   bclr #1,%2\n"	 "   jeq 4f\n"	 "   movew (%1)+,%3\n"	 "24:movesw %3,(%0)+\n"	 "4: bclr #0,%2\n"	 "   jeq 5f\n"	 "   moveb (%1)+,%3\n"	 "25:movesb %3,(%0)+\n"	 "5:\n"	 ".section .fixup,\"ax\"\n"	 "   .even\n"	 "60:addql #1,%2\n"	 "6: lsll #2,%2\n"	 "   addl %4,%2\n"	 "   jra 5b\n"	 "7: addql #2,%2\n"	 "   jra 5b\n"	 "8: addql #1,%2\n"	 "   jra 5b\n"	 ".previous\n"	 ".section __ex_table,\"a\"\n"	 "   .align 4\n"	 "   .long 1b,60b\n"	 "   .long 22b,6b\n"	 "   .long 2b,6b\n"	 "   .long 24b,7b\n"	 "   .long 3b,60b\n"	 "   .long 4b,7b\n"	 "   .long 25b,8b\n"	 "   .long 5b,8b\n"	 ".previous"	 : "=a"(to), "=a"(from), "=d"(n), "=&d"(tmp)	 : "r"(n & 3), "0"(to), "1"(from), "2"(n / 4)	 : "memory");    return n;}#define __copy_from_user_big(to, from, n, fixup, copy)	\    __asm__ __volatile__				\	("10: movesl (%1)+,%%d0\n"			\	 "    movel %%d0,(%0)+\n"			\	 "    subql #1,%2\n"				\	 "    jne 10b\n"				\	 ".section .fixup,\"ax\"\n"			\	 "    .even\n"					\	 "11: movel %2,%%d0\n"				\	 "13: clrl (%0)+\n"				\	 "    subql #1,%%d0\n"				\	 "    jne 13b\n"				\	 "    lsll #2,%2\n"				\	 fixup "\n"					\	 "    jra 12f\n"				\	 ".previous\n"					\	 ".section __ex_table,\"a\"\n"			\	 "    .align 4\n"				\	 "    .long 10b,11b\n"				\	 ".previous\n"					\	 copy "\n"					\	 "12:"						\	 : "=a"(to), "=a"(from), "=d"(n)		\	 : "0"(to), "1"(from), "2"(n/4)			\	 : "d0", "memory")static inline unsigned long__constant_copy_from_user(void *to, const void *from, unsigned long n){    switch (n) {    case 0:	break;    case 1:	__asm__ __volatile__	    ("1: movesb (%1)+,%%d0\n"	     "   moveb %%d0,(%0)+\n"	     "2:\n"	     ".section .fixup,\"ax\"\n"	     "   .even\n"	     "3: addql #1,%2\n"	     "   clrb (%0)+\n"	     "   jra 2b\n"	     ".previous\n"	     ".section __ex_table,\"a\"\n"	     "   .align 4\n"	     "   .long 1b,3b\n"	     ".previous"	     : "=a"(to), "=a"(from), "=d"(n)	     : "0"(to), "1"(from), "2"(0)	     : "d0", "memory");	break;    case 2:	__asm__ __volatile__	    ("1: movesw (%1)+,%%d0\n"	     "   movew %%d0,(%0)+\n"	     "2:\n"	     ".section .fixup,\"ax\"\n"	     "   .even\n"	     "3: addql #2,%2\n"	     "   clrw (%0)+\n"	     "   jra 2b\n"	     ".previous\n"	     ".section __ex_table,\"a\"\n"	     "   .align 4\n"	     "   .long 1b,3b\n"	     ".previous"	     : "=a"(to), "=a"(from), "=d"(n)	     : "0"(to), "1"(from), "2"(0)	     : "d0", "memory");	break;    case 3:	__asm__ __volatile__	    ("1: movesw (%1)+,%%d0\n"	     "   movew %%d0,(%0)+\n"	     "2: movesb (%1)+,%%d0\n"	     "   moveb %%d0,(%0)+\n"	     "3:"	     ".section .fixup,\"ax\"\n"	     "   .even\n"	     "4: addql #2,%2\n"	     "   clrw (%0)+\n"	     "5: addql #1,%2\n"	     "   clrb (%0)+\n"	     "   jra 3b\n"	     ".previous\n"	     ".section __ex_table,\"a\"\n"	     "   .align 4\n"	     "   .long 1b,4b\n"	     "   .long 2b,5b\n"	     ".previous"	     : "=a"(to), "=a"(from), "=d"(n)	     : "0"(to), "1"(from), "2"(0)	     : "d0", "memory");	break;    case 4:	__asm__ __volatile__	    ("1: movesl (%1)+,%%d0\n"	     "   movel %%d0,(%0)+\n"	     "2:"	     ".section .fixup,\"ax\"\n"	     "   .even\n"	     "3: addql #4,%2\n"	     "   clrl (%0)+\n"	     "   jra 2b\n"	     ".previous\n"	     ".section __ex_table,\"a\"\n"	     "   .align 4\n"	     "   .long 1b,3b\n"	     ".previous"	     : "=a"(to), "=a"(from), "=d"(n)	     : "0"(to), "1"(from), "2"(0)	     : "d0", "memory");	break;    case 8:	__asm__ __volatile__	    ("1: movesl (%1)+,%%d0\n"	     "   movel %%d0,(%0)+\n"	     "2: movesl (%1)+,%%d0\n"	     "   movel %%d0,(%0)+\n"	     "3:"	     ".section .fixup,\"ax\"\n"	     "   .even\n"	     "4: addql #4,%2\n"	     "   clrl (%0)+\n"	     "5: addql #4,%2\n"	     "   clrl (%0)+\n"	     "   jra 3b\n"	     ".previous\n"	     ".section __ex_table,\"a\"\n"	     "   .align 4\n"	     "   .long 1b,4b\n"	     "   .long 2b,5b\n"	     ".previous"	     : "=a"(to), "=a"(from), "=d"(n)	     : "0"(to), "1"(from), "2"(0)	     : "d0", "memory");	break;    case 12:	__asm__ __volatile__	    ("1: movesl (%1)+,%%d0\n"	     "   movel %%d0,(%0)+\n"	     "2: movesl (%1)+,%%d0\n"	     "   movel %%d0,(%0)+\n"	     "3: movesl (%1)+,%%d0\n"	     "   movel %%d0,(%0)+\n"	     "4:"	     ".section .fixup,\"ax\"\n"	     "   .even\n"	     "5: addql #4,%2\n"	     "   clrl (%0)+\n"	     "6: addql #4,%2\n"	     "   clrl (%0)+\n"	     "7: addql #4,%2\n"	     "   clrl (%0)+\n"	     "   jra 4b\n"	     ".previous\n"	     ".section __ex_table,\"a\"\n"	     "   .align 4\n"	     "   .long 1b,5b\n"	     "   .long 2b,6b\n"	     "   .long 3b,7b\n"	     ".previous"	     : "=a"(to), "=a"(from), "=d"(n)	     : "0"(to), "1"(from), "2"(0)	     : "d0", "memory");	break;    case 16:	__asm__ __volatile__	    ("1: movesl (%1)+,%%d0\n"	     "   movel %%d0,(%0)+\n"	     "2: movesl (%1)+,%%d0\n"	     "   movel %%d0,(%0)+\n"	     "3: movesl (%1)+,%%d0\n"	     "   movel %%d0,(%0)+\n"	     "4: movesl (%1)+,%%d0\n"	     "   movel %%d0,(%0)+\n"	     "5:"	     ".section .fixup,\"ax\"\n"	     "   .even\n"	     "6: addql #4,%2\n"	     "   clrl (%0)+\n"	     "7: addql #4,%2\n"	     "   clrl (%0)+\n"	     "8: addql #4,%2\n"	     "   clrl (%0)+\n"	     "9: addql #4,%2\n"	     "   clrl (%0)+\n"	     "   jra 5b\n"	     ".previous\n"	     ".section __ex_table,\"a\"\n"	     "   .align 4\n"	     "   .long 1b,6b\n"	     "   .long 2b,7b\n"	     "   .long 3b,8b\n"	     "   .long 4b,9b\n"	     ".previous"	     : "=a"(to), "=a"(from), "=d"(n)	     : "0"(to), "1"(from), "2"(0)	     : "d0", "memory");	break;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -