/* * MIPI DSI Bus * * Copyright (C) 2012-2013, Samsung Electronics, Co., Ltd. * Andrzej Hajda <a.hajda@samsung.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #ifndef __DRM_MIPI_DSI_H__ #define __DRM_MIPI_DSI_H__ #include <linux/device.h> struct mipi_dsi_host; struct mipi_dsi_device; /* request ACK from peripheral */ #define MIPI_DSI_MSG_REQ_ACK BIT(0) /* use Low Power Mode to transmit message */ #define MIPI_DSI_MSG_USE_LPM BIT(1) /** * struct mipi_dsi_msg - read/write DSI buffer * @channel: virtual channel id * @type: payload data type * @flags: flags controlling this message transmission * @tx_len: length of @tx_buf * @tx_buf: data to be written * @rx_len: length of @rx_buf * @rx_buf: data to be read, or NULL */ struct mipi_dsi_msg { u8 channel; u8 type; u16 flags; size_t tx_len; const void *tx_buf; size_t rx_len; void *rx_buf; }; bool mipi_dsi_packet_format_is_short(u8 type); bool mipi_dsi_packet_format_is_long(u8 type); /** * struct mipi_dsi_packet - represents a MIPI DSI packet in protocol format * @size: size (in bytes) of the packet * @header: the four bytes that make up the header (Data ID, Word Count or * Packet Data, and ECC) * @payload_length: number of bytes in the payload * @payload: a pointer to a buffer containing the payload, if any */ struct mipi_dsi_packet { size_t size; u8 header[4]; size_t payload_length; const u8 *payload; }; int mipi_dsi_create_packet(struct mipi_dsi_packet *packet, const struct mipi_dsi_msg *msg); /** * struct mipi_dsi_host_ops - DSI bus operations * @attach: attach DSI device to DSI host * @detach: detach DSI device from DSI host * @transfer: transmit a DSI packet * * DSI packets transmitted by .transfer() are passed in as mipi_dsi_msg * structures. This structure contains information about the type of packet * being transmitted as well as the transmit and receive buffers. When an * error is encountered during transmission, this function will return a * negative error code. On success it shall return the number of bytes * transmitted for write packets or the number of bytes received for read * packets. * * Note that typically DSI packet transmission is atomic, so the .transfer() * function will seldomly return anything other than the number of bytes * contained in the transmit buffer on success. */ struct mipi_dsi_host_ops { int (*attach)(struct mipi_dsi_host *host, struct mipi_dsi_device *dsi); int (*detach)(struct mipi_dsi_host *host, struct mipi_dsi_device *dsi); ssize_t (*transfer)(struct mipi_dsi_host *host, const struct mipi_dsi_msg *msg); }; /** * struct mipi_dsi_host - DSI host device * @dev: driver model device node for this DSI host * @ops: DSI host operations * @list: list management */ struct mipi_dsi_host { struct device *dev; const struct mipi_dsi_host_ops *ops; struct list_head list; }; int mipi_dsi_host_register(struct mipi_dsi_host *host); void mipi_dsi_host_unregister(struct mipi_dsi_host *host); struct mipi_dsi_host *of_find_mipi_dsi_host_by_node(struct device_node *node); /* DSI mode flags */ /* video mode */ #define MIPI_DSI_MODE_VIDEO BIT(0) /* video burst mode */ #define MIPI_DSI_MODE_VIDEO_BURST BIT(1) /* video pulse mode */ #define MIPI_DSI_MODE_VIDEO_SYNC_PULSE BIT(2) /* enable auto vertical count mode */ #define MIPI_DSI_MODE_VIDEO_AUTO_VERT BIT(3) /* enable hsync-end packets in vsync-pulse and v-porch area */ #define MIPI_DSI_MODE_VIDEO_HSE BIT(4) /* disable hfront-porch area */ #define MIPI_DSI_MODE_VIDEO_HFP BIT(5) /* disable hback-porch area */ #define MIPI_DSI_MODE_VIDEO_HBP BIT(6) /* disable hsync-active area */ #define MIPI_DSI_MODE_VIDEO_HSA BIT(7) /* flush display FIFO on vsync pulse */ #define MIPI_DSI_MODE_VSYNC_FLUSH BIT(8) /* disable EoT packets in HS mode */ #define MIPI_DSI_MODE_EOT_PACKET BIT(9) /* device supports non-continuous clock behavior (DSI spec 5.6.1) */ #define MIPI_DSI_CLOCK_NON_CONTINUOUS BIT(10) /* transmit data in low power */ #define MIPI_DSI_MODE_LPM BIT(11) enum mipi_dsi_pixel_format { MIPI_DSI_FMT_RGB888, MIPI_DSI_FMT_RGB666, MIPI_DSI_FMT_RGB666_PACKED, MIPI_DSI_FMT_RGB565, }; #define DSI_DEV_NAME_SIZE 20 /** * struct mipi_dsi_device_info - template for creating a mipi_dsi_device * @type: DSI peripheral chip type * @channel: DSI virtual channel assigned to peripheral * @node: pointer to OF device node or NULL * * This is populated and passed to mipi_dsi_device_new to create a new * DSI device */ struct mipi_dsi_device_info { char type[DSI_DEV_NAME_SIZE]; u32 channel; struct device_node *node; }; /** * struct mipi_dsi_device - DSI peripheral device * @host: DSI host for this peripheral * @dev: driver model device node for this peripheral * @name: DSI peripheral chip type * @channel: virtual channel assigned to the peripheral * @format: pixel format for video mode * @lanes: number of active data lanes * @mode_flags: DSI operation mode related flags */ struct mipi_dsi_device { struct mipi_dsi_host *host; struct device dev; char name[DSI_DEV_NAME_SIZE]; unsigned int channel; unsigned int lanes; enum mipi_dsi_pixel_format format; unsigned long mode_flags; }; #define MIPI_DSI_MODULE_PREFIX "mipi-dsi:" static inline struct mipi_dsi_device *to_mipi_dsi_device(struct device *dev) { return container_of(dev, struct mipi_dsi_device, dev); } /** * mipi_dsi_pixel_format_to_bpp - obtain the number of bits per pixel for any * given pixel format defined by the MIPI DSI * specification * @fmt: MIPI DSI pixel format * * Returns: The number of bits per pixel of the given pixel format. */ static inline int mipi_dsi_pixel_format_to_bpp(enum mipi_dsi_pixel_format fmt) { switch (fmt) { case MIPI_DSI_FMT_RGB888: case MIPI_DSI_FMT_RGB666: return 24; case MIPI_DSI_FMT_RGB666_PACKED: return 18; case MIPI_DSI_FMT_RGB565: return 16; } return -EINVAL; } struct mipi_dsi_device * mipi_dsi_device_register_full(struct mipi_dsi_host *host, const struct mipi_dsi_device_info *info); void mipi_dsi_device_unregister(struct mipi_dsi_device *dsi); struct mipi_dsi_device *of_find_mipi_dsi_device_by_node(struct device_node *np); int mipi_dsi_attach(struct mipi_dsi_device *dsi); int mipi_dsi_detach(struct mipi_dsi_device *dsi); int mipi_dsi_shutdown_peripheral(struct mipi_dsi_device *dsi); int mipi_dsi_turn_on_peripheral(struct mipi_dsi_device *dsi); int mipi_dsi_set_maximum_return_packet_size(struct mipi_dsi_device *dsi, u16 value); ssize_t mipi_dsi_generic_write(struct mipi_dsi_device *dsi, const void *payload, size_t size); ssize_t mipi_dsi_generic_read(struct mipi_dsi_device *dsi, const void *params, size_t num_params, void *data, size_t size); /** * enum mipi_dsi_dcs_tear_mode - Tearing Effect Output Line mode * @MIPI_DSI_DCS_TEAR_MODE_VBLANK: the TE output line consists of V-Blanking * information only * @MIPI_DSI_DCS_TEAR_MODE_VHBLANK : the TE output line consists of both * V-Blanking and H-Blanking information */ enum mipi_dsi_dcs_tear_mode { MIPI_DSI_DCS_TEAR_MODE_VBLANK, MIPI_DSI_DCS_TEAR_MODE_VHBLANK, }; #define MIPI_DSI_DCS_POWER_MODE_DISPLAY (1 << 2) #define MIPI_DSI_DCS_POWER_MODE_NORMAL (1 << 3) #define MIPI_DSI_DCS_POWER_MODE_SLEEP (1 << 4) #define MIPI_DSI_DCS_POWER_MODE_PARTIAL (1 << 5) #define MIPI_DSI_DCS_POWER_MODE_IDLE (1 << 6) ssize_t mipi_dsi_dcs_write_buffer(struct mipi_dsi_device *dsi, const void *data, size_t len); ssize_t mipi_dsi_dcs_write(struct mipi_dsi_device *dsi, u8 cmd, const void *data, size_t len); ssize_t mipi_dsi_dcs_read(struct mipi_dsi_device *dsi, u8 cmd, void *data, size_t len); int mipi_dsi_dcs_nop(struct mipi_dsi_device *dsi); int mipi_dsi_dcs_soft_reset(struct mipi_dsi_device *dsi); int mipi_dsi_dcs_get_power_mode(struct mipi_dsi_device *dsi, u8 *mode); int mipi_dsi_dcs_get_pixel_format(struct mipi_dsi_device *dsi, u8 *format); int mipi_dsi_dcs_enter_sleep_mode(struct mipi_dsi_device *dsi); int mipi_dsi_dcs_exit_sleep_mode(struct mipi_dsi_device *dsi); int mipi_dsi_dcs_set_display_off(struct mipi_dsi_device *dsi); int mipi_dsi_dcs_set_display_on(struct mipi_dsi_device *dsi); int mipi_dsi_dcs_set_column_address(struct mipi_dsi_device *dsi, u16 start, u16 end); int mipi_dsi_dcs_set_page_address(struct mipi_dsi_device *dsi, u16 start, u16 end); int mipi_dsi_dcs_set_tear_off(struct mipi_dsi_device *dsi); int mipi_dsi_dcs_set_tear_on(struct mipi_dsi_device *dsi, enum mipi_dsi_dcs_tear_mode mode); int mipi_dsi_dcs_set_pixel_format(struct mipi_dsi_device *dsi, u8 format); int mipi_dsi_dcs_set_tear_scanline(struct mipi_dsi_device *dsi, u16 scanline); int mipi_dsi_dcs_set_display_brightness(struct mipi_dsi_device *dsi, u16 brightness); int mipi_dsi_dcs_get_display_brightness(struct mipi_dsi_device *dsi, u16 *brightness); /** * struct mipi_dsi_driver - DSI driver * @driver: device driver model driver * @probe: callback for device binding * @remove: callback for device unbinding * @shutdown: called at shutdown time to quiesce the device */ struct mipi_dsi_driver { struct device_driver driver; int(*probe)(struct mipi_dsi_device *dsi); int(*remove)(struct mipi_dsi_device *dsi); void (*shutdown)(struct mipi_dsi_device *dsi); }; static inline struct mipi_dsi_driver * to_mipi_dsi_driver(struct device_driver *driver) { return container_of(driver, struct mipi_dsi_driver, driver); } static inline void *mipi_dsi_get_drvdata(const struct mipi_dsi_device *dsi) { return dev_get_drvdata(&dsi->dev); } static inline void mipi_dsi_set_drvdata(struct mipi_dsi_device *dsi, void *data) { dev_set_drvdata(&dsi->dev, data); } int mipi_dsi_driver_register_full(struct mipi_dsi_driver *driver, struct module *owner); void mipi_dsi_driver_unregister(struct mipi_dsi_driver *driver); #define mipi_dsi_driver_register(driver) \ mipi_dsi_driver_register_full(driver, THIS_MODULE) #define module_mipi_dsi_driver(__mipi_dsi_driver) \ module_driver(__mipi_dsi_driver, mipi_dsi_driver_register, \ mipi_dsi_driver_unregister) #endif /* __DRM_MIPI_DSI__ */
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
bridge | Folder | 0755 |
|
|
i2c | Folder | 0755 |
|
|
tinydrm | Folder | 0755 |
|
|
ttm | Folder | 0755 |
|
|
amd_asic_type.h | File | 1.54 KB | 0644 |
|
ati_pcigart.h | File | 731 B | 0644 |
|
drmP.h | File | 10.84 KB | 0644 |
|
drm_agpsupport.h | File | 3.81 KB | 0644 |
|
drm_atomic.h | File | 30.49 KB | 0644 |
|
drm_atomic_helper.h | File | 10.7 KB | 0644 |
|
drm_auth.h | File | 3.4 KB | 0644 |
|
drm_blend.h | File | 2.05 KB | 0644 |
|
drm_bridge.h | File | 10.06 KB | 0644 |
|
drm_cache.h | File | 2.81 KB | 0644 |
|
drm_color_mgmt.h | File | 1.55 KB | 0644 |
|
drm_connector.h | File | 34.96 KB | 0644 |
|
drm_crtc.h | File | 32.42 KB | 0644 |
|
drm_crtc_helper.h | File | 3.27 KB | 0644 |
|
drm_debugfs.h | File | 3.36 KB | 0644 |
|
drm_debugfs_crc.h | File | 2.66 KB | 0644 |
|
drm_device.h | File | 5.58 KB | 0644 |
|
drm_displayid.h | File | 3.24 KB | 0644 |
|
drm_dp_dual_mode_helper.h | File | 4.43 KB | 0644 |
|
drm_dp_helper.h | File | 44.09 KB | 0644 |
|
drm_dp_mst_helper.h | File | 16.83 KB | 0644 |
|
drm_drv.h | File | 20.51 KB | 0644 |
|
drm_edid.h | File | 15.33 KB | 0644 |
|
drm_encoder.h | File | 7.99 KB | 0644 |
|
drm_encoder_slave.h | File | 6.46 KB | 0644 |
|
drm_fb_cma_helper.h | File | 1.38 KB | 0644 |
|
drm_fb_helper.h | File | 14.95 KB | 0644 |
|
drm_file.h | File | 10.59 KB | 0644 |
|
drm_fixed.h | File | 4.71 KB | 0644 |
|
drm_flip_work.h | File | 3.01 KB | 0644 |
|
drm_fourcc.h | File | 2.85 KB | 0644 |
|
drm_framebuffer.h | File | 9.86 KB | 0644 |
|
drm_gem.h | File | 9.83 KB | 0644 |
|
drm_gem_cma_helper.h | File | 3.41 KB | 0644 |
|
drm_gem_framebuffer_helper.h | File | 1.17 KB | 0644 |
|
drm_global.h | File | 1.94 KB | 0644 |
|
drm_hashtab.h | File | 3.01 KB | 0644 |
|
drm_ioctl.h | File | 6.26 KB | 0644 |
|
drm_irq.h | File | 1.29 KB | 0644 |
|
drm_lease.h | File | 1.43 KB | 0644 |
|
drm_legacy.h | File | 6.77 KB | 0644 |
|
drm_mipi_dsi.h | File | 10.08 KB | 0644 |
|
drm_mm.h | File | 16.48 KB | 0644 |
|
drm_mode_config.h | File | 25.93 KB | 0644 |
|
drm_mode_object.h | File | 5.77 KB | 0644 |
|
drm_modes.h | File | 17.8 KB | 0644 |
|
drm_modeset_helper.h | File | 1.57 KB | 0644 |
|
drm_modeset_helper_vtables.h | File | 48.62 KB | 0644 |
|
drm_modeset_lock.h | File | 4.02 KB | 0644 |
|
drm_of.h | File | 3.17 KB | 0644 |
|
drm_os_linux.h | File | 2.04 KB | 0644 |
|
drm_panel.h | File | 7.03 KB | 0644 |
|
drm_pci.h | File | 2.45 KB | 0644 |
|
drm_pciids.h | File | 66.48 KB | 0644 |
|
drm_plane.h | File | 20.38 KB | 0644 |
|
drm_plane_helper.h | File | 3.2 KB | 0644 |
|
drm_prime.h | File | 3.06 KB | 0644 |
|
drm_print.h | File | 3.58 KB | 0644 |
|
drm_property.h | File | 12.03 KB | 0644 |
|
drm_rect.h | File | 5.87 KB | 0644 |
|
drm_scdc_helper.h | File | 4.34 KB | 0644 |
|
drm_simple_kms_helper.h | File | 3.99 KB | 0644 |
|
drm_syncobj.h | File | 4.13 KB | 0644 |
|
drm_sysfs.h | File | 287 B | 0644 |
|
drm_vblank.h | File | 7.23 KB | 0644 |
|
drm_vma_manager.h | File | 7.65 KB | 0644 |
|
gma_drm.h | File | 1.01 KB | 0644 |
|
i915_component.h | File | 4.11 KB | 0644 |
|
i915_drm.h | File | 3.47 KB | 0644 |
|
i915_pciids.h | File | 15.55 KB | 0644 |
|
intel-gtt.h | File | 987 B | 0644 |
|
intel_lpe_audio.h | File | 1.72 KB | 0644 |
|