2 * (C) Copyright 2010 DENX Software Engineering
3 * Wolfgang Denk <wd@denx.de>
5 * (C) Copyright 2005-2009 Samsung Electronics
6 * Kyungmin Park <kyungmin.park@samsung.com>
8 * See file CREDITS for list of people who contributed to this
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 #include <environment.h>
30 #include <linux/stddef.h>
34 #include <onenand_uboot.h>
36 #include <linux/compat.h>
37 #include <linux/mtd/mtd.h>
38 #include <linux/mtd/onenand.h>
40 char *env_name_spec = "OneNAND";
42 #define ONENAND_MAX_ENV_SIZE CONFIG_ENV_SIZE
43 #define ONENAND_ENV_SIZE(mtd) (ONENAND_MAX_ENV_SIZE - ENV_HEADER_SIZE)
45 DECLARE_GLOBAL_DATA_PTR;
47 void env_relocate_spec(void)
49 struct mtd_info *mtd = &onenand_mtd;
50 #ifdef CONFIG_ENV_ADDR_FLEX
51 struct onenand_chip *this = &onenand_chip;
55 #ifdef ENV_IS_EMBEDDED
56 char *buf = (char *)&environment;
58 loff_t env_addr = CONFIG_ENV_ADDR;
59 char onenand_env[ONENAND_MAX_ENV_SIZE];
60 char *buf = (char *)&onenand_env[0];
61 #endif /* ENV_IS_EMBEDDED */
63 #ifndef ENV_IS_EMBEDDED
64 # ifdef CONFIG_ENV_ADDR_FLEX
65 if (FLEXONENAND(this))
66 env_addr = CONFIG_ENV_ADDR_FLEX;
68 /* Check OneNAND exist */
70 /* Ignore read fail */
71 mtd->read(mtd, env_addr, ONENAND_MAX_ENV_SIZE,
72 &retlen, (u_char *)buf);
74 mtd->writesize = MAX_ONENAND_PAGESIZE;
75 #endif /* !ENV_IS_EMBEDDED */
77 rc = env_import(buf, 1);
87 struct mtd_info *mtd = &onenand_mtd;
88 #ifdef CONFIG_ENV_ADDR_FLEX
89 struct onenand_chip *this = &onenand_chip;
91 loff_t env_addr = CONFIG_ENV_ADDR;
93 struct erase_info instr = {
97 res = (char *)&env_new.data;
98 len = hexport_r(&env_htab, '\0', &res, ENV_SIZE, 0, NULL);
100 error("Cannot export environment: errno = %d\n", errno);
103 env_new.crc = crc32(0, env_new.data, ENV_SIZE);
105 instr.len = CONFIG_ENV_SIZE;
106 #ifdef CONFIG_ENV_ADDR_FLEX
107 if (FLEXONENAND(this)) {
108 env_addr = CONFIG_ENV_ADDR_FLEX;
109 instr.len = CONFIG_ENV_SIZE_FLEX;
110 instr.len <<= onenand_mtd.eraseregions[0].numblocks == 1 ?
114 instr.addr = env_addr;
116 if (mtd->erase(mtd, &instr)) {
117 printf("OneNAND: erase failed at 0x%08llx\n", env_addr);
121 if (mtd->write(mtd, env_addr, ONENAND_MAX_ENV_SIZE, &retlen,
122 (u_char *)&env_new)) {
123 printf("OneNAND: write failed at 0x%llx\n", instr.addr);
133 gd->env_addr = (ulong)&default_environment[0];