diff options
| author | Ralf Baechle <ralf@linux-mips.org> | 2008-03-08 09:56:28 +0000 | 
|---|---|---|
| committer | Ralf Baechle <ralf@linux-mips.org> | 2008-03-12 14:14:41 +0000 | 
| commit | 234fcd1484a66158b561b36b421547f0ab85fee9 (patch) | |
| tree | b63fbb134fd673e1713f0462e6e0642b418da616 /arch/mips/mm/uasm.c | |
| parent | 1af0eea21431bed5d07dffc0fefab57fd72f7e90 (diff) | |
| download | olio-linux-3.10-234fcd1484a66158b561b36b421547f0ab85fee9.tar.xz olio-linux-3.10-234fcd1484a66158b561b36b421547f0ab85fee9.zip  | |
[MIPS] Fix loads of section missmatches
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm/uasm.c')
| -rw-r--r-- | arch/mips/mm/uasm.c | 68 | 
1 files changed, 34 insertions, 34 deletions
diff --git a/arch/mips/mm/uasm.c b/arch/mips/mm/uasm.c index e3f74ed5f70..1a6f7704cc8 100644 --- a/arch/mips/mm/uasm.c +++ b/arch/mips/mm/uasm.c @@ -82,7 +82,7 @@ struct insn {  	 | (e) << RE_SH						\  	 | (f) << FUNC_SH) -static struct insn insn_table[] __initdata = { +static struct insn insn_table[] __cpuinitdata = {  	{ insn_addiu, M(addiu_op, 0, 0, 0, 0, 0), RS | RT | SIMM },  	{ insn_addu, M(spec_op, 0, 0, 0, 0, addu_op), RS | RT | RD },  	{ insn_and, M(spec_op, 0, 0, 0, 0, and_op), RS | RT | RD }, @@ -135,7 +135,7 @@ static struct insn insn_table[] __initdata = {  #undef M -static inline __init u32 build_rs(u32 arg) +static inline __cpuinit u32 build_rs(u32 arg)  {  	if (arg & ~RS_MASK)  		printk(KERN_WARNING "Micro-assembler field overflow\n"); @@ -143,7 +143,7 @@ static inline __init u32 build_rs(u32 arg)  	return (arg & RS_MASK) << RS_SH;  } -static inline __init u32 build_rt(u32 arg) +static inline __cpuinit u32 build_rt(u32 arg)  {  	if (arg & ~RT_MASK)  		printk(KERN_WARNING "Micro-assembler field overflow\n"); @@ -151,7 +151,7 @@ static inline __init u32 build_rt(u32 arg)  	return (arg & RT_MASK) << RT_SH;  } -static inline __init u32 build_rd(u32 arg) +static inline __cpuinit u32 build_rd(u32 arg)  {  	if (arg & ~RD_MASK)  		printk(KERN_WARNING "Micro-assembler field overflow\n"); @@ -159,7 +159,7 @@ static inline __init u32 build_rd(u32 arg)  	return (arg & RD_MASK) << RD_SH;  } -static inline __init u32 build_re(u32 arg) +static inline __cpuinit u32 build_re(u32 arg)  {  	if (arg & ~RE_MASK)  		printk(KERN_WARNING "Micro-assembler field overflow\n"); @@ -167,7 +167,7 @@ static inline __init u32 build_re(u32 arg)  	return (arg & RE_MASK) << RE_SH;  } -static inline __init u32 build_simm(s32 arg) +static inline __cpuinit u32 build_simm(s32 arg)  {  	if (arg > 0x7fff || arg < -0x8000)  		printk(KERN_WARNING "Micro-assembler field overflow\n"); @@ -175,7 +175,7 @@ static inline __init u32 build_simm(s32 arg)  	return arg & 0xffff;  } -static inline __init u32 build_uimm(u32 arg) +static inline __cpuinit u32 build_uimm(u32 arg)  {  	if (arg & ~IMM_MASK)  		printk(KERN_WARNING "Micro-assembler field overflow\n"); @@ -183,7 +183,7 @@ static inline __init u32 build_uimm(u32 arg)  	return arg & IMM_MASK;  } -static inline __init u32 build_bimm(s32 arg) +static inline __cpuinit u32 build_bimm(s32 arg)  {  	if (arg > 0x1ffff || arg < -0x20000)  		printk(KERN_WARNING "Micro-assembler field overflow\n"); @@ -194,7 +194,7 @@ static inline __init u32 build_bimm(s32 arg)  	return ((arg < 0) ? (1 << 15) : 0) | ((arg >> 2) & 0x7fff);  } -static inline __init u32 build_jimm(u32 arg) +static inline __cpuinit u32 build_jimm(u32 arg)  {  	if (arg & ~((JIMM_MASK) << 2))  		printk(KERN_WARNING "Micro-assembler field overflow\n"); @@ -202,7 +202,7 @@ static inline __init u32 build_jimm(u32 arg)  	return (arg >> 2) & JIMM_MASK;  } -static inline __init u32 build_func(u32 arg) +static inline __cpuinit u32 build_func(u32 arg)  {  	if (arg & ~FUNC_MASK)  		printk(KERN_WARNING "Micro-assembler field overflow\n"); @@ -210,7 +210,7 @@ static inline __init u32 build_func(u32 arg)  	return arg & FUNC_MASK;  } -static inline __init u32 build_set(u32 arg) +static inline __cpuinit u32 build_set(u32 arg)  {  	if (arg & ~SET_MASK)  		printk(KERN_WARNING "Micro-assembler field overflow\n"); @@ -222,7 +222,7 @@ static inline __init u32 build_set(u32 arg)   * The order of opcode arguments is implicitly left to right,   * starting with RS and ending with FUNC or IMM.   */ -static void __init build_insn(u32 **buf, enum opcode opc, ...) +static void __cpuinit build_insn(u32 **buf, enum opcode opc, ...)  {  	struct insn *ip = NULL;  	unsigned int i; @@ -375,14 +375,14 @@ I_u3u1u2(_xor)  I_u2u1u3(_xori)  /* Handle labels. */ -void __init uasm_build_label(struct uasm_label **lab, u32 *addr, int lid) +void __cpuinit uasm_build_label(struct uasm_label **lab, u32 *addr, int lid)  {  	(*lab)->addr = addr;  	(*lab)->lab = lid;  	(*lab)++;  } -int __init uasm_in_compat_space_p(long addr) +int __cpuinit uasm_in_compat_space_p(long addr)  {  	/* Is this address in 32bit compat space? */  #ifdef CONFIG_64BIT @@ -392,7 +392,7 @@ int __init uasm_in_compat_space_p(long addr)  #endif  } -int __init uasm_rel_highest(long val) +int __cpuinit uasm_rel_highest(long val)  {  #ifdef CONFIG_64BIT  	return ((((val + 0x800080008000L) >> 48) & 0xffff) ^ 0x8000) - 0x8000; @@ -401,7 +401,7 @@ int __init uasm_rel_highest(long val)  #endif  } -int __init uasm_rel_higher(long val) +int __cpuinit uasm_rel_higher(long val)  {  #ifdef CONFIG_64BIT  	return ((((val + 0x80008000L) >> 32) & 0xffff) ^ 0x8000) - 0x8000; @@ -410,17 +410,17 @@ int __init uasm_rel_higher(long val)  #endif  } -int __init uasm_rel_hi(long val) +int __cpuinit uasm_rel_hi(long val)  {  	return ((((val + 0x8000L) >> 16) & 0xffff) ^ 0x8000) - 0x8000;  } -int __init uasm_rel_lo(long val) +int __cpuinit uasm_rel_lo(long val)  {  	return ((val & 0xffff) ^ 0x8000) - 0x8000;  } -void __init UASM_i_LA_mostly(u32 **buf, unsigned int rs, long addr) +void __cpuinit UASM_i_LA_mostly(u32 **buf, unsigned int rs, long addr)  {  	if (!uasm_in_compat_space_p(addr)) {  		uasm_i_lui(buf, rs, uasm_rel_highest(addr)); @@ -436,7 +436,7 @@ void __init UASM_i_LA_mostly(u32 **buf, unsigned int rs, long addr)  		uasm_i_lui(buf, rs, uasm_rel_hi(addr));  } -void __init UASM_i_LA(u32 **buf, unsigned int rs, long addr) +void __cpuinit UASM_i_LA(u32 **buf, unsigned int rs, long addr)  {  	UASM_i_LA_mostly(buf, rs, addr);  	if (uasm_rel_lo(addr)) { @@ -448,7 +448,7 @@ void __init UASM_i_LA(u32 **buf, unsigned int rs, long addr)  }  /* Handle relocations. */ -void __init +void __cpuinit  uasm_r_mips_pc16(struct uasm_reloc **rel, u32 *addr, int lid)  {  	(*rel)->addr = addr; @@ -457,7 +457,7 @@ uasm_r_mips_pc16(struct uasm_reloc **rel, u32 *addr, int lid)  	(*rel)++;  } -static inline void __init +static inline void __cpuinit  __resolve_relocs(struct uasm_reloc *rel, struct uasm_label *lab)  {  	long laddr = (long)lab->addr; @@ -474,7 +474,7 @@ __resolve_relocs(struct uasm_reloc *rel, struct uasm_label *lab)  	}  } -void __init +void __cpuinit  uasm_resolve_relocs(struct uasm_reloc *rel, struct uasm_label *lab)  {  	struct uasm_label *l; @@ -485,7 +485,7 @@ uasm_resolve_relocs(struct uasm_reloc *rel, struct uasm_label *lab)  				__resolve_relocs(rel, l);  } -void __init +void __cpuinit  uasm_move_relocs(struct uasm_reloc *rel, u32 *first, u32 *end, long off)  {  	for (; rel->lab != UASM_LABEL_INVALID; rel++) @@ -493,7 +493,7 @@ uasm_move_relocs(struct uasm_reloc *rel, u32 *first, u32 *end, long off)  			rel->addr += off;  } -void __init +void __cpuinit  uasm_move_labels(struct uasm_label *lab, u32 *first, u32 *end, long off)  {  	for (; lab->lab != UASM_LABEL_INVALID; lab++) @@ -501,7 +501,7 @@ uasm_move_labels(struct uasm_label *lab, u32 *first, u32 *end, long off)  			lab->addr += off;  } -void __init +void __cpuinit  uasm_copy_handler(struct uasm_reloc *rel, struct uasm_label *lab, u32 *first,  		  u32 *end, u32 *target)  { @@ -513,7 +513,7 @@ uasm_copy_handler(struct uasm_reloc *rel, struct uasm_label *lab, u32 *first,  	uasm_move_labels(lab, first, end, off);  } -int __init uasm_insn_has_bdelay(struct uasm_reloc *rel, u32 *addr) +int __cpuinit uasm_insn_has_bdelay(struct uasm_reloc *rel, u32 *addr)  {  	for (; rel->lab != UASM_LABEL_INVALID; rel++) {  		if (rel->addr == addr @@ -526,49 +526,49 @@ int __init uasm_insn_has_bdelay(struct uasm_reloc *rel, u32 *addr)  }  /* Convenience functions for labeled branches. */ -void __init +void __cpuinit  uasm_il_bltz(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid)  {  	uasm_r_mips_pc16(r, *p, lid);  	uasm_i_bltz(p, reg, 0);  } -void __init +void __cpuinit  uasm_il_b(u32 **p, struct uasm_reloc **r, int lid)  {  	uasm_r_mips_pc16(r, *p, lid);  	uasm_i_b(p, 0);  } -void __init +void __cpuinit  uasm_il_beqz(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid)  {  	uasm_r_mips_pc16(r, *p, lid);  	uasm_i_beqz(p, reg, 0);  } -void __init +void __cpuinit  uasm_il_beqzl(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid)  {  	uasm_r_mips_pc16(r, *p, lid);  	uasm_i_beqzl(p, reg, 0);  } -void __init +void __cpuinit  uasm_il_bnez(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid)  {  	uasm_r_mips_pc16(r, *p, lid);  	uasm_i_bnez(p, reg, 0);  } -void __init +void __cpuinit  uasm_il_bgezl(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid)  {  	uasm_r_mips_pc16(r, *p, lid);  	uasm_i_bgezl(p, reg, 0);  } -void __init +void __cpuinit  uasm_il_bgez(u32 **p, struct uasm_reloc **r, unsigned int reg, int lid)  {  	uasm_r_mips_pc16(r, *p, lid);  |