blob: 5b0d96925ed4436a64f171b82f8a56f5e9a778f7 [file] [log] [blame]
Dan Murphy773b5942014-01-16 11:23:29 -06001/*
2 * (C) Copyright 2014
3 * Texas Instruments, <www.ti.com>
4 *
5 * Dan Murphy <dmurphy@ti.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 *
9 * FAT Image Functions copied from spl_mmc.c
10 */
11
12#include <common.h>
13#include <spl.h>
14#include <asm/u-boot.h>
15#include <fat.h>
Nikita Kiryanov339245b2015-11-08 17:11:45 +020016#include <errno.h>
Dan Murphy773b5942014-01-16 11:23:29 -060017#include <image.h>
18
19static int fat_registered;
20
21#ifdef CONFIG_SPL_FAT_SUPPORT
Simon Glass4101f682016-02-29 15:25:34 -070022static int spl_register_fat_device(struct blk_desc *block_dev, int partition)
Dan Murphy773b5942014-01-16 11:23:29 -060023{
24 int err = 0;
25
26 if (fat_registered)
27 return err;
28
29 err = fat_register_device(block_dev, partition);
30 if (err) {
31#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
Dan Murphy8cffe5b2014-01-16 11:23:30 -060032 printf("%s: fat register err - %d\n", __func__, err);
Dan Murphy773b5942014-01-16 11:23:29 -060033#endif
Guillaume GARDET7d2b4e72014-10-15 17:53:14 +020034 return err;
Dan Murphy773b5942014-01-16 11:23:29 -060035 }
36
37 fat_registered = 1;
38
39 return err;
40}
41
Simon Glass4101f682016-02-29 15:25:34 -070042int spl_load_image_fat(struct blk_desc *block_dev,
Dan Murphy773b5942014-01-16 11:23:29 -060043 int partition,
44 const char *filename)
45{
46 int err;
47 struct image_header *header;
48
49 err = spl_register_fat_device(block_dev, partition);
Dan Murphy8cffe5b2014-01-16 11:23:30 -060050 if (err)
Dan Murphy773b5942014-01-16 11:23:29 -060051 goto end;
52
53 header = (struct image_header *)(CONFIG_SYS_TEXT_BASE -
54 sizeof(struct image_header));
55
56 err = file_fat_read(filename, header, sizeof(struct image_header));
57 if (err <= 0)
58 goto end;
59
Marek Vasut7e0f2262016-04-29 00:44:54 +020060 err = spl_parse_image_header(header);
Tom Rinid550e822016-05-23 11:51:13 -040061 if (err)
Marek Vasut7e0f2262016-04-29 00:44:54 +020062 goto end;
Dan Murphy773b5942014-01-16 11:23:29 -060063
64 err = file_fat_read(filename, (u8 *)spl_image.load_addr, 0);
65
66end:
67#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
68 if (err <= 0)
Dan Murphy8cffe5b2014-01-16 11:23:30 -060069 printf("%s: error reading image %s, err - %d\n",
70 __func__, filename, err);
Dan Murphy773b5942014-01-16 11:23:29 -060071#endif
72
73 return (err <= 0);
74}
75
76#ifdef CONFIG_SPL_OS_BOOT
Simon Glass4101f682016-02-29 15:25:34 -070077int spl_load_image_fat_os(struct blk_desc *block_dev, int partition)
Dan Murphy773b5942014-01-16 11:23:29 -060078{
79 int err;
Tom Riniae1590e2014-03-28 12:03:42 -040080 __maybe_unused char *file;
Dan Murphy773b5942014-01-16 11:23:29 -060081
82 err = spl_register_fat_device(block_dev, partition);
Dan Murphy8cffe5b2014-01-16 11:23:30 -060083 if (err)
84 return err;
Dan Murphy773b5942014-01-16 11:23:29 -060085
Tom Riniae1590e2014-03-28 12:03:42 -040086#if defined(CONFIG_SPL_ENV_SUPPORT) && defined(CONFIG_SPL_OS_BOOT)
87 file = getenv("falcon_args_file");
88 if (file) {
89 err = file_fat_read(file, (void *)CONFIG_SYS_SPL_ARGS_ADDR, 0);
90 if (err <= 0) {
91 printf("spl: error reading image %s, err - %d, falling back to default\n",
92 file, err);
93 goto defaults;
94 }
95 file = getenv("falcon_image_file");
96 if (file) {
97 err = spl_load_image_fat(block_dev, partition, file);
98 if (err != 0) {
99 puts("spl: falling back to default\n");
100 goto defaults;
101 }
102
103 return 0;
104 } else
105 puts("spl: falcon_image_file not set in environment, falling back to default\n");
106 } else
107 puts("spl: falcon_args_file not set in environment, falling back to default\n");
108
109defaults:
110#endif
111
Guillaume GARDET205b4f32014-10-15 17:53:11 +0200112 err = file_fat_read(CONFIG_SPL_FS_LOAD_ARGS_NAME,
Dan Murphy773b5942014-01-16 11:23:29 -0600113 (void *)CONFIG_SYS_SPL_ARGS_ADDR, 0);
114 if (err <= 0) {
115#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
Dan Murphy8cffe5b2014-01-16 11:23:30 -0600116 printf("%s: error reading image %s, err - %d\n",
Guillaume GARDET205b4f32014-10-15 17:53:11 +0200117 __func__, CONFIG_SPL_FS_LOAD_ARGS_NAME, err);
Dan Murphy773b5942014-01-16 11:23:29 -0600118#endif
119 return -1;
120 }
121
122 return spl_load_image_fat(block_dev, partition,
Guillaume GARDET205b4f32014-10-15 17:53:11 +0200123 CONFIG_SPL_FS_LOAD_KERNEL_NAME);
Dan Murphy773b5942014-01-16 11:23:29 -0600124}
Nikita Kiryanov339245b2015-11-08 17:11:45 +0200125#else
Simon Glass4101f682016-02-29 15:25:34 -0700126int spl_load_image_fat_os(struct blk_desc *block_dev, int partition)
Nikita Kiryanov339245b2015-11-08 17:11:45 +0200127{
128 return -ENOSYS;
129}
Dan Murphy773b5942014-01-16 11:23:29 -0600130#endif
131#endif