aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/boards
diff options
context:
space:
mode:
authorMagnus Damm <damm@igel.co.jp>2009-08-06 10:51:30 -0400
committerPaul Mundt <lethal@linux-sh.org>2009-08-06 14:55:29 -0400
commit9f26e659d8caf5820c51b9c695f0a313e636b99c (patch)
tree8d158400b1e0da08599b74c32b723d2dd6f2a5da /arch/sh/boards
parentec56b66fed526e3b7dd58dba8945c405448f48d1 (diff)
sh: kfr2r09 board support - LCDC panel
This patch adds support for the WQVGA LCD display used by the KFR2R09 board. The LCD module is a TX07D34VM0AAA made by Hitachi, and this module is made up by a R61517 chip together with a 240x400 pixel display. The screen is attached to the SuperH Mobile LCDC using a 18-bit SYS bus. The register settings used by the SYS panel setup code are based on an out-of-tree driver which apart from duplicating all LCDC driver code and writing to non-existing hardware registers also never was posted for upstream merge. Signed-off-by: Magnus Damm <damm@igel.co.jp> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards')
-rw-r--r--arch/sh/boards/mach-kfr2r09/Makefile1
-rw-r--r--arch/sh/boards/mach-kfr2r09/lcd_wqvga.c332
-rw-r--r--arch/sh/boards/mach-kfr2r09/setup.c94
3 files changed, 427 insertions, 0 deletions
diff --git a/arch/sh/boards/mach-kfr2r09/Makefile b/arch/sh/boards/mach-kfr2r09/Makefile
index 77037567633..5d5867826e3 100644
--- a/arch/sh/boards/mach-kfr2r09/Makefile
+++ b/arch/sh/boards/mach-kfr2r09/Makefile
@@ -1 +1,2 @@
1obj-y := setup.o 1obj-y := setup.o
2obj-$(CONFIG_FB_SH_MOBILE_LCDC) += lcd_wqvga.o
diff --git a/arch/sh/boards/mach-kfr2r09/lcd_wqvga.c b/arch/sh/boards/mach-kfr2r09/lcd_wqvga.c
new file mode 100644
index 00000000000..8ccb1cc8b58
--- /dev/null
+++ b/arch/sh/boards/mach-kfr2r09/lcd_wqvga.c
@@ -0,0 +1,332 @@
1/*
2 * KFR2R09 LCD panel support
3 *
4 * Copyright (C) 2009 Magnus Damm
5 *
6 * Register settings based on the out-of-tree t33fb.c driver
7 * Copyright (C) 2008 Lineo Solutions, Inc.
8 *
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file COPYING in the main directory of this archive for
11 * more details.
12 */
13
14#include <linux/delay.h>
15#include <linux/err.h>
16#include <linux/fb.h>
17#include <linux/init.h>
18#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/gpio.h>
21#include <video/sh_mobile_lcdc.h>
22#include <mach/kfr2r09.h>
23#include <cpu/sh7724.h>
24
25/* The on-board LCD module is a Hitachi TX07D34VM0AAA. This module is made
26 * up of a 240x400 LCD hooked up to a R61517 driver IC. The driver IC is
27 * communicating with the main port of the LCDC using an 18-bit SYS interface.
28 *
29 * The device code for this LCD module is 0x01221517.
30 */
31
32static const unsigned char data_frame_if[] = {
33 0x02, /* WEMODE: 1=cont, 0=one-shot */
34 0x00, 0x00,
35 0x00, /* EPF, DFM */
36 0x02, /* RIM[1] : 1 (18bpp) */
37};
38
39static const unsigned char data_panel[] = {
40 0x0b,
41 0x63, /* 400 lines */
42 0x04, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00,
43};
44
45static const unsigned char data_timing[] = {
46 0x00, 0x00, 0x13, 0x08, 0x08,
47};
48
49static const unsigned char data_timing_src[] = {
50 0x11, 0x01, 0x00, 0x01,
51};
52
53static const unsigned char data_gamma[] = {
54 0x01, 0x02, 0x08, 0x23, 0x03, 0x0c, 0x00, 0x06, 0x00, 0x00,
55 0x01, 0x00, 0x0c, 0x23, 0x03, 0x08, 0x02, 0x06, 0x00, 0x00,
56};
57
58static const unsigned char data_power[] = {
59 0x07, 0xc5, 0xdc, 0x02, 0x33, 0x0a,
60};
61
62static unsigned long read_reg(void *sohandle,
63 struct sh_mobile_lcdc_sys_bus_ops *so)
64{
65 return so->read_data(sohandle);
66}
67
68static void write_reg(void *sohandle,
69 struct sh_mobile_lcdc_sys_bus_ops *so,
70 int i, unsigned long v)
71{
72 if (i)
73 so->write_data(sohandle, v); /* PTH4/LCDRS High [param, 17:0] */
74 else
75 so->write_index(sohandle, v); /* PTH4/LCDRS Low [cmd, 7:0] */
76}
77
78static void write_data(void *sohandle,
79 struct sh_mobile_lcdc_sys_bus_ops *so,
80 unsigned char const *data, int no_data)
81{
82 int i;
83
84 for (i = 0; i < no_data; i++)
85 write_reg(sohandle, so, 1, data[i]);
86}
87
88static unsigned long read_device_code(void *sohandle,
89 struct sh_mobile_lcdc_sys_bus_ops *so)
90{
91 unsigned long device_code;
92
93 /* access protect OFF */
94 write_reg(sohandle, so, 0, 0xb0);
95 write_reg(sohandle, so, 1, 0x00);
96
97 /* deep standby OFF */
98 write_reg(sohandle, so, 0, 0xb1);
99 write_reg(sohandle, so, 1, 0x00);
100
101 /* device code command */
102 write_reg(sohandle, so, 0, 0xbf);
103 mdelay(50);
104
105 /* dummy read */
106 read_reg(sohandle, so);
107
108 /* read device code */
109 device_code = ((read_reg(sohandle, so) & 0xff) << 24);
110 device_code |= ((read_reg(sohandle, so) & 0xff) << 16);
111 device_code |= ((read_reg(sohandle, so) & 0xff) << 8);
112 device_code |= (read_reg(sohandle, so) & 0xff);
113
114 return device_code;
115}
116
117static void write_memory_start(void *sohandle,
118 struct sh_mobile_lcdc_sys_bus_ops *so)
119{
120 write_reg(sohandle, so, 0, 0x2c);
121}
122
123static void clear_memory(void *sohandle,
124 struct sh_mobile_lcdc_sys_bus_ops *so)
125{
126 int i;
127
128 /* write start */
129 write_memory_start(sohandle, so);
130
131 /* paint it black */
132 for (i = 0; i < (240 * 400); i++)
133 write_reg(sohandle, so, 1, 0x00);
134}
135
136static void display_on(void *sohandle,
137 struct sh_mobile_lcdc_sys_bus_ops *so)
138{
139 /* access protect off */
140 write_reg(sohandle, so, 0, 0xb0);
141 write_reg(sohandle, so, 1, 0x00);
142
143 /* exit deep standby mode */
144 write_reg(sohandle, so, 0, 0xb1);
145 write_reg(sohandle, so, 1, 0x00);
146
147 /* frame memory I/F */
148 write_reg(sohandle, so, 0, 0xb3);
149 write_data(sohandle, so, data_frame_if, ARRAY_SIZE(data_frame_if));
150
151 /* display mode and frame memory write mode */
152 write_reg(sohandle, so, 0, 0xb4);
153 write_reg(sohandle, so, 1, 0x00); /* DBI, internal clock */
154
155 /* panel */
156 write_reg(sohandle, so, 0, 0xc0);
157 write_data(sohandle, so, data_panel, ARRAY_SIZE(data_panel));
158
159 /* timing (normal) */
160 write_reg(sohandle, so, 0, 0xc1);
161 write_data(sohandle, so, data_timing, ARRAY_SIZE(data_timing));
162
163 /* timing (partial) */
164 write_reg(sohandle, so, 0, 0xc2);
165 write_data(sohandle, so, data_timing, ARRAY_SIZE(data_timing));
166
167 /* timing (idle) */
168 write_reg(sohandle, so, 0, 0xc3);
169 write_data(sohandle, so, data_timing, ARRAY_SIZE(data_timing));
170
171 /* timing (source/VCOM/gate driving) */
172 write_reg(sohandle, so, 0, 0xc4);
173 write_data(sohandle, so, data_timing_src, ARRAY_SIZE(data_timing_src));
174
175 /* gamma (red) */
176 write_reg(sohandle, so, 0, 0xc8);
177 write_data(sohandle, so, data_gamma, ARRAY_SIZE(data_gamma));
178
179 /* gamma (green) */
180 write_reg(sohandle, so, 0, 0xc9);
181 write_data(sohandle, so, data_gamma, ARRAY_SIZE(data_gamma));
182
183 /* gamma (blue) */
184 write_reg(sohandle, so, 0, 0xca);
185 write_data(sohandle, so, data_gamma, ARRAY_SIZE(data_gamma));
186
187 /* power (common) */
188 write_reg(sohandle, so, 0, 0xd0);
189 write_data(sohandle, so, data_power, ARRAY_SIZE(data_power));
190
191 /* VCOM */
192 write_reg(sohandle, so, 0, 0xd1);
193 write_reg(sohandle, so, 1, 0x00);
194 write_reg(sohandle, so, 1, 0x0f);
195 write_reg(sohandle, so, 1, 0x02);
196
197 /* power (normal) */
198 write_reg(sohandle, so, 0, 0xd2);
199 write_reg(sohandle, so, 1, 0x63);
200 write_reg(sohandle, so, 1, 0x24);
201
202 /* power (partial) */
203 write_reg(sohandle, so, 0, 0xd3);
204 write_reg(sohandle, so, 1, 0x63);
205 write_reg(sohandle, so, 1, 0x24);
206
207 /* power (idle) */
208 write_reg(sohandle, so, 0, 0xd4);
209 write_reg(sohandle, so, 1, 0x63);
210 write_reg(sohandle, so, 1, 0x24);
211
212 write_reg(sohandle, so, 0, 0xd8);
213 write_reg(sohandle, so, 1, 0x77);
214 write_reg(sohandle, so, 1, 0x77);
215
216 /* TE signal */
217 write_reg(sohandle, so, 0, 0x35);
218 write_reg(sohandle, so, 1, 0x00);
219
220 /* TE signal line */
221 write_reg(sohandle, so, 0, 0x44);
222 write_reg(sohandle, so, 1, 0x00);
223 write_reg(sohandle, so, 1, 0x00);
224
225 /* column address */
226 write_reg(sohandle, so, 0, 0x2a);
227 write_reg(sohandle, so, 1, 0x00);
228 write_reg(sohandle, so, 1, 0x00);
229 write_reg(sohandle, so, 1, 0x00);
230 write_reg(sohandle, so, 1, 0xef);
231
232 /* page address */
233 write_reg(sohandle, so, 0, 0x2b);
234 write_reg(sohandle, so, 1, 0x00);
235 write_reg(sohandle, so, 1, 0x00);
236 write_reg(sohandle, so, 1, 0x01);
237 write_reg(sohandle, so, 1, 0x8f);
238
239 /* exit sleep mode */
240 write_reg(sohandle, so, 0, 0x11);
241
242 mdelay(120);
243
244 /* clear vram */
245 clear_memory(sohandle, so);
246
247 /* display ON */
248 write_reg(sohandle, so, 0, 0x29);
249 mdelay(1);
250
251 write_memory_start(sohandle, so);
252}
253
254int kfr2r09_lcd_setup(void *board_data, void *sohandle,
255 struct sh_mobile_lcdc_sys_bus_ops *so)
256{
257 /* power on */
258 gpio_set_value(GPIO_PTF4, 0); /* PROTECT/ -> L */
259 gpio_set_value(GPIO_PTE4, 0); /* LCD_RST/ -> L */
260 gpio_set_value(GPIO_PTF4, 1); /* PROTECT/ -> H */
261 udelay(1100);
262 gpio_set_value(GPIO_PTE4, 1); /* LCD_RST/ -> H */
263 udelay(10);
264 gpio_set_value(GPIO_PTF4, 0); /* PROTECT/ -> L */
265 mdelay(20);
266
267 if (read_device_code(sohandle, so) != 0x01221517)
268 return -ENODEV;
269
270 pr_info("KFR2R09 WQVGA LCD Module detected.\n");
271
272 display_on(sohandle, so);
273 return 0;
274}
275
276#define CTRL_CKSW 0x10
277#define CTRL_C10 0x20
278#define CTRL_CPSW 0x80
279#define MAIN_MLED4 0x40
280#define MAIN_MSW 0x80
281
282static int kfr2r09_lcd_backlight(int on)
283{
284 struct i2c_adapter *a;
285 struct i2c_msg msg;
286 unsigned char buf[2];
287 int ret;
288
289 a = i2c_get_adapter(0);
290 if (!a)
291 return -ENODEV;
292
293 buf[0] = 0x00;
294 if (on)
295 buf[1] = CTRL_CPSW | CTRL_C10 | CTRL_CKSW;
296 else
297 buf[1] = 0;
298
299 msg.addr = 0x75;
300 msg.buf = buf;
301 msg.len = 2;
302 msg.flags = 0;
303 ret = i2c_transfer(a, &msg, 1);
304 if (ret != 1)
305 return -ENODEV;
306
307 buf[0] = 0x01;
308 if (on)
309 buf[1] = MAIN_MSW | MAIN_MLED4 | 0x0c;
310 else
311 buf[1] = 0;
312
313 msg.addr = 0x75;
314 msg.buf = buf;
315 msg.len = 2;
316 msg.flags = 0;
317 ret = i2c_transfer(a, &msg, 1);
318 if (ret != 1)
319 return -ENODEV;
320
321 return 0;
322}
323
324void kfr2r09_lcd_on(void *board_data)
325{
326 kfr2r09_lcd_backlight(1);
327}
328
329void kfr2r09_lcd_off(void *board_data)
330{
331 kfr2r09_lcd_backlight(0);
332}
diff --git a/arch/sh/boards/mach-kfr2r09/setup.c b/arch/sh/boards/mach-kfr2r09/setup.c
index bf5f8f8d3b5..13550804090 100644
--- a/arch/sh/boards/mach-kfr2r09/setup.c
+++ b/arch/sh/boards/mach-kfr2r09/setup.c
@@ -15,11 +15,13 @@
15#include <linux/clk.h> 15#include <linux/clk.h>
16#include <linux/gpio.h> 16#include <linux/gpio.h>
17#include <linux/input.h> 17#include <linux/input.h>
18#include <video/sh_mobile_lcdc.h>
18#include <asm/clock.h> 19#include <asm/clock.h>
19#include <asm/machvec.h> 20#include <asm/machvec.h>
20#include <asm/io.h> 21#include <asm/io.h>
21#include <asm/sh_keysc.h> 22#include <asm/sh_keysc.h>
22#include <cpu/sh7724.h> 23#include <cpu/sh7724.h>
24#include <mach/kfr2r09.h>
23 25
24static struct mtd_partition kfr2r09_nor_flash_partitions[] = 26static struct mtd_partition kfr2r09_nor_flash_partitions[] =
25{ 27{
@@ -97,9 +99,70 @@ static struct platform_device kfr2r09_sh_keysc_device = {
97 }, 99 },
98}; 100};
99 101
102static struct sh_mobile_lcdc_info kfr2r09_sh_lcdc_info = {
103 .clock_source = LCDC_CLK_BUS,
104 .ch[0] = {
105 .chan = LCDC_CHAN_MAINLCD,
106 .bpp = 16,
107 .interface_type = SYS18,
108 .clock_divider = 6,
109 .flags = LCDC_FLAGS_DWPOL,
110 .lcd_cfg = {
111 .name = "TX07D34VM0AAA",
112 .xres = 240,
113 .yres = 400,
114 .left_margin = 0,
115 .right_margin = 16,
116 .hsync_len = 8,
117 .upper_margin = 0,
118 .lower_margin = 1,
119 .vsync_len = 1,
120 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
121 },
122 .lcd_size_cfg = {
123 .width = 35,
124 .height = 58,
125 },
126 .board_cfg = {
127 .setup_sys = kfr2r09_lcd_setup,
128 .display_on = kfr2r09_lcd_on,
129 .display_off = kfr2r09_lcd_off,
130 },
131 .sys_bus_cfg = {
132 .ldmt2r = 0x07010904,
133 .ldmt3r = 0x14012914,
134 /* set 1s delay to encourage fsync() */
135 .deferred_io_msec = 1000,
136 },
137 }
138};
139
140static struct resource kfr2r09_sh_lcdc_resources[] = {
141 [0] = {
142 .name = "LCDC",
143 .start = 0xfe940000, /* P4-only space */
144 .end = 0xfe941fff,
145 .flags = IORESOURCE_MEM,
146 },
147 [1] = {
148 .start = 106,
149 .flags = IORESOURCE_IRQ,
150 },
151};
152
153static struct platform_device kfr2r09_sh_lcdc_device = {
154 .name = "sh_mobile_lcdc_fb",
155 .num_resources = ARRAY_SIZE(kfr2r09_sh_lcdc_resources),
156 .resource = kfr2r09_sh_lcdc_resources,
157 .dev = {
158 .platform_data = &kfr2r09_sh_lcdc_info,
159 },
160};
161
100static struct platform_device *kfr2r09_devices[] __initdata = { 162static struct platform_device *kfr2r09_devices[] __initdata = {
101 &kfr2r09_nor_flash_device, 163 &kfr2r09_nor_flash_device,
102 &kfr2r09_sh_keysc_device, 164 &kfr2r09_sh_keysc_device,
165 &kfr2r09_sh_lcdc_device,
103}; 166};
104 167
105#define BSC_CS0BCR 0xfec10004 168#define BSC_CS0BCR 0xfec10004
@@ -128,6 +191,37 @@ static int __init kfr2r09_devices_setup(void)
128 gpio_request(GPIO_FN_KEYIN4, NULL); 191 gpio_request(GPIO_FN_KEYIN4, NULL);
129 gpio_request(GPIO_FN_KEYOUT5_IN5, NULL); 192 gpio_request(GPIO_FN_KEYOUT5_IN5, NULL);
130 193
194 /* setup LCDC pins for SYS panel */
195 gpio_request(GPIO_FN_LCDD17, NULL);
196 gpio_request(GPIO_FN_LCDD16, NULL);
197 gpio_request(GPIO_FN_LCDD15, NULL);
198 gpio_request(GPIO_FN_LCDD14, NULL);
199 gpio_request(GPIO_FN_LCDD13, NULL);
200 gpio_request(GPIO_FN_LCDD12, NULL);
201 gpio_request(GPIO_FN_LCDD11, NULL);
202 gpio_request(GPIO_FN_LCDD10, NULL);
203 gpio_request(GPIO_FN_LCDD9, NULL);
204 gpio_request(GPIO_FN_LCDD8, NULL);
205 gpio_request(GPIO_FN_LCDD7, NULL);
206 gpio_request(GPIO_FN_LCDD6, NULL);
207 gpio_request(GPIO_FN_LCDD5, NULL);
208 gpio_request(GPIO_FN_LCDD4, NULL);
209 gpio_request(GPIO_FN_LCDD3, NULL);
210 gpio_request(GPIO_FN_LCDD2, NULL);
211 gpio_request(GPIO_FN_LCDD1, NULL);
212 gpio_request(GPIO_FN_LCDD0, NULL);
213 gpio_request(GPIO_FN_LCDRS, NULL); /* LCD_RS */
214 gpio_request(GPIO_FN_LCDCS, NULL); /* LCD_CS/ */
215 gpio_request(GPIO_FN_LCDRD, NULL); /* LCD_RD/ */
216 gpio_request(GPIO_FN_LCDWR, NULL); /* LCD_WR/ */
217 gpio_request(GPIO_FN_LCDVSYN, NULL); /* LCD_VSYNC */
218 gpio_request(GPIO_PTE4, NULL); /* LCD_RST/ */
219 gpio_direction_output(GPIO_PTE4, 1);
220 gpio_request(GPIO_PTF4, NULL); /* PROTECT/ */
221 gpio_direction_output(GPIO_PTF4, 1);
222 gpio_request(GPIO_PTU0, NULL); /* LEDSTDBY/ */
223 gpio_direction_output(GPIO_PTU0, 1);
224
131 return platform_add_devices(kfr2r09_devices, 225 return platform_add_devices(kfr2r09_devices,
132 ARRAY_SIZE(kfr2r09_devices)); 226 ARRAY_SIZE(kfr2r09_devices));
133} 227}