/* * (C) Copyright 2007-2011 * Allwinner Technology Co., Ltd. * Tom Cubie * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */ #include #include #include #include #include #include #include #include #include #ifdef CONFIG_ALLWINNER #include #include #include #endif char * env_name_spec = "SUNXI"; #ifdef ENV_IS_EMBEDDED env_t *env_ptr = &environment; #else /* ! ENV_IS_EMBEDDED */ env_t *env_ptr; #endif /* ENV_IS_EMBEDDED */ /* local functions */ #if !defined(ENV_IS_EMBEDDED) static void use_default(void); #endif DECLARE_GLOBAL_DATA_PTR; const uchar sunxi_sprite_environment[] = { #ifdef CONFIG_SUNXI_SPRITE_ENV_SETTINGS CONFIG_SUNXI_SPRITE_ENV_SETTINGS #endif "\0" }; #if !defined(CONFIG_ENV_OFFSET) #define CONFIG_ENV_OFFSET 0 #endif //loff_t env_offset = (loff_t)CONFIG_ENV_ADDR; size_t env_size = (size_t)CONFIG_ENV_SIZE; uchar env_get_char_spec(int index) { return ( *((uchar *)(gd->env_addr + index)) ); } int env_init(void) { /* use default */ gd->env_addr = (ulong)&default_environment[0]; gd->env_valid = 1; return 0; } #ifdef CONFIG_ENV_OFFSET_REDUND #error No support for redundant environment on sunxi nand yet! #endif static void flash_use_efex_env(void) { if (himport_r(&env_htab, (char *)sunxi_sprite_environment, sizeof(sunxi_sprite_environment), '\0', H_INTERACTIVE, 0, NULL) == 0) { error("Environment import failed: errno = %d\n", errno); } gd->flags |= GD_FLG_ENV_READY; return ; } int saveenv(void) { ALLOC_CACHE_ALIGN_BUFFER(env_t, env_new, 1); int ret; u32 start; printf("saveenv storage_type = %d\n", get_boot_storage_type()); start = sunxi_partition_get_offset_byname(CONFIG_SUNXI_ENV_PARTITION); if(!start){ printf("fail to find part named %s\n", CONFIG_SUNXI_ENV_PARTITION); return -1; } ret = env_export(env_new); if(ret) goto fini; ret = sunxi_flash_write(start, CONFIG_ENV_SIZE/512, env_new); sunxi_flash_flush(); fini: return ret; } static void flash_env_relocate_spec(int workmode) { #if !defined(ENV_IS_EMBEDDED) char buf[CONFIG_ENV_SIZE]; u32 start; if((workmode & WORK_MODE_PRODUCT) && (!(workmode & WORK_MODE_UPDATE))) { flash_use_efex_env(); } else { start = sunxi_partition_get_offset_byname(CONFIG_SUNXI_ENV_PARTITION); if(!start){ printf("fail to find part named %s\n", CONFIG_SUNXI_ENV_PARTITION); use_default(); return; } if(!sunxi_flash_read(start, CONFIG_ENV_SIZE/512, buf)) { use_default(); return; } env_import(buf, 1); } #endif } void env_relocate_spec(void) { debug("env_relocate_spec storage_type = %d\n", get_boot_storage_type()); flash_env_relocate_spec(uboot_spare_head.boot_data.work_mode); } #if !defined(ENV_IS_EMBEDDED) static void use_default() { set_default_env(NULL); } #endif /* * This is called before nand_init() so we can't read NAND to * validate env data. */