2 * DRM driver for Pervasive Displays RePaper branded e-ink panels
4 * Copyright 2013-2017 Pervasive Displays, Inc.
5 * Copyright 2017 Noralf Trønnes
8 * Material Film: Aurora Mb (V231)
11 * The controller code was taken from the userspace driver:
12 * https://github.com/repaper/gratis
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
20 #include <linux/delay.h>
21 #include <linux/dma-buf.h>
22 #include <linux/gpio/consumer.h>
23 #include <linux/module.h>
24 #include <linux/of_device.h>
25 #include <linux/sched/clock.h>
26 #include <linux/spi/spi.h>
27 #include <linux/thermal.h>
29 #include <drm/drm_gem_framebuffer_helper.h>
30 #include <drm/tinydrm/tinydrm.h>
31 #include <drm/tinydrm/tinydrm-helpers.h>
33 #define REPAPER_RID_G2_COG_ID 0x12
42 enum repaper_stage { /* Image pixel -> Display pixel */
43 REPAPER_COMPENSATE, /* B -> W, W -> B (Current Image) */
44 REPAPER_WHITE, /* B -> N, W -> W (Current Image) */
45 REPAPER_INVERSE, /* B -> N, W -> B (New Image) */
46 REPAPER_NORMAL /* B -> B, W -> W (New Image) */
49 enum repaper_epd_border_byte {
50 REPAPER_BORDER_BYTE_NONE,
51 REPAPER_BORDER_BYTE_ZERO,
52 REPAPER_BORDER_BYTE_SET,
56 struct tinydrm_device tinydrm;
57 struct spi_device *spi;
59 struct gpio_desc *panel_on;
60 struct gpio_desc *border;
61 struct gpio_desc *discharge;
62 struct gpio_desc *reset;
63 struct gpio_desc *busy;
65 struct thermal_zone_device *thermal;
69 unsigned int bytes_per_scan;
70 const u8 *channel_select;
71 unsigned int stage_time;
72 unsigned int factored_stage_time;
75 enum repaper_epd_border_byte border_byte;
85 static inline struct repaper_epd *
86 epd_from_tinydrm(struct tinydrm_device *tdev)
88 return container_of(tdev, struct repaper_epd, tinydrm);
91 static int repaper_spi_transfer(struct spi_device *spi, u8 header,
92 const void *tx, void *rx, size_t len)
94 void *txbuf = NULL, *rxbuf = NULL;
95 struct spi_transfer tr[2] = {};
99 headerbuf = kmalloc(1, GFP_KERNEL);
103 headerbuf[0] = header;
104 tr[0].tx_buf = headerbuf;
107 /* Stack allocated tx? */
108 if (tx && len <= 32) {
109 txbuf = kmalloc(len, GFP_KERNEL);
114 memcpy(txbuf, tx, len);
118 rxbuf = kmalloc(len, GFP_KERNEL);
125 tr[1].tx_buf = txbuf ? txbuf : tx;
126 tr[1].rx_buf = rxbuf;
130 ret = spi_sync_transfer(spi, tr, 2);
132 memcpy(rx, rxbuf, len);
142 static int repaper_write_buf(struct spi_device *spi, u8 reg,
143 const u8 *buf, size_t len)
147 ret = repaper_spi_transfer(spi, 0x70, ®, NULL, 1);
151 return repaper_spi_transfer(spi, 0x72, buf, NULL, len);
154 static int repaper_write_val(struct spi_device *spi, u8 reg, u8 val)
156 return repaper_write_buf(spi, reg, &val, 1);
159 static int repaper_read_val(struct spi_device *spi, u8 reg)
164 ret = repaper_spi_transfer(spi, 0x70, ®, NULL, 1);
168 ret = repaper_spi_transfer(spi, 0x73, NULL, &val, 1);
170 return ret ? ret : val;
173 static int repaper_read_id(struct spi_device *spi)
178 ret = repaper_spi_transfer(spi, 0x71, NULL, &id, 1);
180 return ret ? ret : id;
183 static void repaper_spi_mosi_low(struct spi_device *spi)
185 const u8 buf[1] = { 0 };
187 spi_write(spi, buf, 1);
190 /* pixels on display are numbered from 1 so even is actually bits 1,3,5,... */
191 static void repaper_even_pixels(struct repaper_epd *epd, u8 **pp,
192 const u8 *data, u8 fixed_value, const u8 *mask,
193 enum repaper_stage stage)
197 for (b = 0; b < (epd->width / 8); b++) {
199 u8 pixels = data[b] & 0xaa;
200 u8 pixel_mask = 0xff;
204 pixel_mask = (mask[b] ^ pixels) & 0xaa;
205 pixel_mask |= pixel_mask >> 1;
209 case REPAPER_COMPENSATE: /* B -> W, W -> B (Current) */
210 pixels = 0xaa | ((pixels ^ 0xaa) >> 1);
212 case REPAPER_WHITE: /* B -> N, W -> W (Current) */
213 pixels = 0x55 + ((pixels ^ 0xaa) >> 1);
215 case REPAPER_INVERSE: /* B -> N, W -> B (New) */
216 pixels = 0x55 | (pixels ^ 0xaa);
218 case REPAPER_NORMAL: /* B -> B, W -> W (New) */
219 pixels = 0xaa | (pixels >> 1);
223 pixels = (pixels & pixel_mask) | (~pixel_mask & 0x55);
224 p1 = (pixels >> 6) & 0x03;
225 p2 = (pixels >> 4) & 0x03;
226 p3 = (pixels >> 2) & 0x03;
227 p4 = (pixels >> 0) & 0x03;
228 pixels = (p1 << 0) | (p2 << 2) | (p3 << 4) | (p4 << 6);
231 *(*pp)++ = fixed_value;
236 /* pixels on display are numbered from 1 so odd is actually bits 0,2,4,... */
237 static void repaper_odd_pixels(struct repaper_epd *epd, u8 **pp,
238 const u8 *data, u8 fixed_value, const u8 *mask,
239 enum repaper_stage stage)
243 for (b = epd->width / 8; b > 0; b--) {
245 u8 pixels = data[b - 1] & 0x55;
246 u8 pixel_mask = 0xff;
249 pixel_mask = (mask[b - 1] ^ pixels) & 0x55;
250 pixel_mask |= pixel_mask << 1;
254 case REPAPER_COMPENSATE: /* B -> W, W -> B (Current) */
255 pixels = 0xaa | (pixels ^ 0x55);
257 case REPAPER_WHITE: /* B -> N, W -> W (Current) */
258 pixels = 0x55 + (pixels ^ 0x55);
260 case REPAPER_INVERSE: /* B -> N, W -> B (New) */
261 pixels = 0x55 | ((pixels ^ 0x55) << 1);
263 case REPAPER_NORMAL: /* B -> B, W -> W (New) */
264 pixels = 0xaa | pixels;
268 pixels = (pixels & pixel_mask) | (~pixel_mask & 0x55);
271 *(*pp)++ = fixed_value;
276 /* interleave bits: (byte)76543210 -> (16 bit).7.6.5.4.3.2.1 */
277 static inline u16 repaper_interleave_bits(u16 value)
279 value = (value | (value << 4)) & 0x0f0f;
280 value = (value | (value << 2)) & 0x3333;
281 value = (value | (value << 1)) & 0x5555;
286 /* pixels on display are numbered from 1 */
287 static void repaper_all_pixels(struct repaper_epd *epd, u8 **pp,
288 const u8 *data, u8 fixed_value, const u8 *mask,
289 enum repaper_stage stage)
293 for (b = epd->width / 8; b > 0; b--) {
295 u16 pixels = repaper_interleave_bits(data[b - 1]);
296 u16 pixel_mask = 0xffff;
299 pixel_mask = repaper_interleave_bits(mask[b - 1]);
301 pixel_mask = (pixel_mask ^ pixels) & 0x5555;
302 pixel_mask |= pixel_mask << 1;
306 case REPAPER_COMPENSATE: /* B -> W, W -> B (Current) */
307 pixels = 0xaaaa | (pixels ^ 0x5555);
309 case REPAPER_WHITE: /* B -> N, W -> W (Current) */
310 pixels = 0x5555 + (pixels ^ 0x5555);
312 case REPAPER_INVERSE: /* B -> N, W -> B (New) */
313 pixels = 0x5555 | ((pixels ^ 0x5555) << 1);
315 case REPAPER_NORMAL: /* B -> B, W -> W (New) */
316 pixels = 0xaaaa | pixels;
320 pixels = (pixels & pixel_mask) | (~pixel_mask & 0x5555);
321 *(*pp)++ = pixels >> 8;
324 *(*pp)++ = fixed_value;
325 *(*pp)++ = fixed_value;
330 /* output one line of scan and data bytes to the display */
331 static void repaper_one_line(struct repaper_epd *epd, unsigned int line,
332 const u8 *data, u8 fixed_value, const u8 *mask,
333 enum repaper_stage stage)
335 u8 *p = epd->line_buffer;
338 repaper_spi_mosi_low(epd->spi);
340 if (epd->pre_border_byte)
343 if (epd->middle_scan) {
345 repaper_odd_pixels(epd, &p, data, fixed_value, mask, stage);
348 for (b = epd->bytes_per_scan; b > 0; b--) {
349 if (line / 4 == b - 1)
350 *p++ = 0x03 << (2 * (line & 0x03));
356 repaper_even_pixels(epd, &p, data, fixed_value, mask, stage);
359 * even scan line, but as lines on display are numbered from 1,
362 for (b = 0; b < epd->bytes_per_scan; b++) {
363 if (0 != (line & 0x01) && line / 8 == b)
364 *p++ = 0xc0 >> (line & 0x06);
370 repaper_all_pixels(epd, &p, data, fixed_value, mask, stage);
373 * odd scan line, but as lines on display are numbered from 1,
376 for (b = epd->bytes_per_scan; b > 0; b--) {
377 if (0 == (line & 0x01) && line / 8 == b - 1)
378 *p++ = 0x03 << (line & 0x06);
384 switch (epd->border_byte) {
385 case REPAPER_BORDER_BYTE_NONE:
388 case REPAPER_BORDER_BYTE_ZERO:
392 case REPAPER_BORDER_BYTE_SET:
394 case REPAPER_COMPENSATE:
396 case REPAPER_INVERSE:
406 repaper_write_buf(epd->spi, 0x0a, epd->line_buffer,
407 p - epd->line_buffer);
409 /* Output data to panel */
410 repaper_write_val(epd->spi, 0x02, 0x07);
412 repaper_spi_mosi_low(epd->spi);
415 static void repaper_frame_fixed(struct repaper_epd *epd, u8 fixed_value,
416 enum repaper_stage stage)
420 for (line = 0; line < epd->height; line++)
421 repaper_one_line(epd, line, NULL, fixed_value, NULL, stage);
424 static void repaper_frame_data(struct repaper_epd *epd, const u8 *image,
425 const u8 *mask, enum repaper_stage stage)
430 for (line = 0; line < epd->height; line++) {
431 repaper_one_line(epd, line,
432 &image[line * (epd->width / 8)],
436 for (line = 0; line < epd->height; line++) {
437 size_t n = line * epd->width / 8;
439 repaper_one_line(epd, line, &image[n], 0, &mask[n],
445 static void repaper_frame_fixed_repeat(struct repaper_epd *epd, u8 fixed_value,
446 enum repaper_stage stage)
448 u64 start = local_clock();
449 u64 end = start + (epd->factored_stage_time * 1000 * 1000);
452 repaper_frame_fixed(epd, fixed_value, stage);
453 } while (local_clock() < end);
456 static void repaper_frame_data_repeat(struct repaper_epd *epd, const u8 *image,
457 const u8 *mask, enum repaper_stage stage)
459 u64 start = local_clock();
460 u64 end = start + (epd->factored_stage_time * 1000 * 1000);
463 repaper_frame_data(epd, image, mask, stage);
464 } while (local_clock() < end);
467 static void repaper_get_temperature(struct repaper_epd *epd)
469 int ret, temperature = 0;
470 unsigned int factor10x;
475 ret = thermal_zone_get_temp(epd->thermal, &temperature);
477 dev_err(&epd->spi->dev, "Failed to get temperature (%d)\n",
484 if (temperature <= -10)
486 else if (temperature <= -5)
488 else if (temperature <= 5)
490 else if (temperature <= 10)
492 else if (temperature <= 15)
494 else if (temperature <= 20)
496 else if (temperature <= 40)
501 epd->factored_stage_time = epd->stage_time * factor10x / 10;
504 static void repaper_gray8_to_mono_reversed(u8 *buf, u32 width, u32 height)
506 u8 *gray8 = buf, *mono = buf;
509 for (y = 0; y < height; y++)
510 for (xb = 0; xb < width / 8; xb++) {
513 for (i = 0; i < 8; i++) {
517 if (gray8[y * width + x] >> 7)
524 static int repaper_fb_dirty(struct drm_framebuffer *fb,
525 struct drm_file *file_priv,
526 unsigned int flags, unsigned int color,
527 struct drm_clip_rect *clips,
528 unsigned int num_clips)
530 struct drm_gem_cma_object *cma_obj = drm_fb_cma_get_gem_obj(fb, 0);
531 struct dma_buf_attachment *import_attach = cma_obj->base.import_attach;
532 struct tinydrm_device *tdev = fb->dev->dev_private;
533 struct repaper_epd *epd = epd_from_tinydrm(tdev);
534 struct drm_clip_rect clip;
538 /* repaper can't do partial updates */
542 clip.y2 = fb->height;
544 mutex_lock(&tdev->dirty_lock);
549 /* fbdev can flush even when we're not interested */
550 if (tdev->pipe.plane.fb != fb)
553 repaper_get_temperature(epd);
555 DRM_DEBUG("Flushing [FB:%d] st=%ums\n", fb->base.id,
556 epd->factored_stage_time);
558 buf = kmalloc(fb->width * fb->height, GFP_KERNEL);
565 ret = dma_buf_begin_cpu_access(import_attach->dmabuf,
571 tinydrm_xrgb8888_to_gray8(buf, cma_obj->vaddr, fb, &clip);
574 ret = dma_buf_end_cpu_access(import_attach->dmabuf,
580 repaper_gray8_to_mono_reversed(buf, fb->width, fb->height);
583 repaper_frame_data_repeat(epd, buf, epd->current_frame,
585 } else if (epd->cleared) {
586 repaper_frame_data_repeat(epd, epd->current_frame, NULL,
588 repaper_frame_data_repeat(epd, epd->current_frame, NULL,
590 repaper_frame_data_repeat(epd, buf, NULL, REPAPER_INVERSE);
591 repaper_frame_data_repeat(epd, buf, NULL, REPAPER_NORMAL);
595 /* Clear display (anything -> white) */
596 repaper_frame_fixed_repeat(epd, 0xff, REPAPER_COMPENSATE);
597 repaper_frame_fixed_repeat(epd, 0xff, REPAPER_WHITE);
598 repaper_frame_fixed_repeat(epd, 0xaa, REPAPER_INVERSE);
599 repaper_frame_fixed_repeat(epd, 0xaa, REPAPER_NORMAL);
601 /* Assuming a clear (white) screen output an image */
602 repaper_frame_fixed_repeat(epd, 0xaa, REPAPER_COMPENSATE);
603 repaper_frame_fixed_repeat(epd, 0xaa, REPAPER_WHITE);
604 repaper_frame_data_repeat(epd, buf, NULL, REPAPER_INVERSE);
605 repaper_frame_data_repeat(epd, buf, NULL, REPAPER_NORMAL);
611 memcpy(epd->current_frame, buf, fb->width * fb->height / 8);
614 * An extra frame write is needed if pixels are set in the bottom line,
615 * or else grey lines rises up from the pixels
617 if (epd->pre_border_byte) {
620 for (x = 0; x < (fb->width / 8); x++)
621 if (buf[x + (fb->width * (fb->height - 1) / 8)]) {
622 repaper_frame_data_repeat(epd, buf,
630 mutex_unlock(&tdev->dirty_lock);
633 dev_err(fb->dev->dev, "Failed to update display (%d)\n", ret);
639 static const struct drm_framebuffer_funcs repaper_fb_funcs = {
640 .destroy = drm_gem_fb_destroy,
641 .create_handle = drm_gem_fb_create_handle,
642 .dirty = repaper_fb_dirty,
645 static void power_off(struct repaper_epd *epd)
647 /* Turn off power and all signals */
648 gpiod_set_value_cansleep(epd->reset, 0);
649 gpiod_set_value_cansleep(epd->panel_on, 0);
651 gpiod_set_value_cansleep(epd->border, 0);
653 /* Ensure SPI MOSI and CLOCK are Low before CS Low */
654 repaper_spi_mosi_low(epd->spi);
656 /* Discharge pulse */
657 gpiod_set_value_cansleep(epd->discharge, 1);
659 gpiod_set_value_cansleep(epd->discharge, 0);
662 static void repaper_pipe_enable(struct drm_simple_display_pipe *pipe,
663 struct drm_crtc_state *crtc_state)
665 struct tinydrm_device *tdev = pipe_to_tinydrm(pipe);
666 struct repaper_epd *epd = epd_from_tinydrm(tdev);
667 struct spi_device *spi = epd->spi;
668 struct device *dev = &spi->dev;
672 DRM_DEBUG_DRIVER("\n");
674 /* Power up sequence */
675 gpiod_set_value_cansleep(epd->reset, 0);
676 gpiod_set_value_cansleep(epd->panel_on, 0);
677 gpiod_set_value_cansleep(epd->discharge, 0);
679 gpiod_set_value_cansleep(epd->border, 0);
680 repaper_spi_mosi_low(spi);
681 usleep_range(5000, 10000);
683 gpiod_set_value_cansleep(epd->panel_on, 1);
685 * This delay comes from the repaper.org userspace driver, it's not
686 * mentioned in the datasheet.
688 usleep_range(10000, 15000);
689 gpiod_set_value_cansleep(epd->reset, 1);
691 gpiod_set_value_cansleep(epd->border, 1);
692 usleep_range(5000, 10000);
693 gpiod_set_value_cansleep(epd->reset, 0);
694 usleep_range(5000, 10000);
695 gpiod_set_value_cansleep(epd->reset, 1);
696 usleep_range(5000, 10000);
698 /* Wait for COG to become ready */
699 for (i = 100; i > 0; i--) {
700 if (!gpiod_get_value_cansleep(epd->busy))
703 usleep_range(10, 100);
707 dev_err(dev, "timeout waiting for panel to become ready.\n");
712 repaper_read_id(spi);
713 ret = repaper_read_id(spi);
714 if (ret != REPAPER_RID_G2_COG_ID) {
716 dev_err(dev, "failed to read chip (%d)\n", ret);
718 dev_err(dev, "wrong COG ID 0x%02x\n", ret);
724 repaper_write_val(spi, 0x02, 0x40);
726 ret = repaper_read_val(spi, 0x0f);
727 if (ret < 0 || !(ret & 0x80)) {
729 dev_err(dev, "failed to read chip (%d)\n", ret);
731 dev_err(dev, "panel is reported broken\n");
736 /* Power saving mode */
737 repaper_write_val(spi, 0x0b, 0x02);
739 repaper_write_buf(spi, 0x01, epd->channel_select, 8);
740 /* High power mode osc */
741 repaper_write_val(spi, 0x07, 0xd1);
743 repaper_write_val(spi, 0x08, 0x02);
745 repaper_write_val(spi, 0x09, 0xc2);
747 repaper_write_val(spi, 0x04, 0x03);
748 /* Driver latch on */
749 repaper_write_val(spi, 0x03, 0x01);
750 /* Driver latch off */
751 repaper_write_val(spi, 0x03, 0x00);
752 usleep_range(5000, 10000);
754 /* Start chargepump */
755 for (i = 0; i < 4; ++i) {
756 /* Charge pump positive voltage on - VGH/VDL on */
757 repaper_write_val(spi, 0x05, 0x01);
760 /* Charge pump negative voltage on - VGL/VDL on */
761 repaper_write_val(spi, 0x05, 0x03);
764 /* Charge pump Vcom on - Vcom driver on */
765 repaper_write_val(spi, 0x05, 0x0f);
769 ret = repaper_read_val(spi, 0x0f);
771 dev_err(dev, "failed to read chip (%d)\n", ret);
783 dev_err(dev, "dc/dc failed\n");
789 * Output enable to disable
790 * The userspace driver sets this to 0x04, but the datasheet says 0x06
792 repaper_write_val(spi, 0x02, 0x04);
795 epd->partial = false;
798 static void repaper_pipe_disable(struct drm_simple_display_pipe *pipe)
800 struct tinydrm_device *tdev = pipe_to_tinydrm(pipe);
801 struct repaper_epd *epd = epd_from_tinydrm(tdev);
802 struct spi_device *spi = epd->spi;
805 DRM_DEBUG_DRIVER("\n");
807 mutex_lock(&tdev->dirty_lock);
808 epd->enabled = false;
809 mutex_unlock(&tdev->dirty_lock);
812 for (line = 0; line < epd->height; line++)
813 repaper_one_line(epd, 0x7fffu, NULL, 0x00, NULL,
819 repaper_one_line(epd, 0x7fffu, NULL, 0x00, NULL,
822 gpiod_set_value_cansleep(epd->border, 0);
824 gpiod_set_value_cansleep(epd->border, 1);
826 /* Border dummy line */
827 repaper_one_line(epd, 0x7fffu, NULL, 0x00, NULL,
832 /* not described in datasheet */
833 repaper_write_val(spi, 0x0b, 0x00);
834 /* Latch reset turn on */
835 repaper_write_val(spi, 0x03, 0x01);
836 /* Power off charge pump Vcom */
837 repaper_write_val(spi, 0x05, 0x03);
838 /* Power off charge pump neg voltage */
839 repaper_write_val(spi, 0x05, 0x01);
841 /* Discharge internal */
842 repaper_write_val(spi, 0x04, 0x80);
843 /* turn off all charge pumps */
844 repaper_write_val(spi, 0x05, 0x00);
846 repaper_write_val(spi, 0x07, 0x01);
852 static const struct drm_simple_display_pipe_funcs repaper_pipe_funcs = {
853 .enable = repaper_pipe_enable,
854 .disable = repaper_pipe_disable,
855 .update = tinydrm_display_pipe_update,
856 .prepare_fb = tinydrm_display_pipe_prepare_fb,
859 static const uint32_t repaper_formats[] = {
863 static const struct drm_display_mode repaper_e1144cs021_mode = {
864 TINYDRM_MODE(128, 96, 29, 22),
867 static const u8 repaper_e1144cs021_cs[] = { 0x00, 0x00, 0x00, 0x00,
868 0x00, 0x0f, 0xff, 0x00 };
870 static const struct drm_display_mode repaper_e1190cs021_mode = {
871 TINYDRM_MODE(144, 128, 36, 32),
874 static const u8 repaper_e1190cs021_cs[] = { 0x00, 0x00, 0x00, 0x03,
875 0xfc, 0x00, 0x00, 0xff };
877 static const struct drm_display_mode repaper_e2200cs021_mode = {
878 TINYDRM_MODE(200, 96, 46, 22),
881 static const u8 repaper_e2200cs021_cs[] = { 0x00, 0x00, 0x00, 0x00,
882 0x01, 0xff, 0xe0, 0x00 };
884 static const struct drm_display_mode repaper_e2271cs021_mode = {
885 TINYDRM_MODE(264, 176, 57, 38),
888 static const u8 repaper_e2271cs021_cs[] = { 0x00, 0x00, 0x00, 0x7f,
889 0xff, 0xfe, 0x00, 0x00 };
891 DEFINE_DRM_GEM_CMA_FOPS(repaper_fops);
893 static struct drm_driver repaper_driver = {
894 .driver_features = DRIVER_GEM | DRIVER_MODESET | DRIVER_PRIME |
896 .fops = &repaper_fops,
897 TINYDRM_GEM_DRIVER_OPS,
899 .desc = "Pervasive Displays RePaper e-ink panels",
905 static const struct of_device_id repaper_of_match[] = {
906 { .compatible = "pervasive,e1144cs021", .data = (void *)E1144CS021 },
907 { .compatible = "pervasive,e1190cs021", .data = (void *)E1190CS021 },
908 { .compatible = "pervasive,e2200cs021", .data = (void *)E2200CS021 },
909 { .compatible = "pervasive,e2271cs021", .data = (void *)E2271CS021 },
912 MODULE_DEVICE_TABLE(of, repaper_of_match);
914 static const struct spi_device_id repaper_id[] = {
915 { "e1144cs021", E1144CS021 },
916 { "e1190cs021", E1190CS021 },
917 { "e2200cs021", E2200CS021 },
918 { "e2271cs021", E2271CS021 },
921 MODULE_DEVICE_TABLE(spi, repaper_id);
923 static int repaper_probe(struct spi_device *spi)
925 const struct drm_display_mode *mode;
926 const struct spi_device_id *spi_id;
927 const struct of_device_id *match;
928 struct device *dev = &spi->dev;
929 struct tinydrm_device *tdev;
930 enum repaper_model model;
931 const char *thermal_zone;
932 struct repaper_epd *epd;
933 size_t line_buffer_size;
936 match = of_match_device(repaper_of_match, dev);
938 model = (enum repaper_model)match->data;
940 spi_id = spi_get_device_id(spi);
941 model = spi_id->driver_data;
944 /* The SPI device is used to allocate dma memory */
945 if (!dev->coherent_dma_mask) {
946 ret = dma_coerce_mask_and_coherent(dev, DMA_BIT_MASK(32));
948 dev_warn(dev, "Failed to set dma mask %d\n", ret);
953 epd = devm_kzalloc(dev, sizeof(*epd), GFP_KERNEL);
959 epd->panel_on = devm_gpiod_get(dev, "panel-on", GPIOD_OUT_LOW);
960 if (IS_ERR(epd->panel_on)) {
961 ret = PTR_ERR(epd->panel_on);
962 if (ret != -EPROBE_DEFER)
963 dev_err(dev, "Failed to get gpio 'panel-on'\n");
967 epd->discharge = devm_gpiod_get(dev, "discharge", GPIOD_OUT_LOW);
968 if (IS_ERR(epd->discharge)) {
969 ret = PTR_ERR(epd->discharge);
970 if (ret != -EPROBE_DEFER)
971 dev_err(dev, "Failed to get gpio 'discharge'\n");
975 epd->reset = devm_gpiod_get(dev, "reset", GPIOD_OUT_LOW);
976 if (IS_ERR(epd->reset)) {
977 ret = PTR_ERR(epd->reset);
978 if (ret != -EPROBE_DEFER)
979 dev_err(dev, "Failed to get gpio 'reset'\n");
983 epd->busy = devm_gpiod_get(dev, "busy", GPIOD_IN);
984 if (IS_ERR(epd->busy)) {
985 ret = PTR_ERR(epd->busy);
986 if (ret != -EPROBE_DEFER)
987 dev_err(dev, "Failed to get gpio 'busy'\n");
991 if (!device_property_read_string(dev, "pervasive,thermal-zone",
993 epd->thermal = thermal_zone_get_zone_by_name(thermal_zone);
994 if (IS_ERR(epd->thermal)) {
995 dev_err(dev, "Failed to get thermal zone: %s\n",
997 return PTR_ERR(epd->thermal);
1003 mode = &repaper_e1144cs021_mode;
1004 epd->channel_select = repaper_e1144cs021_cs;
1005 epd->stage_time = 480;
1006 epd->bytes_per_scan = 96 / 4;
1007 epd->middle_scan = true; /* data-scan-data */
1008 epd->pre_border_byte = false;
1009 epd->border_byte = REPAPER_BORDER_BYTE_ZERO;
1013 mode = &repaper_e1190cs021_mode;
1014 epd->channel_select = repaper_e1190cs021_cs;
1015 epd->stage_time = 480;
1016 epd->bytes_per_scan = 128 / 4 / 2;
1017 epd->middle_scan = false; /* scan-data-scan */
1018 epd->pre_border_byte = false;
1019 epd->border_byte = REPAPER_BORDER_BYTE_SET;
1023 mode = &repaper_e2200cs021_mode;
1024 epd->channel_select = repaper_e2200cs021_cs;
1025 epd->stage_time = 480;
1026 epd->bytes_per_scan = 96 / 4;
1027 epd->middle_scan = true; /* data-scan-data */
1028 epd->pre_border_byte = true;
1029 epd->border_byte = REPAPER_BORDER_BYTE_NONE;
1033 epd->border = devm_gpiod_get(dev, "border", GPIOD_OUT_LOW);
1034 if (IS_ERR(epd->border)) {
1035 ret = PTR_ERR(epd->border);
1036 if (ret != -EPROBE_DEFER)
1037 dev_err(dev, "Failed to get gpio 'border'\n");
1041 mode = &repaper_e2271cs021_mode;
1042 epd->channel_select = repaper_e2271cs021_cs;
1043 epd->stage_time = 630;
1044 epd->bytes_per_scan = 176 / 4;
1045 epd->middle_scan = true; /* data-scan-data */
1046 epd->pre_border_byte = true;
1047 epd->border_byte = REPAPER_BORDER_BYTE_NONE;
1054 epd->width = mode->hdisplay;
1055 epd->height = mode->vdisplay;
1056 epd->factored_stage_time = epd->stage_time;
1058 line_buffer_size = 2 * epd->width / 8 + epd->bytes_per_scan + 2;
1059 epd->line_buffer = devm_kzalloc(dev, line_buffer_size, GFP_KERNEL);
1060 if (!epd->line_buffer)
1063 epd->current_frame = devm_kzalloc(dev, epd->width * epd->height / 8,
1065 if (!epd->current_frame)
1068 tdev = &epd->tinydrm;
1070 ret = devm_tinydrm_init(dev, tdev, &repaper_fb_funcs, &repaper_driver);
1074 ret = tinydrm_display_pipe_init(tdev, &repaper_pipe_funcs,
1075 DRM_MODE_CONNECTOR_VIRTUAL,
1077 ARRAY_SIZE(repaper_formats), mode, 0);
1081 drm_mode_config_reset(tdev->drm);
1082 spi_set_drvdata(spi, tdev);
1084 DRM_DEBUG_DRIVER("SPI speed: %uMHz\n", spi->max_speed_hz / 1000000);
1086 return devm_tinydrm_register(tdev);
1089 static void repaper_shutdown(struct spi_device *spi)
1091 struct tinydrm_device *tdev = spi_get_drvdata(spi);
1093 tinydrm_shutdown(tdev);
1096 static struct spi_driver repaper_spi_driver = {
1099 .owner = THIS_MODULE,
1100 .of_match_table = repaper_of_match,
1102 .id_table = repaper_id,
1103 .probe = repaper_probe,
1104 .shutdown = repaper_shutdown,
1106 module_spi_driver(repaper_spi_driver);
1108 MODULE_DESCRIPTION("Pervasive Displays RePaper DRM driver");
1109 MODULE_AUTHOR("Noralf Trønnes");
1110 MODULE_LICENSE("GPL");