Skip to content

Commit

Permalink
Read HDMI Status
Browse files Browse the repository at this point in the history
  • Loading branch information
lupyuen committed Sep 1, 2023
1 parent 51f420e commit 444b984
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion boards/risc-v/jh7110/star64/src/jh7110_appinit.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,8 @@ void board_late_initialize(void)
_info("revision=0x%x, chip_id=0x%x", revision, chip_id);
DEBUGASSERT(revision != 0 && chip_id != 0);

// Dump the HDMI Status. Check for Hot Plug (1 << 7)
// Read the HDMI Status
// TODO: Check for Hot Plug (1 << 7)
uint32_t hdmi_status = getreg32(0x29590000 + (0xc8 * 4));
_info("hdmi_status=0x%x\n", hdmi_status);

Expand Down

0 comments on commit 444b984

Please sign in to comment.