diff options
author | Simon Glass <sjg@chromium.org> | 2015-04-14 21:03:38 -0600 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2015-05-13 09:24:10 -0700 |
commit | 51f2c99e14b28b65b7f66a5cd392fa49c03537aa (patch) | |
tree | 4269e3d3667b6d78f69ecbd7301d194c978db53f /include/dm/uclass-id.h | |
parent | 00cf1167bb8f7c08825262ee83e77274ff034f0a (diff) | |
download | u-boot-imx-51f2c99e14b28b65b7f66a5cd392fa49c03537aa.zip u-boot-imx-51f2c99e14b28b65b7f66a5cd392fa49c03537aa.tar.gz u-boot-imx-51f2c99e14b28b65b7f66a5cd392fa49c03537aa.tar.bz2 |
dm: video: Add a uclass for display port
eDP (Embedded DisplayPort) is a standard widely used in laptops to drive
LCD panels. Add a uclass for this which supports a few simple operations.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'include/dm/uclass-id.h')
-rw-r--r-- | include/dm/uclass-id.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dm/uclass-id.h b/include/dm/uclass-id.h index b17528d..095bcb2 100644 --- a/include/dm/uclass-id.h +++ b/include/dm/uclass-id.h @@ -27,6 +27,7 @@ enum uclass_id { /* U-Boot uclasses start here - in alphabetical order */ UCLASS_CPU, /* CPU, typically part of an SoC */ UCLASS_CROS_EC, /* Chrome OS EC */ + UCLASS_DISPLAY_PORT, /* Display port video */ UCLASS_ETH, /* Ethernet device */ UCLASS_GPIO, /* Bank of general-purpose I/O pins */ UCLASS_I2C, /* I2C bus */ |