Revert "ANDROID: include: drm: support unicasting mipi cmds to dsi ctrls"

Necessary changes to support unicasting mipi cmds to dsi ctrls have been
made to vendor specific drivers.

This reverts commit 265fb0a88a.

Bug: 163689280
Change-Id: I54e9d2faf2cc96ca1c04fe05aa12c5312781adf5
Signed-off-by: Narendra Muppalla <NarendraM@codeaurora.org>
This commit is contained in:
Narendra Muppalla
2021-01-20 11:24:23 -08:00
parent e976e0ae24
commit 0e9cdc9863

View File

@@ -19,9 +19,6 @@ struct drm_dsc_picture_parameter_set;
#define MIPI_DSI_MSG_REQ_ACK BIT(0)
/* use Low Power Mode to transmit message */
#define MIPI_DSI_MSG_USE_LPM BIT(1)
/* read mipi_dsi_msg.ctrl and unicast to only that ctrls */
#define MIPI_DSI_MSG_UNICAST BIT(2)
/* Stack all commands until lastcommand bit and trigger all in one go */
#define MIPI_DSI_MSG_LASTCOMMAND BIT(3)
/**
@@ -29,8 +26,6 @@ struct drm_dsc_picture_parameter_set;
* @channel: virtual channel id
* @type: payload data type
* @flags: flags controlling this message transmission
* @ctrl: ctrl index to transmit on
* @wait_ms: duration in ms to wait after message transmission
* @tx_len: length of @tx_buf
* @tx_buf: data to be written
* @rx_len: length of @rx_buf
@@ -40,8 +35,6 @@ struct mipi_dsi_msg {
u8 channel;
u8 type;
u16 flags;
u32 ctrl;
u32 wait_ms;
size_t tx_len;
const void *tx_buf;