1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2015 Heiko Schocher <hs@denx.de>
6 * drivers/gpu/drm/panel/panel-ld9040.c
7 * ld9040 AMOLED LCD drm_panel driver.
9 * Copyright (c) 2014 Samsung Electronics Co., Ltd
10 * Derived from drivers/video/backlight/ld9040.c
12 * Andrzej Hajda <a.hajda@samsung.com>
15 #include <linux/delay.h>
16 #include <linux/gpio/consumer.h>
17 #include <linux/module.h>
18 #include <linux/regulator/consumer.h>
19 #include <linux/spi/spi.h>
21 #include <video/mipi_display.h>
22 #include <video/of_videomode.h>
23 #include <video/videomode.h>
25 #include <drm/drm_device.h>
26 #include <drm/drm_modes.h>
27 #include <drm/drm_panel.h>
30 struct drm_panel panel
;
31 struct spi_device
*spi
;
35 static inline struct lg4573
*panel_to_lg4573(struct drm_panel
*panel
)
37 return container_of(panel
, struct lg4573
, panel
);
40 static int lg4573_spi_write_u16(struct lg4573
*ctx
, u16 data
)
42 struct spi_transfer xfer
= {
45 __be16 temp
= cpu_to_be16(data
);
46 struct spi_message msg
;
48 dev_dbg(ctx
->panel
.dev
, "writing data: %x\n", data
);
50 spi_message_init(&msg
);
51 spi_message_add_tail(&xfer
, &msg
);
53 return spi_sync(ctx
->spi
, &msg
);
56 static int lg4573_spi_write_u16_array(struct lg4573
*ctx
, const u16
*buffer
,
62 for (i
= 0; i
< count
; i
++) {
63 ret
= lg4573_spi_write_u16(ctx
, buffer
[i
]);
71 static int lg4573_spi_write_dcs(struct lg4573
*ctx
, u8 dcs
)
73 return lg4573_spi_write_u16(ctx
, (0x70 << 8 | dcs
));
76 static int lg4573_display_on(struct lg4573
*ctx
)
80 ret
= lg4573_spi_write_dcs(ctx
, MIPI_DCS_EXIT_SLEEP_MODE
);
86 return lg4573_spi_write_dcs(ctx
, MIPI_DCS_SET_DISPLAY_ON
);
89 static int lg4573_display_off(struct lg4573
*ctx
)
93 ret
= lg4573_spi_write_dcs(ctx
, MIPI_DCS_SET_DISPLAY_OFF
);
99 return lg4573_spi_write_dcs(ctx
, MIPI_DCS_ENTER_SLEEP_MODE
);
102 static int lg4573_display_mode_settings(struct lg4573
*ctx
)
104 static const u16 display_mode_settings
[] = {
105 0x703A, 0x7270, 0x70B1, 0x7208,
106 0x723B, 0x720F, 0x70B2, 0x7200,
107 0x72C8, 0x70B3, 0x7200, 0x70B4,
108 0x7200, 0x70B5, 0x7242, 0x7210,
109 0x7210, 0x7200, 0x7220, 0x70B6,
110 0x720B, 0x720F, 0x723C, 0x7213,
111 0x7213, 0x72E8, 0x70B7, 0x7246,
112 0x7206, 0x720C, 0x7200, 0x7200,
115 dev_dbg(ctx
->panel
.dev
, "transfer display mode settings\n");
116 return lg4573_spi_write_u16_array(ctx
, display_mode_settings
,
117 ARRAY_SIZE(display_mode_settings
));
120 static int lg4573_power_settings(struct lg4573
*ctx
)
122 static const u16 power_settings
[] = {
123 0x70C0, 0x7201, 0x7211, 0x70C3,
124 0x7207, 0x7203, 0x7204, 0x7204,
125 0x7204, 0x70C4, 0x7212, 0x7224,
126 0x7218, 0x7218, 0x7202, 0x7249,
127 0x70C5, 0x726F, 0x70C6, 0x7241,
131 dev_dbg(ctx
->panel
.dev
, "transfer power settings\n");
132 return lg4573_spi_write_u16_array(ctx
, power_settings
,
133 ARRAY_SIZE(power_settings
));
136 static int lg4573_gamma_settings(struct lg4573
*ctx
)
138 static const u16 gamma_settings
[] = {
139 0x70D0, 0x7203, 0x7207, 0x7273,
140 0x7235, 0x7200, 0x7201, 0x7220,
141 0x7200, 0x7203, 0x70D1, 0x7203,
142 0x7207, 0x7273, 0x7235, 0x7200,
143 0x7201, 0x7220, 0x7200, 0x7203,
144 0x70D2, 0x7203, 0x7207, 0x7273,
145 0x7235, 0x7200, 0x7201, 0x7220,
146 0x7200, 0x7203, 0x70D3, 0x7203,
147 0x7207, 0x7273, 0x7235, 0x7200,
148 0x7201, 0x7220, 0x7200, 0x7203,
149 0x70D4, 0x7203, 0x7207, 0x7273,
150 0x7235, 0x7200, 0x7201, 0x7220,
151 0x7200, 0x7203, 0x70D5, 0x7203,
152 0x7207, 0x7273, 0x7235, 0x7200,
153 0x7201, 0x7220, 0x7200, 0x7203,
156 dev_dbg(ctx
->panel
.dev
, "transfer gamma settings\n");
157 return lg4573_spi_write_u16_array(ctx
, gamma_settings
,
158 ARRAY_SIZE(gamma_settings
));
161 static int lg4573_init(struct lg4573
*ctx
)
165 dev_dbg(ctx
->panel
.dev
, "initializing LCD\n");
167 ret
= lg4573_display_mode_settings(ctx
);
171 ret
= lg4573_power_settings(ctx
);
175 return lg4573_gamma_settings(ctx
);
178 static int lg4573_power_on(struct lg4573
*ctx
)
180 return lg4573_display_on(ctx
);
183 static int lg4573_disable(struct drm_panel
*panel
)
185 struct lg4573
*ctx
= panel_to_lg4573(panel
);
187 return lg4573_display_off(ctx
);
190 static int lg4573_enable(struct drm_panel
*panel
)
192 struct lg4573
*ctx
= panel_to_lg4573(panel
);
196 return lg4573_power_on(ctx
);
199 static const struct drm_display_mode default_mode
= {
202 .hsync_start
= 480 + 10,
203 .hsync_end
= 480 + 10 + 59,
204 .htotal
= 480 + 10 + 59 + 10,
206 .vsync_start
= 800 + 15,
207 .vsync_end
= 800 + 15 + 15,
208 .vtotal
= 800 + 15 + 15 + 15,
211 static int lg4573_get_modes(struct drm_panel
*panel
,
212 struct drm_connector
*connector
)
214 struct drm_display_mode
*mode
;
216 mode
= drm_mode_duplicate(connector
->dev
, &default_mode
);
218 dev_err(panel
->dev
, "failed to add mode %ux%ux@%u\n",
219 default_mode
.hdisplay
, default_mode
.vdisplay
,
220 drm_mode_vrefresh(&default_mode
));
224 drm_mode_set_name(mode
);
226 mode
->type
= DRM_MODE_TYPE_DRIVER
| DRM_MODE_TYPE_PREFERRED
;
227 drm_mode_probed_add(connector
, mode
);
229 connector
->display_info
.width_mm
= 61;
230 connector
->display_info
.height_mm
= 103;
235 static const struct drm_panel_funcs lg4573_drm_funcs
= {
236 .disable
= lg4573_disable
,
237 .enable
= lg4573_enable
,
238 .get_modes
= lg4573_get_modes
,
241 static int lg4573_probe(struct spi_device
*spi
)
246 ctx
= devm_kzalloc(&spi
->dev
, sizeof(*ctx
), GFP_KERNEL
);
252 spi_set_drvdata(spi
, ctx
);
253 spi
->bits_per_word
= 8;
255 ret
= spi_setup(spi
);
257 dev_err(&spi
->dev
, "SPI setup failed: %d\n", ret
);
261 drm_panel_init(&ctx
->panel
, &spi
->dev
, &lg4573_drm_funcs
,
262 DRM_MODE_CONNECTOR_DPI
);
264 drm_panel_add(&ctx
->panel
);
269 static int lg4573_remove(struct spi_device
*spi
)
271 struct lg4573
*ctx
= spi_get_drvdata(spi
);
273 lg4573_display_off(ctx
);
274 drm_panel_remove(&ctx
->panel
);
279 static const struct of_device_id lg4573_of_match
[] = {
280 { .compatible
= "lg,lg4573" },
283 MODULE_DEVICE_TABLE(of
, lg4573_of_match
);
285 static struct spi_driver lg4573_driver
= {
286 .probe
= lg4573_probe
,
287 .remove
= lg4573_remove
,
290 .of_match_table
= lg4573_of_match
,
293 module_spi_driver(lg4573_driver
);
295 MODULE_AUTHOR("Heiko Schocher <hs@denx.de>");
296 MODULE_DESCRIPTION("lg4573 LCD Driver");
297 MODULE_LICENSE("GPL v2");