9
0
Fork 0
barebox/include/init.h

30 lines
921 B
C

#ifndef _INIT_H
#define _INIT_H
typedef int (*initcall_t)(void);
#define __define_initcall(level,fn,id) \
static initcall_t __initcall_##fn##id __attribute__((__used__)) \
__attribute__((__section__(".initcall." level))) = fn
#define core_initcall(fn) __define_initcall("0",fn,0)
#define postcore_initcall(fn) __define_initcall("1",fn,1)
#define console_initcall(fn) __define_initcall("2",fn,2)
#define coredevice_initcall(fn) __define_initcall("4",fn,4)
#define fs_initcall(fn) __define_initcall("5",fn,5)
#define device_initcall(fn) __define_initcall("6",fn,6)
#define late_initcall(fn) __define_initcall("7",fn,7)
/* section for code used very early when
* - we're not running from where we linked at
* - bss not cleared
* - static variables not initialized
*
* Mainly useful for booting from NAND Controllers
*/
#define __bare_init __section(.text_bare_init.text)
#endif /* _INIT_H */