blob: 6e82e38acafc63e93dc3e7b30b66b2bd0129eaf7 [file] [log] [blame]
/*
* common/cmd_factory_boot.c
*
* Copyright (C) 2015 Amlogic, Inc. All rights reserved.
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <common.h>
#include <command.h>
#include <flash_ts.h>
#include <asm/reboot.h>
#include <asm/arch/secure_apb.h>
#include <asm/io.h>
#include <asm/arch/bl31_apis.h>
#include <asm/arch/watchdog.h>
int set_factory_boot (char * const value)
{
int ret = 1;
#if defined(CONFIG_NAND_FTS) || defined(CONFIG_MMC_FTS)
#if defined(CONFIG_NAND_FTS)
extern bool amlnf_is_inited(void);
if (amlnf_is_inited()) {
#endif
#if defined(CONFIG_MMC_FTS)
extern bool amlmmc_is_inited(void);
if (amlmmc_is_inited()) {
#endif
flash_ts_init();
char key[] = "bootloader.command";
ret = flash_ts_set(key, value);
printf("FTS set:\n%s -> %s\nReturn: %d\n", key, value, ret);
}
#endif
return ret;
}
int do_factory_boot (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
char value[] = "boot-factory";
return set_factory_boot(value);
}
int do_not_factory_boot (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
char value[] = "";
return set_factory_boot(value);
}
U_BOOT_CMD(
enable_factory_boot, 1, 0, do_factory_boot,
"Set FTS flag to enable factory boot.",
"enable_factory_boot\n"
);
U_BOOT_CMD(
disable_factory_boot, 1, 0, do_not_factory_boot,
"Resets FTS flag to disable factory boot.",
"disable_factory_boot\n"
);