blob: 24a9e4b79ff76dddc75629b55fe83068798e80a2 [file] [log] [blame]
/*
* common/cmd_cec.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.
*
*/
#include <common.h>
#include <command.h>
#include <asm/cpu_id.h>
#include <asm/arch/io.h>
#include <asm/arch/clock.h>
#include <amlogic/aml_cec.h>
#define CEC_VERSION "Ver 2017/11/14\n"
static void cec_init(int logic_addr, unsigned char fun_cfg)
{
printf("%s :%d,%#x\n", __func__, logic_addr,fun_cfg);
cec_hw_init(logic_addr, fun_cfg);
}
static int do_cec(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
int logic_addr = 0;
int fun_cfg = 0x2f;
printf(CEC_VERSION);
if (argc >= 2)
logic_addr = simple_strtoul(argv[1], NULL, 10);
if (argc >= 3)
fun_cfg = simple_strtoul(argv[2], NULL, 16);
cec_init(logic_addr, (unsigned char)fun_cfg);
return 0;
}
U_BOOT_CMD(
cec, CONFIG_SYS_MAXARGS, 0, do_cec,
"Amlogic cec",
" - hdmi cec function \n"
" - param: logic addr;fun_cfg\n"
"\n"
);