blob: d00e141d5b7a3c5bef10630cd102718d7e9690e6 [file] [log] [blame]
unsik Kim75eb82e2009-02-25 11:31:24 +09001/*
2 * (C) Copyright 2009 mGine co.
3 * unsik Kim <donari75@gmail.com>
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <command.h>
26#include <environment.h>
27#include <linux/stddef.h>
28#include <mg_disk.h>
29
Wolfgang Denkea882ba2010-06-20 23:33:59 +020030char *env_name_spec = "MG_DISK";
unsik Kim75eb82e2009-02-25 11:31:24 +090031
Igor Grinberg6b155662011-11-07 01:14:01 +000032env_t *env_ptr;
unsik Kim75eb82e2009-02-25 11:31:24 +090033
34DECLARE_GLOBAL_DATA_PTR;
35
unsik Kim75eb82e2009-02-25 11:31:24 +090036void env_relocate_spec(void)
37{
Wolfgang Denkea882ba2010-06-20 23:33:59 +020038 char buf[CONFIG_ENV_SIZE];
39 unsigned int err, rc;
unsik Kim75eb82e2009-02-25 11:31:24 +090040
41 err = mg_disk_init();
42 if (err) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +020043 set_default_env("!mg_disk_init error");
44 return;
unsik Kim75eb82e2009-02-25 11:31:24 +090045 }
Wolfgang Denkea882ba2010-06-20 23:33:59 +020046
47 err = mg_disk_read(CONFIG_ENV_ADDR, buf, CONFIG_ENV_SIZE);
unsik Kim75eb82e2009-02-25 11:31:24 +090048 if (err) {
Wolfgang Denkea882ba2010-06-20 23:33:59 +020049 set_default_env("!mg_disk_read error");
50 return;
unsik Kim75eb82e2009-02-25 11:31:24 +090051 }
52
Wolfgang Denkea882ba2010-06-20 23:33:59 +020053 env_import(buf, 1);
unsik Kim75eb82e2009-02-25 11:31:24 +090054}
55
56int saveenv(void)
57{
58 unsigned int err;
59
60 env_ptr->crc = crc32(0, env_ptr->data, ENV_SIZE);
61 err = mg_disk_write(CONFIG_ENV_ADDR, (u_char *)env_ptr,
62 CONFIG_ENV_SIZE);
63 if (err)
Wolfgang Denkea882ba2010-06-20 23:33:59 +020064 puts("*** Warning - mg_disk_write error\n\n");
unsik Kim75eb82e2009-02-25 11:31:24 +090065
66 return err;
67}
68
69int env_init(void)
70{
71 /* use default */
Wolfgang Denkea882ba2010-06-20 23:33:59 +020072 gd->env_addr = (ulong)&default_environment[0];
unsik Kim75eb82e2009-02-25 11:31:24 +090073 gd->env_valid = 1;
74
75 return 0;
76}