4bc277ac9c
This reworks much of the bootmem setup and initialization code allowing us to get rid of duplicate work between the NUMA and non-NUMA cases. The end result is that we end up with a much more flexible interface for supporting more complex topologies (fake NUMA, highmem, etc, etc.) which is entirely LMB backed. This is an incremental step for more NUMA work as well as gradually enabling migration off of bootmem entirely. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
27 lines
702 B
C
27 lines
702 B
C
#ifndef _SH_SETUP_H
|
|
#define _SH_SETUP_H
|
|
|
|
#include <asm-generic/setup.h>
|
|
|
|
#ifdef __KERNEL__
|
|
/*
|
|
* This is set up by the setup-routine at boot-time
|
|
*/
|
|
#define PARAM ((unsigned char *)empty_zero_page)
|
|
|
|
#define MOUNT_ROOT_RDONLY (*(unsigned long *) (PARAM+0x000))
|
|
#define RAMDISK_FLAGS (*(unsigned long *) (PARAM+0x004))
|
|
#define ORIG_ROOT_DEV (*(unsigned long *) (PARAM+0x008))
|
|
#define LOADER_TYPE (*(unsigned long *) (PARAM+0x00c))
|
|
#define INITRD_START (*(unsigned long *) (PARAM+0x010))
|
|
#define INITRD_SIZE (*(unsigned long *) (PARAM+0x014))
|
|
/* ... */
|
|
#define COMMAND_LINE ((char *) (PARAM+0x100))
|
|
|
|
void sh_mv_setup(void);
|
|
void check_for_initrd(void);
|
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
#endif /* _SH_SETUP_H */
|