1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-04 10:12:14 +02:00
Files
u-boot-megous/common/cmd_sunxi_burn.c
Ondrej Jirman ba8c26ce40 initial
2019-03-04 15:37:41 +01:00

304 lines
6.3 KiB
C
Executable File

/*
* Copyright 2008 Freescale Semiconductor, Inc.
*
* 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 <common.h>
#include <config.h>
#include <command.h>
#include <sunxi_mbr.h>
#include <boot_type.h>
#include <sprite.h>
//#include <sunxi_usb.h>
#include "asm/arch/timer.h"
#include <securestorage.h>
#include <asm/arch/key.h>
#include <sunxi_board.h>
#include <power/sunxi/pmu.h>
extern int sunxi_usb_dev_register(uint dev_name);
extern void sunxi_usb_main_loop(int delaytime);
extern int sunxi_usb_extern_loop(void);
extern int sunxi_usb_init(int delaytime);
extern int sunxi_usb_exit(void);
DECLARE_GLOBAL_DATA_PTR;
extern volatile int sunxi_usb_burn_from_boot_handshake, sunxi_usb_burn_from_boot_init, sunxi_usb_burn_from_boot_setup;
int do_burn_from_boot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
int ret;
ulong begin_time= 0, over_time = 0;
if(gd->vbus_status != SUNXI_VBUS_PC)
{
printf("out of usb burn from boot without usb\n");
return 0;
}
tick_printf("usb burn from boot\n");
if(sunxi_usb_dev_register(4) < 0)
{
printf("usb burn fail: not support burn private data\n");
return -1;
}
if(sunxi_usb_init(0))
{
printf("%s usb init fail\n", __func__);
sunxi_usb_exit();
return 0;
}
tick_printf("usb prepare ok\n");
begin_time = get_timer(0);
over_time = 800; /* 800ms */
while(1)
{
if(sunxi_usb_burn_from_boot_init)
{
printf("usb sof ok\n");
break;
}
if(get_timer(begin_time) > over_time)
{
tick_printf("overtime\n");
sunxi_usb_exit();
tick_printf("%s usb : no usb exist\n", __func__);
return 0;
}
}
tick_printf("usb probe ok\n");
tick_printf("usb setup ok\n");
begin_time = get_timer(0);
over_time = 3000; /* 3000ms */
while(1)
{
ret = sunxi_usb_extern_loop();
if(ret)
{
break;
}
if(!sunxi_usb_burn_from_boot_handshake)
{
if(get_timer(begin_time) > over_time)
{
sunxi_usb_exit();
tick_printf("%s usb : have no handshake\n", __func__);
return 0;
}
}
if(ctrlc())
{
ret = SUNXI_UPDATE_NEXT_ACTION_NORMAL;
break;
}
if(sunxi_key_read()>0)
{
ret = SUNXI_UPDATE_NEXT_ACTION_NORMAL;
break;
}
}
tick_printf("exit usb burn from boot\n");
sunxi_usb_exit();
sunxi_update_subsequent_processing(ret);
return 0;
}
U_BOOT_CMD(
uburn, CONFIG_SYS_MAXARGS, 1, do_burn_from_boot,
"do a burn from boot",
"pburn [mode]"
"NULL"
);
/*
************************************************************************************************************
*
* function
*
* name :
*
* parmeters :
*
* return :
*
* note :
*
*
************************************************************************************************************
*/
int do_read_from_boot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
#ifdef CONFIG_SUNXI_SECURE_STORAGE
if(argc == 1)
{
return sunxi_secure_storage_list();
}
if(argc == 2)
{
char buffer[4096];
int ret, data_len;
memset(buffer, 0, 4096);
ret = sunxi_secure_storage_init();
if(ret < 0)
{
printf("%s secure storage init err\n", __func__);
return -1;
}
ret = sunxi_secure_object_read(argv[1], buffer, 4096, &data_len);
if(ret < 0)
{
printf("private data %s is not exist\n", argv[1]);
return -1;
}
printf("private data:\n");
sunxi_dump(buffer, strlen((const char *)buffer));
return 0;
}
#endif
return -1;
}
U_BOOT_CMD(
pbread, CONFIG_SYS_MAXARGS, 1, do_read_from_boot,
"read data from private data",
"pread [name]"
"NULL"
);
/*
************************************************************************************************************
*
* function
*
* name :
*
* parmeters :
*
* return :
*
* note :
*
*
************************************************************************************************************
*/
int do_probe_secure_storage(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
#ifdef CONFIG_SUNXI_SECURE_STORAGE
char *cmd, *name;
cmd = argv[1];
name = argv[2];
if(!strcmp(cmd, "read"))
{
if(argc == 2)
{
return sunxi_secure_storage_list();
}
if(argc == 3)
{
char buffer[4096];
int ret, data_len;
memset(buffer, 0, 4096);
ret = sunxi_secure_storage_init();
if(ret < 0)
{
printf("%s secure storage init err\n", __func__);
return -1;
}
ret = sunxi_secure_object_read(name, buffer, 4096, &data_len);
if(ret < 0)
{
printf("private data %s is not exist\n", name);
return -1;
}
printf("private data:\n");
sunxi_dump(buffer, strlen((const char *)buffer));
return 0;
}
}
else if(!strcmp(cmd, "erase"))
{
int ret;
ret = sunxi_secure_storage_init();
if(ret < 0)
{
printf("%s secure storage init err\n", __func__);
return -1;
}
if(argc == 2)
{
ret = sunxi_secure_storage_erase_all();
if(ret < 0)
{
printf("erase secure storage failed\n");
return -1;
}
}
else if(argc == 3)
{
if(!strcmp(name, "key_burned_flag"))
{
if(sunxi_secure_storage_erase_data_only("key_burned_flag"))
{
printf("erase key_burned_flag failed\n");
}
}
}
sunxi_secure_storage_exit();
return 0;
}
#endif
return -1;
}
U_BOOT_CMD(
pst, CONFIG_SYS_MAXARGS, 1, do_probe_secure_storage,
"read data from secure storage"
"erase flag in secure storage",
"pst read|erase [name]\n"
"pst read, then dump all data\n"
"pst read name, then dump the dedicate data\n"
"pst erase, then erase all secure storage data\n"
"pst erase key_burned_flag, then erase the dedicate data\n"
"NULL"
);