blob: 914f12f4cb554ca0cb4bade313232c4c625a6099 [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>
10#include <nand.h>
Nikita Kiryanov6947e3f2015-01-14 10:42:49 +020011#include <errno.h>
Nikita Kiryanovf82eb2f2015-01-14 10:42:54 +020012#include <splash.h>
Nikita Kiryanov7e8d7f22015-01-14 10:42:52 +020013#include <spi_flash.h>
14#include <spi.h>
Nikita Kiryanov9bb4e942015-10-29 11:54:42 +020015#include <usb.h>
Nikita Kiryanov50c2d2e2015-10-29 11:54:43 +020016#include <sata.h>
Igor Grinbergf4a40f02014-11-03 11:32:20 +020017#include <bmp_layout.h>
Nikita Kiryanov870dd302015-10-29 11:54:41 +020018#include <fs.h>
Igor Grinbergf4a40f02014-11-03 11:32:20 +020019
20DECLARE_GLOBAL_DATA_PTR;
21
Nikita Kiryanov7e8d7f22015-01-14 10:42:52 +020022#ifdef CONFIG_SPI_FLASH
23static struct spi_flash *sf;
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020024static int splash_sf_read_raw(u32 bmp_load_addr, int offset, size_t read_size)
Nikita Kiryanov7e8d7f22015-01-14 10:42:52 +020025{
26 if (!sf) {
27 sf = spi_flash_probe(CONFIG_SF_DEFAULT_BUS,
28 CONFIG_SF_DEFAULT_CS,
29 CONFIG_SF_DEFAULT_SPEED,
30 CONFIG_SF_DEFAULT_MODE);
31 if (!sf)
32 return -ENODEV;
33 }
34
35 return spi_flash_read(sf, offset, read_size, (void *)bmp_load_addr);
36}
37#else
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020038static int splash_sf_read_raw(u32 bmp_load_addr, int offset, size_t read_size)
Nikita Kiryanov7e8d7f22015-01-14 10:42:52 +020039{
40 debug("%s: sf support not available\n", __func__);
41 return -ENOSYS;
42}
43#endif
44
Igor Grinbergf4a40f02014-11-03 11:32:20 +020045#ifdef CONFIG_CMD_NAND
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020046static int splash_nand_read_raw(u32 bmp_load_addr, int offset, size_t read_size)
Nikita Kiryanov7be4cd22015-01-14 10:42:50 +020047{
Scott Woodb616d9b2016-05-30 13:57:55 -050048 return nand_read_skip_bad(nand_info[nand_curr_device], offset,
Nikita Kiryanov7be4cd22015-01-14 10:42:50 +020049 &read_size, NULL,
Scott Woodb616d9b2016-05-30 13:57:55 -050050 nand_info[nand_curr_device]->size,
Nikita Kiryanov7be4cd22015-01-14 10:42:50 +020051 (u_char *)bmp_load_addr);
52}
53#else
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020054static int splash_nand_read_raw(u32 bmp_load_addr, int offset, size_t read_size)
Nikita Kiryanov7be4cd22015-01-14 10:42:50 +020055{
56 debug("%s: nand support not available\n", __func__);
57 return -ENOSYS;
58}
59#endif
60
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020061static int splash_storage_read_raw(struct splash_location *location,
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +020062 u32 bmp_load_addr, size_t read_size)
Nikita Kiryanov7be4cd22015-01-14 10:42:50 +020063{
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +020064 u32 offset;
65
66 if (!location)
67 return -EINVAL;
68
69 offset = location->offset;
70 switch (location->storage) {
71 case SPLASH_STORAGE_NAND:
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020072 return splash_nand_read_raw(bmp_load_addr, offset, read_size);
Nikita Kiryanov7e8d7f22015-01-14 10:42:52 +020073 case SPLASH_STORAGE_SF:
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020074 return splash_sf_read_raw(bmp_load_addr, offset, read_size);
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +020075 default:
76 printf("Unknown splash location\n");
77 }
78
79 return -EINVAL;
Nikita Kiryanov7be4cd22015-01-14 10:42:50 +020080}
81
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +020082static int splash_load_raw(struct splash_location *location, u32 bmp_load_addr)
Igor Grinbergf4a40f02014-11-03 11:32:20 +020083{
84 struct bmp_header *bmp_hdr;
85 int res;
86 size_t bmp_size, bmp_header_size = sizeof(struct bmp_header);
87
88 if (bmp_load_addr + bmp_header_size >= gd->start_addr_sp)
89 goto splash_address_too_high;
90
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +020091 res = splash_storage_read_raw(location, bmp_load_addr, bmp_header_size);
Igor Grinbergf4a40f02014-11-03 11:32:20 +020092 if (res < 0)
93 return res;
94
95 bmp_hdr = (struct bmp_header *)bmp_load_addr;
96 bmp_size = le32_to_cpu(bmp_hdr->file_size);
97
98 if (bmp_load_addr + bmp_size >= gd->start_addr_sp)
99 goto splash_address_too_high;
100
Nikita Kiryanovbcbb6442015-10-29 11:54:40 +0200101 return splash_storage_read_raw(location, bmp_load_addr, bmp_size);
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200102
103splash_address_too_high:
Nikita Kiryanovf82eb2f2015-01-14 10:42:54 +0200104 printf("Error: splashimage address too high. Data overwrites U-Boot and/or placed beyond DRAM boundaries.\n");
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200105
Nikita Kiryanov6947e3f2015-01-14 10:42:49 +0200106 return -EFAULT;
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200107}
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200108
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200109static int splash_select_fs_dev(struct splash_location *location)
110{
111 int res;
112
113 switch (location->storage) {
114 case SPLASH_STORAGE_MMC:
115 res = fs_set_blk_dev("mmc", location->devpart, FS_TYPE_ANY);
116 break;
Nikita Kiryanov9bb4e942015-10-29 11:54:42 +0200117 case SPLASH_STORAGE_USB:
118 res = fs_set_blk_dev("usb", location->devpart, FS_TYPE_ANY);
119 break;
Nikita Kiryanov50c2d2e2015-10-29 11:54:43 +0200120 case SPLASH_STORAGE_SATA:
121 res = fs_set_blk_dev("sata", location->devpart, FS_TYPE_ANY);
122 break;
Eran Matityahu1cb075c2016-06-07 10:38:37 +0300123 case SPLASH_STORAGE_NAND:
124 if (location->ubivol != NULL)
125 res = fs_set_blk_dev("ubi", NULL, FS_TYPE_UBIFS);
126 else
127 res = -ENODEV;
128 break;
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200129 default:
130 printf("Error: unsupported location storage.\n");
131 return -ENODEV;
132 }
133
134 if (res)
135 printf("Error: could not access storage.\n");
136
137 return res;
138}
139
Nikita Kiryanov9bb4e942015-10-29 11:54:42 +0200140#ifdef CONFIG_USB_STORAGE
141static int splash_init_usb(void)
142{
143 int err;
144
145 err = usb_init();
146 if (err)
147 return err;
148
149 return usb_stor_scan(1) < 0 ? -ENODEV : 0;
150}
151#else
152static inline int splash_init_usb(void)
153{
154 printf("Cannot load splash image: no USB support\n");
155 return -ENOSYS;
156}
157#endif
158
Nikita Kiryanov50c2d2e2015-10-29 11:54:43 +0200159#ifdef CONFIG_CMD_SATA
160static int splash_init_sata(void)
161{
162 return sata_initialize();
163}
164#else
165static inline int splash_init_sata(void)
166{
167 printf("Cannot load splash image: no SATA support\n");
168 return -ENOSYS;
169}
170#endif
171
Eran Matityahu1cb075c2016-06-07 10:38:37 +0300172#ifdef CONFIG_CMD_UBIFS
173static int splash_mount_ubifs(struct splash_location *location)
174{
175 int res;
176 char cmd[32];
177
178 sprintf(cmd, "ubi part %s", location->mtdpart);
179 res = run_command(cmd, 0);
180 if (res)
181 return res;
182
183 sprintf(cmd, "ubifsmount %s", location->ubivol);
184 res = run_command(cmd, 0);
185
186 return res;
187}
188
189static inline int splash_umount_ubifs(void)
190{
191 return run_command("ubifsumount", 0);
192}
193#else
194static inline int splash_mount_ubifs(struct splash_location *location)
195{
196 printf("Cannot load splash image: no UBIFS support\n");
197 return -ENOSYS;
198}
199
200static inline int splash_umount_ubifs(void)
201{
202 printf("Cannot unmount UBIFS: no UBIFS support\n");
203 return -ENOSYS;
204}
205#endif
206
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200207#define SPLASH_SOURCE_DEFAULT_FILE_NAME "splash.bmp"
208
209static int splash_load_fs(struct splash_location *location, u32 bmp_load_addr)
210{
Nikita Kiryanov9bb4e942015-10-29 11:54:42 +0200211 int res = 0;
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200212 loff_t bmp_size;
213 char *splash_file;
214
215 splash_file = getenv("splashfile");
216 if (!splash_file)
217 splash_file = SPLASH_SOURCE_DEFAULT_FILE_NAME;
218
Nikita Kiryanov9bb4e942015-10-29 11:54:42 +0200219 if (location->storage == SPLASH_STORAGE_USB)
220 res = splash_init_usb();
221
Nikita Kiryanov50c2d2e2015-10-29 11:54:43 +0200222 if (location->storage == SPLASH_STORAGE_SATA)
223 res = splash_init_sata();
224
Eran Matityahu1cb075c2016-06-07 10:38:37 +0300225 if (location->ubivol != NULL)
226 res = splash_mount_ubifs(location);
227
Nikita Kiryanov9bb4e942015-10-29 11:54:42 +0200228 if (res)
229 return res;
230
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200231 res = splash_select_fs_dev(location);
232 if (res)
Eran Matityahu1cb075c2016-06-07 10:38:37 +0300233 goto out;
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200234
235 res = fs_size(splash_file, &bmp_size);
236 if (res) {
237 printf("Error (%d): cannot determine file size\n", res);
Eran Matityahu1cb075c2016-06-07 10:38:37 +0300238 goto out;
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200239 }
240
241 if (bmp_load_addr + bmp_size >= gd->start_addr_sp) {
242 printf("Error: splashimage address too high. Data overwrites U-Boot and/or placed beyond DRAM boundaries.\n");
Eran Matityahu1cb075c2016-06-07 10:38:37 +0300243 res = -EFAULT;
244 goto out;
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200245 }
246
247 splash_select_fs_dev(location);
Eran Matityahu1cb075c2016-06-07 10:38:37 +0300248 res = fs_read(splash_file, bmp_load_addr, 0, 0, NULL);
249
250out:
251 if (location->ubivol != NULL)
252 splash_umount_ubifs();
253
254 return res;
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200255}
256
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +0200257/**
258 * select_splash_location - return the splash location based on board support
259 * and env variable "splashsource".
260 *
261 * @locations: An array of supported splash locations.
262 * @size: Size of splash_locations array.
263 *
264 * @return: If a null set of splash locations is given, or
265 * splashsource env variable is set to unsupported value
266 * return NULL.
267 * If splashsource env variable is not defined
268 * return the first entry in splash_locations as default.
269 * If splashsource env variable contains a supported value
270 * return the location selected by splashsource.
271 */
272static struct splash_location *select_splash_location(
273 struct splash_location *locations, uint size)
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200274{
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +0200275 int i;
276 char *env_splashsource;
277
278 if (!locations || size == 0)
279 return NULL;
280
281 env_splashsource = getenv("splashsource");
282 if (env_splashsource == NULL)
283 return &locations[0];
284
285 for (i = 0; i < size; i++) {
286 if (!strcmp(locations[i].name, env_splashsource))
287 return &locations[i];
288 }
289
290 printf("splashsource env variable set to unsupported value\n");
291 return NULL;
292}
293
Nikita Kiryanovf82eb2f2015-01-14 10:42:54 +0200294/**
295 * splash_source_load - load splash image from a supported location.
296 *
297 * Select a splash image location based on the value of splashsource environment
298 * variable and the board supported splash source locations, and load a
299 * splashimage to the address pointed to by splashimage environment variable.
300 *
301 * @locations: An array of supported splash locations.
302 * @size: Size of splash_locations array.
303 *
304 * @return: 0 on success, negative value on failure.
305 */
306int splash_source_load(struct splash_location *locations, uint size)
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +0200307{
308 struct splash_location *splash_location;
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200309 char *env_splashimage_value;
310 u32 bmp_load_addr;
311
312 env_splashimage_value = getenv("splashimage");
313 if (env_splashimage_value == NULL)
Nikita Kiryanov6947e3f2015-01-14 10:42:49 +0200314 return -ENOENT;
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200315
316 bmp_load_addr = simple_strtoul(env_splashimage_value, 0, 16);
317 if (bmp_load_addr == 0) {
318 printf("Error: bad splashimage address specified\n");
Nikita Kiryanov6947e3f2015-01-14 10:42:49 +0200319 return -EFAULT;
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200320 }
321
Nikita Kiryanovfd29dd52015-01-14 10:42:51 +0200322 splash_location = select_splash_location(locations, size);
323 if (!splash_location)
324 return -EINVAL;
325
Nikita Kiryanov870dd302015-10-29 11:54:41 +0200326 if (splash_location->flags & SPLASH_STORAGE_RAW)
327 return splash_load_raw(splash_location, bmp_load_addr);
328 else if (splash_location->flags & SPLASH_STORAGE_FS)
329 return splash_load_fs(splash_location, bmp_load_addr);
330
331 return -EINVAL;
Igor Grinbergf4a40f02014-11-03 11:32:20 +0200332}