diff options
| author | Rodrigo Vivi <[email protected]> | 2018-07-23 09:13:12 -0700 | 
|---|---|---|
| committer | Rodrigo Vivi <[email protected]> | 2018-07-23 09:13:12 -0700 | 
| commit | c74a7469f97c0f40b46e82ee979f9fb1bb6e847c (patch) | |
| tree | f2690a1a916b73ef94657fbf0e0141ae57701825 /arch/s390/kernel/early_nobss.c | |
| parent | 6f15a7de86c8cf2dc09fc9e6d07047efa40ef809 (diff) | |
| parent | 500775074f88d9cf5416bed2ca19592812d62c41 (diff) | |
Merge drm/drm-next into drm-intel-next-queued
We need a backmerge to get DP_DPCD_REV_14 before we push other
i915 changes to dinq that could break compilation.
Signed-off-by: Rodrigo Vivi <[email protected]>
Diffstat (limited to 'arch/s390/kernel/early_nobss.c')
| -rw-r--r-- | arch/s390/kernel/early_nobss.c | 65 | 
1 files changed, 65 insertions, 0 deletions
| diff --git a/arch/s390/kernel/early_nobss.c b/arch/s390/kernel/early_nobss.c new file mode 100644 index 000000000000..2d84fc48df3a --- /dev/null +++ b/arch/s390/kernel/early_nobss.c @@ -0,0 +1,65 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + *    Copyright IBM Corp. 2007, 2018 + */ + +/* + * Early setup functions which may not rely on an initialized bss + * section. The last thing that is supposed to happen here is + * initialization of the bss section. + */ + +#include <linux/processor.h> +#include <linux/string.h> +#include <asm/sections.h> +#include <asm/lowcore.h> +#include <asm/setup.h> +#include <asm/timex.h> +#include "entry.h" + +static void __init reset_tod_clock(void) +{ +	u64 time; + +	if (store_tod_clock(&time) == 0) +		return; +	/* TOD clock not running. Set the clock to Unix Epoch. */ +	if (set_tod_clock(TOD_UNIX_EPOCH) != 0 || store_tod_clock(&time) != 0) +		disabled_wait(0); + +	memset(tod_clock_base, 0, 16); +	*(__u64 *) &tod_clock_base[1] = TOD_UNIX_EPOCH; +	S390_lowcore.last_update_clock = TOD_UNIX_EPOCH; +} + +static void __init rescue_initrd(void) +{ +	unsigned long min_initrd_addr = (unsigned long) _end + (4UL << 20); + +	/* +	 * Just like in case of IPL from VM reader we make sure there is a +	 * gap of 4MB between end of kernel and start of initrd. +	 * That way we can also be sure that saving an NSS will succeed, +	 * which however only requires different segments. +	 */ +	if (!IS_ENABLED(CONFIG_BLK_DEV_INITRD)) +		return; +	if (!INITRD_START || !INITRD_SIZE) +		return; +	if (INITRD_START >= min_initrd_addr) +		return; +	memmove((void *) min_initrd_addr, (void *) INITRD_START, INITRD_SIZE); +	INITRD_START = min_initrd_addr; +} + +static void __init clear_bss_section(void) +{ +	memset(__bss_start, 0, __bss_stop - __bss_start); +} + +void __init startup_init_nobss(void) +{ +	reset_tod_clock(); +	rescue_initrd(); +	clear_bss_section(); +} |