Eric Nelson | 99e2dc5 | 2013-03-09 07:06:09 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 Boundary Devices Inc. |
| 3 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Eric Nelson | 99e2dc5 | 2013-03-09 07:06:09 +0000 | [diff] [blame] | 5 | */ |
| 6 | #include <common.h> |
| 7 | #include <asm/arch/imx-regs.h> |
| 8 | #include <asm/arch/mxc_hdmi.h> |
| 9 | #include <asm/io.h> |
| 10 | |
| 11 | static 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; |
Robert Winkler | 10f779d | 2013-07-23 15:07:56 -0700 | [diff] [blame] | 14 | return (readb(&hdmi->phy_stat0) & HDMI_DVI_STAT) ? 0 : 1; |
Eric Nelson | 99e2dc5 | 2013-03-09 07:06:09 +0000 | [diff] [blame] | 15 | } |
| 16 | |
| 17 | U_BOOT_CMD(hdmidet, 1, 1, do_hdmidet, |
| 18 | "detect HDMI monitor", |
| 19 | "" |
| 20 | ); |