blob: ca56fe9015834ed71e7e92d6725c5325505105ad [file] [log] [blame]
Christian Riesch32b11272011-12-09 09:47:35 +00001/*
2 * Copyright (C) 2011 OMICRON electronics GmbH
3 *
4 * based on drivers/mtd/nand/nand_spl_load.c
5 *
6 * Copyright (C) 2011
7 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
8 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Christian Riesch32b11272011-12-09 09:47:35 +000010 */
11
12#include <common.h>
Simon Glassff0960f2014-10-13 23:42:04 -060013#include <spi.h>
Christian Riesch32b11272011-12-09 09:47:35 +000014#include <spi_flash.h>
Nikita Kiryanov36afd452015-11-08 17:11:49 +020015#include <errno.h>
Tom Rinia4cc1c42012-08-14 14:34:10 -070016#include <spl.h>
Christian Riesch32b11272011-12-09 09:47:35 +000017
Tom Rinifa1a73f2014-04-03 07:52:55 -040018#ifdef CONFIG_SPL_OS_BOOT
19/*
20 * Load the kernel, check for a valid header we can parse, and if found load
21 * the kernel and then device tree.
22 */
23static int spi_load_image_os(struct spi_flash *flash,
24 struct image_header *header)
25{
26 /* Read for a header, parse or error out. */
27 spi_flash_read(flash, CONFIG_SYS_SPI_KERNEL_OFFS, 0x40,
28 (void *)header);
29
30 if (image_get_magic(header) != IH_MAGIC)
31 return -1;
32
33 spl_parse_image_header(header);
34
35 spi_flash_read(flash, CONFIG_SYS_SPI_KERNEL_OFFS,
36 spl_image.size, (void *)spl_image.load_addr);
37
38 /* Read device tree. */
39 spi_flash_read(flash, CONFIG_SYS_SPI_ARGS_OFFS,
40 CONFIG_SYS_SPI_ARGS_SIZE,
41 (void *)CONFIG_SYS_SPL_ARGS_ADDR);
42
43 return 0;
44}
45#endif
46
Christian Riesch32b11272011-12-09 09:47:35 +000047/*
48 * The main entry for SPI booting. It's necessary that SDRAM is already
49 * configured and available since this code loads the main U-Boot image
50 * from SPI into SDRAM and starts it from there.
51 */
Nikita Kiryanov36afd452015-11-08 17:11:49 +020052int spl_spi_load_image(void)
Christian Riesch32b11272011-12-09 09:47:35 +000053{
Nikita Kiryanov36afd452015-11-08 17:11:49 +020054 int err = 0;
Christian Riesch32b11272011-12-09 09:47:35 +000055 struct spi_flash *flash;
Tom Rinia4cc1c42012-08-14 14:34:10 -070056 struct image_header *header;
Christian Riesch32b11272011-12-09 09:47:35 +000057
58 /*
59 * Load U-Boot image from SPI flash into RAM
60 */
61
Nikita Kiryanov88e34e52014-08-20 15:08:48 +030062 flash = spi_flash_probe(CONFIG_SF_DEFAULT_BUS,
63 CONFIG_SF_DEFAULT_CS,
64 CONFIG_SF_DEFAULT_SPEED,
65 CONFIG_SF_DEFAULT_MODE);
Christian Riesch32b11272011-12-09 09:47:35 +000066 if (!flash) {
Tom Rinia4cc1c42012-08-14 14:34:10 -070067 puts("SPI probe failed.\n");
Nikita Kiryanov36afd452015-11-08 17:11:49 +020068 return -ENODEV;
Christian Riesch32b11272011-12-09 09:47:35 +000069 }
70
Tom Rinia4cc1c42012-08-14 14:34:10 -070071 /* use CONFIG_SYS_TEXT_BASE as temporary storage area */
72 header = (struct image_header *)(CONFIG_SYS_TEXT_BASE);
Christian Riesch32b11272011-12-09 09:47:35 +000073
Tom Rinifa1a73f2014-04-03 07:52:55 -040074#ifdef CONFIG_SPL_OS_BOOT
75 if (spl_start_uboot() || spi_load_image_os(flash, header))
76#endif
77 {
78 /* Load u-boot, mkimage header is 64 bytes. */
Nikita Kiryanov36afd452015-11-08 17:11:49 +020079 err = spi_flash_read(flash, CONFIG_SYS_SPI_U_BOOT_OFFS, 0x40,
80 (void *)header);
81 if (err)
82 return err;
83
Tom Rinifa1a73f2014-04-03 07:52:55 -040084 spl_parse_image_header(header);
Nikita Kiryanov36afd452015-11-08 17:11:49 +020085 err = spi_flash_read(flash, CONFIG_SYS_SPI_U_BOOT_OFFS,
Tom Rinifa1a73f2014-04-03 07:52:55 -040086 spl_image.size, (void *)spl_image.load_addr);
87 }
Nikita Kiryanov36afd452015-11-08 17:11:49 +020088
89 return err;
Christian Riesch32b11272011-12-09 09:47:35 +000090}