diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-22 10:38:37 -0500 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-22 10:38:37 -0500 |
commit | fcc9d2e5a6c89d22b8b773a64fb4ad21ac318446 (patch) | |
tree | a57612d1888735a2ec7972891b68c1ac5ec8faea /drivers/video/omap | |
parent | 8dea78da5cee153b8af9c07a2745f6c55057fe12 (diff) |
Diffstat (limited to 'drivers/video/omap')
-rw-r--r-- | drivers/video/omap/blizzard.c | 1648 | ||||
-rw-r--r-- | drivers/video/omap/dispc.c | 1546 | ||||
-rw-r--r-- | drivers/video/omap/dispc.h | 46 | ||||
-rw-r--r-- | drivers/video/omap/lcd_2430sdp.c | 203 | ||||
-rw-r--r-- | drivers/video/omap/lcd_apollon.c | 136 | ||||
-rw-r--r-- | drivers/video/omap/lcd_h4.c | 117 | ||||
-rw-r--r-- | drivers/video/omap/lcd_ldp.c | 201 | ||||
-rw-r--r-- | drivers/video/omap/lcd_omap3beagle.c | 130 | ||||
-rw-r--r-- | drivers/video/omap/lcd_omap3evm.c | 193 | ||||
-rw-r--r-- | drivers/video/omap/lcd_overo.c | 180 | ||||
-rw-r--r-- | drivers/video/omap/rfbi.c | 598 |
11 files changed, 4998 insertions, 0 deletions
diff --git a/drivers/video/omap/blizzard.c b/drivers/video/omap/blizzard.c new file mode 100644 index 00000000000..c0504a8a507 --- /dev/null +++ b/drivers/video/omap/blizzard.c | |||
@@ -0,0 +1,1648 @@ | |||
1 | /* | ||
2 | * Epson Blizzard LCD controller driver | ||
3 | * | ||
4 | * Copyright (C) 2004-2005 Nokia Corporation | ||
5 | * Authors: Juha Yrjola <juha.yrjola@nokia.com> | ||
6 | * Imre Deak <imre.deak@nokia.com> | ||
7 | * YUV support: Jussi Laako <jussi.laako@nokia.com> | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License as published by the | ||
11 | * Free Software Foundation; either version 2 of the License, or (at your | ||
12 | * option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, but | ||
15 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
17 | * General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License along | ||
20 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
21 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
22 | */ | ||
23 | #include <linux/module.h> | ||
24 | #include <linux/mm.h> | ||
25 | #include <linux/fb.h> | ||
26 | #include <linux/delay.h> | ||
27 | #include <linux/clk.h> | ||
28 | |||
29 | #include <plat/dma.h> | ||
30 | #include <plat/blizzard.h> | ||
31 | |||
32 | #include "omapfb.h" | ||
33 | #include "dispc.h" | ||
34 | |||
35 | #define MODULE_NAME "blizzard" | ||
36 | |||
37 | #define BLIZZARD_REV_CODE 0x00 | ||
38 | #define BLIZZARD_CONFIG 0x02 | ||
39 | #define BLIZZARD_PLL_DIV 0x04 | ||
40 | #define BLIZZARD_PLL_LOCK_RANGE 0x06 | ||
41 | #define BLIZZARD_PLL_CLOCK_SYNTH_0 0x08 | ||
42 | #define BLIZZARD_PLL_CLOCK_SYNTH_1 0x0a | ||
43 | #define BLIZZARD_PLL_MODE 0x0c | ||
44 | #define BLIZZARD_CLK_SRC 0x0e | ||
45 | #define BLIZZARD_MEM_BANK0_ACTIVATE 0x10 | ||
46 | #define BLIZZARD_MEM_BANK0_STATUS 0x14 | ||
47 | #define BLIZZARD_PANEL_CONFIGURATION 0x28 | ||
48 | #define BLIZZARD_HDISP 0x2a | ||
49 | #define BLIZZARD_HNDP 0x2c | ||
50 | #define BLIZZARD_VDISP0 0x2e | ||
51 | #define BLIZZARD_VDISP1 0x30 | ||
52 | #define BLIZZARD_VNDP 0x32 | ||
53 | #define BLIZZARD_HSW 0x34 | ||
54 | #define BLIZZARD_VSW 0x38 | ||
55 | #define BLIZZARD_DISPLAY_MODE 0x68 | ||
56 | #define BLIZZARD_INPUT_WIN_X_START_0 0x6c | ||
57 | #define BLIZZARD_DATA_SOURCE_SELECT 0x8e | ||
58 | #define BLIZZARD_DISP_MEM_DATA_PORT 0x90 | ||
59 | #define BLIZZARD_DISP_MEM_READ_ADDR0 0x92 | ||
60 | #define BLIZZARD_POWER_SAVE 0xE6 | ||
61 | #define BLIZZARD_NDISP_CTRL_STATUS 0xE8 | ||
62 | |||
63 | /* Data source select */ | ||
64 | /* For S1D13745 */ | ||
65 | #define BLIZZARD_SRC_WRITE_LCD_BACKGROUND 0x00 | ||
66 | #define BLIZZARD_SRC_WRITE_LCD_DESTRUCTIVE 0x01 | ||
67 | #define BLIZZARD_SRC_WRITE_OVERLAY_ENABLE 0x04 | ||
68 | #define BLIZZARD_SRC_DISABLE_OVERLAY 0x05 | ||
69 | /* For S1D13744 */ | ||
70 | #define BLIZZARD_SRC_WRITE_LCD 0x00 | ||
71 | #define BLIZZARD_SRC_BLT_LCD 0x06 | ||
72 | |||
73 | #define BLIZZARD_COLOR_RGB565 0x01 | ||
74 | #define BLIZZARD_COLOR_YUV420 0x09 | ||
75 | |||
76 | #define BLIZZARD_VERSION_S1D13745 0x01 /* Hailstorm */ | ||
77 | #define BLIZZARD_VERSION_S1D13744 0x02 /* Blizzard */ | ||
78 | |||
79 | #define BLIZZARD_AUTO_UPDATE_TIME (HZ / 20) | ||
80 | |||
81 | /* Reserve 4 request slots for requests in irq context */ | ||
82 | #define REQ_POOL_SIZE 24 | ||
83 | #define IRQ_REQ_POOL_SIZE 4 | ||
84 | |||
85 | #define REQ_FROM_IRQ_POOL 0x01 | ||
86 | |||
87 | #define REQ_COMPLETE 0 | ||
88 | #define REQ_PENDING 1 | ||
89 | |||
90 | struct blizzard_reg_list { | ||
91 | int start; | ||
92 | int end; | ||
93 | }; | ||
94 | |||
95 | /* These need to be saved / restored separately from the rest. */ | ||
96 | static const struct blizzard_reg_list blizzard_pll_regs[] = { | ||
97 | { | ||
98 | .start = 0x04, /* Don't save PLL ctrl (0x0C) */ | ||
99 | .end = 0x0a, | ||
100 | }, | ||
101 | { | ||
102 | .start = 0x0e, /* Clock configuration */ | ||
103 | .end = 0x0e, | ||
104 | }, | ||
105 | }; | ||
106 | |||
107 | static const struct blizzard_reg_list blizzard_gen_regs[] = { | ||
108 | { | ||
109 | .start = 0x18, /* SDRAM control */ | ||
110 | .end = 0x20, | ||
111 | }, | ||
112 | { | ||
113 | .start = 0x28, /* LCD Panel configuration */ | ||
114 | .end = 0x5a, /* HSSI interface, TV configuration */ | ||
115 | }, | ||
116 | }; | ||
117 | |||
118 | static u8 blizzard_reg_cache[0x5a / 2]; | ||
119 | |||
120 | struct update_param { | ||
121 | int plane; | ||
122 | int x, y, width, height; | ||
123 | int out_x, out_y; | ||
124 | int out_width, out_height; | ||
125 | int color_mode; | ||
126 | int bpp; | ||
127 | int flags; | ||
128 | }; | ||
129 | |||
130 | struct blizzard_request { | ||
131 | struct list_head entry; | ||
132 | unsigned int flags; | ||
133 | |||
134 | int (*handler)(struct blizzard_request *req); | ||
135 | void (*complete)(void *data); | ||
136 | void *complete_data; | ||
137 | |||
138 | union { | ||
139 | struct update_param update; | ||
140 | struct completion *sync; | ||
141 | } par; | ||
142 | }; | ||
143 | |||
144 | struct plane_info { | ||
145 | unsigned long offset; | ||
146 | int pos_x, pos_y; | ||
147 | int width, height; | ||
148 | int out_width, out_height; | ||
149 | int scr_width; | ||
150 | int color_mode; | ||
151 | int bpp; | ||
152 | }; | ||
153 | |||
154 | struct blizzard_struct { | ||
155 | enum omapfb_update_mode update_mode; | ||
156 | enum omapfb_update_mode update_mode_before_suspend; | ||
157 | |||
158 | struct timer_list auto_update_timer; | ||
159 | int stop_auto_update; | ||
160 | struct omapfb_update_window auto_update_window; | ||
161 | int enabled_planes; | ||
162 | int vid_nonstd_color; | ||
163 | int vid_scaled; | ||
164 | int last_color_mode; | ||
165 | int zoom_on; | ||
166 | int zoom_area_gx1; | ||
167 | int zoom_area_gx2; | ||
168 | int zoom_area_gy1; | ||
169 | int zoom_area_gy2; | ||
170 | int screen_width; | ||
171 | int screen_height; | ||
172 | unsigned te_connected:1; | ||
173 | unsigned vsync_only:1; | ||
174 | |||
175 | struct plane_info plane[OMAPFB_PLANE_NUM]; | ||
176 | |||
177 | struct blizzard_request req_pool[REQ_POOL_SIZE]; | ||
178 | struct list_head pending_req_list; | ||
179 | struct list_head free_req_list; | ||
180 | struct semaphore req_sema; | ||
181 | spinlock_t req_lock; | ||
182 | |||
183 | unsigned long sys_ck_rate; | ||
184 | struct extif_timings reg_timings, lut_timings; | ||
185 | |||
186 | u32 max_transmit_size; | ||
187 | u32 extif_clk_period; | ||
188 | int extif_clk_div; | ||
189 | unsigned long pix_tx_time; | ||
190 | unsigned long line_upd_time; | ||
191 | |||
192 | struct omapfb_device *fbdev; | ||
193 | struct lcd_ctrl_extif *extif; | ||
194 | const struct lcd_ctrl *int_ctrl; | ||
195 | |||
196 | void (*power_up)(struct device *dev); | ||
197 | void (*power_down)(struct device *dev); | ||
198 | |||
199 | int version; | ||
200 | } blizzard; | ||
201 | |||
202 | struct lcd_ctrl blizzard_ctrl; | ||
203 | |||
204 | static u8 blizzard_read_reg(u8 reg) | ||
205 | { | ||
206 | u8 data; | ||
207 | |||
208 | blizzard.extif->set_bits_per_cycle(8); | ||
209 | blizzard.extif->write_command(®, 1); | ||
210 | blizzard.extif->read_data(&data, 1); | ||
211 | |||
212 | return data; | ||
213 | } | ||
214 | |||
215 | static void blizzard_write_reg(u8 reg, u8 val) | ||
216 | { | ||
217 | blizzard.extif->set_bits_per_cycle(8); | ||
218 | blizzard.extif->write_command(®, 1); | ||
219 | blizzard.extif->write_data(&val, 1); | ||
220 | } | ||
221 | |||
222 | static void blizzard_restart_sdram(void) | ||
223 | { | ||
224 | unsigned long tmo; | ||
225 | |||
226 | blizzard_write_reg(BLIZZARD_MEM_BANK0_ACTIVATE, 0); | ||
227 | udelay(50); | ||
228 | blizzard_write_reg(BLIZZARD_MEM_BANK0_ACTIVATE, 1); | ||
229 | tmo = jiffies + msecs_to_jiffies(200); | ||
230 | while (!(blizzard_read_reg(BLIZZARD_MEM_BANK0_STATUS) & 0x01)) { | ||
231 | if (time_after(jiffies, tmo)) { | ||
232 | dev_err(blizzard.fbdev->dev, | ||
233 | "s1d1374x: SDRAM not ready\n"); | ||
234 | break; | ||
235 | } | ||
236 | msleep(1); | ||
237 | } | ||
238 | } | ||
239 | |||
240 | static void blizzard_stop_sdram(void) | ||
241 | { | ||
242 | blizzard_write_reg(BLIZZARD_MEM_BANK0_ACTIVATE, 0); | ||
243 | } | ||
244 | |||
245 | /* Wait until the last window was completely written into the controllers | ||
246 | * SDRAM and we can start transferring the next window. | ||
247 | */ | ||
248 | static void blizzard_wait_line_buffer(void) | ||
249 | { | ||
250 | unsigned long tmo = jiffies + msecs_to_jiffies(30); | ||
251 | |||
252 | while (blizzard_read_reg(BLIZZARD_NDISP_CTRL_STATUS) & (1 << 7)) { | ||
253 | if (time_after(jiffies, tmo)) { | ||
254 | if (printk_ratelimit()) | ||
255 | dev_err(blizzard.fbdev->dev, | ||
256 | "s1d1374x: line buffer not ready\n"); | ||
257 | break; | ||
258 | } | ||
259 | } | ||
260 | } | ||
261 | |||
262 | /* Wait until the YYC color space converter is idle. */ | ||
263 | static void blizzard_wait_yyc(void) | ||
264 | { | ||
265 | unsigned long tmo = jiffies + msecs_to_jiffies(30); | ||
266 | |||
267 | while (blizzard_read_reg(BLIZZARD_NDISP_CTRL_STATUS) & (1 << 4)) { | ||
268 | if (time_after(jiffies, tmo)) { | ||
269 | if (printk_ratelimit()) | ||
270 | dev_err(blizzard.fbdev->dev, | ||
271 | "s1d1374x: YYC not ready\n"); | ||
272 | break; | ||
273 | } | ||
274 | } | ||
275 | } | ||
276 | |||
277 | static void disable_overlay(void) | ||
278 | { | ||
279 | blizzard_write_reg(BLIZZARD_DATA_SOURCE_SELECT, | ||
280 | BLIZZARD_SRC_DISABLE_OVERLAY); | ||
281 | } | ||
282 | |||
283 | static void set_window_regs(int x_start, int y_start, int x_end, int y_end, | ||
284 | int x_out_start, int y_out_start, | ||
285 | int x_out_end, int y_out_end, int color_mode, | ||
286 | int zoom_off, int flags) | ||
287 | { | ||
288 | u8 tmp[18]; | ||
289 | u8 cmd; | ||
290 | |||
291 | x_end--; | ||
292 | y_end--; | ||
293 | tmp[0] = x_start; | ||
294 | tmp[1] = x_start >> 8; | ||
295 | tmp[2] = y_start; | ||
296 | tmp[3] = y_start >> 8; | ||
297 | tmp[4] = x_end; | ||
298 | tmp[5] = x_end >> 8; | ||
299 | tmp[6] = y_end; | ||
300 | tmp[7] = y_end >> 8; | ||
301 | |||
302 | x_out_end--; | ||
303 | y_out_end--; | ||
304 | tmp[8] = x_out_start; | ||
305 | tmp[9] = x_out_start >> 8; | ||
306 | tmp[10] = y_out_start; | ||
307 | tmp[11] = y_out_start >> 8; | ||
308 | tmp[12] = x_out_end; | ||
309 | tmp[13] = x_out_end >> 8; | ||
310 | tmp[14] = y_out_end; | ||
311 | tmp[15] = y_out_end >> 8; | ||
312 | |||
313 | tmp[16] = color_mode; | ||
314 | if (zoom_off && blizzard.version == BLIZZARD_VERSION_S1D13745) | ||
315 | tmp[17] = BLIZZARD_SRC_WRITE_LCD_BACKGROUND; | ||
316 | else if (flags & OMAPFB_FORMAT_FLAG_ENABLE_OVERLAY) | ||
317 | tmp[17] = BLIZZARD_SRC_WRITE_OVERLAY_ENABLE; | ||
318 | else | ||
319 | tmp[17] = blizzard.version == BLIZZARD_VERSION_S1D13744 ? | ||
320 | BLIZZARD_SRC_WRITE_LCD : | ||
321 | BLIZZARD_SRC_WRITE_LCD_DESTRUCTIVE; | ||
322 | |||
323 | blizzard.extif->set_bits_per_cycle(8); | ||
324 | cmd = BLIZZARD_INPUT_WIN_X_START_0; | ||
325 | blizzard.extif->write_command(&cmd, 1); | ||
326 | blizzard.extif->write_data(tmp, 18); | ||
327 | } | ||
328 | |||
329 | static void enable_tearsync(int y, int width, int height, int screen_height, | ||
330 | int out_height, int force_vsync) | ||
331 | { | ||
332 | u8 b; | ||
333 | |||
334 | b = blizzard_read_reg(BLIZZARD_NDISP_CTRL_STATUS); | ||
335 | b |= 1 << 3; | ||
336 | blizzard_write_reg(BLIZZARD_NDISP_CTRL_STATUS, b); | ||
337 | |||
338 | if (likely(blizzard.vsync_only || force_vsync)) { | ||
339 | blizzard.extif->enable_tearsync(1, 0); | ||
340 | return; | ||
341 | } | ||
342 | |||
343 | if (width * blizzard.pix_tx_time < blizzard.line_upd_time) { | ||
344 | blizzard.extif->enable_tearsync(1, 0); | ||
345 | return; | ||
346 | } | ||
347 | |||
348 | if ((width * blizzard.pix_tx_time / 1000) * height < | ||
349 | (y + out_height) * (blizzard.line_upd_time / 1000)) { | ||
350 | blizzard.extif->enable_tearsync(1, 0); | ||
351 | return; | ||
352 | } | ||
353 | |||
354 | blizzard.extif->enable_tearsync(1, y + 1); | ||
355 | } | ||
356 | |||
357 | static void disable_tearsync(void) | ||
358 | { | ||
359 | u8 b; | ||
360 | |||
361 | blizzard.extif->enable_tearsync(0, 0); | ||
362 | b = blizzard_read_reg(BLIZZARD_NDISP_CTRL_STATUS); | ||
363 | b &= ~(1 << 3); | ||
364 | blizzard_write_reg(BLIZZARD_NDISP_CTRL_STATUS, b); | ||
365 | b = blizzard_read_reg(BLIZZARD_NDISP_CTRL_STATUS); | ||
366 | } | ||
367 | |||
368 | static inline void set_extif_timings(const struct extif_timings *t); | ||
369 | |||
370 | static inline struct blizzard_request *alloc_req(void) | ||
371 | { | ||
372 | unsigned long flags; | ||
373 | struct blizzard_request *req; | ||
374 | int req_flags = 0; | ||
375 | |||
376 | if (!in_interrupt()) | ||
377 | down(&blizzard.req_sema); | ||
378 | else | ||
379 | req_flags = REQ_FROM_IRQ_POOL; | ||
380 | |||
381 | spin_lock_irqsave(&blizzard.req_lock, flags); | ||
382 | BUG_ON(list_empty(&blizzard.free_req_list)); | ||
383 | req = list_entry(blizzard.free_req_list.next, | ||
384 | struct blizzard_request, entry); | ||
385 | list_del(&req->entry); | ||
386 | spin_unlock_irqrestore(&blizzard.req_lock, flags); | ||
387 | |||
388 | INIT_LIST_HEAD(&req->entry); | ||
389 | req->flags = req_flags; | ||
390 | |||
391 | return req; | ||
392 | } | ||
393 | |||
394 | static inline void free_req(struct blizzard_request *req) | ||
395 | { | ||
396 | unsigned long flags; | ||
397 | |||
398 | spin_lock_irqsave(&blizzard.req_lock, flags); | ||
399 | |||
400 | list_move(&req->entry, &blizzard.free_req_list); | ||
401 | if (!(req->flags & REQ_FROM_IRQ_POOL)) | ||
402 | up(&blizzard.req_sema); | ||
403 | |||
404 | spin_unlock_irqrestore(&blizzard.req_lock, flags); | ||
405 | } | ||
406 | |||
407 | static void process_pending_requests(void) | ||
408 | { | ||
409 | unsigned long flags; | ||
410 | |||
411 | spin_lock_irqsave(&blizzard.req_lock, flags); | ||
412 | |||
413 | while (!list_empty(&blizzard.pending_req_list)) { | ||
414 | struct blizzard_request *req; | ||
415 | void (*complete)(void *); | ||
416 | void *complete_data; | ||
417 | |||
418 | req = list_entry(blizzard.pending_req_list.next, | ||
419 | struct blizzard_request, entry); | ||
420 | spin_unlock_irqrestore(&blizzard.req_lock, flags); | ||
421 | |||
422 | if (req->handler(req) == REQ_PENDING) | ||
423 | return; | ||
424 | |||
425 | complete = req->complete; | ||
426 | complete_data = req->complete_data; | ||
427 | free_req(req); | ||
428 | |||
429 | if (complete) | ||
430 | complete(complete_data); | ||
431 | |||
432 | spin_lock_irqsave(&blizzard.req_lock, flags); | ||
433 | } | ||
434 | |||
435 | spin_unlock_irqrestore(&blizzard.req_lock, flags); | ||
436 | } | ||
437 | |||
438 | static void submit_req_list(struct list_head *head) | ||
439 | { | ||
440 | unsigned long flags; | ||
441 | int process = 1; | ||
442 | |||
443 | spin_lock_irqsave(&blizzard.req_lock, flags); | ||
444 | if (likely(!list_empty(&blizzard.pending_req_list))) | ||
445 | process = 0; | ||
446 | list_splice_init(head, blizzard.pending_req_list.prev); | ||
447 | spin_unlock_irqrestore(&blizzard.req_lock, flags); | ||
448 | |||
449 | if (process) | ||
450 | process_pending_requests(); | ||
451 | } | ||
452 | |||
453 | static void request_complete(void *data) | ||
454 | { | ||
455 | struct blizzard_request *req = (struct blizzard_request *)data; | ||
456 | void (*complete)(void *); | ||
457 | void *complete_data; | ||
458 | |||
459 | complete = req->complete; | ||
460 | complete_data = req->complete_data; | ||
461 | |||
462 | free_req(req); | ||
463 | |||
464 | if (complete) | ||
465 | complete(complete_data); | ||
466 | |||
467 | process_pending_requests(); | ||
468 | } | ||
469 | |||
470 | |||
471 | static int do_full_screen_update(struct blizzard_request *req) | ||
472 | { | ||
473 | int i; | ||
474 | int flags; | ||
475 | |||
476 | for (i = 0; i < 3; i++) { | ||
477 | struct plane_info *p = &blizzard.plane[i]; | ||
478 | if (!(blizzard.enabled_planes & (1 << i))) { | ||
479 | blizzard.int_ctrl->enable_plane(i, 0); | ||
480 | continue; | ||
481 | } | ||
482 | dev_dbg(blizzard.fbdev->dev, "pw %d ph %d\n", | ||
483 | p->width, p->height); | ||
484 | blizzard.int_ctrl->setup_plane(i, | ||
485 | OMAPFB_CHANNEL_OUT_LCD, p->offset, | ||
486 | p->scr_width, p->pos_x, p->pos_y, | ||
487 | p->width, p->height, | ||
488 | p->color_mode); | ||
489 | blizzard.int_ctrl->enable_plane(i, 1); | ||
490 | } | ||
491 | |||
492 | dev_dbg(blizzard.fbdev->dev, "sw %d sh %d\n", | ||
493 | blizzard.screen_width, blizzard.screen_height); | ||
494 | blizzard_wait_line_buffer(); | ||
495 | flags = req->par.update.flags; | ||
496 | if (flags & OMAPFB_FORMAT_FLAG_TEARSYNC) | ||
497 | enable_tearsync(0, blizzard.screen_width, | ||
498 | blizzard.screen_height, | ||
499 | blizzard.screen_height, | ||
500 | blizzard.screen_height, | ||
501 | flags & OMAPFB_FORMAT_FLAG_FORCE_VSYNC); | ||
502 | else | ||
503 | disable_tearsync(); | ||
504 | |||
505 | set_window_regs(0, 0, blizzard.screen_width, blizzard.screen_height, | ||
506 | 0, 0, blizzard.screen_width, blizzard.screen_height, | ||
507 | BLIZZARD_COLOR_RGB565, blizzard.zoom_on, flags); | ||
508 | blizzard.zoom_on = 0; | ||
509 | |||
510 | blizzard.extif->set_bits_per_cycle(16); | ||
511 | /* set_window_regs has left the register index at the right | ||
512 | * place, so no need to set it here. | ||
513 | */ | ||
514 | blizzard.extif->transfer_area(blizzard.screen_width, | ||
515 | blizzard.screen_height, | ||
516 | request_complete, req); | ||
517 | return REQ_PENDING; | ||
518 | } | ||
519 | |||
520 | static int check_1d_intersect(int a1, int a2, int b1, int b2) | ||
521 | { | ||
522 | if (a2 <= b1 || b2 <= a1) | ||
523 | return 0; | ||
524 | return 1; | ||
525 | } | ||
526 | |||
527 | /* Setup all planes with an overlapping area with the update window. */ | ||
528 | static int do_partial_update(struct blizzard_request *req, int plane, | ||
529 | int x, int y, int w, int h, | ||
530 | int x_out, int y_out, int w_out, int h_out, | ||
531 | int wnd_color_mode, int bpp) | ||
532 | { | ||
533 | int i; | ||
534 | int gx1, gy1, gx2, gy2; | ||
535 | int gx1_out, gy1_out, gx2_out, gy2_out; | ||
536 | int color_mode; | ||
537 | int flags; | ||
538 | int zoom_off; | ||
539 | int have_zoom_for_this_update = 0; | ||
540 | |||
541 | /* Global coordinates, relative to pixel 0,0 of the LCD */ | ||
542 | gx1 = x + blizzard.plane[plane].pos_x; | ||
543 | gy1 = y + blizzard.plane[plane].pos_y; | ||
544 | gx2 = gx1 + w; | ||
545 | gy2 = gy1 + h; | ||
546 | |||
547 | flags = req->par.update.flags; | ||
548 | if (flags & OMAPFB_FORMAT_FLAG_DOUBLE) { | ||
549 | gx1_out = gx1; | ||
550 | gy1_out = gy1; | ||
551 | gx2_out = gx1 + w * 2; | ||
552 | gy2_out = gy1 + h * 2; | ||
553 | } else { | ||
554 | gx1_out = x_out + blizzard.plane[plane].pos_x; | ||
555 | gy1_out = y_out + blizzard.plane[plane].pos_y; | ||
556 | gx2_out = gx1_out + w_out; | ||
557 | gy2_out = gy1_out + h_out; | ||
558 | } | ||
559 | |||
560 | for (i = 0; i < OMAPFB_PLANE_NUM; i++) { | ||
561 | struct plane_info *p = &blizzard.plane[i]; | ||
562 | int px1, py1; | ||
563 | int px2, py2; | ||
564 | int pw, ph; | ||
565 | int pposx, pposy; | ||
566 | unsigned long offset; | ||
567 | |||
568 | if (!(blizzard.enabled_planes & (1 << i)) || | ||
569 | (wnd_color_mode && i != plane)) { | ||
570 | blizzard.int_ctrl->enable_plane(i, 0); | ||
571 | continue; | ||
572 | } | ||
573 | /* Plane coordinates */ | ||
574 | if (i == plane) { | ||
575 | /* Plane in which we are doing the update. | ||
576 | * Local coordinates are the one in the update | ||
577 | * request. | ||
578 | */ | ||
579 | px1 = x; | ||
580 | py1 = y; | ||
581 | px2 = x + w; | ||
582 | py2 = y + h; | ||
583 | pposx = 0; | ||
584 | pposy = 0; | ||
585 | } else { | ||
586 | /* Check if this plane has an overlapping part */ | ||
587 | px1 = gx1 - p->pos_x; | ||
588 | py1 = gy1 - p->pos_y; | ||
589 | px2 = gx2 - p->pos_x; | ||
590 | py2 = gy2 - p->pos_y; | ||
591 | if (px1 >= p->width || py1 >= p->height || | ||
592 | px2 <= 0 || py2 <= 0) { | ||
593 | blizzard.int_ctrl->enable_plane(i, 0); | ||
594 | continue; | ||
595 | } | ||
596 | /* Calculate the coordinates for the overlapping | ||
597 | * part in the plane's local coordinates. | ||
598 | */ | ||
599 | pposx = -px1; | ||
600 | pposy = -py1; | ||
601 | if (px1 < 0) | ||
602 | px1 = 0; | ||
603 | if (py1 < 0) | ||
604 | py1 = 0; | ||
605 | if (px2 > p->width) | ||
606 | px2 = p->width; | ||
607 | if (py2 > p->height) | ||
608 | py2 = p->height; | ||
609 | if (pposx < 0) | ||
610 | pposx = 0; | ||
611 | if (pposy < 0) | ||
612 | pposy = 0; | ||
613 | } | ||
614 | pw = px2 - px1; | ||
615 | ph = py2 - py1; | ||
616 | offset = p->offset + (p->scr_width * py1 + px1) * p->bpp / 8; | ||
617 | if (wnd_color_mode) | ||
618 | /* Window embedded in the plane with a differing | ||
619 | * color mode / bpp. Calculate the number of DMA | ||
620 | * transfer elements in terms of the plane's bpp. | ||
621 | */ | ||
622 | pw = (pw + 1) * bpp / p->bpp; | ||
623 | #ifdef VERBOSE | ||
624 | dev_dbg(blizzard.fbdev->dev, | ||
625 | "plane %d offset %#08lx pposx %d pposy %d " | ||
626 | "px1 %d py1 %d pw %d ph %d\n", | ||
627 | i, offset, pposx, pposy, px1, py1, pw, ph); | ||
628 | #endif | ||
629 | blizzard.int_ctrl->setup_plane(i, | ||
630 | OMAPFB_CHANNEL_OUT_LCD, offset, | ||
631 | p->scr_width, | ||
632 | pposx, pposy, pw, ph, | ||
633 | p->color_mode); | ||
634 | |||
635 | blizzard.int_ctrl->enable_plane(i, 1); | ||
636 | } | ||
637 | |||
638 | switch (wnd_color_mode) { | ||
639 | case OMAPFB_COLOR_YUV420: | ||
640 | color_mode = BLIZZARD_COLOR_YUV420; | ||
641 | /* Currently only the 16 bits/pixel cycle format is | ||
642 | * supported on the external interface. Adjust the number | ||
643 | * of transfer elements per line for 12bpp format. | ||
644 | */ | ||
645 | w = (w + 1) * 3 / 4; | ||
646 | break; | ||
647 | default: | ||
648 | color_mode = BLIZZARD_COLOR_RGB565; | ||
649 | break; | ||
650 | } | ||
651 | |||
652 | blizzard_wait_line_buffer(); | ||
653 | if (blizzard.last_color_mode == BLIZZARD_COLOR_YUV420) | ||
654 | blizzard_wait_yyc(); | ||
655 | blizzard.last_color_mode = color_mode; | ||
656 | if (flags & OMAPFB_FORMAT_FLAG_TEARSYNC) | ||
657 | enable_tearsync(gy1, w, h, | ||
658 | blizzard.screen_height, | ||
659 | h_out, | ||
660 | flags & OMAPFB_FORMAT_FLAG_FORCE_VSYNC); | ||
661 | else | ||
662 | disable_tearsync(); | ||
663 | |||
664 | if ((gx2_out - gx1_out) != (gx2 - gx1) || | ||
665 | (gy2_out - gy1_out) != (gy2 - gy1)) | ||
666 | have_zoom_for_this_update = 1; | ||
667 | |||
668 | /* 'background' type of screen update (as opposed to 'destructive') | ||
669 | can be used to disable scaling if scaling is active */ | ||
670 | zoom_off = blizzard.zoom_on && !have_zoom_for_this_update && | ||
671 | (gx1_out == 0) && (gx2_out == blizzard.screen_width) && | ||
672 | (gy1_out == 0) && (gy2_out == blizzard.screen_height) && | ||
673 | (gx1 == 0) && (gy1 == 0); | ||
674 | |||
675 | if (blizzard.zoom_on && !have_zoom_for_this_update && !zoom_off && | ||
676 | check_1d_intersect(blizzard.zoom_area_gx1, blizzard.zoom_area_gx2, | ||
677 | gx1_out, gx2_out) && | ||
678 | check_1d_intersect(blizzard.zoom_area_gy1, blizzard.zoom_area_gy2, | ||
679 | gy1_out, gy2_out)) { | ||
680 | /* Previous screen update was using scaling, current update | ||
681 | * is not using it. Additionally, current screen update is | ||
682 | * going to overlap with the scaled area. Scaling needs to be | ||
683 | * disabled in order to avoid 'magnifying glass' effect. | ||
684 | * Dummy setup of background window can be used for this. | ||
685 | */ | ||
686 | set_window_regs(0, 0, blizzard.screen_width, | ||
687 | blizzard.screen_height, | ||
688 | 0, 0, blizzard.screen_width, | ||
689 | blizzard.screen_height, | ||
690 | BLIZZARD_COLOR_RGB565, 1, flags); | ||
691 | blizzard.zoom_on = 0; | ||
692 | } | ||
693 | |||
694 | /* remember scaling settings if we have scaled update */ | ||
695 | if (have_zoom_for_this_update) { | ||
696 | blizzard.zoom_on = 1; | ||
697 | blizzard.zoom_area_gx1 = gx1_out; | ||
698 | blizzard.zoom_area_gx2 = gx2_out; | ||
699 | blizzard.zoom_area_gy1 = gy1_out; | ||
700 | blizzard.zoom_area_gy2 = gy2_out; | ||
701 | } | ||
702 | |||
703 | set_window_regs(gx1, gy1, gx2, gy2, gx1_out, gy1_out, gx2_out, gy2_out, | ||
704 | color_mode, zoom_off, flags); | ||
705 | if (zoom_off) | ||
706 | blizzard.zoom_on = 0; | ||
707 | |||
708 | blizzard.extif->set_bits_per_cycle(16); | ||
709 | /* set_window_regs has left the register index at the right | ||
710 | * place, so no need to set it here. | ||
711 | */ | ||
712 | blizzard.extif->transfer_area(w, h, request_complete, req); | ||
713 | |||
714 | return REQ_PENDING; | ||
715 | } | ||
716 | |||
717 | static int send_frame_handler(struct blizzard_request *req) | ||
718 | { | ||
719 | struct update_param *par = &req->par.update; | ||
720 | int plane = par->plane; | ||
721 | |||
722 | #ifdef VERBOSE | ||
723 | dev_dbg(blizzard.fbdev->dev, | ||
724 | "send_frame: x %d y %d w %d h %d " | ||
725 | "x_out %d y_out %d w_out %d h_out %d " | ||
726 | "color_mode %04x flags %04x planes %01x\n", | ||
727 | par->x, par->y, par->width, par->height, | ||
728 | par->out_x, par->out_y, par->out_width, par->out_height, | ||
729 | par->color_mode, par->flags, blizzard.enabled_planes); | ||
730 | #endif | ||
731 | if (par->flags & OMAPFB_FORMAT_FLAG_DISABLE_OVERLAY) | ||
732 | disable_overlay(); | ||
733 | |||
734 | if ((blizzard.enabled_planes & blizzard.vid_nonstd_color) || | ||
735 | (blizzard.enabled_planes & blizzard.vid_scaled)) | ||
736 | return do_full_screen_update(req); | ||
737 | |||
738 | return do_partial_update(req, plane, par->x, par->y, | ||
739 | par->width, par->height, | ||
740 | par->out_x, par->out_y, | ||
741 | par->out_width, par->out_height, | ||
742 | par->color_mode, par->bpp); | ||
743 | } | ||
744 | |||
745 | static void send_frame_complete(void *data) | ||
746 | { | ||
747 | } | ||
748 | |||
749 | #define ADD_PREQ(_x, _y, _w, _h, _x_out, _y_out, _w_out, _h_out) do { \ | ||
750 | req = alloc_req(); \ | ||
751 | req->handler = send_frame_handler; \ | ||
752 | req->complete = send_frame_complete; \ | ||
753 | req->par.update.plane = plane_idx; \ | ||
754 | req->par.update.x = _x; \ | ||
755 | req->par.update.y = _y; \ | ||
756 | req->par.update.width = _w; \ | ||
757 | req->par.update.height = _h; \ | ||
758 | req->par.update.out_x = _x_out; \ | ||
759 | req->par.update.out_y = _y_out; \ | ||
760 | req->par.update.out_width = _w_out; \ | ||
761 | req->par.update.out_height = _h_out; \ | ||
762 | req->par.update.bpp = bpp; \ | ||
763 | req->par.update.color_mode = color_mode;\ | ||
764 | req->par.update.flags = flags; \ | ||
765 | list_add_tail(&req->entry, req_head); \ | ||
766 | } while(0) | ||
767 | |||
768 | static void create_req_list(int plane_idx, | ||
769 | struct omapfb_update_window *win, | ||
770 | struct list_head *req_head) | ||
771 | { | ||
772 | struct blizzard_request *req; | ||
773 | int x = win->x; | ||
774 | int y = win->y; | ||
775 | int width = win->width; | ||
776 | int height = win->height; | ||
777 | int x_out = win->out_x; | ||
778 | int y_out = win->out_y; | ||
779 | int width_out = win->out_width; | ||
780 | int height_out = win->out_height; | ||
781 | int color_mode; | ||
782 | int bpp; | ||
783 | int flags; | ||
784 | unsigned int ystart = y; | ||
785 | unsigned int yspan = height; | ||
786 | unsigned int ystart_out = y_out; | ||
787 | unsigned int yspan_out = height_out; | ||
788 | |||
789 | flags = win->format & ~OMAPFB_FORMAT_MASK; | ||
790 | color_mode = win->format & OMAPFB_FORMAT_MASK; | ||
791 | switch (color_mode) { | ||
792 | case OMAPFB_COLOR_YUV420: | ||
793 | /* Embedded window with different color mode */ | ||
794 | bpp = 12; | ||
795 | /* X, Y, height must be aligned at 2, width at 4 pixels */ | ||
796 | x &= ~1; | ||
797 | y &= ~1; | ||
798 | height = yspan = height & ~1; | ||
799 | width = width & ~3; | ||
800 | break; | ||
801 | default: | ||
802 | /* Same as the plane color mode */ | ||
803 | bpp = blizzard.plane[plane_idx].bpp; | ||
804 | break; | ||
805 | } | ||
806 | if (width * height * bpp / 8 > blizzard.max_transmit_size) { | ||
807 | yspan = blizzard.max_transmit_size / (width * bpp / 8); | ||
808 | yspan_out = yspan * height_out / height; | ||
809 | ADD_PREQ(x, ystart, width, yspan, x_out, ystart_out, | ||
810 | width_out, yspan_out); | ||
811 | ystart += yspan; | ||
812 | ystart_out += yspan_out; | ||
813 | yspan = height - yspan; | ||
814 | yspan_out = height_out - yspan_out; | ||
815 | flags &= ~OMAPFB_FORMAT_FLAG_TEARSYNC; | ||
816 | } | ||
817 | |||
818 | ADD_PREQ(x, ystart, width, yspan, x_out, ystart_out, | ||
819 | width_out, yspan_out); | ||
820 | } | ||
821 | |||
822 | static void auto_update_complete(void *data) | ||
823 | { | ||
824 | if (!blizzard.stop_auto_update) | ||
825 | mod_timer(&blizzard.auto_update_timer, | ||
826 | jiffies + BLIZZARD_AUTO_UPDATE_TIME); | ||
827 | } | ||
828 | |||
829 | static void blizzard_update_window_auto(unsigned long arg) | ||
830 | { | ||
831 | LIST_HEAD(req_list); | ||
832 | struct blizzard_request *last; | ||
833 | struct omapfb_plane_struct *plane; | ||
834 | |||
835 | plane = blizzard.fbdev->fb_info[0]->par; | ||
836 | create_req_list(plane->idx, | ||
837 | &blizzard.auto_update_window, &req_list); | ||
838 | last = list_entry(req_list.prev, struct blizzard_request, entry); | ||
839 | |||
840 | last->complete = auto_update_complete; | ||
841 | last->complete_data = NULL; | ||
842 | |||
843 | submit_req_list(&req_list); | ||
844 | } | ||
845 | |||
846 | int blizzard_update_window_async(struct fb_info *fbi, | ||
847 | struct omapfb_update_window *win, | ||
848 | void (*complete_callback)(void *arg), | ||
849 | void *complete_callback_data) | ||
850 | { | ||
851 | LIST_HEAD(req_list); | ||
852 | struct blizzard_request *last; | ||
853 | struct omapfb_plane_struct *plane = fbi->par; | ||
854 | |||
855 | if (unlikely(blizzard.update_mode != OMAPFB_MANUAL_UPDATE)) | ||
856 | return -EINVAL; | ||
857 | if (unlikely(!blizzard.te_connected && | ||
858 | (win->format & OMAPFB_FORMAT_FLAG_TEARSYNC))) | ||
859 | return -EINVAL; | ||
860 | |||
861 | create_req_list(plane->idx, win, &req_list); | ||
862 | last = list_entry(req_list.prev, struct blizzard_request, entry); | ||
863 | |||
864 | last->complete = complete_callback; | ||
865 | last->complete_data = (void *)complete_callback_data; | ||
866 | |||
867 | submit_req_list(&req_list); | ||
868 | |||
869 | return 0; | ||
870 | } | ||
871 | EXPORT_SYMBOL(blizzard_update_window_async); | ||
872 | |||
873 | static int update_full_screen(void) | ||
874 | { | ||
875 | return blizzard_update_window_async(blizzard.fbdev->fb_info[0], | ||
876 | &blizzard.auto_update_window, NULL, NULL); | ||
877 | |||
878 | } | ||
879 | |||
880 | static int blizzard_setup_plane(int plane, int channel_out, | ||
881 | unsigned long offset, int screen_width, | ||
882 | int pos_x, int pos_y, int width, int height, | ||
883 | int color_mode) | ||
884 | { | ||
885 | struct plane_info *p; | ||
886 | |||
887 | #ifdef VERBOSE | ||
888 | dev_dbg(blizzard.fbdev->dev, | ||
889 | "plane %d ch_out %d offset %#08lx scr_width %d " | ||
890 | "pos_x %d pos_y %d width %d height %d color_mode %d\n", | ||
891 | plane, channel_out, offset, screen_width, | ||
892 | pos_x, pos_y, width, height, color_mode); | ||
893 | #endif | ||
894 | if ((unsigned)plane > OMAPFB_PLANE_NUM) | ||
895 | return -EINVAL; | ||
896 | p = &blizzard.plane[plane]; | ||
897 | |||
898 | switch (color_mode) { | ||
899 | case OMAPFB_COLOR_YUV422: | ||
900 | case OMAPFB_COLOR_YUY422: | ||
901 | p->bpp = 16; | ||
902 | blizzard.vid_nonstd_color &= ~(1 << plane); | ||
903 | break; | ||
904 | case OMAPFB_COLOR_YUV420: | ||
905 | p->bpp = 12; | ||
906 | blizzard.vid_nonstd_color |= 1 << plane; | ||
907 | break; | ||
908 | case OMAPFB_COLOR_RGB565: | ||
909 | p->bpp = 16; | ||
910 | blizzard.vid_nonstd_color &= ~(1 << plane); | ||
911 | break; | ||
912 | default: | ||
913 | return -EINVAL; | ||
914 | } | ||
915 | |||
916 | p->offset = offset; | ||
917 | p->pos_x = pos_x; | ||
918 | p->pos_y = pos_y; | ||
919 | p->width = width; | ||
920 | p->height = height; | ||
921 | p->scr_width = screen_width; | ||
922 | if (!p->out_width) | ||
923 | p->out_width = width; | ||
924 | if (!p->out_height) | ||
925 | p->out_height = height; | ||
926 | |||
927 | p->color_mode = color_mode; | ||
928 | |||
929 | return 0; | ||
930 | } | ||
931 | |||
932 | static int blizzard_set_scale(int plane, int orig_w, int orig_h, | ||
933 | int out_w, int out_h) | ||
934 | { | ||
935 | struct plane_info *p = &blizzard.plane[plane]; | ||
936 | int r; | ||
937 | |||
938 | dev_dbg(blizzard.fbdev->dev, | ||
939 | "plane %d orig_w %d orig_h %d out_w %d out_h %d\n", | ||
940 | plane, orig_w, orig_h, out_w, out_h); | ||
941 | if ((unsigned)plane > OMAPFB_PLANE_NUM) | ||
942 | return -ENODEV; | ||
943 | |||
944 | r = blizzard.int_ctrl->set_scale(plane, orig_w, orig_h, out_w, out_h); | ||
945 | if (r < 0) | ||
946 | return r; | ||
947 | |||
948 | p->width = orig_w; | ||
949 | p->height = orig_h; | ||
950 | p->out_width = out_w; | ||
951 | p->out_height = out_h; | ||
952 | if (orig_w == out_w && orig_h == out_h) | ||
953 | blizzard.vid_scaled &= ~(1 << plane); | ||
954 | else | ||
955 | blizzard.vid_scaled |= 1 << plane; | ||
956 | |||
957 | return 0; | ||
958 | } | ||
959 | |||
960 | static int blizzard_set_rotate(int angle) | ||
961 | { | ||
962 | u32 l; | ||
963 | |||
964 | l = blizzard_read_reg(BLIZZARD_PANEL_CONFIGURATION); | ||
965 | l &= ~0x03; | ||
966 | |||
967 | switch (angle) { | ||
968 | case 0: | ||
969 | l = l | 0x00; | ||
970 | break; | ||
971 | case 90: | ||
972 | l = l | 0x03; | ||
973 | break; | ||
974 | case 180: | ||
975 | l = l | 0x02; | ||
976 | break; | ||
977 | case 270: | ||
978 | l = l | 0x01; | ||
979 | break; | ||
980 | default: | ||
981 | return -EINVAL; | ||
982 | } | ||
983 | |||
984 | blizzard_write_reg(BLIZZARD_PANEL_CONFIGURATION, l); | ||
985 | |||
986 | return 0; | ||
987 | } | ||
988 | |||
989 | static int blizzard_enable_plane(int plane, int enable) | ||
990 | { | ||
991 | if (enable) | ||
992 | blizzard.enabled_planes |= 1 << plane; | ||
993 | else | ||
994 | blizzard.enabled_planes &= ~(1 << plane); | ||
995 | |||
996 | return 0; | ||
997 | } | ||
998 | |||
999 | static int sync_handler(struct blizzard_request *req) | ||
1000 | { | ||
1001 | complete(req->par.sync); | ||
1002 | return REQ_COMPLETE; | ||
1003 | } | ||
1004 | |||
1005 | static void blizzard_sync(void) | ||
1006 | { | ||
1007 | LIST_HEAD(req_list); | ||
1008 | struct blizzard_request *req; | ||
1009 | struct completion comp; | ||
1010 | |||
1011 | req = alloc_req(); | ||
1012 | |||
1013 | req->handler = sync_handler; | ||
1014 | req->complete = NULL; | ||
1015 | init_completion(&comp); | ||
1016 | req->par.sync = ∁ | ||
1017 | |||
1018 | list_add(&req->entry, &req_list); | ||
1019 | submit_req_list(&req_list); | ||
1020 | |||
1021 | wait_for_completion(&comp); | ||
1022 | } | ||
1023 | |||
1024 | |||
1025 | static void blizzard_bind_client(struct omapfb_notifier_block *nb) | ||
1026 | { | ||
1027 | if (blizzard.update_mode == OMAPFB_MANUAL_UPDATE) { | ||
1028 | omapfb_notify_clients(blizzard.fbdev, OMAPFB_EVENT_READY); | ||
1029 | } | ||
1030 | } | ||
1031 | |||
1032 | static int blizzard_set_update_mode(enum omapfb_update_mode mode) | ||
1033 | { | ||
1034 | if (unlikely(mode != OMAPFB_MANUAL_UPDATE && | ||
1035 | mode != OMAPFB_AUTO_UPDATE && | ||
1036 | mode != OMAPFB_UPDATE_DISABLED)) | ||
1037 | return -EINVAL; | ||
1038 | |||
1039 | if (mode == blizzard.update_mode) | ||
1040 | return 0; | ||
1041 | |||
1042 | dev_info(blizzard.fbdev->dev, "s1d1374x: setting update mode to %s\n", | ||
1043 | mode == OMAPFB_UPDATE_DISABLED ? "disabled" : | ||
1044 | (mode == OMAPFB_AUTO_UPDATE ? "auto" : "manual")); | ||
1045 | |||
1046 | switch (blizzard.update_mode) { | ||
1047 | case OMAPFB_MANUAL_UPDATE: | ||
1048 | omapfb_notify_clients(blizzard.fbdev, OMAPFB_EVENT_DISABLED); | ||
1049 | break; | ||
1050 | case OMAPFB_AUTO_UPDATE: | ||
1051 | blizzard.stop_auto_update = 1; | ||
1052 | del_timer_sync(&blizzard.auto_update_timer); | ||
1053 | break; | ||
1054 | case OMAPFB_UPDATE_DISABLED: | ||
1055 | break; | ||
1056 | } | ||
1057 | |||
1058 | blizzard.update_mode = mode; | ||
1059 | blizzard_sync(); | ||
1060 | blizzard.stop_auto_update = 0; | ||
1061 | |||
1062 | switch (mode) { | ||
1063 | case OMAPFB_MANUAL_UPDATE: | ||
1064 | omapfb_notify_clients(blizzard.fbdev, OMAPFB_EVENT_READY); | ||
1065 | break; | ||
1066 | case OMAPFB_AUTO_UPDATE: | ||
1067 | blizzard_update_window_auto(0); | ||
1068 | break; | ||
1069 | case OMAPFB_UPDATE_DISABLED: | ||
1070 | break; | ||
1071 | } | ||
1072 | |||
1073 | return 0; | ||
1074 | } | ||
1075 | |||
1076 | static enum omapfb_update_mode blizzard_get_update_mode(void) | ||
1077 | { | ||
1078 | return blizzard.update_mode; | ||
1079 | } | ||
1080 | |||
1081 | static inline void set_extif_timings(const struct extif_timings *t) | ||
1082 | { | ||
1083 | blizzard.extif->set_timings(t); | ||
1084 | } | ||
1085 | |||
1086 | static inline unsigned long round_to_extif_ticks(unsigned long ps, int div) | ||
1087 | { | ||
1088 | int bus_tick = blizzard.extif_clk_period * div; | ||
1089 | return (ps + bus_tick - 1) / bus_tick * bus_tick; | ||
1090 | } | ||
1091 | |||
1092 | static int calc_reg_timing(unsigned long sysclk, int div) | ||
1093 | { | ||
1094 | struct extif_timings *t; | ||
1095 | unsigned long systim; | ||
1096 | |||
1097 | /* CSOnTime 0, WEOnTime 2 ns, REOnTime 2 ns, | ||
1098 | * AccessTime 2 ns + 12.2 ns (regs), | ||
1099 | * WEOffTime = WEOnTime + 1 ns, | ||
1100 | * REOffTime = REOnTime + 12 ns (regs), | ||
1101 | * CSOffTime = REOffTime + 1 ns | ||
1102 | * ReadCycle = 2ns + 2*SYSCLK (regs), | ||
1103 | * WriteCycle = 2*SYSCLK + 2 ns, | ||
1104 | * CSPulseWidth = 10 ns */ | ||
1105 | |||
1106 | systim = 1000000000 / (sysclk / 1000); | ||
1107 | dev_dbg(blizzard.fbdev->dev, | ||
1108 | "Blizzard systim %lu ps extif_clk_period %u div %d\n", | ||
1109 | systim, blizzard.extif_clk_period, div); | ||
1110 | |||
1111 | t = &blizzard.reg_timings; | ||
1112 | memset(t, 0, sizeof(*t)); | ||
1113 | |||
1114 | t->clk_div = div; | ||
1115 | |||
1116 | t->cs_on_time = 0; | ||
1117 | t->we_on_time = round_to_extif_ticks(t->cs_on_time + 2000, div); | ||
1118 | t->re_on_time = round_to_extif_ticks(t->cs_on_time + 2000, div); | ||
1119 | t->access_time = round_to_extif_ticks(t->re_on_time + 12200, div); | ||
1120 | t->we_off_time = round_to_extif_ticks(t->we_on_time + 1000, div); | ||
1121 | t->re_off_time = round_to_extif_ticks(t->re_on_time + 13000, div); | ||
1122 | t->cs_off_time = round_to_extif_ticks(t->re_off_time + 1000, div); | ||
1123 | t->we_cycle_time = round_to_extif_ticks(2 * systim + 2000, div); | ||
1124 | if (t->we_cycle_time < t->we_off_time) | ||
1125 | t->we_cycle_time = t->we_off_time; | ||
1126 | t->re_cycle_time = round_to_extif_ticks(2 * systim + 2000, div); | ||
1127 | if (t->re_cycle_time < t->re_off_time) | ||
1128 | t->re_cycle_time = t->re_off_time; | ||
1129 | t->cs_pulse_width = 0; | ||
1130 | |||
1131 | dev_dbg(blizzard.fbdev->dev, "[reg]cson %d csoff %d reon %d reoff %d\n", | ||
1132 | t->cs_on_time, t->cs_off_time, t->re_on_time, t->re_off_time); | ||
1133 | dev_dbg(blizzard.fbdev->dev, "[reg]weon %d weoff %d recyc %d wecyc %d\n", | ||
1134 | t->we_on_time, t->we_off_time, t->re_cycle_time, | ||
1135 | t->we_cycle_time); | ||
1136 | dev_dbg(blizzard.fbdev->dev, "[reg]rdaccess %d cspulse %d\n", | ||
1137 | t->access_time, t->cs_pulse_width); | ||
1138 | |||
1139 | return blizzard.extif->convert_timings(t); | ||
1140 | } | ||
1141 | |||
1142 | static int calc_lut_timing(unsigned long sysclk, int div) | ||
1143 | { | ||
1144 | struct extif_timings *t; | ||
1145 | unsigned long systim; | ||
1146 | |||
1147 | /* CSOnTime 0, WEOnTime 2 ns, REOnTime 2 ns, | ||
1148 | * AccessTime 2 ns + 4 * SYSCLK + 26 (lut), | ||
1149 | * WEOffTime = WEOnTime + 1 ns, | ||
1150 | * REOffTime = REOnTime + 4*SYSCLK + 26 ns (lut), | ||
1151 | * CSOffTime = REOffTime + 1 ns | ||
1152 | * ReadCycle = 2ns + 4*SYSCLK + 26 ns (lut), | ||
1153 | * WriteCycle = 2*SYSCLK + 2 ns, | ||
1154 | * CSPulseWidth = 10 ns */ | ||
1155 | |||
1156 | systim = 1000000000 / (sysclk / 1000); | ||
1157 | dev_dbg(blizzard.fbdev->dev, | ||
1158 | "Blizzard systim %lu ps extif_clk_period %u div %d\n", | ||
1159 | systim, blizzard.extif_clk_period, div); | ||
1160 | |||
1161 | t = &blizzard.lut_timings; | ||
1162 | memset(t, 0, sizeof(*t)); | ||
1163 | |||
1164 | t->clk_div = div; | ||
1165 | |||
1166 | t->cs_on_time = 0; | ||
1167 | t->we_on_time = round_to_extif_ticks(t->cs_on_time + 2000, div); | ||
1168 | t->re_on_time = round_to_extif_ticks(t->cs_on_time + 2000, div); | ||
1169 | t->access_time = round_to_extif_ticks(t->re_on_time + 4 * systim + | ||
1170 | 26000, div); | ||
1171 | t->we_off_time = round_to_extif_ticks(t->we_on_time + 1000, div); | ||
1172 | t->re_off_time = round_to_extif_ticks(t->re_on_time + 4 * systim + | ||
1173 | 26000, div); | ||
1174 | t->cs_off_time = round_to_extif_ticks(t->re_off_time + 1000, div); | ||
1175 | t->we_cycle_time = round_to_extif_ticks(2 * systim + 2000, div); | ||
1176 | if (t->we_cycle_time < t->we_off_time) | ||
1177 | t->we_cycle_time = t->we_off_time; | ||
1178 | t->re_cycle_time = round_to_extif_ticks(2000 + 4 * systim + 26000, div); | ||
1179 | if (t->re_cycle_time < t->re_off_time) | ||
1180 | t->re_cycle_time = t->re_off_time; | ||
1181 | t->cs_pulse_width = 0; | ||
1182 | |||
1183 | dev_dbg(blizzard.fbdev->dev, | ||
1184 | "[lut]cson %d csoff %d reon %d reoff %d\n", | ||
1185 | t->cs_on_time, t->cs_off_time, t->re_on_time, t->re_off_time); | ||
1186 | dev_dbg(blizzard.fbdev->dev, | ||
1187 | "[lut]weon %d weoff %d recyc %d wecyc %d\n", | ||
1188 | t->we_on_time, t->we_off_time, t->re_cycle_time, | ||
1189 | t->we_cycle_time); | ||
1190 | dev_dbg(blizzard.fbdev->dev, "[lut]rdaccess %d cspulse %d\n", | ||
1191 | t->access_time, t->cs_pulse_width); | ||
1192 | |||
1193 | return blizzard.extif->convert_timings(t); | ||
1194 | } | ||
1195 | |||
1196 | static int calc_extif_timings(unsigned long sysclk, int *extif_mem_div) | ||
1197 | { | ||
1198 | int max_clk_div; | ||
1199 | int div; | ||
1200 | |||
1201 | blizzard.extif->get_clk_info(&blizzard.extif_clk_period, &max_clk_div); | ||
1202 | for (div = 1; div <= max_clk_div; div++) { | ||
1203 | if (calc_reg_timing(sysclk, div) == 0) | ||
1204 | break; | ||
1205 | } | ||
1206 | if (div > max_clk_div) { | ||
1207 | dev_dbg(blizzard.fbdev->dev, "reg timing failed\n"); | ||
1208 | goto err; | ||
1209 | } | ||
1210 | *extif_mem_div = div; | ||
1211 | |||
1212 | for (div = 1; div <= max_clk_div; div++) { | ||
1213 | if (calc_lut_timing(sysclk, div) == 0) | ||
1214 | break; | ||
1215 | } | ||
1216 | |||
1217 | if (div > max_clk_div) | ||
1218 | goto err; | ||
1219 | |||
1220 | blizzard.extif_clk_div = div; | ||
1221 | |||
1222 | return 0; | ||
1223 | err: | ||
1224 | dev_err(blizzard.fbdev->dev, "can't setup timings\n"); | ||
1225 | return -1; | ||
1226 | } | ||
1227 | |||
1228 | static void calc_blizzard_clk_rates(unsigned long ext_clk, | ||
1229 | unsigned long *sys_clk, unsigned long *pix_clk) | ||
1230 | { | ||
1231 | int pix_clk_src; | ||
1232 | int sys_div = 0, sys_mul = 0; | ||
1233 | int pix_div; | ||
1234 | |||
1235 | pix_clk_src = blizzard_read_reg(BLIZZARD_CLK_SRC); | ||
1236 | pix_div = ((pix_clk_src >> 3) & 0x1f) + 1; | ||
1237 | if ((pix_clk_src & (0x3 << 1)) == 0) { | ||
1238 | /* Source is the PLL */ | ||
1239 | sys_div = (blizzard_read_reg(BLIZZARD_PLL_DIV) & 0x3f) + 1; | ||
1240 | sys_mul = blizzard_read_reg(BLIZZARD_PLL_CLOCK_SYNTH_0); | ||
1241 | sys_mul |= ((blizzard_read_reg(BLIZZARD_PLL_CLOCK_SYNTH_1) | ||
1242 | & 0x0f) << 11); | ||
1243 | *sys_clk = ext_clk * sys_mul / sys_div; | ||
1244 | } else /* else source is ext clk, or oscillator */ | ||
1245 | *sys_clk = ext_clk; | ||
1246 | |||
1247 | *pix_clk = *sys_clk / pix_div; /* HZ */ | ||
1248 | dev_dbg(blizzard.fbdev->dev, | ||
1249 | "ext_clk %ld pix_src %d pix_div %d sys_div %d sys_mul %d\n", | ||
1250 | ext_clk, pix_clk_src & (0x3 << 1), pix_div, sys_div, sys_mul); | ||
1251 | dev_dbg(blizzard.fbdev->dev, "sys_clk %ld pix_clk %ld\n", | ||
1252 | *sys_clk, *pix_clk); | ||
1253 | } | ||
1254 | |||
1255 | static int setup_tearsync(unsigned long pix_clk, int extif_div) | ||
1256 | { | ||
1257 | int hdisp, vdisp; | ||
1258 | int hndp, vndp; | ||
1259 | int hsw, vsw; | ||
1260 | int hs, vs; | ||
1261 | int hs_pol_inv, vs_pol_inv; | ||
1262 | int use_hsvs, use_ndp; | ||
1263 | u8 b; | ||
1264 | |||
1265 | hsw = blizzard_read_reg(BLIZZARD_HSW); | ||
1266 | vsw = blizzard_read_reg(BLIZZARD_VSW); | ||
1267 | hs_pol_inv = !(hsw & 0x80); | ||
1268 | vs_pol_inv = !(vsw & 0x80); | ||
1269 | hsw = hsw & 0x7f; | ||
1270 | vsw = vsw & 0x3f; | ||
1271 | |||
1272 | hdisp = blizzard_read_reg(BLIZZARD_HDISP) * 8; | ||
1273 | vdisp = blizzard_read_reg(BLIZZARD_VDISP0) + | ||
1274 | ((blizzard_read_reg(BLIZZARD_VDISP1) & 0x3) << 8); | ||
1275 | |||
1276 | hndp = blizzard_read_reg(BLIZZARD_HNDP) & 0x3f; | ||
1277 | vndp = blizzard_read_reg(BLIZZARD_VNDP); | ||
1278 | |||
1279 | /* time to transfer one pixel (16bpp) in ps */ | ||
1280 | blizzard.pix_tx_time = blizzard.reg_timings.we_cycle_time; | ||
1281 | if (blizzard.extif->get_max_tx_rate != NULL) { | ||
1282 | /* The external interface might have a rate limitation, | ||
1283 | * if so, we have to maximize our transfer rate. | ||
1284 | */ | ||
1285 | unsigned long min_tx_time; | ||
1286 | unsigned long max_tx_rate = blizzard.extif->get_max_tx_rate(); | ||
1287 | |||
1288 | dev_dbg(blizzard.fbdev->dev, "max_tx_rate %ld HZ\n", | ||
1289 | max_tx_rate); | ||
1290 | min_tx_time = 1000000000 / (max_tx_rate / 1000); /* ps */ | ||
1291 | if (blizzard.pix_tx_time < min_tx_time) | ||
1292 | blizzard.pix_tx_time = min_tx_time; | ||
1293 | } | ||
1294 | |||
1295 | /* time to update one line in ps */ | ||
1296 | blizzard.line_upd_time = (hdisp + hndp) * 1000000 / (pix_clk / 1000); | ||
1297 | blizzard.line_upd_time *= 1000; | ||
1298 | if (hdisp * blizzard.pix_tx_time > blizzard.line_upd_time) | ||
1299 | /* transfer speed too low, we might have to use both | ||
1300 | * HS and VS */ | ||
1301 | use_hsvs = 1; | ||
1302 | else | ||
1303 | /* decent transfer speed, we'll always use only VS */ | ||
1304 | use_hsvs = 0; | ||
1305 | |||
1306 | if (use_hsvs && (hs_pol_inv || vs_pol_inv)) { | ||
1307 | /* HS or'ed with VS doesn't work, use the active high | ||
1308 | * TE signal based on HNDP / VNDP */ | ||
1309 | use_ndp = 1; | ||
1310 | hs_pol_inv = 0; | ||
1311 | vs_pol_inv = 0; | ||
1312 | hs = hndp; | ||
1313 | vs = vndp; | ||
1314 | } else { | ||
1315 | /* Use HS or'ed with VS as a TE signal if both are needed | ||
1316 | * or VNDP if only vsync is needed. */ | ||
1317 | use_ndp = 0; | ||
1318 | hs = hsw; | ||
1319 | vs = vsw; | ||
1320 | if (!use_hsvs) { | ||
1321 | hs_pol_inv = 0; | ||
1322 | vs_pol_inv = 0; | ||
1323 | } | ||
1324 | } | ||
1325 | |||
1326 | hs = hs * 1000000 / (pix_clk / 1000); /* ps */ | ||
1327 | hs *= 1000; | ||
1328 | |||
1329 | vs = vs * (hdisp + hndp) * 1000000 / (pix_clk / 1000); /* ps */ | ||
1330 | vs *= 1000; | ||
1331 | |||
1332 | if (vs <= hs) | ||
1333 | return -EDOM; | ||
1334 | /* set VS to 120% of HS to minimize VS detection time */ | ||
1335 | vs = hs * 12 / 10; | ||
1336 | /* minimize HS too */ | ||
1337 | if (hs > 10000) | ||
1338 | hs = 10000; | ||
1339 | |||
1340 | b = blizzard_read_reg(BLIZZARD_NDISP_CTRL_STATUS); | ||
1341 | b &= ~0x3; | ||
1342 | b |= use_hsvs ? 1 : 0; | ||
1343 | b |= (use_ndp && use_hsvs) ? 0 : 2; | ||
1344 | blizzard_write_reg(BLIZZARD_NDISP_CTRL_STATUS, b); | ||
1345 | |||
1346 | blizzard.vsync_only = !use_hsvs; | ||
1347 | |||
1348 | dev_dbg(blizzard.fbdev->dev, | ||
1349 | "pix_clk %ld HZ pix_tx_time %ld ps line_upd_time %ld ps\n", | ||
1350 | pix_clk, blizzard.pix_tx_time, blizzard.line_upd_time); | ||
1351 | dev_dbg(blizzard.fbdev->dev, | ||
1352 | "hs %d ps vs %d ps mode %d vsync_only %d\n", | ||
1353 | hs, vs, b & 0x3, !use_hsvs); | ||
1354 | |||
1355 | return blizzard.extif->setup_tearsync(1, hs, vs, | ||
1356 | hs_pol_inv, vs_pol_inv, | ||
1357 | extif_div); | ||
1358 | } | ||
1359 | |||
1360 | static void blizzard_get_caps(int plane, struct omapfb_caps *caps) | ||
1361 | { | ||
1362 | blizzard.int_ctrl->get_caps(plane, caps); | ||
1363 | caps->ctrl |= OMAPFB_CAPS_MANUAL_UPDATE | | ||
1364 | OMAPFB_CAPS_WINDOW_PIXEL_DOUBLE | | ||
1365 | OMAPFB_CAPS_WINDOW_SCALE | | ||
1366 | OMAPFB_CAPS_WINDOW_OVERLAY | | ||
1367 | OMAPFB_CAPS_WINDOW_ROTATE; | ||
1368 | if (blizzard.te_connected) | ||
1369 | caps->ctrl |= OMAPFB_CAPS_TEARSYNC; | ||
1370 | caps->wnd_color |= (1 << OMAPFB_COLOR_RGB565) | | ||
1371 | (1 << OMAPFB_COLOR_YUV420); | ||
1372 | } | ||
1373 | |||
1374 | static void _save_regs(const struct blizzard_reg_list *list, int cnt) | ||
1375 | { | ||
1376 | int i; | ||
1377 | |||
1378 | for (i = 0; i < cnt; i++, list++) { | ||
1379 | int reg; | ||
1380 | for (reg = list->start; reg <= list->end; reg += 2) | ||
1381 | blizzard_reg_cache[reg / 2] = blizzard_read_reg(reg); | ||
1382 | } | ||
1383 | } | ||
1384 | |||
1385 | static void _restore_regs(const struct blizzard_reg_list *list, int cnt) | ||
1386 | { | ||
1387 | int i; | ||
1388 | |||
1389 | for (i = 0; i < cnt; i++, list++) { | ||
1390 | int reg; | ||
1391 | for (reg = list->start; reg <= list->end; reg += 2) | ||
1392 | blizzard_write_reg(reg, blizzard_reg_cache[reg / 2]); | ||
1393 | } | ||
1394 | } | ||
1395 | |||
1396 | static void blizzard_save_all_regs(void) | ||
1397 | { | ||
1398 | _save_regs(blizzard_pll_regs, ARRAY_SIZE(blizzard_pll_regs)); | ||
1399 | _save_regs(blizzard_gen_regs, ARRAY_SIZE(blizzard_gen_regs)); | ||
1400 | } | ||
1401 | |||
1402 | static void blizzard_restore_pll_regs(void) | ||
1403 | { | ||
1404 | _restore_regs(blizzard_pll_regs, ARRAY_SIZE(blizzard_pll_regs)); | ||
1405 | } | ||
1406 | |||
1407 | static void blizzard_restore_gen_regs(void) | ||
1408 | { | ||
1409 | _restore_regs(blizzard_gen_regs, ARRAY_SIZE(blizzard_gen_regs)); | ||
1410 | } | ||
1411 | |||
1412 | static void blizzard_suspend(void) | ||
1413 | { | ||
1414 | u32 l; | ||
1415 | unsigned long tmo; | ||
1416 | |||
1417 | if (blizzard.last_color_mode) { | ||
1418 | update_full_screen(); | ||
1419 | blizzard_sync(); | ||
1420 | } | ||
1421 | blizzard.update_mode_before_suspend = blizzard.update_mode; | ||
1422 | /* the following will disable clocks as well */ | ||
1423 | blizzard_set_update_mode(OMAPFB_UPDATE_DISABLED); | ||
1424 | |||
1425 | blizzard_save_all_regs(); | ||
1426 | |||
1427 | blizzard_stop_sdram(); | ||
1428 | |||
1429 | l = blizzard_read_reg(BLIZZARD_POWER_SAVE); | ||
1430 | /* Standby, Sleep. We assume we use an external clock. */ | ||
1431 | l |= 0x03; | ||
1432 | blizzard_write_reg(BLIZZARD_POWER_SAVE, l); | ||
1433 | |||
1434 | tmo = jiffies + msecs_to_jiffies(100); | ||
1435 | while (!(blizzard_read_reg(BLIZZARD_PLL_MODE) & (1 << 1))) { | ||
1436 | if (time_after(jiffies, tmo)) { | ||
1437 | dev_err(blizzard.fbdev->dev, | ||
1438 | "s1d1374x: sleep timeout, stopping PLL manually\n"); | ||
1439 | l = blizzard_read_reg(BLIZZARD_PLL_MODE); | ||
1440 | l &= ~0x03; | ||
1441 | /* Disable PLL, counter function */ | ||
1442 | l |= 0x2; | ||
1443 | blizzard_write_reg(BLIZZARD_PLL_MODE, l); | ||
1444 | break; | ||
1445 | } | ||
1446 | msleep(1); | ||
1447 | } | ||
1448 | |||
1449 | if (blizzard.power_down != NULL) | ||
1450 | blizzard.power_down(blizzard.fbdev->dev); | ||
1451 | } | ||
1452 | |||
1453 | static void blizzard_resume(void) | ||
1454 | { | ||
1455 | u32 l; | ||
1456 | |||
1457 | if (blizzard.power_up != NULL) | ||
1458 | blizzard.power_up(blizzard.fbdev->dev); | ||
1459 | |||
1460 | l = blizzard_read_reg(BLIZZARD_POWER_SAVE); | ||
1461 | /* Standby, Sleep */ | ||
1462 | l &= ~0x03; | ||
1463 | blizzard_write_reg(BLIZZARD_POWER_SAVE, l); | ||
1464 | |||
1465 | blizzard_restore_pll_regs(); | ||
1466 | l = blizzard_read_reg(BLIZZARD_PLL_MODE); | ||
1467 | l &= ~0x03; | ||
1468 | /* Enable PLL, counter function */ | ||
1469 | l |= 0x1; | ||
1470 | blizzard_write_reg(BLIZZARD_PLL_MODE, l); | ||
1471 | |||
1472 | while (!(blizzard_read_reg(BLIZZARD_PLL_DIV) & (1 << 7))) | ||
1473 | msleep(1); | ||
1474 | |||
1475 | blizzard_restart_sdram(); | ||
1476 | |||
1477 | blizzard_restore_gen_regs(); | ||
1478 | |||
1479 | /* Enable display */ | ||
1480 | blizzard_write_reg(BLIZZARD_DISPLAY_MODE, 0x01); | ||
1481 | |||
1482 | /* the following will enable clocks as necessary */ | ||
1483 | blizzard_set_update_mode(blizzard.update_mode_before_suspend); | ||
1484 | |||
1485 | /* Force a background update */ | ||
1486 | blizzard.zoom_on = 1; | ||
1487 | update_full_screen(); | ||
1488 | blizzard_sync(); | ||
1489 | } | ||
1490 | |||
1491 | static int blizzard_init(struct omapfb_device *fbdev, int ext_mode, | ||
1492 | struct omapfb_mem_desc *req_vram) | ||
1493 | { | ||
1494 | int r = 0, i; | ||
1495 | u8 rev, conf; | ||
1496 | unsigned long ext_clk; | ||
1497 | int extif_div; | ||
1498 | unsigned long sys_clk, pix_clk; | ||
1499 | struct omapfb_platform_data *omapfb_conf; | ||
1500 | struct blizzard_platform_data *ctrl_conf; | ||
1501 | |||
1502 | blizzard.fbdev = fbdev; | ||
1503 | |||
1504 | BUG_ON(!fbdev->ext_if || !fbdev->int_ctrl); | ||
1505 | |||
1506 | blizzard.fbdev = fbdev; | ||
1507 | blizzard.extif = fbdev->ext_if; | ||
1508 | blizzard.int_ctrl = fbdev->int_ctrl; | ||
1509 | |||
1510 | omapfb_conf = fbdev->dev->platform_data; | ||
1511 | ctrl_conf = omapfb_conf->ctrl_platform_data; | ||
1512 | if (ctrl_conf == NULL || ctrl_conf->get_clock_rate == NULL) { | ||
1513 | dev_err(fbdev->dev, "s1d1374x: missing platform data\n"); | ||
1514 | r = -ENOENT; | ||
1515 | goto err1; | ||
1516 | } | ||
1517 | |||
1518 | blizzard.power_down = ctrl_conf->power_down; | ||
1519 | blizzard.power_up = ctrl_conf->power_up; | ||
1520 | |||
1521 | spin_lock_init(&blizzard.req_lock); | ||
1522 | |||
1523 | if ((r = blizzard.int_ctrl->init(fbdev, 1, req_vram)) < 0) | ||
1524 | goto err1; | ||
1525 | |||
1526 | if ((r = blizzard.extif->init(fbdev)) < 0) | ||
1527 | goto err2; | ||
1528 | |||
1529 | blizzard_ctrl.set_color_key = blizzard.int_ctrl->set_color_key; | ||
1530 | blizzard_ctrl.get_color_key = blizzard.int_ctrl->get_color_key; | ||
1531 | blizzard_ctrl.setup_mem = blizzard.int_ctrl->setup_mem; | ||
1532 | blizzard_ctrl.mmap = blizzard.int_ctrl->mmap; | ||
1533 | |||
1534 | ext_clk = ctrl_conf->get_clock_rate(fbdev->dev); | ||
1535 | if ((r = calc_extif_timings(ext_clk, &extif_div)) < 0) | ||
1536 | goto err3; | ||
1537 | |||
1538 | set_extif_timings(&blizzard.reg_timings); | ||
1539 | |||
1540 | if (blizzard.power_up != NULL) | ||
1541 | blizzard.power_up(fbdev->dev); | ||
1542 | |||
1543 | calc_blizzard_clk_rates(ext_clk, &sys_clk, &pix_clk); | ||
1544 | |||
1545 | if ((r = calc_extif_timings(sys_clk, &extif_div)) < 0) | ||
1546 | goto err3; | ||
1547 | set_extif_timings(&blizzard.reg_timings); | ||
1548 | |||
1549 | if (!(blizzard_read_reg(BLIZZARD_PLL_DIV) & 0x80)) { | ||
1550 | dev_err(fbdev->dev, | ||
1551 | "controller not initialized by the bootloader\n"); | ||
1552 | r = -ENODEV; | ||
1553 | goto err3; | ||
1554 | } | ||
1555 | |||
1556 | if (ctrl_conf->te_connected) { | ||
1557 | if ((r = setup_tearsync(pix_clk, extif_div)) < 0) | ||
1558 | goto err3; | ||
1559 | blizzard.te_connected = 1; | ||
1560 | } | ||
1561 | |||
1562 | rev = blizzard_read_reg(BLIZZARD_REV_CODE); | ||
1563 | conf = blizzard_read_reg(BLIZZARD_CONFIG); | ||
1564 | |||
1565 | switch (rev & 0xfc) { | ||
1566 | case 0x9c: | ||
1567 | blizzard.version = BLIZZARD_VERSION_S1D13744; | ||
1568 | pr_info("omapfb: s1d13744 LCD controller rev %d " | ||
1569 | "initialized (CNF pins %x)\n", rev & 0x03, conf & 0x07); | ||
1570 | break; | ||
1571 | case 0xa4: | ||
1572 | blizzard.version = BLIZZARD_VERSION_S1D13745; | ||
1573 | pr_info("omapfb: s1d13745 LCD controller rev %d " | ||
1574 | "initialized (CNF pins %x)\n", rev & 0x03, conf & 0x07); | ||
1575 | break; | ||
1576 | default: | ||
1577 | dev_err(fbdev->dev, "invalid s1d1374x revision %02x\n", | ||
1578 | rev); | ||
1579 | r = -ENODEV; | ||
1580 | goto err3; | ||
1581 | } | ||
1582 | |||
1583 | blizzard.max_transmit_size = blizzard.extif->max_transmit_size; | ||
1584 | |||
1585 | blizzard.update_mode = OMAPFB_UPDATE_DISABLED; | ||
1586 | |||
1587 | blizzard.auto_update_window.x = 0; | ||
1588 | blizzard.auto_update_window.y = 0; | ||
1589 | blizzard.auto_update_window.width = fbdev->panel->x_res; | ||
1590 | blizzard.auto_update_window.height = fbdev->panel->y_res; | ||
1591 | blizzard.auto_update_window.out_x = 0; | ||
1592 | blizzard.auto_update_window.out_y = 0; | ||
1593 | blizzard.auto_update_window.out_width = fbdev->panel->x_res; | ||
1594 | blizzard.auto_update_window.out_height = fbdev->panel->y_res; | ||
1595 | blizzard.auto_update_window.format = 0; | ||
1596 | |||
1597 | blizzard.screen_width = fbdev->panel->x_res; | ||
1598 | blizzard.screen_height = fbdev->panel->y_res; | ||
1599 | |||
1600 | init_timer(&blizzard.auto_update_timer); | ||
1601 | blizzard.auto_update_timer.function = blizzard_update_window_auto; | ||
1602 | blizzard.auto_update_timer.data = 0; | ||
1603 | |||
1604 | INIT_LIST_HEAD(&blizzard.free_req_list); | ||
1605 | INIT_LIST_HEAD(&blizzard.pending_req_list); | ||
1606 | for (i = 0; i < ARRAY_SIZE(blizzard.req_pool); i++) | ||
1607 | list_add(&blizzard.req_pool[i].entry, &blizzard.free_req_list); | ||
1608 | BUG_ON(i <= IRQ_REQ_POOL_SIZE); | ||
1609 | sema_init(&blizzard.req_sema, i - IRQ_REQ_POOL_SIZE); | ||
1610 | |||
1611 | return 0; | ||
1612 | err3: | ||
1613 | if (blizzard.power_down != NULL) | ||
1614 | blizzard.power_down(fbdev->dev); | ||
1615 | blizzard.extif->cleanup(); | ||
1616 | err2: | ||
1617 | blizzard.int_ctrl->cleanup(); | ||
1618 | err1: | ||
1619 | return r; | ||
1620 | } | ||
1621 | |||
1622 | static void blizzard_cleanup(void) | ||
1623 | { | ||
1624 | blizzard_set_update_mode(OMAPFB_UPDATE_DISABLED); | ||
1625 | blizzard.extif->cleanup(); | ||
1626 | blizzard.int_ctrl->cleanup(); | ||
1627 | if (blizzard.power_down != NULL) | ||
1628 | blizzard.power_down(blizzard.fbdev->dev); | ||
1629 | } | ||
1630 | |||
1631 | struct lcd_ctrl blizzard_ctrl = { | ||
1632 | .name = "blizzard", | ||
1633 | .init = blizzard_init, | ||
1634 | .cleanup = blizzard_cleanup, | ||
1635 | .bind_client = blizzard_bind_client, | ||
1636 | .get_caps = blizzard_get_caps, | ||
1637 | .set_update_mode = blizzard_set_update_mode, | ||
1638 | .get_update_mode = blizzard_get_update_mode, | ||
1639 | .setup_plane = blizzard_setup_plane, | ||
1640 | .set_scale = blizzard_set_scale, | ||
1641 | .enable_plane = blizzard_enable_plane, | ||
1642 | .set_rotate = blizzard_set_rotate, | ||
1643 | .update_window = blizzard_update_window_async, | ||
1644 | .sync = blizzard_sync, | ||
1645 | .suspend = blizzard_suspend, | ||
1646 | .resume = blizzard_resume, | ||
1647 | }; | ||
1648 | |||
diff --git a/drivers/video/omap/dispc.c b/drivers/video/omap/dispc.c new file mode 100644 index 00000000000..0ccd7adf47b --- /dev/null +++ b/drivers/video/omap/dispc.c | |||
@@ -0,0 +1,1546 @@ | |||
1 | /* | ||
2 | * OMAP2 display controller support | ||
3 | * | ||
4 | * Copyright (C) 2005 Nokia Corporation | ||
5 | * Author: Imre Deak <imre.deak@nokia.com> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License as published by the | ||
9 | * Free Software Foundation; either version 2 of the License, or (at your | ||
10 | * option) any later version. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, but | ||
13 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
15 | * General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License along | ||
18 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
19 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
20 | */ | ||
21 | #include <linux/kernel.h> | ||
22 | #include <linux/dma-mapping.h> | ||
23 | #include <linux/mm.h> | ||
24 | #include <linux/vmalloc.h> | ||
25 | #include <linux/clk.h> | ||
26 | #include <linux/io.h> | ||
27 | #include <linux/platform_device.h> | ||
28 | #include <linux/slab.h> | ||
29 | |||
30 | #include <plat/sram.h> | ||
31 | #include <plat/board.h> | ||
32 | |||
33 | #include "omapfb.h" | ||
34 | #include "dispc.h" | ||
35 | |||
36 | #define MODULE_NAME "dispc" | ||
37 | |||
38 | #define DSS_BASE 0x48050000 | ||
39 | #define DSS_SYSCONFIG 0x0010 | ||
40 | |||
41 | #define DISPC_BASE 0x48050400 | ||
42 | |||
43 | /* DISPC common */ | ||
44 | #define DISPC_REVISION 0x0000 | ||
45 | #define DISPC_SYSCONFIG 0x0010 | ||
46 | #define DISPC_SYSSTATUS 0x0014 | ||
47 | #define DISPC_IRQSTATUS 0x0018 | ||
48 | #define DISPC_IRQENABLE 0x001C | ||
49 | #define DISPC_CONTROL 0x0040 | ||
50 | #define DISPC_CONFIG 0x0044 | ||
51 | #define DISPC_CAPABLE 0x0048 | ||
52 | #define DISPC_DEFAULT_COLOR0 0x004C | ||
53 | #define DISPC_DEFAULT_COLOR1 0x0050 | ||
54 | #define DISPC_TRANS_COLOR0 0x0054 | ||
55 | #define DISPC_TRANS_COLOR1 0x0058 | ||
56 | #define DISPC_LINE_STATUS 0x005C | ||
57 | #define DISPC_LINE_NUMBER 0x0060 | ||
58 | #define DISPC_TIMING_H 0x0064 | ||
59 | #define DISPC_TIMING_V 0x0068 | ||
60 | #define DISPC_POL_FREQ 0x006C | ||
61 | #define DISPC_DIVISOR 0x0070 | ||
62 | #define DISPC_SIZE_DIG 0x0078 | ||
63 | #define DISPC_SIZE_LCD 0x007C | ||
64 | |||
65 | #define DISPC_DATA_CYCLE1 0x01D4 | ||
66 | #define DISPC_DATA_CYCLE2 0x01D8 | ||
67 | #define DISPC_DATA_CYCLE3 0x01DC | ||
68 | |||
69 | /* DISPC GFX plane */ | ||
70 | #define DISPC_GFX_BA0 0x0080 | ||
71 | #define DISPC_GFX_BA1 0x0084 | ||
72 | #define DISPC_GFX_POSITION 0x0088 | ||
73 | #define DISPC_GFX_SIZE 0x008C | ||
74 | #define DISPC_GFX_ATTRIBUTES 0x00A0 | ||
75 | #define DISPC_GFX_FIFO_THRESHOLD 0x00A4 | ||
76 | #define DISPC_GFX_FIFO_SIZE_STATUS 0x00A8 | ||
77 | #define DISPC_GFX_ROW_INC 0x00AC | ||
78 | #define DISPC_GFX_PIXEL_INC 0x00B0 | ||
79 | #define DISPC_GFX_WINDOW_SKIP 0x00B4 | ||
80 | #define DISPC_GFX_TABLE_BA 0x00B8 | ||
81 | |||
82 | /* DISPC Video plane 1/2 */ | ||
83 | #define DISPC_VID1_BASE 0x00BC | ||
84 | #define DISPC_VID2_BASE 0x014C | ||
85 | |||
86 | /* Offsets into DISPC_VID1/2_BASE */ | ||
87 | #define DISPC_VID_BA0 0x0000 | ||
88 | #define DISPC_VID_BA1 0x0004 | ||
89 | #define DISPC_VID_POSITION 0x0008 | ||
90 | #define DISPC_VID_SIZE 0x000C | ||
91 | #define DISPC_VID_ATTRIBUTES 0x0010 | ||
92 | #define DISPC_VID_FIFO_THRESHOLD 0x0014 | ||
93 | #define DISPC_VID_FIFO_SIZE_STATUS 0x0018 | ||
94 | #define DISPC_VID_ROW_INC 0x001C | ||
95 | #define DISPC_VID_PIXEL_INC 0x0020 | ||
96 | #define DISPC_VID_FIR 0x0024 | ||
97 | #define DISPC_VID_PICTURE_SIZE 0x0028 | ||
98 | #define DISPC_VID_ACCU0 0x002C | ||
99 | #define DISPC_VID_ACCU1 0x0030 | ||
100 | |||
101 | /* 8 elements in 8 byte increments */ | ||
102 | #define DISPC_VID_FIR_COEF_H0 0x0034 | ||
103 | /* 8 elements in 8 byte increments */ | ||
104 | #define DISPC_VID_FIR_COEF_HV0 0x0038 | ||
105 | /* 5 elements in 4 byte increments */ | ||
106 | #define DISPC_VID_CONV_COEF0 0x0074 | ||
107 | |||
108 | #define DISPC_IRQ_FRAMEMASK 0x0001 | ||
109 | #define DISPC_IRQ_VSYNC 0x0002 | ||
110 | #define DISPC_IRQ_EVSYNC_EVEN 0x0004 | ||
111 | #define DISPC_IRQ_EVSYNC_ODD 0x0008 | ||
112 | #define DISPC_IRQ_ACBIAS_COUNT_STAT 0x0010 | ||
113 | #define DISPC_IRQ_PROG_LINE_NUM 0x0020 | ||
114 | #define DISPC_IRQ_GFX_FIFO_UNDERFLOW 0x0040 | ||
115 | #define DISPC_IRQ_GFX_END_WIN 0x0080 | ||
116 | #define DISPC_IRQ_PAL_GAMMA_MASK 0x0100 | ||
117 | #define DISPC_IRQ_OCP_ERR 0x0200 | ||
118 | #define DISPC_IRQ_VID1_FIFO_UNDERFLOW 0x0400 | ||
119 | #define DISPC_IRQ_VID1_END_WIN 0x0800 | ||
120 | #define DISPC_IRQ_VID2_FIFO_UNDERFLOW 0x1000 | ||
121 | #define DISPC_IRQ_VID2_END_WIN 0x2000 | ||
122 | #define DISPC_IRQ_SYNC_LOST 0x4000 | ||
123 | |||
124 | #define DISPC_IRQ_MASK_ALL 0x7fff | ||
125 | |||
126 | #define DISPC_IRQ_MASK_ERROR (DISPC_IRQ_GFX_FIFO_UNDERFLOW | \ | ||
127 | DISPC_IRQ_VID1_FIFO_UNDERFLOW | \ | ||
128 | DISPC_IRQ_VID2_FIFO_UNDERFLOW | \ | ||
129 | DISPC_IRQ_SYNC_LOST) | ||
130 | |||
131 | #define RFBI_CONTROL 0x48050040 | ||
132 | |||
133 | #define MAX_PALETTE_SIZE (256 * 16) | ||
134 | |||
135 | #define FLD_MASK(pos, len) (((1 << len) - 1) << pos) | ||
136 | |||
137 | #define MOD_REG_FLD(reg, mask, val) \ | ||
138 | dispc_write_reg((reg), (dispc_read_reg(reg) & ~(mask)) | (val)); | ||
139 | |||
140 | #define OMAP2_SRAM_START 0x40200000 | ||
141 | /* Maximum size, in reality this is smaller if SRAM is partially locked. */ | ||
142 | #define OMAP2_SRAM_SIZE 0xa0000 /* 640k */ | ||
143 | |||
144 | /* We support the SDRAM / SRAM types. See OMAPFB_PLANE_MEMTYPE_* in omapfb.h */ | ||
145 | #define DISPC_MEMTYPE_NUM 2 | ||
146 | |||
147 | #define RESMAP_SIZE(_page_cnt) \ | ||
148 | ((_page_cnt + (sizeof(unsigned long) * 8) - 1) / 8) | ||
149 | #define RESMAP_PTR(_res_map, _page_nr) \ | ||
150 | (((_res_map)->map) + (_page_nr) / (sizeof(unsigned long) * 8)) | ||
151 | #define RESMAP_MASK(_page_nr) \ | ||
152 | (1 << ((_page_nr) & (sizeof(unsigned long) * 8 - 1))) | ||
153 | |||
154 | struct resmap { | ||
155 | unsigned long start; | ||
156 | unsigned page_cnt; | ||
157 | unsigned long *map; | ||
158 | }; | ||
159 | |||
160 | #define MAX_IRQ_HANDLERS 4 | ||
161 | |||
162 | static struct { | ||
163 | void __iomem *base; | ||
164 | |||
165 | struct omapfb_mem_desc mem_desc; | ||
166 | struct resmap *res_map[DISPC_MEMTYPE_NUM]; | ||
167 | atomic_t map_count[OMAPFB_PLANE_NUM]; | ||
168 | |||
169 | dma_addr_t palette_paddr; | ||
170 | void *palette_vaddr; | ||
171 | |||
172 | int ext_mode; | ||
173 | |||
174 | struct { | ||
175 | u32 irq_mask; | ||
176 | void (*callback)(void *); | ||
177 | void *data; | ||
178 | } irq_handlers[MAX_IRQ_HANDLERS]; | ||
179 | struct completion frame_done; | ||
180 | |||
181 | int fir_hinc[OMAPFB_PLANE_NUM]; | ||
182 | int fir_vinc[OMAPFB_PLANE_NUM]; | ||
183 | |||
184 | struct clk *dss_ick, *dss1_fck; | ||
185 | struct clk *dss_54m_fck; | ||
186 | |||
187 | enum omapfb_update_mode update_mode; | ||
188 | struct omapfb_device *fbdev; | ||
189 | |||
190 | struct omapfb_color_key color_key; | ||
191 | } dispc; | ||
192 | |||
193 | static void enable_lcd_clocks(int enable); | ||
194 | |||
195 | static void inline dispc_write_reg(int idx, u32 val) | ||
196 | { | ||
197 | __raw_writel(val, dispc.base + idx); | ||
198 | } | ||
199 | |||
200 | static u32 inline dispc_read_reg(int idx) | ||
201 | { | ||
202 | u32 l = __raw_readl(dispc.base + idx); | ||
203 | return l; | ||
204 | } | ||
205 | |||
206 | /* Select RFBI or bypass mode */ | ||
207 | static void enable_rfbi_mode(int enable) | ||
208 | { | ||
209 | void __iomem *rfbi_control; | ||
210 | u32 l; | ||
211 | |||
212 | l = dispc_read_reg(DISPC_CONTROL); | ||
213 | /* Enable RFBI, GPIO0/1 */ | ||
214 | l &= ~((1 << 11) | (1 << 15) | (1 << 16)); | ||
215 | l |= enable ? (1 << 11) : 0; | ||
216 | /* RFBI En: GPIO0/1=10 RFBI Dis: GPIO0/1=11 */ | ||
217 | l |= 1 << 15; | ||
218 | l |= enable ? 0 : (1 << 16); | ||
219 | dispc_write_reg(DISPC_CONTROL, l); | ||
220 | |||
221 | /* Set bypass mode in RFBI module */ | ||
222 | rfbi_control = ioremap(RFBI_CONTROL, SZ_1K); | ||
223 | if (!rfbi_control) { | ||
224 | pr_err("Unable to ioremap rfbi_control\n"); | ||
225 | return; | ||
226 | } | ||
227 | l = __raw_readl(rfbi_control); | ||
228 | l |= enable ? 0 : (1 << 1); | ||
229 | __raw_writel(l, rfbi_control); | ||
230 | iounmap(rfbi_control); | ||
231 | } | ||
232 | |||
233 | static void set_lcd_data_lines(int data_lines) | ||
234 | { | ||
235 | u32 l; | ||
236 | int code = 0; | ||
237 | |||
238 | switch (data_lines) { | ||
239 | case 12: | ||
240 | code = 0; | ||
241 | break; | ||
242 | case 16: | ||
243 | code = 1; | ||
244 | break; | ||
245 | case 18: | ||
246 | code = 2; | ||
247 | break; | ||
248 | case 24: | ||
249 | code = 3; | ||
250 | break; | ||
251 | default: | ||
252 | BUG(); | ||
253 | } | ||
254 | |||
255 | l = dispc_read_reg(DISPC_CONTROL); | ||
256 | l &= ~(0x03 << 8); | ||
257 | l |= code << 8; | ||
258 | dispc_write_reg(DISPC_CONTROL, l); | ||
259 | } | ||
260 | |||
261 | static void set_load_mode(int mode) | ||
262 | { | ||
263 | BUG_ON(mode & ~(DISPC_LOAD_CLUT_ONLY | DISPC_LOAD_FRAME_ONLY | | ||
264 | DISPC_LOAD_CLUT_ONCE_FRAME)); | ||
265 | MOD_REG_FLD(DISPC_CONFIG, 0x03 << 1, mode << 1); | ||
266 | } | ||
267 | |||
268 | void omap_dispc_set_lcd_size(int x, int y) | ||
269 | { | ||
270 | BUG_ON((x > (1 << 11)) || (y > (1 << 11))); | ||
271 | enable_lcd_clocks(1); | ||
272 | MOD_REG_FLD(DISPC_SIZE_LCD, FLD_MASK(16, 11) | FLD_MASK(0, 11), | ||
273 | ((y - 1) << 16) | (x - 1)); | ||
274 | enable_lcd_clocks(0); | ||
275 | } | ||
276 | EXPORT_SYMBOL(omap_dispc_set_lcd_size); | ||
277 | |||
278 | void omap_dispc_set_digit_size(int x, int y) | ||
279 | { | ||
280 | BUG_ON((x > (1 << 11)) || (y > (1 << 11))); | ||
281 | enable_lcd_clocks(1); | ||
282 | MOD_REG_FLD(DISPC_SIZE_DIG, FLD_MASK(16, 11) | FLD_MASK(0, 11), | ||
283 | ((y - 1) << 16) | (x - 1)); | ||
284 | enable_lcd_clocks(0); | ||
285 | } | ||
286 | EXPORT_SYMBOL(omap_dispc_set_digit_size); | ||
287 | |||
288 | static void setup_plane_fifo(int plane, int ext_mode) | ||
289 | { | ||
290 | const u32 ftrs_reg[] = { DISPC_GFX_FIFO_THRESHOLD, | ||
291 | DISPC_VID1_BASE + DISPC_VID_FIFO_THRESHOLD, | ||
292 | DISPC_VID2_BASE + DISPC_VID_FIFO_THRESHOLD }; | ||
293 | const u32 fsz_reg[] = { DISPC_GFX_FIFO_SIZE_STATUS, | ||
294 | DISPC_VID1_BASE + DISPC_VID_FIFO_SIZE_STATUS, | ||
295 | DISPC_VID2_BASE + DISPC_VID_FIFO_SIZE_STATUS }; | ||
296 | int low, high; | ||
297 | u32 l; | ||
298 | |||
299 | BUG_ON(plane > 2); | ||
300 | |||
301 | l = dispc_read_reg(fsz_reg[plane]); | ||
302 | l &= FLD_MASK(0, 11); | ||
303 | if (ext_mode) { | ||
304 | low = l * 3 / 4; | ||
305 | high = l; | ||
306 | } else { | ||
307 | low = l / 4; | ||
308 | high = l * 3 / 4; | ||
309 | } | ||
310 | MOD_REG_FLD(ftrs_reg[plane], FLD_MASK(16, 12) | FLD_MASK(0, 12), | ||
311 | (high << 16) | low); | ||
312 | } | ||
313 | |||
314 | void omap_dispc_enable_lcd_out(int enable) | ||
315 | { | ||
316 | enable_lcd_clocks(1); | ||
317 | MOD_REG_FLD(DISPC_CONTROL, 1, enable ? 1 : 0); | ||
318 | enable_lcd_clocks(0); | ||
319 | } | ||
320 | EXPORT_SYMBOL(omap_dispc_enable_lcd_out); | ||
321 | |||
322 | void omap_dispc_enable_digit_out(int enable) | ||
323 | { | ||
324 | enable_lcd_clocks(1); | ||
325 | MOD_REG_FLD(DISPC_CONTROL, 1 << 1, enable ? 1 << 1 : 0); | ||
326 | enable_lcd_clocks(0); | ||
327 | } | ||
328 | EXPORT_SYMBOL(omap_dispc_enable_digit_out); | ||
329 | |||
330 | static inline int _setup_plane(int plane, int channel_out, | ||
331 | u32 paddr, int screen_width, | ||
332 | int pos_x, int pos_y, int width, int height, | ||
333 | int color_mode) | ||
334 | { | ||
335 | const u32 at_reg[] = { DISPC_GFX_ATTRIBUTES, | ||
336 | DISPC_VID1_BASE + DISPC_VID_ATTRIBUTES, | ||
337 | DISPC_VID2_BASE + DISPC_VID_ATTRIBUTES }; | ||
338 | const u32 ba_reg[] = { DISPC_GFX_BA0, DISPC_VID1_BASE + DISPC_VID_BA0, | ||
339 | DISPC_VID2_BASE + DISPC_VID_BA0 }; | ||
340 | const u32 ps_reg[] = { DISPC_GFX_POSITION, | ||
341 | DISPC_VID1_BASE + DISPC_VID_POSITION, | ||
342 | DISPC_VID2_BASE + DISPC_VID_POSITION }; | ||
343 | const u32 sz_reg[] = { DISPC_GFX_SIZE, | ||
344 | DISPC_VID1_BASE + DISPC_VID_PICTURE_SIZE, | ||
345 | DISPC_VID2_BASE + DISPC_VID_PICTURE_SIZE }; | ||
346 | const u32 ri_reg[] = { DISPC_GFX_ROW_INC, | ||
347 | DISPC_VID1_BASE + DISPC_VID_ROW_INC, | ||
348 | DISPC_VID2_BASE + DISPC_VID_ROW_INC }; | ||
349 | const u32 vs_reg[] = { 0, DISPC_VID1_BASE + DISPC_VID_SIZE, | ||
350 | DISPC_VID2_BASE + DISPC_VID_SIZE }; | ||
351 | |||
352 | int chout_shift, burst_shift; | ||
353 | int chout_val; | ||
354 | int color_code; | ||
355 | int bpp; | ||
356 | int cconv_en; | ||
357 | int set_vsize; | ||
358 | u32 l; | ||
359 | |||
360 | #ifdef VERBOSE | ||
361 | dev_dbg(dispc.fbdev->dev, "plane %d channel %d paddr %#08x scr_width %d" | ||
362 | " pos_x %d pos_y %d width %d height %d color_mode %d\n", | ||
363 | plane, channel_out, paddr, screen_width, pos_x, pos_y, | ||
364 | width, height, color_mode); | ||
365 | #endif | ||
366 | |||
367 | set_vsize = 0; | ||
368 | switch (plane) { | ||
369 | case OMAPFB_PLANE_GFX: | ||
370 | burst_shift = 6; | ||
371 | chout_shift = 8; | ||
372 | break; | ||
373 | case OMAPFB_PLANE_VID1: | ||
374 | case OMAPFB_PLANE_VID2: | ||
375 | burst_shift = 14; | ||
376 | chout_shift = 16; | ||
377 | set_vsize = 1; | ||
378 | break; | ||
379 | default: | ||
380 | return -EINVAL; | ||
381 | } | ||
382 | |||
383 | switch (channel_out) { | ||
384 | case OMAPFB_CHANNEL_OUT_LCD: | ||
385 | chout_val = 0; | ||
386 | break; | ||
387 | case OMAPFB_CHANNEL_OUT_DIGIT: | ||
388 | chout_val = 1; | ||
389 | break; | ||
390 | default: | ||
391 | return -EINVAL; | ||
392 | } | ||
393 | |||
394 | cconv_en = 0; | ||
395 | switch (color_mode) { | ||
396 | case OMAPFB_COLOR_RGB565: | ||
397 | color_code = DISPC_RGB_16_BPP; | ||
398 | bpp = 16; | ||
399 | break; | ||
400 | case OMAPFB_COLOR_YUV422: | ||
401 | if (plane == 0) | ||
402 | return -EINVAL; | ||
403 | color_code = DISPC_UYVY_422; | ||
404 | cconv_en = 1; | ||
405 | bpp = 16; | ||
406 | break; | ||
407 | case OMAPFB_COLOR_YUY422: | ||
408 | if (plane == 0) | ||
409 | return -EINVAL; | ||
410 | color_code = DISPC_YUV2_422; | ||
411 | cconv_en = 1; | ||
412 | bpp = 16; | ||
413 | break; | ||
414 | default: | ||
415 | return -EINVAL; | ||
416 | } | ||
417 | |||
418 | l = dispc_read_reg(at_reg[plane]); | ||
419 | |||
420 | l &= ~(0x0f << 1); | ||
421 | l |= color_code << 1; | ||
422 | l &= ~(1 << 9); | ||
423 | l |= cconv_en << 9; | ||
424 | |||
425 | l &= ~(0x03 << burst_shift); | ||
426 | l |= DISPC_BURST_8x32 << burst_shift; | ||
427 | |||
428 | l &= ~(1 << chout_shift); | ||
429 | l |= chout_val << chout_shift; | ||
430 | |||
431 | dispc_write_reg(at_reg[plane], l); | ||
432 | |||
433 | dispc_write_reg(ba_reg[plane], paddr); | ||
434 | MOD_REG_FLD(ps_reg[plane], | ||
435 | FLD_MASK(16, 11) | FLD_MASK(0, 11), (pos_y << 16) | pos_x); | ||
436 | |||
437 | MOD_REG_FLD(sz_reg[plane], FLD_MASK(16, 11) | FLD_MASK(0, 11), | ||
438 | ((height - 1) << 16) | (width - 1)); | ||
439 | |||
440 | if (set_vsize) { | ||
441 | /* Set video size if set_scale hasn't set it */ | ||
442 | if (!dispc.fir_vinc[plane]) | ||
443 | MOD_REG_FLD(vs_reg[plane], | ||
444 | FLD_MASK(16, 11), (height - 1) << 16); | ||
445 | if (!dispc.fir_hinc[plane]) | ||
446 | MOD_REG_FLD(vs_reg[plane], | ||
447 | FLD_MASK(0, 11), width - 1); | ||
448 | } | ||
449 | |||
450 | dispc_write_reg(ri_reg[plane], (screen_width - width) * bpp / 8 + 1); | ||
451 | |||
452 | return height * screen_width * bpp / 8; | ||
453 | } | ||
454 | |||
455 | static int omap_dispc_setup_plane(int plane, int channel_out, | ||
456 | unsigned long offset, | ||
457 | int screen_width, | ||
458 | int pos_x, int pos_y, int width, int height, | ||
459 | int color_mode) | ||
460 | { | ||
461 | u32 paddr; | ||
462 | int r; | ||
463 | |||
464 | if ((unsigned)plane > dispc.mem_desc.region_cnt) | ||
465 | return -EINVAL; | ||
466 | paddr = dispc.mem_desc.region[plane].paddr + offset; | ||
467 | enable_lcd_clocks(1); | ||
468 | r = _setup_plane(plane, channel_out, paddr, | ||
469 | screen_width, | ||
470 | pos_x, pos_y, width, height, color_mode); | ||
471 | enable_lcd_clocks(0); | ||
472 | return r; | ||
473 | } | ||
474 | |||
475 | static void write_firh_reg(int plane, int reg, u32 value) | ||
476 | { | ||
477 | u32 base; | ||
478 | |||
479 | if (plane == 1) | ||
480 | base = DISPC_VID1_BASE + DISPC_VID_FIR_COEF_H0; | ||
481 | else | ||
482 | base = DISPC_VID2_BASE + DISPC_VID_FIR_COEF_H0; | ||
483 | dispc_write_reg(base + reg * 8, value); | ||
484 | } | ||
485 | |||
486 | static void write_firhv_reg(int plane, int reg, u32 value) | ||
487 | { | ||
488 | u32 base; | ||
489 | |||
490 | if (plane == 1) | ||
491 | base = DISPC_VID1_BASE + DISPC_VID_FIR_COEF_HV0; | ||
492 | else | ||
493 | base = DISPC_VID2_BASE + DISPC_VID_FIR_COEF_HV0; | ||
494 | dispc_write_reg(base + reg * 8, value); | ||
495 | } | ||
496 | |||
497 | static void set_upsampling_coef_table(int plane) | ||
498 | { | ||
499 | const u32 coef[][2] = { | ||
500 | { 0x00800000, 0x00800000 }, | ||
501 | { 0x0D7CF800, 0x037B02FF }, | ||
502 | { 0x1E70F5FF, 0x0C6F05FE }, | ||
503 | { 0x335FF5FE, 0x205907FB }, | ||
504 | { 0xF74949F7, 0x00404000 }, | ||
505 | { 0xF55F33FB, 0x075920FE }, | ||
506 | { 0xF5701EFE, 0x056F0CFF }, | ||
507 | { 0xF87C0DFF, 0x027B0300 }, | ||
508 | }; | ||
509 | int i; | ||
510 | |||
511 | for (i = 0; i < 8; i++) { | ||
512 | write_firh_reg(plane, i, coef[i][0]); | ||
513 | write_firhv_reg(plane, i, coef[i][1]); | ||
514 | } | ||
515 | } | ||
516 | |||
517 | static int omap_dispc_set_scale(int plane, | ||
518 | int orig_width, int orig_height, | ||
519 | int out_width, int out_height) | ||
520 | { | ||
521 | const u32 at_reg[] = { 0, DISPC_VID1_BASE + DISPC_VID_ATTRIBUTES, | ||
522 | DISPC_VID2_BASE + DISPC_VID_ATTRIBUTES }; | ||
523 | const u32 vs_reg[] = { 0, DISPC_VID1_BASE + DISPC_VID_SIZE, | ||
524 | DISPC_VID2_BASE + DISPC_VID_SIZE }; | ||
525 | const u32 fir_reg[] = { 0, DISPC_VID1_BASE + DISPC_VID_FIR, | ||
526 | DISPC_VID2_BASE + DISPC_VID_FIR }; | ||
527 | |||
528 | u32 l; | ||
529 | int fir_hinc; | ||
530 | int fir_vinc; | ||
531 | |||
532 | if ((unsigned)plane > OMAPFB_PLANE_NUM) | ||
533 | return -ENODEV; | ||
534 | |||
535 | if (plane == OMAPFB_PLANE_GFX && | ||
536 | (out_width != orig_width || out_height != orig_height)) | ||
537 | return -EINVAL; | ||
538 | |||
539 | enable_lcd_clocks(1); | ||
540 | if (orig_width < out_width) { | ||
541 | /* | ||
542 | * Upsampling. | ||
543 | * Currently you can only scale both dimensions in one way. | ||
544 | */ | ||
545 | if (orig_height > out_height || | ||
546 | orig_width * 8 < out_width || | ||
547 | orig_height * 8 < out_height) { | ||
548 | enable_lcd_clocks(0); | ||
549 | return -EINVAL; | ||
550 | } | ||
551 | set_upsampling_coef_table(plane); | ||
552 | } else if (orig_width > out_width) { | ||
553 | /* Downsampling not yet supported | ||
554 | */ | ||
555 | |||
556 | enable_lcd_clocks(0); | ||
557 | return -EINVAL; | ||
558 | } | ||
559 | if (!orig_width || orig_width == out_width) | ||
560 | fir_hinc = 0; | ||
561 | else | ||
562 | fir_hinc = 1024 * orig_width / out_width; | ||
563 | if (!orig_height || orig_height == out_height) | ||
564 | fir_vinc = 0; | ||
565 | else | ||
566 | fir_vinc = 1024 * orig_height / out_height; | ||
567 | dispc.fir_hinc[plane] = fir_hinc; | ||
568 | dispc.fir_vinc[plane] = fir_vinc; | ||
569 | |||
570 | MOD_REG_FLD(fir_reg[plane], | ||
571 | FLD_MASK(16, 12) | FLD_MASK(0, 12), | ||
572 | ((fir_vinc & 4095) << 16) | | ||
573 | (fir_hinc & 4095)); | ||
574 | |||
575 | dev_dbg(dispc.fbdev->dev, "out_width %d out_height %d orig_width %d " | ||
576 | "orig_height %d fir_hinc %d fir_vinc %d\n", | ||
577 | out_width, out_height, orig_width, orig_height, | ||
578 | fir_hinc, fir_vinc); | ||
579 | |||
580 | MOD_REG_FLD(vs_reg[plane], | ||
581 | FLD_MASK(16, 11) | FLD_MASK(0, 11), | ||
582 | ((out_height - 1) << 16) | (out_width - 1)); | ||
583 | |||
584 | l = dispc_read_reg(at_reg[plane]); | ||
585 | l &= ~(0x03 << 5); | ||
586 | l |= fir_hinc ? (1 << 5) : 0; | ||
587 | l |= fir_vinc ? (1 << 6) : 0; | ||
588 | dispc_write_reg(at_reg[plane], l); | ||
589 | |||
590 | enable_lcd_clocks(0); | ||
591 | return 0; | ||
592 | } | ||
593 | |||
594 | static int omap_dispc_enable_plane(int plane, int enable) | ||
595 | { | ||
596 | const u32 at_reg[] = { DISPC_GFX_ATTRIBUTES, | ||
597 | DISPC_VID1_BASE + DISPC_VID_ATTRIBUTES, | ||
598 | DISPC_VID2_BASE + DISPC_VID_ATTRIBUTES }; | ||
599 | if ((unsigned int)plane > dispc.mem_desc.region_cnt) | ||
600 | return -EINVAL; | ||
601 | |||
602 | enable_lcd_clocks(1); | ||
603 | MOD_REG_FLD(at_reg[plane], 1, enable ? 1 : 0); | ||
604 | enable_lcd_clocks(0); | ||
605 | |||
606 | return 0; | ||
607 | } | ||
608 | |||
609 | static int omap_dispc_set_color_key(struct omapfb_color_key *ck) | ||
610 | { | ||
611 | u32 df_reg, tr_reg; | ||
612 | int shift, val; | ||
613 | |||
614 | switch (ck->channel_out) { | ||
615 | case OMAPFB_CHANNEL_OUT_LCD: | ||
616 | df_reg = DISPC_DEFAULT_COLOR0; | ||
617 | tr_reg = DISPC_TRANS_COLOR0; | ||
618 | shift = 10; | ||
619 | break; | ||
620 | case OMAPFB_CHANNEL_OUT_DIGIT: | ||
621 | df_reg = DISPC_DEFAULT_COLOR1; | ||
622 | tr_reg = DISPC_TRANS_COLOR1; | ||
623 | shift = 12; | ||
624 | break; | ||
625 | default: | ||
626 | return -EINVAL; | ||
627 | } | ||
628 | switch (ck->key_type) { | ||
629 | case OMAPFB_COLOR_KEY_DISABLED: | ||
630 | val = 0; | ||
631 | break; | ||
632 | case OMAPFB_COLOR_KEY_GFX_DST: | ||
633 | val = 1; | ||
634 | break; | ||
635 | case OMAPFB_COLOR_KEY_VID_SRC: | ||
636 | val = 3; | ||
637 | break; | ||
638 | default: | ||
639 | return -EINVAL; | ||
640 | } | ||
641 | enable_lcd_clocks(1); | ||
642 | MOD_REG_FLD(DISPC_CONFIG, FLD_MASK(shift, 2), val << shift); | ||
643 | |||
644 | if (val != 0) | ||
645 | dispc_write_reg(tr_reg, ck->trans_key); | ||
646 | dispc_write_reg(df_reg, ck->background); | ||
647 | enable_lcd_clocks(0); | ||
648 | |||
649 | dispc.color_key = *ck; | ||
650 | |||
651 | return 0; | ||
652 | } | ||
653 | |||
654 | static int omap_dispc_get_color_key(struct omapfb_color_key *ck) | ||
655 | { | ||
656 | *ck = dispc.color_key; | ||
657 | return 0; | ||
658 | } | ||
659 | |||
660 | static void load_palette(void) | ||
661 | { | ||
662 | } | ||
663 | |||
664 | static int omap_dispc_set_update_mode(enum omapfb_update_mode mode) | ||
665 | { | ||
666 | int r = 0; | ||
667 | |||
668 | if (mode != dispc.update_mode) { | ||
669 | switch (mode) { | ||
670 | case OMAPFB_AUTO_UPDATE: | ||
671 | case OMAPFB_MANUAL_UPDATE: | ||
672 | enable_lcd_clocks(1); | ||
673 | omap_dispc_enable_lcd_out(1); | ||
674 | dispc.update_mode = mode; | ||
675 | break; | ||
676 | case OMAPFB_UPDATE_DISABLED: | ||
677 | init_completion(&dispc.frame_done); | ||
678 | omap_dispc_enable_lcd_out(0); | ||
679 | if (!wait_for_completion_timeout(&dispc.frame_done, | ||
680 | msecs_to_jiffies(500))) { | ||
681 | dev_err(dispc.fbdev->dev, | ||
682 | "timeout waiting for FRAME DONE\n"); | ||
683 | } | ||
684 | dispc.update_mode = mode; | ||
685 | enable_lcd_clocks(0); | ||
686 | break; | ||
687 | default: | ||
688 | r = -EINVAL; | ||
689 | } | ||
690 | } | ||
691 | |||
692 | return r; | ||
693 | } | ||
694 | |||
695 | static void omap_dispc_get_caps(int plane, struct omapfb_caps *caps) | ||
696 | { | ||
697 | caps->ctrl |= OMAPFB_CAPS_PLANE_RELOCATE_MEM; | ||
698 | if (plane > 0) | ||
699 | caps->ctrl |= OMAPFB_CAPS_PLANE_SCALE; | ||
700 | caps->plane_color |= (1 << OMAPFB_COLOR_RGB565) | | ||
701 | (1 << OMAPFB_COLOR_YUV422) | | ||
702 | (1 << OMAPFB_COLOR_YUY422); | ||
703 | if (plane == 0) | ||
704 | caps->plane_color |= (1 << OMAPFB_COLOR_CLUT_8BPP) | | ||
705 | (1 << OMAPFB_COLOR_CLUT_4BPP) | | ||
706 | (1 << OMAPFB_COLOR_CLUT_2BPP) | | ||
707 | (1 << OMAPFB_COLOR_CLUT_1BPP) | | ||
708 | (1 << OMAPFB_COLOR_RGB444); | ||
709 | } | ||
710 | |||
711 | static enum omapfb_update_mode omap_dispc_get_update_mode(void) | ||
712 | { | ||
713 | return dispc.update_mode; | ||
714 | } | ||
715 | |||
716 | static void setup_color_conv_coef(void) | ||
717 | { | ||
718 | u32 mask = FLD_MASK(16, 11) | FLD_MASK(0, 11); | ||
719 | int cf1_reg = DISPC_VID1_BASE + DISPC_VID_CONV_COEF0; | ||
720 | int cf2_reg = DISPC_VID2_BASE + DISPC_VID_CONV_COEF0; | ||
721 | int at1_reg = DISPC_VID1_BASE + DISPC_VID_ATTRIBUTES; | ||
722 | int at2_reg = DISPC_VID2_BASE + DISPC_VID_ATTRIBUTES; | ||
723 | const struct color_conv_coef { | ||
724 | int ry, rcr, rcb, gy, gcr, gcb, by, bcr, bcb; | ||
725 | int full_range; | ||
726 | } ctbl_bt601_5 = { | ||
727 | 298, 409, 0, 298, -208, -100, 298, 0, 517, 0, | ||
728 | }; | ||
729 | const struct color_conv_coef *ct; | ||
730 | #define CVAL(x, y) (((x & 2047) << 16) | (y & 2047)) | ||
731 | |||
732 | ct = &ctbl_bt601_5; | ||
733 | |||
734 | MOD_REG_FLD(cf1_reg, mask, CVAL(ct->rcr, ct->ry)); | ||
735 | MOD_REG_FLD(cf1_reg + 4, mask, CVAL(ct->gy, ct->rcb)); | ||
736 | MOD_REG_FLD(cf1_reg + 8, mask, CVAL(ct->gcb, ct->gcr)); | ||
737 | MOD_REG_FLD(cf1_reg + 12, mask, CVAL(ct->bcr, ct->by)); | ||
738 | MOD_REG_FLD(cf1_reg + 16, mask, CVAL(0, ct->bcb)); | ||
739 | |||
740 | MOD_REG_FLD(cf2_reg, mask, CVAL(ct->rcr, ct->ry)); | ||
741 | MOD_REG_FLD(cf2_reg + 4, mask, CVAL(ct->gy, ct->rcb)); | ||
742 | MOD_REG_FLD(cf2_reg + 8, mask, CVAL(ct->gcb, ct->gcr)); | ||
743 | MOD_REG_FLD(cf2_reg + 12, mask, CVAL(ct->bcr, ct->by)); | ||
744 | MOD_REG_FLD(cf2_reg + 16, mask, CVAL(0, ct->bcb)); | ||
745 | #undef CVAL | ||
746 | |||
747 | MOD_REG_FLD(at1_reg, (1 << 11), ct->full_range); | ||
748 | MOD_REG_FLD(at2_reg, (1 << 11), ct->full_range); | ||
749 | } | ||
750 | |||
751 | static void calc_ck_div(int is_tft, int pck, int *lck_div, int *pck_div) | ||
752 | { | ||
753 | unsigned long fck, lck; | ||
754 | |||
755 | *lck_div = 1; | ||
756 | pck = max(1, pck); | ||
757 | fck = clk_get_rate(dispc.dss1_fck); | ||
758 | lck = fck; | ||
759 | *pck_div = (lck + pck - 1) / pck; | ||
760 | if (is_tft) | ||
761 | *pck_div = max(2, *pck_div); | ||
762 | else | ||
763 | *pck_div = max(3, *pck_div); | ||
764 | if (*pck_div > 255) { | ||
765 | *pck_div = 255; | ||
766 | lck = pck * *pck_div; | ||
767 | *lck_div = fck / lck; | ||
768 | BUG_ON(*lck_div < 1); | ||
769 | if (*lck_div > 255) { | ||
770 | *lck_div = 255; | ||
771 | dev_warn(dispc.fbdev->dev, "pixclock %d kHz too low.\n", | ||
772 | pck / 1000); | ||
773 | } | ||
774 | } | ||
775 | } | ||
776 | |||
777 | static void set_lcd_tft_mode(int enable) | ||
778 | { | ||
779 | u32 mask; | ||
780 | |||
781 | mask = 1 << 3; | ||
782 | MOD_REG_FLD(DISPC_CONTROL, mask, enable ? mask : 0); | ||
783 | } | ||
784 | |||
785 | static void set_lcd_timings(void) | ||
786 | { | ||
787 | u32 l; | ||
788 | int lck_div, pck_div; | ||
789 | struct lcd_panel *panel = dispc.fbdev->panel; | ||
790 | int is_tft = panel->config & OMAP_LCDC_PANEL_TFT; | ||
791 | unsigned long fck; | ||
792 | |||
793 | l = dispc_read_reg(DISPC_TIMING_H); | ||
794 | l &= ~(FLD_MASK(0, 6) | FLD_MASK(8, 8) | FLD_MASK(20, 8)); | ||
795 | l |= ( max(1, (min(64, panel->hsw))) - 1 ) << 0; | ||
796 | l |= ( max(1, (min(256, panel->hfp))) - 1 ) << 8; | ||
797 | l |= ( max(1, (min(256, panel->hbp))) - 1 ) << 20; | ||
798 | dispc_write_reg(DISPC_TIMING_H, l); | ||
799 | |||
800 | l = dispc_read_reg(DISPC_TIMING_V); | ||
801 | l &= ~(FLD_MASK(0, 6) | FLD_MASK(8, 8) | FLD_MASK(20, 8)); | ||
802 | l |= ( max(1, (min(64, panel->vsw))) - 1 ) << 0; | ||
803 | l |= ( max(0, (min(255, panel->vfp))) - 0 ) << 8; | ||
804 | l |= ( max(0, (min(255, panel->vbp))) - 0 ) << 20; | ||
805 | dispc_write_reg(DISPC_TIMING_V, l); | ||
806 | |||
807 | l = dispc_read_reg(DISPC_POL_FREQ); | ||
808 | l &= ~FLD_MASK(12, 6); | ||
809 | l |= (panel->config & OMAP_LCDC_SIGNAL_MASK) << 12; | ||
810 | l |= panel->acb & 0xff; | ||
811 | dispc_write_reg(DISPC_POL_FREQ, l); | ||
812 | |||
813 | calc_ck_div(is_tft, panel->pixel_clock * 1000, &lck_div, &pck_div); | ||
814 | |||
815 | l = dispc_read_reg(DISPC_DIVISOR); | ||
816 | l &= ~(FLD_MASK(16, 8) | FLD_MASK(0, 8)); | ||
817 | l |= (lck_div << 16) | (pck_div << 0); | ||
818 | dispc_write_reg(DISPC_DIVISOR, l); | ||
819 | |||
820 | /* update panel info with the exact clock */ | ||
821 | fck = clk_get_rate(dispc.dss1_fck); | ||
822 | panel->pixel_clock = fck / lck_div / pck_div / 1000; | ||
823 | } | ||
824 | |||
825 | static void recalc_irq_mask(void) | ||
826 | { | ||
827 | int i; | ||
828 | unsigned long irq_mask = DISPC_IRQ_MASK_ERROR; | ||
829 | |||
830 | for (i = 0; i < MAX_IRQ_HANDLERS; i++) { | ||
831 | if (!dispc.irq_handlers[i].callback) | ||
832 | continue; | ||
833 | |||
834 | irq_mask |= dispc.irq_handlers[i].irq_mask; | ||
835 | } | ||
836 | |||
837 | enable_lcd_clocks(1); | ||
838 | MOD_REG_FLD(DISPC_IRQENABLE, 0x7fff, irq_mask); | ||
839 | enable_lcd_clocks(0); | ||
840 | } | ||
841 | |||
842 | int omap_dispc_request_irq(unsigned long irq_mask, void (*callback)(void *data), | ||
843 | void *data) | ||
844 | { | ||
845 | int i; | ||
846 | |||
847 | BUG_ON(callback == NULL); | ||
848 | |||
849 | for (i = 0; i < MAX_IRQ_HANDLERS; i++) { | ||
850 | if (dispc.irq_handlers[i].callback) | ||
851 | continue; | ||
852 | |||
853 | dispc.irq_handlers[i].irq_mask = irq_mask; | ||
854 | dispc.irq_handlers[i].callback = callback; | ||
855 | dispc.irq_handlers[i].data = data; | ||
856 | recalc_irq_mask(); | ||
857 | |||
858 | return 0; | ||
859 | } | ||
860 | |||
861 | return -EBUSY; | ||
862 | } | ||
863 | EXPORT_SYMBOL(omap_dispc_request_irq); | ||
864 | |||
865 | void omap_dispc_free_irq(unsigned long irq_mask, void (*callback)(void *data), | ||
866 | void *data) | ||
867 | { | ||
868 | int i; | ||
869 | |||
870 | for (i = 0; i < MAX_IRQ_HANDLERS; i++) { | ||
871 | if (dispc.irq_handlers[i].callback == callback && | ||
872 | dispc.irq_handlers[i].data == data) { | ||
873 | dispc.irq_handlers[i].irq_mask = 0; | ||
874 | dispc.irq_handlers[i].callback = NULL; | ||
875 | dispc.irq_handlers[i].data = NULL; | ||
876 | recalc_irq_mask(); | ||
877 | return; | ||
878 | } | ||
879 | } | ||
880 | |||
881 | BUG(); | ||
882 | } | ||
883 | EXPORT_SYMBOL(omap_dispc_free_irq); | ||
884 | |||
885 | static irqreturn_t omap_dispc_irq_handler(int irq, void *dev) | ||
886 | { | ||
887 | u32 stat; | ||
888 | int i = 0; | ||
889 | |||
890 | enable_lcd_clocks(1); | ||
891 | |||
892 | stat = dispc_read_reg(DISPC_IRQSTATUS); | ||
893 | if (stat & DISPC_IRQ_FRAMEMASK) | ||
894 | complete(&dispc.frame_done); | ||
895 | |||
896 | if (stat & DISPC_IRQ_MASK_ERROR) { | ||
897 | if (printk_ratelimit()) { | ||
898 | dev_err(dispc.fbdev->dev, "irq error status %04x\n", | ||
899 | stat & 0x7fff); | ||
900 | } | ||
901 | } | ||
902 | |||
903 | for (i = 0; i < MAX_IRQ_HANDLERS; i++) { | ||
904 | if (unlikely(dispc.irq_handlers[i].callback && | ||
905 | (stat & dispc.irq_handlers[i].irq_mask))) | ||
906 | dispc.irq_handlers[i].callback( | ||
907 | dispc.irq_handlers[i].data); | ||
908 | } | ||
909 | |||
910 | dispc_write_reg(DISPC_IRQSTATUS, stat); | ||
911 | |||
912 | enable_lcd_clocks(0); | ||
913 | |||
914 | return IRQ_HANDLED; | ||
915 | } | ||
916 | |||
917 | static int get_dss_clocks(void) | ||
918 | { | ||
919 | dispc.dss_ick = clk_get(&dispc.fbdev->dssdev->dev, "ick"); | ||
920 | if (IS_ERR(dispc.dss_ick)) { | ||
921 | dev_err(dispc.fbdev->dev, "can't get ick\n"); | ||
922 | return PTR_ERR(dispc.dss_ick); | ||
923 | } | ||
924 | |||
925 | dispc.dss1_fck = clk_get(&dispc.fbdev->dssdev->dev, "fck"); | ||
926 | if (IS_ERR(dispc.dss1_fck)) { | ||
927 | dev_err(dispc.fbdev->dev, "can't get dss1_fck\n"); | ||
928 | clk_put(dispc.dss_ick); | ||
929 | return PTR_ERR(dispc.dss1_fck); | ||
930 | } | ||
931 | |||
932 | dispc.dss_54m_fck = clk_get(&dispc.fbdev->dssdev->dev, "tv_clk"); | ||
933 | if (IS_ERR(dispc.dss_54m_fck)) { | ||
934 | dev_err(dispc.fbdev->dev, "can't get tv_fck\n"); | ||
935 | clk_put(dispc.dss_ick); | ||
936 | clk_put(dispc.dss1_fck); | ||
937 | return PTR_ERR(dispc.dss_54m_fck); | ||
938 | } | ||
939 | |||
940 | return 0; | ||
941 | } | ||
942 | |||
943 | static void put_dss_clocks(void) | ||
944 | { | ||
945 | clk_put(dispc.dss_54m_fck); | ||
946 | clk_put(dispc.dss1_fck); | ||
947 | clk_put(dispc.dss_ick); | ||
948 | } | ||
949 | |||
950 | static void enable_lcd_clocks(int enable) | ||
951 | { | ||
952 | if (enable) { | ||
953 | clk_enable(dispc.dss_ick); | ||
954 | clk_enable(dispc.dss1_fck); | ||
955 | } else { | ||
956 | clk_disable(dispc.dss1_fck); | ||
957 | clk_disable(dispc.dss_ick); | ||
958 | } | ||
959 | } | ||
960 | |||
961 | static void enable_digit_clocks(int enable) | ||
962 | { | ||
963 | if (enable) | ||
964 | clk_enable(dispc.dss_54m_fck); | ||
965 | else | ||
966 | clk_disable(dispc.dss_54m_fck); | ||
967 | } | ||
968 | |||
969 | static void omap_dispc_suspend(void) | ||
970 | { | ||
971 | if (dispc.update_mode == OMAPFB_AUTO_UPDATE) { | ||
972 | init_completion(&dispc.frame_done); | ||
973 | omap_dispc_enable_lcd_out(0); | ||
974 | if (!wait_for_completion_timeout(&dispc.frame_done, | ||
975 | msecs_to_jiffies(500))) { | ||
976 | dev_err(dispc.fbdev->dev, | ||
977 | "timeout waiting for FRAME DONE\n"); | ||
978 | } | ||
979 | enable_lcd_clocks(0); | ||
980 | } | ||
981 | } | ||
982 | |||
983 | static void omap_dispc_resume(void) | ||
984 | { | ||
985 | if (dispc.update_mode == OMAPFB_AUTO_UPDATE) { | ||
986 | enable_lcd_clocks(1); | ||
987 | if (!dispc.ext_mode) { | ||
988 | set_lcd_timings(); | ||
989 | load_palette(); | ||
990 | } | ||
991 | omap_dispc_enable_lcd_out(1); | ||
992 | } | ||
993 | } | ||
994 | |||
995 | |||
996 | static int omap_dispc_update_window(struct fb_info *fbi, | ||
997 | struct omapfb_update_window *win, | ||
998 | void (*complete_callback)(void *arg), | ||
999 | void *complete_callback_data) | ||
1000 | { | ||
1001 | return dispc.update_mode == OMAPFB_UPDATE_DISABLED ? -ENODEV : 0; | ||
1002 | } | ||
1003 | |||
1004 | static int mmap_kern(struct omapfb_mem_region *region) | ||
1005 | { | ||
1006 | struct vm_struct *kvma; | ||
1007 | struct vm_area_struct vma; | ||
1008 | pgprot_t pgprot; | ||
1009 | unsigned long vaddr; | ||
1010 | |||
1011 | kvma = get_vm_area(region->size, VM_IOREMAP); | ||
1012 | if (kvma == NULL) { | ||
1013 | dev_err(dispc.fbdev->dev, "can't get kernel vm area\n"); | ||
1014 | return -ENOMEM; | ||
1015 | } | ||
1016 | vma.vm_mm = &init_mm; | ||
1017 | |||
1018 | vaddr = (unsigned long)kvma->addr; | ||
1019 | |||
1020 | pgprot = pgprot_writecombine(pgprot_kernel); | ||
1021 | vma.vm_start = vaddr; | ||
1022 | vma.vm_end = vaddr + region->size; | ||
1023 | if (io_remap_pfn_range(&vma, vaddr, region->paddr >> PAGE_SHIFT, | ||
1024 | region->size, pgprot) < 0) { | ||
1025 | dev_err(dispc.fbdev->dev, "kernel mmap for FBMEM failed\n"); | ||
1026 | return -EAGAIN; | ||
1027 | } | ||
1028 | region->vaddr = (void *)vaddr; | ||
1029 | |||
1030 | return 0; | ||
1031 | } | ||
1032 | |||
1033 | static void mmap_user_open(struct vm_area_struct *vma) | ||
1034 | { | ||
1035 | int plane = (int)vma->vm_private_data; | ||
1036 | |||
1037 | atomic_inc(&dispc.map_count[plane]); | ||
1038 | } | ||
1039 | |||
1040 | static void mmap_user_close(struct vm_area_struct *vma) | ||
1041 | { | ||
1042 | int plane = (int)vma->vm_private_data; | ||
1043 | |||
1044 | atomic_dec(&dispc.map_count[plane]); | ||
1045 | } | ||
1046 | |||
1047 | static const struct vm_operations_struct mmap_user_ops = { | ||
1048 | .open = mmap_user_open, | ||
1049 | .close = mmap_user_close, | ||
1050 | }; | ||
1051 | |||
1052 | static int omap_dispc_mmap_user(struct fb_info *info, | ||
1053 | struct vm_area_struct *vma) | ||
1054 | { | ||
1055 | struct omapfb_plane_struct *plane = info->par; | ||
1056 | unsigned long off; | ||
1057 | unsigned long start; | ||
1058 | u32 len; | ||
1059 | |||
1060 | if (vma->vm_end - vma->vm_start == 0) | ||
1061 | return 0; | ||
1062 | if (vma->vm_pgoff > (~0UL >> PAGE_SHIFT)) | ||
1063 | return -EINVAL; | ||
1064 | off = vma->vm_pgoff << PAGE_SHIFT; | ||
1065 | |||
1066 | start = info->fix.smem_start; | ||
1067 | len = info->fix.smem_len; | ||
1068 | if (off >= len) | ||
1069 | return -EINVAL; | ||
1070 | if ((vma->vm_end - vma->vm_start + off) > len) | ||
1071 | return -EINVAL; | ||
1072 | off += start; | ||
1073 | vma->vm_pgoff = off >> PAGE_SHIFT; | ||
1074 | vma->vm_flags |= VM_IO | VM_RESERVED; | ||
1075 | vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot); | ||
1076 | vma->vm_ops = &mmap_user_ops; | ||
1077 | vma->vm_private_data = (void *)plane->idx; | ||
1078 | if (io_remap_pfn_range(vma, vma->vm_start, off >> PAGE_SHIFT, | ||
1079 | vma->vm_end - vma->vm_start, vma->vm_page_prot)) | ||
1080 | return -EAGAIN; | ||
1081 | /* vm_ops.open won't be called for mmap itself. */ | ||
1082 | atomic_inc(&dispc.map_count[plane->idx]); | ||
1083 | return 0; | ||
1084 | } | ||
1085 | |||
1086 | static void unmap_kern(struct omapfb_mem_region *region) | ||
1087 | { | ||
1088 | vunmap(region->vaddr); | ||
1089 | } | ||
1090 | |||
1091 | static int alloc_palette_ram(void) | ||
1092 | { | ||
1093 | dispc.palette_vaddr = dma_alloc_writecombine(dispc.fbdev->dev, | ||
1094 | MAX_PALETTE_SIZE, &dispc.palette_paddr, GFP_KERNEL); | ||
1095 | if (dispc.palette_vaddr == NULL) { | ||
1096 | dev_err(dispc.fbdev->dev, "failed to alloc palette memory\n"); | ||
1097 | return -ENOMEM; | ||
1098 | } | ||
1099 | |||
1100 | return 0; | ||
1101 | } | ||
1102 | |||
1103 | static void free_palette_ram(void) | ||
1104 | { | ||
1105 | dma_free_writecombine(dispc.fbdev->dev, MAX_PALETTE_SIZE, | ||
1106 | dispc.palette_vaddr, dispc.palette_paddr); | ||
1107 | } | ||
1108 | |||
1109 | static int alloc_fbmem(struct omapfb_mem_region *region) | ||
1110 | { | ||
1111 | region->vaddr = dma_alloc_writecombine(dispc.fbdev->dev, | ||
1112 | region->size, ®ion->paddr, GFP_KERNEL); | ||
1113 | |||
1114 | if (region->vaddr == NULL) { | ||
1115 | dev_err(dispc.fbdev->dev, "unable to allocate FB DMA memory\n"); | ||
1116 | return -ENOMEM; | ||
1117 | } | ||
1118 | |||
1119 | return 0; | ||
1120 | } | ||
1121 | |||
1122 | static void free_fbmem(struct omapfb_mem_region *region) | ||
1123 | { | ||
1124 | dma_free_writecombine(dispc.fbdev->dev, region->size, | ||
1125 | region->vaddr, region->paddr); | ||
1126 | } | ||
1127 | |||
1128 | static struct resmap *init_resmap(unsigned long start, size_t size) | ||
1129 | { | ||
1130 | unsigned page_cnt; | ||
1131 | struct resmap *res_map; | ||
1132 | |||
1133 | page_cnt = PAGE_ALIGN(size) / PAGE_SIZE; | ||
1134 | res_map = | ||
1135 | kzalloc(sizeof(struct resmap) + RESMAP_SIZE(page_cnt), GFP_KERNEL); | ||
1136 | if (res_map == NULL) | ||
1137 | return NULL; | ||
1138 | res_map->start = start; | ||
1139 | res_map->page_cnt = page_cnt; | ||
1140 | res_map->map = (unsigned long *)(res_map + 1); | ||
1141 | return res_map; | ||
1142 | } | ||
1143 | |||
1144 | static void cleanup_resmap(struct resmap *res_map) | ||
1145 | { | ||
1146 | kfree(res_map); | ||
1147 | } | ||
1148 | |||
1149 | static inline int resmap_mem_type(unsigned long start) | ||
1150 | { | ||
1151 | if (start >= OMAP2_SRAM_START && | ||
1152 | start < OMAP2_SRAM_START + OMAP2_SRAM_SIZE) | ||
1153 | return OMAPFB_MEMTYPE_SRAM; | ||
1154 | else | ||
1155 | return OMAPFB_MEMTYPE_SDRAM; | ||
1156 | } | ||
1157 | |||
1158 | static inline int resmap_page_reserved(struct resmap *res_map, unsigned page_nr) | ||
1159 | { | ||
1160 | return *RESMAP_PTR(res_map, page_nr) & RESMAP_MASK(page_nr) ? 1 : 0; | ||
1161 | } | ||
1162 | |||
1163 | static inline void resmap_reserve_page(struct resmap *res_map, unsigned page_nr) | ||
1164 | { | ||
1165 | BUG_ON(resmap_page_reserved(res_map, page_nr)); | ||
1166 | *RESMAP_PTR(res_map, page_nr) |= RESMAP_MASK(page_nr); | ||
1167 | } | ||
1168 | |||
1169 | static inline void resmap_free_page(struct resmap *res_map, unsigned page_nr) | ||
1170 | { | ||
1171 | BUG_ON(!resmap_page_reserved(res_map, page_nr)); | ||
1172 | *RESMAP_PTR(res_map, page_nr) &= ~RESMAP_MASK(page_nr); | ||
1173 | } | ||
1174 | |||
1175 | static void resmap_reserve_region(unsigned long start, size_t size) | ||
1176 | { | ||
1177 | |||
1178 | struct resmap *res_map; | ||
1179 | unsigned start_page; | ||
1180 | unsigned end_page; | ||
1181 | int mtype; | ||
1182 | unsigned i; | ||
1183 | |||
1184 | mtype = resmap_mem_type(start); | ||
1185 | res_map = dispc.res_map[mtype]; | ||
1186 | dev_dbg(dispc.fbdev->dev, "reserve mem type %d start %08lx size %d\n", | ||
1187 | mtype, start, size); | ||
1188 | start_page = (start - res_map->start) / PAGE_SIZE; | ||
1189 | end_page = start_page + PAGE_ALIGN(size) / PAGE_SIZE; | ||
1190 | for (i = start_page; i < end_page; i++) | ||
1191 | resmap_reserve_page(res_map, i); | ||
1192 | } | ||
1193 | |||
1194 | static void resmap_free_region(unsigned long start, size_t size) | ||
1195 | { | ||
1196 | struct resmap *res_map; | ||
1197 | unsigned start_page; | ||
1198 | unsigned end_page; | ||
1199 | unsigned i; | ||
1200 | int mtype; | ||
1201 | |||
1202 | mtype = resmap_mem_type(start); | ||
1203 | res_map = dispc.res_map[mtype]; | ||
1204 | dev_dbg(dispc.fbdev->dev, "free mem type %d start %08lx size %d\n", | ||
1205 | mtype, start, size); | ||
1206 | start_page = (start - res_map->start) / PAGE_SIZE; | ||
1207 | end_page = start_page + PAGE_ALIGN(size) / PAGE_SIZE; | ||
1208 | for (i = start_page; i < end_page; i++) | ||
1209 | resmap_free_page(res_map, i); | ||
1210 | } | ||
1211 | |||
1212 | static unsigned long resmap_alloc_region(int mtype, size_t size) | ||
1213 | { | ||
1214 | unsigned i; | ||
1215 | unsigned total; | ||
1216 | unsigned start_page; | ||
1217 | unsigned long start; | ||
1218 | struct resmap *res_map = dispc.res_map[mtype]; | ||
1219 | |||
1220 | BUG_ON(mtype >= DISPC_MEMTYPE_NUM || res_map == NULL || !size); | ||
1221 | |||
1222 | size = PAGE_ALIGN(size) / PAGE_SIZE; | ||
1223 | start_page = 0; | ||
1224 | total = 0; | ||
1225 | for (i = 0; i < res_map->page_cnt; i++) { | ||
1226 | if (resmap_page_reserved(res_map, i)) { | ||
1227 | start_page = i + 1; | ||
1228 | total = 0; | ||
1229 | } else if (++total == size) | ||
1230 | break; | ||
1231 | } | ||
1232 | if (total < size) | ||
1233 | return 0; | ||
1234 | |||
1235 | start = res_map->start + start_page * PAGE_SIZE; | ||
1236 | resmap_reserve_region(start, size * PAGE_SIZE); | ||
1237 | |||
1238 | return start; | ||
1239 | } | ||
1240 | |||
1241 | /* Note that this will only work for user mappings, we don't deal with | ||
1242 | * kernel mappings here, so fbcon will keep using the old region. | ||
1243 | */ | ||
1244 | static int omap_dispc_setup_mem(int plane, size_t size, int mem_type, | ||
1245 | unsigned long *paddr) | ||
1246 | { | ||
1247 | struct omapfb_mem_region *rg; | ||
1248 | unsigned long new_addr = 0; | ||
1249 | |||
1250 | if ((unsigned)plane > dispc.mem_desc.region_cnt) | ||
1251 | return -EINVAL; | ||
1252 | if (mem_type >= DISPC_MEMTYPE_NUM) | ||
1253 | return -EINVAL; | ||
1254 | if (dispc.res_map[mem_type] == NULL) | ||
1255 | return -ENOMEM; | ||
1256 | rg = &dispc.mem_desc.region[plane]; | ||
1257 | if (size == rg->size && mem_type == rg->type) | ||
1258 | return 0; | ||
1259 | if (atomic_read(&dispc.map_count[plane])) | ||
1260 | return -EBUSY; | ||
1261 | if (rg->size != 0) | ||
1262 | resmap_free_region(rg->paddr, rg->size); | ||
1263 | if (size != 0) { | ||
1264 | new_addr = resmap_alloc_region(mem_type, size); | ||
1265 | if (!new_addr) { | ||
1266 | /* Reallocate old region. */ | ||
1267 | resmap_reserve_region(rg->paddr, rg->size); | ||
1268 | return -ENOMEM; | ||
1269 | } | ||
1270 | } | ||
1271 | rg->paddr = new_addr; | ||
1272 | rg->size = size; | ||
1273 | rg->type = mem_type; | ||
1274 | |||
1275 | *paddr = new_addr; | ||
1276 | |||
1277 | return 0; | ||
1278 | } | ||
1279 | |||
1280 | static int setup_fbmem(struct omapfb_mem_desc *req_md) | ||
1281 | { | ||
1282 | struct omapfb_mem_region *rg; | ||
1283 | int i; | ||
1284 | int r; | ||
1285 | unsigned long mem_start[DISPC_MEMTYPE_NUM]; | ||
1286 | unsigned long mem_end[DISPC_MEMTYPE_NUM]; | ||
1287 | |||
1288 | if (!req_md->region_cnt) { | ||
1289 | dev_err(dispc.fbdev->dev, "no memory regions defined\n"); | ||
1290 | return -ENOENT; | ||
1291 | } | ||
1292 | |||
1293 | rg = &req_md->region[0]; | ||
1294 | memset(mem_start, 0xff, sizeof(mem_start)); | ||
1295 | memset(mem_end, 0, sizeof(mem_end)); | ||
1296 | |||
1297 | for (i = 0; i < req_md->region_cnt; i++, rg++) { | ||
1298 | int mtype; | ||
1299 | if (rg->paddr) { | ||
1300 | rg->alloc = 0; | ||
1301 | if (rg->vaddr == NULL) { | ||
1302 | rg->map = 1; | ||
1303 | if ((r = mmap_kern(rg)) < 0) | ||
1304 | return r; | ||
1305 | } | ||
1306 | } else { | ||
1307 | if (rg->type != OMAPFB_MEMTYPE_SDRAM) { | ||
1308 | dev_err(dispc.fbdev->dev, | ||
1309 | "unsupported memory type\n"); | ||
1310 | return -EINVAL; | ||
1311 | } | ||
1312 | rg->alloc = rg->map = 1; | ||
1313 | if ((r = alloc_fbmem(rg)) < 0) | ||
1314 | return r; | ||
1315 | } | ||
1316 | mtype = rg->type; | ||
1317 | |||
1318 | if (rg->paddr < mem_start[mtype]) | ||
1319 | mem_start[mtype] = rg->paddr; | ||
1320 | if (rg->paddr + rg->size > mem_end[mtype]) | ||
1321 | mem_end[mtype] = rg->paddr + rg->size; | ||
1322 | } | ||
1323 | |||
1324 | for (i = 0; i < DISPC_MEMTYPE_NUM; i++) { | ||
1325 | unsigned long start; | ||
1326 | size_t size; | ||
1327 | if (mem_end[i] == 0) | ||
1328 | continue; | ||
1329 | start = mem_start[i]; | ||
1330 | size = mem_end[i] - start; | ||
1331 | dispc.res_map[i] = init_resmap(start, size); | ||
1332 | r = -ENOMEM; | ||
1333 | if (dispc.res_map[i] == NULL) | ||
1334 | goto fail; | ||
1335 | /* Initial state is that everything is reserved. This | ||
1336 | * includes possible holes as well, which will never be | ||
1337 | * freed. | ||
1338 | */ | ||
1339 | resmap_reserve_region(start, size); | ||
1340 | } | ||
1341 | |||
1342 | dispc.mem_desc = *req_md; | ||
1343 | |||
1344 | return 0; | ||
1345 | fail: | ||
1346 | for (i = 0; i < DISPC_MEMTYPE_NUM; i++) { | ||
1347 | if (dispc.res_map[i] != NULL) | ||
1348 | cleanup_resmap(dispc.res_map[i]); | ||
1349 | } | ||
1350 | return r; | ||
1351 | } | ||
1352 | |||
1353 | static void cleanup_fbmem(void) | ||
1354 | { | ||
1355 | struct omapfb_mem_region *rg; | ||
1356 | int i; | ||
1357 | |||
1358 | for (i = 0; i < DISPC_MEMTYPE_NUM; i++) { | ||
1359 | if (dispc.res_map[i] != NULL) | ||
1360 | cleanup_resmap(dispc.res_map[i]); | ||
1361 | } | ||
1362 | rg = &dispc.mem_desc.region[0]; | ||
1363 | for (i = 0; i < dispc.mem_desc.region_cnt; i++, rg++) { | ||
1364 | if (rg->alloc) | ||
1365 | free_fbmem(rg); | ||
1366 | else { | ||
1367 | if (rg->map) | ||
1368 | unmap_kern(rg); | ||
1369 | } | ||
1370 | } | ||
1371 | } | ||
1372 | |||
1373 | static int omap_dispc_init(struct omapfb_device *fbdev, int ext_mode, | ||
1374 | struct omapfb_mem_desc *req_vram) | ||
1375 | { | ||
1376 | int r; | ||
1377 | u32 l; | ||
1378 | struct lcd_panel *panel = fbdev->panel; | ||
1379 | void __iomem *ram_fw_base; | ||
1380 | int tmo = 10000; | ||
1381 | int skip_init = 0; | ||
1382 | int i; | ||
1383 | |||
1384 | memset(&dispc, 0, sizeof(dispc)); | ||
1385 | |||
1386 | dispc.base = ioremap(DISPC_BASE, SZ_1K); | ||
1387 | if (!dispc.base) { | ||
1388 | dev_err(fbdev->dev, "can't ioremap DISPC\n"); | ||
1389 | return -ENOMEM; | ||
1390 | } | ||
1391 | |||
1392 | dispc.fbdev = fbdev; | ||
1393 | dispc.ext_mode = ext_mode; | ||
1394 | |||
1395 | init_completion(&dispc.frame_done); | ||
1396 | |||
1397 | if ((r = get_dss_clocks()) < 0) | ||
1398 | goto fail0; | ||
1399 | |||
1400 | enable_lcd_clocks(1); | ||
1401 | |||
1402 | #ifdef CONFIG_FB_OMAP_BOOTLOADER_INIT | ||
1403 | l = dispc_read_reg(DISPC_CONTROL); | ||
1404 | /* LCD enabled ? */ | ||
1405 | if (l & 1) { | ||
1406 | pr_info("omapfb: skipping hardware initialization\n"); | ||
1407 | skip_init = 1; | ||
1408 | } | ||
1409 | #endif | ||
1410 | |||
1411 | if (!skip_init) { | ||
1412 | /* Reset monitoring works only w/ the 54M clk */ | ||
1413 | enable_digit_clocks(1); | ||
1414 | |||
1415 | /* Soft reset */ | ||
1416 | MOD_REG_FLD(DISPC_SYSCONFIG, 1 << 1, 1 << 1); | ||
1417 | |||
1418 | while (!(dispc_read_reg(DISPC_SYSSTATUS) & 1)) { | ||
1419 | if (!--tmo) { | ||
1420 | dev_err(dispc.fbdev->dev, "soft reset failed\n"); | ||
1421 | r = -ENODEV; | ||
1422 | enable_digit_clocks(0); | ||
1423 | goto fail1; | ||
1424 | } | ||
1425 | } | ||
1426 | |||
1427 | enable_digit_clocks(0); | ||
1428 | } | ||
1429 | |||
1430 | /* Enable smart standby/idle, autoidle and wakeup */ | ||
1431 | l = dispc_read_reg(DISPC_SYSCONFIG); | ||
1432 | l &= ~((3 << 12) | (3 << 3)); | ||
1433 | l |= (2 << 12) | (2 << 3) | (1 << 2) | (1 << 0); | ||
1434 | dispc_write_reg(DISPC_SYSCONFIG, l); | ||
1435 | omap_writel(1 << 0, DSS_BASE + DSS_SYSCONFIG); | ||
1436 | |||
1437 | /* Set functional clock autogating */ | ||
1438 | l = dispc_read_reg(DISPC_CONFIG); | ||
1439 | l |= 1 << 9; | ||
1440 | dispc_write_reg(DISPC_CONFIG, l); | ||
1441 | |||
1442 | l = dispc_read_reg(DISPC_IRQSTATUS); | ||
1443 | dispc_write_reg(DISPC_IRQSTATUS, l); | ||
1444 | |||
1445 | recalc_irq_mask(); | ||
1446 | |||
1447 | if ((r = request_irq(INT_24XX_DSS_IRQ, omap_dispc_irq_handler, | ||
1448 | 0, MODULE_NAME, fbdev)) < 0) { | ||
1449 | dev_err(dispc.fbdev->dev, "can't get DSS IRQ\n"); | ||
1450 | goto fail1; | ||
1451 | } | ||
1452 | |||
1453 | /* L3 firewall setting: enable access to OCM RAM */ | ||
1454 | ram_fw_base = ioremap(0x68005000, SZ_1K); | ||
1455 | if (!ram_fw_base) { | ||
1456 | dev_err(dispc.fbdev->dev, "Cannot ioremap to enable OCM RAM\n"); | ||
1457 | goto fail1; | ||
1458 | } | ||
1459 | __raw_writel(0x402000b0, ram_fw_base + 0xa0); | ||
1460 | iounmap(ram_fw_base); | ||
1461 | |||
1462 | if ((r = alloc_palette_ram()) < 0) | ||
1463 | goto fail2; | ||
1464 | |||
1465 | if ((r = setup_fbmem(req_vram)) < 0) | ||
1466 | goto fail3; | ||
1467 | |||
1468 | if (!skip_init) { | ||
1469 | for (i = 0; i < dispc.mem_desc.region_cnt; i++) { | ||
1470 | memset(dispc.mem_desc.region[i].vaddr, 0, | ||
1471 | dispc.mem_desc.region[i].size); | ||
1472 | } | ||
1473 | |||
1474 | /* Set logic clock to fck, pixel clock to fck/2 for now */ | ||
1475 | MOD_REG_FLD(DISPC_DIVISOR, FLD_MASK(16, 8), 1 << 16); | ||
1476 | MOD_REG_FLD(DISPC_DIVISOR, FLD_MASK(0, 8), 2 << 0); | ||
1477 | |||
1478 | setup_plane_fifo(0, ext_mode); | ||
1479 | setup_plane_fifo(1, ext_mode); | ||
1480 | setup_plane_fifo(2, ext_mode); | ||
1481 | |||
1482 | setup_color_conv_coef(); | ||
1483 | |||
1484 | set_lcd_tft_mode(panel->config & OMAP_LCDC_PANEL_TFT); | ||
1485 | set_load_mode(DISPC_LOAD_FRAME_ONLY); | ||
1486 | |||
1487 | if (!ext_mode) { | ||
1488 | set_lcd_data_lines(panel->data_lines); | ||
1489 | omap_dispc_set_lcd_size(panel->x_res, panel->y_res); | ||
1490 | set_lcd_timings(); | ||
1491 | } else | ||
1492 | set_lcd_data_lines(panel->bpp); | ||
1493 | enable_rfbi_mode(ext_mode); | ||
1494 | } | ||
1495 | |||
1496 | l = dispc_read_reg(DISPC_REVISION); | ||
1497 | pr_info("omapfb: DISPC version %d.%d initialized\n", | ||
1498 | l >> 4 & 0x0f, l & 0x0f); | ||
1499 | enable_lcd_clocks(0); | ||
1500 | |||
1501 | return 0; | ||
1502 | fail3: | ||
1503 | free_palette_ram(); | ||
1504 | fail2: | ||
1505 | free_irq(INT_24XX_DSS_IRQ, fbdev); | ||
1506 | fail1: | ||
1507 | enable_lcd_clocks(0); | ||
1508 | put_dss_clocks(); | ||
1509 | fail0: | ||
1510 | iounmap(dispc.base); | ||
1511 | return r; | ||
1512 | } | ||
1513 | |||
1514 | static void omap_dispc_cleanup(void) | ||
1515 | { | ||
1516 | int i; | ||
1517 | |||
1518 | omap_dispc_set_update_mode(OMAPFB_UPDATE_DISABLED); | ||
1519 | /* This will also disable clocks that are on */ | ||
1520 | for (i = 0; i < dispc.mem_desc.region_cnt; i++) | ||
1521 | omap_dispc_enable_plane(i, 0); | ||
1522 | cleanup_fbmem(); | ||
1523 | free_palette_ram(); | ||
1524 | free_irq(INT_24XX_DSS_IRQ, dispc.fbdev); | ||
1525 | put_dss_clocks(); | ||
1526 | iounmap(dispc.base); | ||
1527 | } | ||
1528 | |||
1529 | const struct lcd_ctrl omap2_int_ctrl = { | ||
1530 | .name = "internal", | ||
1531 | .init = omap_dispc_init, | ||
1532 | .cleanup = omap_dispc_cleanup, | ||
1533 | .get_caps = omap_dispc_get_caps, | ||
1534 | .set_update_mode = omap_dispc_set_update_mode, | ||
1535 | .get_update_mode = omap_dispc_get_update_mode, | ||
1536 | .update_window = omap_dispc_update_window, | ||
1537 | .suspend = omap_dispc_suspend, | ||
1538 | .resume = omap_dispc_resume, | ||
1539 | .setup_plane = omap_dispc_setup_plane, | ||
1540 | .setup_mem = omap_dispc_setup_mem, | ||
1541 | .set_scale = omap_dispc_set_scale, | ||
1542 | .enable_plane = omap_dispc_enable_plane, | ||
1543 | .set_color_key = omap_dispc_set_color_key, | ||
1544 | .get_color_key = omap_dispc_get_color_key, | ||
1545 | .mmap = omap_dispc_mmap_user, | ||
1546 | }; | ||
diff --git a/drivers/video/omap/dispc.h b/drivers/video/omap/dispc.h new file mode 100644 index 00000000000..c15ea77f060 --- /dev/null +++ b/drivers/video/omap/dispc.h | |||
@@ -0,0 +1,46 @@ | |||
1 | #ifndef _DISPC_H | ||
2 | #define _DISPC_H | ||
3 | |||
4 | #include <linux/interrupt.h> | ||
5 | |||
6 | #define DISPC_PLANE_GFX 0 | ||
7 | #define DISPC_PLANE_VID1 1 | ||
8 | #define DISPC_PLANE_VID2 2 | ||
9 | |||
10 | #define DISPC_RGB_1_BPP 0x00 | ||
11 | #define DISPC_RGB_2_BPP 0x01 | ||
12 | #define DISPC_RGB_4_BPP 0x02 | ||
13 | #define DISPC_RGB_8_BPP 0x03 | ||
14 | #define DISPC_RGB_12_BPP 0x04 | ||
15 | #define DISPC_RGB_16_BPP 0x06 | ||
16 | #define DISPC_RGB_24_BPP 0x08 | ||
17 | #define DISPC_RGB_24_BPP_UNPACK_32 0x09 | ||
18 | #define DISPC_YUV2_422 0x0a | ||
19 | #define DISPC_UYVY_422 0x0b | ||
20 | |||
21 | #define DISPC_BURST_4x32 0 | ||
22 | #define DISPC_BURST_8x32 1 | ||
23 | #define DISPC_BURST_16x32 2 | ||
24 | |||
25 | #define DISPC_LOAD_CLUT_AND_FRAME 0x00 | ||
26 | #define DISPC_LOAD_CLUT_ONLY 0x01 | ||
27 | #define DISPC_LOAD_FRAME_ONLY 0x02 | ||
28 | #define DISPC_LOAD_CLUT_ONCE_FRAME 0x03 | ||
29 | |||
30 | #define DISPC_TFT_DATA_LINES_12 0 | ||
31 | #define DISPC_TFT_DATA_LINES_16 1 | ||
32 | #define DISPC_TFT_DATA_LINES_18 2 | ||
33 | #define DISPC_TFT_DATA_LINES_24 3 | ||
34 | |||
35 | extern void omap_dispc_set_lcd_size(int width, int height); | ||
36 | |||
37 | extern void omap_dispc_enable_lcd_out(int enable); | ||
38 | extern void omap_dispc_enable_digit_out(int enable); | ||
39 | |||
40 | extern int omap_dispc_request_irq(unsigned long irq_mask, | ||
41 | void (*callback)(void *data), void *data); | ||
42 | extern void omap_dispc_free_irq(unsigned long irq_mask, | ||
43 | void (*callback)(void *data), void *data); | ||
44 | |||
45 | extern const struct lcd_ctrl omap2_int_ctrl; | ||
46 | #endif | ||
diff --git a/drivers/video/omap/lcd_2430sdp.c b/drivers/video/omap/lcd_2430sdp.c new file mode 100644 index 00000000000..e3eccc9af78 --- /dev/null +++ b/drivers/video/omap/lcd_2430sdp.c | |||
@@ -0,0 +1,203 @@ | |||
1 | /* | ||
2 | * LCD panel support for the TI 2430SDP board | ||
3 | * | ||
4 | * Copyright (C) 2007 MontaVista | ||
5 | * Author: Hunyue Yau <hyau@mvista.com> | ||
6 | * | ||
7 | * Derived from drivers/video/omap/lcd-apollon.c | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License as published by the | ||
11 | * Free Software Foundation; either version 2 of the License, or (at your | ||
12 | * option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, but | ||
15 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
17 | * General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License along | ||
20 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
21 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
22 | */ | ||
23 | |||
24 | #include <linux/module.h> | ||
25 | #include <linux/platform_device.h> | ||
26 | #include <linux/delay.h> | ||
27 | #include <linux/gpio.h> | ||
28 | #include <linux/i2c/twl.h> | ||
29 | |||
30 | #include <plat/mux.h> | ||
31 | #include <asm/mach-types.h> | ||
32 | |||
33 | #include "omapfb.h" | ||
34 | |||
35 | #define SDP2430_LCD_PANEL_BACKLIGHT_GPIO 91 | ||
36 | #define SDP2430_LCD_PANEL_ENABLE_GPIO 154 | ||
37 | #define SDP3430_LCD_PANEL_BACKLIGHT_GPIO 24 | ||
38 | #define SDP3430_LCD_PANEL_ENABLE_GPIO 28 | ||
39 | |||
40 | static unsigned backlight_gpio; | ||
41 | static unsigned enable_gpio; | ||
42 | |||
43 | #define LCD_PIXCLOCK_MAX 5400 /* freq 5.4 MHz */ | ||
44 | #define PM_RECEIVER TWL4030_MODULE_PM_RECEIVER | ||
45 | #define ENABLE_VAUX2_DEDICATED 0x09 | ||
46 | #define ENABLE_VAUX2_DEV_GRP 0x20 | ||
47 | #define ENABLE_VAUX3_DEDICATED 0x03 | ||
48 | #define ENABLE_VAUX3_DEV_GRP 0x20 | ||
49 | |||
50 | #define ENABLE_VPLL2_DEDICATED 0x05 | ||
51 | #define ENABLE_VPLL2_DEV_GRP 0xE0 | ||
52 | #define TWL4030_VPLL2_DEV_GRP 0x33 | ||
53 | #define TWL4030_VPLL2_DEDICATED 0x36 | ||
54 | |||
55 | #define t2_out(c, r, v) twl_i2c_write_u8(c, r, v) | ||
56 | |||
57 | |||
58 | static int sdp2430_panel_init(struct lcd_panel *panel, | ||
59 | struct omapfb_device *fbdev) | ||
60 | { | ||
61 | if (machine_is_omap_3430sdp()) { | ||
62 | enable_gpio = SDP3430_LCD_PANEL_ENABLE_GPIO; | ||
63 | backlight_gpio = SDP3430_LCD_PANEL_BACKLIGHT_GPIO; | ||
64 | } else { | ||
65 | enable_gpio = SDP2430_LCD_PANEL_ENABLE_GPIO; | ||
66 | backlight_gpio = SDP2430_LCD_PANEL_BACKLIGHT_GPIO; | ||
67 | } | ||
68 | |||
69 | gpio_request(enable_gpio, "LCD enable"); /* LCD panel */ | ||
70 | gpio_request(backlight_gpio, "LCD bl"); /* LCD backlight */ | ||
71 | gpio_direction_output(enable_gpio, 0); | ||
72 | gpio_direction_output(backlight_gpio, 0); | ||
73 | |||
74 | return 0; | ||
75 | } | ||
76 | |||
77 | static void sdp2430_panel_cleanup(struct lcd_panel *panel) | ||
78 | { | ||
79 | gpio_free(backlight_gpio); | ||
80 | gpio_free(enable_gpio); | ||
81 | } | ||
82 | |||
83 | static int sdp2430_panel_enable(struct lcd_panel *panel) | ||
84 | { | ||
85 | u8 ded_val, ded_reg; | ||
86 | u8 grp_val, grp_reg; | ||
87 | |||
88 | if (machine_is_omap_3430sdp()) { | ||
89 | ded_reg = TWL4030_VAUX3_DEDICATED; | ||
90 | ded_val = ENABLE_VAUX3_DEDICATED; | ||
91 | grp_reg = TWL4030_VAUX3_DEV_GRP; | ||
92 | grp_val = ENABLE_VAUX3_DEV_GRP; | ||
93 | |||
94 | if (omap_rev() > OMAP3430_REV_ES1_0) { | ||
95 | t2_out(PM_RECEIVER, ENABLE_VPLL2_DEDICATED, | ||
96 | TWL4030_VPLL2_DEDICATED); | ||
97 | t2_out(PM_RECEIVER, ENABLE_VPLL2_DEV_GRP, | ||
98 | TWL4030_VPLL2_DEV_GRP); | ||
99 | } | ||
100 | } else { | ||
101 | ded_reg = TWL4030_VAUX2_DEDICATED; | ||
102 | ded_val = ENABLE_VAUX2_DEDICATED; | ||
103 | grp_reg = TWL4030_VAUX2_DEV_GRP; | ||
104 | grp_val = ENABLE_VAUX2_DEV_GRP; | ||
105 | } | ||
106 | |||
107 | gpio_set_value(enable_gpio, 1); | ||
108 | gpio_set_value(backlight_gpio, 1); | ||
109 | |||
110 | if (0 != t2_out(PM_RECEIVER, ded_val, ded_reg)) | ||
111 | return -EIO; | ||
112 | if (0 != t2_out(PM_RECEIVER, grp_val, grp_reg)) | ||
113 | return -EIO; | ||
114 | |||
115 | return 0; | ||
116 | } | ||
117 | |||
118 | static void sdp2430_panel_disable(struct lcd_panel *panel) | ||
119 | { | ||
120 | gpio_set_value(enable_gpio, 0); | ||
121 | gpio_set_value(backlight_gpio, 0); | ||
122 | if (omap_rev() > OMAP3430_REV_ES1_0) { | ||
123 | t2_out(PM_RECEIVER, 0x0, TWL4030_VPLL2_DEDICATED); | ||
124 | t2_out(PM_RECEIVER, 0x0, TWL4030_VPLL2_DEV_GRP); | ||
125 | msleep(4); | ||
126 | } | ||
127 | } | ||
128 | |||
129 | static unsigned long sdp2430_panel_get_caps(struct lcd_panel *panel) | ||
130 | { | ||
131 | return 0; | ||
132 | } | ||
133 | |||
134 | struct lcd_panel sdp2430_panel = { | ||
135 | .name = "sdp2430", | ||
136 | .config = OMAP_LCDC_PANEL_TFT | OMAP_LCDC_INV_VSYNC | | ||
137 | OMAP_LCDC_INV_HSYNC, | ||
138 | |||
139 | .bpp = 16, | ||
140 | .data_lines = 16, | ||
141 | .x_res = 240, | ||
142 | .y_res = 320, | ||
143 | .hsw = 3, /* hsync_len (4) - 1 */ | ||
144 | .hfp = 3, /* right_margin (4) - 1 */ | ||
145 | .hbp = 39, /* left_margin (40) - 1 */ | ||
146 | .vsw = 1, /* vsync_len (2) - 1 */ | ||
147 | .vfp = 2, /* lower_margin */ | ||
148 | .vbp = 7, /* upper_margin (8) - 1 */ | ||
149 | |||
150 | .pixel_clock = LCD_PIXCLOCK_MAX, | ||
151 | |||
152 | .init = sdp2430_panel_init, | ||
153 | .cleanup = sdp2430_panel_cleanup, | ||
154 | .enable = sdp2430_panel_enable, | ||
155 | .disable = sdp2430_panel_disable, | ||
156 | .get_caps = sdp2430_panel_get_caps, | ||
157 | }; | ||
158 | |||
159 | static int sdp2430_panel_probe(struct platform_device *pdev) | ||
160 | { | ||
161 | omapfb_register_panel(&sdp2430_panel); | ||
162 | return 0; | ||
163 | } | ||
164 | |||
165 | static int sdp2430_panel_remove(struct platform_device *pdev) | ||
166 | { | ||
167 | return 0; | ||
168 | } | ||
169 | |||
170 | static int sdp2430_panel_suspend(struct platform_device *pdev, | ||
171 | pm_message_t mesg) | ||
172 | { | ||
173 | return 0; | ||
174 | } | ||
175 | |||
176 | static int sdp2430_panel_resume(struct platform_device *pdev) | ||
177 | { | ||
178 | return 0; | ||
179 | } | ||
180 | |||
181 | struct platform_driver sdp2430_panel_driver = { | ||
182 | .probe = sdp2430_panel_probe, | ||
183 | .remove = sdp2430_panel_remove, | ||
184 | .suspend = sdp2430_panel_suspend, | ||
185 | .resume = sdp2430_panel_resume, | ||
186 | .driver = { | ||
187 | .name = "sdp2430_lcd", | ||
188 | .owner = THIS_MODULE, | ||
189 | }, | ||
190 | }; | ||
191 | |||
192 | static int __init sdp2430_panel_drv_init(void) | ||
193 | { | ||
194 | return platform_driver_register(&sdp2430_panel_driver); | ||
195 | } | ||
196 | |||
197 | static void __exit sdp2430_panel_drv_exit(void) | ||
198 | { | ||
199 | platform_driver_unregister(&sdp2430_panel_driver); | ||
200 | } | ||
201 | |||
202 | module_init(sdp2430_panel_drv_init); | ||
203 | module_exit(sdp2430_panel_drv_exit); | ||
diff --git a/drivers/video/omap/lcd_apollon.c b/drivers/video/omap/lcd_apollon.c new file mode 100644 index 00000000000..10459d8bd9a --- /dev/null +++ b/drivers/video/omap/lcd_apollon.c | |||
@@ -0,0 +1,136 @@ | |||
1 | /* | ||
2 | * LCD panel support for the Samsung OMAP2 Apollon board | ||
3 | * | ||
4 | * Copyright (C) 2005,2006 Samsung Electronics | ||
5 | * Author: Kyungmin Park <kyungmin.park@samsung.com> | ||
6 | * | ||
7 | * Derived from drivers/video/omap/lcd-h4.c | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License as published by the | ||
11 | * Free Software Foundation; either version 2 of the License, or (at your | ||
12 | * option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, but | ||
15 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
17 | * General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License along | ||
20 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
21 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
22 | */ | ||
23 | |||
24 | #include <linux/module.h> | ||
25 | #include <linux/platform_device.h> | ||
26 | |||
27 | #include <mach/gpio.h> | ||
28 | |||
29 | #include "omapfb.h" | ||
30 | |||
31 | /* #define USE_35INCH_LCD 1 */ | ||
32 | |||
33 | static int apollon_panel_init(struct lcd_panel *panel, | ||
34 | struct omapfb_device *fbdev) | ||
35 | { | ||
36 | return 0; | ||
37 | } | ||
38 | |||
39 | static void apollon_panel_cleanup(struct lcd_panel *panel) | ||
40 | { | ||
41 | } | ||
42 | |||
43 | static int apollon_panel_enable(struct lcd_panel *panel) | ||
44 | { | ||
45 | return 0; | ||
46 | } | ||
47 | |||
48 | static void apollon_panel_disable(struct lcd_panel *panel) | ||
49 | { | ||
50 | } | ||
51 | |||
52 | static unsigned long apollon_panel_get_caps(struct lcd_panel *panel) | ||
53 | { | ||
54 | return 0; | ||
55 | } | ||
56 | |||
57 | struct lcd_panel apollon_panel = { | ||
58 | .name = "apollon", | ||
59 | .config = OMAP_LCDC_PANEL_TFT | OMAP_LCDC_INV_VSYNC | | ||
60 | OMAP_LCDC_INV_HSYNC, | ||
61 | |||
62 | .bpp = 16, | ||
63 | .data_lines = 18, | ||
64 | #ifdef USE_35INCH_LCD | ||
65 | .x_res = 240, | ||
66 | .y_res = 320, | ||
67 | .hsw = 2, | ||
68 | .hfp = 3, | ||
69 | .hbp = 9, | ||
70 | .vsw = 4, | ||
71 | .vfp = 3, | ||
72 | .vbp = 5, | ||
73 | #else | ||
74 | .x_res = 480, | ||
75 | .y_res = 272, | ||
76 | .hsw = 41, | ||
77 | .hfp = 2, | ||
78 | .hbp = 2, | ||
79 | .vsw = 10, | ||
80 | .vfp = 2, | ||
81 | .vbp = 2, | ||
82 | #endif | ||
83 | .pixel_clock = 6250, | ||
84 | |||
85 | .init = apollon_panel_init, | ||
86 | .cleanup = apollon_panel_cleanup, | ||
87 | .enable = apollon_panel_enable, | ||
88 | .disable = apollon_panel_disable, | ||
89 | .get_caps = apollon_panel_get_caps, | ||
90 | }; | ||
91 | |||
92 | static int apollon_panel_probe(struct platform_device *pdev) | ||
93 | { | ||
94 | omapfb_register_panel(&apollon_panel); | ||
95 | return 0; | ||
96 | } | ||
97 | |||
98 | static int apollon_panel_remove(struct platform_device *pdev) | ||
99 | { | ||
100 | return 0; | ||
101 | } | ||
102 | |||
103 | static int apollon_panel_suspend(struct platform_device *pdev, | ||
104 | pm_message_t mesg) | ||
105 | { | ||
106 | return 0; | ||
107 | } | ||
108 | |||
109 | static int apollon_panel_resume(struct platform_device *pdev) | ||
110 | { | ||
111 | return 0; | ||
112 | } | ||
113 | |||
114 | struct platform_driver apollon_panel_driver = { | ||
115 | .probe = apollon_panel_probe, | ||
116 | .remove = apollon_panel_remove, | ||
117 | .suspend = apollon_panel_suspend, | ||
118 | .resume = apollon_panel_resume, | ||
119 | .driver = { | ||
120 | .name = "apollon_lcd", | ||
121 | .owner = THIS_MODULE, | ||
122 | }, | ||
123 | }; | ||
124 | |||
125 | static int __init apollon_panel_drv_init(void) | ||
126 | { | ||
127 | return platform_driver_register(&apollon_panel_driver); | ||
128 | } | ||
129 | |||
130 | static void __exit apollon_panel_drv_exit(void) | ||
131 | { | ||
132 | platform_driver_unregister(&apollon_panel_driver); | ||
133 | } | ||
134 | |||
135 | module_init(apollon_panel_drv_init); | ||
136 | module_exit(apollon_panel_drv_exit); | ||
diff --git a/drivers/video/omap/lcd_h4.c b/drivers/video/omap/lcd_h4.c new file mode 100644 index 00000000000..03a06a98275 --- /dev/null +++ b/drivers/video/omap/lcd_h4.c | |||
@@ -0,0 +1,117 @@ | |||
1 | /* | ||
2 | * LCD panel support for the TI OMAP H4 board | ||
3 | * | ||
4 | * Copyright (C) 2004 Nokia Corporation | ||
5 | * Author: Imre Deak <imre.deak@nokia.com> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License as published by the | ||
9 | * Free Software Foundation; either version 2 of the License, or (at your | ||
10 | * option) any later version. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, but | ||
13 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
15 | * General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License along | ||
18 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
19 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
20 | */ | ||
21 | |||
22 | #include <linux/module.h> | ||
23 | #include <linux/platform_device.h> | ||
24 | |||
25 | #include "omapfb.h" | ||
26 | |||
27 | static int h4_panel_init(struct lcd_panel *panel, struct omapfb_device *fbdev) | ||
28 | { | ||
29 | return 0; | ||
30 | } | ||
31 | |||
32 | static void h4_panel_cleanup(struct lcd_panel *panel) | ||
33 | { | ||
34 | } | ||
35 | |||
36 | static int h4_panel_enable(struct lcd_panel *panel) | ||
37 | { | ||
38 | return 0; | ||
39 | } | ||
40 | |||
41 | static void h4_panel_disable(struct lcd_panel *panel) | ||
42 | { | ||
43 | } | ||
44 | |||
45 | static unsigned long h4_panel_get_caps(struct lcd_panel *panel) | ||
46 | { | ||
47 | return 0; | ||
48 | } | ||
49 | |||
50 | static struct lcd_panel h4_panel = { | ||
51 | .name = "h4", | ||
52 | .config = OMAP_LCDC_PANEL_TFT, | ||
53 | |||
54 | .bpp = 16, | ||
55 | .data_lines = 16, | ||
56 | .x_res = 240, | ||
57 | .y_res = 320, | ||
58 | .pixel_clock = 6250, | ||
59 | .hsw = 15, | ||
60 | .hfp = 15, | ||
61 | .hbp = 60, | ||
62 | .vsw = 1, | ||
63 | .vfp = 1, | ||
64 | .vbp = 1, | ||
65 | |||
66 | .init = h4_panel_init, | ||
67 | .cleanup = h4_panel_cleanup, | ||
68 | .enable = h4_panel_enable, | ||
69 | .disable = h4_panel_disable, | ||
70 | .get_caps = h4_panel_get_caps, | ||
71 | }; | ||
72 | |||
73 | static int h4_panel_probe(struct platform_device *pdev) | ||
74 | { | ||
75 | omapfb_register_panel(&h4_panel); | ||
76 | return 0; | ||
77 | } | ||
78 | |||
79 | static int h4_panel_remove(struct platform_device *pdev) | ||
80 | { | ||
81 | return 0; | ||
82 | } | ||
83 | |||
84 | static int h4_panel_suspend(struct platform_device *pdev, pm_message_t mesg) | ||
85 | { | ||
86 | return 0; | ||
87 | } | ||
88 | |||
89 | static int h4_panel_resume(struct platform_device *pdev) | ||
90 | { | ||
91 | return 0; | ||
92 | } | ||
93 | |||
94 | static struct platform_driver h4_panel_driver = { | ||
95 | .probe = h4_panel_probe, | ||
96 | .remove = h4_panel_remove, | ||
97 | .suspend = h4_panel_suspend, | ||
98 | .resume = h4_panel_resume, | ||
99 | .driver = { | ||
100 | .name = "lcd_h4", | ||
101 | .owner = THIS_MODULE, | ||
102 | }, | ||
103 | }; | ||
104 | |||
105 | static int __init h4_panel_drv_init(void) | ||
106 | { | ||
107 | return platform_driver_register(&h4_panel_driver); | ||
108 | } | ||
109 | |||
110 | static void __exit h4_panel_drv_cleanup(void) | ||
111 | { | ||
112 | platform_driver_unregister(&h4_panel_driver); | ||
113 | } | ||
114 | |||
115 | module_init(h4_panel_drv_init); | ||
116 | module_exit(h4_panel_drv_cleanup); | ||
117 | |||
diff --git a/drivers/video/omap/lcd_ldp.c b/drivers/video/omap/lcd_ldp.c new file mode 100644 index 00000000000..0f5952cae85 --- /dev/null +++ b/drivers/video/omap/lcd_ldp.c | |||
@@ -0,0 +1,201 @@ | |||
1 | /* | ||
2 | * LCD panel support for the TI LDP board | ||
3 | * | ||
4 | * Copyright (C) 2007 WindRiver | ||
5 | * Author: Stanley Miao <stanley.miao@windriver.com> | ||
6 | * | ||
7 | * Derived from drivers/video/omap/lcd-2430sdp.c | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License as published by the | ||
11 | * Free Software Foundation; either version 2 of the License, or (at your | ||
12 | * option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, but | ||
15 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
17 | * General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License along | ||
20 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
21 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
22 | */ | ||
23 | |||
24 | #include <linux/module.h> | ||
25 | #include <linux/platform_device.h> | ||
26 | #include <linux/delay.h> | ||
27 | #include <linux/i2c/twl.h> | ||
28 | |||
29 | #include <mach/gpio.h> | ||
30 | #include <plat/mux.h> | ||
31 | #include <asm/mach-types.h> | ||
32 | |||
33 | #include "omapfb.h" | ||
34 | |||
35 | #define LCD_PANEL_BACKLIGHT_GPIO (15 + OMAP_MAX_GPIO_LINES) | ||
36 | #define LCD_PANEL_ENABLE_GPIO (7 + OMAP_MAX_GPIO_LINES) | ||
37 | |||
38 | #define LCD_PANEL_RESET_GPIO 55 | ||
39 | #define LCD_PANEL_QVGA_GPIO 56 | ||
40 | |||
41 | #ifdef CONFIG_FB_OMAP_LCD_VGA | ||
42 | #define LCD_XRES 480 | ||
43 | #define LCD_YRES 640 | ||
44 | #define LCD_PIXCLOCK_MAX 41700 | ||
45 | #else | ||
46 | #define LCD_XRES 240 | ||
47 | #define LCD_YRES 320 | ||
48 | #define LCD_PIXCLOCK_MAX 185186 | ||
49 | #endif | ||
50 | |||
51 | #define PM_RECEIVER TWL4030_MODULE_PM_RECEIVER | ||
52 | #define ENABLE_VAUX2_DEDICATED 0x09 | ||
53 | #define ENABLE_VAUX2_DEV_GRP 0x20 | ||
54 | #define ENABLE_VAUX3_DEDICATED 0x03 | ||
55 | #define ENABLE_VAUX3_DEV_GRP 0x20 | ||
56 | |||
57 | #define ENABLE_VPLL2_DEDICATED 0x05 | ||
58 | #define ENABLE_VPLL2_DEV_GRP 0xE0 | ||
59 | #define TWL4030_VPLL2_DEV_GRP 0x33 | ||
60 | #define TWL4030_VPLL2_DEDICATED 0x36 | ||
61 | |||
62 | #define t2_out(c, r, v) twl_i2c_write_u8(c, r, v) | ||
63 | |||
64 | |||
65 | static int ldp_panel_init(struct lcd_panel *panel, | ||
66 | struct omapfb_device *fbdev) | ||
67 | { | ||
68 | gpio_request(LCD_PANEL_RESET_GPIO, "lcd reset"); | ||
69 | gpio_request(LCD_PANEL_QVGA_GPIO, "lcd qvga"); | ||
70 | gpio_request(LCD_PANEL_ENABLE_GPIO, "lcd panel"); | ||
71 | gpio_request(LCD_PANEL_BACKLIGHT_GPIO, "lcd backlight"); | ||
72 | |||
73 | gpio_direction_output(LCD_PANEL_QVGA_GPIO, 0); | ||
74 | gpio_direction_output(LCD_PANEL_RESET_GPIO, 0); | ||
75 | gpio_direction_output(LCD_PANEL_ENABLE_GPIO, 0); | ||
76 | gpio_direction_output(LCD_PANEL_BACKLIGHT_GPIO, 0); | ||
77 | |||
78 | #ifdef CONFIG_FB_OMAP_LCD_VGA | ||
79 | gpio_set_value(LCD_PANEL_QVGA_GPIO, 0); | ||
80 | #else | ||
81 | gpio_set_value(LCD_PANEL_QVGA_GPIO, 1); | ||
82 | #endif | ||
83 | gpio_set_value(LCD_PANEL_RESET_GPIO, 1); | ||
84 | |||
85 | return 0; | ||
86 | } | ||
87 | |||
88 | static void ldp_panel_cleanup(struct lcd_panel *panel) | ||
89 | { | ||
90 | gpio_free(LCD_PANEL_BACKLIGHT_GPIO); | ||
91 | gpio_free(LCD_PANEL_ENABLE_GPIO); | ||
92 | gpio_free(LCD_PANEL_QVGA_GPIO); | ||
93 | gpio_free(LCD_PANEL_RESET_GPIO); | ||
94 | } | ||
95 | |||
96 | static int ldp_panel_enable(struct lcd_panel *panel) | ||
97 | { | ||
98 | if (0 != t2_out(PM_RECEIVER, ENABLE_VPLL2_DEDICATED, | ||
99 | TWL4030_VPLL2_DEDICATED)) | ||
100 | return -EIO; | ||
101 | if (0 != t2_out(PM_RECEIVER, ENABLE_VPLL2_DEV_GRP, | ||
102 | TWL4030_VPLL2_DEV_GRP)) | ||
103 | return -EIO; | ||
104 | |||
105 | gpio_direction_output(LCD_PANEL_ENABLE_GPIO, 1); | ||
106 | gpio_direction_output(LCD_PANEL_BACKLIGHT_GPIO, 1); | ||
107 | |||
108 | if (0 != t2_out(PM_RECEIVER, ENABLE_VAUX3_DEDICATED, | ||
109 | TWL4030_VAUX3_DEDICATED)) | ||
110 | return -EIO; | ||
111 | if (0 != t2_out(PM_RECEIVER, ENABLE_VAUX3_DEV_GRP, | ||
112 | TWL4030_VAUX3_DEV_GRP)) | ||
113 | return -EIO; | ||
114 | |||
115 | return 0; | ||
116 | } | ||
117 | |||
118 | static void ldp_panel_disable(struct lcd_panel *panel) | ||
119 | { | ||
120 | gpio_direction_output(LCD_PANEL_ENABLE_GPIO, 0); | ||
121 | gpio_direction_output(LCD_PANEL_BACKLIGHT_GPIO, 0); | ||
122 | |||
123 | t2_out(PM_RECEIVER, 0x0, TWL4030_VPLL2_DEDICATED); | ||
124 | t2_out(PM_RECEIVER, 0x0, TWL4030_VPLL2_DEV_GRP); | ||
125 | msleep(4); | ||
126 | } | ||
127 | |||
128 | static unsigned long ldp_panel_get_caps(struct lcd_panel *panel) | ||
129 | { | ||
130 | return 0; | ||
131 | } | ||
132 | |||
133 | struct lcd_panel ldp_panel = { | ||
134 | .name = "ldp", | ||
135 | .config = OMAP_LCDC_PANEL_TFT | OMAP_LCDC_INV_VSYNC | | ||
136 | OMAP_LCDC_INV_HSYNC, | ||
137 | |||
138 | .bpp = 16, | ||
139 | .data_lines = 18, | ||
140 | .x_res = LCD_XRES, | ||
141 | .y_res = LCD_YRES, | ||
142 | .hsw = 3, /* hsync_len (4) - 1 */ | ||
143 | .hfp = 3, /* right_margin (4) - 1 */ | ||
144 | .hbp = 39, /* left_margin (40) - 1 */ | ||
145 | .vsw = 1, /* vsync_len (2) - 1 */ | ||
146 | .vfp = 2, /* lower_margin */ | ||
147 | .vbp = 7, /* upper_margin (8) - 1 */ | ||
148 | |||
149 | .pixel_clock = LCD_PIXCLOCK_MAX, | ||
150 | |||
151 | .init = ldp_panel_init, | ||
152 | .cleanup = ldp_panel_cleanup, | ||
153 | .enable = ldp_panel_enable, | ||
154 | .disable = ldp_panel_disable, | ||
155 | .get_caps = ldp_panel_get_caps, | ||
156 | }; | ||
157 | |||
158 | static int ldp_panel_probe(struct platform_device *pdev) | ||
159 | { | ||
160 | omapfb_register_panel(&ldp_panel); | ||
161 | return 0; | ||
162 | } | ||
163 | |||
164 | static int ldp_panel_remove(struct platform_device *pdev) | ||
165 | { | ||
166 | return 0; | ||
167 | } | ||
168 | |||
169 | static int ldp_panel_suspend(struct platform_device *pdev, pm_message_t mesg) | ||
170 | { | ||
171 | return 0; | ||
172 | } | ||
173 | |||
174 | static int ldp_panel_resume(struct platform_device *pdev) | ||
175 | { | ||
176 | return 0; | ||
177 | } | ||
178 | |||
179 | struct platform_driver ldp_panel_driver = { | ||
180 | .probe = ldp_panel_probe, | ||
181 | .remove = ldp_panel_remove, | ||
182 | .suspend = ldp_panel_suspend, | ||
183 | .resume = ldp_panel_resume, | ||
184 | .driver = { | ||
185 | .name = "ldp_lcd", | ||
186 | .owner = THIS_MODULE, | ||
187 | }, | ||
188 | }; | ||
189 | |||
190 | static int __init ldp_panel_drv_init(void) | ||
191 | { | ||
192 | return platform_driver_register(&ldp_panel_driver); | ||
193 | } | ||
194 | |||
195 | static void __exit ldp_panel_drv_exit(void) | ||
196 | { | ||
197 | platform_driver_unregister(&ldp_panel_driver); | ||
198 | } | ||
199 | |||
200 | module_init(ldp_panel_drv_init); | ||
201 | module_exit(ldp_panel_drv_exit); | ||
diff --git a/drivers/video/omap/lcd_omap3beagle.c b/drivers/video/omap/lcd_omap3beagle.c new file mode 100644 index 00000000000..d7c6c3e0afc --- /dev/null +++ b/drivers/video/omap/lcd_omap3beagle.c | |||
@@ -0,0 +1,130 @@ | |||
1 | /* | ||
2 | * LCD panel support for the TI OMAP3 Beagle board | ||
3 | * | ||
4 | * Author: Koen Kooi <koen@openembedded.org> | ||
5 | * | ||
6 | * Derived from drivers/video/omap/lcd-omap3evm.c | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, but | ||
14 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
16 | * General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License along | ||
19 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
20 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
21 | */ | ||
22 | |||
23 | #include <linux/module.h> | ||
24 | #include <linux/platform_device.h> | ||
25 | #include <linux/gpio.h> | ||
26 | #include <linux/i2c/twl.h> | ||
27 | |||
28 | #include <asm/mach-types.h> | ||
29 | |||
30 | #include "omapfb.h" | ||
31 | |||
32 | #define LCD_PANEL_ENABLE_GPIO 170 | ||
33 | |||
34 | static int omap3beagle_panel_init(struct lcd_panel *panel, | ||
35 | struct omapfb_device *fbdev) | ||
36 | { | ||
37 | gpio_request(LCD_PANEL_ENABLE_GPIO, "LCD enable"); | ||
38 | return 0; | ||
39 | } | ||
40 | |||
41 | static void omap3beagle_panel_cleanup(struct lcd_panel *panel) | ||
42 | { | ||
43 | gpio_free(LCD_PANEL_ENABLE_GPIO); | ||
44 | } | ||
45 | |||
46 | static int omap3beagle_panel_enable(struct lcd_panel *panel) | ||
47 | { | ||
48 | gpio_set_value(LCD_PANEL_ENABLE_GPIO, 1); | ||
49 | return 0; | ||
50 | } | ||
51 | |||
52 | static void omap3beagle_panel_disable(struct lcd_panel *panel) | ||
53 | { | ||
54 | gpio_set_value(LCD_PANEL_ENABLE_GPIO, 0); | ||
55 | } | ||
56 | |||
57 | static unsigned long omap3beagle_panel_get_caps(struct lcd_panel *panel) | ||
58 | { | ||
59 | return 0; | ||
60 | } | ||
61 | |||
62 | struct lcd_panel omap3beagle_panel = { | ||
63 | .name = "omap3beagle", | ||
64 | .config = OMAP_LCDC_PANEL_TFT, | ||
65 | |||
66 | .bpp = 16, | ||
67 | .data_lines = 24, | ||
68 | .x_res = 1024, | ||
69 | .y_res = 768, | ||
70 | .hsw = 3, /* hsync_len (4) - 1 */ | ||
71 | .hfp = 3, /* right_margin (4) - 1 */ | ||
72 | .hbp = 39, /* left_margin (40) - 1 */ | ||
73 | .vsw = 1, /* vsync_len (2) - 1 */ | ||
74 | .vfp = 2, /* lower_margin */ | ||
75 | .vbp = 7, /* upper_margin (8) - 1 */ | ||
76 | |||
77 | .pixel_clock = 64000, | ||
78 | |||
79 | .init = omap3beagle_panel_init, | ||
80 | .cleanup = omap3beagle_panel_cleanup, | ||
81 | .enable = omap3beagle_panel_enable, | ||
82 | .disable = omap3beagle_panel_disable, | ||
83 | .get_caps = omap3beagle_panel_get_caps, | ||
84 | }; | ||
85 | |||
86 | static int omap3beagle_panel_probe(struct platform_device *pdev) | ||
87 | { | ||
88 | omapfb_register_panel(&omap3beagle_panel); | ||
89 | return 0; | ||
90 | } | ||
91 | |||
92 | static int omap3beagle_panel_remove(struct platform_device *pdev) | ||
93 | { | ||
94 | return 0; | ||
95 | } | ||
96 | |||
97 | static int omap3beagle_panel_suspend(struct platform_device *pdev, | ||
98 | pm_message_t mesg) | ||
99 | { | ||
100 | return 0; | ||
101 | } | ||
102 | |||
103 | static int omap3beagle_panel_resume(struct platform_device *pdev) | ||
104 | { | ||
105 | return 0; | ||
106 | } | ||
107 | |||
108 | struct platform_driver omap3beagle_panel_driver = { | ||
109 | .probe = omap3beagle_panel_probe, | ||
110 | .remove = omap3beagle_panel_remove, | ||
111 | .suspend = omap3beagle_panel_suspend, | ||
112 | .resume = omap3beagle_panel_resume, | ||
113 | .driver = { | ||
114 | .name = "omap3beagle_lcd", | ||
115 | .owner = THIS_MODULE, | ||
116 | }, | ||
117 | }; | ||
118 | |||
119 | static int __init omap3beagle_panel_drv_init(void) | ||
120 | { | ||
121 | return platform_driver_register(&omap3beagle_panel_driver); | ||
122 | } | ||
123 | |||
124 | static void __exit omap3beagle_panel_drv_exit(void) | ||
125 | { | ||
126 | platform_driver_unregister(&omap3beagle_panel_driver); | ||
127 | } | ||
128 | |||
129 | module_init(omap3beagle_panel_drv_init); | ||
130 | module_exit(omap3beagle_panel_drv_exit); | ||
diff --git a/drivers/video/omap/lcd_omap3evm.c b/drivers/video/omap/lcd_omap3evm.c new file mode 100644 index 00000000000..06840da0b09 --- /dev/null +++ b/drivers/video/omap/lcd_omap3evm.c | |||
@@ -0,0 +1,193 @@ | |||
1 | /* | ||
2 | * LCD panel support for the TI OMAP3 EVM board | ||
3 | * | ||
4 | * Author: Steve Sakoman <steve@sakoman.com> | ||
5 | * | ||
6 | * Derived from drivers/video/omap/lcd-apollon.c | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, but | ||
14 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
16 | * General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License along | ||
19 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
20 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
21 | */ | ||
22 | |||
23 | #include <linux/module.h> | ||
24 | #include <linux/platform_device.h> | ||
25 | #include <linux/gpio.h> | ||
26 | #include <linux/i2c/twl.h> | ||
27 | |||
28 | #include <plat/mux.h> | ||
29 | #include <asm/mach-types.h> | ||
30 | |||
31 | #include "omapfb.h" | ||
32 | |||
33 | #define LCD_PANEL_ENABLE_GPIO 153 | ||
34 | #define LCD_PANEL_LR 2 | ||
35 | #define LCD_PANEL_UD 3 | ||
36 | #define LCD_PANEL_INI 152 | ||
37 | #define LCD_PANEL_QVGA 154 | ||
38 | #define LCD_PANEL_RESB 155 | ||
39 | |||
40 | #define ENABLE_VDAC_DEDICATED 0x03 | ||
41 | #define ENABLE_VDAC_DEV_GRP 0x20 | ||
42 | #define ENABLE_VPLL2_DEDICATED 0x05 | ||
43 | #define ENABLE_VPLL2_DEV_GRP 0xE0 | ||
44 | |||
45 | #define TWL_LED_LEDEN 0x00 | ||
46 | #define TWL_PWMA_PWMAON 0x00 | ||
47 | #define TWL_PWMA_PWMAOFF 0x01 | ||
48 | |||
49 | static unsigned int bklight_level; | ||
50 | |||
51 | static int omap3evm_panel_init(struct lcd_panel *panel, | ||
52 | struct omapfb_device *fbdev) | ||
53 | { | ||
54 | gpio_request(LCD_PANEL_LR, "LCD lr"); | ||
55 | gpio_request(LCD_PANEL_UD, "LCD ud"); | ||
56 | gpio_request(LCD_PANEL_INI, "LCD ini"); | ||
57 | gpio_request(LCD_PANEL_RESB, "LCD resb"); | ||
58 | gpio_request(LCD_PANEL_QVGA, "LCD qvga"); | ||
59 | |||
60 | gpio_direction_output(LCD_PANEL_RESB, 1); | ||
61 | gpio_direction_output(LCD_PANEL_INI, 1); | ||
62 | gpio_direction_output(LCD_PANEL_QVGA, 0); | ||
63 | gpio_direction_output(LCD_PANEL_LR, 1); | ||
64 | gpio_direction_output(LCD_PANEL_UD, 1); | ||
65 | |||
66 | twl_i2c_write_u8(TWL4030_MODULE_LED, 0x11, TWL_LED_LEDEN); | ||
67 | twl_i2c_write_u8(TWL4030_MODULE_PWMA, 0x01, TWL_PWMA_PWMAON); | ||
68 | twl_i2c_write_u8(TWL4030_MODULE_PWMA, 0x02, TWL_PWMA_PWMAOFF); | ||
69 | bklight_level = 100; | ||
70 | |||
71 | return 0; | ||
72 | } | ||
73 | |||
74 | static void omap3evm_panel_cleanup(struct lcd_panel *panel) | ||
75 | { | ||
76 | gpio_free(LCD_PANEL_QVGA); | ||
77 | gpio_free(LCD_PANEL_RESB); | ||
78 | gpio_free(LCD_PANEL_INI); | ||
79 | gpio_free(LCD_PANEL_UD); | ||
80 | gpio_free(LCD_PANEL_LR); | ||
81 | } | ||
82 | |||
83 | static int omap3evm_panel_enable(struct lcd_panel *panel) | ||
84 | { | ||
85 | gpio_set_value(LCD_PANEL_ENABLE_GPIO, 0); | ||
86 | return 0; | ||
87 | } | ||
88 | |||
89 | static void omap3evm_panel_disable(struct lcd_panel *panel) | ||
90 | { | ||
91 | gpio_set_value(LCD_PANEL_ENABLE_GPIO, 1); | ||
92 | } | ||
93 | |||
94 | static unsigned long omap3evm_panel_get_caps(struct lcd_panel *panel) | ||
95 | { | ||
96 | return 0; | ||
97 | } | ||
98 | |||
99 | static int omap3evm_bklight_setlevel(struct lcd_panel *panel, | ||
100 | unsigned int level) | ||
101 | { | ||
102 | u8 c; | ||
103 | if ((level >= 0) && (level <= 100)) { | ||
104 | c = (125 * (100 - level)) / 100 + 2; | ||
105 | twl_i2c_write_u8(TWL4030_MODULE_PWMA, c, TWL_PWMA_PWMAOFF); | ||
106 | bklight_level = level; | ||
107 | } | ||
108 | return 0; | ||
109 | } | ||
110 | |||
111 | static unsigned int omap3evm_bklight_getlevel(struct lcd_panel *panel) | ||
112 | { | ||
113 | return bklight_level; | ||
114 | } | ||
115 | |||
116 | static unsigned int omap3evm_bklight_getmaxlevel(struct lcd_panel *panel) | ||
117 | { | ||
118 | return 100; | ||
119 | } | ||
120 | |||
121 | struct lcd_panel omap3evm_panel = { | ||
122 | .name = "omap3evm", | ||
123 | .config = OMAP_LCDC_PANEL_TFT | OMAP_LCDC_INV_VSYNC | | ||
124 | OMAP_LCDC_INV_HSYNC, | ||
125 | |||
126 | .bpp = 16, | ||
127 | .data_lines = 18, | ||
128 | .x_res = 480, | ||
129 | .y_res = 640, | ||
130 | .hsw = 3, /* hsync_len (4) - 1 */ | ||
131 | .hfp = 3, /* right_margin (4) - 1 */ | ||
132 | .hbp = 39, /* left_margin (40) - 1 */ | ||
133 | .vsw = 1, /* vsync_len (2) - 1 */ | ||
134 | .vfp = 2, /* lower_margin */ | ||
135 | .vbp = 7, /* upper_margin (8) - 1 */ | ||
136 | |||
137 | .pixel_clock = 26000, | ||
138 | |||
139 | .init = omap3evm_panel_init, | ||
140 | .cleanup = omap3evm_panel_cleanup, | ||
141 | .enable = omap3evm_panel_enable, | ||
142 | .disable = omap3evm_panel_disable, | ||
143 | .get_caps = omap3evm_panel_get_caps, | ||
144 | .set_bklight_level = omap3evm_bklight_setlevel, | ||
145 | .get_bklight_level = omap3evm_bklight_getlevel, | ||
146 | .get_bklight_max = omap3evm_bklight_getmaxlevel, | ||
147 | }; | ||
148 | |||
149 | static int omap3evm_panel_probe(struct platform_device *pdev) | ||
150 | { | ||
151 | omapfb_register_panel(&omap3evm_panel); | ||
152 | return 0; | ||
153 | } | ||
154 | |||
155 | static int omap3evm_panel_remove(struct platform_device *pdev) | ||
156 | { | ||
157 | return 0; | ||
158 | } | ||
159 | |||
160 | static int omap3evm_panel_suspend(struct platform_device *pdev, | ||
161 | pm_message_t mesg) | ||
162 | { | ||
163 | return 0; | ||
164 | } | ||
165 | |||
166 | static int omap3evm_panel_resume(struct platform_device *pdev) | ||
167 | { | ||
168 | return 0; | ||
169 | } | ||
170 | |||
171 | struct platform_driver omap3evm_panel_driver = { | ||
172 | .probe = omap3evm_panel_probe, | ||
173 | .remove = omap3evm_panel_remove, | ||
174 | .suspend = omap3evm_panel_suspend, | ||
175 | .resume = omap3evm_panel_resume, | ||
176 | .driver = { | ||
177 | .name = "omap3evm_lcd", | ||
178 | .owner = THIS_MODULE, | ||
179 | }, | ||
180 | }; | ||
181 | |||
182 | static int __init omap3evm_panel_drv_init(void) | ||
183 | { | ||
184 | return platform_driver_register(&omap3evm_panel_driver); | ||
185 | } | ||
186 | |||
187 | static void __exit omap3evm_panel_drv_exit(void) | ||
188 | { | ||
189 | platform_driver_unregister(&omap3evm_panel_driver); | ||
190 | } | ||
191 | |||
192 | module_init(omap3evm_panel_drv_init); | ||
193 | module_exit(omap3evm_panel_drv_exit); | ||
diff --git a/drivers/video/omap/lcd_overo.c b/drivers/video/omap/lcd_overo.c new file mode 100644 index 00000000000..564933ffac6 --- /dev/null +++ b/drivers/video/omap/lcd_overo.c | |||
@@ -0,0 +1,180 @@ | |||
1 | /* | ||
2 | * LCD panel support for the Gumstix Overo | ||
3 | * | ||
4 | * Author: Steve Sakoman <steve@sakoman.com> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms of the GNU General Public License as published by the | ||
8 | * Free Software Foundation; either version 2 of the License, or (at your | ||
9 | * option) any later version. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, but | ||
12 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
14 | * General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License along | ||
17 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
18 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
19 | * | ||
20 | */ | ||
21 | |||
22 | #include <linux/module.h> | ||
23 | #include <linux/platform_device.h> | ||
24 | #include <linux/i2c/twl.h> | ||
25 | |||
26 | #include <mach/gpio.h> | ||
27 | #include <plat/mux.h> | ||
28 | #include <asm/mach-types.h> | ||
29 | |||
30 | #include "omapfb.h" | ||
31 | |||
32 | #define LCD_ENABLE 144 | ||
33 | |||
34 | static int overo_panel_init(struct lcd_panel *panel, | ||
35 | struct omapfb_device *fbdev) | ||
36 | { | ||
37 | if ((gpio_request(LCD_ENABLE, "LCD_ENABLE") == 0) && | ||
38 | (gpio_direction_output(LCD_ENABLE, 1) == 0)) | ||
39 | gpio_export(LCD_ENABLE, 0); | ||
40 | else | ||
41 | printk(KERN_ERR "could not obtain gpio for LCD_ENABLE\n"); | ||
42 | |||
43 | return 0; | ||
44 | } | ||
45 | |||
46 | static void overo_panel_cleanup(struct lcd_panel *panel) | ||
47 | { | ||
48 | gpio_free(LCD_ENABLE); | ||
49 | } | ||
50 | |||
51 | static int overo_panel_enable(struct lcd_panel *panel) | ||
52 | { | ||
53 | gpio_set_value(LCD_ENABLE, 1); | ||
54 | return 0; | ||
55 | } | ||
56 | |||
57 | static void overo_panel_disable(struct lcd_panel *panel) | ||
58 | { | ||
59 | gpio_set_value(LCD_ENABLE, 0); | ||
60 | } | ||
61 | |||
62 | static unsigned long overo_panel_get_caps(struct lcd_panel *panel) | ||
63 | { | ||
64 | return 0; | ||
65 | } | ||
66 | |||
67 | struct lcd_panel overo_panel = { | ||
68 | .name = "overo", | ||
69 | .config = OMAP_LCDC_PANEL_TFT, | ||
70 | .bpp = 16, | ||
71 | .data_lines = 24, | ||
72 | |||
73 | #if defined CONFIG_FB_OMAP_031M3R | ||
74 | |||
75 | /* 640 x 480 @ 60 Hz Reduced blanking VESA CVT 0.31M3-R */ | ||
76 | .x_res = 640, | ||
77 | .y_res = 480, | ||
78 | .hfp = 48, | ||
79 | .hsw = 32, | ||
80 | .hbp = 80, | ||
81 | .vfp = 3, | ||
82 | .vsw = 4, | ||
83 | .vbp = 7, | ||
84 | .pixel_clock = 23500, | ||
85 | |||
86 | #elif defined CONFIG_FB_OMAP_048M3R | ||
87 | |||
88 | /* 800 x 600 @ 60 Hz Reduced blanking VESA CVT 0.48M3-R */ | ||
89 | .x_res = 800, | ||
90 | .y_res = 600, | ||
91 | .hfp = 48, | ||
92 | .hsw = 32, | ||
93 | .hbp = 80, | ||
94 | .vfp = 3, | ||
95 | .vsw = 4, | ||
96 | .vbp = 11, | ||
97 | .pixel_clock = 35500, | ||
98 | |||
99 | #elif defined CONFIG_FB_OMAP_079M3R | ||
100 | |||
101 | /* 1024 x 768 @ 60 Hz Reduced blanking VESA CVT 0.79M3-R */ | ||
102 | .x_res = 1024, | ||
103 | .y_res = 768, | ||
104 | .hfp = 48, | ||
105 | .hsw = 32, | ||
106 | .hbp = 80, | ||
107 | .vfp = 3, | ||
108 | .vsw = 4, | ||
109 | .vbp = 15, | ||
110 | .pixel_clock = 56000, | ||
111 | |||
112 | #elif defined CONFIG_FB_OMAP_092M9R | ||
113 | |||
114 | /* 1280 x 720 @ 60 Hz Reduced blanking VESA CVT 0.92M9-R */ | ||
115 | .x_res = 1280, | ||
116 | .y_res = 720, | ||
117 | .hfp = 48, | ||
118 | .hsw = 32, | ||
119 | .hbp = 80, | ||
120 | .vfp = 3, | ||
121 | .vsw = 5, | ||
122 | .vbp = 13, | ||
123 | .pixel_clock = 64000, | ||
124 | |||
125 | #else | ||
126 | |||
127 | /* use 640 x 480 if no config option */ | ||
128 | /* 640 x 480 @ 60 Hz Reduced blanking VESA CVT 0.31M3-R */ | ||
129 | .x_res = 640, | ||
130 | .y_res = 480, | ||
131 | .hfp = 48, | ||
132 | .hsw = 32, | ||
133 | .hbp = 80, | ||
134 | .vfp = 3, | ||
135 | .vsw = 4, | ||
136 | .vbp = 7, | ||
137 | .pixel_clock = 23500, | ||
138 | |||
139 | #endif | ||
140 | |||
141 | .init = overo_panel_init, | ||
142 | .cleanup = overo_panel_cleanup, | ||
143 | .enable = overo_panel_enable, | ||
144 | .disable = overo_panel_disable, | ||
145 | .get_caps = overo_panel_get_caps, | ||
146 | }; | ||
147 | |||
148 | static int overo_panel_probe(struct platform_device *pdev) | ||
149 | { | ||
150 | omapfb_register_panel(&overo_panel); | ||
151 | return 0; | ||
152 | } | ||
153 | |||
154 | static int overo_panel_remove(struct platform_device *pdev) | ||
155 | { | ||
156 | /* omapfb does not have unregister_panel */ | ||
157 | return 0; | ||
158 | } | ||
159 | |||
160 | static struct platform_driver overo_panel_driver = { | ||
161 | .probe = overo_panel_probe, | ||
162 | .remove = overo_panel_remove, | ||
163 | .driver = { | ||
164 | .name = "overo_lcd", | ||
165 | .owner = THIS_MODULE, | ||
166 | }, | ||
167 | }; | ||
168 | |||
169 | static int __init overo_panel_drv_init(void) | ||
170 | { | ||
171 | return platform_driver_register(&overo_panel_driver); | ||
172 | } | ||
173 | |||
174 | static void __exit overo_panel_drv_exit(void) | ||
175 | { | ||
176 | platform_driver_unregister(&overo_panel_driver); | ||
177 | } | ||
178 | |||
179 | module_init(overo_panel_drv_init); | ||
180 | module_exit(overo_panel_drv_exit); | ||
diff --git a/drivers/video/omap/rfbi.c b/drivers/video/omap/rfbi.c new file mode 100644 index 00000000000..0c6981f1a4a --- /dev/null +++ b/drivers/video/omap/rfbi.c | |||
@@ -0,0 +1,598 @@ | |||
1 | /* | ||
2 | * OMAP2 Remote Frame Buffer Interface support | ||
3 | * | ||
4 | * Copyright (C) 2005 Nokia Corporation | ||
5 | * Author: Juha Yrjölä <juha.yrjola@nokia.com> | ||
6 | * Imre Deak <imre.deak@nokia.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, but | ||
14 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
16 | * General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License along | ||
19 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
20 | * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | ||
21 | */ | ||
22 | #include <linux/module.h> | ||
23 | #include <linux/delay.h> | ||
24 | #include <linux/i2c.h> | ||
25 | #include <linux/err.h> | ||
26 | #include <linux/interrupt.h> | ||
27 | #include <linux/clk.h> | ||
28 | #include <linux/io.h> | ||
29 | #include <linux/platform_device.h> | ||
30 | |||
31 | #include "omapfb.h" | ||
32 | #include "dispc.h" | ||
33 | |||
34 | /* To work around an RFBI transfer rate limitation */ | ||
35 | #define OMAP_RFBI_RATE_LIMIT 1 | ||
36 | |||
37 | #define RFBI_BASE 0x48050800 | ||
38 | #define RFBI_REVISION 0x0000 | ||
39 | #define RFBI_SYSCONFIG 0x0010 | ||
40 | #define RFBI_SYSSTATUS 0x0014 | ||
41 | #define RFBI_CONTROL 0x0040 | ||
42 | #define RFBI_PIXEL_CNT 0x0044 | ||
43 | #define RFBI_LINE_NUMBER 0x0048 | ||
44 | #define RFBI_CMD 0x004c | ||
45 | #define RFBI_PARAM 0x0050 | ||
46 | #define RFBI_DATA 0x0054 | ||
47 | #define RFBI_READ 0x0058 | ||
48 | #define RFBI_STATUS 0x005c | ||
49 | #define RFBI_CONFIG0 0x0060 | ||
50 | #define RFBI_ONOFF_TIME0 0x0064 | ||
51 | #define RFBI_CYCLE_TIME0 0x0068 | ||
52 | #define RFBI_DATA_CYCLE1_0 0x006c | ||
53 | #define RFBI_DATA_CYCLE2_0 0x0070 | ||
54 | #define RFBI_DATA_CYCLE3_0 0x0074 | ||
55 | #define RFBI_VSYNC_WIDTH 0x0090 | ||
56 | #define RFBI_HSYNC_WIDTH 0x0094 | ||
57 | |||
58 | #define DISPC_BASE 0x48050400 | ||
59 | #define DISPC_CONTROL 0x0040 | ||
60 | #define DISPC_IRQ_FRAMEMASK 0x0001 | ||
61 | |||
62 | static struct { | ||
63 | void __iomem *base; | ||
64 | void (*lcdc_callback)(void *data); | ||
65 | void *lcdc_callback_data; | ||
66 | unsigned long l4_khz; | ||
67 | int bits_per_cycle; | ||
68 | struct omapfb_device *fbdev; | ||
69 | struct clk *dss_ick; | ||
70 | struct clk *dss1_fck; | ||
71 | unsigned tearsync_pin_cnt; | ||
72 | unsigned tearsync_mode; | ||
73 | } rfbi; | ||
74 | |||
75 | static inline void rfbi_write_reg(int idx, u32 val) | ||
76 | { | ||
77 | __raw_writel(val, rfbi.base + idx); | ||
78 | } | ||
79 | |||
80 | static inline u32 rfbi_read_reg(int idx) | ||
81 | { | ||
82 | return __raw_readl(rfbi.base + idx); | ||
83 | } | ||
84 | |||
85 | static int rfbi_get_clocks(void) | ||
86 | { | ||
87 | rfbi.dss_ick = clk_get(&rfbi.fbdev->dssdev->dev, "ick"); | ||
88 | if (IS_ERR(rfbi.dss_ick)) { | ||
89 | dev_err(rfbi.fbdev->dev, "can't get ick\n"); | ||
90 | return PTR_ERR(rfbi.dss_ick); | ||
91 | } | ||
92 | |||
93 | rfbi.dss1_fck = clk_get(&rfbi.fbdev->dssdev->dev, "fck"); | ||
94 | if (IS_ERR(rfbi.dss1_fck)) { | ||
95 | dev_err(rfbi.fbdev->dev, "can't get dss1_fck\n"); | ||
96 | clk_put(rfbi.dss_ick); | ||
97 | return PTR_ERR(rfbi.dss1_fck); | ||
98 | } | ||
99 | |||
100 | return 0; | ||
101 | } | ||
102 | |||
103 | static void rfbi_put_clocks(void) | ||
104 | { | ||
105 | clk_put(rfbi.dss1_fck); | ||
106 | clk_put(rfbi.dss_ick); | ||
107 | } | ||
108 | |||
109 | static void rfbi_enable_clocks(int enable) | ||
110 | { | ||
111 | if (enable) { | ||
112 | clk_enable(rfbi.dss_ick); | ||
113 | clk_enable(rfbi.dss1_fck); | ||
114 | } else { | ||
115 | clk_disable(rfbi.dss1_fck); | ||
116 | clk_disable(rfbi.dss_ick); | ||
117 | } | ||
118 | } | ||
119 | |||
120 | |||
121 | #ifdef VERBOSE | ||
122 | static void rfbi_print_timings(void) | ||
123 | { | ||
124 | u32 l; | ||
125 | u32 time; | ||
126 | |||
127 | l = rfbi_read_reg(RFBI_CONFIG0); | ||
128 | time = 1000000000 / rfbi.l4_khz; | ||
129 | if (l & (1 << 4)) | ||
130 | time *= 2; | ||
131 | |||
132 | dev_dbg(rfbi.fbdev->dev, "Tick time %u ps\n", time); | ||
133 | l = rfbi_read_reg(RFBI_ONOFF_TIME0); | ||
134 | dev_dbg(rfbi.fbdev->dev, | ||
135 | "CSONTIME %d, CSOFFTIME %d, WEONTIME %d, WEOFFTIME %d, " | ||
136 | "REONTIME %d, REOFFTIME %d\n", | ||
137 | l & 0x0f, (l >> 4) & 0x3f, (l >> 10) & 0x0f, (l >> 14) & 0x3f, | ||
138 | (l >> 20) & 0x0f, (l >> 24) & 0x3f); | ||
139 | |||
140 | l = rfbi_read_reg(RFBI_CYCLE_TIME0); | ||
141 | dev_dbg(rfbi.fbdev->dev, | ||
142 | "WECYCLETIME %d, RECYCLETIME %d, CSPULSEWIDTH %d, " | ||
143 | "ACCESSTIME %d\n", | ||
144 | (l & 0x3f), (l >> 6) & 0x3f, (l >> 12) & 0x3f, | ||
145 | (l >> 22) & 0x3f); | ||
146 | } | ||
147 | #else | ||
148 | static void rfbi_print_timings(void) {} | ||
149 | #endif | ||
150 | |||
151 | static void rfbi_set_timings(const struct extif_timings *t) | ||
152 | { | ||
153 | u32 l; | ||
154 | |||
155 | BUG_ON(!t->converted); | ||
156 | |||
157 | rfbi_enable_clocks(1); | ||
158 | rfbi_write_reg(RFBI_ONOFF_TIME0, t->tim[0]); | ||
159 | rfbi_write_reg(RFBI_CYCLE_TIME0, t->tim[1]); | ||
160 | |||
161 | l = rfbi_read_reg(RFBI_CONFIG0); | ||
162 | l &= ~(1 << 4); | ||
163 | l |= (t->tim[2] ? 1 : 0) << 4; | ||
164 | rfbi_write_reg(RFBI_CONFIG0, l); | ||
165 | |||
166 | rfbi_print_timings(); | ||
167 | rfbi_enable_clocks(0); | ||
168 | } | ||
169 | |||
170 | static void rfbi_get_clk_info(u32 *clk_period, u32 *max_clk_div) | ||
171 | { | ||
172 | *clk_period = 1000000000 / rfbi.l4_khz; | ||
173 | *max_clk_div = 2; | ||
174 | } | ||
175 | |||
176 | static int ps_to_rfbi_ticks(int time, int div) | ||
177 | { | ||
178 | unsigned long tick_ps; | ||
179 | int ret; | ||
180 | |||
181 | /* Calculate in picosecs to yield more exact results */ | ||
182 | tick_ps = 1000000000 / (rfbi.l4_khz) * div; | ||
183 | |||
184 | ret = (time + tick_ps - 1) / tick_ps; | ||
185 | |||
186 | return ret; | ||
187 | } | ||
188 | |||
189 | #ifdef OMAP_RFBI_RATE_LIMIT | ||
190 | static unsigned long rfbi_get_max_tx_rate(void) | ||
191 | { | ||
192 | unsigned long l4_rate, dss1_rate; | ||
193 | int min_l4_ticks = 0; | ||
194 | int i; | ||
195 | |||
196 | /* According to TI this can't be calculated so make the | ||
197 | * adjustments for a couple of known frequencies and warn for | ||
198 | * others. | ||
199 | */ | ||
200 | static const struct { | ||
201 | unsigned long l4_clk; /* HZ */ | ||
202 | unsigned long dss1_clk; /* HZ */ | ||
203 | unsigned long min_l4_ticks; | ||
204 | } ftab[] = { | ||
205 | { 55, 132, 7, }, /* 7.86 MPix/s */ | ||
206 | { 110, 110, 12, }, /* 9.16 MPix/s */ | ||
207 | { 110, 132, 10, }, /* 11 Mpix/s */ | ||
208 | { 120, 120, 10, }, /* 12 Mpix/s */ | ||
209 | { 133, 133, 10, }, /* 13.3 Mpix/s */ | ||
210 | }; | ||
211 | |||
212 | l4_rate = rfbi.l4_khz / 1000; | ||
213 | dss1_rate = clk_get_rate(rfbi.dss1_fck) / 1000000; | ||
214 | |||
215 | for (i = 0; i < ARRAY_SIZE(ftab); i++) { | ||
216 | /* Use a window instead of an exact match, to account | ||
217 | * for different DPLL multiplier / divider pairs. | ||
218 | */ | ||
219 | if (abs(ftab[i].l4_clk - l4_rate) < 3 && | ||
220 | abs(ftab[i].dss1_clk - dss1_rate) < 3) { | ||
221 | min_l4_ticks = ftab[i].min_l4_ticks; | ||
222 | break; | ||
223 | } | ||
224 | } | ||
225 | if (i == ARRAY_SIZE(ftab)) { | ||
226 | /* Can't be sure, return anyway the maximum not | ||
227 | * rate-limited. This might cause a problem only for the | ||
228 | * tearing synchronisation. | ||
229 | */ | ||
230 | dev_err(rfbi.fbdev->dev, | ||
231 | "can't determine maximum RFBI transfer rate\n"); | ||
232 | return rfbi.l4_khz * 1000; | ||
233 | } | ||
234 | return rfbi.l4_khz * 1000 / min_l4_ticks; | ||
235 | } | ||
236 | #else | ||
237 | static int rfbi_get_max_tx_rate(void) | ||
238 | { | ||
239 | return rfbi.l4_khz * 1000; | ||
240 | } | ||
241 | #endif | ||
242 | |||
243 | |||
244 | static int rfbi_convert_timings(struct extif_timings *t) | ||
245 | { | ||
246 | u32 l; | ||
247 | int reon, reoff, weon, weoff, cson, csoff, cs_pulse; | ||
248 | int actim, recyc, wecyc; | ||
249 | int div = t->clk_div; | ||
250 | |||
251 | if (div <= 0 || div > 2) | ||
252 | return -1; | ||
253 | |||
254 | /* Make sure that after conversion it still holds that: | ||
255 | * weoff > weon, reoff > reon, recyc >= reoff, wecyc >= weoff, | ||
256 | * csoff > cson, csoff >= max(weoff, reoff), actim > reon | ||
257 | */ | ||
258 | weon = ps_to_rfbi_ticks(t->we_on_time, div); | ||
259 | weoff = ps_to_rfbi_ticks(t->we_off_time, div); | ||
260 | if (weoff <= weon) | ||
261 | weoff = weon + 1; | ||
262 | if (weon > 0x0f) | ||
263 | return -1; | ||
264 | if (weoff > 0x3f) | ||
265 | return -1; | ||
266 | |||
267 | reon = ps_to_rfbi_ticks(t->re_on_time, div); | ||
268 | reoff = ps_to_rfbi_ticks(t->re_off_time, div); | ||
269 | if (reoff <= reon) | ||
270 | reoff = reon + 1; | ||
271 | if (reon > 0x0f) | ||
272 | return -1; | ||
273 | if (reoff > 0x3f) | ||
274 | return -1; | ||
275 | |||
276 | cson = ps_to_rfbi_ticks(t->cs_on_time, div); | ||
277 | csoff = ps_to_rfbi_ticks(t->cs_off_time, div); | ||
278 | if (csoff <= cson) | ||
279 | csoff = cson + 1; | ||
280 | if (csoff < max(weoff, reoff)) | ||
281 | csoff = max(weoff, reoff); | ||
282 | if (cson > 0x0f) | ||
283 | return -1; | ||
284 | if (csoff > 0x3f) | ||
285 | return -1; | ||
286 | |||
287 | l = cson; | ||
288 | l |= csoff << 4; | ||
289 | l |= weon << 10; | ||
290 | l |= weoff << 14; | ||
291 | l |= reon << 20; | ||
292 | l |= reoff << 24; | ||
293 | |||
294 | t->tim[0] = l; | ||
295 | |||
296 | actim = ps_to_rfbi_ticks(t->access_time, div); | ||
297 | if (actim <= reon) | ||
298 | actim = reon + 1; | ||
299 | if (actim > 0x3f) | ||
300 | return -1; | ||
301 | |||
302 | wecyc = ps_to_rfbi_ticks(t->we_cycle_time, div); | ||
303 | if (wecyc < weoff) | ||
304 | wecyc = weoff; | ||
305 | if (wecyc > 0x3f) | ||
306 | return -1; | ||
307 | |||
308 | recyc = ps_to_rfbi_ticks(t->re_cycle_time, div); | ||
309 | if (recyc < reoff) | ||
310 | recyc = reoff; | ||
311 | if (recyc > 0x3f) | ||
312 | return -1; | ||
313 | |||
314 | cs_pulse = ps_to_rfbi_ticks(t->cs_pulse_width, div); | ||
315 | if (cs_pulse > 0x3f) | ||
316 | return -1; | ||
317 | |||
318 | l = wecyc; | ||
319 | l |= recyc << 6; | ||
320 | l |= cs_pulse << 12; | ||
321 | l |= actim << 22; | ||
322 | |||
323 | t->tim[1] = l; | ||
324 | |||
325 | t->tim[2] = div - 1; | ||
326 | |||
327 | t->converted = 1; | ||
328 | |||
329 | return 0; | ||
330 | } | ||
331 | |||
332 | static int rfbi_setup_tearsync(unsigned pin_cnt, | ||
333 | unsigned hs_pulse_time, unsigned vs_pulse_time, | ||
334 | int hs_pol_inv, int vs_pol_inv, int extif_div) | ||
335 | { | ||
336 | int hs, vs; | ||
337 | int min; | ||
338 | u32 l; | ||
339 | |||
340 | if (pin_cnt != 1 && pin_cnt != 2) | ||
341 | return -EINVAL; | ||
342 | |||
343 | hs = ps_to_rfbi_ticks(hs_pulse_time, 1); | ||
344 | vs = ps_to_rfbi_ticks(vs_pulse_time, 1); | ||
345 | if (hs < 2) | ||
346 | return -EDOM; | ||
347 | if (pin_cnt == 2) | ||
348 | min = 2; | ||
349 | else | ||
350 | min = 4; | ||
351 | if (vs < min) | ||
352 | return -EDOM; | ||
353 | if (vs == hs) | ||
354 | return -EINVAL; | ||
355 | rfbi.tearsync_pin_cnt = pin_cnt; | ||
356 | dev_dbg(rfbi.fbdev->dev, | ||
357 | "setup_tearsync: pins %d hs %d vs %d hs_inv %d vs_inv %d\n", | ||
358 | pin_cnt, hs, vs, hs_pol_inv, vs_pol_inv); | ||
359 | |||
360 | rfbi_enable_clocks(1); | ||
361 | rfbi_write_reg(RFBI_HSYNC_WIDTH, hs); | ||
362 | rfbi_write_reg(RFBI_VSYNC_WIDTH, vs); | ||
363 | |||
364 | l = rfbi_read_reg(RFBI_CONFIG0); | ||
365 | if (hs_pol_inv) | ||
366 | l &= ~(1 << 21); | ||
367 | else | ||
368 | l |= 1 << 21; | ||
369 | if (vs_pol_inv) | ||
370 | l &= ~(1 << 20); | ||
371 | else | ||
372 | l |= 1 << 20; | ||
373 | rfbi_enable_clocks(0); | ||
374 | |||
375 | return 0; | ||
376 | } | ||
377 | |||
378 | static int rfbi_enable_tearsync(int enable, unsigned line) | ||
379 | { | ||
380 | u32 l; | ||
381 | |||
382 | dev_dbg(rfbi.fbdev->dev, "tearsync %d line %d mode %d\n", | ||
383 | enable, line, rfbi.tearsync_mode); | ||
384 | if (line > (1 << 11) - 1) | ||
385 | return -EINVAL; | ||
386 | |||
387 | rfbi_enable_clocks(1); | ||
388 | l = rfbi_read_reg(RFBI_CONFIG0); | ||
389 | l &= ~(0x3 << 2); | ||
390 | if (enable) { | ||
391 | rfbi.tearsync_mode = rfbi.tearsync_pin_cnt; | ||
392 | l |= rfbi.tearsync_mode << 2; | ||
393 | } else | ||
394 | rfbi.tearsync_mode = 0; | ||
395 | rfbi_write_reg(RFBI_CONFIG0, l); | ||
396 | rfbi_write_reg(RFBI_LINE_NUMBER, line); | ||
397 | rfbi_enable_clocks(0); | ||
398 | |||
399 | return 0; | ||
400 | } | ||
401 | |||
402 | static void rfbi_write_command(const void *buf, unsigned int len) | ||
403 | { | ||
404 | rfbi_enable_clocks(1); | ||
405 | if (rfbi.bits_per_cycle == 16) { | ||
406 | const u16 *w = buf; | ||
407 | BUG_ON(len & 1); | ||
408 | for (; len; len -= 2) | ||
409 | rfbi_write_reg(RFBI_CMD, *w++); | ||
410 | } else { | ||
411 | const u8 *b = buf; | ||
412 | BUG_ON(rfbi.bits_per_cycle != 8); | ||
413 | for (; len; len--) | ||
414 | rfbi_write_reg(RFBI_CMD, *b++); | ||
415 | } | ||
416 | rfbi_enable_clocks(0); | ||
417 | } | ||
418 | |||
419 | static void rfbi_read_data(void *buf, unsigned int len) | ||
420 | { | ||
421 | rfbi_enable_clocks(1); | ||
422 | if (rfbi.bits_per_cycle == 16) { | ||
423 | u16 *w = buf; | ||
424 | BUG_ON(len & ~1); | ||
425 | for (; len; len -= 2) { | ||
426 | rfbi_write_reg(RFBI_READ, 0); | ||
427 | *w++ = rfbi_read_reg(RFBI_READ); | ||
428 | } | ||
429 | } else { | ||
430 | u8 *b = buf; | ||
431 | BUG_ON(rfbi.bits_per_cycle != 8); | ||
432 | for (; len; len--) { | ||
433 | rfbi_write_reg(RFBI_READ, 0); | ||
434 | *b++ = rfbi_read_reg(RFBI_READ); | ||
435 | } | ||
436 | } | ||
437 | rfbi_enable_clocks(0); | ||
438 | } | ||
439 | |||
440 | static void rfbi_write_data(const void *buf, unsigned int len) | ||
441 | { | ||
442 | rfbi_enable_clocks(1); | ||
443 | if (rfbi.bits_per_cycle == 16) { | ||
444 | const u16 *w = buf; | ||
445 | BUG_ON(len & 1); | ||
446 | for (; len; len -= 2) | ||
447 | rfbi_write_reg(RFBI_PARAM, *w++); | ||
448 | } else { | ||
449 | const u8 *b = buf; | ||
450 | BUG_ON(rfbi.bits_per_cycle != 8); | ||
451 | for (; len; len--) | ||
452 | rfbi_write_reg(RFBI_PARAM, *b++); | ||
453 | } | ||
454 | rfbi_enable_clocks(0); | ||
455 | } | ||
456 | |||
457 | static void rfbi_transfer_area(int width, int height, | ||
458 | void (callback)(void * data), void *data) | ||
459 | { | ||
460 | u32 w; | ||
461 | |||
462 | BUG_ON(callback == NULL); | ||
463 | |||
464 | rfbi_enable_clocks(1); | ||
465 | omap_dispc_set_lcd_size(width, height); | ||
466 | |||
467 | rfbi.lcdc_callback = callback; | ||
468 | rfbi.lcdc_callback_data = data; | ||
469 | |||
470 | rfbi_write_reg(RFBI_PIXEL_CNT, width * height); | ||
471 | |||
472 | w = rfbi_read_reg(RFBI_CONTROL); | ||
473 | w |= 1; /* enable */ | ||
474 | if (!rfbi.tearsync_mode) | ||
475 | w |= 1 << 4; /* internal trigger, reset by HW */ | ||
476 | rfbi_write_reg(RFBI_CONTROL, w); | ||
477 | |||
478 | omap_dispc_enable_lcd_out(1); | ||
479 | } | ||
480 | |||
481 | static inline void _stop_transfer(void) | ||
482 | { | ||
483 | u32 w; | ||
484 | |||
485 | w = rfbi_read_reg(RFBI_CONTROL); | ||
486 | rfbi_write_reg(RFBI_CONTROL, w & ~(1 << 0)); | ||
487 | rfbi_enable_clocks(0); | ||
488 | } | ||
489 | |||
490 | static void rfbi_dma_callback(void *data) | ||
491 | { | ||
492 | _stop_transfer(); | ||
493 | rfbi.lcdc_callback(rfbi.lcdc_callback_data); | ||
494 | } | ||
495 | |||
496 | static void rfbi_set_bits_per_cycle(int bpc) | ||
497 | { | ||
498 | u32 l; | ||
499 | |||
500 | rfbi_enable_clocks(1); | ||
501 | l = rfbi_read_reg(RFBI_CONFIG0); | ||
502 | l &= ~(0x03 << 0); | ||
503 | |||
504 | switch (bpc) { | ||
505 | case 8: | ||
506 | break; | ||
507 | case 16: | ||
508 | l |= 3; | ||
509 | break; | ||
510 | default: | ||
511 | BUG(); | ||
512 | } | ||
513 | rfbi_write_reg(RFBI_CONFIG0, l); | ||
514 | rfbi.bits_per_cycle = bpc; | ||
515 | rfbi_enable_clocks(0); | ||
516 | } | ||
517 | |||
518 | static int rfbi_init(struct omapfb_device *fbdev) | ||
519 | { | ||
520 | u32 l; | ||
521 | int r; | ||
522 | |||
523 | rfbi.fbdev = fbdev; | ||
524 | rfbi.base = ioremap(RFBI_BASE, SZ_1K); | ||
525 | if (!rfbi.base) { | ||
526 | dev_err(fbdev->dev, "can't ioremap RFBI\n"); | ||
527 | return -ENOMEM; | ||
528 | } | ||
529 | |||
530 | if ((r = rfbi_get_clocks()) < 0) | ||
531 | return r; | ||
532 | rfbi_enable_clocks(1); | ||
533 | |||
534 | rfbi.l4_khz = clk_get_rate(rfbi.dss_ick) / 1000; | ||
535 | |||
536 | /* Reset */ | ||
537 | rfbi_write_reg(RFBI_SYSCONFIG, 1 << 1); | ||
538 | while (!(rfbi_read_reg(RFBI_SYSSTATUS) & (1 << 0))); | ||
539 | |||
540 | l = rfbi_read_reg(RFBI_SYSCONFIG); | ||
541 | /* Enable autoidle and smart-idle */ | ||
542 | l |= (1 << 0) | (2 << 3); | ||
543 | rfbi_write_reg(RFBI_SYSCONFIG, l); | ||
544 | |||
545 | /* 16-bit interface, ITE trigger mode, 16-bit data */ | ||
546 | l = (0x03 << 0) | (0x00 << 2) | (0x01 << 5) | (0x02 << 7); | ||
547 | l |= (0 << 9) | (1 << 20) | (1 << 21); | ||
548 | rfbi_write_reg(RFBI_CONFIG0, l); | ||
549 | |||
550 | rfbi_write_reg(RFBI_DATA_CYCLE1_0, 0x00000010); | ||
551 | |||
552 | l = rfbi_read_reg(RFBI_CONTROL); | ||
553 | /* Select CS0, clear bypass mode */ | ||
554 | l = (0x01 << 2); | ||
555 | rfbi_write_reg(RFBI_CONTROL, l); | ||
556 | |||
557 | r = omap_dispc_request_irq(DISPC_IRQ_FRAMEMASK, rfbi_dma_callback, | ||
558 | NULL); | ||
559 | if (r < 0) { | ||
560 | dev_err(fbdev->dev, "can't get DISPC irq\n"); | ||
561 | rfbi_enable_clocks(0); | ||
562 | return r; | ||
563 | } | ||
564 | |||
565 | l = rfbi_read_reg(RFBI_REVISION); | ||
566 | pr_info("omapfb: RFBI version %d.%d initialized\n", | ||
567 | (l >> 4) & 0x0f, l & 0x0f); | ||
568 | |||
569 | rfbi_enable_clocks(0); | ||
570 | |||
571 | return 0; | ||
572 | } | ||
573 | |||
574 | static void rfbi_cleanup(void) | ||
575 | { | ||
576 | omap_dispc_free_irq(DISPC_IRQ_FRAMEMASK, rfbi_dma_callback, NULL); | ||
577 | rfbi_put_clocks(); | ||
578 | iounmap(rfbi.base); | ||
579 | } | ||
580 | |||
581 | const struct lcd_ctrl_extif omap2_ext_if = { | ||
582 | .init = rfbi_init, | ||
583 | .cleanup = rfbi_cleanup, | ||
584 | .get_clk_info = rfbi_get_clk_info, | ||
585 | .get_max_tx_rate = rfbi_get_max_tx_rate, | ||
586 | .set_bits_per_cycle = rfbi_set_bits_per_cycle, | ||
587 | .convert_timings = rfbi_convert_timings, | ||
588 | .set_timings = rfbi_set_timings, | ||
589 | .write_command = rfbi_write_command, | ||
590 | .read_data = rfbi_read_data, | ||
591 | .write_data = rfbi_write_data, | ||
592 | .transfer_area = rfbi_transfer_area, | ||
593 | .setup_tearsync = rfbi_setup_tearsync, | ||
594 | .enable_tearsync = rfbi_enable_tearsync, | ||
595 | |||
596 | .max_transmit_size = (u32) ~0, | ||
597 | }; | ||
598 | |||