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
99 * struct mipi_dsi_host - DSI host device
124 /* enable hsync-end packets in vsync-pulse and v-porch area */
126 /* disable hfront-porch area */
128 /* disable hback-porch area */
130 /* disable hsync-active area */
136 /* device supports non-continuous clock behavior (DSI spec 5.6.1) */
153 * struct mipi_dsi_device_info - template for creating a mipi_dsi_device
154 * @type: DSI peripheral chip type
155 * @channel: DSI virtual channel assigned to peripheral
168 * struct mipi_dsi_device - DSI peripheral device
169 * @host: DSI host for this peripheral
170 * @dev: driver model device node for this peripheral
171 * @name: DSI peripheral chip type
172 * @channel: virtual channel assigned to the peripheral
198 #define MIPI_DSI_MODULE_PREFIX "mipi-dsi:"
206 * mipi_dsi_pixel_format_to_bpp - obtain the number of bits per pixel for any
211 * Returns: The number of bits per pixel of the given pixel format.
227 return -EINVAL; in mipi_dsi_pixel_format_to_bpp()
255 * enum mipi_dsi_dcs_tear_mode - Tearing Effect Output Line mode
256 * @MIPI_DSI_DCS_TEAR_MODE_VBLANK: the TE output line consists of V-Blanking
259 * V-Blanking and H-Blanking information
301 * mipi_dsi_dcs_write_seq - transmit a DCS command with payload
302 * @dsi: DSI peripheral device
308 struct device *dev = &dsi->dev; \
318 * struct mipi_dsi_driver - DSI driver
339 return dev_get_drvdata(&dsi->dev); in mipi_dsi_get_drvdata()
344 dev_set_drvdata(&dsi->dev, data); in mipi_dsi_set_drvdata()