]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/spl/spl_xip.c
spl: dm: use CONFIG_IS_ENABLED to test for the DM option
[people/ms/u-boot.git] / common / spl / spl_xip.c
CommitLineData
c6d9e9db
VM
1/*
2 * Copyright (C) 2017 Vikas Manocha <vikas.manocha@st.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <spl.h>
9
10static int spl_xip(struct spl_image_info *spl_image,
11 struct spl_boot_device *bootdev)
12{
13#ifdef CONFIG_SPL_OS_BOOT
14 if (!spl_start_uboot()) {
15 spl_image->arg = (void *)CONFIG_SYS_FDT_BASE;
16 spl_image->name = "Linux";
17 spl_image->os = IH_OS_LINUX;
18 spl_image->load_addr = CONFIG_SYS_LOAD_ADDR;
19 spl_image->entry_point = CONFIG_SYS_LOAD_ADDR;
20 debug("spl: payload xipImage, load addr: 0x%lx\n",
21 spl_image->load_addr);
22 return 0;
23 }
24#endif
25 return(spl_parse_image_header(spl_image, (const struct image_header *)
26 CONFIG_SYS_UBOOT_BASE));
27}
28SPL_LOAD_IMAGE_METHOD("XIP", 0, BOOT_DEVICE_XIP, spl_xip);