hc
2024-08-12 233ab1bd4c5697f5cdec94e60206e8c6ac609b4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
 * (C) Copyright 2016
 * Xilinx, Inc.
 *
 * (C) Copyright 2016
 * Toradex AG
 *
 * Michal Simek <michal.simek@xilinx.com>
 * Stefan Agner <stefan.agner@toradex.com>
 *
 * SPDX-License-Identifier:    GPL-2.0+
 */
#include <common.h>
#include <spl.h>
#include <linux/libfdt.h>
 
#ifndef CONFIG_SPL_LOAD_FIT_ADDRESS
# define CONFIG_SPL_LOAD_FIT_ADDRESS    0
#endif
 
static ulong spl_ram_load_read(struct spl_load_info *load, ulong sector,
                  ulong count, void *buf)
{
   debug("%s: sector %lx, count %lx, buf %lx\n",
         __func__, sector, count, (ulong)buf);
   memcpy(buf, (void *)(CONFIG_SPL_LOAD_FIT_ADDRESS + sector), count);
   return count;
}
 
static int spl_ram_load_image(struct spl_image_info *spl_image,
                 struct spl_boot_device *bootdev)
{
   struct image_header *header;
 
   header = (struct image_header *)CONFIG_SPL_LOAD_FIT_ADDRESS;
 
#if CONFIG_IS_ENABLED(DFU)
   if (bootdev->boot_device == BOOT_DEVICE_DFU)
       spl_dfu_cmd(0, "dfu_alt_info_ram", "ram", "0");
#endif
 
#ifdef CONFIG_SPL_FIT_IMAGE_MULTIPLE
   if ((IS_ENABLED(CONFIG_SPL_LOAD_FIT) &&
        image_get_magic(header) == FDT_MAGIC) ||
        CONFIG_SPL_FIT_IMAGE_MULTIPLE > 1) {
#else
   if (IS_ENABLED(CONFIG_SPL_LOAD_FIT) &&
       image_get_magic(header) == FDT_MAGIC) {
#endif
       struct spl_load_info load;
 
       debug("Found FIT\n");
       load.bl_len = 1;
       load.read = spl_ram_load_read;
       spl_load_simple_fit(spl_image, &load, 0, header);
   } else {
       debug("Legacy image\n");
       /*
        * Get the header.  It will point to an address defined by
        * handoff which will tell where the image located inside
        * the flash. For now, it will temporary fixed to address
        * pointed by U-Boot.
        */
       header = (struct image_header *)
           (CONFIG_SYS_TEXT_BASE -    sizeof(struct image_header));
 
       spl_parse_image_header(spl_image, header);
   }
 
   return 0;
}
#if defined(CONFIG_SPL_RAM_DEVICE)
SPL_LOAD_IMAGE_METHOD("RAM", 0, BOOT_DEVICE_RAM, spl_ram_load_image);
#endif
#if CONFIG_IS_ENABLED(DFU)
SPL_LOAD_IMAGE_METHOD("DFU", 0, BOOT_DEVICE_DFU, spl_ram_load_image);
#endif