Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 1 | /* |
| 2 | * SPDX-License-Identifier: GPL-2.0+ |
| 3 | */ |
| 4 | |
| 5 | #include <common.h> |
| 6 | #include <spl.h> |
| 7 | #include <asm/u-boot.h> |
| 8 | #include <ext4fs.h> |
Nikita Kiryanov | 339245b | 2015-11-08 17:11:45 +0200 | [diff] [blame] | 9 | #include <errno.h> |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 10 | #include <image.h> |
| 11 | |
| 12 | #ifdef CONFIG_SPL_EXT_SUPPORT |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 13 | int spl_load_image_ext(struct blk_desc *block_dev, |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 14 | int partition, |
| 15 | const char *filename) |
| 16 | { |
| 17 | s32 err; |
| 18 | struct image_header *header; |
Suriyan Ramasami | 9f12cd0 | 2014-11-17 14:39:36 -0800 | [diff] [blame] | 19 | loff_t filelen, actlen; |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 20 | disk_partition_t part_info = {}; |
| 21 | |
| 22 | header = (struct image_header *)(CONFIG_SYS_TEXT_BASE - |
| 23 | sizeof(struct image_header)); |
| 24 | |
Simon Glass | 3e8bd46 | 2016-02-29 15:25:48 -0700 | [diff] [blame] | 25 | if (part_get_info(block_dev, partition, &part_info)) { |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 26 | printf("spl: no partition table found\n"); |
| 27 | return -1; |
| 28 | } |
| 29 | |
| 30 | ext4fs_set_blk_dev(block_dev, &part_info); |
| 31 | |
| 32 | err = ext4fs_mount(0); |
| 33 | if (!err) { |
| 34 | #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT |
| 35 | printf("%s: ext4fs mount err - %d\n", __func__, err); |
| 36 | #endif |
| 37 | goto end; |
| 38 | } |
| 39 | |
Suriyan Ramasami | 9f12cd0 | 2014-11-17 14:39:36 -0800 | [diff] [blame] | 40 | err = ext4fs_open(filename, &filelen); |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 41 | if (err < 0) { |
| 42 | puts("spl: ext4fs_open failed\n"); |
| 43 | goto end; |
| 44 | } |
Suriyan Ramasami | 9f12cd0 | 2014-11-17 14:39:36 -0800 | [diff] [blame] | 45 | err = ext4fs_read((char *)header, sizeof(struct image_header), &actlen); |
Guillaume GARDET | d3e488e | 2014-11-25 15:34:16 +0100 | [diff] [blame] | 46 | if (err < 0) { |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 47 | puts("spl: ext4fs_read failed\n"); |
| 48 | goto end; |
| 49 | } |
| 50 | |
Marek Vasut | 7e0f226 | 2016-04-29 00:44:54 +0200 | [diff] [blame] | 51 | err = spl_parse_image_header(header); |
| 52 | if (err < 0) { |
Petr Kulhavy | 9ab165d | 2016-06-18 12:21:17 +0200 | [diff] [blame] | 53 | puts("spl: ext: failed to parse image header\n"); |
Marek Vasut | 7e0f226 | 2016-04-29 00:44:54 +0200 | [diff] [blame] | 54 | goto end; |
| 55 | } |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 56 | |
Suriyan Ramasami | 9f12cd0 | 2014-11-17 14:39:36 -0800 | [diff] [blame] | 57 | err = ext4fs_read((char *)spl_image.load_addr, filelen, &actlen); |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 58 | |
| 59 | end: |
| 60 | #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT |
Guillaume GARDET | d3e488e | 2014-11-25 15:34:16 +0100 | [diff] [blame] | 61 | if (err < 0) |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 62 | printf("%s: error reading image %s, err - %d\n", |
| 63 | __func__, filename, err); |
| 64 | #endif |
| 65 | |
Guillaume GARDET | d3e488e | 2014-11-25 15:34:16 +0100 | [diff] [blame] | 66 | return err < 0; |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | #ifdef CONFIG_SPL_OS_BOOT |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 70 | int spl_load_image_ext_os(struct blk_desc *block_dev, int partition) |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 71 | { |
| 72 | int err; |
Suriyan Ramasami | 9f12cd0 | 2014-11-17 14:39:36 -0800 | [diff] [blame] | 73 | __maybe_unused loff_t filelen, actlen; |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 74 | disk_partition_t part_info = {}; |
| 75 | __maybe_unused char *file; |
| 76 | |
Simon Glass | 3e8bd46 | 2016-02-29 15:25:48 -0700 | [diff] [blame] | 77 | if (part_get_info(block_dev, partition, &part_info)) { |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 78 | printf("spl: no partition table found\n"); |
| 79 | return -1; |
| 80 | } |
| 81 | |
| 82 | ext4fs_set_blk_dev(block_dev, &part_info); |
| 83 | |
| 84 | err = ext4fs_mount(0); |
| 85 | if (!err) { |
| 86 | #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT |
| 87 | printf("%s: ext4fs mount err - %d\n", __func__, err); |
| 88 | #endif |
| 89 | return -1; |
| 90 | } |
Petr Kulhavy | 58c95d5 | 2016-06-14 12:06:36 +0200 | [diff] [blame] | 91 | #if defined(CONFIG_SPL_ENV_SUPPORT) |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 92 | file = getenv("falcon_args_file"); |
| 93 | if (file) { |
Suriyan Ramasami | 9f12cd0 | 2014-11-17 14:39:36 -0800 | [diff] [blame] | 94 | err = ext4fs_open(file, &filelen); |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 95 | if (err < 0) { |
| 96 | puts("spl: ext4fs_open failed\n"); |
| 97 | goto defaults; |
| 98 | } |
Suriyan Ramasami | 9f12cd0 | 2014-11-17 14:39:36 -0800 | [diff] [blame] | 99 | err = ext4fs_read((void *)CONFIG_SYS_SPL_ARGS_ADDR, filelen, &actlen); |
Guillaume GARDET | d3e488e | 2014-11-25 15:34:16 +0100 | [diff] [blame] | 100 | if (err < 0) { |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 101 | printf("spl: error reading image %s, err - %d, falling back to default\n", |
| 102 | file, err); |
| 103 | goto defaults; |
| 104 | } |
| 105 | file = getenv("falcon_image_file"); |
| 106 | if (file) { |
| 107 | err = spl_load_image_ext(block_dev, partition, file); |
| 108 | if (err != 0) { |
| 109 | puts("spl: falling back to default\n"); |
| 110 | goto defaults; |
| 111 | } |
| 112 | |
| 113 | return 0; |
| 114 | } else { |
| 115 | puts("spl: falcon_image_file not set in environment, falling back to default\n"); |
| 116 | } |
| 117 | } else { |
| 118 | puts("spl: falcon_args_file not set in environment, falling back to default\n"); |
| 119 | } |
| 120 | |
| 121 | defaults: |
| 122 | #endif |
| 123 | |
Suriyan Ramasami | 9f12cd0 | 2014-11-17 14:39:36 -0800 | [diff] [blame] | 124 | err = ext4fs_open(CONFIG_SPL_FS_LOAD_ARGS_NAME, &filelen); |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 125 | if (err < 0) |
| 126 | puts("spl: ext4fs_open failed\n"); |
| 127 | |
Suriyan Ramasami | 9f12cd0 | 2014-11-17 14:39:36 -0800 | [diff] [blame] | 128 | err = ext4fs_read((void *)CONFIG_SYS_SPL_ARGS_ADDR, filelen, &actlen); |
Guillaume GARDET | d3e488e | 2014-11-25 15:34:16 +0100 | [diff] [blame] | 129 | if (err < 0) { |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 130 | #ifdef CONFIG_SPL_LIBCOMMON_SUPPORT |
| 131 | printf("%s: error reading image %s, err - %d\n", |
| 132 | __func__, CONFIG_SPL_FS_LOAD_ARGS_NAME, err); |
| 133 | #endif |
| 134 | return -1; |
| 135 | } |
| 136 | |
| 137 | return spl_load_image_ext(block_dev, partition, |
| 138 | CONFIG_SPL_FS_LOAD_KERNEL_NAME); |
| 139 | } |
Nikita Kiryanov | 339245b | 2015-11-08 17:11:45 +0200 | [diff] [blame] | 140 | #else |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 141 | int spl_load_image_ext_os(struct blk_desc *block_dev, int partition) |
Nikita Kiryanov | 339245b | 2015-11-08 17:11:45 +0200 | [diff] [blame] | 142 | { |
| 143 | return -ENOSYS; |
| 144 | } |
Guillaume GARDET | 592f922 | 2014-10-15 17:53:12 +0200 | [diff] [blame] | 145 | #endif |
| 146 | #endif |