Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 1 | /* |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 2 | * (C) Copyright 2008-2011 Freescale Semiconductor, Inc. |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 3 | * |
| 4 | * See file CREDITS for list of people who contributed to this |
| 5 | * project. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation; either version 2 of |
| 10 | * the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 20 | * MA 02111-1307 USA |
| 21 | */ |
| 22 | |
| 23 | /* #define DEBUG */ |
| 24 | |
| 25 | #include <common.h> |
| 26 | |
| 27 | #include <command.h> |
| 28 | #include <environment.h> |
| 29 | #include <linux/stddef.h> |
| 30 | #include <malloc.h> |
| 31 | #include <mmc.h> |
Lei Wen | 6d1d51b | 2010-11-10 07:39:23 +0800 | [diff] [blame] | 32 | #include <search.h> |
Lei Wen | e79f483 | 2010-10-13 11:07:21 +0800 | [diff] [blame] | 33 | #include <errno.h> |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 34 | |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 35 | char *env_name_spec = "MMC"; |
| 36 | |
| 37 | #ifdef ENV_IS_EMBEDDED |
Igor Grinberg | 994bc67 | 2011-11-17 06:07:23 +0000 | [diff] [blame] | 38 | env_t *env_ptr = &environment; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 39 | #else /* ! ENV_IS_EMBEDDED */ |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 40 | env_t *env_ptr; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 41 | #endif /* ENV_IS_EMBEDDED */ |
| 42 | |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 43 | DECLARE_GLOBAL_DATA_PTR; |
| 44 | |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 45 | #if !defined(CONFIG_ENV_OFFSET) |
| 46 | #define CONFIG_ENV_OFFSET 0 |
| 47 | #endif |
| 48 | |
| 49 | static int __mmc_get_env_addr(struct mmc *mmc, u32 *env_addr) |
| 50 | { |
| 51 | *env_addr = CONFIG_ENV_OFFSET; |
| 52 | return 0; |
| 53 | } |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 54 | int mmc_get_env_addr(struct mmc *mmc, u32 *env_addr) |
| 55 | __attribute__((weak, alias("__mmc_get_env_addr"))); |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 56 | |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 57 | int env_init(void) |
| 58 | { |
| 59 | /* use default */ |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 60 | gd->env_addr = (ulong)&default_environment[0]; |
| 61 | gd->env_valid = 1; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 62 | |
| 63 | return 0; |
| 64 | } |
| 65 | |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 66 | static int init_mmc_for_env(struct mmc *mmc) |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 67 | { |
| 68 | if (!mmc) { |
| 69 | puts("No MMC card found\n"); |
| 70 | return -1; |
| 71 | } |
| 72 | |
| 73 | if (mmc_init(mmc)) { |
| 74 | puts("MMC init failed\n"); |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 75 | return -1; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 76 | } |
| 77 | |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 78 | #ifdef CONFIG_SYS_MMC_ENV_PART |
| 79 | if (CONFIG_SYS_MMC_ENV_PART != mmc->part_num) { |
| 80 | if (mmc_switch_part(CONFIG_SYS_MMC_ENV_DEV, |
| 81 | CONFIG_SYS_MMC_ENV_PART)) { |
| 82 | puts("MMC partition switch failed\n"); |
| 83 | return -1; |
| 84 | } |
| 85 | } |
| 86 | #endif |
| 87 | |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 88 | return 0; |
| 89 | } |
| 90 | |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 91 | static void fini_mmc_for_env(struct mmc *mmc) |
| 92 | { |
| 93 | #ifdef CONFIG_SYS_MMC_ENV_PART |
| 94 | if (CONFIG_SYS_MMC_ENV_PART != mmc->part_num) |
| 95 | mmc_switch_part(CONFIG_SYS_MMC_ENV_DEV, |
| 96 | mmc->part_num); |
| 97 | #endif |
| 98 | } |
| 99 | |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 100 | #ifdef CONFIG_CMD_SAVEENV |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 101 | static inline int write_env(struct mmc *mmc, unsigned long size, |
| 102 | unsigned long offset, const void *buffer) |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 103 | { |
| 104 | uint blk_start, blk_cnt, n; |
| 105 | |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 106 | blk_start = ALIGN(offset, mmc->write_bl_len) / mmc->write_bl_len; |
| 107 | blk_cnt = ALIGN(size, mmc->write_bl_len) / mmc->write_bl_len; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 108 | |
| 109 | n = mmc->block_dev.block_write(CONFIG_SYS_MMC_ENV_DEV, blk_start, |
| 110 | blk_cnt, (u_char *)buffer); |
| 111 | |
| 112 | return (n == blk_cnt) ? 0 : -1; |
| 113 | } |
| 114 | |
| 115 | int saveenv(void) |
| 116 | { |
Stephen Warren | 4036b63 | 2012-05-24 11:38:33 +0000 | [diff] [blame] | 117 | ALLOC_CACHE_ALIGN_BUFFER(env_t, env_new, 1); |
Lei Wen | e79f483 | 2010-10-13 11:07:21 +0800 | [diff] [blame] | 118 | ssize_t len; |
| 119 | char *res; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 120 | struct mmc *mmc = find_mmc_device(CONFIG_SYS_MMC_ENV_DEV); |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 121 | u32 offset; |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 122 | int ret; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 123 | |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 124 | if (init_mmc_for_env(mmc)) |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 125 | return 1; |
| 126 | |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 127 | if (mmc_get_env_addr(mmc, &offset)) { |
| 128 | ret = 1; |
| 129 | goto fini; |
| 130 | } |
| 131 | |
Stephen Warren | 4036b63 | 2012-05-24 11:38:33 +0000 | [diff] [blame] | 132 | res = (char *)&env_new->data; |
Wolfgang Denk | 37f2fe7 | 2011-11-06 22:49:44 +0100 | [diff] [blame] | 133 | len = hexport_r(&env_htab, '\0', &res, ENV_SIZE, 0, NULL); |
Lei Wen | e79f483 | 2010-10-13 11:07:21 +0800 | [diff] [blame] | 134 | if (len < 0) { |
| 135 | error("Cannot export environment: errno = %d\n", errno); |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 136 | ret = 1; |
| 137 | goto fini; |
Lei Wen | e79f483 | 2010-10-13 11:07:21 +0800 | [diff] [blame] | 138 | } |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 139 | |
Stephen Warren | 4036b63 | 2012-05-24 11:38:33 +0000 | [diff] [blame] | 140 | env_new->crc = crc32(0, &env_new->data[0], ENV_SIZE); |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 141 | printf("Writing to MMC(%d)... ", CONFIG_SYS_MMC_ENV_DEV); |
Stephen Warren | 4036b63 | 2012-05-24 11:38:33 +0000 | [diff] [blame] | 142 | if (write_env(mmc, CONFIG_ENV_SIZE, offset, (u_char *)env_new)) { |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 143 | puts("failed\n"); |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 144 | ret = 1; |
| 145 | goto fini; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | puts("done\n"); |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 149 | ret = 0; |
| 150 | |
| 151 | fini: |
| 152 | fini_mmc_for_env(mmc); |
| 153 | return ret; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 154 | } |
| 155 | #endif /* CONFIG_CMD_SAVEENV */ |
| 156 | |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 157 | static inline int read_env(struct mmc *mmc, unsigned long size, |
| 158 | unsigned long offset, const void *buffer) |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 159 | { |
| 160 | uint blk_start, blk_cnt, n; |
| 161 | |
Igor Grinberg | e8db8f7 | 2011-11-07 01:14:05 +0000 | [diff] [blame] | 162 | blk_start = ALIGN(offset, mmc->read_bl_len) / mmc->read_bl_len; |
| 163 | blk_cnt = ALIGN(size, mmc->read_bl_len) / mmc->read_bl_len; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 164 | |
| 165 | n = mmc->block_dev.block_read(CONFIG_SYS_MMC_ENV_DEV, blk_start, |
| 166 | blk_cnt, (uchar *)buffer); |
| 167 | |
| 168 | return (n == blk_cnt) ? 0 : -1; |
| 169 | } |
| 170 | |
| 171 | void env_relocate_spec(void) |
| 172 | { |
| 173 | #if !defined(ENV_IS_EMBEDDED) |
Stephen Warren | 4036b63 | 2012-05-24 11:38:33 +0000 | [diff] [blame] | 174 | ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE); |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 175 | struct mmc *mmc = find_mmc_device(CONFIG_SYS_MMC_ENV_DEV); |
Mingkai Hu | 97039ab | 2011-01-24 17:09:55 +0000 | [diff] [blame] | 176 | u32 offset; |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 177 | int ret; |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 178 | |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 179 | if (init_mmc_for_env(mmc)) { |
| 180 | ret = 1; |
| 181 | goto err; |
| 182 | } |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 183 | |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 184 | if (mmc_get_env_addr(mmc, &offset)) { |
| 185 | ret = 1; |
| 186 | goto fini; |
| 187 | } |
| 188 | |
| 189 | if (read_env(mmc, CONFIG_ENV_SIZE, offset, buf)) { |
| 190 | ret = 1; |
| 191 | goto fini; |
| 192 | } |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 193 | |
Steve Sakoman | d470a6f | 2010-10-11 05:51:39 -0700 | [diff] [blame] | 194 | env_import(buf, 1); |
Stephen Warren | 9404a5f | 2012-07-30 10:55:44 +0000 | [diff] [blame] | 195 | ret = 0; |
| 196 | |
| 197 | fini: |
| 198 | fini_mmc_for_env(mmc); |
| 199 | err: |
| 200 | if (ret) |
| 201 | set_default_env(NULL); |
Terry Lv | a806035 | 2010-05-17 10:57:01 +0800 | [diff] [blame] | 202 | #endif |
| 203 | } |