diff options
Diffstat (limited to 'arch/arm')
49 files changed, 778 insertions, 426 deletions
diff --git a/arch/arm/boot/compressed/Makefile b/arch/arm/boot/compressed/Makefile index 8ebbb511c78..0c6852d9350 100644 --- a/arch/arm/boot/compressed/Makefile +++ b/arch/arm/boot/compressed/Makefile @@ -74,7 +74,7 @@ ZTEXTADDR	:= $(CONFIG_ZBOOT_ROM_TEXT)  ZBSSADDR	:= $(CONFIG_ZBOOT_ROM_BSS)  else  ZTEXTADDR	:= 0 -ZBSSADDR	:= ALIGN(4) +ZBSSADDR	:= ALIGN(8)  endif  SEDFLAGS	= s/TEXT_START/$(ZTEXTADDR)/;s/BSS_START/$(ZBSSADDR)/ diff --git a/arch/arm/boot/compressed/head.S b/arch/arm/boot/compressed/head.S index adf583cd0c3..49f5b2eaaa8 100644 --- a/arch/arm/boot/compressed/head.S +++ b/arch/arm/boot/compressed/head.S @@ -179,15 +179,14 @@ not_angel:  		bl	cache_on  restart:	adr	r0, LC0 -		ldmia	r0, {r1, r2, r3, r5, r6, r9, r11, r12} -		ldr	sp, [r0, #32] +		ldmia	r0, {r1, r2, r3, r6, r9, r11, r12} +		ldr	sp, [r0, #28]  		/*  		 * We might be running at a different address.  We need  		 * to fix up various pointers.  		 */  		sub	r0, r0, r1		@ calculate the delta offset -		add	r5, r5, r0		@ _start  		add	r6, r6, r0		@ _edata  #ifndef CONFIG_ZBOOT_ROM @@ -206,31 +205,40 @@ restart:	adr	r0, LC0  /*   * Check to see if we will overwrite ourselves.   *   r4  = final kernel address - *   r5  = start of this image   *   r9  = size of decompressed image   *   r10 = end of this image, including  bss/stack/malloc space if non XIP   * We basically want: - *   r4 >= r10 -> OK - *   r4 + image length <= r5 -> OK + *   r4 - 16k page directory >= r10 -> OK + *   r4 + image length <= current position (pc) -> OK   */ +		add	r10, r10, #16384  		cmp	r4, r10  		bhs	wont_overwrite  		add	r10, r4, r9 -		cmp	r10, r5 +   ARM(		cmp	r10, pc		) + THUMB(		mov	lr, pc		) + THUMB(		cmp	r10, lr		)  		bls	wont_overwrite  /*   * Relocate ourselves past the end of the decompressed kernel. - *   r5  = start of this image   *   r6  = _edata   *   r10 = end of the decompressed kernel   * Because we always copy ahead, we need to do it from the end and go   * backward in case the source and destination overlap.   */ -		/* Round up to next 256-byte boundary. */ -		add	r10, r10, #256 +		/* +		 * Bump to the next 256-byte boundary with the size of +		 * the relocation code added. This avoids overwriting +		 * ourself when the offset is small. +		 */ +		add	r10, r10, #((reloc_code_end - restart + 256) & ~255)  		bic	r10, r10, #255 +		/* Get start of code we want to copy and align it down. */ +		adr	r5, restart +		bic	r5, r5, #31 +  		sub	r9, r6, r5		@ size to copy  		add	r9, r9, #31		@ rounded up to a multiple  		bic	r9, r9, #31		@ ... of 32 bytes @@ -245,6 +253,11 @@ restart:	adr	r0, LC0  		/* Preserve offset to relocated code. */  		sub	r6, r9, r6 +#ifndef CONFIG_ZBOOT_ROM +		/* cache_clean_flush may use the stack, so relocate it */ +		add	sp, sp, r6 +#endif +  		bl	cache_clean_flush  		adr	r0, BSYM(restart) @@ -333,7 +346,6 @@ not_relocated:	mov	r0, #0  LC0:		.word	LC0			@ r1  		.word	__bss_start		@ r2  		.word	_end			@ r3 -		.word	_start			@ r5  		.word	_edata			@ r6  		.word	_image_size		@ r9  		.word	_got_start		@ r11 @@ -1062,6 +1074,7 @@ memdump:	mov	r12, r0  #endif  		.ltorg +reloc_code_end:  		.align  		.section ".stack", "aw", %nobits diff --git a/arch/arm/boot/compressed/vmlinux.lds.in b/arch/arm/boot/compressed/vmlinux.lds.in index 5309909d728..ea80abe7884 100644 --- a/arch/arm/boot/compressed/vmlinux.lds.in +++ b/arch/arm/boot/compressed/vmlinux.lds.in @@ -54,6 +54,7 @@ SECTIONS    .bss			: { *(.bss) }    _end = .; +  . = ALIGN(8);		/* the stack must be 64-bit aligned */    .stack		: { *(.stack) }    .stab 0		: { *(.stab) } diff --git a/arch/arm/configs/at91x40_defconfig b/arch/arm/configs/at91x40_defconfig new file mode 100644 index 00000000000..c55e9212fcb --- /dev/null +++ b/arch/arm/configs/at91x40_defconfig @@ -0,0 +1,48 @@ +CONFIG_EXPERIMENTAL=y +CONFIG_LOG_BUF_SHIFT=14 +CONFIG_EMBEDDED=y +# CONFIG_HOTPLUG is not set +# CONFIG_ELF_CORE is not set +# CONFIG_FUTEX is not set +# CONFIG_TIMERFD is not set +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_COMPAT_BRK is not set +CONFIG_SLAB=y +# CONFIG_LBDAF is not set +# CONFIG_BLK_DEV_BSG is not set +# CONFIG_IOSCHED_DEADLINE is not set +# CONFIG_IOSCHED_CFQ is not set +# CONFIG_MMU is not set +CONFIG_ARCH_AT91=y +CONFIG_ARCH_AT91X40=y +CONFIG_MACH_AT91EB01=y +CONFIG_AT91_EARLY_USART0=y +CONFIG_CPU_ARM7TDMI=y +CONFIG_SET_MEM_PARAM=y +CONFIG_DRAM_BASE=0x01000000 +CONFIG_DRAM_SIZE=0x00400000 +CONFIG_FLASH_MEM_BASE=0x01400000 +CONFIG_PROCESSOR_ID=0x14000040 +CONFIG_ZBOOT_ROM_TEXT=0x0 +CONFIG_ZBOOT_ROM_BSS=0x0 +CONFIG_BINFMT_FLAT=y +# CONFIG_SUSPEND is not set +# CONFIG_FW_LOADER is not set +CONFIG_MTD=y +CONFIG_MTD_PARTITIONS=y +CONFIG_MTD_CHAR=y +CONFIG_MTD_BLOCK=y +CONFIG_MTD_RAM=y +CONFIG_MTD_ROM=y +CONFIG_BLK_DEV_RAM=y +# CONFIG_INPUT is not set +# CONFIG_SERIO is not set +# CONFIG_VT is not set +# CONFIG_DEVKMEM is not set +# CONFIG_HW_RANDOM is not set +# CONFIG_HWMON is not set +# CONFIG_USB_SUPPORT is not set +CONFIG_EXT2_FS=y +# CONFIG_DNOTIFY is not set +CONFIG_ROMFS_FS=y +# CONFIG_ENABLE_MUST_CHECK is not set diff --git a/arch/arm/include/asm/kprobes.h b/arch/arm/include/asm/kprobes.h index bb8a19bd582..e46bdd0097e 100644 --- a/arch/arm/include/asm/kprobes.h +++ b/arch/arm/include/asm/kprobes.h @@ -39,10 +39,13 @@ typedef u32 kprobe_opcode_t;  struct kprobe;  typedef void (kprobe_insn_handler_t)(struct kprobe *, struct pt_regs *); +typedef unsigned long (kprobe_check_cc)(unsigned long); +  /* Architecture specific copy of original instruction. */  struct arch_specific_insn {  	kprobe_opcode_t		*insn;  	kprobe_insn_handler_t	*insn_handler; +	kprobe_check_cc		*insn_check_cc;  };  struct prev_kprobe { diff --git a/arch/arm/include/asm/system.h b/arch/arm/include/asm/system.h index 885be097769..832888d0c20 100644 --- a/arch/arm/include/asm/system.h +++ b/arch/arm/include/asm/system.h @@ -159,7 +159,7 @@ extern unsigned int user_debug;  #include <mach/barriers.h>  #elif defined(CONFIG_ARM_DMA_MEM_BUFFERABLE) || defined(CONFIG_SMP)  #define mb()		do { dsb(); outer_sync(); } while (0) -#define rmb()		dmb() +#define rmb()		dsb()  #define wmb()		mb()  #else  #include <asm/memory.h> diff --git a/arch/arm/kernel/kprobes-decode.c b/arch/arm/kernel/kprobes-decode.c index 23891317dc4..15eeff6aea0 100644 --- a/arch/arm/kernel/kprobes-decode.c +++ b/arch/arm/kernel/kprobes-decode.c @@ -34,9 +34,6 @@   *   *   *) If the PC is written to by the instruction, the   *      instruction must be fully simulated in software. - *      If it is a conditional instruction, the handler - *      will use insn[0] to copy its condition code to - *	set r0 to 1 and insn[1] to "mov pc, lr" to return.   *   *   *) Otherwise, a modified form of the instruction is   *      directly executed.  Its handler calls the @@ -68,13 +65,17 @@  #define branch_displacement(insn) sign_extend(((insn) & 0xffffff) << 2, 25) +#define is_r15(insn, bitpos) (((insn) & (0xf << bitpos)) == (0xf << bitpos)) + +/* + * Test if load/store instructions writeback the address register. + * if P (bit 24) == 0 or W (bit 21) == 1 + */ +#define is_writeback(insn) ((insn ^ 0x01000000) & 0x01200000) +  #define PSR_fs	(PSR_f|PSR_s)  #define KPROBE_RETURN_INSTRUCTION	0xe1a0f00e	/* mov pc, lr */ -#define SET_R0_TRUE_INSTRUCTION		0xe3a00001	/* mov	r0, #1 */ - -#define	truecc_insn(insn)	(((insn) & 0xf0000000) | \ -				 (SET_R0_TRUE_INSTRUCTION & 0x0fffffff))  typedef long (insn_0arg_fn_t)(void);  typedef long (insn_1arg_fn_t)(long); @@ -419,14 +420,10 @@ insnslot_llret_4arg_rwflags(long r0, long r1, long r2, long r3, long *cpsr,  static void __kprobes simulate_bbl(struct kprobe *p, struct pt_regs *regs)  { -	insn_1arg_fn_t *i_fn = (insn_1arg_fn_t *)&p->ainsn.insn[0];  	kprobe_opcode_t insn = p->opcode;  	long iaddr = (long)p->addr;  	int disp  = branch_displacement(insn); -	if (!insnslot_1arg_rflags(0, regs->ARM_cpsr, i_fn)) -		return; -  	if (insn & (1 << 24))  		regs->ARM_lr = iaddr + 4; @@ -446,14 +443,10 @@ static void __kprobes simulate_blx1(struct kprobe *p, struct pt_regs *regs)  static void __kprobes simulate_blx2bx(struct kprobe *p, struct pt_regs *regs)  { -	insn_1arg_fn_t *i_fn = (insn_1arg_fn_t *)&p->ainsn.insn[0];  	kprobe_opcode_t insn = p->opcode;  	int rm = insn & 0xf;  	long rmv = regs->uregs[rm]; -	if (!insnslot_1arg_rflags(0, regs->ARM_cpsr, i_fn)) -		return; -  	if (insn & (1 << 5))  		regs->ARM_lr = (long)p->addr + 4; @@ -463,9 +456,16 @@ static void __kprobes simulate_blx2bx(struct kprobe *p, struct pt_regs *regs)  		regs->ARM_cpsr |= PSR_T_BIT;  } +static void __kprobes simulate_mrs(struct kprobe *p, struct pt_regs *regs) +{ +	kprobe_opcode_t insn = p->opcode; +	int rd = (insn >> 12) & 0xf; +	unsigned long mask = 0xf8ff03df; /* Mask out execution state */ +	regs->uregs[rd] = regs->ARM_cpsr & mask; +} +  static void __kprobes simulate_ldm1stm1(struct kprobe *p, struct pt_regs *regs)  { -	insn_1arg_fn_t *i_fn = (insn_1arg_fn_t *)&p->ainsn.insn[0];  	kprobe_opcode_t insn = p->opcode;  	int rn = (insn >> 16) & 0xf;  	int lbit = insn & (1 << 20); @@ -476,9 +476,6 @@ static void __kprobes simulate_ldm1stm1(struct kprobe *p, struct pt_regs *regs)  	int reg_bit_vector;  	int reg_count; -	if (!insnslot_1arg_rflags(0, regs->ARM_cpsr, i_fn)) -		return; -  	reg_count = 0;  	reg_bit_vector = insn & 0xffff;  	while (reg_bit_vector) { @@ -510,11 +507,6 @@ static void __kprobes simulate_ldm1stm1(struct kprobe *p, struct pt_regs *regs)  static void __kprobes simulate_stm1_pc(struct kprobe *p, struct pt_regs *regs)  { -	insn_1arg_fn_t *i_fn = (insn_1arg_fn_t *)&p->ainsn.insn[0]; - -	if (!insnslot_1arg_rflags(0, regs->ARM_cpsr, i_fn)) -		return; -  	regs->ARM_pc = (long)p->addr + str_pc_offset;  	simulate_ldm1stm1(p, regs);  	regs->ARM_pc = (long)p->addr + 4; @@ -525,24 +517,16 @@ static void __kprobes simulate_mov_ipsp(struct kprobe *p, struct pt_regs *regs)  	regs->uregs[12] = regs->uregs[13];  } -static void __kprobes emulate_ldcstc(struct kprobe *p, struct pt_regs *regs) -{ -	insn_1arg_fn_t *i_fn = (insn_1arg_fn_t *)&p->ainsn.insn[0]; -	kprobe_opcode_t insn = p->opcode; -	int rn = (insn >> 16) & 0xf; -	long rnv = regs->uregs[rn]; - -	/* Save Rn in case of writeback. */ -	regs->uregs[rn] = insnslot_1arg_rflags(rnv, regs->ARM_cpsr, i_fn); -} -  static void __kprobes emulate_ldrd(struct kprobe *p, struct pt_regs *regs)  {  	insn_2arg_fn_t *i_fn = (insn_2arg_fn_t *)&p->ainsn.insn[0];  	kprobe_opcode_t insn = p->opcode; +	long ppc = (long)p->addr + 8;  	int rd = (insn >> 12) & 0xf;  	int rn = (insn >> 16) & 0xf;  	int rm = insn & 0xf;  /* rm may be invalid, don't care. */ +	long rmv = (rm == 15) ? ppc : regs->uregs[rm]; +	long rnv = (rn == 15) ? ppc : regs->uregs[rn];  	/* Not following the C calling convention here, so need asm(). */  	__asm__ __volatile__ ( @@ -554,29 +538,36 @@ static void __kprobes emulate_ldrd(struct kprobe *p, struct pt_regs *regs)  		"str	r0, %[rn]	\n\t"	/* in case of writeback */  		"str	r2, %[rd0]	\n\t"  		"str	r3, %[rd1]	\n\t" -		: [rn]  "+m" (regs->uregs[rn]), +		: [rn]  "+m" (rnv),  		  [rd0] "=m" (regs->uregs[rd]),  		  [rd1] "=m" (regs->uregs[rd+1]) -		: [rm]   "m" (regs->uregs[rm]), +		: [rm]   "m" (rmv),  		  [cpsr] "r" (regs->ARM_cpsr),  		  [i_fn] "r" (i_fn)  		: "r0", "r1", "r2", "r3", "lr", "cc"  	); +	if (is_writeback(insn)) +		regs->uregs[rn] = rnv;  }  static void __kprobes emulate_strd(struct kprobe *p, struct pt_regs *regs)  {  	insn_4arg_fn_t *i_fn = (insn_4arg_fn_t *)&p->ainsn.insn[0];  	kprobe_opcode_t insn = p->opcode; +	long ppc = (long)p->addr + 8;  	int rd = (insn >> 12) & 0xf;  	int rn = (insn >> 16) & 0xf;  	int rm  = insn & 0xf; -	long rnv = regs->uregs[rn]; -	long rmv = regs->uregs[rm];  /* rm/rmv may be invalid, don't care. */ +	long rnv = (rn == 15) ? ppc : regs->uregs[rn]; +	/* rm/rmv may be invalid, don't care. */ +	long rmv = (rm == 15) ? ppc : regs->uregs[rm]; +	long rnv_wb; -	regs->uregs[rn] = insnslot_4arg_rflags(rnv, rmv, regs->uregs[rd], +	rnv_wb = insnslot_4arg_rflags(rnv, rmv, regs->uregs[rd],  					       regs->uregs[rd+1],  					       regs->ARM_cpsr, i_fn); +	if (is_writeback(insn)) +		regs->uregs[rn] = rnv_wb;  }  static void __kprobes emulate_ldr(struct kprobe *p, struct pt_regs *regs) @@ -630,31 +621,6 @@ static void __kprobes emulate_str(struct kprobe *p, struct pt_regs *regs)  		regs->uregs[rn] = rnv_wb;  /* Save Rn in case of writeback. */  } -static void __kprobes emulate_mrrc(struct kprobe *p, struct pt_regs *regs) -{ -	insn_llret_0arg_fn_t *i_fn = (insn_llret_0arg_fn_t *)&p->ainsn.insn[0]; -	kprobe_opcode_t insn = p->opcode; -	union reg_pair fnr; -	int rd = (insn >> 12) & 0xf; -	int rn = (insn >> 16) & 0xf; - -	fnr.dr = insnslot_llret_0arg_rflags(regs->ARM_cpsr, i_fn); -	regs->uregs[rn] = fnr.r0; -	regs->uregs[rd] = fnr.r1; -} - -static void __kprobes emulate_mcrr(struct kprobe *p, struct pt_regs *regs) -{ -	insn_2arg_fn_t *i_fn = (insn_2arg_fn_t *)&p->ainsn.insn[0]; -	kprobe_opcode_t insn = p->opcode; -	int rd = (insn >> 12) & 0xf; -	int rn = (insn >> 16) & 0xf; -	long rnv = regs->uregs[rn]; -	long rdv = regs->uregs[rd]; - -	insnslot_2arg_rflags(rnv, rdv, regs->ARM_cpsr, i_fn); -} -  static void __kprobes emulate_sat(struct kprobe *p, struct pt_regs *regs)  {  	insn_1arg_fn_t *i_fn = (insn_1arg_fn_t *)&p->ainsn.insn[0]; @@ -688,32 +654,32 @@ static void __kprobes emulate_none(struct kprobe *p, struct pt_regs *regs)  	insnslot_0arg_rflags(regs->ARM_cpsr, i_fn);  } -static void __kprobes emulate_rd12(struct kprobe *p, struct pt_regs *regs) +static void __kprobes emulate_nop(struct kprobe *p, struct pt_regs *regs)  { -	insn_0arg_fn_t *i_fn = (insn_0arg_fn_t *)&p->ainsn.insn[0]; -	kprobe_opcode_t insn = p->opcode; -	int rd = (insn >> 12) & 0xf; - -	regs->uregs[rd] = insnslot_0arg_rflags(regs->ARM_cpsr, i_fn);  } -static void __kprobes emulate_ird12(struct kprobe *p, struct pt_regs *regs) +static void __kprobes +emulate_rd12_modify(struct kprobe *p, struct pt_regs *regs)  {  	insn_1arg_fn_t *i_fn = (insn_1arg_fn_t *)&p->ainsn.insn[0];  	kprobe_opcode_t insn = p->opcode; -	int ird = (insn >> 12) & 0xf; +	int rd = (insn >> 12) & 0xf; +	long rdv = regs->uregs[rd]; -	insnslot_1arg_rflags(regs->uregs[ird], regs->ARM_cpsr, i_fn); +	regs->uregs[rd] = insnslot_1arg_rflags(rdv, regs->ARM_cpsr, i_fn);  } -static void __kprobes emulate_rn16(struct kprobe *p, struct pt_regs *regs) +static void __kprobes +emulate_rd12rn0_modify(struct kprobe *p, struct pt_regs *regs)  { -	insn_1arg_fn_t *i_fn = (insn_1arg_fn_t *)&p->ainsn.insn[0]; +	insn_2arg_fn_t *i_fn = (insn_2arg_fn_t *)&p->ainsn.insn[0];  	kprobe_opcode_t insn = p->opcode; -	int rn = (insn >> 16) & 0xf; +	int rd = (insn >> 12) & 0xf; +	int rn = insn & 0xf; +	long rdv = regs->uregs[rd];  	long rnv = regs->uregs[rn]; -	insnslot_1arg_rflags(rnv, regs->ARM_cpsr, i_fn); +	regs->uregs[rd] = insnslot_2arg_rflags(rdv, rnv, regs->ARM_cpsr, i_fn);  }  static void __kprobes emulate_rd12rm0(struct kprobe *p, struct pt_regs *regs) @@ -819,6 +785,17 @@ emulate_alu_imm_rwflags(struct kprobe *p, struct pt_regs *regs)  }  static void __kprobes +emulate_alu_tests_imm(struct kprobe *p, struct pt_regs *regs) +{ +	insn_1arg_fn_t *i_fn = (insn_1arg_fn_t *)&p->ainsn.insn[0]; +	kprobe_opcode_t insn = p->opcode; +	int rn = (insn >> 16) & 0xf; +	long rnv = (rn == 15) ? (long)p->addr + 8 : regs->uregs[rn]; + +	insnslot_1arg_rwflags(rnv, ®s->ARM_cpsr, i_fn); +} + +static void __kprobes  emulate_alu_rflags(struct kprobe *p, struct pt_regs *regs)  {  	insn_3arg_fn_t *i_fn = (insn_3arg_fn_t *)&p->ainsn.insn[0]; @@ -854,14 +831,34 @@ emulate_alu_rwflags(struct kprobe *p, struct pt_regs *regs)  		insnslot_3arg_rwflags(rnv, rmv, rsv, ®s->ARM_cpsr, i_fn);  } +static void __kprobes +emulate_alu_tests(struct kprobe *p, struct pt_regs *regs) +{ +	insn_3arg_fn_t *i_fn = (insn_3arg_fn_t *)&p->ainsn.insn[0]; +	kprobe_opcode_t insn = p->opcode; +	long ppc = (long)p->addr + 8; +	int rn = (insn >> 16) & 0xf; +	int rs = (insn >> 8) & 0xf;	/* rs/rsv may be invalid, don't care. */ +	int rm = insn & 0xf; +	long rnv = (rn == 15) ? ppc : regs->uregs[rn]; +	long rmv = (rm == 15) ? ppc : regs->uregs[rm]; +	long rsv = regs->uregs[rs]; + +	insnslot_3arg_rwflags(rnv, rmv, rsv, ®s->ARM_cpsr, i_fn); +} +  static enum kprobe_insn __kprobes  prep_emulate_ldr_str(kprobe_opcode_t insn, struct arch_specific_insn *asi)  { -	int ibit = (insn & (1 << 26)) ? 25 : 22; +	int not_imm = (insn & (1 << 26)) ? (insn & (1 << 25)) +					 : (~insn & (1 << 22)); + +	if (is_writeback(insn) && is_r15(insn, 16)) +		return INSN_REJECTED;	/* Writeback to PC */  	insn &= 0xfff00fff;  	insn |= 0x00001000;	/* Rn = r0, Rd = r1 */ -	if (insn & (1 << ibit)) { +	if (not_imm) {  		insn &= ~0xf;  		insn |= 2;	/* Rm = r2 */  	} @@ -871,20 +868,40 @@ prep_emulate_ldr_str(kprobe_opcode_t insn, struct arch_specific_insn *asi)  }  static enum kprobe_insn __kprobes -prep_emulate_rd12rm0(kprobe_opcode_t insn, struct arch_specific_insn *asi) +prep_emulate_rd12_modify(kprobe_opcode_t insn, struct arch_specific_insn *asi)  { -	insn &= 0xffff0ff0;	/* Rd = r0, Rm = r0 */ +	if (is_r15(insn, 12)) +		return INSN_REJECTED;	/* Rd is PC */ + +	insn &= 0xffff0fff;	/* Rd = r0 */  	asi->insn[0] = insn; -	asi->insn_handler = emulate_rd12rm0; +	asi->insn_handler = emulate_rd12_modify;  	return INSN_GOOD;  }  static enum kprobe_insn __kprobes -prep_emulate_rd12(kprobe_opcode_t insn, struct arch_specific_insn *asi) +prep_emulate_rd12rn0_modify(kprobe_opcode_t insn, +			    struct arch_specific_insn *asi)  { -	insn &= 0xffff0fff;	/* Rd = r0 */ +	if (is_r15(insn, 12)) +		return INSN_REJECTED;	/* Rd is PC */ + +	insn &= 0xffff0ff0;	/* Rd = r0 */ +	insn |= 0x00000001;	/* Rn = r1 */ +	asi->insn[0] = insn; +	asi->insn_handler = emulate_rd12rn0_modify; +	return INSN_GOOD; +} + +static enum kprobe_insn __kprobes +prep_emulate_rd12rm0(kprobe_opcode_t insn, struct arch_specific_insn *asi) +{ +	if (is_r15(insn, 12)) +		return INSN_REJECTED;	/* Rd is PC */ + +	insn &= 0xffff0ff0;	/* Rd = r0, Rm = r0 */  	asi->insn[0] = insn; -	asi->insn_handler = emulate_rd12; +	asi->insn_handler = emulate_rd12rm0;  	return INSN_GOOD;  } @@ -892,6 +909,9 @@ static enum kprobe_insn __kprobes  prep_emulate_rd12rn16rm0_wflags(kprobe_opcode_t insn,  				struct arch_specific_insn *asi)  { +	if (is_r15(insn, 12)) +		return INSN_REJECTED;	/* Rd is PC */ +  	insn &= 0xfff00ff0;	/* Rd = r0, Rn = r0 */  	insn |= 0x00000001;	/* Rm = r1 */  	asi->insn[0] = insn; @@ -903,6 +923,9 @@ static enum kprobe_insn __kprobes  prep_emulate_rd16rs8rm0_wflags(kprobe_opcode_t insn,  			       struct arch_specific_insn *asi)  { +	if (is_r15(insn, 16)) +		return INSN_REJECTED;	/* Rd is PC */ +  	insn &= 0xfff0f0f0;	/* Rd = r0, Rs = r0 */  	insn |= 0x00000001;	/* Rm = r1          */  	asi->insn[0] = insn; @@ -914,6 +937,9 @@ static enum kprobe_insn __kprobes  prep_emulate_rd16rn12rs8rm0_wflags(kprobe_opcode_t insn,  				   struct arch_specific_insn *asi)  { +	if (is_r15(insn, 16)) +		return INSN_REJECTED;	/* Rd is PC */ +  	insn &= 0xfff000f0;	/* Rd = r0, Rn = r0 */  	insn |= 0x00000102;	/* Rs = r1, Rm = r2 */  	asi->insn[0] = insn; @@ -925,6 +951,9 @@ static enum kprobe_insn __kprobes  prep_emulate_rdhi16rdlo12rs8rm0_wflags(kprobe_opcode_t insn,  				       struct arch_specific_insn *asi)  { +	if (is_r15(insn, 16) || is_r15(insn, 12)) +		return INSN_REJECTED;	/* RdHi or RdLo is PC */ +  	insn &= 0xfff000f0;	/* RdHi = r0, RdLo = r1 */  	insn |= 0x00001203;	/* Rs = r2, Rm = r3 */  	asi->insn[0] = insn; @@ -945,20 +974,13 @@ prep_emulate_rdhi16rdlo12rs8rm0_wflags(kprobe_opcode_t insn,  static enum kprobe_insn __kprobes  space_1111(kprobe_opcode_t insn, struct arch_specific_insn *asi)  { -	/* CPS mmod == 1 : 1111 0001 0000 xx10 xxxx xxxx xx0x xxxx */ -	/* RFE           : 1111 100x x0x1 xxxx xxxx 1010 xxxx xxxx */ -	/* SRS           : 1111 100x x1x0 1101 xxxx 0101 xxxx xxxx */ -	if ((insn & 0xfff30020) == 0xf1020000 || -	    (insn & 0xfe500f00) == 0xf8100a00 || -	    (insn & 0xfe5f0f00) == 0xf84d0500) -		return INSN_REJECTED; - -	/* PLD : 1111 01x1 x101 xxxx xxxx xxxx xxxx xxxx : */ -	if ((insn & 0xfd700000) == 0xf4500000) { -		insn &= 0xfff0ffff;	/* Rn = r0 */ -		asi->insn[0] = insn; -		asi->insn_handler = emulate_rn16; -		return INSN_GOOD; +	/* memory hint : 1111 0100 x001 xxxx xxxx xxxx xxxx xxxx : */ +	/* PLDI        : 1111 0100 x101 xxxx xxxx xxxx xxxx xxxx : */ +	/* PLDW        : 1111 0101 x001 xxxx xxxx xxxx xxxx xxxx : */ +	/* PLD         : 1111 0101 x101 xxxx xxxx xxxx xxxx xxxx : */ +	if ((insn & 0xfe300000) == 0xf4100000) { +		asi->insn_handler = emulate_nop; +		return INSN_GOOD_NO_SLOT;  	}  	/* BLX(1) : 1111 101x xxxx xxxx xxxx xxxx xxxx xxxx : */ @@ -967,41 +989,22 @@ space_1111(kprobe_opcode_t insn, struct arch_specific_insn *asi)  		return INSN_GOOD_NO_SLOT;  	} -	/* SETEND : 1111 0001 0000 0001 xxxx xxxx 0000 xxxx */ -	/* CDP2   : 1111 1110 xxxx xxxx xxxx xxxx xxx0 xxxx */ -	if ((insn & 0xffff00f0) == 0xf1010000 || -	    (insn & 0xff000010) == 0xfe000000) { -		asi->insn[0] = insn; -		asi->insn_handler = emulate_none; -		return INSN_GOOD; -	} +	/* CPS   : 1111 0001 0000 xxx0 xxxx xxxx xx0x xxxx */ +	/* SETEND: 1111 0001 0000 0001 xxxx xxxx 0000 xxxx */ + +	/* SRS   : 1111 100x x1x0 xxxx xxxx xxxx xxxx xxxx */ +	/* RFE   : 1111 100x x0x1 xxxx xxxx xxxx xxxx xxxx */ +	/* Coprocessor instructions... */  	/* MCRR2 : 1111 1100 0100 xxxx xxxx xxxx xxxx xxxx : (Rd != Rn) */  	/* MRRC2 : 1111 1100 0101 xxxx xxxx xxxx xxxx xxxx : (Rd != Rn) */ -	if ((insn & 0xffe00000) == 0xfc400000) { -		insn &= 0xfff00fff;	/* Rn = r0 */ -		insn |= 0x00001000;	/* Rd = r1 */ -		asi->insn[0] = insn; -		asi->insn_handler = -			(insn & (1 << 20)) ? emulate_mrrc : emulate_mcrr; -		return INSN_GOOD; -	} +	/* LDC2  : 1111 110x xxx1 xxxx xxxx xxxx xxxx xxxx */ +	/* STC2  : 1111 110x xxx0 xxxx xxxx xxxx xxxx xxxx */ +	/* CDP2  : 1111 1110 xxxx xxxx xxxx xxxx xxx0 xxxx */ +	/* MCR2  : 1111 1110 xxx0 xxxx xxxx xxxx xxx1 xxxx */ +	/* MRC2  : 1111 1110 xxx1 xxxx xxxx xxxx xxx1 xxxx */ -	/* LDC2 : 1111 110x xxx1 xxxx xxxx xxxx xxxx xxxx */ -	/* STC2 : 1111 110x xxx0 xxxx xxxx xxxx xxxx xxxx */ -	if ((insn & 0xfe000000) == 0xfc000000) { -		insn &= 0xfff0ffff;      /* Rn = r0 */ -		asi->insn[0] = insn; -		asi->insn_handler = emulate_ldcstc; -		return INSN_GOOD; -	} - -	/* MCR2 : 1111 1110 xxx0 xxxx xxxx xxxx xxx1 xxxx */ -	/* MRC2 : 1111 1110 xxx1 xxxx xxxx xxxx xxx1 xxxx */ -	insn &= 0xffff0fff;	/* Rd = r0 */ -	asi->insn[0]      = insn; -	asi->insn_handler = (insn & (1 << 20)) ? emulate_rd12 : emulate_ird12; -	return INSN_GOOD; +	return INSN_REJECTED;  }  static enum kprobe_insn __kprobes @@ -1010,19 +1013,18 @@ space_cccc_000x(kprobe_opcode_t insn, struct arch_specific_insn *asi)  	/* cccc 0001 0xx0 xxxx xxxx xxxx xxxx xxx0 xxxx */  	if ((insn & 0x0f900010) == 0x01000000) { -		/* BXJ  : cccc 0001 0010 xxxx xxxx xxxx 0010 xxxx */ -		/* MSR  : cccc 0001 0x10 xxxx xxxx xxxx 0000 xxxx */ -		if ((insn & 0x0ff000f0) == 0x01200020 || -		    (insn & 0x0fb000f0) == 0x01200000) -			return INSN_REJECTED; - -		/* MRS : cccc 0001 0x00 xxxx xxxx xxxx 0000 xxxx */ -		if ((insn & 0x0fb00010) == 0x01000000) -			return prep_emulate_rd12(insn, asi); +		/* MRS cpsr : cccc 0001 0000 xxxx xxxx xxxx 0000 xxxx */ +		if ((insn & 0x0ff000f0) == 0x01000000) { +			if (is_r15(insn, 12)) +				return INSN_REJECTED;	/* Rd is PC */ +			asi->insn_handler = simulate_mrs; +			return INSN_GOOD_NO_SLOT; +		}  		/* SMLALxy : cccc 0001 0100 xxxx xxxx xxxx 1xx0 xxxx */  		if ((insn & 0x0ff00090) == 0x01400080) -			return prep_emulate_rdhi16rdlo12rs8rm0_wflags(insn, asi); +			return prep_emulate_rdhi16rdlo12rs8rm0_wflags(insn, +									asi);  		/* SMULWy : cccc 0001 0010 xxxx xxxx xxxx 1x10 xxxx */  		/* SMULxy : cccc 0001 0110 xxxx xxxx xxxx 1xx0 xxxx */ @@ -1031,24 +1033,29 @@ space_cccc_000x(kprobe_opcode_t insn, struct arch_specific_insn *asi)  			return prep_emulate_rd16rs8rm0_wflags(insn, asi);  		/* SMLAxy : cccc 0001 0000 xxxx xxxx xxxx 1xx0 xxxx : Q */ -		/* SMLAWy : cccc 0001 0010 xxxx xxxx xxxx 0x00 xxxx : Q */ -		return prep_emulate_rd16rn12rs8rm0_wflags(insn, asi); +		/* SMLAWy : cccc 0001 0010 xxxx xxxx xxxx 1x00 xxxx : Q */ +		if ((insn & 0x0ff00090) == 0x01000080 || +		    (insn & 0x0ff000b0) == 0x01200080) +			return prep_emulate_rd16rn12rs8rm0_wflags(insn, asi); +		/* BXJ      : cccc 0001 0010 xxxx xxxx xxxx 0010 xxxx */ +		/* MSR      : cccc 0001 0x10 xxxx xxxx xxxx 0000 xxxx */ +		/* MRS spsr : cccc 0001 0100 xxxx xxxx xxxx 0000 xxxx */ + +		/* Other instruction encodings aren't yet defined */ +		return INSN_REJECTED;  	}  	/* cccc 0001 0xx0 xxxx xxxx xxxx xxxx 0xx1 xxxx */  	else if ((insn & 0x0f900090) == 0x01000010) { -		/* BKPT : 1110 0001 0010 xxxx xxxx xxxx 0111 xxxx */ -		if ((insn & 0xfff000f0) == 0xe1200070) -			return INSN_REJECTED; -  		/* BLX(2) : cccc 0001 0010 xxxx xxxx xxxx 0011 xxxx */  		/* BX     : cccc 0001 0010 xxxx xxxx xxxx 0001 xxxx */  		if ((insn & 0x0ff000d0) == 0x01200010) { -			asi->insn[0] = truecc_insn(insn); +			if ((insn & 0x0ff000ff) == 0x0120003f) +				return INSN_REJECTED; /* BLX pc */  			asi->insn_handler = simulate_blx2bx; -			return INSN_GOOD; +			return INSN_GOOD_NO_SLOT;  		}  		/* CLZ : cccc 0001 0110 xxxx xxxx xxxx 0001 xxxx */ @@ -1059,17 +1066,27 @@ space_cccc_000x(kprobe_opcode_t insn, struct arch_specific_insn *asi)  		/* QSUB    : cccc 0001 0010 xxxx xxxx xxxx 0101 xxxx :Q */  		/* QDADD   : cccc 0001 0100 xxxx xxxx xxxx 0101 xxxx :Q */  		/* QDSUB   : cccc 0001 0110 xxxx xxxx xxxx 0101 xxxx :Q */ -		return prep_emulate_rd12rn16rm0_wflags(insn, asi); +		if ((insn & 0x0f9000f0) == 0x01000050) +			return prep_emulate_rd12rn16rm0_wflags(insn, asi); + +		/* BKPT : 1110 0001 0010 xxxx xxxx xxxx 0111 xxxx */ +		/* SMC  : cccc 0001 0110 xxxx xxxx xxxx 0111 xxxx */ + +		/* Other instruction encodings aren't yet defined */ +		return INSN_REJECTED;  	}  	/* cccc 0000 xxxx xxxx xxxx xxxx xxxx 1001 xxxx */ -	else if ((insn & 0x0f000090) == 0x00000090) { +	else if ((insn & 0x0f0000f0) == 0x00000090) {  		/* MUL    : cccc 0000 0000 xxxx xxxx xxxx 1001 xxxx :   */  		/* MULS   : cccc 0000 0001 xxxx xxxx xxxx 1001 xxxx :cc */  		/* MLA    : cccc 0000 0010 xxxx xxxx xxxx 1001 xxxx :   */  		/* MLAS   : cccc 0000 0011 xxxx xxxx xxxx 1001 xxxx :cc */  		/* UMAAL  : cccc 0000 0100 xxxx xxxx xxxx 1001 xxxx :   */ +		/* undef  : cccc 0000 0101 xxxx xxxx xxxx 1001 xxxx :   */ +		/* MLS    : cccc 0000 0110 xxxx xxxx xxxx 1001 xxxx :   */ +		/* undef  : cccc 0000 0111 xxxx xxxx xxxx 1001 xxxx :   */  		/* UMULL  : cccc 0000 1000 xxxx xxxx xxxx 1001 xxxx :   */  		/* UMULLS : cccc 0000 1001 xxxx xxxx xxxx 1001 xxxx :cc */  		/* UMLAL  : cccc 0000 1010 xxxx xxxx xxxx 1001 xxxx :   */ @@ -1078,13 +1095,15 @@ space_cccc_000x(kprobe_opcode_t insn, struct arch_specific_insn *asi)  		/* SMULLS : cccc 0000 1101 xxxx xxxx xxxx 1001 xxxx :cc */  		/* SMLAL  : cccc 0000 1110 xxxx xxxx xxxx 1001 xxxx :   */  		/* SMLALS : cccc 0000 1111 xxxx xxxx xxxx 1001 xxxx :cc */ -		if ((insn & 0x0fe000f0) == 0x00000090) { -		       return prep_emulate_rd16rs8rm0_wflags(insn, asi); -		} else if  ((insn & 0x0fe000f0) == 0x00200090) { -		       return prep_emulate_rd16rn12rs8rm0_wflags(insn, asi); -		} else { -		       return prep_emulate_rdhi16rdlo12rs8rm0_wflags(insn, asi); -		} +		if ((insn & 0x00d00000) == 0x00500000) +			return INSN_REJECTED; +		else if ((insn & 0x00e00000) == 0x00000000) +			return prep_emulate_rd16rs8rm0_wflags(insn, asi); +		else if ((insn & 0x00a00000) == 0x00200000) +			return prep_emulate_rd16rn12rs8rm0_wflags(insn, asi); +		else +			return prep_emulate_rdhi16rdlo12rs8rm0_wflags(insn, +									asi);  	}  	/* cccc 000x xxxx xxxx xxxx xxxx xxxx 1xx1 xxxx */ @@ -1092,23 +1111,45 @@ space_cccc_000x(kprobe_opcode_t insn, struct arch_specific_insn *asi)  		/* SWP   : cccc 0001 0000 xxxx xxxx xxxx 1001 xxxx */  		/* SWPB  : cccc 0001 0100 xxxx xxxx xxxx 1001 xxxx */ -		/* LDRD  : cccc 000x xxx0 xxxx xxxx xxxx 1101 xxxx */ -		/* STRD  : cccc 000x xxx0 xxxx xxxx xxxx 1111 xxxx */ +		/* ???   : cccc 0001 0x01 xxxx xxxx xxxx 1001 xxxx */ +		/* ???   : cccc 0001 0x10 xxxx xxxx xxxx 1001 xxxx */ +		/* ???   : cccc 0001 0x11 xxxx xxxx xxxx 1001 xxxx */  		/* STREX : cccc 0001 1000 xxxx xxxx xxxx 1001 xxxx */  		/* LDREX : cccc 0001 1001 xxxx xxxx xxxx 1001 xxxx */ +		/* STREXD: cccc 0001 1010 xxxx xxxx xxxx 1001 xxxx */ +		/* LDREXD: cccc 0001 1011 xxxx xxxx xxxx 1001 xxxx */ +		/* STREXB: cccc 0001 1100 xxxx xxxx xxxx 1001 xxxx */ +		/* LDREXB: cccc 0001 1101 xxxx xxxx xxxx 1001 xxxx */ +		/* STREXH: cccc 0001 1110 xxxx xxxx xxxx 1001 xxxx */ +		/* LDREXH: cccc 0001 1111 xxxx xxxx xxxx 1001 xxxx */ + +		/* LDRD  : cccc 000x xxx0 xxxx xxxx xxxx 1101 xxxx */ +		/* STRD  : cccc 000x xxx0 xxxx xxxx xxxx 1111 xxxx */  		/* LDRH  : cccc 000x xxx1 xxxx xxxx xxxx 1011 xxxx */  		/* STRH  : cccc 000x xxx0 xxxx xxxx xxxx 1011 xxxx */  		/* LDRSB : cccc 000x xxx1 xxxx xxxx xxxx 1101 xxxx */  		/* LDRSH : cccc 000x xxx1 xxxx xxxx xxxx 1111 xxxx */ -		if ((insn & 0x0fb000f0) == 0x01000090) { -			/* SWP/SWPB */ -			return prep_emulate_rd12rn16rm0_wflags(insn, asi); +		if ((insn & 0x0f0000f0) == 0x01000090) { +			if ((insn & 0x0fb000f0) == 0x01000090) { +				/* SWP/SWPB */ +				return prep_emulate_rd12rn16rm0_wflags(insn, +									asi); +			} else { +				/* STREX/LDREX variants and unallocaed space */ +				return INSN_REJECTED; +			} +  		} else if ((insn & 0x0e1000d0) == 0x00000d0) {  			/* STRD/LDRD */ +			if ((insn & 0x0000e000) == 0x0000e000) +				return INSN_REJECTED;	/* Rd is LR or PC */ +			if (is_writeback(insn) && is_r15(insn, 16)) +				return INSN_REJECTED;	/* Writeback to PC */ +  			insn &= 0xfff00fff;  			insn |= 0x00002000;	/* Rn = r0, Rd = r2 */ -			if (insn & (1 << 22)) { -				/* I bit */ +			if (!(insn & (1 << 22))) { +				/* Register index */  				insn &= ~0xf;  				insn |= 1;	/* Rm = r1 */  			} @@ -1118,6 +1159,9 @@ space_cccc_000x(kprobe_opcode_t insn, struct arch_specific_insn *asi)  			return INSN_GOOD;  		} +		/* LDRH/STRH/LDRSB/LDRSH */ +		if (is_r15(insn, 12)) +			return INSN_REJECTED;	/* Rd is PC */  		return prep_emulate_ldr_str(insn, asi);  	} @@ -1125,7 +1169,7 @@ space_cccc_000x(kprobe_opcode_t insn, struct arch_specific_insn *asi)  	/*  	 * ALU op with S bit and Rd == 15 : -	 * 	cccc 000x xxx1 xxxx 1111 xxxx xxxx xxxx +	 *	cccc 000x xxx1 xxxx 1111 xxxx xxxx xxxx  	 */  	if ((insn & 0x0e10f000) == 0x0010f000)  		return INSN_REJECTED; @@ -1154,22 +1198,61 @@ space_cccc_000x(kprobe_opcode_t insn, struct arch_specific_insn *asi)  		insn |= 0x00000200;     /* Rs = r2 */  	}  	asi->insn[0] = insn; -	asi->insn_handler = (insn & (1 << 20)) ?  /* S-bit */ + +	if ((insn & 0x0f900000) == 0x01100000) { +		/* +		 * TST : cccc 0001 0001 xxxx xxxx xxxx xxxx xxxx +		 * TEQ : cccc 0001 0011 xxxx xxxx xxxx xxxx xxxx +		 * CMP : cccc 0001 0101 xxxx xxxx xxxx xxxx xxxx +		 * CMN : cccc 0001 0111 xxxx xxxx xxxx xxxx xxxx +		 */ +		asi->insn_handler = emulate_alu_tests; +	} else { +		/* ALU ops which write to Rd */ +		asi->insn_handler = (insn & (1 << 20)) ?  /* S-bit */  				emulate_alu_rwflags : emulate_alu_rflags; +	}  	return INSN_GOOD;  }  static enum kprobe_insn __kprobes  space_cccc_001x(kprobe_opcode_t insn, struct arch_specific_insn *asi)  { +	/* MOVW  : cccc 0011 0000 xxxx xxxx xxxx xxxx xxxx */ +	/* MOVT  : cccc 0011 0100 xxxx xxxx xxxx xxxx xxxx */ +	if ((insn & 0x0fb00000) == 0x03000000) +		return prep_emulate_rd12_modify(insn, asi); + +	/* hints : cccc 0011 0010 0000 xxxx xxxx xxxx xxxx */ +	if ((insn & 0x0fff0000) == 0x03200000) { +		unsigned op2 = insn & 0x000000ff; +		if (op2 == 0x01 || op2 == 0x04) { +			/* YIELD : cccc 0011 0010 0000 xxxx xxxx 0000 0001 */ +			/* SEV   : cccc 0011 0010 0000 xxxx xxxx 0000 0100 */ +			asi->insn[0] = insn; +			asi->insn_handler = emulate_none; +			return INSN_GOOD; +		} else if (op2 <= 0x03) { +			/* NOP   : cccc 0011 0010 0000 xxxx xxxx 0000 0000 */ +			/* WFE   : cccc 0011 0010 0000 xxxx xxxx 0000 0010 */ +			/* WFI   : cccc 0011 0010 0000 xxxx xxxx 0000 0011 */ +			/* +			 * We make WFE and WFI true NOPs to avoid stalls due +			 * to missing events whilst processing the probe. +			 */ +			asi->insn_handler = emulate_nop; +			return INSN_GOOD_NO_SLOT; +		} +		/* For DBG and unallocated hints it's safest to reject them */ +		return INSN_REJECTED; +	} +  	/*  	 * MSR   : cccc 0011 0x10 xxxx xxxx xxxx xxxx xxxx -	 * Undef : cccc 0011 0100 xxxx xxxx xxxx xxxx xxxx  	 * ALU op with S bit and Rd == 15 :  	 *	   cccc 001x xxx1 xxxx 1111 xxxx xxxx xxxx  	 */  	if ((insn & 0x0fb00000) == 0x03200000 ||	/* MSR */ -	    (insn & 0x0ff00000) == 0x03400000 ||	/* Undef */  	    (insn & 0x0e10f000) == 0x0210f000)		/* ALU s-bit, R15  */  		return INSN_REJECTED; @@ -1180,10 +1263,22 @@ space_cccc_001x(kprobe_opcode_t insn, struct arch_specific_insn *asi)  	 * *S (bit 20) updates condition codes  	 * ADC/SBC/RSC reads the C flag  	 */ -	insn &= 0xffff0fff;	/* Rd = r0 */ +	insn &= 0xfff00fff;	/* Rn = r0 and Rd = r0 */  	asi->insn[0] = insn; -	asi->insn_handler = (insn & (1 << 20)) ?  /* S-bit */ + +	if ((insn & 0x0f900000) == 0x03100000) { +		/* +		 * TST : cccc 0011 0001 xxxx xxxx xxxx xxxx xxxx +		 * TEQ : cccc 0011 0011 xxxx xxxx xxxx xxxx xxxx +		 * CMP : cccc 0011 0101 xxxx xxxx xxxx xxxx xxxx +		 * CMN : cccc 0011 0111 xxxx xxxx xxxx xxxx xxxx +		 */ +		asi->insn_handler = emulate_alu_tests_imm; +	} else { +		/* ALU ops which write to Rd */ +		asi->insn_handler = (insn & (1 << 20)) ?  /* S-bit */  			emulate_alu_imm_rwflags : emulate_alu_imm_rflags; +	}  	return INSN_GOOD;  } @@ -1192,6 +1287,8 @@ space_cccc_0110__1(kprobe_opcode_t insn, struct arch_specific_insn *asi)  {  	/* SEL : cccc 0110 1000 xxxx xxxx xxxx 1011 xxxx GE: !!! */  	if ((insn & 0x0ff000f0) == 0x068000b0) { +		if (is_r15(insn, 12)) +			return INSN_REJECTED;	/* Rd is PC */  		insn &= 0xfff00ff0;	/* Rd = r0, Rn = r0 */  		insn |= 0x00000001;	/* Rm = r1 */  		asi->insn[0] = insn; @@ -1205,6 +1302,8 @@ space_cccc_0110__1(kprobe_opcode_t insn, struct arch_specific_insn *asi)  	/* USAT16 : cccc 0110 1110 xxxx xxxx xxxx 0011 xxxx :Q */  	if ((insn & 0x0fa00030) == 0x06a00010 ||  	    (insn & 0x0fb000f0) == 0x06a00030) { +		if (is_r15(insn, 12)) +			return INSN_REJECTED;	/* Rd is PC */  		insn &= 0xffff0ff0;	/* Rd = r0, Rm = r0 */  		asi->insn[0] = insn;  		asi->insn_handler = emulate_sat; @@ -1213,57 +1312,101 @@ space_cccc_0110__1(kprobe_opcode_t insn, struct arch_specific_insn *asi)  	/* REV    : cccc 0110 1011 xxxx xxxx xxxx 0011 xxxx */  	/* REV16  : cccc 0110 1011 xxxx xxxx xxxx 1011 xxxx */ +	/* RBIT   : cccc 0110 1111 xxxx xxxx xxxx 0011 xxxx */  	/* REVSH  : cccc 0110 1111 xxxx xxxx xxxx 1011 xxxx */  	if ((insn & 0x0ff00070) == 0x06b00030 || -	    (insn & 0x0ff000f0) == 0x06f000b0) +	    (insn & 0x0ff00070) == 0x06f00030)  		return prep_emulate_rd12rm0(insn, asi); +	/* ???       : cccc 0110 0000 xxxx xxxx xxxx xxx1 xxxx :   */  	/* SADD16    : cccc 0110 0001 xxxx xxxx xxxx 0001 xxxx :GE */  	/* SADDSUBX  : cccc 0110 0001 xxxx xxxx xxxx 0011 xxxx :GE */  	/* SSUBADDX  : cccc 0110 0001 xxxx xxxx xxxx 0101 xxxx :GE */  	/* SSUB16    : cccc 0110 0001 xxxx xxxx xxxx 0111 xxxx :GE */  	/* SADD8     : cccc 0110 0001 xxxx xxxx xxxx 1001 xxxx :GE */ +	/* ???       : cccc 0110 0001 xxxx xxxx xxxx 1011 xxxx :   */ +	/* ???       : cccc 0110 0001 xxxx xxxx xxxx 1101 xxxx :   */  	/* SSUB8     : cccc 0110 0001 xxxx xxxx xxxx 1111 xxxx :GE */  	/* QADD16    : cccc 0110 0010 xxxx xxxx xxxx 0001 xxxx :   */  	/* QADDSUBX  : cccc 0110 0010 xxxx xxxx xxxx 0011 xxxx :   */  	/* QSUBADDX  : cccc 0110 0010 xxxx xxxx xxxx 0101 xxxx :   */  	/* QSUB16    : cccc 0110 0010 xxxx xxxx xxxx 0111 xxxx :   */  	/* QADD8     : cccc 0110 0010 xxxx xxxx xxxx 1001 xxxx :   */ +	/* ???       : cccc 0110 0010 xxxx xxxx xxxx 1011 xxxx :   */ +	/* ???       : cccc 0110 0010 xxxx xxxx xxxx 1101 xxxx :   */  	/* QSUB8     : cccc 0110 0010 xxxx xxxx xxxx 1111 xxxx :   */  	/* SHADD16   : cccc 0110 0011 xxxx xxxx xxxx 0001 xxxx :   */  	/* SHADDSUBX : cccc 0110 0011 xxxx xxxx xxxx 0011 xxxx :   */  	/* SHSUBADDX : cccc 0110 0011 xxxx xxxx xxxx 0101 xxxx :   */  	/* SHSUB16   : cccc 0110 0011 xxxx xxxx xxxx 0111 xxxx :   */  	/* SHADD8    : cccc 0110 0011 xxxx xxxx xxxx 1001 xxxx :   */ +	/* ???       : cccc 0110 0011 xxxx xxxx xxxx 1011 xxxx :   */ +	/* ???       : cccc 0110 0011 xxxx xxxx xxxx 1101 xxxx :   */  	/* SHSUB8    : cccc 0110 0011 xxxx xxxx xxxx 1111 xxxx :   */ +	/* ???       : cccc 0110 0100 xxxx xxxx xxxx xxx1 xxxx :   */  	/* UADD16    : cccc 0110 0101 xxxx xxxx xxxx 0001 xxxx :GE */  	/* UADDSUBX  : cccc 0110 0101 xxxx xxxx xxxx 0011 xxxx :GE */  	/* USUBADDX  : cccc 0110 0101 xxxx xxxx xxxx 0101 xxxx :GE */  	/* USUB16    : cccc 0110 0101 xxxx xxxx xxxx 0111 xxxx :GE */  	/* UADD8     : cccc 0110 0101 xxxx xxxx xxxx 1001 xxxx :GE */ +	/* ???       : cccc 0110 0101 xxxx xxxx xxxx 1011 xxxx :   */ +	/* ???       : cccc 0110 0101 xxxx xxxx xxxx 1101 xxxx :   */  	/* USUB8     : cccc 0110 0101 xxxx xxxx xxxx 1111 xxxx :GE */  	/* UQADD16   : cccc 0110 0110 xxxx xxxx xxxx 0001 xxxx :   */  	/* UQADDSUBX : cccc 0110 0110 xxxx xxxx xxxx 0011 xxxx :   */  	/* UQSUBADDX : cccc 0110 0110 xxxx xxxx xxxx 0101 xxxx :   */  	/* UQSUB16   : cccc 0110 0110 xxxx xxxx xxxx 0111 xxxx :   */  	/* UQADD8    : cccc 0110 0110 xxxx xxxx xxxx 1001 xxxx :   */ +	/* ???       : cccc 0110 0110 xxxx xxxx xxxx 1011 xxxx :   */ +	/* ???       : cccc 0110 0110 xxxx xxxx xxxx 1101 xxxx :   */  	/* UQSUB8    : cccc 0110 0110 xxxx xxxx xxxx 1111 xxxx :   */  	/* UHADD16   : cccc 0110 0111 xxxx xxxx xxxx 0001 xxxx :   */  	/* UHADDSUBX : cccc 0110 0111 xxxx xxxx xxxx 0011 xxxx :   */  	/* UHSUBADDX : cccc 0110 0111 xxxx xxxx xxxx 0101 xxxx :   */  	/* UHSUB16   : cccc 0110 0111 xxxx xxxx xxxx 0111 xxxx :   */  	/* UHADD8    : cccc 0110 0111 xxxx xxxx xxxx 1001 xxxx :   */ +	/* ???       : cccc 0110 0111 xxxx xxxx xxxx 1011 xxxx :   */ +	/* ???       : cccc 0110 0111 xxxx xxxx xxxx 1101 xxxx :   */  	/* UHSUB8    : cccc 0110 0111 xxxx xxxx xxxx 1111 xxxx :   */ +	if ((insn & 0x0f800010) == 0x06000010) { +		if ((insn & 0x00300000) == 0x00000000 || +		    (insn & 0x000000e0) == 0x000000a0 || +		    (insn & 0x000000e0) == 0x000000c0) +			return INSN_REJECTED;	/* Unallocated space */ +		return prep_emulate_rd12rn16rm0_wflags(insn, asi); +	} +  	/* PKHBT     : cccc 0110 1000 xxxx xxxx xxxx x001 xxxx :   */  	/* PKHTB     : cccc 0110 1000 xxxx xxxx xxxx x101 xxxx :   */ +	if ((insn & 0x0ff00030) == 0x06800010) +		return prep_emulate_rd12rn16rm0_wflags(insn, asi); +  	/* SXTAB16   : cccc 0110 1000 xxxx xxxx xxxx 0111 xxxx :   */ -	/* SXTB      : cccc 0110 1010 xxxx xxxx xxxx 0111 xxxx :   */ +	/* SXTB16    : cccc 0110 1000 1111 xxxx xxxx 0111 xxxx :   */ +	/* ???       : cccc 0110 1001 xxxx xxxx xxxx 0111 xxxx :   */  	/* SXTAB     : cccc 0110 1010 xxxx xxxx xxxx 0111 xxxx :   */ +	/* SXTB      : cccc 0110 1010 1111 xxxx xxxx 0111 xxxx :   */  	/* SXTAH     : cccc 0110 1011 xxxx xxxx xxxx 0111 xxxx :   */ +	/* SXTH      : cccc 0110 1011 1111 xxxx xxxx 0111 xxxx :   */  	/* UXTAB16   : cccc 0110 1100 xxxx xxxx xxxx 0111 xxxx :   */ +	/* UXTB16    : cccc 0110 1100 1111 xxxx xxxx 0111 xxxx :   */ +	/* ???       : cccc 0110 1101 xxxx xxxx xxxx 0111 xxxx :   */  	/* UXTAB     : cccc 0110 1110 xxxx xxxx xxxx 0111 xxxx :   */ +	/* UXTB      : cccc 0110 1110 1111 xxxx xxxx 0111 xxxx :   */  	/* UXTAH     : cccc 0110 1111 xxxx xxxx xxxx 0111 xxxx :   */ -	return prep_emulate_rd12rn16rm0_wflags(insn, asi); +	/* UXTH      : cccc 0110 1111 1111 xxxx xxxx 0111 xxxx :   */ +	if ((insn & 0x0f8000f0) == 0x06800070) { +		if ((insn & 0x00300000) == 0x00100000) +			return INSN_REJECTED;	/* Unallocated space */ + +		if ((insn & 0x000f0000) == 0x000f0000) +			return prep_emulate_rd12rm0(insn, asi); +		else +			return prep_emulate_rd12rn16rm0_wflags(insn, asi); +	} + +	/* Other instruction encodings aren't yet defined */ +	return INSN_REJECTED;  }  static enum kprobe_insn __kprobes @@ -1273,29 +1416,49 @@ space_cccc_0111__1(kprobe_opcode_t insn, struct arch_specific_insn *asi)  	if ((insn & 0x0ff000f0) == 0x03f000f0)  		return INSN_REJECTED; -	/* USADA8 : cccc 0111 1000 xxxx xxxx xxxx 0001 xxxx */ -	/* USAD8  : cccc 0111 1000 xxxx 1111 xxxx 0001 xxxx */ -	if ((insn & 0x0ff000f0) == 0x07800010) -		 return prep_emulate_rd16rn12rs8rm0_wflags(insn, asi); -  	/* SMLALD : cccc 0111 0100 xxxx xxxx xxxx 00x1 xxxx */  	/* SMLSLD : cccc 0111 0100 xxxx xxxx xxxx 01x1 xxxx */  	if ((insn & 0x0ff00090) == 0x07400010)  		return prep_emulate_rdhi16rdlo12rs8rm0_wflags(insn, asi);  	/* SMLAD  : cccc 0111 0000 xxxx xxxx xxxx 00x1 xxxx :Q */ +	/* SMUAD  : cccc 0111 0000 xxxx 1111 xxxx 00x1 xxxx :Q */  	/* SMLSD  : cccc 0111 0000 xxxx xxxx xxxx 01x1 xxxx :Q */ +	/* SMUSD  : cccc 0111 0000 xxxx 1111 xxxx 01x1 xxxx :  */  	/* SMMLA  : cccc 0111 0101 xxxx xxxx xxxx 00x1 xxxx :  */ -	/* SMMLS  : cccc 0111 0101 xxxx xxxx xxxx 11x1 xxxx :  */ +	/* SMMUL  : cccc 0111 0101 xxxx 1111 xxxx 00x1 xxxx :  */ +	/* USADA8 : cccc 0111 1000 xxxx xxxx xxxx 0001 xxxx :  */ +	/* USAD8  : cccc 0111 1000 xxxx 1111 xxxx 0001 xxxx :  */  	if ((insn & 0x0ff00090) == 0x07000010 ||  	    (insn & 0x0ff000d0) == 0x07500010 || -	    (insn & 0x0ff000d0) == 0x075000d0) +	    (insn & 0x0ff000f0) == 0x07800010) { + +		if ((insn & 0x0000f000) == 0x0000f000) +			return prep_emulate_rd16rs8rm0_wflags(insn, asi); +		else +			return prep_emulate_rd16rn12rs8rm0_wflags(insn, asi); +	} + +	/* SMMLS  : cccc 0111 0101 xxxx xxxx xxxx 11x1 xxxx :  */ +	if ((insn & 0x0ff000d0) == 0x075000d0)  		return prep_emulate_rd16rn12rs8rm0_wflags(insn, asi); -	/* SMUSD  : cccc 0111 0000 xxxx xxxx xxxx 01x1 xxxx :  */ -	/* SMUAD  : cccc 0111 0000 xxxx 1111 xxxx 00x1 xxxx :Q */ -	/* SMMUL  : cccc 0111 0101 xxxx 1111 xxxx 00x1 xxxx :  */ -	return prep_emulate_rd16rs8rm0_wflags(insn, asi); +	/* SBFX   : cccc 0111 101x xxxx xxxx xxxx x101 xxxx :  */ +	/* UBFX   : cccc 0111 111x xxxx xxxx xxxx x101 xxxx :  */ +	if ((insn & 0x0fa00070) == 0x07a00050) +		return prep_emulate_rd12rm0(insn, asi); + +	/* BFI    : cccc 0111 110x xxxx xxxx xxxx x001 xxxx :  */ +	/* BFC    : cccc 0111 110x xxxx xxxx xxxx x001 1111 :  */ +	if ((insn & 0x0fe00070) == 0x07c00010) { + +		if ((insn & 0x0000000f) == 0x0000000f) +			return prep_emulate_rd12_modify(insn, asi); +		else +			return prep_emulate_rd12rn0_modify(insn, asi); +	} + +	return INSN_REJECTED;  }  static enum kprobe_insn __kprobes @@ -1309,6 +1472,10 @@ space_cccc_01xx(kprobe_opcode_t insn, struct arch_specific_insn *asi)  	/* STRB  : cccc 01xx x1x0 xxxx xxxx xxxx xxxx xxxx */  	/* STRBT : cccc 01x0 x110 xxxx xxxx xxxx xxxx xxxx */  	/* STRT  : cccc 01x0 x010 xxxx xxxx xxxx xxxx xxxx */ + +	if ((insn & 0x00500000) == 0x00500000 && is_r15(insn, 12)) +		return INSN_REJECTED;	/* LDRB into PC */ +  	return prep_emulate_ldr_str(insn, asi);  } @@ -1323,10 +1490,9 @@ space_cccc_100x(kprobe_opcode_t insn, struct arch_specific_insn *asi)  	/* LDM(1) : cccc 100x x0x1 xxxx xxxx xxxx xxxx xxxx */  	/* STM(1) : cccc 100x x0x0 xxxx xxxx xxxx xxxx xxxx */ -	asi->insn[0] = truecc_insn(insn);  	asi->insn_handler = ((insn & 0x108000) == 0x008000) ? /* STM & R15 */  				simulate_stm1_pc : simulate_ldm1stm1; -	return INSN_GOOD; +	return INSN_GOOD_NO_SLOT;  }  static enum kprobe_insn __kprobes @@ -1334,58 +1500,117 @@ space_cccc_101x(kprobe_opcode_t insn, struct arch_specific_insn *asi)  {  	/* B  : cccc 1010 xxxx xxxx xxxx xxxx xxxx xxxx */  	/* BL : cccc 1011 xxxx xxxx xxxx xxxx xxxx xxxx */ -	asi->insn[0] = truecc_insn(insn);  	asi->insn_handler = simulate_bbl; -	return INSN_GOOD; +	return INSN_GOOD_NO_SLOT;  }  static enum kprobe_insn __kprobes -space_cccc_1100_010x(kprobe_opcode_t insn, struct arch_specific_insn *asi) +space_cccc_11xx(kprobe_opcode_t insn, struct arch_specific_insn *asi)  { +	/* Coprocessor instructions... */  	/* MCRR : cccc 1100 0100 xxxx xxxx xxxx xxxx xxxx : (Rd!=Rn) */  	/* MRRC : cccc 1100 0101 xxxx xxxx xxxx xxxx xxxx : (Rd!=Rn) */ -	insn &= 0xfff00fff; -	insn |= 0x00001000;	/* Rn = r0, Rd = r1 */ -	asi->insn[0] = insn; -	asi->insn_handler = (insn & (1 << 20)) ? emulate_mrrc : emulate_mcrr; -	return INSN_GOOD; +	/* LDC  : cccc 110x xxx1 xxxx xxxx xxxx xxxx xxxx */ +	/* STC  : cccc 110x xxx0 xxxx xxxx xxxx xxxx xxxx */ +	/* CDP  : cccc 1110 xxxx xxxx xxxx xxxx xxx0 xxxx */ +	/* MCR  : cccc 1110 xxx0 xxxx xxxx xxxx xxx1 xxxx */ +	/* MRC  : cccc 1110 xxx1 xxxx xxxx xxxx xxx1 xxxx */ + +	/* SVC  : cccc 1111 xxxx xxxx xxxx xxxx xxxx xxxx */ + +	return INSN_REJECTED;  } -static enum kprobe_insn __kprobes -space_cccc_110x(kprobe_opcode_t insn, struct arch_specific_insn *asi) +static unsigned long __kprobes __check_eq(unsigned long cpsr)  { -	/* LDC : cccc 110x xxx1 xxxx xxxx xxxx xxxx xxxx */ -	/* STC : cccc 110x xxx0 xxxx xxxx xxxx xxxx xxxx */ -	insn &= 0xfff0ffff;	/* Rn = r0 */ -	asi->insn[0] = insn; -	asi->insn_handler = emulate_ldcstc; -	return INSN_GOOD; +	return cpsr & PSR_Z_BIT;  } -static enum kprobe_insn __kprobes -space_cccc_111x(kprobe_opcode_t insn, struct arch_specific_insn *asi) +static unsigned long __kprobes __check_ne(unsigned long cpsr)  { -	/* BKPT : 1110 0001 0010 xxxx xxxx xxxx 0111 xxxx */ -	/* SWI  : cccc 1111 xxxx xxxx xxxx xxxx xxxx xxxx */ -	if ((insn & 0xfff000f0) == 0xe1200070 || -	    (insn & 0x0f000000) == 0x0f000000) -		return INSN_REJECTED; +	return (~cpsr) & PSR_Z_BIT; +} -	/* CDP : cccc 1110 xxxx xxxx xxxx xxxx xxx0 xxxx */ -	if ((insn & 0x0f000010) == 0x0e000000) { -		asi->insn[0] = insn; -		asi->insn_handler = emulate_none; -		return INSN_GOOD; -	} +static unsigned long __kprobes __check_cs(unsigned long cpsr) +{ +	return cpsr & PSR_C_BIT; +} -	/* MCR : cccc 1110 xxx0 xxxx xxxx xxxx xxx1 xxxx */ -	/* MRC : cccc 1110 xxx1 xxxx xxxx xxxx xxx1 xxxx */ -	insn &= 0xffff0fff;	/* Rd = r0 */ -	asi->insn[0] = insn; -	asi->insn_handler = (insn & (1 << 20)) ? emulate_rd12 : emulate_ird12; -	return INSN_GOOD; +static unsigned long __kprobes __check_cc(unsigned long cpsr) +{ +	return (~cpsr) & PSR_C_BIT; +} + +static unsigned long __kprobes __check_mi(unsigned long cpsr) +{ +	return cpsr & PSR_N_BIT; +} + +static unsigned long __kprobes __check_pl(unsigned long cpsr) +{ +	return (~cpsr) & PSR_N_BIT; +} + +static unsigned long __kprobes __check_vs(unsigned long cpsr) +{ +	return cpsr & PSR_V_BIT; +} + +static unsigned long __kprobes __check_vc(unsigned long cpsr) +{ +	return (~cpsr) & PSR_V_BIT; +} + +static unsigned long __kprobes __check_hi(unsigned long cpsr) +{ +	cpsr &= ~(cpsr >> 1); /* PSR_C_BIT &= ~PSR_Z_BIT */ +	return cpsr & PSR_C_BIT;  } +static unsigned long __kprobes __check_ls(unsigned long cpsr) +{ +	cpsr &= ~(cpsr >> 1); /* PSR_C_BIT &= ~PSR_Z_BIT */ +	return (~cpsr) & PSR_C_BIT; +} + +static unsigned long __kprobes __check_ge(unsigned long cpsr) +{ +	cpsr ^= (cpsr << 3); /* PSR_N_BIT ^= PSR_V_BIT */ +	return (~cpsr) & PSR_N_BIT; +} + +static unsigned long __kprobes __check_lt(unsigned long cpsr) +{ +	cpsr ^= (cpsr << 3); /* PSR_N_BIT ^= PSR_V_BIT */ +	return cpsr & PSR_N_BIT; +} + +static unsigned long __kprobes __check_gt(unsigned long cpsr) +{ +	unsigned long temp = cpsr ^ (cpsr << 3); /* PSR_N_BIT ^= PSR_V_BIT */ +	temp |= (cpsr << 1);			 /* PSR_N_BIT |= PSR_Z_BIT */ +	return (~temp) & PSR_N_BIT; +} + +static unsigned long __kprobes __check_le(unsigned long cpsr) +{ +	unsigned long temp = cpsr ^ (cpsr << 3); /* PSR_N_BIT ^= PSR_V_BIT */ +	temp |= (cpsr << 1);			 /* PSR_N_BIT |= PSR_Z_BIT */ +	return temp & PSR_N_BIT; +} + +static unsigned long __kprobes __check_al(unsigned long cpsr) +{ +	return true; +} + +static kprobe_check_cc * const condition_checks[16] = { +	&__check_eq, &__check_ne, &__check_cs, &__check_cc, +	&__check_mi, &__check_pl, &__check_vs, &__check_vc, +	&__check_hi, &__check_ls, &__check_ge, &__check_lt, +	&__check_gt, &__check_le, &__check_al, &__check_al +}; +  /* Return:   *   INSN_REJECTED     If instruction is one not allowed to kprobe,   *   INSN_GOOD         If instruction is supported and uses instruction slot, @@ -1401,133 +1626,45 @@ space_cccc_111x(kprobe_opcode_t insn, struct arch_specific_insn *asi)  enum kprobe_insn __kprobes  arm_kprobe_decode_insn(kprobe_opcode_t insn, struct arch_specific_insn *asi)  { +	asi->insn_check_cc = condition_checks[insn>>28];  	asi->insn[1] = KPROBE_RETURN_INSTRUCTION; -	if ((insn & 0xf0000000) == 0xf0000000) { +	if ((insn & 0xf0000000) == 0xf0000000)  		return space_1111(insn, asi); -	} else if ((insn & 0x0e000000) == 0x00000000) { +	else if ((insn & 0x0e000000) == 0x00000000)  		return space_cccc_000x(insn, asi); -	} else if ((insn & 0x0e000000) == 0x02000000) { +	else if ((insn & 0x0e000000) == 0x02000000)  		return space_cccc_001x(insn, asi); -	} else if ((insn & 0x0f000010) == 0x06000010) { +	else if ((insn & 0x0f000010) == 0x06000010)  		return space_cccc_0110__1(insn, asi); -	} else if ((insn & 0x0f000010) == 0x07000010) { +	else if ((insn & 0x0f000010) == 0x07000010)  		return space_cccc_0111__1(insn, asi); -	} else if ((insn & 0x0c000000) == 0x04000000) { +	else if ((insn & 0x0c000000) == 0x04000000)  		return space_cccc_01xx(insn, asi); -	} else if ((insn & 0x0e000000) == 0x08000000) { +	else if ((insn & 0x0e000000) == 0x08000000)  		return space_cccc_100x(insn, asi); -	} else if ((insn & 0x0e000000) == 0x0a000000) { +	else if ((insn & 0x0e000000) == 0x0a000000)  		return space_cccc_101x(insn, asi); -	} else if ((insn & 0x0fe00000) == 0x0c400000) { - -		return space_cccc_1100_010x(insn, asi); - -	} else if ((insn & 0x0e000000) == 0x0c000000) { - -		return space_cccc_110x(insn, asi); - -	} - -	return space_cccc_111x(insn, asi); +	return space_cccc_11xx(insn, asi);  }  void __init arm_kprobe_decode_init(void)  {  	find_str_pc_offset();  } - - -/* - * All ARM instructions listed below. - * - * Instructions and their general purpose registers are given. - * If a particular register may not use R15, it is prefixed with a "!". - * If marked with a "*" means the value returned by reading R15 - * is implementation defined. - * - * ADC/ADD/AND/BIC/CMN/CMP/EOR/MOV/MVN/ORR/RSB/RSC/SBC/SUB/TEQ - *     TST: Rd, Rn, Rm, !Rs - * BX: Rm - * BLX(2): !Rm - * BX: Rm (R15 legal, but discouraged) - * BXJ: !Rm, - * CLZ: !Rd, !Rm - * CPY: Rd, Rm - * LDC/2,STC/2 immediate offset & unindex: Rn - * LDC/2,STC/2 immediate pre/post-indexed: !Rn - * LDM(1/3): !Rn, register_list - * LDM(2): !Rn, !register_list - * LDR,STR,PLD immediate offset: Rd, Rn - * LDR,STR,PLD register offset: Rd, Rn, !Rm - * LDR,STR,PLD scaled register offset: Rd, !Rn, !Rm - * LDR,STR immediate pre/post-indexed: Rd, !Rn - * LDR,STR register pre/post-indexed: Rd, !Rn, !Rm - * LDR,STR scaled register pre/post-indexed: Rd, !Rn, !Rm - * LDRB,STRB immediate offset: !Rd, Rn - * LDRB,STRB register offset: !Rd, Rn, !Rm - * LDRB,STRB scaled register offset: !Rd, !Rn, !Rm - * LDRB,STRB immediate pre/post-indexed: !Rd, !Rn - * LDRB,STRB register pre/post-indexed: !Rd, !Rn, !Rm - * LDRB,STRB scaled register pre/post-indexed: !Rd, !Rn, !Rm - * LDRT,LDRBT,STRBT immediate pre/post-indexed: !Rd, !Rn - * LDRT,LDRBT,STRBT register pre/post-indexed: !Rd, !Rn, !Rm - * LDRT,LDRBT,STRBT scaled register pre/post-indexed: !Rd, !Rn, !Rm - * LDRH/SH/SB/D,STRH/SH/SB/D immediate offset: !Rd, Rn - * LDRH/SH/SB/D,STRH/SH/SB/D register offset: !Rd, Rn, !Rm - * LDRH/SH/SB/D,STRH/SH/SB/D immediate pre/post-indexed: !Rd, !Rn - * LDRH/SH/SB/D,STRH/SH/SB/D register pre/post-indexed: !Rd, !Rn, !Rm - * LDREX: !Rd, !Rn - * MCR/2: !Rd - * MCRR/2,MRRC/2: !Rd, !Rn - * MLA: !Rd, !Rn, !Rm, !Rs - * MOV: Rd - * MRC/2: !Rd (if Rd==15, only changes cond codes, not the register) - * MRS,MSR: !Rd - * MUL: !Rd, !Rm, !Rs - * PKH{BT,TB}: !Rd, !Rn, !Rm - * QDADD,[U]QADD/16/8/SUBX: !Rd, !Rm, !Rn - * QDSUB,[U]QSUB/16/8/ADDX: !Rd, !Rm, !Rn - * REV/16/SH: !Rd, !Rm - * RFE: !Rn - * {S,U}[H]ADD{16,8,SUBX},{S,U}[H]SUB{16,8,ADDX}: !Rd, !Rn, !Rm - * SEL: !Rd, !Rn, !Rm - * SMLA<x><y>,SMLA{D,W<y>},SMLSD,SMML{A,S}: !Rd, !Rn, !Rm, !Rs - * SMLAL<x><y>,SMLA{D,LD},SMLSLD,SMMULL,SMULW<y>: !RdHi, !RdLo, !Rm, !Rs - * SMMUL,SMUAD,SMUL<x><y>,SMUSD: !Rd, !Rm, !Rs - * SSAT/16: !Rd, !Rm - * STM(1/2): !Rn, register_list* (R15 in reg list not recommended) - * STRT immediate pre/post-indexed: Rd*, !Rn - * STRT register pre/post-indexed: Rd*, !Rn, !Rm - * STRT scaled register pre/post-indexed: Rd*, !Rn, !Rm - * STREX: !Rd, !Rn, !Rm - * SWP/B: !Rd, !Rn, !Rm - * {S,U}XTA{B,B16,H}: !Rd, !Rn, !Rm - * {S,U}XT{B,B16,H}: !Rd, !Rm - * UM{AA,LA,UL}L: !RdHi, !RdLo, !Rm, !Rs - * USA{D8,A8,T,T16}: !Rd, !Rm, !Rs - * - * May transfer control by writing R15 (possible mode changes or alternate - * mode accesses marked by "*"): - * ALU op (* with s-bit), B, BL, BKPT, BLX(1/2), BX, BXJ, CPS*, CPY, - * LDM(1), LDM(2/3)*, LDR, MOV, RFE*, SWI* - * - * Instructions that do not take general registers, nor transfer control: - * CDP/2, SETEND, SRS* - */ diff --git a/arch/arm/kernel/kprobes.c b/arch/arm/kernel/kprobes.c index 2ba7deb3072..1656c87501c 100644 --- a/arch/arm/kernel/kprobes.c +++ b/arch/arm/kernel/kprobes.c @@ -134,7 +134,8 @@ static void __kprobes singlestep(struct kprobe *p, struct pt_regs *regs,  				 struct kprobe_ctlblk *kcb)  {  	regs->ARM_pc += 4; -	p->ainsn.insn_handler(p, regs); +	if (p->ainsn.insn_check_cc(regs->ARM_cpsr)) +		p->ainsn.insn_handler(p, regs);  }  /* diff --git a/arch/arm/kernel/perf_event.c b/arch/arm/kernel/perf_event.c index 979da3947f4..139e3c82736 100644 --- a/arch/arm/kernel/perf_event.c +++ b/arch/arm/kernel/perf_event.c @@ -746,7 +746,8 @@ perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs)  	tail = (struct frame_tail __user *)regs->ARM_fp - 1; -	while (tail && !((unsigned long)tail & 0x3)) +	while ((entry->nr < PERF_MAX_STACK_DEPTH) && +	       tail && !((unsigned long)tail & 0x3))  		tail = user_backtrace(tail, entry);  } diff --git a/arch/arm/kernel/ptrace.c b/arch/arm/kernel/ptrace.c index 2bf27f364d0..8182f45ca49 100644 --- a/arch/arm/kernel/ptrace.c +++ b/arch/arm/kernel/ptrace.c @@ -767,12 +767,20 @@ long arch_ptrace(struct task_struct *child, long request,  #ifdef CONFIG_HAVE_HW_BREAKPOINT  		case PTRACE_GETHBPREGS: +			if (ptrace_get_breakpoints(child) < 0) +				return -ESRCH; +  			ret = ptrace_gethbpregs(child, addr,  						(unsigned long __user *)data); +			ptrace_put_breakpoints(child);  			break;  		case PTRACE_SETHBPREGS: +			if (ptrace_get_breakpoints(child) < 0) +				return -ESRCH; +  			ret = ptrace_sethbpregs(child, addr,  						(unsigned long __user *)data); +			ptrace_put_breakpoints(child);  			break;  #endif diff --git a/arch/arm/kernel/signal.c b/arch/arm/kernel/signal.c index cb839831764..0340224cf73 100644 --- a/arch/arm/kernel/signal.c +++ b/arch/arm/kernel/signal.c @@ -597,19 +597,13 @@ setup_rt_frame(int usig, struct k_sigaction *ka, siginfo_t *info,  	return err;  } -static inline void setup_syscall_restart(struct pt_regs *regs) -{ -	regs->ARM_r0 = regs->ARM_ORIG_r0; -	regs->ARM_pc -= thumb_mode(regs) ? 2 : 4; -} -  /*   * OK, we're invoking a handler   */	  static int  handle_signal(unsigned long sig, struct k_sigaction *ka,  	      siginfo_t *info, sigset_t *oldset, -	      struct pt_regs * regs, int syscall) +	      struct pt_regs * regs)  {  	struct thread_info *thread = current_thread_info();  	struct task_struct *tsk = current; @@ -617,26 +611,6 @@ handle_signal(unsigned long sig, struct k_sigaction *ka,  	int ret;  	/* -	 * If we were from a system call, check for system call restarting... -	 */ -	if (syscall) { -		switch (regs->ARM_r0) { -		case -ERESTART_RESTARTBLOCK: -		case -ERESTARTNOHAND: -			regs->ARM_r0 = -EINTR; -			break; -		case -ERESTARTSYS: -			if (!(ka->sa.sa_flags & SA_RESTART)) { -				regs->ARM_r0 = -EINTR; -				break; -			} -			/* fallthrough */ -		case -ERESTARTNOINTR: -			setup_syscall_restart(regs); -		} -	} - -	/*  	 * translate the signal  	 */  	if (usig < 32 && thread->exec_domain && thread->exec_domain->signal_invmap) @@ -685,6 +659,7 @@ handle_signal(unsigned long sig, struct k_sigaction *ka,   */  static void do_signal(struct pt_regs *regs, int syscall)  { +	unsigned int retval = 0, continue_addr = 0, restart_addr = 0;  	struct k_sigaction ka;  	siginfo_t info;  	int signr; @@ -698,18 +673,61 @@ static void do_signal(struct pt_regs *regs, int syscall)  	if (!user_mode(regs))  		return; +	/* +	 * If we were from a system call, check for system call restarting... +	 */ +	if (syscall) { +		continue_addr = regs->ARM_pc; +		restart_addr = continue_addr - (thumb_mode(regs) ? 2 : 4); +		retval = regs->ARM_r0; + +		/* +		 * Prepare for system call restart.  We do this here so that a +		 * debugger will see the already changed PSW. +		 */ +		switch (retval) { +		case -ERESTARTNOHAND: +		case -ERESTARTSYS: +		case -ERESTARTNOINTR: +			regs->ARM_r0 = regs->ARM_ORIG_r0; +			regs->ARM_pc = restart_addr; +			break; +		case -ERESTART_RESTARTBLOCK: +			regs->ARM_r0 = -EINTR; +			break; +		} +	} +  	if (try_to_freeze())  		goto no_signal; +	/* +	 * Get the signal to deliver.  When running under ptrace, at this +	 * point the debugger may change all our registers ... +	 */  	signr = get_signal_to_deliver(&info, &ka, regs, NULL);  	if (signr > 0) {  		sigset_t *oldset; +		/* +		 * Depending on the signal settings we may need to revert the +		 * decision to restart the system call.  But skip this if a +		 * debugger has chosen to restart at a different PC. +		 */ +		if (regs->ARM_pc == restart_addr) { +			if (retval == -ERESTARTNOHAND +			    || (retval == -ERESTARTSYS +				&& !(ka.sa.sa_flags & SA_RESTART))) { +				regs->ARM_r0 = -EINTR; +				regs->ARM_pc = continue_addr; +			} +		} +  		if (test_thread_flag(TIF_RESTORE_SIGMASK))  			oldset = ¤t->saved_sigmask;  		else  			oldset = ¤t->blocked; -		if (handle_signal(signr, &ka, &info, oldset, regs, syscall) == 0) { +		if (handle_signal(signr, &ka, &info, oldset, regs) == 0) {  			/*  			 * A signal was successfully delivered; the saved  			 * sigmask will have been stored in the signal frame, @@ -723,11 +741,14 @@ static void do_signal(struct pt_regs *regs, int syscall)  	}   no_signal: -	/* -	 * No signal to deliver to the process - restart the syscall. -	 */  	if (syscall) { -		if (regs->ARM_r0 == -ERESTART_RESTARTBLOCK) { +		/* +		 * Handle restarting a different system call.  As above, +		 * if a debugger has chosen to restart at a different PC, +		 * ignore the restart. +		 */ +		if (retval == -ERESTART_RESTARTBLOCK +		    && regs->ARM_pc == continue_addr) {  			if (thumb_mode(regs)) {  				regs->ARM_r7 = __NR_restart_syscall - __NR_SYSCALL_BASE;  				regs->ARM_pc -= 2; @@ -750,11 +771,6 @@ static void do_signal(struct pt_regs *regs, int syscall)  #endif  			}  		} -		if (regs->ARM_r0 == -ERESTARTNOHAND || -		    regs->ARM_r0 == -ERESTARTSYS || -		    regs->ARM_r0 == -ERESTARTNOINTR) { -			setup_syscall_restart(regs); -		}  		/* If there's no signal to deliver, we just put the saved sigmask  		 * back. diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c index 8fe05ad932e..f29b8a29b17 100644 --- a/arch/arm/kernel/smp.c +++ b/arch/arm/kernel/smp.c @@ -479,7 +479,7 @@ static void broadcast_timer_set_mode(enum clock_event_mode mode,  {  } -static void broadcast_timer_setup(struct clock_event_device *evt) +static void __cpuinit broadcast_timer_setup(struct clock_event_device *evt)  {  	evt->name	= "dummy_timer";  	evt->features	= CLOCK_EVT_FEAT_ONESHOT | diff --git a/arch/arm/kernel/sys_oabi-compat.c b/arch/arm/kernel/sys_oabi-compat.c index 4ad8da15ef2..af0aaebf4de 100644 --- a/arch/arm/kernel/sys_oabi-compat.c +++ b/arch/arm/kernel/sys_oabi-compat.c @@ -311,7 +311,7 @@ asmlinkage long sys_oabi_semtimedop(int semid,  	long err;  	int i; -	if (nsops < 1) +	if (nsops < 1 || nsops > SEMOPM)  		return -EINVAL;  	sops = kmalloc(sizeof(*sops) * nsops, GFP_KERNEL);  	if (!sops) diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig index 19390231a0e..2d299bf5d72 100644 --- a/arch/arm/mach-at91/Kconfig +++ b/arch/arm/mach-at91/Kconfig @@ -83,6 +83,7 @@ config ARCH_AT91CAP9  	select CPU_ARM926T  	select GENERIC_CLOCKEVENTS  	select HAVE_FB_ATMEL +	select HAVE_NET_MACB  config ARCH_AT572D940HF  	bool "AT572D940HF" diff --git a/arch/arm/mach-at91/board-eb01.c b/arch/arm/mach-at91/board-eb01.c index 1f9d3cb64c5..d8df59a3426 100644 --- a/arch/arm/mach-at91/board-eb01.c +++ b/arch/arm/mach-at91/board-eb01.c @@ -30,6 +30,11 @@  #include <mach/board.h>  #include "generic.h" +static void __init at91eb01_init_irq(void) +{ +	at91x40_init_interrupts(NULL); +} +  static void __init at91eb01_map_io(void)  {  	at91x40_initialize(40000000); @@ -38,7 +43,7 @@ static void __init at91eb01_map_io(void)  MACHINE_START(AT91EB01, "Atmel AT91 EB01")  	/* Maintainer: Greg Ungerer <gerg@snapgear.com> */  	.timer		= &at91x40_timer, -	.init_irq	= at91x40_init_interrupts, +	.init_irq	= at91eb01_init_irq,  	.map_io		= at91eb01_map_io,  MACHINE_END diff --git a/arch/arm/mach-at91/include/mach/cpu.h b/arch/arm/mach-at91/include/mach/cpu.h index 3bef931d0b1..0700f212530 100644 --- a/arch/arm/mach-at91/include/mach/cpu.h +++ b/arch/arm/mach-at91/include/mach/cpu.h @@ -27,6 +27,7 @@  #define ARCH_ID_AT91SAM9G45	0x819b05a0  #define ARCH_ID_AT91SAM9G45MRL	0x819b05a2	/* aka 9G45-ES2 & non ES lots */  #define ARCH_ID_AT91SAM9G45ES	0x819b05a1	/* 9G45-ES (Engineering Sample) */ +#define ARCH_ID_AT91SAM9X5	0x819a05a0  #define ARCH_ID_AT91CAP9	0x039A03A0  #define ARCH_ID_AT91SAM9XE128	0x329973a0 @@ -55,6 +56,12 @@ static inline unsigned long at91_cpu_fully_identify(void)  #define ARCH_EXID_AT91SAM9G46	0x00000003  #define ARCH_EXID_AT91SAM9G45	0x00000004 +#define ARCH_EXID_AT91SAM9G15	0x00000000 +#define ARCH_EXID_AT91SAM9G35	0x00000001 +#define ARCH_EXID_AT91SAM9X35	0x00000002 +#define ARCH_EXID_AT91SAM9G25	0x00000003 +#define ARCH_EXID_AT91SAM9X25	0x00000004 +  static inline unsigned long at91_exid_identify(void)  {  	return at91_sys_read(AT91_DBGU_EXID); @@ -143,6 +150,27 @@ static inline unsigned long at91cap9_rev_identify(void)  #define cpu_is_at91sam9m11()	(0)  #endif +#ifdef CONFIG_ARCH_AT91SAM9X5 +#define cpu_is_at91sam9x5()	(at91_cpu_identify() == ARCH_ID_AT91SAM9X5) +#define cpu_is_at91sam9g15()	(cpu_is_at91sam9x5() && \ +				(at91_exid_identify() == ARCH_EXID_AT91SAM9G15)) +#define cpu_is_at91sam9g35()	(cpu_is_at91sam9x5() && \ +				(at91_exid_identify() == ARCH_EXID_AT91SAM9G35)) +#define cpu_is_at91sam9x35()	(cpu_is_at91sam9x5() && \ +				(at91_exid_identify() == ARCH_EXID_AT91SAM9X35)) +#define cpu_is_at91sam9g25()	(cpu_is_at91sam9x5() && \ +				(at91_exid_identify() == ARCH_EXID_AT91SAM9G25)) +#define cpu_is_at91sam9x25()	(cpu_is_at91sam9x5() && \ +				(at91_exid_identify() == ARCH_EXID_AT91SAM9X25)) +#else +#define cpu_is_at91sam9x5()	(0) +#define cpu_is_at91sam9g15()	(0) +#define cpu_is_at91sam9g35()	(0) +#define cpu_is_at91sam9x35()	(0) +#define cpu_is_at91sam9g25()	(0) +#define cpu_is_at91sam9x25()	(0) +#endif +  #ifdef CONFIG_ARCH_AT91CAP9  #define cpu_is_at91cap9()	(at91_cpu_identify() == ARCH_ID_AT91CAP9)  #define cpu_is_at91cap9_revB()	(at91cap9_rev_identify() == ARCH_REVISION_CAP9_B) diff --git a/arch/arm/mach-davinci/Kconfig b/arch/arm/mach-davinci/Kconfig index 32f147998cd..c0deacae778 100644 --- a/arch/arm/mach-davinci/Kconfig +++ b/arch/arm/mach-davinci/Kconfig @@ -63,6 +63,7 @@ config MACH_DAVINCI_EVM  	depends on ARCH_DAVINCI_DM644x  	select MISC_DEVICES  	select EEPROM_AT24 +	select I2C  	help  	  Configure this option to specify the whether the board used  	  for development is a DM644x EVM @@ -72,6 +73,7 @@ config MACH_SFFSDR  	depends on ARCH_DAVINCI_DM644x  	select MISC_DEVICES  	select EEPROM_AT24 +	select I2C  	help  	  Say Y here to select the Lyrtech Small Form Factor  	  Software Defined Radio (SFFSDR) board. @@ -105,6 +107,7 @@ config MACH_DAVINCI_DM6467_EVM  	select MACH_DAVINCI_DM6467TEVM  	select MISC_DEVICES  	select EEPROM_AT24 +	select I2C  	help  	  Configure this option to specify the whether the board used  	  for development is a DM6467 EVM @@ -118,6 +121,7 @@ config MACH_DAVINCI_DM365_EVM  	depends on ARCH_DAVINCI_DM365  	select MISC_DEVICES  	select EEPROM_AT24 +	select I2C  	help  	  Configure this option to specify whether the board used  	  for development is a DM365 EVM @@ -129,6 +133,7 @@ config MACH_DAVINCI_DA830_EVM  	select GPIO_PCF857X  	select MISC_DEVICES  	select EEPROM_AT24 +	select I2C  	help  	  Say Y here to select the TI DA830/OMAP-L137/AM17x Evaluation Module. @@ -205,6 +210,7 @@ config MACH_MITYOMAPL138  	depends on ARCH_DAVINCI_DA850  	select MISC_DEVICES  	select EEPROM_AT24 +	select I2C  	help  	  Say Y here to select the Critical Link MityDSP-L138/MityARM-1808  	  System on Module.  Information on this SoM may be found at diff --git a/arch/arm/mach-davinci/board-mityomapl138.c b/arch/arm/mach-davinci/board-mityomapl138.c index 2aa79c54f98..606a6f27ed6 100644 --- a/arch/arm/mach-davinci/board-mityomapl138.c +++ b/arch/arm/mach-davinci/board-mityomapl138.c @@ -29,7 +29,7 @@  #include <mach/mux.h>  #include <mach/spi.h> -#define MITYOMAPL138_PHY_ID		"0:03" +#define MITYOMAPL138_PHY_ID		""  #define FACTORY_CONFIG_MAGIC	0x012C0138  #define FACTORY_CONFIG_VERSION	0x00010001 @@ -414,7 +414,7 @@ static struct resource mityomapl138_nandflash_resource[] = {  static struct platform_device mityomapl138_nandflash_device = {  	.name		= "davinci_nand", -	.id		= 0, +	.id		= 1,  	.dev		= {  		.platform_data	= &mityomapl138_nandflash_data,  	}, diff --git a/arch/arm/mach-davinci/devices-da8xx.c b/arch/arm/mach-davinci/devices-da8xx.c index 625d4b66718..58a02dc7b15 100644 --- a/arch/arm/mach-davinci/devices-da8xx.c +++ b/arch/arm/mach-davinci/devices-da8xx.c @@ -39,7 +39,8 @@  #define DA8XX_GPIO_BASE			0x01e26000  #define DA8XX_I2C1_BASE			0x01e28000  #define DA8XX_SPI0_BASE			0x01c41000 -#define DA8XX_SPI1_BASE			0x01f0e000 +#define DA830_SPI1_BASE			0x01e12000 +#define DA850_SPI1_BASE			0x01f0e000  #define DA8XX_EMAC_CTRL_REG_OFFSET	0x3000  #define DA8XX_EMAC_MOD_REG_OFFSET	0x2000 @@ -762,8 +763,8 @@ static struct resource da8xx_spi0_resources[] = {  static struct resource da8xx_spi1_resources[] = {  	[0] = { -		.start	= DA8XX_SPI1_BASE, -		.end	= DA8XX_SPI1_BASE + SZ_4K - 1, +		.start	= DA830_SPI1_BASE, +		.end	= DA830_SPI1_BASE + SZ_4K - 1,  		.flags	= IORESOURCE_MEM,  	},  	[1] = { @@ -832,5 +833,10 @@ int __init da8xx_register_spi(int instance, struct spi_board_info *info,  	da8xx_spi_pdata[instance].num_chipselect = len; +	if (instance == 1 && cpu_is_davinci_da850()) { +		da8xx_spi1_resources[0].start = DA850_SPI1_BASE; +		da8xx_spi1_resources[0].end = DA850_SPI1_BASE + SZ_4K - 1; +	} +  	return platform_device_register(&da8xx_spi_device[instance]);  } diff --git a/arch/arm/mach-davinci/dm355.c b/arch/arm/mach-davinci/dm355.c index f6801223964..a3a94e9c937 100644 --- a/arch/arm/mach-davinci/dm355.c +++ b/arch/arm/mach-davinci/dm355.c @@ -314,7 +314,7 @@ static struct clk timer2_clk = {  	.name = "timer2",  	.parent = &pll1_aux_clk,  	.lpsc = DAVINCI_LPSC_TIMER2, -	.usecount = 1,              /* REVISIT: why can't' this be disabled? */ +	.usecount = 1,              /* REVISIT: why can't this be disabled? */  };  static struct clk timer3_clk = { diff --git a/arch/arm/mach-davinci/dm644x.c b/arch/arm/mach-davinci/dm644x.c index 5f8a6542418..4c82c271629 100644 --- a/arch/arm/mach-davinci/dm644x.c +++ b/arch/arm/mach-davinci/dm644x.c @@ -274,7 +274,7 @@ static struct clk timer2_clk = {  	.name = "timer2",  	.parent = &pll1_aux_clk,  	.lpsc = DAVINCI_LPSC_TIMER2, -	.usecount = 1,              /* REVISIT: why can't' this be disabled? */ +	.usecount = 1,              /* REVISIT: why can't this be disabled? */  };  static struct clk_lookup dm644x_clks[] = { diff --git a/arch/arm/mach-davinci/include/mach/debug-macro.S b/arch/arm/mach-davinci/include/mach/debug-macro.S index 9f1befc5ac3..f8b7ea4f623 100644 --- a/arch/arm/mach-davinci/include/mach/debug-macro.S +++ b/arch/arm/mach-davinci/include/mach/debug-macro.S @@ -24,6 +24,9 @@  #define UART_SHIFT	2 +#define davinci_uart_v2p(x)	((x) - PAGE_OFFSET + PLAT_PHYS_OFFSET) +#define davinci_uart_p2v(x)	((x) - PLAT_PHYS_OFFSET + PAGE_OFFSET) +  		.pushsection .data  davinci_uart_phys:	.word	0  davinci_uart_virt:	.word	0 @@ -34,7 +37,7 @@ davinci_uart_virt:	.word	0  		/* Use davinci_uart_phys/virt if already configured */  10:		mrc	p15, 0, \rp, c1, c0  		tst	\rp, #1			@ MMU enabled? -		ldreq	\rp, =__virt_to_phys(davinci_uart_phys) +		ldreq	\rp, =davinci_uart_v2p(davinci_uart_phys)  		ldrne	\rp, =davinci_uart_phys  		add	\rv, \rp, #4		@ davinci_uart_virt  		ldr	\rp, [\rp, #0] @@ -48,18 +51,18 @@ davinci_uart_virt:	.word	0  		tst	\rp, #1			@ MMU enabled?  		/* Copy uart phys address from decompressor uart info */ -		ldreq	\rv, =__virt_to_phys(davinci_uart_phys) +		ldreq	\rv, =davinci_uart_v2p(davinci_uart_phys)  		ldrne	\rv, =davinci_uart_phys  		ldreq	\rp, =DAVINCI_UART_INFO -		ldrne	\rp, =__phys_to_virt(DAVINCI_UART_INFO) +		ldrne	\rp, =davinci_uart_p2v(DAVINCI_UART_INFO)  		ldr	\rp, [\rp, #0]  		str	\rp, [\rv]  		/* Copy uart virt address from decompressor uart info */ -		ldreq	\rv, =__virt_to_phys(davinci_uart_virt) +		ldreq	\rv, =davinci_uart_v2p(davinci_uart_virt)  		ldrne	\rv, =davinci_uart_virt  		ldreq	\rp, =DAVINCI_UART_INFO -		ldrne	\rp, =__phys_to_virt(DAVINCI_UART_INFO) +		ldrne	\rp, =davinci_uart_p2v(DAVINCI_UART_INFO)  		ldr	\rp, [\rp, #4]  		str	\rp, [\rv] diff --git a/arch/arm/mach-davinci/include/mach/serial.h b/arch/arm/mach-davinci/include/mach/serial.h index 8051110b8ac..c9e6ce185a6 100644 --- a/arch/arm/mach-davinci/include/mach/serial.h +++ b/arch/arm/mach-davinci/include/mach/serial.h @@ -22,7 +22,7 @@   *   * This area sits just below the page tables (see arch/arm/kernel/head.S).   */ -#define DAVINCI_UART_INFO	(PHYS_OFFSET + 0x3ff8) +#define DAVINCI_UART_INFO	(PLAT_PHYS_OFFSET + 0x3ff8)  #define DAVINCI_UART0_BASE	(IO_PHYS + 0x20000)  #define DAVINCI_UART1_BASE	(IO_PHYS + 0x20400) diff --git a/arch/arm/mach-mx3/mach-vpr200.c b/arch/arm/mach-mx3/mach-vpr200.c index 2cf390fbd98..47a69cbc31a 100644 --- a/arch/arm/mach-mx3/mach-vpr200.c +++ b/arch/arm/mach-mx3/mach-vpr200.c @@ -257,11 +257,16 @@ static const struct fsl_usb2_platform_data otg_device_pdata __initconst = {  	.workaround	= FLS_USB2_WORKAROUND_ENGCM09152,  }; +static int vpr200_usbh_init(struct platform_device *pdev) +{ +	return mx35_initialize_usb_hw(pdev->id, +			MXC_EHCI_INTERFACE_SINGLE_UNI | MXC_EHCI_INTERNAL_PHY); +} +  /* USB HOST config */  static const struct mxc_usbh_platform_data usb_host_pdata __initconst = { -	.portsc		= MXC_EHCI_MODE_SERIAL, -	.flags		= MXC_EHCI_INTERFACE_SINGLE_UNI | -			  MXC_EHCI_INTERNAL_PHY, +	.init = vpr200_usbh_init, +	.portsc = MXC_EHCI_MODE_SERIAL,  };  static struct platform_device *devices[] __initdata = { diff --git a/arch/arm/mach-mx5/board-mx53_loco.c b/arch/arm/mach-mx5/board-mx53_loco.c index 10a1bea1054..6206b1191fe 100644 --- a/arch/arm/mach-mx5/board-mx53_loco.c +++ b/arch/arm/mach-mx5/board-mx53_loco.c @@ -193,7 +193,7 @@ static iomux_v3_cfg_t mx53_loco_pads[] = {  	.wakeup		= wake,					\  } -static const struct gpio_keys_button loco_buttons[] __initconst = { +static struct gpio_keys_button loco_buttons[] = {  	GPIO_BUTTON(MX53_LOCO_POWER, KEY_POWER, 1, "power", 0),  	GPIO_BUTTON(MX53_LOCO_UI1, KEY_VOLUMEUP, 1, "volume-up", 0),  	GPIO_BUTTON(MX53_LOCO_UI2, KEY_VOLUMEDOWN, 1, "volume-down", 0), diff --git a/arch/arm/mach-mxs/clock-mx28.c b/arch/arm/mach-mxs/clock-mx28.c index 1ad97fed1e9..5dcc59d5b9e 100644 --- a/arch/arm/mach-mxs/clock-mx28.c +++ b/arch/arm/mach-mxs/clock-mx28.c @@ -295,11 +295,11 @@ static int name##_set_rate(struct clk *clk, unsigned long rate)		\  	unsigned long diff, parent_rate, calc_rate;			\  	int i;								\  									\ -	parent_rate = clk_get_rate(clk->parent);			\  	div_max = BM_CLKCTRL_##dr##_DIV >> BP_CLKCTRL_##dr##_DIV;	\  	bm_busy = BM_CLKCTRL_##dr##_BUSY;				\  									\  	if (clk->parent == &ref_xtal_clk) {				\ +		parent_rate = clk_get_rate(clk->parent);		\  		div = DIV_ROUND_UP(parent_rate, rate);			\  		if (clk == &cpu_clk) {					\  			div_max = BM_CLKCTRL_CPU_DIV_XTAL >>		\ @@ -309,6 +309,11 @@ static int name##_set_rate(struct clk *clk, unsigned long rate)		\  		if (div == 0 || div > div_max)				\  			return -EINVAL;					\  	} else {							\ +		/*							\ +		 * hack alert: this block modifies clk->parent, too,	\ +		 * so the base to use it the grand parent.		\ +		 */							\ +		parent_rate = clk_get_rate(clk->parent->parent);	\  		rate >>= PARENT_RATE_SHIFT;				\  		parent_rate >>= PARENT_RATE_SHIFT;			\  		diff = parent_rate;					\ diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index a45cd640968..512b1520445 100644 --- a/arch/arm/mach-omap2/Makefile +++ b/arch/arm/mach-omap2/Makefile @@ -68,7 +68,7 @@ obj-$(CONFIG_OMAP_SMARTREFLEX)          += sr_device.o smartreflex.o  obj-$(CONFIG_OMAP_SMARTREFLEX_CLASS3)	+= smartreflex-class3.o  AFLAGS_sleep24xx.o			:=-Wa,-march=armv6 -AFLAGS_sleep34xx.o			:=-Wa,-march=armv7-a +AFLAGS_sleep34xx.o			:=-Wa,-march=armv7-a$(plus_sec)  ifeq ($(CONFIG_PM_VERBOSE),y)  CFLAGS_pm_bus.o				+= -DDEBUG diff --git a/arch/arm/mach-omap2/board-rx51.c b/arch/arm/mach-omap2/board-rx51.c index e964895b80e..f8ba20a14e6 100644 --- a/arch/arm/mach-omap2/board-rx51.c +++ b/arch/arm/mach-omap2/board-rx51.c @@ -141,14 +141,19 @@ static void __init rx51_init(void)  static void __init rx51_map_io(void)  {  	omap2_set_globals_3xxx(); -	rx51_video_mem_init();  	omap34xx_map_common_io();  } +static void __init rx51_reserve(void) +{ +	rx51_video_mem_init(); +	omap_reserve(); +} +  MACHINE_START(NOKIA_RX51, "Nokia RX-51 board")  	/* Maintainer: Lauri Leukkunen <lauri.leukkunen@nokia.com> */  	.boot_params	= 0x80000100, -	.reserve	= omap_reserve, +	.reserve	= rx51_reserve,  	.map_io		= rx51_map_io,  	.init_early	= rx51_init_early,  	.init_irq	= omap_init_irq, diff --git a/arch/arm/mach-omap2/clkt34xx_dpll3m2.c b/arch/arm/mach-omap2/clkt34xx_dpll3m2.c index b2b1e37bb6b..d6e34dd9e7e 100644 --- a/arch/arm/mach-omap2/clkt34xx_dpll3m2.c +++ b/arch/arm/mach-omap2/clkt34xx_dpll3m2.c @@ -115,6 +115,7 @@ int omap3_core_dpll_m2_set_rate(struct clk *clk, unsigned long rate)  				  sdrc_cs0->rfr_ctrl, sdrc_cs0->actim_ctrla,  				  sdrc_cs0->actim_ctrlb, sdrc_cs0->mr,  				  0, 0, 0, 0); +	clk->rate = rate;  	return 0;  } diff --git a/arch/arm/mach-omap2/clock44xx_data.c b/arch/arm/mach-omap2/clock44xx_data.c index 276992d3b7f..8c965671b4d 100644 --- a/arch/arm/mach-omap2/clock44xx_data.c +++ b/arch/arm/mach-omap2/clock44xx_data.c @@ -3116,14 +3116,9 @@ static struct omap_clk omap44xx_clks[] = {  	CLK(NULL,	"dsp_fck",			&dsp_fck,	CK_443X),  	CLK("omapdss_dss",	"sys_clk",			&dss_sys_clk,	CK_443X),  	CLK("omapdss_dss",	"tv_clk",			&dss_tv_clk,	CK_443X), -	CLK("omapdss_dss",	"dss_clk",			&dss_dss_clk,	CK_443X),  	CLK("omapdss_dss",	"video_clk",			&dss_48mhz_clk,	CK_443X), -	CLK("omapdss_dss",	"fck",				&dss_fck,	CK_443X), -	/* -	 * On OMAP4, DSS ick is a dummy clock; this is needed for compatibility -	 * with OMAP2/3. -	 */ -	CLK("omapdss_dss",	"ick",				&dummy_ck,	CK_443X), +	CLK("omapdss_dss",	"fck",				&dss_dss_clk,	CK_443X), +	CLK("omapdss_dss",	"ick",				&dss_fck,	CK_443X),  	CLK(NULL,	"efuse_ctrl_cust_fck",		&efuse_ctrl_cust_fck,	CK_443X),  	CLK(NULL,	"emif1_fck",			&emif1_fck,	CK_443X),  	CLK(NULL,	"emif2_fck",			&emif2_fck,	CK_443X), diff --git a/arch/arm/mach-omap2/cm2xxx_3xxx.c b/arch/arm/mach-omap2/cm2xxx_3xxx.c index 9d0dec806e9..38830d8d478 100644 --- a/arch/arm/mach-omap2/cm2xxx_3xxx.c +++ b/arch/arm/mach-omap2/cm2xxx_3xxx.c @@ -247,6 +247,7 @@ struct omap3_cm_regs {  	u32 per_cm_clksel;  	u32 emu_cm_clksel;  	u32 emu_cm_clkstctrl; +	u32 pll_cm_autoidle;  	u32 pll_cm_autoidle2;  	u32 pll_cm_clksel4;  	u32 pll_cm_clksel5; @@ -319,6 +320,15 @@ void omap3_cm_save_context(void)  		omap2_cm_read_mod_reg(OMAP3430_EMU_MOD, CM_CLKSEL1);  	cm_context.emu_cm_clkstctrl =  		omap2_cm_read_mod_reg(OMAP3430_EMU_MOD, OMAP2_CM_CLKSTCTRL); +	/* +	 * As per erratum i671, ROM code does not respect the PER DPLL +	 * programming scheme if CM_AUTOIDLE_PLL.AUTO_PERIPH_DPLL == 1. +	 * In this case, even though this register has been saved in +	 * scratchpad contents, we need to restore AUTO_PERIPH_DPLL +	 * by ourselves. So, we need to save it anyway. +	 */ +	cm_context.pll_cm_autoidle = +		omap2_cm_read_mod_reg(PLL_MOD, CM_AUTOIDLE);  	cm_context.pll_cm_autoidle2 =  		omap2_cm_read_mod_reg(PLL_MOD, CM_AUTOIDLE2);  	cm_context.pll_cm_clksel4 = @@ -441,6 +451,13 @@ void omap3_cm_restore_context(void)  			       CM_CLKSEL1);  	omap2_cm_write_mod_reg(cm_context.emu_cm_clkstctrl, OMAP3430_EMU_MOD,  			       OMAP2_CM_CLKSTCTRL); +	/* +	 * As per erratum i671, ROM code does not respect the PER DPLL +	 * programming scheme if CM_AUTOIDLE_PLL.AUTO_PERIPH_DPLL == 1. +	 * In this case, we need to restore AUTO_PERIPH_DPLL by ourselves. +	 */ +	omap2_cm_write_mod_reg(cm_context.pll_cm_autoidle, PLL_MOD, +			       CM_AUTOIDLE);  	omap2_cm_write_mod_reg(cm_context.pll_cm_autoidle2, PLL_MOD,  			       CM_AUTOIDLE2);  	omap2_cm_write_mod_reg(cm_context.pll_cm_clksel4, PLL_MOD, diff --git a/arch/arm/mach-omap2/control.c b/arch/arm/mach-omap2/control.c index 69527941902..da53ba3917c 100644 --- a/arch/arm/mach-omap2/control.c +++ b/arch/arm/mach-omap2/control.c @@ -316,8 +316,14 @@ void omap3_save_scratchpad_contents(void)  			omap2_cm_read_mod_reg(WKUP_MOD, CM_CLKSEL);  	prcm_block_contents.cm_clken_pll =  			omap2_cm_read_mod_reg(PLL_MOD, CM_CLKEN); +	/* +	 * As per erratum i671, ROM code does not respect the PER DPLL +	 * programming scheme if CM_AUTOIDLE_PLL..AUTO_PERIPH_DPLL == 1. +	 * Then,  in anycase, clear these bits to avoid extra latencies. +	 */  	prcm_block_contents.cm_autoidle_pll = -			omap2_cm_read_mod_reg(PLL_MOD, OMAP3430_CM_AUTOIDLE_PLL); +			omap2_cm_read_mod_reg(PLL_MOD, CM_AUTOIDLE) & +			~OMAP3430_AUTO_PERIPH_DPLL_MASK;  	prcm_block_contents.cm_clksel1_pll =  			omap2_cm_read_mod_reg(PLL_MOD, OMAP3430_CM_CLKSEL1_PLL);  	prcm_block_contents.cm_clksel2_pll = diff --git a/arch/arm/mach-omap2/omap_hwmod_2420_data.c b/arch/arm/mach-omap2/omap_hwmod_2420_data.c index 8eb3ce1bbfb..c4d0ae87d62 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2420_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2420_data.c @@ -1639,6 +1639,7 @@ static struct omap_hwmod_ocp_if *omap2420_gpio1_slaves[] = {  static struct omap_hwmod omap2420_gpio1_hwmod = {  	.name		= "gpio1", +	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,  	.mpu_irqs	= omap242x_gpio1_irqs,  	.mpu_irqs_cnt	= ARRAY_SIZE(omap242x_gpio1_irqs),  	.main_clk	= "gpios_fck", @@ -1669,6 +1670,7 @@ static struct omap_hwmod_ocp_if *omap2420_gpio2_slaves[] = {  static struct omap_hwmod omap2420_gpio2_hwmod = {  	.name		= "gpio2", +	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,  	.mpu_irqs	= omap242x_gpio2_irqs,  	.mpu_irqs_cnt	= ARRAY_SIZE(omap242x_gpio2_irqs),  	.main_clk	= "gpios_fck", @@ -1699,6 +1701,7 @@ static struct omap_hwmod_ocp_if *omap2420_gpio3_slaves[] = {  static struct omap_hwmod omap2420_gpio3_hwmod = {  	.name		= "gpio3", +	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,  	.mpu_irqs	= omap242x_gpio3_irqs,  	.mpu_irqs_cnt	= ARRAY_SIZE(omap242x_gpio3_irqs),  	.main_clk	= "gpios_fck", @@ -1729,6 +1732,7 @@ static struct omap_hwmod_ocp_if *omap2420_gpio4_slaves[] = {  static struct omap_hwmod omap2420_gpio4_hwmod = {  	.name		= "gpio4", +	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,  	.mpu_irqs	= omap242x_gpio4_irqs,  	.mpu_irqs_cnt	= ARRAY_SIZE(omap242x_gpio4_irqs),  	.main_clk	= "gpios_fck", @@ -1782,7 +1786,7 @@ static struct omap_hwmod_irq_info omap2420_dma_system_irqs[] = {  static struct omap_hwmod_addr_space omap2420_dma_system_addrs[] = {  	{  		.pa_start	= 0x48056000, -		.pa_end		= 0x4a0560ff, +		.pa_end		= 0x48056fff,  		.flags		= ADDR_TYPE_RT  	},  }; diff --git a/arch/arm/mach-omap2/omap_hwmod_2430_data.c b/arch/arm/mach-omap2/omap_hwmod_2430_data.c index e6e3810db77..9682dd519f8 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2430_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2430_data.c @@ -1742,6 +1742,7 @@ static struct omap_hwmod_ocp_if *omap2430_gpio1_slaves[] = {  static struct omap_hwmod omap2430_gpio1_hwmod = {  	.name		= "gpio1", +	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,  	.mpu_irqs	= omap243x_gpio1_irqs,  	.mpu_irqs_cnt	= ARRAY_SIZE(omap243x_gpio1_irqs),  	.main_clk	= "gpios_fck", @@ -1772,6 +1773,7 @@ static struct omap_hwmod_ocp_if *omap2430_gpio2_slaves[] = {  static struct omap_hwmod omap2430_gpio2_hwmod = {  	.name		= "gpio2", +	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,  	.mpu_irqs	= omap243x_gpio2_irqs,  	.mpu_irqs_cnt	= ARRAY_SIZE(omap243x_gpio2_irqs),  	.main_clk	= "gpios_fck", @@ -1802,6 +1804,7 @@ static struct omap_hwmod_ocp_if *omap2430_gpio3_slaves[] = {  static struct omap_hwmod omap2430_gpio3_hwmod = {  	.name		= "gpio3", +	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,  	.mpu_irqs	= omap243x_gpio3_irqs,  	.mpu_irqs_cnt	= ARRAY_SIZE(omap243x_gpio3_irqs),  	.main_clk	= "gpios_fck", @@ -1832,6 +1835,7 @@ static struct omap_hwmod_ocp_if *omap2430_gpio4_slaves[] = {  static struct omap_hwmod omap2430_gpio4_hwmod = {  	.name		= "gpio4", +	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,  	.mpu_irqs	= omap243x_gpio4_irqs,  	.mpu_irqs_cnt	= ARRAY_SIZE(omap243x_gpio4_irqs),  	.main_clk	= "gpios_fck", @@ -1862,6 +1866,7 @@ static struct omap_hwmod_ocp_if *omap2430_gpio5_slaves[] = {  static struct omap_hwmod omap2430_gpio5_hwmod = {  	.name		= "gpio5", +	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,  	.mpu_irqs	= omap243x_gpio5_irqs,  	.mpu_irqs_cnt	= ARRAY_SIZE(omap243x_gpio5_irqs),  	.main_clk	= "gpio5_fck", @@ -1915,7 +1920,7 @@ static struct omap_hwmod_irq_info omap2430_dma_system_irqs[] = {  static struct omap_hwmod_addr_space omap2430_dma_system_addrs[] = {  	{  		.pa_start	= 0x48056000, -		.pa_end		= 0x4a0560ff, +		.pa_end		= 0x48056fff,  		.flags		= ADDR_TYPE_RT  	},  }; diff --git a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c index b98e2dfcba2..909a84de668 100644 --- a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c @@ -2141,6 +2141,7 @@ static struct omap_hwmod_ocp_if *omap3xxx_gpio1_slaves[] = {  static struct omap_hwmod omap3xxx_gpio1_hwmod = {  	.name		= "gpio1", +	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,  	.mpu_irqs	= omap3xxx_gpio1_irqs,  	.mpu_irqs_cnt	= ARRAY_SIZE(omap3xxx_gpio1_irqs),  	.main_clk	= "gpio1_ick", @@ -2177,6 +2178,7 @@ static struct omap_hwmod_ocp_if *omap3xxx_gpio2_slaves[] = {  static struct omap_hwmod omap3xxx_gpio2_hwmod = {  	.name		= "gpio2", +	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,  	.mpu_irqs	= omap3xxx_gpio2_irqs,  	.mpu_irqs_cnt	= ARRAY_SIZE(omap3xxx_gpio2_irqs),  	.main_clk	= "gpio2_ick", @@ -2213,6 +2215,7 @@ static struct omap_hwmod_ocp_if *omap3xxx_gpio3_slaves[] = {  static struct omap_hwmod omap3xxx_gpio3_hwmod = {  	.name		= "gpio3", +	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,  	.mpu_irqs	= omap3xxx_gpio3_irqs,  	.mpu_irqs_cnt	= ARRAY_SIZE(omap3xxx_gpio3_irqs),  	.main_clk	= "gpio3_ick", @@ -2249,6 +2252,7 @@ static struct omap_hwmod_ocp_if *omap3xxx_gpio4_slaves[] = {  static struct omap_hwmod omap3xxx_gpio4_hwmod = {  	.name		= "gpio4", +	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,  	.mpu_irqs	= omap3xxx_gpio4_irqs,  	.mpu_irqs_cnt	= ARRAY_SIZE(omap3xxx_gpio4_irqs),  	.main_clk	= "gpio4_ick", @@ -2285,6 +2289,7 @@ static struct omap_hwmod_ocp_if *omap3xxx_gpio5_slaves[] = {  static struct omap_hwmod omap3xxx_gpio5_hwmod = {  	.name		= "gpio5", +	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,  	.mpu_irqs	= omap3xxx_gpio5_irqs,  	.mpu_irqs_cnt	= ARRAY_SIZE(omap3xxx_gpio5_irqs),  	.main_clk	= "gpio5_ick", @@ -2321,6 +2326,7 @@ static struct omap_hwmod_ocp_if *omap3xxx_gpio6_slaves[] = {  static struct omap_hwmod omap3xxx_gpio6_hwmod = {  	.name		= "gpio6", +	.flags		= HWMOD_CONTROL_OPT_CLKS_IN_RESET,  	.mpu_irqs	= omap3xxx_gpio6_irqs,  	.mpu_irqs_cnt	= ARRAY_SIZE(omap3xxx_gpio6_irqs),  	.main_clk	= "gpio6_ick", @@ -2386,7 +2392,7 @@ static struct omap_hwmod_irq_info omap3xxx_dma_system_irqs[] = {  static struct omap_hwmod_addr_space omap3xxx_dma_system_addrs[] = {  	{  		.pa_start	= 0x48056000, -		.pa_end		= 0x4a0560ff, +		.pa_end		= 0x48056fff,  		.flags		= ADDR_TYPE_RT  	},  }; diff --git a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c index 3e88dd3f8ef..abc548a0c98 100644 --- a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c @@ -885,7 +885,7 @@ static struct omap_hwmod_ocp_if *omap44xx_dma_system_masters[] = {  static struct omap_hwmod_addr_space omap44xx_dma_system_addrs[] = {  	{  		.pa_start	= 0x4a056000, -		.pa_end		= 0x4a0560ff, +		.pa_end		= 0x4a056fff,  		.flags		= ADDR_TYPE_RT  	},  }; diff --git a/arch/arm/mach-omap2/omap_l3_smx.c b/arch/arm/mach-omap2/omap_l3_smx.c index 5f2da7565b6..4321e793892 100644 --- a/arch/arm/mach-omap2/omap_l3_smx.c +++ b/arch/arm/mach-omap2/omap_l3_smx.c @@ -196,11 +196,11 @@ static irqreturn_t omap3_l3_app_irq(int irq, void *_l3)  		/* No timeout error for debug sources */  	} -	base = ((l3->rt) + (*(omap3_l3_bases[int_type] + err_source))); -  	/* identify the error source */  	for (err_source = 0; !(status & (1 << err_source)); err_source++)  									; + +	base = l3->rt + *(omap3_l3_bases[int_type] + err_source);  	error = omap3_l3_readll(base, L3_ERROR_LOG);  	if (error) { diff --git a/arch/arm/mach-omap2/pm.c b/arch/arm/mach-omap2/pm.c index 30af3351c2d..49486f522dc 100644 --- a/arch/arm/mach-omap2/pm.c +++ b/arch/arm/mach-omap2/pm.c @@ -89,6 +89,7 @@ static void omap2_init_processor_devices(void)  	if (cpu_is_omap44xx()) {  		_init_omap_device("l3_main_1", &l3_dev);  		_init_omap_device("dsp", &dsp_dev); +		_init_omap_device("iva", &iva_dev);  	} else {  		_init_omap_device("l3_main", &l3_dev);  	} diff --git a/arch/arm/mach-omap2/voltage.c b/arch/arm/mach-omap2/voltage.c index 6fb520999b6..0c1552d9d99 100644 --- a/arch/arm/mach-omap2/voltage.c +++ b/arch/arm/mach-omap2/voltage.c @@ -114,7 +114,6 @@ static int __init _config_common_vdd_data(struct omap_vdd_info *vdd)  	sys_clk_speed /= 1000;  	/* Generic voltage parameters */ -	vdd->curr_volt = 1200000;  	vdd->volt_scale = vp_forceupdate_scale_voltage;  	vdd->vp_enabled = false; diff --git a/arch/arm/mach-pxa/hx4700.c b/arch/arm/mach-pxa/hx4700.c index 6de0ad0eea6..9cdcca59792 100644 --- a/arch/arm/mach-pxa/hx4700.c +++ b/arch/arm/mach-pxa/hx4700.c @@ -711,7 +711,7 @@ static struct regulator_consumer_supply bq24022_consumers[] = {  static struct regulator_init_data bq24022_init_data = {  	.constraints = {  		.max_uA         = 500000, -		.valid_ops_mask = REGULATOR_CHANGE_CURRENT, +		.valid_ops_mask = REGULATOR_CHANGE_CURRENT|REGULATOR_CHANGE_STATUS,  	},  	.num_consumer_supplies  = ARRAY_SIZE(bq24022_consumers),  	.consumer_supplies      = bq24022_consumers, diff --git a/arch/arm/mach-pxa/magician.c b/arch/arm/mach-pxa/magician.c index a72993dde2b..9984ef70bd7 100644 --- a/arch/arm/mach-pxa/magician.c +++ b/arch/arm/mach-pxa/magician.c @@ -599,7 +599,7 @@ static struct regulator_consumer_supply bq24022_consumers[] = {  static struct regulator_init_data bq24022_init_data = {  	.constraints = {  		.max_uA         = 500000, -		.valid_ops_mask = REGULATOR_CHANGE_CURRENT, +		.valid_ops_mask = REGULATOR_CHANGE_CURRENT | REGULATOR_CHANGE_STATUS,  	},  	.num_consumer_supplies  = ARRAY_SIZE(bq24022_consumers),  	.consumer_supplies      = bq24022_consumers, diff --git a/arch/arm/mach-realview/include/mach/barriers.h b/arch/arm/mach-realview/include/mach/barriers.h index 0c5d749d7b5..9a732195aa1 100644 --- a/arch/arm/mach-realview/include/mach/barriers.h +++ b/arch/arm/mach-realview/include/mach/barriers.h @@ -4,5 +4,5 @@   * operation to deadlock the system.   */  #define mb()		dsb() -#define rmb()		dmb() +#define rmb()		dsb()  #define wmb()		mb() diff --git a/arch/arm/mach-tegra/include/mach/barriers.h b/arch/arm/mach-tegra/include/mach/barriers.h index cc115174899..425b42e91ef 100644 --- a/arch/arm/mach-tegra/include/mach/barriers.h +++ b/arch/arm/mach-tegra/include/mach/barriers.h @@ -23,7 +23,7 @@  #include <asm/outercache.h> -#define rmb()		dmb() +#define rmb()		dsb()  #define wmb()		do { dsb(); outer_sync(); } while (0)  #define mb()		wmb() diff --git a/arch/arm/mach-ux500/board-mop500.c b/arch/arm/mach-ux500/board-mop500.c index af913741e6e..6e1907fa94f 100644 --- a/arch/arm/mach-ux500/board-mop500.c +++ b/arch/arm/mach-ux500/board-mop500.c @@ -178,16 +178,15 @@ static struct i2c_board_info __initdata mop500_i2c0_devices[] = {  		.irq		= NOMADIK_GPIO_TO_IRQ(217),  		.platform_data  = &mop500_tc35892_data,  	}, -}; - -/* I2C0 devices only available prior to HREFv60 */ -static struct i2c_board_info __initdata mop500_i2c0_old_devices[] = { +	/* I2C0 devices only available prior to HREFv60 */  	{  		I2C_BOARD_INFO("tps61052", 0x33),  		.platform_data  = &mop500_tps61052_data,  	},  }; +#define NUM_PRE_V60_I2C0_DEVICES 1 +  static struct i2c_board_info __initdata mop500_i2c2_devices[] = {  	{  		/* lp5521 LED driver, 1st device */ @@ -425,6 +424,8 @@ static void __init mop500_uart_init(void)  static void __init mop500_init_machine(void)  { +	int i2c0_devs; +  	/*  	 * The HREFv60 board removed a GPIO expander and routed  	 * all these GPIO pins to the internal GPIO controller @@ -448,11 +449,11 @@ static void __init mop500_init_machine(void)  	platform_device_register(&ab8500_device); -	i2c_register_board_info(0, mop500_i2c0_devices, -				ARRAY_SIZE(mop500_i2c0_devices)); -	if (!machine_is_hrefv60()) -		i2c_register_board_info(0, mop500_i2c0_old_devices, -					ARRAY_SIZE(mop500_i2c0_old_devices)); +	i2c0_devs = ARRAY_SIZE(mop500_i2c0_devices); +	if (machine_is_hrefv60()) +		i2c0_devs -= NUM_PRE_V60_I2C0_DEVICES; + +	i2c_register_board_info(0, mop500_i2c0_devices, i2c0_devs);  	i2c_register_board_info(2, mop500_i2c2_devices,  				ARRAY_SIZE(mop500_i2c2_devices));  } diff --git a/arch/arm/mm/init.c b/arch/arm/mm/init.c index e5f6fc42834..e591513bb53 100644 --- a/arch/arm/mm/init.c +++ b/arch/arm/mm/init.c @@ -392,7 +392,7 @@ free_memmap(unsigned long start_pfn, unsigned long end_pfn)  	 * Convert start_pfn/end_pfn to a struct page pointer.  	 */  	start_pg = pfn_to_page(start_pfn - 1) + 1; -	end_pg = pfn_to_page(end_pfn); +	end_pg = pfn_to_page(end_pfn - 1) + 1;  	/*  	 * Convert to physical addresses, and @@ -426,6 +426,14 @@ static void __init free_unused_memmap(struct meminfo *mi)  		bank_start = bank_pfn_start(bank); +#ifdef CONFIG_SPARSEMEM +		/* +		 * Take care not to free memmap entries that don't exist +		 * due to SPARSEMEM sections which aren't present. +		 */ +		bank_start = min(bank_start, +				 ALIGN(prev_bank_end, PAGES_PER_SECTION)); +#endif  		/*  		 * If we had a previous bank, and there is a space  		 * between the current bank and the previous, free it. @@ -440,6 +448,12 @@ static void __init free_unused_memmap(struct meminfo *mi)  		 */  		prev_bank_end = ALIGN(bank_pfn_end(bank), MAX_ORDER_NR_PAGES);  	} + +#ifdef CONFIG_SPARSEMEM +	if (!IS_ALIGNED(prev_bank_end, PAGES_PER_SECTION)) +		free_memmap(prev_bank_end, +			    ALIGN(prev_bank_end, PAGES_PER_SECTION)); +#endif  }  static void __init free_highpages(void) diff --git a/arch/arm/mm/proc-xscale.S b/arch/arm/mm/proc-xscale.S index ce233bcbf50..42af97664c9 100644 --- a/arch/arm/mm/proc-xscale.S +++ b/arch/arm/mm/proc-xscale.S @@ -395,7 +395,7 @@ ENTRY(xscale_dma_a0_map_area)  	teq	r2, #DMA_TO_DEVICE  	beq	xscale_dma_clean_range  	b	xscale_dma_flush_range -ENDPROC(xscsale_dma_a0_map_area) +ENDPROC(xscale_dma_a0_map_area)  /*   *	dma_unmap_area(start, size, dir) diff --git a/arch/arm/plat-mxc/gpio.c b/arch/arm/plat-mxc/gpio.c index 7a107246fd9..6cd6d7f686f 100644 --- a/arch/arm/plat-mxc/gpio.c +++ b/arch/arm/plat-mxc/gpio.c @@ -295,6 +295,12 @@ static int mxc_gpio_direction_output(struct gpio_chip *chip,  	return 0;  } +/* + * This lock class tells lockdep that GPIO irqs are in a different + * category than their parents, so it won't report false recursion. + */ +static struct lock_class_key gpio_lock_class; +  int __init mxc_gpio_init(struct mxc_gpio_port *port, int cnt)  {  	int i, j; @@ -311,6 +317,7 @@ int __init mxc_gpio_init(struct mxc_gpio_port *port, int cnt)  		__raw_writel(~0, port[i].base + GPIO_ISR);  		for (j = port[i].virtual_irq_start;  			j < port[i].virtual_irq_start + 32; j++) { +			irq_set_lockdep_class(j, &gpio_lock_class);  			irq_set_chip_and_handler(j, &gpio_irq_chip,  						 handle_level_irq);  			set_irq_flags(j, IRQF_VALID); diff --git a/arch/arm/plat-mxc/ssi-fiq.S b/arch/arm/plat-mxc/ssi-fiq.S index 4ddce565b35..8397a2dd19f 100644 --- a/arch/arm/plat-mxc/ssi-fiq.S +++ b/arch/arm/plat-mxc/ssi-fiq.S @@ -124,6 +124,8 @@ imx_ssi_fiq_start:  1:  		@ return from FIQ  		subs	pc, lr, #4 + +		.align  imx_ssi_fiq_base:  		.word 0x0  imx_ssi_fiq_rx_buffer: diff --git a/arch/arm/plat-omap/iommu.c b/arch/arm/plat-omap/iommu.c index 8a51fd58f65..34fc31ee908 100644 --- a/arch/arm/plat-omap/iommu.c +++ b/arch/arm/plat-omap/iommu.c @@ -793,6 +793,8 @@ static irqreturn_t iommu_fault_handler(int irq, void *data)  	clk_enable(obj->clk);  	errs = iommu_report_fault(obj, &da);  	clk_disable(obj->clk); +	if (errs == 0) +		return IRQ_HANDLED;  	/* Fault callback or TLB/PTE Dynamic loading */  	if (obj->isr && !obj->isr(obj, da, errs, obj->isr_priv))  |