Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (c) Copyright 2011 by Tigris Elektronik GmbH |
| 4 | * |
| 5 | * Author: |
| 6 | * Maximilian Schwerin <mvs@tigris.de> |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 9 | #include <command.h> |
Simon Glass | 9738586 | 2019-08-01 09:47:00 -0600 | [diff] [blame] | 10 | #include <env.h> |
Simon Glass | 9d1f619 | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 11 | #include <env_internal.h> |
Simon Glass | 655306c | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 12 | #include <part.h> |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 13 | #include <malloc.h> |
Simon Glass | 2dd337a | 2015-09-02 17:24:58 -0600 | [diff] [blame] | 14 | #include <memalign.h> |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 15 | #include <search.h> |
| 16 | #include <errno.h> |
| 17 | #include <fat.h> |
| 18 | #include <mmc.h> |
Rogier Stam | 454aa19 | 2022-05-11 23:20:28 +0200 | [diff] [blame] | 19 | #include <scsi.h> |
Fiona Klute | d4b57ec | 2024-05-01 10:54:09 +0200 | [diff] [blame] | 20 | #include <virtio.h> |
Simon Glass | 655306c | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 21 | #include <asm/cache.h> |
Brandon Maier | f281546 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 22 | #include <asm/global_data.h> |
Simon Glass | 655306c | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 23 | #include <linux/stddef.h> |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 24 | |
Simon Glass | 0e84d96 | 2024-09-29 19:49:50 -0600 | [diff] [blame] | 25 | #ifdef CONFIG_XPL_BUILD |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 26 | /* TODO(sjg@chromium.org): Figure out why this is needed */ |
| 27 | # if !defined(CONFIG_TARGET_AM335X_EVM) || defined(CONFIG_SPL_OS_BOOT) |
| 28 | # define LOADENV |
| 29 | # endif |
| 30 | #else |
| 31 | # define LOADENV |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 32 | #endif |
| 33 | |
Brandon Maier | f281546 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 34 | DECLARE_GLOBAL_DATA_PTR; |
| 35 | |
He Yong | 25936aa | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 36 | __weak const char *env_fat_get_intf(void) |
| 37 | { |
| 38 | return (const char *)CONFIG_ENV_FAT_INTERFACE; |
| 39 | } |
| 40 | |
| 41 | __weak char *env_fat_get_dev_part(void) |
David Woodhouse | 9336539 | 2020-06-19 23:07:17 +0100 | [diff] [blame] | 42 | { |
| 43 | #ifdef CONFIG_MMC |
Andre Przywara | 788acaf | 2025-01-30 13:36:46 +0000 | [diff] [blame] | 44 | /* reserve one more char for the manipulation below */ |
| 45 | static char part_str[] = CONFIG_ENV_FAT_DEVICE_AND_PART "\0"; |
David Woodhouse | 9336539 | 2020-06-19 23:07:17 +0100 | [diff] [blame] | 46 | |
Andre Przywara | 788acaf | 2025-01-30 13:36:46 +0000 | [diff] [blame] | 47 | if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc") && part_str[0] == ':') { |
| 48 | part_str[0] = '0' + mmc_get_env_dev(); |
| 49 | strcpy(&part_str[1], CONFIG_ENV_FAT_DEVICE_AND_PART); |
David Woodhouse | 9336539 | 2020-06-19 23:07:17 +0100 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | return part_str; |
| 53 | #else |
| 54 | return CONFIG_ENV_FAT_DEVICE_AND_PART; |
| 55 | #endif |
| 56 | } |
| 57 | |
Simon Glass | 082af92 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 58 | static int env_fat_save(void) |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 59 | { |
Alex Kiernan | 28a2137 | 2018-02-07 20:01:54 +0000 | [diff] [blame] | 60 | env_t __aligned(ARCH_DMA_MINALIGN) env_new; |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 61 | struct blk_desc *dev_desc = NULL; |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 62 | struct disk_partition info; |
Brandon Maier | f281546 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 63 | const char *file = CONFIG_ENV_FAT_FILE; |
Wu, Josh | 9b899f2 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 64 | int dev, part; |
Igor Grinberg | 49eee6e | 2012-09-23 05:25:21 +0000 | [diff] [blame] | 65 | int err; |
Suriyan Ramasami | 441c223 | 2014-11-17 14:39:35 -0800 | [diff] [blame] | 66 | loff_t size; |
He Yong | 25936aa | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 67 | const char *ifname = env_fat_get_intf(); |
| 68 | const char *dev_and_part = env_fat_get_dev_part(); |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 69 | |
Marek Vasut | d73c129 | 2014-03-05 19:59:50 +0100 | [diff] [blame] | 70 | err = env_export(&env_new); |
| 71 | if (err) |
| 72 | return err; |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 73 | |
He Yong | 25936aa | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 74 | part = blk_get_device_part_str(ifname, dev_and_part, |
| 75 | &dev_desc, &info, 1); |
Wu, Josh | 9b899f2 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 76 | if (part < 0) |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 77 | return 1; |
Igor Grinberg | 49eee6e | 2012-09-23 05:25:21 +0000 | [diff] [blame] | 78 | |
Simon Glass | 2f26fff | 2016-02-29 15:25:51 -0700 | [diff] [blame] | 79 | dev = dev_desc->devnum; |
Wu, Josh | 9b899f2 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 80 | if (fat_set_blk_dev(dev_desc, &info) != 0) { |
Maxime Ripard | be6b2dc | 2018-01-23 21:16:55 +0100 | [diff] [blame] | 81 | /* |
| 82 | * This printf is embedded in the messages from env_save that |
| 83 | * will calling it. The missing \n is intentional. |
| 84 | */ |
He Yong | 25936aa | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 85 | printf("Unable to use %s %d:%d...\n", ifname, dev, part); |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 86 | return 1; |
| 87 | } |
| 88 | |
Brandon Maier | f281546 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 89 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
| 90 | if (gd->env_valid == ENV_VALID) |
| 91 | file = CONFIG_ENV_FAT_FILE_REDUND; |
| 92 | #endif |
| 93 | |
| 94 | err = file_fat_write(file, (void *)&env_new, 0, sizeof(env_t), &size); |
Igor Grinberg | 49eee6e | 2012-09-23 05:25:21 +0000 | [diff] [blame] | 95 | if (err == -1) { |
Maxime Ripard | be6b2dc | 2018-01-23 21:16:55 +0100 | [diff] [blame] | 96 | /* |
| 97 | * This printf is embedded in the messages from env_save that |
| 98 | * will calling it. The missing \n is intentional. |
| 99 | */ |
He Yong | 25936aa | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 100 | printf("Unable to write \"%s\" from %s%d:%d...\n", file, ifname, dev, part); |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 101 | return 1; |
| 102 | } |
| 103 | |
Brandon Maier | f281546 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 104 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
| 105 | gd->env_valid = (gd->env_valid == ENV_REDUND) ? ENV_VALID : ENV_REDUND; |
| 106 | #endif |
| 107 | |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 108 | return 0; |
| 109 | } |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 110 | |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 111 | #ifdef LOADENV |
Simon Glass | 9977849 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 112 | static int env_fat_load(void) |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 113 | { |
Brandon Maier | f281546 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 114 | ALLOC_CACHE_ALIGN_BUFFER(char, buf1, CONFIG_ENV_SIZE); |
| 115 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
| 116 | ALLOC_CACHE_ALIGN_BUFFER(char, buf2, CONFIG_ENV_SIZE); |
| 117 | int err2; |
| 118 | #endif |
Simon Glass | e339475 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 119 | struct blk_desc *dev_desc = NULL; |
Simon Glass | c1c4a8f | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 120 | struct disk_partition info; |
Wu, Josh | 9b899f2 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 121 | int dev, part; |
Brandon Maier | f281546 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 122 | int err1; |
He Yong | 25936aa | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 123 | const char *ifname = env_fat_get_intf(); |
| 124 | const char *dev_and_part = env_fat_get_dev_part(); |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 125 | |
Heinrich Schuchardt | 9991fe8 | 2018-04-14 15:41:00 +0200 | [diff] [blame] | 126 | #ifdef CONFIG_MMC |
He Yong | 25936aa | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 127 | if (!strcmp(ifname, "mmc")) |
Faiz Abbas | aae518f | 2018-02-12 19:24:31 +0530 | [diff] [blame] | 128 | mmc_initialize(NULL); |
Heinrich Schuchardt | 9991fe8 | 2018-04-14 15:41:00 +0200 | [diff] [blame] | 129 | #endif |
Simon Glass | 0e84d96 | 2024-09-29 19:49:50 -0600 | [diff] [blame] | 130 | #ifndef CONFIG_XPL_BUILD |
Rogier Stam | 454aa19 | 2022-05-11 23:20:28 +0200 | [diff] [blame] | 131 | #if defined(CONFIG_AHCI) || defined(CONFIG_SCSI) |
| 132 | if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "scsi")) |
| 133 | scsi_scan(true); |
| 134 | #endif |
Fiona Klute | d4b57ec | 2024-05-01 10:54:09 +0200 | [diff] [blame] | 135 | #if defined(CONFIG_VIRTIO) |
| 136 | if (!strcmp(ifname, "virtio")) |
| 137 | virtio_init(); |
| 138 | #endif |
Rogier Stam | 454aa19 | 2022-05-11 23:20:28 +0200 | [diff] [blame] | 139 | #endif |
He Yong | 25936aa | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 140 | part = blk_get_device_part_str(ifname, dev_and_part, |
| 141 | &dev_desc, &info, 1); |
Wu, Josh | 9b899f2 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 142 | if (part < 0) |
| 143 | goto err_env_relocate; |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 144 | |
Simon Glass | 2f26fff | 2016-02-29 15:25:51 -0700 | [diff] [blame] | 145 | dev = dev_desc->devnum; |
Wu, Josh | 9b899f2 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 146 | if (fat_set_blk_dev(dev_desc, &info) != 0) { |
Maxime Ripard | be6b2dc | 2018-01-23 21:16:55 +0100 | [diff] [blame] | 147 | /* |
| 148 | * This printf is embedded in the messages from env_save that |
| 149 | * will calling it. The missing \n is intentional. |
| 150 | */ |
He Yong | 25936aa | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 151 | printf("Unable to use %s %d:%d...\n", ifname, dev, part); |
Wu, Josh | 9b899f2 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 152 | goto err_env_relocate; |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 153 | } |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 154 | |
Brandon Maier | f281546 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 155 | err1 = file_fat_read(CONFIG_ENV_FAT_FILE, buf1, CONFIG_ENV_SIZE); |
| 156 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
| 157 | err2 = file_fat_read(CONFIG_ENV_FAT_FILE_REDUND, buf2, CONFIG_ENV_SIZE); |
| 158 | |
| 159 | err1 = (err1 >= 0) ? 0 : -1; |
| 160 | err2 = (err2 >= 0) ? 0 : -1; |
| 161 | return env_import_redund(buf1, err1, buf2, err2, H_EXTERNAL); |
| 162 | #else |
| 163 | if (err1 < 0) { |
Maxime Ripard | be6b2dc | 2018-01-23 21:16:55 +0100 | [diff] [blame] | 164 | /* |
| 165 | * This printf is embedded in the messages from env_save that |
| 166 | * will calling it. The missing \n is intentional. |
| 167 | */ |
Peter Robinson | ff6b8a2 | 2022-01-02 11:38:35 +0000 | [diff] [blame] | 168 | printf("Unable to read \"%s\" from %s%d:%d... \n", |
He Yong | 25936aa | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 169 | CONFIG_ENV_FAT_FILE, ifname, dev, part); |
Wu, Josh | 9b899f2 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 170 | goto err_env_relocate; |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 171 | } |
| 172 | |
Brandon Maier | f281546 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 173 | return env_import(buf1, 1, H_EXTERNAL); |
| 174 | #endif |
Wu, Josh | 9b899f2 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 175 | |
| 176 | err_env_relocate: |
Simon Glass | 9738586 | 2019-08-01 09:47:00 -0600 | [diff] [blame] | 177 | env_set_default(NULL, 0); |
Simon Glass | 9977849 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 178 | |
| 179 | return -EIO; |
Maximilian Schwerin | 9765c08 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 180 | } |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 181 | #endif /* LOADENV */ |
| 182 | |
| 183 | U_BOOT_ENV_LOCATION(fat) = { |
| 184 | .location = ENVL_FAT, |
Simon Glass | d8273ed | 2017-08-03 12:22:03 -0600 | [diff] [blame] | 185 | ENV_NAME("FAT") |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 186 | #ifdef LOADENV |
Simon Glass | 082af92 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 187 | .load = env_fat_load, |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 188 | #endif |
Rasmus Villemoes | 975ffba | 2020-02-19 09:47:41 +0000 | [diff] [blame] | 189 | .save = ENV_SAVE_PTR(env_fat_save), |
Simon Glass | c10a88e | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 190 | }; |