blob: 5f6e9617749a70f8044c4dc102a33684f42836be [file] [log] [blame]
Igor Grinbergf4a40f02014-11-03 11:32:20 +02001/*
2 * (C) Copyright 2014 CompuLab, Ltd. <www.compulab.co.il>
3 *
4 * Authors: Igor Grinberg <grinberg@compulab.co.il>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <common.h>
Igor Grinbergf4a40f02014-11-03 11:32:20 +020010#include <bmp_layout.h>
tomas.melin@vaisala.com7583f1f2017-01-13 13:20:13 +020011#include <errno.h>
Nikita Kiryanov870dd302015-10-29 11:54:41 +020012#include <fs.h>
tomas.melin@vaisala.com7583f1f2017-01-13 13:20:13 +020013#include <image.h>
14#include <nand.h>
15#include <sata.h>
16#include <spi.h>
17#include <spi_flash.h>
18#include <splash.h>
19#include <usb.h>
Igor Grinbergf4a40f02014-11-03 11:32:20 +020020
21DECLARE_GLOBAL_DATA_PTR;
22
Nikita Kiryanov7e8d7f22015-01-14 10:42:52 +020023#ifdef CONFIG_SPI_FLASH
24static struct spi_flash *sf;
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020025static int splash_sf_read_raw(u32 bmp_load_addr, int offset, size_t read_size)
Nikita Kiryanov7e8d7f22015-01-14 10:42:52 +020026{
27 if (!sf) {
28 sf = spi_flash_probe(CONFIG_SF_DEFAULT_BUS,
29 CONFIG_SF_DEFAULT_CS,
30 CONFIG_SF_DEFAULT_SPEED,
31 CONFIG_SF_DEFAULT_MODE);
32 if (!sf)
33 return -ENODEV;
34 }
35
36 return spi_flash_read(sf, offset, read_size, (void *)bmp_load_addr);
37}
38#else
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020039static int splash_sf_read_raw(u32 bmp_load_addr, int offset, size_t read_size)
Nikita Kiryanov7e8d7f22015-01-14 10:42:52 +020040{
41 debug("%s: sf support not available\n", __func__);
42 return -ENOSYS;
43}
44#endif
45
Igor Grinbergf4a40f02014-11-03 11:32:20 +020046#ifdef CONFIG_CMD_NAND
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020047static int splash_nand_read_raw(u32 bmp_load_addr, int offset, size_t read_size)
Nikita Kiryanov7be4cd22015-01-14 10:42:50 +020048{
Scott Woodb616d9b2016-05-30 13:57:55 -050049 return nand_read_skip_bad(nand_info[nand_curr_device], offset,
Nikita Kiryanov7be4cd22015-01-14 10:42:50 +020050 &read_size, NULL,
Scott Woodb616d9b2016-05-30 13:57:55 -050051 nand_info[nand_curr_device]->size,
Nikita Kiryanov7be4cd22015-01-14 10:42:50 +020052 (u_char *)bmp_load_addr);
53}
54#else
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020055static int splash_nand_read_raw(u32 bmp_load_addr, int offset, size_t read_size)
Nikita Kiryanov7be4cd22015-01-14 10:42:50 +020056{
57 debug("%s: nand support not available\n", __func__);
58 return -ENOSYS;
59}
60#endif
61
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020062static int splash_storage_read_raw(struct splash_location *location,
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +020063 u32 bmp_load_addr, size_t read_size)
Nikita Kiryanov7be4cd22015-01-14 10:42:50 +020064{
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +020065 u32 offset;
66
67 if (!location)
68 return -EINVAL;
69
70 offset = location->offset;
71 switch (location->storage) {
72 case SPLASH_STORAGE_NAND:
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020073 return splash_nand_read_raw(bmp_load_addr, offset, read_size);
Nikita Kiryanov7e8d7f22015-01-14 10:42:52 +020074 case SPLASH_STORAGE_SF:
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020075 return splash_sf_read_raw(bmp_load_addr, offset, read_size);
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +020076 default:
77 printf("Unknown splash location\n");
78 }
79
80 return -EINVAL;
Nikita Kiryanov7be4cd22015-01-14 10:42:50 +020081}
82
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +020083static int splash_load_raw(struct splash_location *location, u32 bmp_load_addr)
Igor Grinbergf4a40f02014-11-03 11:32:20 +020084{
85 struct bmp_header *bmp_hdr;
86 int res;
87 size_t bmp_size, bmp_header_size = sizeof(struct bmp_header);
88
89 if (bmp_load_addr + bmp_header_size >= gd->start_addr_sp)
90 goto splash_address_too_high;
91
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020092 res = splash_storage_read_raw(location, bmp_load_addr, bmp_header_size);
Igor Grinbergf4a40f02014-11-03 11:32:20 +020093 if (res < 0)
94 return res;
95
96 bmp_hdr = (struct bmp_header *)bmp_load_addr;
97 bmp_size = le32_to_cpu(bmp_hdr->file_size);
98
99 if (bmp_load_addr + bmp_size >= gd->start_addr_sp)
100 goto splash_address_too_high;
101
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +0200102 return splash_storage_read_raw(location, bmp_load_addr, bmp_size);
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200103
104splash_address_too_high:
Nikita Kiryanovf82eb2f2015-01-14 10:42:54 +0200105 printf("Error: splashimage address too high. Data overwrites U-Boot and/or placed beyond DRAM boundaries.\n");
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200106
Nikita Kiryanov6947e3f2015-01-14 10:42:49 +0200107 return -EFAULT;
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200108}
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200109
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200110static int splash_select_fs_dev(struct splash_location *location)
111{
112 int res;
113
114 switch (location->storage) {
115 case SPLASH_STORAGE_MMC:
116 res = fs_set_blk_dev("mmc", location->devpart, FS_TYPE_ANY);
117 break;
Nikita Kiryanov9bb4e942015-10-29 11:54:42 +0200118 case SPLASH_STORAGE_USB:
119 res = fs_set_blk_dev("usb", location->devpart, FS_TYPE_ANY);
120 break;
Nikita Kiryanov50c2d2e2015-10-29 11:54:43 +0200121 case SPLASH_STORAGE_SATA:
122 res = fs_set_blk_dev("sata", location->devpart, FS_TYPE_ANY);
123 break;
Eran Matityahu1cb075c2016-06-07 10:38:37 +0300124 case SPLASH_STORAGE_NAND:
125 if (location->ubivol != NULL)
126 res = fs_set_blk_dev("ubi", NULL, FS_TYPE_UBIFS);
127 else
128 res = -ENODEV;
129 break;
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200130 default:
131 printf("Error: unsupported location storage.\n");
132 return -ENODEV;
133 }
134
135 if (res)
136 printf("Error: could not access storage.\n");
137
138 return res;
139}
140
Nikita Kiryanov9bb4e942015-10-29 11:54:42 +0200141#ifdef CONFIG_USB_STORAGE
142static int splash_init_usb(void)
143{
144 int err;
145
146 err = usb_init();
147 if (err)
148 return err;
149
Alexey Brodkind7b60fb2016-07-01 22:47:36 +0300150#ifndef CONFIG_DM_USB
151 err = usb_stor_scan(1) < 0 ? -ENODEV : 0;
152#endif
153
154 return err;
Nikita Kiryanov9bb4e942015-10-29 11:54:42 +0200155}
156#else
157static inline int splash_init_usb(void)
158{
159 printf("Cannot load splash image: no USB support\n");
160 return -ENOSYS;
161}
162#endif
163
Nikita Kiryanov50c2d2e2015-10-29 11:54:43 +0200164#ifdef CONFIG_CMD_SATA
165static int splash_init_sata(void)
166{
167 return sata_initialize();
168}
169#else
170static inline int splash_init_sata(void)
171{
172 printf("Cannot load splash image: no SATA support\n");
173 return -ENOSYS;
174}
175#endif
176
Eran Matityahu1cb075c2016-06-07 10:38:37 +0300177#ifdef CONFIG_CMD_UBIFS
178static int splash_mount_ubifs(struct splash_location *location)
179{
180 int res;
181 char cmd[32];
182
183 sprintf(cmd, "ubi part %s", location->mtdpart);
184 res = run_command(cmd, 0);
185 if (res)
186 return res;
187
188 sprintf(cmd, "ubifsmount %s", location->ubivol);
189 res = run_command(cmd, 0);
190
191 return res;
192}
193
194static inline int splash_umount_ubifs(void)
195{
196 return run_command("ubifsumount", 0);
197}
198#else
199static inline int splash_mount_ubifs(struct splash_location *location)
200{
201 printf("Cannot load splash image: no UBIFS support\n");
202 return -ENOSYS;
203}
204
205static inline int splash_umount_ubifs(void)
206{
207 printf("Cannot unmount UBIFS: no UBIFS support\n");
208 return -ENOSYS;
209}
210#endif
211
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200212#define SPLASH_SOURCE_DEFAULT_FILE_NAME "splash.bmp"
213
214static int splash_load_fs(struct splash_location *location, u32 bmp_load_addr)
215{
Nikita Kiryanov9bb4e942015-10-29 11:54:42 +0200216 int res = 0;
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200217 loff_t bmp_size;
218 char *splash_file;
219
220 splash_file = getenv("splashfile");
221 if (!splash_file)
222 splash_file = SPLASH_SOURCE_DEFAULT_FILE_NAME;
223
Nikita Kiryanov9bb4e942015-10-29 11:54:42 +0200224 if (location->storage == SPLASH_STORAGE_USB)
225 res = splash_init_usb();
226
Nikita Kiryanov50c2d2e2015-10-29 11:54:43 +0200227 if (location->storage == SPLASH_STORAGE_SATA)
228 res = splash_init_sata();
229
Eran Matityahu1cb075c2016-06-07 10:38:37 +0300230 if (location->ubivol != NULL)
231 res = splash_mount_ubifs(location);
232
Nikita Kiryanov9bb4e942015-10-29 11:54:42 +0200233 if (res)
234 return res;
235
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200236 res = splash_select_fs_dev(location);
237 if (res)
Eran Matityahu1cb075c2016-06-07 10:38:37 +0300238 goto out;
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200239
240 res = fs_size(splash_file, &bmp_size);
241 if (res) {
242 printf("Error (%d): cannot determine file size\n", res);
Eran Matityahu1cb075c2016-06-07 10:38:37 +0300243 goto out;
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200244 }
245
246 if (bmp_load_addr + bmp_size >= gd->start_addr_sp) {
247 printf("Error: splashimage address too high. Data overwrites U-Boot and/or placed beyond DRAM boundaries.\n");
Eran Matityahu1cb075c2016-06-07 10:38:37 +0300248 res = -EFAULT;
249 goto out;
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200250 }
251
252 splash_select_fs_dev(location);
Eran Matityahu1cb075c2016-06-07 10:38:37 +0300253 res = fs_read(splash_file, bmp_load_addr, 0, 0, NULL);
254
255out:
256 if (location->ubivol != NULL)
257 splash_umount_ubifs();
258
259 return res;
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200260}
261
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +0200262/**
263 * select_splash_location - return the splash location based on board support
264 * and env variable "splashsource".
265 *
266 * @locations: An array of supported splash locations.
267 * @size: Size of splash_locations array.
268 *
269 * @return: If a null set of splash locations is given, or
270 * splashsource env variable is set to unsupported value
271 * return NULL.
272 * If splashsource env variable is not defined
273 * return the first entry in splash_locations as default.
274 * If splashsource env variable contains a supported value
275 * return the location selected by splashsource.
276 */
277static struct splash_location *select_splash_location(
278 struct splash_location *locations, uint size)
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200279{
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +0200280 int i;
281 char *env_splashsource;
282
283 if (!locations || size == 0)
284 return NULL;
285
286 env_splashsource = getenv("splashsource");
287 if (env_splashsource == NULL)
288 return &locations[0];
289
290 for (i = 0; i < size; i++) {
291 if (!strcmp(locations[i].name, env_splashsource))
292 return &locations[i];
293 }
294
295 printf("splashsource env variable set to unsupported value\n");
296 return NULL;
297}
298
Nikita Kiryanovf82eb2f2015-01-14 10:42:54 +0200299/**
300 * splash_source_load - load splash image from a supported location.
301 *
302 * Select a splash image location based on the value of splashsource environment
303 * variable and the board supported splash source locations, and load a
304 * splashimage to the address pointed to by splashimage environment variable.
305 *
306 * @locations: An array of supported splash locations.
307 * @size: Size of splash_locations array.
308 *
309 * @return: 0 on success, negative value on failure.
310 */
311int splash_source_load(struct splash_location *locations, uint size)
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +0200312{
313 struct splash_location *splash_location;
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200314 char *env_splashimage_value;
315 u32 bmp_load_addr;
316
317 env_splashimage_value = getenv("splashimage");
318 if (env_splashimage_value == NULL)
Nikita Kiryanov6947e3f2015-01-14 10:42:49 +0200319 return -ENOENT;
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200320
321 bmp_load_addr = simple_strtoul(env_splashimage_value, 0, 16);
322 if (bmp_load_addr == 0) {
323 printf("Error: bad splashimage address specified\n");
Nikita Kiryanov6947e3f2015-01-14 10:42:49 +0200324 return -EFAULT;
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200325 }
326
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +0200327 splash_location = select_splash_location(locations, size);
328 if (!splash_location)
329 return -EINVAL;
330
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200331 if (splash_location->flags & SPLASH_STORAGE_RAW)
332 return splash_load_raw(splash_location, bmp_load_addr);
333 else if (splash_location->flags & SPLASH_STORAGE_FS)
334 return splash_load_fs(splash_location, bmp_load_addr);
335
336 return -EINVAL;
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200337}