diff options
| author | Julien Stephan <[email protected]> | 2025-06-30 12:08:16 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-12-30 11:22:57 -0600 |
| commit | 5e9b0b56ad8c2a4289b2b506ad3d0f3acd0d20ba (patch) | |
| tree | 6a39e7d920a1089506083bb62e794cceca259c66 /cmd/Kconfig | |
| parent | 5b2ee2c4a200961fa92ab1f2f2502ee41905257e (diff) | |
cmd: add new command to read edid
Add a new command to read EDID info from connected display.
When applicable EDID can also be retrieved by commands such as:
i2c dev x
i2c edid 0x50
but the new read_edid function relies on the implementation of the
read_edid callback from DISPLAY driver.
Signed-off-by: Julien Stephan <[email protected]>
Diffstat (limited to 'cmd/Kconfig')
| -rw-r--r-- | cmd/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index f21d27cb27f..3018e33ca7d 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1608,6 +1608,12 @@ config CMD_READ help Provides low-level access to the data in a partition. +config CMD_READ_EDID + bool "read_edid - Read display EDID" + depends on DISPLAY + help + Read and parse edid from connected display device. + config CMD_REMOTEPROC bool "remoteproc" depends on REMOTEPROC |
