blob: d6ec7c46913f29b512f5470e908f23b60f76be3c [file] [log] [blame]
Eric Nelsonb94cfae2013-03-09 07:06:09 +00001/*
2 * Copyright (C) 2012 Boundary Devices Inc.
3 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Eric Nelsonb94cfae2013-03-09 07:06:09 +00005 */
6#include <common.h>
7#include <asm/arch/imx-regs.h>
8#include <asm/arch/mxc_hdmi.h>
9#include <asm/io.h>
10
11static int do_hdmidet(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
12{
13 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
14 u8 reg = readb(&hdmi->phy_stat0) & HDMI_PHY_HPD;
15 return (reg&HDMI_PHY_HPD) ? 0 : 1;
16}
17
18U_BOOT_CMD(hdmidet, 1, 1, do_hdmidet,
19 "detect HDMI monitor",
20 ""
21);