blob: ca2fa90ab5572f7f4b0ecd4a9a793850d587a4e5 [file] [log] [blame]
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
/*
* common/cmd_clkmsr.c
*
* Copyright (C) 2020 Amlogic, Inc. All rights reserved.
*
*/
#include <common.h>
#include <command.h>
#include <asm/cpu_id.h>
#include <asm/arch/io.h>
#include <asm/arch/regs.h>
#include <asm/arch/clock.h>
static int do_clkmsr(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
int index = 0xff;
if (argc == 2)
index = simple_strtoul(argv[1], NULL, 10);
clk_msr(index);
return 0;
}
static int do_ringmsr(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
int index = 0xff;
if (argc < 2)
return CMD_RET_USAGE;
if (argc == 2)
index = simple_strtoul(argv[1], NULL, 10);
#ifdef CONFIG_RING
ring_msr(index);
#else
printf("error: this prj not support get ring %x\n", index);
#endif
return 0;
}
static char ringmsr_help_text[] =
"ringmsr x\n"
" - for get chip ring info\n"
" - x: \n"
" G12A/G12B/TL1:\n"
" 0x0: print all ring info and set voltage\n"
" 0x1-0x7: get efuse corner info\n"
" 0xff: print all ring info and no set voltage\n"
" 0xfe: print all efuse corner info\n";
U_BOOT_CMD(
clkmsr, 2, 1, do_clkmsr,
"Amlogic measure clock",
" - measure PLL clock.\n"
"\n"
"clkmsr [index]"
"\n"
);
U_BOOT_CMD(
ringmsr, 2, 1, do_ringmsr,
"Amlogic measure ring",
ringmsr_help_text
);