OSHW-DEIMOS/SOFTWARE/A64-TERES/u-boot_new/sprite/sprite_erase.c
Dimitar Gamishev 093685c7d8 u-boot
2017-10-13 14:02:55 +03:00

204 lines
4.9 KiB
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* (C) Copyright 2007-2013
* Allwinner Technology Co., Ltd. <www.allwinnertech.com>
* Jerry Wang <wangflord@allwinnertech.com>
*
* 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 <config.h>
#include <common.h>
#include <sunxi_mbr.h>
#include <sys_config.h>
#include "sprite_privatedata.h"
#include "sprite_verify.h"
#include <securestorage.h>
#include <fdt_support.h>
/*
************************************************************************************************************
*
* function
*
* name :
*
* parmeters :
*
* return :
*
* note :
*
*
************************************************************************************************************
*/
int sunxi_sprite_erase_flash(void *img_mbr_buffer)
{
uint32_t need_erase_flag = 0;
char buf[SUNXI_MBR_SIZE * SUNXI_MBR_COPY_NUM];
//int ret;
int nodeoffset;
if(sunxi_sprite_erase(0, img_mbr_buffer) > 0)
{
printf("flash already erased\n");
return 0;
}
//获取擦除信息查看是否需要擦除flash
//ret = script_parser_fetch("platform", "eraseflag", &need_erase_flag, 1);
nodeoffset = fdt_path_offset(working_fdt,FDT_PATH_PLATFORM);
if(nodeoffset > 0)
{
fdt_getprop_u32(working_fdt,nodeoffset,"eraseflag",&need_erase_flag);
}
if(need_erase_flag)
{
printf("do need erase flash\n");
}
else
{
printf("not need erase flash\n");
}
//当要求强制擦除,不处理私有数据
if(need_erase_flag == 0x11)
{
printf("force erase flash\n");
sunxi_sprite_erase(1, img_mbr_buffer);
return 0;
}
//检测不到private分区即不用保护用户数据
if(!sunxi_sprite_probe_prvt(img_mbr_buffer))
{
printf("no part need to protect user data\n");
sunxi_sprite_erase(need_erase_flag, img_mbr_buffer);
return 0;
}
//当初始化失败的时候,直接擦除,不处理私有数据
if(sunxi_sprite_init(1))
{
debug("sunxi sprite pre init fail, we have to erase it\n");
sunxi_sprite_exit(1);
sunxi_sprite_erase(need_erase_flag, img_mbr_buffer);
return 0;
}
debug("nand pre init ok\n");
//读出量产介质上的MBR
if(!sunxi_sprite_read(0, (SUNXI_MBR_SIZE * SUNXI_MBR_COPY_NUM)/512, buf))
{
printf("read local mbr on flash failed\n");
sunxi_sprite_exit(1);
sunxi_sprite_erase(need_erase_flag, img_mbr_buffer);
return 0;
}
//校验MBR
if(sunxi_sprite_verify_mbr(buf))
{
printf("the mbr on flash is bad\n");
sunxi_sprite_exit(1);
sunxi_sprite_erase(need_erase_flag, img_mbr_buffer);
return 0;
}
printf("begin to store data\n");
if(sunxi_sprite_store_part_data(buf) < 0)
{
sunxi_sprite_exit(1);
return -1;
}
sunxi_sprite_exit(1);
printf("need_erase_flag = %d\n", need_erase_flag);
//开始擦除
printf("begin to erase\n");
sunxi_sprite_erase(need_erase_flag, img_mbr_buffer);
//开始回写private
printf("finish erase\n");
sunxi_sprite_init(0);
printf("rewrite\n");
if(sunxi_sprite_restore_part_data(img_mbr_buffer))
{
sunxi_sprite_exit(0);
return -1;
}
printf("flash exit\n");
sunxi_sprite_exit(0);
return 0;
}
/*
************************************************************************************************************
*
* function
*
* name :
*
* parmeters :
*
* return :
*
* note :
*
*
************************************************************************************************************
*/
int sunxi_sprite_force_erase_key(void)
{
char buf[SUNXI_MBR_SIZE * SUNXI_MBR_COPY_NUM];
if(sunxi_sprite_init(1))
{
printf("sunxi sprite pre init fail\n");
return -1;
}
//读出量产介质上的MBR
if(!sunxi_sprite_read(0, (SUNXI_MBR_SIZE * SUNXI_MBR_COPY_NUM)/512, buf))
{
printf("read local mbr on flash failed\n");
sunxi_sprite_exit(1);
return -1;
}
//校验MBR
if(sunxi_sprite_verify_mbr(buf))
{
printf("the mbr on flash is bad\n");
sunxi_sprite_exit(1);
return -1;
}
if(sunxi_sprite_erase_private_key(buf))
{
printf("erase key fail \n");
return -1;
}
#ifdef CONFIG_SUNXI_SECURE_STORAGE
if(sunxi_secure_storage_init())
return -1;
if(sunxi_secure_storage_erase("key_burned_flag") == -1)
return -1;
#endif
printf("erase key success \n");
return 0;
}