blob: 87dd5532103a455a7614c6fc305b89096dfb3042 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dan Murphy773b5942014-01-16 11:23:29 -06002/*
3 * (C) Copyright 2014
4 * Texas Instruments, <www.ti.com>
5 *
6 * Dan Murphy <dmurphy@ti.com>
7 *
Dan Murphy773b5942014-01-16 11:23:29 -06008 * FAT Image Functions copied from spl_mmc.c
9 */
10
11#include <common.h>
12#include <spl.h>
13#include <asm/u-boot.h>
14#include <fat.h>
Nikita Kiryanov339245b2015-11-08 17:11:45 +020015#include <errno.h>
Dan Murphy773b5942014-01-16 11:23:29 -060016#include <image.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090017#include <linux/libfdt.h>
Dan Murphy773b5942014-01-16 11:23:29 -060018
19static int fat_registered;
20
Simon Glass4101f682016-02-29 15:25:34 -070021static int spl_register_fat_device(struct blk_desc *block_dev, int partition)
Dan Murphy773b5942014-01-16 11:23:29 -060022{
23 int err = 0;
24
25 if (fat_registered)
26 return err;
27
28 err = fat_register_device(block_dev, partition);
29 if (err) {
30#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
Dan Murphy8cffe5b2014-01-16 11:23:30 -060031 printf("%s: fat register err - %d\n", __func__, err);
Dan Murphy773b5942014-01-16 11:23:29 -060032#endif
Guillaume GARDET7d2b4e72014-10-15 17:53:14 +020033 return err;
Dan Murphy773b5942014-01-16 11:23:29 -060034 }
35
36 fat_registered = 1;
37
38 return err;
39}
40
Lokesh Vutla97ca3642016-05-24 10:34:39 +053041static ulong spl_fit_read(struct spl_load_info *load, ulong file_offset,
42 ulong size, void *buf)
43{
44 loff_t actread;
45 int ret;
46 char *filename = (char *)load->filename;
47
48 ret = fat_read_file(filename, buf, file_offset, size, &actread);
49 if (ret)
50 return ret;
51
52 return actread;
53}
54
Simon Glass710e9ca2016-09-24 18:20:15 -060055int spl_load_image_fat(struct spl_image_info *spl_image,
56 struct blk_desc *block_dev, int partition,
57 const char *filename)
Dan Murphy773b5942014-01-16 11:23:29 -060058{
59 int err;
60 struct image_header *header;
61
62 err = spl_register_fat_device(block_dev, partition);
Dan Murphy8cffe5b2014-01-16 11:23:30 -060063 if (err)
Dan Murphy773b5942014-01-16 11:23:29 -060064 goto end;
65
66 header = (struct image_header *)(CONFIG_SYS_TEXT_BASE -
67 sizeof(struct image_header));
68
69 err = file_fat_read(filename, header, sizeof(struct image_header));
70 if (err <= 0)
71 goto end;
72
Lokesh Vutla97ca3642016-05-24 10:34:39 +053073 if (IS_ENABLED(CONFIG_SPL_LOAD_FIT) &&
74 image_get_magic(header) == FDT_MAGIC) {
75 struct spl_load_info load;
Dan Murphy773b5942014-01-16 11:23:29 -060076
Lokesh Vutla97ca3642016-05-24 10:34:39 +053077 debug("Found FIT\n");
78 load.read = spl_fit_read;
79 load.bl_len = 1;
80 load.filename = (void *)filename;
81 load.priv = NULL;
82
Simon Glassf4d7d852016-09-24 18:20:16 -060083 return spl_load_simple_fit(spl_image, &load, 0, header);
Lokesh Vutla97ca3642016-05-24 10:34:39 +053084 } else {
Simon Glass710e9ca2016-09-24 18:20:15 -060085 err = spl_parse_image_header(spl_image, header);
Lokesh Vutla97ca3642016-05-24 10:34:39 +053086 if (err)
87 goto end;
88
Michal Simek1eefe142016-04-27 16:07:20 +020089 err = file_fat_read(filename,
Simon Glass710e9ca2016-09-24 18:20:15 -060090 (u8 *)(uintptr_t)spl_image->load_addr, 0);
Lokesh Vutla97ca3642016-05-24 10:34:39 +053091 }
Dan Murphy773b5942014-01-16 11:23:29 -060092
93end:
94#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
95 if (err <= 0)
Dan Murphy8cffe5b2014-01-16 11:23:30 -060096 printf("%s: error reading image %s, err - %d\n",
97 __func__, filename, err);
Dan Murphy773b5942014-01-16 11:23:29 -060098#endif
99
100 return (err <= 0);
101}
102
103#ifdef CONFIG_SPL_OS_BOOT
Simon Glass710e9ca2016-09-24 18:20:15 -0600104int spl_load_image_fat_os(struct spl_image_info *spl_image,
105 struct blk_desc *block_dev, int partition)
Dan Murphy773b5942014-01-16 11:23:29 -0600106{
107 int err;
Tom Riniae1590e2014-03-28 12:03:42 -0400108 __maybe_unused char *file;
Dan Murphy773b5942014-01-16 11:23:29 -0600109
110 err = spl_register_fat_device(block_dev, partition);
Dan Murphy8cffe5b2014-01-16 11:23:30 -0600111 if (err)
112 return err;
Dan Murphy773b5942014-01-16 11:23:29 -0600113
Tom Riniae1590e2014-03-28 12:03:42 -0400114#if defined(CONFIG_SPL_ENV_SUPPORT) && defined(CONFIG_SPL_OS_BOOT)
Simon Glass00caae62017-08-03 12:22:12 -0600115 file = env_get("falcon_args_file");
Tom Riniae1590e2014-03-28 12:03:42 -0400116 if (file) {
117 err = file_fat_read(file, (void *)CONFIG_SYS_SPL_ARGS_ADDR, 0);
118 if (err <= 0) {
119 printf("spl: error reading image %s, err - %d, falling back to default\n",
120 file, err);
121 goto defaults;
122 }
Simon Glass00caae62017-08-03 12:22:12 -0600123 file = env_get("falcon_image_file");
Tom Riniae1590e2014-03-28 12:03:42 -0400124 if (file) {
Simon Glass710e9ca2016-09-24 18:20:15 -0600125 err = spl_load_image_fat(spl_image, block_dev,
126 partition, file);
Tom Riniae1590e2014-03-28 12:03:42 -0400127 if (err != 0) {
128 puts("spl: falling back to default\n");
129 goto defaults;
130 }
131
132 return 0;
133 } else
134 puts("spl: falcon_image_file not set in environment, falling back to default\n");
135 } else
136 puts("spl: falcon_args_file not set in environment, falling back to default\n");
137
138defaults:
139#endif
140
Guillaume GARDET205b4f32014-10-15 17:53:11 +0200141 err = file_fat_read(CONFIG_SPL_FS_LOAD_ARGS_NAME,
Dan Murphy773b5942014-01-16 11:23:29 -0600142 (void *)CONFIG_SYS_SPL_ARGS_ADDR, 0);
143 if (err <= 0) {
144#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
Dan Murphy8cffe5b2014-01-16 11:23:30 -0600145 printf("%s: error reading image %s, err - %d\n",
Guillaume GARDET205b4f32014-10-15 17:53:11 +0200146 __func__, CONFIG_SPL_FS_LOAD_ARGS_NAME, err);
Dan Murphy773b5942014-01-16 11:23:29 -0600147#endif
148 return -1;
149 }
150
Simon Glass710e9ca2016-09-24 18:20:15 -0600151 return spl_load_image_fat(spl_image, block_dev, partition,
Guillaume GARDET205b4f32014-10-15 17:53:11 +0200152 CONFIG_SPL_FS_LOAD_KERNEL_NAME);
Dan Murphy773b5942014-01-16 11:23:29 -0600153}
Nikita Kiryanov339245b2015-11-08 17:11:45 +0200154#else
Simon Glass710e9ca2016-09-24 18:20:15 -0600155int spl_load_image_fat_os(struct spl_image_info *spl_image,
156 struct blk_desc *block_dev, int partition)
Nikita Kiryanov339245b2015-11-08 17:11:45 +0200157{
158 return -ENOSYS;
159}
Dan Murphy773b5942014-01-16 11:23:29 -0600160#endif