Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Maximilian Schwerin | 57210c7 | 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 | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
Tom Rini | d678a59 | 2024-05-18 20:20:43 -0600 | [diff] [blame] | 9 | #include <common.h> |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 10 | #include <command.h> |
Simon Glass | 0ac7d72 | 2019-08-01 09:47:00 -0600 | [diff] [blame] | 11 | #include <env.h> |
Simon Glass | f3998fd | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 12 | #include <env_internal.h> |
Simon Glass | e6f6f9e | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 13 | #include <part.h> |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 14 | #include <malloc.h> |
Simon Glass | cf92e05 | 2015-09-02 17:24:58 -0600 | [diff] [blame] | 15 | #include <memalign.h> |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 16 | #include <search.h> |
| 17 | #include <errno.h> |
| 18 | #include <fat.h> |
| 19 | #include <mmc.h> |
Rogier Stam | 54ee5ae | 2022-05-11 23:20:28 +0200 | [diff] [blame] | 20 | #include <scsi.h> |
Fiona Klute | 3be9f39 | 2024-05-01 10:54:09 +0200 | [diff] [blame] | 21 | #include <virtio.h> |
Simon Glass | e6f6f9e | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 22 | #include <asm/cache.h> |
Brandon Maier | 2339f01 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 23 | #include <asm/global_data.h> |
Simon Glass | e6f6f9e | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 24 | #include <linux/stddef.h> |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 25 | |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 26 | #ifdef CONFIG_SPL_BUILD |
| 27 | /* TODO(sjg@chromium.org): Figure out why this is needed */ |
| 28 | # if !defined(CONFIG_TARGET_AM335X_EVM) || defined(CONFIG_SPL_OS_BOOT) |
| 29 | # define LOADENV |
| 30 | # endif |
| 31 | #else |
| 32 | # define LOADENV |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 33 | #endif |
| 34 | |
Brandon Maier | 2339f01 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 35 | DECLARE_GLOBAL_DATA_PTR; |
| 36 | |
He Yong | eb68ead | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 37 | __weak const char *env_fat_get_intf(void) |
| 38 | { |
| 39 | return (const char *)CONFIG_ENV_FAT_INTERFACE; |
| 40 | } |
| 41 | |
| 42 | __weak char *env_fat_get_dev_part(void) |
David Woodhouse | 6731bef | 2020-06-19 23:07:17 +0100 | [diff] [blame] | 43 | { |
| 44 | #ifdef CONFIG_MMC |
| 45 | static char *part_str; |
| 46 | |
| 47 | if (!part_str) { |
| 48 | part_str = CONFIG_ENV_FAT_DEVICE_AND_PART; |
| 49 | if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc") && part_str[0] == ':') { |
| 50 | part_str = "0" CONFIG_ENV_FAT_DEVICE_AND_PART; |
| 51 | part_str[0] += mmc_get_env_dev(); |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | return part_str; |
| 56 | #else |
| 57 | return CONFIG_ENV_FAT_DEVICE_AND_PART; |
| 58 | #endif |
| 59 | } |
| 60 | |
Simon Glass | e5bce24 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 61 | static int env_fat_save(void) |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 62 | { |
Alex Kiernan | cda87ec | 2018-02-07 20:01:54 +0000 | [diff] [blame] | 63 | env_t __aligned(ARCH_DMA_MINALIGN) env_new; |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 64 | struct blk_desc *dev_desc = NULL; |
Simon Glass | 0528979 | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 65 | struct disk_partition info; |
Brandon Maier | 2339f01 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 66 | const char *file = CONFIG_ENV_FAT_FILE; |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 67 | int dev, part; |
Igor Grinberg | 9aa90c1 | 2012-09-23 05:25:21 +0000 | [diff] [blame] | 68 | int err; |
Suriyan Ramasami | 1ad0b98 | 2014-11-17 14:39:35 -0800 | [diff] [blame] | 69 | loff_t size; |
He Yong | eb68ead | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 70 | const char *ifname = env_fat_get_intf(); |
| 71 | const char *dev_and_part = env_fat_get_dev_part(); |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 72 | |
Marek Vasut | 7ce1526 | 2014-03-05 19:59:50 +0100 | [diff] [blame] | 73 | err = env_export(&env_new); |
| 74 | if (err) |
| 75 | return err; |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 76 | |
He Yong | eb68ead | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 77 | part = blk_get_device_part_str(ifname, dev_and_part, |
| 78 | &dev_desc, &info, 1); |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 79 | if (part < 0) |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 80 | return 1; |
Igor Grinberg | 9aa90c1 | 2012-09-23 05:25:21 +0000 | [diff] [blame] | 81 | |
Simon Glass | bcce53d | 2016-02-29 15:25:51 -0700 | [diff] [blame] | 82 | dev = dev_desc->devnum; |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 83 | if (fat_set_blk_dev(dev_desc, &info) != 0) { |
Maxime Ripard | d0816da | 2018-01-23 21:16:55 +0100 | [diff] [blame] | 84 | /* |
| 85 | * This printf is embedded in the messages from env_save that |
| 86 | * will calling it. The missing \n is intentional. |
| 87 | */ |
He Yong | eb68ead | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 88 | printf("Unable to use %s %d:%d...\n", ifname, dev, part); |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 89 | return 1; |
| 90 | } |
| 91 | |
Brandon Maier | 2339f01 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 92 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
| 93 | if (gd->env_valid == ENV_VALID) |
| 94 | file = CONFIG_ENV_FAT_FILE_REDUND; |
| 95 | #endif |
| 96 | |
| 97 | err = file_fat_write(file, (void *)&env_new, 0, sizeof(env_t), &size); |
Igor Grinberg | 9aa90c1 | 2012-09-23 05:25:21 +0000 | [diff] [blame] | 98 | if (err == -1) { |
Maxime Ripard | d0816da | 2018-01-23 21:16:55 +0100 | [diff] [blame] | 99 | /* |
| 100 | * This printf is embedded in the messages from env_save that |
| 101 | * will calling it. The missing \n is intentional. |
| 102 | */ |
He Yong | eb68ead | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 103 | printf("Unable to write \"%s\" from %s%d:%d...\n", file, ifname, dev, part); |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 104 | return 1; |
| 105 | } |
| 106 | |
Brandon Maier | 2339f01 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 107 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
| 108 | gd->env_valid = (gd->env_valid == ENV_REDUND) ? ENV_VALID : ENV_REDUND; |
| 109 | #endif |
| 110 | |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 111 | return 0; |
| 112 | } |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 113 | |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 114 | #ifdef LOADENV |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 115 | static int env_fat_load(void) |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 116 | { |
Brandon Maier | 2339f01 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 117 | ALLOC_CACHE_ALIGN_BUFFER(char, buf1, CONFIG_ENV_SIZE); |
| 118 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
| 119 | ALLOC_CACHE_ALIGN_BUFFER(char, buf2, CONFIG_ENV_SIZE); |
| 120 | int err2; |
| 121 | #endif |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 122 | struct blk_desc *dev_desc = NULL; |
Simon Glass | 0528979 | 2020-05-10 11:39:57 -0600 | [diff] [blame] | 123 | struct disk_partition info; |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 124 | int dev, part; |
Brandon Maier | 2339f01 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 125 | int err1; |
He Yong | eb68ead | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 126 | const char *ifname = env_fat_get_intf(); |
| 127 | const char *dev_and_part = env_fat_get_dev_part(); |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 128 | |
Heinrich Schuchardt | 95058fb | 2018-04-14 15:41:00 +0200 | [diff] [blame] | 129 | #ifdef CONFIG_MMC |
He Yong | eb68ead | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 130 | if (!strcmp(ifname, "mmc")) |
Faiz Abbas | 26862b4 | 2018-02-12 19:24:31 +0530 | [diff] [blame] | 131 | mmc_initialize(NULL); |
Heinrich Schuchardt | 95058fb | 2018-04-14 15:41:00 +0200 | [diff] [blame] | 132 | #endif |
Rogier Stam | 54ee5ae | 2022-05-11 23:20:28 +0200 | [diff] [blame] | 133 | #ifndef CONFIG_SPL_BUILD |
| 134 | #if defined(CONFIG_AHCI) || defined(CONFIG_SCSI) |
| 135 | if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "scsi")) |
| 136 | scsi_scan(true); |
| 137 | #endif |
Fiona Klute | 3be9f39 | 2024-05-01 10:54:09 +0200 | [diff] [blame] | 138 | #if defined(CONFIG_VIRTIO) |
| 139 | if (!strcmp(ifname, "virtio")) |
| 140 | virtio_init(); |
| 141 | #endif |
Rogier Stam | 54ee5ae | 2022-05-11 23:20:28 +0200 | [diff] [blame] | 142 | #endif |
He Yong | eb68ead | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 143 | part = blk_get_device_part_str(ifname, dev_and_part, |
| 144 | &dev_desc, &info, 1); |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 145 | if (part < 0) |
| 146 | goto err_env_relocate; |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 147 | |
Simon Glass | bcce53d | 2016-02-29 15:25:51 -0700 | [diff] [blame] | 148 | dev = dev_desc->devnum; |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 149 | if (fat_set_blk_dev(dev_desc, &info) != 0) { |
Maxime Ripard | d0816da | 2018-01-23 21:16:55 +0100 | [diff] [blame] | 150 | /* |
| 151 | * This printf is embedded in the messages from env_save that |
| 152 | * will calling it. The missing \n is intentional. |
| 153 | */ |
He Yong | eb68ead | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 154 | printf("Unable to use %s %d:%d...\n", ifname, dev, part); |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 155 | goto err_env_relocate; |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 156 | } |
| 157 | |
Brandon Maier | 2339f01 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 158 | err1 = file_fat_read(CONFIG_ENV_FAT_FILE, buf1, CONFIG_ENV_SIZE); |
| 159 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
| 160 | err2 = file_fat_read(CONFIG_ENV_FAT_FILE_REDUND, buf2, CONFIG_ENV_SIZE); |
| 161 | |
| 162 | err1 = (err1 >= 0) ? 0 : -1; |
| 163 | err2 = (err2 >= 0) ? 0 : -1; |
| 164 | return env_import_redund(buf1, err1, buf2, err2, H_EXTERNAL); |
| 165 | #else |
| 166 | if (err1 < 0) { |
Maxime Ripard | d0816da | 2018-01-23 21:16:55 +0100 | [diff] [blame] | 167 | /* |
| 168 | * This printf is embedded in the messages from env_save that |
| 169 | * will calling it. The missing \n is intentional. |
| 170 | */ |
Peter Robinson | f6f27be | 2022-01-02 11:38:35 +0000 | [diff] [blame] | 171 | printf("Unable to read \"%s\" from %s%d:%d... \n", |
He Yong | eb68ead | 2022-02-18 00:07:25 +0800 | [diff] [blame] | 172 | CONFIG_ENV_FAT_FILE, ifname, dev, part); |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 173 | goto err_env_relocate; |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Brandon Maier | 2339f01 | 2021-01-16 15:14:43 -0600 | [diff] [blame] | 176 | return env_import(buf1, 1, H_EXTERNAL); |
| 177 | #endif |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 178 | |
| 179 | err_env_relocate: |
Simon Glass | 0ac7d72 | 2019-08-01 09:47:00 -0600 | [diff] [blame] | 180 | env_set_default(NULL, 0); |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 181 | |
| 182 | return -EIO; |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 183 | } |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 184 | #endif /* LOADENV */ |
| 185 | |
| 186 | U_BOOT_ENV_LOCATION(fat) = { |
| 187 | .location = ENVL_FAT, |
Simon Glass | ac358be | 2017-08-03 12:22:03 -0600 | [diff] [blame] | 188 | ENV_NAME("FAT") |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 189 | #ifdef LOADENV |
Simon Glass | e5bce24 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 190 | .load = env_fat_load, |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 191 | #endif |
Rasmus Villemoes | 3908bc9 | 2020-02-19 09:47:41 +0000 | [diff] [blame] | 192 | .save = ENV_SAVE_PTR(env_fat_save), |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 193 | }; |