cmd_hdmidet.c 471 B

12345678910111213141516171819
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2012 Boundary Devices Inc.
  4. */
  5. #include <common.h>
  6. #include <asm/arch/imx-regs.h>
  7. #include <asm/arch/mxc_hdmi.h>
  8. #include <asm/io.h>
  9. static int do_hdmidet(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  10. {
  11. struct hdmi_regs *hdmi = (struct hdmi_regs *)HDMI_ARB_BASE_ADDR;
  12. return (readb(&hdmi->phy_stat0) & HDMI_DVI_STAT) ? 0 : 1;
  13. }
  14. U_BOOT_CMD(hdmidet, 1, 1, do_hdmidet,
  15. "detect HDMI monitor",
  16. ""
  17. );