]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/env_mmc.c
hashtable: drop all non-reentrant versions
[karo-tx-uboot.git] / common / env_mmc.c
1 /*
2  * (C) Copyright 2008-2010 Freescale Semiconductor, Inc.
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>
32 #include <search.h>
33 #include <errno.h>
34
35 /* references to names in env_common.c */
36 extern uchar default_environment[];
37
38 char *env_name_spec = "MMC";
39
40 #ifdef ENV_IS_EMBEDDED
41 extern uchar environment[];
42 env_t *env_ptr = (env_t *)(&environment[0]);
43 #else /* ! ENV_IS_EMBEDDED */
44 env_t *env_ptr = NULL;
45 #endif /* ENV_IS_EMBEDDED */
46
47 /* local functions */
48 #if !defined(ENV_IS_EMBEDDED)
49 static void use_default(void);
50 #endif
51
52 DECLARE_GLOBAL_DATA_PTR;
53
54 uchar env_get_char_spec(int index)
55 {
56         return *((uchar *)(gd->env_addr + index));
57 }
58
59 int env_init(void)
60 {
61         /* use default */
62         gd->env_addr = (ulong)&default_environment[0];
63         gd->env_valid = 1;
64
65         return 0;
66 }
67
68 int init_mmc_for_env(struct mmc *mmc)
69 {
70         if (!mmc) {
71                 puts("No MMC card found\n");
72                 return -1;
73         }
74
75         if (mmc_init(mmc)) {
76                 puts("MMC init failed\n");
77                 return  -1;
78         }
79
80         return 0;
81 }
82
83 #ifdef CONFIG_CMD_SAVEENV
84
85 inline int write_env(struct mmc *mmc, unsigned long size,
86                         unsigned long offset, const void *buffer)
87 {
88         uint blk_start, blk_cnt, n;
89
90         blk_start = ALIGN(offset, mmc->write_bl_len) / mmc->write_bl_len;
91         blk_cnt   = ALIGN(size, mmc->write_bl_len) / mmc->write_bl_len;
92
93         n = mmc->block_dev.block_write(CONFIG_SYS_MMC_ENV_DEV, blk_start,
94                                         blk_cnt, (u_char *)buffer);
95
96         return (n == blk_cnt) ? 0 : -1;
97 }
98
99 int saveenv(void)
100 {
101         env_t   env_new;
102         ssize_t len;
103         char    *res;
104         struct mmc *mmc = find_mmc_device(CONFIG_SYS_MMC_ENV_DEV);
105
106         if (init_mmc_for_env(mmc))
107                 return 1;
108
109         res = (char *)&env_new.data;
110         len = hexport_r(&env_htab, '\0', &res, ENV_SIZE);
111         if (len < 0) {
112                 error("Cannot export environment: errno = %d\n", errno);
113                 return 1;
114         }
115         env_new.crc   = crc32(0, env_new.data, ENV_SIZE);
116         printf("Writing to MMC(%d)... ", CONFIG_SYS_MMC_ENV_DEV);
117         if (write_env(mmc, CONFIG_ENV_SIZE, CONFIG_ENV_OFFSET, (u_char *)&env_new)) {
118                 puts("failed\n");
119                 return 1;
120         }
121
122         puts("done\n");
123         return 0;
124 }
125 #endif /* CONFIG_CMD_SAVEENV */
126
127 inline int read_env(struct mmc *mmc, unsigned long size,
128                         unsigned long offset, const void *buffer)
129 {
130         uint blk_start, blk_cnt, n;
131
132         blk_start = ALIGN(offset, mmc->read_bl_len) / mmc->read_bl_len;
133         blk_cnt   = ALIGN(size, mmc->read_bl_len) / mmc->read_bl_len;
134
135         n = mmc->block_dev.block_read(CONFIG_SYS_MMC_ENV_DEV, blk_start,
136                                         blk_cnt, (uchar *)buffer);
137
138         return (n == blk_cnt) ? 0 : -1;
139 }
140
141 void env_relocate_spec(void)
142 {
143 #if !defined(ENV_IS_EMBEDDED)
144        char buf[CONFIG_ENV_SIZE];
145
146         struct mmc *mmc = find_mmc_device(CONFIG_SYS_MMC_ENV_DEV);
147
148         if (init_mmc_for_env(mmc)) {
149                 use_default();
150                 return;
151         }
152
153         if (read_env(mmc, CONFIG_ENV_SIZE, CONFIG_ENV_OFFSET, buf)) {
154                 use_default();
155                 return;
156         }
157
158         env_import(buf, 1);
159 #endif
160 }
161
162 #if !defined(ENV_IS_EMBEDDED)
163 static void use_default()
164 {
165         set_default_env(NULL);
166 }
167 #endif