module: Convert symbol namespace to string literal
[linux-stable.git] / include / drm / drm_mipi_dbi.h
blobf45f9612c0bc49b3ae50b3f8f891d1913103a116
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3 * MIPI Display Bus Interface (DBI) LCD controller support
5 * Copyright 2016 Noralf Trønnes
6 */
8 #ifndef __LINUX_MIPI_DBI_H
9 #define __LINUX_MIPI_DBI_H
11 #include <linux/mutex.h>
12 #include <drm/drm_device.h>
13 #include <drm/drm_simple_kms_helper.h>
15 struct drm_format_conv_state;
16 struct drm_rect;
17 struct gpio_desc;
18 struct iosys_map;
19 struct regulator;
20 struct spi_device;
22 /**
23 * struct mipi_dbi - MIPI DBI interface
25 struct mipi_dbi {
26 /**
27 * @cmdlock: Command lock
29 struct mutex cmdlock;
31 /**
32 * @command: Bus specific callback executing commands.
34 int (*command)(struct mipi_dbi *dbi, u8 *cmd, u8 *param, size_t num);
36 /**
37 * @read_commands: Array of read commands terminated by a zero entry.
38 * Reading is disabled if this is NULL.
40 const u8 *read_commands;
42 /**
43 * @swap_bytes: Swap bytes in buffer before transfer
45 bool swap_bytes;
47 /**
48 * @reset: Optional reset gpio
50 struct gpio_desc *reset;
52 /* Type C specific */
54 /**
55 * @spi: SPI device
57 struct spi_device *spi;
59 /**
60 * @write_memory_bpw: Bits per word used on a MIPI_DCS_WRITE_MEMORY_START transfer
62 unsigned int write_memory_bpw;
64 /**
65 * @dc: Optional D/C gpio.
67 struct gpio_desc *dc;
69 /**
70 * @tx_buf9: Buffer used for Option 1 9-bit conversion
72 void *tx_buf9;
74 /**
75 * @tx_buf9_len: Size of tx_buf9.
77 size_t tx_buf9_len;
80 /**
81 * struct mipi_dbi_dev - MIPI DBI device
83 struct mipi_dbi_dev {
84 /**
85 * @drm: DRM device
87 struct drm_device drm;
89 /**
90 * @pipe: Display pipe structure
92 struct drm_simple_display_pipe pipe;
94 /**
95 * @connector: Connector
97 struct drm_connector connector;
99 /**
100 * @mode: Fixed display mode
102 struct drm_display_mode mode;
105 * @pixel_format: Native pixel format (DRM_FORMAT\_\*)
107 u32 pixel_format;
110 * @tx_buf: Buffer used for transfer (copy clip rect area)
112 u16 *tx_buf;
115 * @rotation: initial rotation in degrees Counter Clock Wise
117 unsigned int rotation;
120 * @left_offset: Horizontal offset of the display relative to the
121 * controller's driver array
123 unsigned int left_offset;
126 * @top_offset: Vertical offset of the display relative to the
127 * controller's driver array
129 unsigned int top_offset;
132 * @backlight: backlight device (optional)
134 struct backlight_device *backlight;
137 * @regulator: power regulator (Vdd) (optional)
139 struct regulator *regulator;
142 * @io_regulator: I/O power regulator (Vddi) (optional)
144 struct regulator *io_regulator;
147 * @dbi: MIPI DBI interface
149 struct mipi_dbi dbi;
152 * @driver_private: Driver private data.
153 * Necessary for drivers with private data since devm_drm_dev_alloc()
154 * can't allocate structures that embed a structure which then again
155 * embeds drm_device.
157 void *driver_private;
160 static inline struct mipi_dbi_dev *drm_to_mipi_dbi_dev(struct drm_device *drm)
162 return container_of(drm, struct mipi_dbi_dev, drm);
165 int mipi_dbi_spi_init(struct spi_device *spi, struct mipi_dbi *dbi,
166 struct gpio_desc *dc);
167 int mipi_dbi_dev_init_with_formats(struct mipi_dbi_dev *dbidev,
168 const struct drm_simple_display_pipe_funcs *funcs,
169 const uint32_t *formats, unsigned int format_count,
170 const struct drm_display_mode *mode,
171 unsigned int rotation, size_t tx_buf_size);
172 int mipi_dbi_dev_init(struct mipi_dbi_dev *dbidev,
173 const struct drm_simple_display_pipe_funcs *funcs,
174 const struct drm_display_mode *mode, unsigned int rotation);
175 enum drm_mode_status mipi_dbi_pipe_mode_valid(struct drm_simple_display_pipe *pipe,
176 const struct drm_display_mode *mode);
177 void mipi_dbi_pipe_update(struct drm_simple_display_pipe *pipe,
178 struct drm_plane_state *old_state);
179 void mipi_dbi_enable_flush(struct mipi_dbi_dev *dbidev,
180 struct drm_crtc_state *crtc_state,
181 struct drm_plane_state *plan_state);
182 void mipi_dbi_pipe_disable(struct drm_simple_display_pipe *pipe);
183 int mipi_dbi_pipe_begin_fb_access(struct drm_simple_display_pipe *pipe,
184 struct drm_plane_state *plane_state);
185 void mipi_dbi_pipe_end_fb_access(struct drm_simple_display_pipe *pipe,
186 struct drm_plane_state *plane_state);
187 void mipi_dbi_pipe_reset_plane(struct drm_simple_display_pipe *pipe);
188 struct drm_plane_state *mipi_dbi_pipe_duplicate_plane_state(struct drm_simple_display_pipe *pipe);
189 void mipi_dbi_pipe_destroy_plane_state(struct drm_simple_display_pipe *pipe,
190 struct drm_plane_state *plane_state);
192 void mipi_dbi_hw_reset(struct mipi_dbi *dbi);
193 bool mipi_dbi_display_is_on(struct mipi_dbi *dbi);
194 int mipi_dbi_poweron_reset(struct mipi_dbi_dev *dbidev);
195 int mipi_dbi_poweron_conditional_reset(struct mipi_dbi_dev *dbidev);
197 u32 mipi_dbi_spi_cmd_max_speed(struct spi_device *spi, size_t len);
198 int mipi_dbi_spi_transfer(struct spi_device *spi, u32 speed_hz,
199 u8 bpw, const void *buf, size_t len);
201 int mipi_dbi_command_read(struct mipi_dbi *dbi, u8 cmd, u8 *val);
202 int mipi_dbi_command_buf(struct mipi_dbi *dbi, u8 cmd, u8 *data, size_t len);
203 int mipi_dbi_command_stackbuf(struct mipi_dbi *dbi, u8 cmd, const u8 *data,
204 size_t len);
205 int mipi_dbi_buf_copy(void *dst, struct iosys_map *src, struct drm_framebuffer *fb,
206 struct drm_rect *clip, bool swap,
207 struct drm_format_conv_state *fmtcnv_state);
210 * mipi_dbi_command - MIPI DCS command with optional parameter(s)
211 * @dbi: MIPI DBI structure
212 * @cmd: Command
213 * @seq: Optional parameter(s)
215 * Send MIPI DCS command to the controller. Use mipi_dbi_command_read() for
216 * get/read.
218 * Returns:
219 * Zero on success, negative error code on failure.
221 #define mipi_dbi_command(dbi, cmd, seq...) \
222 ({ \
223 const u8 d[] = { seq }; \
224 struct device *dev = &(dbi)->spi->dev; \
225 int ret; \
226 ret = mipi_dbi_command_stackbuf(dbi, cmd, d, ARRAY_SIZE(d)); \
227 if (ret) \
228 dev_err_ratelimited(dev, "error %d when sending command %#02x\n", ret, cmd); \
229 ret; \
232 #ifdef CONFIG_DEBUG_FS
233 void mipi_dbi_debugfs_init(struct drm_minor *minor);
234 #else
235 static inline void mipi_dbi_debugfs_init(struct drm_minor *minor) {}
236 #endif
239 * DRM_MIPI_DBI_SIMPLE_DISPLAY_PIPE_FUNCS - Initializes struct drm_simple_display_pipe_funcs
240 * for MIPI-DBI devices
241 * @enable_: Enable-callback implementation
243 * This macro initializes struct drm_simple_display_pipe_funcs with default
244 * values for MIPI-DBI-based devices. The only callback that depends on the
245 * hardware is @enable, for which the driver has to provide an implementation.
246 * MIPI-based drivers are encouraged to use this macro for initialization.
248 #define DRM_MIPI_DBI_SIMPLE_DISPLAY_PIPE_FUNCS(enable_) \
249 .mode_valid = mipi_dbi_pipe_mode_valid, \
250 .enable = (enable_), \
251 .disable = mipi_dbi_pipe_disable, \
252 .update = mipi_dbi_pipe_update, \
253 .begin_fb_access = mipi_dbi_pipe_begin_fb_access, \
254 .end_fb_access = mipi_dbi_pipe_end_fb_access, \
255 .reset_plane = mipi_dbi_pipe_reset_plane, \
256 .duplicate_plane_state = mipi_dbi_pipe_duplicate_plane_state, \
257 .destroy_plane_state = mipi_dbi_pipe_destroy_plane_state
259 #endif /* __LINUX_MIPI_DBI_H */