218 lines
4.7 KiB
C
218 lines
4.7 KiB
C
|
/*
|
||
|
* 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>
|
||
|
#include <sys_config_old.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;
|
||
|
volatile int sunxi_usb_probe_update_action;
|
||
|
|
||
|
|
||
|
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;
|
||
|
int burn_key_abort_by_key = 1;
|
||
|
|
||
|
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 */
|
||
|
if (!script_parser_fetch("target", "burn_key_abort_by_key", &burn_key_abort_by_key, 1))
|
||
|
{
|
||
|
printf("burn_key_abort_by_key = %d\n",burn_key_abort_by_key);
|
||
|
}
|
||
|
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;
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
if(sunxi_usb_probe_update_action == 1)
|
||
|
{
|
||
|
printf("ready to run efex \n");
|
||
|
sunxi_board_run_fel();
|
||
|
}
|
||
|
if(sunxi_usb_probe_update_action == 2)
|
||
|
{
|
||
|
printf("ready to boot normal \n");
|
||
|
break ;
|
||
|
}
|
||
|
}
|
||
|
if(ctrlc())
|
||
|
{
|
||
|
ret = SUNXI_UPDATE_NEXT_ACTION_NORMAL;
|
||
|
break;
|
||
|
}
|
||
|
if(burn_key_abort_by_key && 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"
|
||
|
);
|
||
|
|