Home | History | Annotate | Download | only in drm

Lines Matching defs:payload

468 	 * The payload follows the header and is word count bytes long.
478 packet->payload = msg->tx_buf;
534 * the payload in a long packet transmitted from the peripheral back to the
537 * @value: the maximum size of the payload
610 * @payload: buffer containing the payload
611 * @size: size of payload buffer
614 * the payload length.
619 ssize_t mipi_dsi_generic_write(struct mipi_dsi_device *dsi, const void *payload,
624 .tx_buf = payload,
697 * mipi_dsi_dcs_write_buffer() - transmit a DCS command with payload
703 * the command payload length.
742 * @data: buffer containing the command payload
743 * @len: command payload length
746 * the command payload length.
765 /* concatenate the DCS command byte and the payload */
981 u8 payload[4] = { start >> 8, start & 0xff, end >> 8, end & 0xff };
984 err = mipi_dsi_dcs_write(dsi, MIPI_DCS_SET_COLUMN_ADDRESS, payload,
985 sizeof(payload));
1005 u8 payload[4] = { start >> 8, start & 0xff, end >> 8, end & 0xff };
1008 err = mipi_dsi_dcs_write(dsi, MIPI_DCS_SET_PAGE_ADDRESS, payload,
1009 sizeof(payload));
1090 u8 payload[3] = { MIPI_DCS_SET_TEAR_SCANLINE, scanline >> 8,
1094 err = mipi_dsi_generic_write(dsi, payload, sizeof(payload));
1113 u8 payload[2] = { brightness & 0xff, brightness >> 8 };
1117 payload, sizeof(payload));