📄 system.h
字号:
/* * linux/include/asm-arm/proc-armv/system.h * * Copyright (C) 1996 Russell King */#ifndef __ASM_PROC_SYSTEM_H#define __ASM_PROC_SYSTEM_Hextern const char xchg_str[];extern __inline__ unsigned long __xchg(unsigned long x, volatile void *ptr, int size){ switch (size) { case 1: __asm__ __volatile__ ("swpb %0, %1, [%2]" : "=r" (x) : "r" (x), "r" (ptr) : "memory"); break; case 2: abort (); case 4: __asm__ __volatile__ ("swp %0, %1, [%2]" : "=r" (x) : "r" (x), "r" (ptr) : "memory"); break; default: arm_invalidptr(xchg_str, size); } return x;}#define set_cr(x) \ do { \ __asm__ __volatile__( \ "mcr p15, 0, %0, c1, c0 @ set CR" \ : : "r" (x)); \ } while (0)extern unsigned long cr_no_alignment; /* defined in entry-armv.S */extern unsigned long cr_alignment; /* defined in entry-armv.S *//* * We can wait for an interrupt... */#define proc_idle() \ do { \ __asm__ __volatile__( \" mcr p15, 0, %0, c15, c8, 2 @ proc_idle" \ : : "r" (0)); \ } while (0)/* * A couple of speedups for the ARM */#if defined(OSKIT) && !defined(INLINED_INTR_FLAGS)extern void linux_sti(void); extern void linux_cli(void);extern unsigned linux_save_flags(void);extern void linux_restore_flags(unsigned);extern unsigned linux_save_flags_cli(void);#define __sti() linux_sti()#define __cli() linux_cli()#define __save_flags(flags) ((flags) = linux_save_flags())#define __restore_flags(flags) linux_restore_flags(flags)#define __save_flags_cli(flags) ((flags) = linux_save_flags_cli())#else/* * Save the current interrupt enable state & disable IRQs */#define __save_flags_cli(x) \ do { \ unsigned long temp; \ __asm__ __volatile__( \ "mrs %1, cpsr @ save_flags_cli\n" \" and %0, %1, #192\n" \" orr %1, %1, #128\n" \" msr cpsr, %1" \ : "=r" (x), "=r" (temp) \ : \ : "memory"); \ } while (0) /* * Enable IRQs */#define __sti() \ do { \ unsigned long temp; \ __asm__ __volatile__( \ "mrs %0, cpsr @ sti\n" \" bic %0, %0, #128\n" \" msr cpsr, %0" \ : "=r" (temp) \ : \ : "memory"); \ } while(0)/* * Disable IRQs */#define __cli() \ do { \ unsigned long temp; \ __asm__ __volatile__( \ "mrs %0, cpsr @ cli\n" \" orr %0, %0, #128\n" \" msr cpsr, %0" \ : "=r" (temp) \ : \ : "memory"); \ } while(0)/* * save current IRQ & FIQ state */#define __save_flags(x) \ do { \ __asm__ __volatile__( \ "mrs %0, cpsr @ save_flags\n" \" and %0, %0, #192" \ : "=r" (x) \ : \ : "memory"); \ } while (0)/* * restore saved IRQ & FIQ state */#define __restore_flags(x) \ do { \ unsigned long temp; \ __asm__ __volatile__( \ "mrs %0, cpsr @ restore_flags\n" \" bic %0, %0, #192\n" \" orr %0, %0, %1\n" \" msr cpsr, %0" \ : "=r" (temp) \ : "r" (x) \ : "memory"); \ } while (0)#endif /* OSKIT */#ifdef __SMP__#error SMP not supported#else#define cli() __cli()#define sti() __sti()#define save_flags(x) __save_flags(x)#if defined(OSKIT) && defined(INLINED_INTR_FLAGS)#define PSR_I 0x80#define restore_flags(x) ({ if ((x) & PSR_I) cli(); else sti(); })#else#define restore_flags(x) __restore_flags(x)#endif#define save_flags_cli(x) __save_flags_cli(x)#endif#if defined(OSKIT) && defined(INLINED_INTR_FLAGS)/* * Inline the interrupt enable/disable stuff. There are tons of calls * to these glue names scattered around. Redefine them. Perhaps the calls * to these names should be changed to calls to the normal names so that * they don't have to be special cased like this? * * First, undef the stuff from global.h */#undef linux_save_flags_cli#undef linux_save_flags#undef linux_restore_flags#undef linux_sti#undef linux_cli#define linux_sti() sti()#define linux_cli() cli()#define linux_save_flags() \ ({ unsigned __flags__; save_flags(__flags__); __flags__; })#define linux_restore_flags restore_flags#define linux_save_flags_cli() \ ({ unsigned __flags_; save_flags(__flags_); cli(); __flags_; })#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -