2 * uClinux flat-format executables
4 * Copyright 2003-2009 Analog Devices Inc.
6 * Licensed under the GPL-2
9 #ifndef __BLACKFIN_FLAT_H__
10 #define __BLACKFIN_FLAT_H__
12 #include <asm/unaligned.h>
14 #define flat_argvp_envp_on_stack() 0
15 #define flat_old_ram_flag(flags) (flags)
17 extern unsigned long bfin_get_addr_from_rp (u32
*ptr
, u32 relval
,
18 u32 flags
, u32
*persistent
);
20 extern void bfin_put_addr_at_rp(u32
*ptr
, u32 addr
, u32 relval
);
22 /* The amount by which a relocation can exceed the program image limits
23 without being regarded as an error. */
25 #define flat_reloc_valid(reloc, size) ((reloc) <= (size))
27 static inline int flat_get_addr_from_rp(u32 __user
*rp
, u32 relval
, u32 flags
,
28 u32
*addr
, u32
*persistent
)
30 *addr
= bfin_get_addr_from_rp(rp
, relval
, flags
, persistent
);
34 static inline int flat_put_addr_at_rp(u32 __user
*rp
, u32 val
, u32 relval
)
36 bfin_put_addr_at_rp(rp
, val
, relval
);
40 /* Convert a relocation entry into an address. */
41 static inline unsigned long
42 flat_get_relocate_addr (unsigned long relval
)
44 return relval
& 0x03ffffff; /* Mask out top 6 bits */
47 static inline int flat_set_persistent(u32 relval
, u32
*persistent
)
49 int type
= (relval
>> 26) & 7;
51 *persistent
= relval
<< 16;
57 static inline int flat_addr_absolute(unsigned long relval
)
59 return (relval
& (1 << 29)) != 0;
62 #endif /* __BLACKFIN_FLAT_H__ */