summaryrefslogtreecommitdiff
path: root/packages/linux/linux-ezx/ezx-backlight-r0.patch
blob: 014cd1784cd28c03b2a1b7944fbb970c2faadafa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204

#
# Patch managed by http://www.holgerschurig.de/patcher.html
#

--- linux-2.6.16/arch/arm/mach-pxa/ezx.c~ezx-backlight-r0.patch
+++ linux-2.6.16/arch/arm/mach-pxa/ezx.c
@@ -344,17 +344,12 @@
 	.pxafb_lcd_power	= &pxafb_lcd_power,
 };
 
-
-/* backlight for lcd */
-
-static struct resource ezx_backlight_resources[] = {
-};
-
-static struct platform_device ezx_backlight_device = {
-	.name		= "ezx-lcd-backlight",
+/*
+ * EZX LCD Backlight
+ */
+static struct platform_device ezxbacklight_device = {
+	.name		= "ezx-bl",
 	.id		= -1,
-	.resource	= ezx_backlight_resources,
-	.num_resources	= ARRAY_SIZE(ezx_backlight_resources),
 };
 
 #ifdef CONFIG_PXA_EZX_E680
--- linux-2.6.16/drivers/video/backlight/Kconfig~ezx-backlight-r0.patch
+++ linux-2.6.16/drivers/video/backlight/Kconfig
@@ -58,3 +58,12 @@
 	  If you have a HP Jornada 680, say y to enable the
 	  backlight driver.
 
+config BACKLIGHT_EZX
+	tristate "Motorola EXZ Backlight Driver (A780/E680/E680i)"
+	depends on BACKLIGHT_DEVICE && PXA_EZX
+	default y
+	help
+	  If you have a Motorola A780 or E680(i), say y to enable the
+	  backlight driver.
+
+
--- linux-2.6.16/drivers/video/backlight/Makefile~ezx-backlight-r0.patch
+++ linux-2.6.16/drivers/video/backlight/Makefile
@@ -5,3 +5,5 @@
 obj-$(CONFIG_BACKLIGHT_CORGI)	+= corgi_bl.o
 obj-$(CONFIG_BACKLIGHT_HP680)	+= hp680_bl.o
 obj-$(CONFIG_SHARP_LOCOMO)	+= locomolcd.o
+obj-$(CONFIG_BACKLIGHT_EZX)	+= ezx_bl.o
+
--- /dev/null
+++ linux-2.6.16/drivers/video/backlight/ezx_bl.c
@@ -0,0 +1,148 @@
+/*
+ * Backlight Driver for Motorola A780 and E680(i) GSM Phones.
+ *
+ * Copyright 2006 Vanille Media
+ *
+ * Author: Michael Lauer <mickey@Vanille.de>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ */
+
+#include <linux/module.h>
+#include <linux/kernel.h>
+#include <linux/init.h>
+#include <linux/platform_device.h>
+#include <linux/spinlock.h>
+#include <linux/fb.h>
+#include <linux/backlight.h>
+
+#include <asm/arch/pxa-regs.h>
+#include <asm/arch/ezx.h>
+
+#define EZX_MAX_INTENSITY      50
+#define EZX_DEFAULT_INTENSITY  25
+
+static spinlock_t bl_lock = SPIN_LOCK_UNLOCKED;
+static struct backlight_properties ezxbl_data;
+static struct backlight_device *ezx_backlight_device;
+static int current_intensity;
+
+static int ezx_send_intensity(struct backlight_device *bd)
+{
+	unsigned long flags;
+	int intensity = bd->props->brightness;
+
+	printk( KERN_DEBUG "ezx_set_intensity to %d", intensity );
+
+	if (bd->props->power != FB_BLANK_UNBLANK)
+		intensity = 0;
+	if (bd->props->fb_blank != FB_BLANK_UNBLANK)
+		intensity = 0;
+
+	spin_lock_irqsave(&bl_lock, flags);
+
+	PWM_CTRL0 = 2; /* pre-scaler */
+	PWM_PWDUTY0 = intensity; /* duty cycle */
+	PWM_PERVAL0 = 49; /* period */
+
+	if (intensity) {
+			//pxa_set_cken(CKEN0_PWM0, 1);
+			//FIXME: Set PWM0 GPIO as output
+	} else {
+			//pxa_set_cken(CKEN0_PWM0, 0);
+			//FIXME: Set PWM0 GPIO as input
+	}
+
+	spin_unlock_irqrestore(&bl_lock, flags);
+	current_intensity = intensity;
+	return 0;
+}
+
+static int ezx_get_intensity(struct backlight_device *bd)
+{
+	return current_intensity;
+}
+
+static int ezx_set_intensity(struct backlight_device *bd)
+{
+	return ezx_send_intensity(ezx_backlight_device);
+}
+
+#ifdef CONFIG_PM
+static int ezx_bl_suspend(struct platform_device *pdev, pm_message_t state)
+{
+	//set suspend flag
+	ezx_set_intensity(ezx_backlight_device);
+	return 0;
+}
+
+static int ezx_bl_resume(struct platform_device *pdev)
+{
+	// set resume flag
+	ezx_set_intensity(ezx_backlight_device);
+	return 0;
+}
+#else
+#define ezx_bl_suspend	NULL
+#define ezx_bl_resume	NULL
+#endif
+
+static struct backlight_properties ezx_bl_data = {
+	.owner          = THIS_MODULE,
+	.get_brightness = ezx_get_intensity,
+	.max_brightness = EZX_MAX_INTENSITY,
+	.update_status	= ezx_set_intensity,
+};
+
+static int __init ezx_bl_probe(struct platform_device *pdev)
+{
+	ezx_backlight_device = backlight_device_register ("ezx-bl",
+		NULL, &ezx_bl_data);
+	if (IS_ERR (ezx_backlight_device))
+		return PTR_ERR (ezx_backlight_device);
+
+	//ezx_bl_data.requested_brightness = EZX_DEFAULT_INTENSITY;
+	//ezx_bl_data.requested_power = FB_BLANK_UNBLANK;
+	//ezx_set_intensity(ezx_backlight_device, ezx_bl_data.requested_brightness);
+
+	printk("EZX Backlight Driver Initialized.\n");
+	return 0;
+}
+
+static int ezx_bl_remove(struct platform_device *pdev)
+{
+	backlight_device_unregister(ezx_backlight_device);
+
+	printk("EZX Backlight Driver Unloaded.\n");
+	return 0;
+}
+
+static struct platform_driver ezx_bl_driver = {
+	.probe		= ezx_bl_probe,
+	.remove		= ezx_bl_remove,
+	.suspend	= ezx_bl_suspend,
+	.resume		= ezx_bl_resume,
+	.driver		= {
+		.name		= "ezx-bl",
+	},
+};
+
+static int __init ezx_bl_init(void)
+{
+	return platform_driver_register(&ezx_bl_driver);
+}
+
+static void __exit ezx_bl_exit(void)
+{
+ 	platform_driver_unregister(&ezx_bl_driver);
+}
+
+module_init(ezx_bl_init);
+module_exit(ezx_bl_exit);
+
+MODULE_AUTHOR("Michael Lauer <mickey@Vanille.de>");
+MODULE_DESCRIPTION("Backlight Driver for Motorola A780|E680(i)");
+MODULE_LICENSE("GPL");