blob: e2571adfb0062326549bd76fed46ca58673724c9 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Eric Nelson99e2dc52013-03-09 07:06:09 +00002/*
3 * Copyright (C) 2012 Boundary Devices Inc.
Eric Nelson99e2dc52013-03-09 07:06:09 +00004 */
5#include <common.h>
Simon Glass09140112020-05-10 11:40:03 -06006#include <command.h>
Eric Nelson99e2dc52013-03-09 07:06:09 +00007#include <asm/arch/imx-regs.h>
8#include <asm/arch/mxc_hdmi.h>
9#include <asm/io.h>
10
Simon Glass09140112020-05-10 11:40:03 -060011static int do_hdmidet(struct cmd_tbl *cmdtp, int flag, int argc,
12 char *const argv[])
Eric Nelson99e2dc52013-03-09 07:06:09 +000013{
14 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
Robert Winkler10f779d2013-07-23 15:07:56 -070015 return (readb(&hdmi->phy_stat0) & HDMI_DVI_STAT) ? 0 : 1;
Eric Nelson99e2dc52013-03-09 07:06:09 +000016}
17
18U_BOOT_CMD(hdmidet, 1, 1, do_hdmidet,
19 "detect HDMI monitor",
20 ""
21);