Lines Matching +full:per +full:- +full:peripheral
1 /* SPDX-License-Identifier: GPL-2.0-only */
5 * Copyright (C) 2012-2013, Samsung Electronics, Co., Ltd.
18 /* request ACK from peripheral */
24 * struct mipi_dsi_msg - read/write DSI buffer
49 * struct mipi_dsi_packet - represents a MIPI DSI packet in protocol format
67 * struct mipi_dsi_host_ops - DSI bus operations
94 * struct mipi_dsi_host - DSI host device
119 /* enable hsync-end packets in vsync-pulse and v-porch area */
121 /* disable hfront-porch area */
123 /* disable hback-porch area */
125 /* disable hsync-active area */
131 /* device supports non-continuous clock behavior (DSI spec 5.6.1) */
146 * struct mipi_dsi_device_info - template for creating a mipi_dsi_device
147 * @type: DSI peripheral chip type
148 * @channel: DSI virtual channel assigned to peripheral
161 * struct mipi_dsi_device - DSI peripheral device
162 * @host: DSI host for this peripheral
163 * @dev: driver model device node for this peripheral
165 * @name: DSI peripheral chip type
166 * @channel: virtual channel assigned to the peripheral
191 #define MIPI_DSI_MODULE_PREFIX "mipi-dsi:"
199 * mipi_dsi_pixel_format_to_bpp - obtain the number of bits per pixel for any
204 * Returns: The number of bits per pixel of the given pixel format.
220 return -EINVAL; in mipi_dsi_pixel_format_to_bpp()
244 * enum mipi_dsi_dcs_tear_mode - Tearing Effect Output Line mode
245 * @MIPI_DSI_DCS_TEAR_MODE_VBLANK: the TE output line consists of V-Blanking
248 * V-Blanking and H-Blanking information
294 * struct mipi_dsi_driver - DSI driver
315 return dev_get_drvdata(&dsi->dev); in mipi_dsi_get_drvdata()
320 dev_set_drvdata(&dsi->dev, data); in mipi_dsi_set_drvdata()