2 * Sony ACX565AKM LCD Panel driver
4 * Copyright (C) 2010 Nokia Corporation
6 * Original Driver Author: Imre Deak <imre.deak@nokia.com>
7 * Based on panel-generic.c by Tomi Valkeinen <tomi.valkeinen@nokia.com>
8 * Adapted to new DSS2 framework: Roger Quadros <roger.quadros@nokia.com>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published by
12 * the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 * You should have received a copy of the GNU General Public License along with
20 * this program. If not, see <http://www.gnu.org/licenses/>.
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <linux/platform_device.h>
26 #include <linux/delay.h>
27 #include <linux/spi/spi.h>
28 #include <linux/jiffies.h>
29 #include <linux/sched.h>
30 #include <linux/backlight.h>
32 #include <linux/gpio.h>
34 #include <linux/of_gpio.h>
36 #include <video/omapdss.h>
37 #include <video/omap-panel-data.h>
39 #define MIPID_CMD_READ_DISP_ID 0x04
40 #define MIPID_CMD_READ_RED 0x06
41 #define MIPID_CMD_READ_GREEN 0x07
42 #define MIPID_CMD_READ_BLUE 0x08
43 #define MIPID_CMD_READ_DISP_STATUS 0x09
44 #define MIPID_CMD_RDDSDR 0x0F
45 #define MIPID_CMD_SLEEP_IN 0x10
46 #define MIPID_CMD_SLEEP_OUT 0x11
47 #define MIPID_CMD_DISP_OFF 0x28
48 #define MIPID_CMD_DISP_ON 0x29
49 #define MIPID_CMD_WRITE_DISP_BRIGHTNESS 0x51
50 #define MIPID_CMD_READ_DISP_BRIGHTNESS 0x52
51 #define MIPID_CMD_WRITE_CTRL_DISP 0x53
53 #define CTRL_DISP_BRIGHTNESS_CTRL_ON (1 << 5)
54 #define CTRL_DISP_AMBIENT_LIGHT_CTRL_ON (1 << 4)
55 #define CTRL_DISP_BACKLIGHT_ON (1 << 2)
56 #define CTRL_DISP_AUTO_BRIGHTNESS_ON (1 << 1)
58 #define MIPID_CMD_READ_CTRL_DISP 0x54
59 #define MIPID_CMD_WRITE_CABC 0x55
60 #define MIPID_CMD_READ_CABC 0x56
62 #define MIPID_VER_LPH8923 3
63 #define MIPID_VER_LS041Y3 4
64 #define MIPID_VER_L4F00311 8
65 #define MIPID_VER_ACX565AKM 9
67 struct panel_drv_data
{
68 struct omap_dss_device dssdev
;
69 struct omap_dss_device
*in
;
74 struct omap_video_timings videomode
;
84 unsigned long hw_guard_end
; /* next value of jiffies
86 next sleep in/out command */
87 unsigned long hw_guard_wait
; /* max guard time in jiffies */
89 struct spi_device
*spi
;
92 struct backlight_device
*bl_dev
;
95 static const struct omap_video_timings acx565akm_panel_timings
= {
98 .pixelclock
= 24000000,
106 .vsync_level
= OMAPDSS_SIG_ACTIVE_LOW
,
107 .hsync_level
= OMAPDSS_SIG_ACTIVE_LOW
,
109 .data_pclk_edge
= OMAPDSS_DRIVE_SIG_RISING_EDGE
,
110 .de_level
= OMAPDSS_SIG_ACTIVE_HIGH
,
111 .sync_pclk_edge
= OMAPDSS_DRIVE_SIG_FALLING_EDGE
,
114 #define to_panel_data(p) container_of(p, struct panel_drv_data, dssdev)
116 static void acx565akm_transfer(struct panel_drv_data
*ddata
, int cmd
,
117 const u8
*wbuf
, int wlen
, u8
*rbuf
, int rlen
)
119 struct spi_message m
;
120 struct spi_transfer
*x
, xfer
[5];
123 BUG_ON(ddata
->spi
== NULL
);
125 spi_message_init(&m
);
127 memset(xfer
, 0, sizeof(xfer
));
132 x
->bits_per_word
= 9;
135 if (rlen
> 1 && wlen
== 0) {
137 * Between the command and the response data there is a
138 * dummy clock cycle. Add an extra bit after the command
139 * word to account for this.
141 x
->bits_per_word
= 10;
144 spi_message_add_tail(x
, &m
);
150 x
->bits_per_word
= 9;
151 spi_message_add_tail(x
, &m
);
158 spi_message_add_tail(x
, &m
);
161 r
= spi_sync(ddata
->spi
, &m
);
163 dev_dbg(&ddata
->spi
->dev
, "spi_sync %d\n", r
);
166 static inline void acx565akm_cmd(struct panel_drv_data
*ddata
, int cmd
)
168 acx565akm_transfer(ddata
, cmd
, NULL
, 0, NULL
, 0);
171 static inline void acx565akm_write(struct panel_drv_data
*ddata
,
172 int reg
, const u8
*buf
, int len
)
174 acx565akm_transfer(ddata
, reg
, buf
, len
, NULL
, 0);
177 static inline void acx565akm_read(struct panel_drv_data
*ddata
,
178 int reg
, u8
*buf
, int len
)
180 acx565akm_transfer(ddata
, reg
, NULL
, 0, buf
, len
);
183 static void hw_guard_start(struct panel_drv_data
*ddata
, int guard_msec
)
185 ddata
->hw_guard_wait
= msecs_to_jiffies(guard_msec
);
186 ddata
->hw_guard_end
= jiffies
+ ddata
->hw_guard_wait
;
189 static void hw_guard_wait(struct panel_drv_data
*ddata
)
191 unsigned long wait
= ddata
->hw_guard_end
- jiffies
;
193 if ((long)wait
> 0 && wait
<= ddata
->hw_guard_wait
) {
194 set_current_state(TASK_UNINTERRUPTIBLE
);
195 schedule_timeout(wait
);
199 static void set_sleep_mode(struct panel_drv_data
*ddata
, int on
)
204 cmd
= MIPID_CMD_SLEEP_IN
;
206 cmd
= MIPID_CMD_SLEEP_OUT
;
208 * We have to keep 120msec between sleep in/out commands.
211 hw_guard_wait(ddata
);
212 acx565akm_cmd(ddata
, cmd
);
213 hw_guard_start(ddata
, 120);
216 static void set_display_state(struct panel_drv_data
*ddata
, int enabled
)
218 int cmd
= enabled
? MIPID_CMD_DISP_ON
: MIPID_CMD_DISP_OFF
;
220 acx565akm_cmd(ddata
, cmd
);
223 static int panel_enabled(struct panel_drv_data
*ddata
)
228 acx565akm_read(ddata
, MIPID_CMD_READ_DISP_STATUS
,
229 (u8
*)&disp_status
, 4);
230 disp_status
= __be32_to_cpu(disp_status
);
231 enabled
= (disp_status
& (1 << 17)) && (disp_status
& (1 << 10));
232 dev_dbg(&ddata
->spi
->dev
,
233 "LCD panel %senabled by bootloader (status 0x%04x)\n",
234 enabled
? "" : "not ", disp_status
);
238 static int panel_detect(struct panel_drv_data
*ddata
)
240 acx565akm_read(ddata
, MIPID_CMD_READ_DISP_ID
, ddata
->display_id
, 3);
241 dev_dbg(&ddata
->spi
->dev
, "MIPI display ID: %02x%02x%02x\n",
242 ddata
->display_id
[0],
243 ddata
->display_id
[1],
244 ddata
->display_id
[2]);
246 switch (ddata
->display_id
[0]) {
248 ddata
->model
= MIPID_VER_ACX565AKM
;
249 ddata
->name
= "acx565akm";
254 ddata
->model
= MIPID_VER_L4F00311
;
255 ddata
->name
= "l4f00311";
258 ddata
->model
= MIPID_VER_LPH8923
;
259 ddata
->name
= "lph8923";
262 ddata
->model
= MIPID_VER_LS041Y3
;
263 ddata
->name
= "ls041y3";
266 ddata
->name
= "unknown";
267 dev_err(&ddata
->spi
->dev
, "invalid display ID\n");
271 ddata
->revision
= ddata
->display_id
[1];
273 dev_info(&ddata
->spi
->dev
, "omapfb: %s rev %02x LCD detected\n",
274 ddata
->name
, ddata
->revision
);
279 /*----------------------Backlight Control-------------------------*/
281 static void enable_backlight_ctrl(struct panel_drv_data
*ddata
, int enable
)
285 acx565akm_read(ddata
, MIPID_CMD_READ_CTRL_DISP
, (u8
*)&ctrl
, 1);
287 ctrl
|= CTRL_DISP_BRIGHTNESS_CTRL_ON
|
288 CTRL_DISP_BACKLIGHT_ON
;
290 ctrl
&= ~(CTRL_DISP_BRIGHTNESS_CTRL_ON
|
291 CTRL_DISP_BACKLIGHT_ON
);
295 acx565akm_write(ddata
, MIPID_CMD_WRITE_CTRL_DISP
, (u8
*)&ctrl
, 2);
298 static void set_cabc_mode(struct panel_drv_data
*ddata
, unsigned mode
)
302 ddata
->cabc_mode
= mode
;
306 acx565akm_read(ddata
, MIPID_CMD_READ_CABC
, (u8
*)&cabc_ctrl
, 1);
308 cabc_ctrl
|= (1 << 8) | (mode
& 3);
309 acx565akm_write(ddata
, MIPID_CMD_WRITE_CABC
, (u8
*)&cabc_ctrl
, 2);
312 static unsigned get_cabc_mode(struct panel_drv_data
*ddata
)
314 return ddata
->cabc_mode
;
317 static unsigned get_hw_cabc_mode(struct panel_drv_data
*ddata
)
321 acx565akm_read(ddata
, MIPID_CMD_READ_CABC
, &cabc_ctrl
, 1);
322 return cabc_ctrl
& 3;
325 static void acx565akm_set_brightness(struct panel_drv_data
*ddata
, int level
)
329 bv
= level
| (1 << 8);
330 acx565akm_write(ddata
, MIPID_CMD_WRITE_DISP_BRIGHTNESS
, (u8
*)&bv
, 2);
333 enable_backlight_ctrl(ddata
, 1);
335 enable_backlight_ctrl(ddata
, 0);
338 static int acx565akm_get_actual_brightness(struct panel_drv_data
*ddata
)
342 acx565akm_read(ddata
, MIPID_CMD_READ_DISP_BRIGHTNESS
, &bv
, 1);
348 static int acx565akm_bl_update_status(struct backlight_device
*dev
)
350 struct panel_drv_data
*ddata
= dev_get_drvdata(&dev
->dev
);
353 dev_dbg(&ddata
->spi
->dev
, "%s\n", __func__
);
355 if (dev
->props
.fb_blank
== FB_BLANK_UNBLANK
&&
356 dev
->props
.power
== FB_BLANK_UNBLANK
)
357 level
= dev
->props
.brightness
;
362 acx565akm_set_brightness(ddata
, level
);
369 static int acx565akm_bl_get_intensity(struct backlight_device
*dev
)
371 struct panel_drv_data
*ddata
= dev_get_drvdata(&dev
->dev
);
373 dev_dbg(&dev
->dev
, "%s\n", __func__
);
378 if (dev
->props
.fb_blank
== FB_BLANK_UNBLANK
&&
379 dev
->props
.power
== FB_BLANK_UNBLANK
) {
381 return acx565akm_get_actual_brightness(ddata
);
383 return dev
->props
.brightness
;
389 static int acx565akm_bl_update_status_locked(struct backlight_device
*dev
)
391 struct panel_drv_data
*ddata
= dev_get_drvdata(&dev
->dev
);
394 mutex_lock(&ddata
->mutex
);
395 r
= acx565akm_bl_update_status(dev
);
396 mutex_unlock(&ddata
->mutex
);
401 static int acx565akm_bl_get_intensity_locked(struct backlight_device
*dev
)
403 struct panel_drv_data
*ddata
= dev_get_drvdata(&dev
->dev
);
406 mutex_lock(&ddata
->mutex
);
407 r
= acx565akm_bl_get_intensity(dev
);
408 mutex_unlock(&ddata
->mutex
);
413 static const struct backlight_ops acx565akm_bl_ops
= {
414 .get_brightness
= acx565akm_bl_get_intensity_locked
,
415 .update_status
= acx565akm_bl_update_status_locked
,
418 /*--------------------Auto Brightness control via Sysfs---------------------*/
420 static const char * const cabc_modes
[] = {
421 "off", /* always used when CABC is not supported */
427 static ssize_t
show_cabc_mode(struct device
*dev
,
428 struct device_attribute
*attr
,
431 struct panel_drv_data
*ddata
= dev_get_drvdata(dev
);
432 const char *mode_str
;
436 if (!ddata
->has_cabc
)
439 mode
= get_cabc_mode(ddata
);
440 mode_str
= "unknown";
441 if (mode
>= 0 && mode
< ARRAY_SIZE(cabc_modes
))
442 mode_str
= cabc_modes
[mode
];
443 len
= snprintf(buf
, PAGE_SIZE
, "%s\n", mode_str
);
445 return len
< PAGE_SIZE
- 1 ? len
: PAGE_SIZE
- 1;
448 static ssize_t
store_cabc_mode(struct device
*dev
,
449 struct device_attribute
*attr
,
450 const char *buf
, size_t count
)
452 struct panel_drv_data
*ddata
= dev_get_drvdata(dev
);
455 for (i
= 0; i
< ARRAY_SIZE(cabc_modes
); i
++) {
456 const char *mode_str
= cabc_modes
[i
];
457 int cmp_len
= strlen(mode_str
);
459 if (count
> 0 && buf
[count
- 1] == '\n')
461 if (count
!= cmp_len
)
464 if (strncmp(buf
, mode_str
, cmp_len
) == 0)
468 if (i
== ARRAY_SIZE(cabc_modes
))
471 if (!ddata
->has_cabc
&& i
!= 0)
474 mutex_lock(&ddata
->mutex
);
475 set_cabc_mode(ddata
, i
);
476 mutex_unlock(&ddata
->mutex
);
481 static ssize_t
show_cabc_available_modes(struct device
*dev
,
482 struct device_attribute
*attr
,
485 struct panel_drv_data
*ddata
= dev_get_drvdata(dev
);
489 if (!ddata
->has_cabc
)
490 return snprintf(buf
, PAGE_SIZE
, "%s\n", cabc_modes
[0]);
493 len
< PAGE_SIZE
&& i
< ARRAY_SIZE(cabc_modes
); i
++)
494 len
+= snprintf(&buf
[len
], PAGE_SIZE
- len
, "%s%s%s",
495 i
? " " : "", cabc_modes
[i
],
496 i
== ARRAY_SIZE(cabc_modes
) - 1 ? "\n" : "");
498 return len
< PAGE_SIZE
? len
: PAGE_SIZE
- 1;
501 static DEVICE_ATTR(cabc_mode
, S_IRUGO
| S_IWUSR
,
502 show_cabc_mode
, store_cabc_mode
);
503 static DEVICE_ATTR(cabc_available_modes
, S_IRUGO
,
504 show_cabc_available_modes
, NULL
);
506 static struct attribute
*bldev_attrs
[] = {
507 &dev_attr_cabc_mode
.attr
,
508 &dev_attr_cabc_available_modes
.attr
,
512 static struct attribute_group bldev_attr_group
= {
513 .attrs
= bldev_attrs
,
516 static int acx565akm_connect(struct omap_dss_device
*dssdev
)
518 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
519 struct omap_dss_device
*in
= ddata
->in
;
522 if (omapdss_device_is_connected(dssdev
))
525 r
= in
->ops
.sdi
->connect(in
, dssdev
);
532 static void acx565akm_disconnect(struct omap_dss_device
*dssdev
)
534 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
535 struct omap_dss_device
*in
= ddata
->in
;
537 if (!omapdss_device_is_connected(dssdev
))
540 in
->ops
.sdi
->disconnect(in
, dssdev
);
543 static int acx565akm_panel_power_on(struct omap_dss_device
*dssdev
)
545 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
546 struct omap_dss_device
*in
= ddata
->in
;
549 dev_dbg(&ddata
->spi
->dev
, "%s\n", __func__
);
551 in
->ops
.sdi
->set_timings(in
, &ddata
->videomode
);
553 if (ddata
->datapairs
> 0)
554 in
->ops
.sdi
->set_datapairs(in
, ddata
->datapairs
);
556 r
= in
->ops
.sdi
->enable(in
);
558 pr_err("%s sdi enable failed\n", __func__
);
565 if (gpio_is_valid(ddata
->reset_gpio
))
566 gpio_set_value(ddata
->reset_gpio
, 1);
568 if (ddata
->enabled
) {
569 dev_dbg(&ddata
->spi
->dev
, "panel already enabled\n");
574 * We have to meet all the following delay requirements:
575 * 1. tRW: reset pulse width 10usec (7.12.1)
576 * 2. tRT: reset cancel time 5msec (7.12.1)
577 * 3. Providing PCLK,HS,VS signals for 2 frames = ~50msec worst
579 * 4. 120msec before the sleep out command (7.12.1)
583 set_sleep_mode(ddata
, 0);
586 /* 5msec between sleep out and the next command. (8.2.16) */
587 usleep_range(5000, 10000);
588 set_display_state(ddata
, 1);
589 set_cabc_mode(ddata
, ddata
->cabc_mode
);
591 return acx565akm_bl_update_status(ddata
->bl_dev
);
594 static void acx565akm_panel_power_off(struct omap_dss_device
*dssdev
)
596 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
597 struct omap_dss_device
*in
= ddata
->in
;
599 dev_dbg(dssdev
->dev
, "%s\n", __func__
);
604 set_display_state(ddata
, 0);
605 set_sleep_mode(ddata
, 1);
608 * We have to provide PCLK,HS,VS signals for 2 frames (worst case
609 * ~50msec) after sending the sleep in command and asserting the
610 * reset signal. We probably could assert the reset w/o the delay
611 * but we still delay to avoid possible artifacts. (7.6.1)
615 if (gpio_is_valid(ddata
->reset_gpio
))
616 gpio_set_value(ddata
->reset_gpio
, 0);
618 /* FIXME need to tweak this delay */
621 in
->ops
.sdi
->disable(in
);
624 static int acx565akm_enable(struct omap_dss_device
*dssdev
)
626 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
629 dev_dbg(dssdev
->dev
, "%s\n", __func__
);
631 if (!omapdss_device_is_connected(dssdev
))
634 if (omapdss_device_is_enabled(dssdev
))
637 mutex_lock(&ddata
->mutex
);
638 r
= acx565akm_panel_power_on(dssdev
);
639 mutex_unlock(&ddata
->mutex
);
643 dssdev
->state
= OMAP_DSS_DISPLAY_ACTIVE
;
648 static void acx565akm_disable(struct omap_dss_device
*dssdev
)
650 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
652 dev_dbg(dssdev
->dev
, "%s\n", __func__
);
654 if (!omapdss_device_is_enabled(dssdev
))
657 mutex_lock(&ddata
->mutex
);
658 acx565akm_panel_power_off(dssdev
);
659 mutex_unlock(&ddata
->mutex
);
661 dssdev
->state
= OMAP_DSS_DISPLAY_DISABLED
;
664 static void acx565akm_set_timings(struct omap_dss_device
*dssdev
,
665 struct omap_video_timings
*timings
)
667 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
668 struct omap_dss_device
*in
= ddata
->in
;
670 ddata
->videomode
= *timings
;
671 dssdev
->panel
.timings
= *timings
;
673 in
->ops
.sdi
->set_timings(in
, timings
);
676 static void acx565akm_get_timings(struct omap_dss_device
*dssdev
,
677 struct omap_video_timings
*timings
)
679 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
681 *timings
= ddata
->videomode
;
684 static int acx565akm_check_timings(struct omap_dss_device
*dssdev
,
685 struct omap_video_timings
*timings
)
687 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
688 struct omap_dss_device
*in
= ddata
->in
;
690 return in
->ops
.sdi
->check_timings(in
, timings
);
693 static struct omap_dss_driver acx565akm_ops
= {
694 .connect
= acx565akm_connect
,
695 .disconnect
= acx565akm_disconnect
,
697 .enable
= acx565akm_enable
,
698 .disable
= acx565akm_disable
,
700 .set_timings
= acx565akm_set_timings
,
701 .get_timings
= acx565akm_get_timings
,
702 .check_timings
= acx565akm_check_timings
,
704 .get_resolution
= omapdss_default_get_resolution
,
707 static int acx565akm_probe_pdata(struct spi_device
*spi
)
709 const struct panel_acx565akm_platform_data
*pdata
;
710 struct panel_drv_data
*ddata
= dev_get_drvdata(&spi
->dev
);
711 struct omap_dss_device
*dssdev
, *in
;
713 pdata
= dev_get_platdata(&spi
->dev
);
715 ddata
->reset_gpio
= pdata
->reset_gpio
;
717 in
= omap_dss_find_output(pdata
->source
);
719 dev_err(&spi
->dev
, "failed to find video source '%s'\n",
721 return -EPROBE_DEFER
;
725 ddata
->datapairs
= pdata
->datapairs
;
727 dssdev
= &ddata
->dssdev
;
728 dssdev
->name
= pdata
->name
;
733 static int acx565akm_probe_of(struct spi_device
*spi
)
735 struct panel_drv_data
*ddata
= dev_get_drvdata(&spi
->dev
);
736 struct device_node
*np
= spi
->dev
.of_node
;
738 ddata
->reset_gpio
= of_get_named_gpio(np
, "reset-gpios", 0);
740 ddata
->in
= omapdss_of_find_source_for_first_ep(np
);
741 if (IS_ERR(ddata
->in
)) {
742 dev_err(&spi
->dev
, "failed to find video source\n");
743 return PTR_ERR(ddata
->in
);
749 static int acx565akm_probe(struct spi_device
*spi
)
751 struct panel_drv_data
*ddata
;
752 struct omap_dss_device
*dssdev
;
753 struct backlight_device
*bldev
;
754 int max_brightness
, brightness
;
755 struct backlight_properties props
;
758 dev_dbg(&spi
->dev
, "%s\n", __func__
);
760 spi
->mode
= SPI_MODE_3
;
762 ddata
= devm_kzalloc(&spi
->dev
, sizeof(*ddata
), GFP_KERNEL
);
766 dev_set_drvdata(&spi
->dev
, ddata
);
770 mutex_init(&ddata
->mutex
);
772 if (dev_get_platdata(&spi
->dev
)) {
773 r
= acx565akm_probe_pdata(spi
);
776 } else if (spi
->dev
.of_node
) {
777 r
= acx565akm_probe_of(spi
);
781 dev_err(&spi
->dev
, "platform data missing!\n");
785 if (gpio_is_valid(ddata
->reset_gpio
)) {
786 r
= devm_gpio_request_one(&spi
->dev
, ddata
->reset_gpio
,
787 GPIOF_OUT_INIT_LOW
, "lcd reset");
792 if (gpio_is_valid(ddata
->reset_gpio
))
793 gpio_set_value(ddata
->reset_gpio
, 1);
796 * After reset we have to wait 5 msec before the first
797 * command can be sent.
799 usleep_range(5000, 10000);
801 ddata
->enabled
= panel_enabled(ddata
);
803 r
= panel_detect(ddata
);
805 if (!ddata
->enabled
&& gpio_is_valid(ddata
->reset_gpio
))
806 gpio_set_value(ddata
->reset_gpio
, 0);
809 dev_err(&spi
->dev
, "%s panel detect error\n", __func__
);
813 memset(&props
, 0, sizeof(props
));
814 props
.fb_blank
= FB_BLANK_UNBLANK
;
815 props
.power
= FB_BLANK_UNBLANK
;
816 props
.type
= BACKLIGHT_RAW
;
818 bldev
= backlight_device_register("acx565akm", &ddata
->spi
->dev
,
819 ddata
, &acx565akm_bl_ops
, &props
);
824 ddata
->bl_dev
= bldev
;
825 if (ddata
->has_cabc
) {
826 r
= sysfs_create_group(&bldev
->dev
.kobj
, &bldev_attr_group
);
829 "%s failed to create sysfs files\n", __func__
);
832 ddata
->cabc_mode
= get_hw_cabc_mode(ddata
);
835 max_brightness
= 255;
838 brightness
= acx565akm_get_actual_brightness(ddata
);
842 bldev
->props
.max_brightness
= max_brightness
;
843 bldev
->props
.brightness
= brightness
;
845 acx565akm_bl_update_status(bldev
);
848 ddata
->videomode
= acx565akm_panel_timings
;
850 dssdev
= &ddata
->dssdev
;
851 dssdev
->dev
= &spi
->dev
;
852 dssdev
->driver
= &acx565akm_ops
;
853 dssdev
->type
= OMAP_DISPLAY_TYPE_SDI
;
854 dssdev
->owner
= THIS_MODULE
;
855 dssdev
->panel
.timings
= ddata
->videomode
;
857 r
= omapdss_register_display(dssdev
);
859 dev_err(&spi
->dev
, "Failed to register panel\n");
866 sysfs_remove_group(&bldev
->dev
.kobj
, &bldev_attr_group
);
868 backlight_device_unregister(bldev
);
872 omap_dss_put_device(ddata
->in
);
876 static int acx565akm_remove(struct spi_device
*spi
)
878 struct panel_drv_data
*ddata
= dev_get_drvdata(&spi
->dev
);
879 struct omap_dss_device
*dssdev
= &ddata
->dssdev
;
880 struct omap_dss_device
*in
= ddata
->in
;
882 dev_dbg(&ddata
->spi
->dev
, "%s\n", __func__
);
884 sysfs_remove_group(&ddata
->bl_dev
->dev
.kobj
, &bldev_attr_group
);
885 backlight_device_unregister(ddata
->bl_dev
);
887 omapdss_unregister_display(dssdev
);
889 acx565akm_disable(dssdev
);
890 acx565akm_disconnect(dssdev
);
892 omap_dss_put_device(in
);
897 static const struct of_device_id acx565akm_of_match
[] = {
898 { .compatible
= "omapdss,sony,acx565akm", },
901 MODULE_DEVICE_TABLE(of
, acx565akm_of_match
);
903 static struct spi_driver acx565akm_driver
= {
906 .of_match_table
= acx565akm_of_match
,
907 .suppress_bind_attrs
= true,
909 .probe
= acx565akm_probe
,
910 .remove
= acx565akm_remove
,
913 module_spi_driver(acx565akm_driver
);
915 MODULE_AUTHOR("Nokia Corporation");
916 MODULE_DESCRIPTION("acx565akm LCD Driver");
917 MODULE_LICENSE("GPL");