]> Git Repo - J-u-boot.git/blame - arch/arm/mach-imx/cmd_hdmidet.c
configs: fsl: move bootrom specific defines to Kconfig
[J-u-boot.git] / arch / arm / mach-imx / cmd_hdmidet.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
99e2dc59
EN
2/*
3 * Copyright (C) 2012 Boundary Devices Inc.
99e2dc59
EN
4 */
5#include <common.h>
09140113 6#include <command.h>
99e2dc59
EN
7#include <asm/arch/imx-regs.h>
8#include <asm/arch/mxc_hdmi.h>
9#include <asm/io.h>
10
09140113
SG
11static int do_hdmidet(struct cmd_tbl *cmdtp, int flag, int argc,
12 char *const argv[])
99e2dc59
EN
13{
14 struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
10f779da 15 return (readb(&hdmi->phy_stat0) & HDMI_DVI_STAT) ? 0 : 1;
99e2dc59
EN
16}
17
18U_BOOT_CMD(hdmidet, 1, 1, do_hdmidet,
19 "detect HDMI monitor",
20 ""
21);
This page took 0.358417 seconds and 4 git commands to generate.