]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
drm/dp: Add drm_dp_dpcd_read_link_status()
authorThierry Reding <treding@nvidia.com>
Fri, 22 Nov 2013 15:37:57 +0000 (16:37 +0100)
committerThierry Reding <treding@nvidia.com>
Wed, 26 Feb 2014 16:21:33 +0000 (17:21 +0100)
The function reads the link status (6 bytes starting at offset 0x202)
from the DPCD so that it can be conveniently passed to other DPCD
helpers.

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/gpu/drm/drm_dp_helper.c
include/drm/drm_dp_helper.h

index da6bcfe178a6850b905e68bb77668cf64b74d75a..84262ed64ce7b0c896310bb84af7a7809f0cbf21 100644 (file)
@@ -456,3 +456,19 @@ ssize_t drm_dp_dpcd_write(struct drm_dp_aux *aux, unsigned int offset,
                                  size);
 }
 EXPORT_SYMBOL(drm_dp_dpcd_write);
+
+/**
+ * drm_dp_dpcd_read_link_status() - read DPCD link status (bytes 0x202-0x207)
+ * @aux: DisplayPort AUX channel
+ * @status: buffer to store the link status in (must be at least 6 bytes)
+ *
+ * Returns the number of bytes transferred on success or a negative error
+ * code on failure.
+ */
+int drm_dp_dpcd_read_link_status(struct drm_dp_aux *aux,
+                                u8 status[DP_LINK_STATUS_SIZE])
+{
+       return drm_dp_dpcd_read(aux, DP_LANE0_1_STATUS, status,
+                               DP_LINK_STATUS_SIZE);
+}
+EXPORT_SYMBOL(drm_dp_dpcd_read_link_status);
index 70f18eb3ca1a98a26c3cfc96a72ce4e1ccd3dffb..a78711feb0d1241ad853c645ff52569b92534c7a 100644 (file)
@@ -477,4 +477,7 @@ static inline ssize_t drm_dp_dpcd_writeb(struct drm_dp_aux *aux,
        return drm_dp_dpcd_write(aux, offset, &value, 1);
 }
 
+int drm_dp_dpcd_read_link_status(struct drm_dp_aux *aux,
+                                u8 status[DP_LINK_STATUS_SIZE]);
+
 #endif /* _DRM_DP_HELPER_H_ */