Linux Audio

Check our new training course

Real-Time Linux with PREEMPT_RT training

Feb 18-20, 2025
Register
Loading...
Note: File does not exist in v4.6.
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Sony ACX565AKM LCD Panel driver
  4 *
  5 * Copyright (C) 2019 Texas Instruments Incorporated
  6 *
  7 * Based on the omapdrm-specific panel-sony-acx565akm driver
  8 *
  9 * Copyright (C) 2010 Nokia Corporation
 10 * Author: Imre Deak <imre.deak@nokia.com>
 11 */
 12
 13/*
 14 * TODO (to be addressed with hardware access to test the changes):
 15 *
 16 * - Update backlight support to use backlight_update_status() etc.
 17 * - Use prepare/unprepare for the basic power on/off of the backligt
 18 */
 19
 20#include <linux/backlight.h>
 21#include <linux/delay.h>
 22#include <linux/gpio/consumer.h>
 23#include <linux/jiffies.h>
 24#include <linux/module.h>
 25#include <linux/mutex.h>
 26#include <linux/sched.h>
 27#include <linux/spi/spi.h>
 28#include <video/mipi_display.h>
 29
 30#include <drm/drm_connector.h>
 31#include <drm/drm_modes.h>
 32#include <drm/drm_panel.h>
 33
 34#define CTRL_DISP_BRIGHTNESS_CTRL_ON		BIT(5)
 35#define CTRL_DISP_AMBIENT_LIGHT_CTRL_ON		BIT(4)
 36#define CTRL_DISP_BACKLIGHT_ON			BIT(2)
 37#define CTRL_DISP_AUTO_BRIGHTNESS_ON		BIT(1)
 38
 39#define MIPID_CMD_WRITE_CABC		0x55
 40#define MIPID_CMD_READ_CABC		0x56
 41
 42#define MIPID_VER_LPH8923		3
 43#define MIPID_VER_LS041Y3		4
 44#define MIPID_VER_L4F00311		8
 45#define MIPID_VER_ACX565AKM		9
 46
 47struct acx565akm_panel {
 48	struct drm_panel panel;
 49
 50	struct spi_device *spi;
 51	struct gpio_desc *reset_gpio;
 52	struct backlight_device *backlight;
 53
 54	struct mutex mutex;
 55
 56	const char *name;
 57	u8 display_id[3];
 58	int model;
 59	int revision;
 60	bool has_bc;
 61	bool has_cabc;
 62
 63	bool enabled;
 64	unsigned int cabc_mode;
 65	/*
 66	 * Next value of jiffies when we can issue the next sleep in/out
 67	 * command.
 68	 */
 69	unsigned long hw_guard_end;
 70	unsigned long hw_guard_wait;		/* max guard time in jiffies */
 71};
 72
 73#define to_acx565akm_device(p) container_of(p, struct acx565akm_panel, panel)
 74
 75static void acx565akm_transfer(struct acx565akm_panel *lcd, int cmd,
 76			      const u8 *wbuf, int wlen, u8 *rbuf, int rlen)
 77{
 78	struct spi_message	m;
 79	struct spi_transfer	*x, xfer[5];
 80	int			ret;
 81
 82	spi_message_init(&m);
 83
 84	memset(xfer, 0, sizeof(xfer));
 85	x = &xfer[0];
 86
 87	cmd &=  0xff;
 88	x->tx_buf = &cmd;
 89	x->bits_per_word = 9;
 90	x->len = 2;
 91
 92	if (rlen > 1 && wlen == 0) {
 93		/*
 94		 * Between the command and the response data there is a
 95		 * dummy clock cycle. Add an extra bit after the command
 96		 * word to account for this.
 97		 */
 98		x->bits_per_word = 10;
 99		cmd <<= 1;
100	}
101	spi_message_add_tail(x, &m);
102
103	if (wlen) {
104		x++;
105		x->tx_buf = wbuf;
106		x->len = wlen;
107		x->bits_per_word = 9;
108		spi_message_add_tail(x, &m);
109	}
110
111	if (rlen) {
112		x++;
113		x->rx_buf	= rbuf;
114		x->len		= rlen;
115		spi_message_add_tail(x, &m);
116	}
117
118	ret = spi_sync(lcd->spi, &m);
119	if (ret < 0)
120		dev_dbg(&lcd->spi->dev, "spi_sync %d\n", ret);
121}
122
123static inline void acx565akm_cmd(struct acx565akm_panel *lcd, int cmd)
124{
125	acx565akm_transfer(lcd, cmd, NULL, 0, NULL, 0);
126}
127
128static inline void acx565akm_write(struct acx565akm_panel *lcd,
129			       int reg, const u8 *buf, int len)
130{
131	acx565akm_transfer(lcd, reg, buf, len, NULL, 0);
132}
133
134static inline void acx565akm_read(struct acx565akm_panel *lcd,
135			      int reg, u8 *buf, int len)
136{
137	acx565akm_transfer(lcd, reg, NULL, 0, buf, len);
138}
139
140/* -----------------------------------------------------------------------------
141 * Auto Brightness Control Via sysfs
142 */
143
144static unsigned int acx565akm_get_cabc_mode(struct acx565akm_panel *lcd)
145{
146	return lcd->cabc_mode;
147}
148
149static void acx565akm_set_cabc_mode(struct acx565akm_panel *lcd,
150				    unsigned int mode)
151{
152	u16 cabc_ctrl;
153
154	lcd->cabc_mode = mode;
155	if (!lcd->enabled)
156		return;
157	cabc_ctrl = 0;
158	acx565akm_read(lcd, MIPID_CMD_READ_CABC, (u8 *)&cabc_ctrl, 1);
159	cabc_ctrl &= ~3;
160	cabc_ctrl |= (1 << 8) | (mode & 3);
161	acx565akm_write(lcd, MIPID_CMD_WRITE_CABC, (u8 *)&cabc_ctrl, 2);
162}
163
164static unsigned int acx565akm_get_hw_cabc_mode(struct acx565akm_panel *lcd)
165{
166	u8 cabc_ctrl;
167
168	acx565akm_read(lcd, MIPID_CMD_READ_CABC, &cabc_ctrl, 1);
169	return cabc_ctrl & 3;
170}
171
172static const char * const acx565akm_cabc_modes[] = {
173	"off",		/* always used when CABC is not supported */
174	"ui",
175	"still-image",
176	"moving-image",
177};
178
179static ssize_t cabc_mode_show(struct device *dev,
180			      struct device_attribute *attr,
181			      char *buf)
182{
183	struct acx565akm_panel *lcd = dev_get_drvdata(dev);
184	const char *mode_str;
185	int mode;
186
187	if (!lcd->has_cabc)
188		mode = 0;
189	else
190		mode = acx565akm_get_cabc_mode(lcd);
191
192	mode_str = "unknown";
193	if (mode >= 0 && mode < ARRAY_SIZE(acx565akm_cabc_modes))
194		mode_str = acx565akm_cabc_modes[mode];
195
196	return sprintf(buf, "%s\n", mode_str);
197}
198
199static ssize_t cabc_mode_store(struct device *dev,
200			       struct device_attribute *attr,
201			       const char *buf, size_t count)
202{
203	struct acx565akm_panel *lcd = dev_get_drvdata(dev);
204	unsigned int i;
205
206	for (i = 0; i < ARRAY_SIZE(acx565akm_cabc_modes); i++) {
207		const char *mode_str = acx565akm_cabc_modes[i];
208		int cmp_len = strlen(mode_str);
209
210		if (count > 0 && buf[count - 1] == '\n')
211			count--;
212		if (count != cmp_len)
213			continue;
214
215		if (strncmp(buf, mode_str, cmp_len) == 0)
216			break;
217	}
218
219	if (i == ARRAY_SIZE(acx565akm_cabc_modes))
220		return -EINVAL;
221
222	if (!lcd->has_cabc && i != 0)
223		return -EINVAL;
224
225	mutex_lock(&lcd->mutex);
226	acx565akm_set_cabc_mode(lcd, i);
227	mutex_unlock(&lcd->mutex);
228
229	return count;
230}
231
232static ssize_t cabc_available_modes_show(struct device *dev,
233					 struct device_attribute *attr,
234					 char *buf)
235{
236	struct acx565akm_panel *lcd = dev_get_drvdata(dev);
237	unsigned int i;
238	size_t len = 0;
239
240	if (!lcd->has_cabc)
241		return sprintf(buf, "%s\n", acx565akm_cabc_modes[0]);
242
243	for (i = 0; i < ARRAY_SIZE(acx565akm_cabc_modes); i++)
244		len += sprintf(&buf[len], "%s%s", i ? " " : "",
245			       acx565akm_cabc_modes[i]);
246
247	buf[len++] = '\n';
248
249	return len;
250}
251
252static DEVICE_ATTR_RW(cabc_mode);
253static DEVICE_ATTR_RO(cabc_available_modes);
254
255static struct attribute *acx565akm_cabc_attrs[] = {
256	&dev_attr_cabc_mode.attr,
257	&dev_attr_cabc_available_modes.attr,
258	NULL,
259};
260
261static const struct attribute_group acx565akm_cabc_attr_group = {
262	.attrs = acx565akm_cabc_attrs,
263};
264
265/* -----------------------------------------------------------------------------
266 * Backlight Device
267 */
268
269static int acx565akm_get_actual_brightness(struct acx565akm_panel *lcd)
270{
271	u8 bv;
272
273	acx565akm_read(lcd, MIPI_DCS_GET_DISPLAY_BRIGHTNESS, &bv, 1);
274
275	return bv;
276}
277
278static void acx565akm_set_brightness(struct acx565akm_panel *lcd, int level)
279{
280	u16 ctrl;
281	int bv;
282
283	bv = level | (1 << 8);
284	acx565akm_write(lcd, MIPI_DCS_SET_DISPLAY_BRIGHTNESS, (u8 *)&bv, 2);
285
286	acx565akm_read(lcd, MIPI_DCS_GET_CONTROL_DISPLAY, (u8 *)&ctrl, 1);
287	if (level)
288		ctrl |= CTRL_DISP_BRIGHTNESS_CTRL_ON |
289			CTRL_DISP_BACKLIGHT_ON;
290	else
291		ctrl &= ~(CTRL_DISP_BRIGHTNESS_CTRL_ON |
292			  CTRL_DISP_BACKLIGHT_ON);
293
294	ctrl |= 1 << 8;
295	acx565akm_write(lcd, MIPI_DCS_WRITE_CONTROL_DISPLAY, (u8 *)&ctrl, 2);
296}
297
298static int acx565akm_bl_update_status_locked(struct backlight_device *dev)
299{
300	struct acx565akm_panel *lcd = dev_get_drvdata(&dev->dev);
301	int level = backlight_get_brightness(dev);
302
303	acx565akm_set_brightness(lcd, level);
304
305	return 0;
306}
307
308static int acx565akm_bl_update_status(struct backlight_device *dev)
309{
310	struct acx565akm_panel *lcd = dev_get_drvdata(&dev->dev);
311	int ret;
312
313	mutex_lock(&lcd->mutex);
314	ret = acx565akm_bl_update_status_locked(dev);
315	mutex_unlock(&lcd->mutex);
316
317	return ret;
318}
319
320static int acx565akm_bl_get_intensity(struct backlight_device *dev)
321{
322	struct acx565akm_panel *lcd = dev_get_drvdata(&dev->dev);
323	unsigned int intensity;
324
325	mutex_lock(&lcd->mutex);
326
327	if (!backlight_is_blank(dev))
328		intensity = acx565akm_get_actual_brightness(lcd);
329	else
330		intensity = 0;
331
332	mutex_unlock(&lcd->mutex);
333
334	return intensity;
335}
336
337static const struct backlight_ops acx565akm_bl_ops = {
338	.get_brightness = acx565akm_bl_get_intensity,
339	.update_status  = acx565akm_bl_update_status,
340};
341
342static int acx565akm_backlight_init(struct acx565akm_panel *lcd)
343{
344	struct backlight_properties props = {
345		.power = BACKLIGHT_POWER_ON,
346		.type = BACKLIGHT_RAW,
347	};
348	int ret;
349
350	lcd->backlight = backlight_device_register(lcd->name, &lcd->spi->dev,
351						   lcd, &acx565akm_bl_ops,
352						   &props);
353	if (IS_ERR(lcd->backlight)) {
354		ret = PTR_ERR(lcd->backlight);
355		lcd->backlight = NULL;
356		return ret;
357	}
358
359	if (lcd->has_cabc) {
360		ret = sysfs_create_group(&lcd->backlight->dev.kobj,
361					 &acx565akm_cabc_attr_group);
362		if (ret < 0) {
363			dev_err(&lcd->spi->dev,
364				"%s failed to create sysfs files\n", __func__);
365			backlight_device_unregister(lcd->backlight);
366			return ret;
367		}
368
369		lcd->cabc_mode = acx565akm_get_hw_cabc_mode(lcd);
370	}
371
372	lcd->backlight->props.max_brightness = 255;
373	lcd->backlight->props.brightness = acx565akm_get_actual_brightness(lcd);
374
375	acx565akm_bl_update_status_locked(lcd->backlight);
376
377	return 0;
378}
379
380static void acx565akm_backlight_cleanup(struct acx565akm_panel *lcd)
381{
382	if (lcd->has_cabc)
383		sysfs_remove_group(&lcd->backlight->dev.kobj,
384				   &acx565akm_cabc_attr_group);
385
386	backlight_device_unregister(lcd->backlight);
387}
388
389/* -----------------------------------------------------------------------------
390 * DRM Bridge Operations
391 */
392
393static void acx565akm_set_sleep_mode(struct acx565akm_panel *lcd, int on)
394{
395	int cmd = on ? MIPI_DCS_ENTER_SLEEP_MODE : MIPI_DCS_EXIT_SLEEP_MODE;
396	unsigned long wait;
397
398	/*
399	 * We have to keep 120msec between sleep in/out commands.
400	 * (8.2.15, 8.2.16).
401	 */
402	wait = lcd->hw_guard_end - jiffies;
403	if ((long)wait > 0 && wait <= lcd->hw_guard_wait) {
404		set_current_state(TASK_UNINTERRUPTIBLE);
405		schedule_timeout(wait);
406	}
407
408	acx565akm_cmd(lcd, cmd);
409
410	lcd->hw_guard_wait = msecs_to_jiffies(120);
411	lcd->hw_guard_end = jiffies + lcd->hw_guard_wait;
412}
413
414static void acx565akm_set_display_state(struct acx565akm_panel *lcd,
415					int enabled)
416{
417	int cmd = enabled ? MIPI_DCS_SET_DISPLAY_ON : MIPI_DCS_SET_DISPLAY_OFF;
418
419	acx565akm_cmd(lcd, cmd);
420}
421
422static int acx565akm_power_on(struct acx565akm_panel *lcd)
423{
424	/*FIXME tweak me */
425	msleep(50);
426
427	gpiod_set_value(lcd->reset_gpio, 1);
428
429	if (lcd->enabled) {
430		dev_dbg(&lcd->spi->dev, "panel already enabled\n");
431		return 0;
432	}
433
434	/*
435	 * We have to meet all the following delay requirements:
436	 * 1. tRW: reset pulse width 10usec (7.12.1)
437	 * 2. tRT: reset cancel time 5msec (7.12.1)
438	 * 3. Providing PCLK,HS,VS signals for 2 frames = ~50msec worst
439	 *    case (7.6.2)
440	 * 4. 120msec before the sleep out command (7.12.1)
441	 */
442	msleep(120);
443
444	acx565akm_set_sleep_mode(lcd, 0);
445	lcd->enabled = true;
446
447	/* 5msec between sleep out and the next command. (8.2.16) */
448	usleep_range(5000, 10000);
449	acx565akm_set_display_state(lcd, 1);
450	acx565akm_set_cabc_mode(lcd, lcd->cabc_mode);
451
452	return acx565akm_bl_update_status_locked(lcd->backlight);
453}
454
455static void acx565akm_power_off(struct acx565akm_panel *lcd)
456{
457	acx565akm_set_display_state(lcd, 0);
458	acx565akm_set_sleep_mode(lcd, 1);
459	lcd->enabled = false;
460	/*
461	 * We have to provide PCLK,HS,VS signals for 2 frames (worst case
462	 * ~50msec) after sending the sleep in command and asserting the
463	 * reset signal. We probably could assert the reset w/o the delay
464	 * but we still delay to avoid possible artifacts. (7.6.1)
465	 */
466	msleep(50);
467
468	gpiod_set_value(lcd->reset_gpio, 0);
469
470	/* FIXME need to tweak this delay */
471	msleep(100);
472}
473
474static int acx565akm_disable(struct drm_panel *panel)
475{
476	struct acx565akm_panel *lcd = to_acx565akm_device(panel);
477
478	mutex_lock(&lcd->mutex);
479	acx565akm_power_off(lcd);
480	mutex_unlock(&lcd->mutex);
481
482	return 0;
483}
484
485static int acx565akm_enable(struct drm_panel *panel)
486{
487	struct acx565akm_panel *lcd = to_acx565akm_device(panel);
488
489	mutex_lock(&lcd->mutex);
490	acx565akm_power_on(lcd);
491	mutex_unlock(&lcd->mutex);
492
493	return 0;
494}
495
496static const struct drm_display_mode acx565akm_mode = {
497	.clock = 24000,
498	.hdisplay = 800,
499	.hsync_start = 800 + 28,
500	.hsync_end = 800 + 28 + 4,
501	.htotal = 800 + 28 + 4 + 24,
502	.vdisplay = 480,
503	.vsync_start = 480 + 3,
504	.vsync_end = 480 + 3 + 3,
505	.vtotal = 480 + 3 + 3 + 4,
506	.type = DRM_MODE_TYPE_DRIVER | DRM_MODE_TYPE_PREFERRED,
507	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
508	.width_mm = 77,
509	.height_mm = 46,
510};
511
512static int acx565akm_get_modes(struct drm_panel *panel,
513			       struct drm_connector *connector)
514{
515	struct drm_display_mode *mode;
516
517	mode = drm_mode_duplicate(connector->dev, &acx565akm_mode);
518	if (!mode)
519		return -ENOMEM;
520
521	drm_mode_set_name(mode);
522	drm_mode_probed_add(connector, mode);
523
524	connector->display_info.width_mm = acx565akm_mode.width_mm;
525	connector->display_info.height_mm = acx565akm_mode.height_mm;
526	connector->display_info.bus_flags = DRM_BUS_FLAG_DE_HIGH
527					  | DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE
528					  | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE;
529
530	return 1;
531}
532
533static const struct drm_panel_funcs acx565akm_funcs = {
534	.disable = acx565akm_disable,
535	.enable = acx565akm_enable,
536	.get_modes = acx565akm_get_modes,
537};
538
539/* -----------------------------------------------------------------------------
540 * Probe, Detect and Remove
541 */
542
543static int acx565akm_detect(struct acx565akm_panel *lcd)
544{
545	__be32 value;
546	u32 status;
547	int ret = 0;
548
549	/*
550	 * After being taken out of reset the panel needs 5ms before the first
551	 * command can be sent.
552	 */
553	gpiod_set_value(lcd->reset_gpio, 1);
554	usleep_range(5000, 10000);
555
556	acx565akm_read(lcd, MIPI_DCS_GET_DISPLAY_STATUS, (u8 *)&value, 4);
557	status = __be32_to_cpu(value);
558	lcd->enabled = (status & (1 << 17)) && (status & (1 << 10));
559
560	dev_dbg(&lcd->spi->dev,
561		"LCD panel %s by bootloader (status 0x%04x)\n",
562		lcd->enabled ? "enabled" : "disabled ", status);
563
564	acx565akm_read(lcd, MIPI_DCS_GET_DISPLAY_ID, lcd->display_id, 3);
565	dev_dbg(&lcd->spi->dev, "MIPI display ID: %3phN\n", lcd->display_id);
566
567	switch (lcd->display_id[0]) {
568	case 0x10:
569		lcd->model = MIPID_VER_ACX565AKM;
570		lcd->name = "acx565akm";
571		lcd->has_bc = 1;
572		lcd->has_cabc = 1;
573		break;
574	case 0x29:
575		lcd->model = MIPID_VER_L4F00311;
576		lcd->name = "l4f00311";
577		break;
578	case 0x45:
579		lcd->model = MIPID_VER_LPH8923;
580		lcd->name = "lph8923";
581		break;
582	case 0x83:
583		lcd->model = MIPID_VER_LS041Y3;
584		lcd->name = "ls041y3";
585		break;
586	default:
587		lcd->name = "unknown";
588		dev_err(&lcd->spi->dev, "unknown display ID\n");
589		ret = -ENODEV;
590		goto done;
591	}
592
593	lcd->revision = lcd->display_id[1];
594
595	dev_info(&lcd->spi->dev, "%s rev %02x panel detected\n",
596		 lcd->name, lcd->revision);
597
598done:
599	if (!lcd->enabled)
600		gpiod_set_value(lcd->reset_gpio, 0);
601
602	return ret;
603}
604
605static int acx565akm_probe(struct spi_device *spi)
606{
607	struct acx565akm_panel *lcd;
608	int ret;
609
610	lcd = devm_kzalloc(&spi->dev, sizeof(*lcd), GFP_KERNEL);
611	if (!lcd)
612		return -ENOMEM;
613
614	spi_set_drvdata(spi, lcd);
615	spi->mode = SPI_MODE_3;
616
617	lcd->spi = spi;
618	mutex_init(&lcd->mutex);
619
620	lcd->reset_gpio = devm_gpiod_get(&spi->dev, "reset", GPIOD_OUT_HIGH);
621	if (IS_ERR(lcd->reset_gpio)) {
622		dev_err(&spi->dev, "failed to get reset GPIO\n");
623		return PTR_ERR(lcd->reset_gpio);
624	}
625
626	ret = acx565akm_detect(lcd);
627	if (ret < 0) {
628		dev_err(&spi->dev, "panel detection failed\n");
629		return ret;
630	}
631
632	if (lcd->has_bc) {
633		ret = acx565akm_backlight_init(lcd);
634		if (ret < 0)
635			return ret;
636	}
637
638	drm_panel_init(&lcd->panel, &lcd->spi->dev, &acx565akm_funcs,
639		       DRM_MODE_CONNECTOR_DPI);
640
641	drm_panel_add(&lcd->panel);
642
643	return 0;
644}
645
646static void acx565akm_remove(struct spi_device *spi)
647{
648	struct acx565akm_panel *lcd = spi_get_drvdata(spi);
649
650	drm_panel_remove(&lcd->panel);
651
652	if (lcd->has_bc)
653		acx565akm_backlight_cleanup(lcd);
654}
655
656static const struct of_device_id acx565akm_of_match[] = {
657	{ .compatible = "sony,acx565akm", },
658	{ /* sentinel */ },
659};
660
661MODULE_DEVICE_TABLE(of, acx565akm_of_match);
662
663static const struct spi_device_id acx565akm_ids[] = {
664	{ "acx565akm", 0 },
665	{ /* sentinel */ }
666};
667
668MODULE_DEVICE_TABLE(spi, acx565akm_ids);
669
670static struct spi_driver acx565akm_driver = {
671	.probe		= acx565akm_probe,
672	.remove		= acx565akm_remove,
673	.id_table	= acx565akm_ids,
674	.driver		= {
675		.name	= "panel-sony-acx565akm",
676		.of_match_table = acx565akm_of_match,
677	},
678};
679
680module_spi_driver(acx565akm_driver);
681
682MODULE_AUTHOR("Nokia Corporation");
683MODULE_DESCRIPTION("Sony ACX565AKM LCD Panel Driver");
684MODULE_LICENSE("GPL");