blob: 3ccb89340f22644e8cfac83c0a4b9eebe37cc55d [file] [log] [blame]
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +00001/*
2 *
3 * Backlight driver for HP Jornada 700 series (710/720/728)
4 * Copyright (C) 2006-2009 Kristoffer Ericson <kristoffer.ericson@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version
8 * 2 or any later version as published by the Free Software Foundation.
9 *
10 */
11
12#include <linux/backlight.h>
13#include <linux/device.h>
14#include <linux/fb.h>
15#include <linux/kernel.h>
16#include <linux/module.h>
17#include <linux/platform_device.h>
18
19#include <mach/jornada720.h>
20#include <mach/hardware.h>
21
22#include <video/s1d13xxxfb.h>
23
24#define BL_MAX_BRIGHT 255
25#define BL_DEF_BRIGHT 25
26
27static int jornada_bl_get_brightness(struct backlight_device *bd)
28{
29 int ret;
30
31 /* check if backlight is on */
32 if (!(PPSR & PPC_LDD1))
33 return 0;
34
35 jornada_ssp_start();
36
37 /* cmd should return txdummy */
38 ret = jornada_ssp_byte(GETBRIGHTNESS);
39
40 if (jornada_ssp_byte(GETBRIGHTNESS) != TXDUMMY) {
Jingoo Hanb2dcd7b2013-04-29 16:17:31 -070041 dev_err(&bd->dev, "get brightness timeout\n");
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +000042 jornada_ssp_end();
43 return -ETIMEDOUT;
Jingoo Hanb2dcd7b2013-04-29 16:17:31 -070044 } else {
45 /* exchange txdummy for value */
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +000046 ret = jornada_ssp_byte(TXDUMMY);
Jingoo Hanb2dcd7b2013-04-29 16:17:31 -070047 }
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +000048
49 jornada_ssp_end();
50
Jingoo Han0a75a562012-12-17 16:00:21 -080051 return BL_MAX_BRIGHT - ret;
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +000052}
53
54static int jornada_bl_update_status(struct backlight_device *bd)
55{
56 int ret = 0;
57
58 jornada_ssp_start();
59
60 /* If backlight is off then really turn it off */
61 if ((bd->props.power != FB_BLANK_UNBLANK) || (bd->props.fb_blank != FB_BLANK_UNBLANK)) {
62 ret = jornada_ssp_byte(BRIGHTNESSOFF);
63 if (ret != TXDUMMY) {
Jingoo Hanb2dcd7b2013-04-29 16:17:31 -070064 dev_info(&bd->dev, "brightness off timeout\n");
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +000065 /* turn off backlight */
66 PPSR &= ~PPC_LDD1;
67 PPDR |= PPC_LDD1;
68 ret = -ETIMEDOUT;
69 }
70 } else /* turn on backlight */
71 PPSR |= PPC_LDD1;
72
73 /* send command to our mcu */
74 if (jornada_ssp_byte(SETBRIGHTNESS) != TXDUMMY) {
Jingoo Hanb2dcd7b2013-04-29 16:17:31 -070075 dev_info(&bd->dev, "failed to set brightness\n");
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +000076 ret = -ETIMEDOUT;
Kristoffer Ericsonb317c8332009-07-29 15:04:03 -070077 goto out;
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +000078 }
79
Jingoo Han0a75a562012-12-17 16:00:21 -080080 /*
81 * at this point we expect that the mcu has accepted
82 * our command and is waiting for our new value
83 * please note that maximum brightness is 255,
84 * but due to physical layout it is equal to 0, so we simply
85 * invert the value (MAX VALUE - NEW VALUE).
86 */
87 if (jornada_ssp_byte(BL_MAX_BRIGHT - bd->props.brightness)
88 != TXDUMMY) {
Jingoo Hanb2dcd7b2013-04-29 16:17:31 -070089 dev_err(&bd->dev, "set brightness failed\n");
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +000090 ret = -ETIMEDOUT;
91 }
92
Jingoo Han0a75a562012-12-17 16:00:21 -080093 /*
94 * If infact we get an TXDUMMY as output we are happy and dont
95 * make any further comments about it
96 */
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +000097out:
98 jornada_ssp_end();
99
100 return ret;
101}
102
Emese Revfy9905a432009-12-14 00:58:57 +0100103static const struct backlight_ops jornada_bl_ops = {
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +0000104 .get_brightness = jornada_bl_get_brightness,
105 .update_status = jornada_bl_update_status,
106 .options = BL_CORE_SUSPENDRESUME,
107};
108
109static int jornada_bl_probe(struct platform_device *pdev)
110{
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500111 struct backlight_properties props;
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +0000112 int ret;
113 struct backlight_device *bd;
114
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500115 memset(&props, 0, sizeof(struct backlight_properties));
Matthew Garrettbb7ca742011-03-22 16:30:21 -0700116 props.type = BACKLIGHT_RAW;
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500117 props.max_brightness = BL_MAX_BRIGHT;
118 bd = backlight_device_register(S1D_DEVICENAME, &pdev->dev, NULL,
119 &jornada_bl_ops, &props);
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +0000120
121 if (IS_ERR(bd)) {
122 ret = PTR_ERR(bd);
Jingoo Hanb2dcd7b2013-04-29 16:17:31 -0700123 dev_err(&pdev->dev, "failed to register device, err=%x\n", ret);
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +0000124 return ret;
125 }
126
127 bd->props.power = FB_BLANK_UNBLANK;
128 bd->props.brightness = BL_DEF_BRIGHT;
Jingoo Han0a75a562012-12-17 16:00:21 -0800129 /*
130 * note. make sure max brightness is set otherwise
131 * you will get seemingly non-related errors when
132 * trying to change brightness
133 */
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +0000134 jornada_bl_update_status(bd);
135
136 platform_set_drvdata(pdev, bd);
Jingoo Hanb2dcd7b2013-04-29 16:17:31 -0700137 dev_info(&pdev->dev, "HP Jornada 700 series backlight driver\n");
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +0000138
139 return 0;
140}
141
142static int jornada_bl_remove(struct platform_device *pdev)
143{
144 struct backlight_device *bd = platform_get_drvdata(pdev);
145
146 backlight_device_unregister(bd);
147
148 return 0;
149}
150
151static struct platform_driver jornada_bl_driver = {
152 .probe = jornada_bl_probe,
153 .remove = jornada_bl_remove,
154 .driver = {
155 .name = "jornada_bl",
156 },
157};
158
Axel Lin81178e02012-01-10 15:09:11 -0800159module_platform_driver(jornada_bl_driver);
Kristoffer Ericson13a7b5d2009-02-18 11:50:43 +0000160
161MODULE_AUTHOR("Kristoffer Ericson <kristoffer.ericson>");
162MODULE_DESCRIPTION("HP Jornada 710/720/728 Backlight driver");
163MODULE_LICENSE("GPL");