1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * DRM driver for Ilitek ILI9225 panels
7 * Some code copied from mipi-dbi.c
8 * Copyright 2016 Noralf Trønnes
11 #include <linux/delay.h>
12 #include <linux/dma-buf.h>
13 #include <linux/gpio/consumer.h>
14 #include <linux/module.h>
15 #include <linux/property.h>
16 #include <linux/spi/spi.h>
17 #include <video/mipi_display.h>
19 #include <drm/drm_atomic_helper.h>
20 #include <drm/drm_damage_helper.h>
21 #include <drm/drm_drv.h>
22 #include <drm/drm_fb_dma_helper.h>
23 #include <drm/drm_fbdev_generic.h>
24 #include <drm/drm_fourcc.h>
25 #include <drm/drm_framebuffer.h>
26 #include <drm/drm_gem_atomic_helper.h>
27 #include <drm/drm_gem_dma_helper.h>
28 #include <drm/drm_managed.h>
29 #include <drm/drm_mipi_dbi.h>
30 #include <drm/drm_rect.h>
32 #define ILI9225_DRIVER_READ_CODE 0x00
33 #define ILI9225_DRIVER_OUTPUT_CONTROL 0x01
34 #define ILI9225_LCD_AC_DRIVING_CONTROL 0x02
35 #define ILI9225_ENTRY_MODE 0x03
36 #define ILI9225_DISPLAY_CONTROL_1 0x07
37 #define ILI9225_BLANK_PERIOD_CONTROL_1 0x08
38 #define ILI9225_FRAME_CYCLE_CONTROL 0x0b
39 #define ILI9225_INTERFACE_CONTROL 0x0c
40 #define ILI9225_OSCILLATION_CONTROL 0x0f
41 #define ILI9225_POWER_CONTROL_1 0x10
42 #define ILI9225_POWER_CONTROL_2 0x11
43 #define ILI9225_POWER_CONTROL_3 0x12
44 #define ILI9225_POWER_CONTROL_4 0x13
45 #define ILI9225_POWER_CONTROL_5 0x14
46 #define ILI9225_VCI_RECYCLING 0x15
47 #define ILI9225_RAM_ADDRESS_SET_1 0x20
48 #define ILI9225_RAM_ADDRESS_SET_2 0x21
49 #define ILI9225_WRITE_DATA_TO_GRAM 0x22
50 #define ILI9225_SOFTWARE_RESET 0x28
51 #define ILI9225_GATE_SCAN_CONTROL 0x30
52 #define ILI9225_VERTICAL_SCROLL_1 0x31
53 #define ILI9225_VERTICAL_SCROLL_2 0x32
54 #define ILI9225_VERTICAL_SCROLL_3 0x33
55 #define ILI9225_PARTIAL_DRIVING_POS_1 0x34
56 #define ILI9225_PARTIAL_DRIVING_POS_2 0x35
57 #define ILI9225_HORIZ_WINDOW_ADDR_1 0x36
58 #define ILI9225_HORIZ_WINDOW_ADDR_2 0x37
59 #define ILI9225_VERT_WINDOW_ADDR_1 0x38
60 #define ILI9225_VERT_WINDOW_ADDR_2 0x39
61 #define ILI9225_GAMMA_CONTROL_1 0x50
62 #define ILI9225_GAMMA_CONTROL_2 0x51
63 #define ILI9225_GAMMA_CONTROL_3 0x52
64 #define ILI9225_GAMMA_CONTROL_4 0x53
65 #define ILI9225_GAMMA_CONTROL_5 0x54
66 #define ILI9225_GAMMA_CONTROL_6 0x55
67 #define ILI9225_GAMMA_CONTROL_7 0x56
68 #define ILI9225_GAMMA_CONTROL_8 0x57
69 #define ILI9225_GAMMA_CONTROL_9 0x58
70 #define ILI9225_GAMMA_CONTROL_10 0x59
72 static inline int ili9225_command(struct mipi_dbi *dbi, u8 cmd, u16 data)
74 u8 par[2] = { data >> 8, data & 0xff };
76 return mipi_dbi_command_buf(dbi, cmd, par, 2);
79 static void ili9225_fb_dirty(struct drm_framebuffer *fb, struct drm_rect *rect)
81 struct drm_gem_dma_object *dma_obj = drm_fb_dma_get_gem_obj(fb, 0);
82 struct mipi_dbi_dev *dbidev = drm_to_mipi_dbi_dev(fb->dev);
83 unsigned int height = rect->y2 - rect->y1;
84 unsigned int width = rect->x2 - rect->x1;
85 struct mipi_dbi *dbi = &dbidev->dbi;
86 bool swap = dbi->swap_bytes;
93 if (!drm_dev_enter(fb->dev, &idx))
96 full = width == fb->width && height == fb->height;
98 DRM_DEBUG_KMS("Flushing [FB:%d] " DRM_RECT_FMT "\n", fb->base.id, DRM_RECT_ARG(rect));
100 if (!dbi->dc || !full || swap ||
101 fb->format->format == DRM_FORMAT_XRGB8888) {
103 ret = mipi_dbi_buf_copy(dbidev->tx_buf, fb, rect, swap);
110 switch (dbidev->rotation) {
122 y1 = fb->width - rect->x2;
123 y2 = fb->width - rect->x1 - 1;
128 x1 = fb->width - rect->x2;
129 x2 = fb->width - rect->x1 - 1;
130 y1 = fb->height - rect->y2;
131 y2 = fb->height - rect->y1 - 1;
136 x1 = fb->height - rect->y2;
137 x2 = fb->height - rect->y1 - 1;
145 ili9225_command(dbi, ILI9225_HORIZ_WINDOW_ADDR_1, x2);
146 ili9225_command(dbi, ILI9225_HORIZ_WINDOW_ADDR_2, x1);
147 ili9225_command(dbi, ILI9225_VERT_WINDOW_ADDR_1, y2);
148 ili9225_command(dbi, ILI9225_VERT_WINDOW_ADDR_2, y1);
150 ili9225_command(dbi, ILI9225_RAM_ADDRESS_SET_1, x_start);
151 ili9225_command(dbi, ILI9225_RAM_ADDRESS_SET_2, y_start);
153 ret = mipi_dbi_command_buf(dbi, ILI9225_WRITE_DATA_TO_GRAM, tr,
157 dev_err_once(fb->dev->dev, "Failed to update display %d\n", ret);
162 static void ili9225_pipe_update(struct drm_simple_display_pipe *pipe,
163 struct drm_plane_state *old_state)
165 struct drm_plane_state *state = pipe->plane.state;
166 struct drm_rect rect;
168 if (!pipe->crtc.state->active)
171 if (drm_atomic_helper_damage_merged(old_state, state, &rect))
172 ili9225_fb_dirty(state->fb, &rect);
175 static void ili9225_pipe_enable(struct drm_simple_display_pipe *pipe,
176 struct drm_crtc_state *crtc_state,
177 struct drm_plane_state *plane_state)
179 struct mipi_dbi_dev *dbidev = drm_to_mipi_dbi_dev(pipe->crtc.dev);
180 struct drm_framebuffer *fb = plane_state->fb;
181 struct device *dev = pipe->crtc.dev->dev;
182 struct mipi_dbi *dbi = &dbidev->dbi;
183 struct drm_rect rect = {
192 if (!drm_dev_enter(pipe->crtc.dev, &idx))
197 mipi_dbi_hw_reset(dbi);
200 * There don't seem to be two example init sequences that match, so
201 * using the one from the popular Arduino library for this display.
202 * https://github.com/Nkawu/TFT_22_ILI9225/blob/master/src/TFT_22_ILI9225.cpp
205 ret = ili9225_command(dbi, ILI9225_POWER_CONTROL_1, 0x0000);
207 DRM_DEV_ERROR(dev, "Error sending command %d\n", ret);
210 ili9225_command(dbi, ILI9225_POWER_CONTROL_2, 0x0000);
211 ili9225_command(dbi, ILI9225_POWER_CONTROL_3, 0x0000);
212 ili9225_command(dbi, ILI9225_POWER_CONTROL_4, 0x0000);
213 ili9225_command(dbi, ILI9225_POWER_CONTROL_5, 0x0000);
217 ili9225_command(dbi, ILI9225_POWER_CONTROL_2, 0x0018);
218 ili9225_command(dbi, ILI9225_POWER_CONTROL_3, 0x6121);
219 ili9225_command(dbi, ILI9225_POWER_CONTROL_4, 0x006f);
220 ili9225_command(dbi, ILI9225_POWER_CONTROL_5, 0x495f);
221 ili9225_command(dbi, ILI9225_POWER_CONTROL_1, 0x0800);
225 ili9225_command(dbi, ILI9225_POWER_CONTROL_2, 0x103b);
229 switch (dbidev->rotation) {
243 ili9225_command(dbi, ILI9225_DRIVER_OUTPUT_CONTROL, 0x011c);
244 ili9225_command(dbi, ILI9225_LCD_AC_DRIVING_CONTROL, 0x0100);
245 ili9225_command(dbi, ILI9225_ENTRY_MODE, 0x1000 | am_id);
246 ili9225_command(dbi, ILI9225_DISPLAY_CONTROL_1, 0x0000);
247 ili9225_command(dbi, ILI9225_BLANK_PERIOD_CONTROL_1, 0x0808);
248 ili9225_command(dbi, ILI9225_FRAME_CYCLE_CONTROL, 0x1100);
249 ili9225_command(dbi, ILI9225_INTERFACE_CONTROL, 0x0000);
250 ili9225_command(dbi, ILI9225_OSCILLATION_CONTROL, 0x0d01);
251 ili9225_command(dbi, ILI9225_VCI_RECYCLING, 0x0020);
252 ili9225_command(dbi, ILI9225_RAM_ADDRESS_SET_1, 0x0000);
253 ili9225_command(dbi, ILI9225_RAM_ADDRESS_SET_2, 0x0000);
255 ili9225_command(dbi, ILI9225_GATE_SCAN_CONTROL, 0x0000);
256 ili9225_command(dbi, ILI9225_VERTICAL_SCROLL_1, 0x00db);
257 ili9225_command(dbi, ILI9225_VERTICAL_SCROLL_2, 0x0000);
258 ili9225_command(dbi, ILI9225_VERTICAL_SCROLL_3, 0x0000);
259 ili9225_command(dbi, ILI9225_PARTIAL_DRIVING_POS_1, 0x00db);
260 ili9225_command(dbi, ILI9225_PARTIAL_DRIVING_POS_2, 0x0000);
262 ili9225_command(dbi, ILI9225_GAMMA_CONTROL_1, 0x0000);
263 ili9225_command(dbi, ILI9225_GAMMA_CONTROL_2, 0x0808);
264 ili9225_command(dbi, ILI9225_GAMMA_CONTROL_3, 0x080a);
265 ili9225_command(dbi, ILI9225_GAMMA_CONTROL_4, 0x000a);
266 ili9225_command(dbi, ILI9225_GAMMA_CONTROL_5, 0x0a08);
267 ili9225_command(dbi, ILI9225_GAMMA_CONTROL_6, 0x0808);
268 ili9225_command(dbi, ILI9225_GAMMA_CONTROL_7, 0x0000);
269 ili9225_command(dbi, ILI9225_GAMMA_CONTROL_8, 0x0a00);
270 ili9225_command(dbi, ILI9225_GAMMA_CONTROL_9, 0x0710);
271 ili9225_command(dbi, ILI9225_GAMMA_CONTROL_10, 0x0710);
273 ili9225_command(dbi, ILI9225_DISPLAY_CONTROL_1, 0x0012);
277 ili9225_command(dbi, ILI9225_DISPLAY_CONTROL_1, 0x1017);
279 ili9225_fb_dirty(fb, &rect);
284 static void ili9225_pipe_disable(struct drm_simple_display_pipe *pipe)
286 struct mipi_dbi_dev *dbidev = drm_to_mipi_dbi_dev(pipe->crtc.dev);
287 struct mipi_dbi *dbi = &dbidev->dbi;
292 * This callback is not protected by drm_dev_enter/exit since we want to
293 * turn off the display on regular driver unload. It's highly unlikely
294 * that the underlying SPI controller is gone should this be called after
298 ili9225_command(dbi, ILI9225_DISPLAY_CONTROL_1, 0x0000);
300 ili9225_command(dbi, ILI9225_POWER_CONTROL_2, 0x0007);
302 ili9225_command(dbi, ILI9225_POWER_CONTROL_1, 0x0a02);
305 static int ili9225_dbi_command(struct mipi_dbi *dbi, u8 *cmd, u8 *par,
308 struct spi_device *spi = dbi->spi;
309 unsigned int bpw = 8;
313 gpiod_set_value_cansleep(dbi->dc, 0);
314 speed_hz = mipi_dbi_spi_cmd_max_speed(spi, 1);
315 ret = mipi_dbi_spi_transfer(spi, speed_hz, 8, cmd, 1);
319 if (*cmd == ILI9225_WRITE_DATA_TO_GRAM && !dbi->swap_bytes)
322 gpiod_set_value_cansleep(dbi->dc, 1);
323 speed_hz = mipi_dbi_spi_cmd_max_speed(spi, num);
325 return mipi_dbi_spi_transfer(spi, speed_hz, bpw, par, num);
328 static const struct drm_simple_display_pipe_funcs ili9225_pipe_funcs = {
329 .enable = ili9225_pipe_enable,
330 .disable = ili9225_pipe_disable,
331 .update = ili9225_pipe_update,
334 static const struct drm_display_mode ili9225_mode = {
335 DRM_SIMPLE_MODE(176, 220, 35, 44),
338 DEFINE_DRM_GEM_DMA_FOPS(ili9225_fops);
340 static const struct drm_driver ili9225_driver = {
341 .driver_features = DRIVER_GEM | DRIVER_MODESET | DRIVER_ATOMIC,
342 .fops = &ili9225_fops,
343 DRM_GEM_DMA_DRIVER_OPS_VMAP,
345 .desc = "Ilitek ILI9225",
351 static const struct of_device_id ili9225_of_match[] = {
352 { .compatible = "vot,v220hf01a-t" },
355 MODULE_DEVICE_TABLE(of, ili9225_of_match);
357 static const struct spi_device_id ili9225_id[] = {
358 { "v220hf01a-t", 0 },
361 MODULE_DEVICE_TABLE(spi, ili9225_id);
363 static int ili9225_probe(struct spi_device *spi)
365 struct device *dev = &spi->dev;
366 struct mipi_dbi_dev *dbidev;
367 struct drm_device *drm;
368 struct mipi_dbi *dbi;
369 struct gpio_desc *rs;
373 dbidev = devm_drm_dev_alloc(dev, &ili9225_driver,
374 struct mipi_dbi_dev, drm);
376 return PTR_ERR(dbidev);
381 dbi->reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH);
382 if (IS_ERR(dbi->reset))
383 return dev_err_probe(dev, PTR_ERR(dbi->reset), "Failed to get GPIO 'reset'\n");
385 rs = devm_gpiod_get(dev, "rs", GPIOD_OUT_LOW);
387 return dev_err_probe(dev, PTR_ERR(rs), "Failed to get GPIO 'rs'\n");
389 device_property_read_u32(dev, "rotation", &rotation);
391 ret = mipi_dbi_spi_init(spi, dbi, rs);
395 /* override the command function set in mipi_dbi_spi_init() */
396 dbi->command = ili9225_dbi_command;
398 ret = mipi_dbi_dev_init(dbidev, &ili9225_pipe_funcs, &ili9225_mode, rotation);
402 drm_mode_config_reset(drm);
404 ret = drm_dev_register(drm, 0);
408 spi_set_drvdata(spi, drm);
410 drm_fbdev_generic_setup(drm, 0);
415 static void ili9225_remove(struct spi_device *spi)
417 struct drm_device *drm = spi_get_drvdata(spi);
420 drm_atomic_helper_shutdown(drm);
423 static void ili9225_shutdown(struct spi_device *spi)
425 drm_atomic_helper_shutdown(spi_get_drvdata(spi));
428 static struct spi_driver ili9225_spi_driver = {
431 .owner = THIS_MODULE,
432 .of_match_table = ili9225_of_match,
434 .id_table = ili9225_id,
435 .probe = ili9225_probe,
436 .remove = ili9225_remove,
437 .shutdown = ili9225_shutdown,
439 module_spi_driver(ili9225_spi_driver);
441 MODULE_DESCRIPTION("Ilitek ILI9225 DRM driver");
443 MODULE_LICENSE("GPL");