Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (c) Copyright 2011 by Tigris Elektronik GmbH |
| 3 | * |
| 4 | * Author: |
| 5 | * Maximilian Schwerin <mvs@tigris.de> |
| 6 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | |
| 12 | #include <command.h> |
| 13 | #include <environment.h> |
| 14 | #include <linux/stddef.h> |
| 15 | #include <malloc.h> |
Simon Glass | cf92e05 | 2015-09-02 17:24:58 -0600 | [diff] [blame] | 16 | #include <memalign.h> |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 17 | #include <search.h> |
| 18 | #include <errno.h> |
| 19 | #include <fat.h> |
| 20 | #include <mmc.h> |
| 21 | |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 22 | #ifdef CONFIG_SPL_BUILD |
| 23 | /* TODO(sjg@chromium.org): Figure out why this is needed */ |
| 24 | # if !defined(CONFIG_TARGET_AM335X_EVM) || defined(CONFIG_SPL_OS_BOOT) |
| 25 | # define LOADENV |
| 26 | # endif |
| 27 | #else |
| 28 | # define LOADENV |
| 29 | # if defined(CONFIG_CMD_SAVEENV) |
| 30 | # define CMD_SAVEENV |
| 31 | # endif |
| 32 | #endif |
| 33 | |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 34 | DECLARE_GLOBAL_DATA_PTR; |
| 35 | |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 36 | #ifdef CMD_SAVEENV |
Simon Glass | e5bce24 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 37 | static int env_fat_save(void) |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 38 | { |
Tom Rini | cd0f4fa | 2013-04-05 14:55:21 -0400 | [diff] [blame] | 39 | env_t env_new; |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 40 | struct blk_desc *dev_desc = NULL; |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 41 | disk_partition_t info; |
| 42 | int dev, part; |
Igor Grinberg | 9aa90c1 | 2012-09-23 05:25:21 +0000 | [diff] [blame] | 43 | int err; |
Suriyan Ramasami | 1ad0b98 | 2014-11-17 14:39:35 -0800 | [diff] [blame] | 44 | loff_t size; |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 45 | |
Marek Vasut | 7ce1526 | 2014-03-05 19:59:50 +0100 | [diff] [blame] | 46 | err = env_export(&env_new); |
| 47 | if (err) |
| 48 | return err; |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 49 | |
Tom Rini | 43ba3c5 | 2017-07-26 21:48:00 -0400 | [diff] [blame] | 50 | part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE, |
| 51 | CONFIG_ENV_FAT_DEVICE_AND_PART, |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 52 | &dev_desc, &info, 1); |
| 53 | if (part < 0) |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 54 | return 1; |
Igor Grinberg | 9aa90c1 | 2012-09-23 05:25:21 +0000 | [diff] [blame] | 55 | |
Simon Glass | bcce53d | 2016-02-29 15:25:51 -0700 | [diff] [blame] | 56 | dev = dev_desc->devnum; |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 57 | if (fat_set_blk_dev(dev_desc, &info) != 0) { |
| 58 | printf("\n** Unable to use %s %d:%d for saveenv **\n", |
Tom Rini | 43ba3c5 | 2017-07-26 21:48:00 -0400 | [diff] [blame] | 59 | CONFIG_ENV_FAT_INTERFACE, dev, part); |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 60 | return 1; |
| 61 | } |
| 62 | |
Tom Rini | 43ba3c5 | 2017-07-26 21:48:00 -0400 | [diff] [blame] | 63 | err = file_fat_write(CONFIG_ENV_FAT_FILE, (void *)&env_new, 0, sizeof(env_t), |
Suriyan Ramasami | 1ad0b98 | 2014-11-17 14:39:35 -0800 | [diff] [blame] | 64 | &size); |
Igor Grinberg | 9aa90c1 | 2012-09-23 05:25:21 +0000 | [diff] [blame] | 65 | if (err == -1) { |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 66 | printf("\n** Unable to write \"%s\" from %s%d:%d **\n", |
Tom Rini | 43ba3c5 | 2017-07-26 21:48:00 -0400 | [diff] [blame] | 67 | CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part); |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 68 | return 1; |
| 69 | } |
| 70 | |
| 71 | puts("done\n"); |
| 72 | return 0; |
| 73 | } |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 74 | #endif /* CMD_SAVEENV */ |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 75 | |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 76 | #ifdef LOADENV |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 77 | static int env_fat_load(void) |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 78 | { |
Tom Rini | 6d1966e | 2014-08-01 13:59:10 -0400 | [diff] [blame] | 79 | ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE); |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 80 | struct blk_desc *dev_desc = NULL; |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 81 | disk_partition_t info; |
| 82 | int dev, part; |
Igor Grinberg | 9aa90c1 | 2012-09-23 05:25:21 +0000 | [diff] [blame] | 83 | int err; |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 84 | |
Tom Rini | 43ba3c5 | 2017-07-26 21:48:00 -0400 | [diff] [blame] | 85 | part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE, |
| 86 | CONFIG_ENV_FAT_DEVICE_AND_PART, |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 87 | &dev_desc, &info, 1); |
| 88 | if (part < 0) |
| 89 | goto err_env_relocate; |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 90 | |
Simon Glass | bcce53d | 2016-02-29 15:25:51 -0700 | [diff] [blame] | 91 | dev = dev_desc->devnum; |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 92 | if (fat_set_blk_dev(dev_desc, &info) != 0) { |
| 93 | printf("\n** Unable to use %s %d:%d for loading the env **\n", |
Tom Rini | 43ba3c5 | 2017-07-26 21:48:00 -0400 | [diff] [blame] | 94 | CONFIG_ENV_FAT_INTERFACE, dev, part); |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 95 | goto err_env_relocate; |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 96 | } |
| 97 | |
Tom Rini | 43ba3c5 | 2017-07-26 21:48:00 -0400 | [diff] [blame] | 98 | err = file_fat_read(CONFIG_ENV_FAT_FILE, buf, CONFIG_ENV_SIZE); |
Igor Grinberg | 9aa90c1 | 2012-09-23 05:25:21 +0000 | [diff] [blame] | 99 | if (err == -1) { |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 100 | printf("\n** Unable to read \"%s\" from %s%d:%d **\n", |
Tom Rini | 43ba3c5 | 2017-07-26 21:48:00 -0400 | [diff] [blame] | 101 | CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part); |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 102 | goto err_env_relocate; |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | env_import(buf, 1); |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 106 | return 0; |
Wu, Josh | be354c1 | 2014-06-24 17:31:02 +0800 | [diff] [blame] | 107 | |
| 108 | err_env_relocate: |
| 109 | set_default_env(NULL); |
Simon Glass | c595199 | 2017-08-03 12:22:17 -0600 | [diff] [blame] | 110 | |
| 111 | return -EIO; |
Maximilian Schwerin | 57210c7 | 2012-03-12 23:57:50 +0000 | [diff] [blame] | 112 | } |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 113 | #endif /* LOADENV */ |
| 114 | |
| 115 | U_BOOT_ENV_LOCATION(fat) = { |
| 116 | .location = ENVL_FAT, |
Simon Glass | ac358be | 2017-08-03 12:22:03 -0600 | [diff] [blame] | 117 | ENV_NAME("FAT") |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 118 | #ifdef LOADENV |
Simon Glass | e5bce24 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 119 | .load = env_fat_load, |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 120 | #endif |
| 121 | #ifdef CMD_SAVEENV |
Simon Glass | e5bce24 | 2017-08-03 12:22:01 -0600 | [diff] [blame] | 122 | .save = env_save_ptr(env_fat_save), |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 123 | #endif |
Simon Glass | 4415f1d | 2017-08-03 12:21:58 -0600 | [diff] [blame] | 124 | }; |