1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Epson HWA742 LCD controller driver
5 * Copyright (C) 2004-2005 Nokia Corporation
6 * Authors: Juha Yrjölä <juha.yrjola@nokia.com>
7 * Imre Deak <imre.deak@nokia.com>
8 * YUV support: Jussi Laako <jussi.laako@nokia.com>
10 #include <linux/module.h>
13 #include <linux/delay.h>
14 #include <linux/clk.h>
15 #include <linux/interrupt.h>
19 #define HWA742_REV_CODE_REG 0x0
20 #define HWA742_CONFIG_REG 0x2
21 #define HWA742_PLL_DIV_REG 0x4
22 #define HWA742_PLL_0_REG 0x6
23 #define HWA742_PLL_1_REG 0x8
24 #define HWA742_PLL_2_REG 0xa
25 #define HWA742_PLL_3_REG 0xc
26 #define HWA742_PLL_4_REG 0xe
27 #define HWA742_CLK_SRC_REG 0x12
28 #define HWA742_PANEL_TYPE_REG 0x14
29 #define HWA742_H_DISP_REG 0x16
30 #define HWA742_H_NDP_REG 0x18
31 #define HWA742_V_DISP_1_REG 0x1a
32 #define HWA742_V_DISP_2_REG 0x1c
33 #define HWA742_V_NDP_REG 0x1e
34 #define HWA742_HS_W_REG 0x20
35 #define HWA742_HP_S_REG 0x22
36 #define HWA742_VS_W_REG 0x24
37 #define HWA742_VP_S_REG 0x26
38 #define HWA742_PCLK_POL_REG 0x28
39 #define HWA742_INPUT_MODE_REG 0x2a
40 #define HWA742_TRANSL_MODE_REG1 0x2e
41 #define HWA742_DISP_MODE_REG 0x34
42 #define HWA742_WINDOW_TYPE 0x36
43 #define HWA742_WINDOW_X_START_0 0x38
44 #define HWA742_WINDOW_X_START_1 0x3a
45 #define HWA742_WINDOW_Y_START_0 0x3c
46 #define HWA742_WINDOW_Y_START_1 0x3e
47 #define HWA742_WINDOW_X_END_0 0x40
48 #define HWA742_WINDOW_X_END_1 0x42
49 #define HWA742_WINDOW_Y_END_0 0x44
50 #define HWA742_WINDOW_Y_END_1 0x46
51 #define HWA742_MEMORY_WRITE_LSB 0x48
52 #define HWA742_MEMORY_WRITE_MSB 0x49
53 #define HWA742_MEMORY_READ_0 0x4a
54 #define HWA742_MEMORY_READ_1 0x4c
55 #define HWA742_MEMORY_READ_2 0x4e
56 #define HWA742_POWER_SAVE 0x56
57 #define HWA742_NDP_CTRL 0x58
59 #define HWA742_AUTO_UPDATE_TIME (HZ / 20)
61 /* Reserve 4 request slots for requests in irq context */
62 #define REQ_POOL_SIZE 24
63 #define IRQ_REQ_POOL_SIZE 4
65 #define REQ_FROM_IRQ_POOL 0x01
67 #define REQ_COMPLETE 0
71 int x
, y
, width
, height
;
76 struct hwa742_request
{
77 struct list_head entry
;
80 int (*handler
)(struct hwa742_request
*req
);
81 void (*complete
)(void *data
);
85 struct update_param update
;
86 struct completion
*sync
;
91 enum omapfb_update_mode update_mode
;
92 enum omapfb_update_mode update_mode_before_suspend
;
94 struct timer_list auto_update_timer
;
96 struct omapfb_update_window auto_update_window
;
97 unsigned te_connected
:1;
98 unsigned vsync_only
:1;
100 struct hwa742_request req_pool
[REQ_POOL_SIZE
];
101 struct list_head pending_req_list
;
102 struct list_head free_req_list
;
105 * @req_lock: protect request slots pool and its tracking lists
106 * @req_sema: counter; slot allocators from task contexts must
107 * push it down before acquiring a slot. This
108 * guarantees that atomic contexts will always have
109 * a minimum of IRQ_REQ_POOL_SIZE slots available.
111 struct semaphore req_sema
;
114 struct extif_timings reg_timings
, lut_timings
;
120 u32 max_transmit_size
;
121 u32 extif_clk_period
;
122 unsigned long pix_tx_time
;
123 unsigned long line_upd_time
;
126 struct omapfb_device
*fbdev
;
127 struct lcd_ctrl_extif
*extif
;
128 const struct lcd_ctrl
*int_ctrl
;
133 struct lcd_ctrl hwa742_ctrl
;
135 static u8
hwa742_read_reg(u8 reg
)
139 hwa742
.extif
->set_bits_per_cycle(8);
140 hwa742
.extif
->write_command(®
, 1);
141 hwa742
.extif
->read_data(&data
, 1);
146 static void hwa742_write_reg(u8 reg
, u8 data
)
148 hwa742
.extif
->set_bits_per_cycle(8);
149 hwa742
.extif
->write_command(®
, 1);
150 hwa742
.extif
->write_data(&data
, 1);
153 static void set_window_regs(int x_start
, int y_start
, int x_end
, int y_end
)
161 tmp
[1] = x_start
>> 8;
163 tmp
[3] = y_start
>> 8;
169 hwa742
.extif
->set_bits_per_cycle(8);
170 cmd
= HWA742_WINDOW_X_START_0
;
172 hwa742
.extif
->write_command(&cmd
, 1);
174 hwa742
.extif
->write_data(tmp
, 8);
177 static void set_format_regs(int conv
, int transl
, int flags
)
179 if (flags
& OMAPFB_FORMAT_FLAG_DOUBLE
) {
180 hwa742
.window_type
= ((hwa742
.window_type
& 0xfc) | 0x01);
182 dev_dbg(hwa742
.fbdev
->dev
, "hwa742: enabled pixel doubling\n");
185 hwa742
.window_type
= (hwa742
.window_type
& 0xfc);
187 dev_dbg(hwa742
.fbdev
->dev
, "hwa742: disabled pixel doubling\n");
191 hwa742_write_reg(HWA742_INPUT_MODE_REG
, conv
);
192 hwa742_write_reg(HWA742_TRANSL_MODE_REG1
, transl
);
193 hwa742_write_reg(HWA742_WINDOW_TYPE
, hwa742
.window_type
);
196 static void enable_tearsync(int y
, int width
, int height
, int screen_height
,
201 b
= hwa742_read_reg(HWA742_NDP_CTRL
);
203 hwa742_write_reg(HWA742_NDP_CTRL
, b
);
205 if (likely(hwa742
.vsync_only
|| force_vsync
)) {
206 hwa742
.extif
->enable_tearsync(1, 0);
210 if (width
* hwa742
.pix_tx_time
< hwa742
.line_upd_time
) {
211 hwa742
.extif
->enable_tearsync(1, 0);
215 if ((width
* hwa742
.pix_tx_time
/ 1000) * height
<
216 (y
+ height
) * (hwa742
.line_upd_time
/ 1000)) {
217 hwa742
.extif
->enable_tearsync(1, 0);
221 hwa742
.extif
->enable_tearsync(1, y
+ 1);
224 static void disable_tearsync(void)
228 hwa742
.extif
->enable_tearsync(0, 0);
230 b
= hwa742_read_reg(HWA742_NDP_CTRL
);
232 hwa742_write_reg(HWA742_NDP_CTRL
, b
);
235 static inline struct hwa742_request
*alloc_req(bool can_sleep
)
238 struct hwa742_request
*req
;
242 down(&hwa742
.req_sema
);
244 req_flags
= REQ_FROM_IRQ_POOL
;
246 spin_lock_irqsave(&hwa742
.req_lock
, flags
);
247 BUG_ON(list_empty(&hwa742
.free_req_list
));
248 req
= list_entry(hwa742
.free_req_list
.next
,
249 struct hwa742_request
, entry
);
250 list_del(&req
->entry
);
251 spin_unlock_irqrestore(&hwa742
.req_lock
, flags
);
253 INIT_LIST_HEAD(&req
->entry
);
254 req
->flags
= req_flags
;
259 static inline void free_req(struct hwa742_request
*req
)
263 spin_lock_irqsave(&hwa742
.req_lock
, flags
);
265 list_move(&req
->entry
, &hwa742
.free_req_list
);
266 if (!(req
->flags
& REQ_FROM_IRQ_POOL
))
267 up(&hwa742
.req_sema
);
269 spin_unlock_irqrestore(&hwa742
.req_lock
, flags
);
272 static void process_pending_requests(void)
276 spin_lock_irqsave(&hwa742
.req_lock
, flags
);
278 while (!list_empty(&hwa742
.pending_req_list
)) {
279 struct hwa742_request
*req
;
280 void (*complete
)(void *);
283 req
= list_entry(hwa742
.pending_req_list
.next
,
284 struct hwa742_request
, entry
);
285 spin_unlock_irqrestore(&hwa742
.req_lock
, flags
);
287 if (req
->handler(req
) == REQ_PENDING
)
290 complete
= req
->complete
;
291 complete_data
= req
->complete_data
;
295 complete(complete_data
);
297 spin_lock_irqsave(&hwa742
.req_lock
, flags
);
300 spin_unlock_irqrestore(&hwa742
.req_lock
, flags
);
303 static void submit_req_list(struct list_head
*head
)
308 spin_lock_irqsave(&hwa742
.req_lock
, flags
);
309 if (likely(!list_empty(&hwa742
.pending_req_list
)))
311 list_splice_init(head
, hwa742
.pending_req_list
.prev
);
312 spin_unlock_irqrestore(&hwa742
.req_lock
, flags
);
315 process_pending_requests();
318 static void request_complete(void *data
)
320 struct hwa742_request
*req
= (struct hwa742_request
*)data
;
321 void (*complete
)(void *);
324 complete
= req
->complete
;
325 complete_data
= req
->complete_data
;
330 complete(complete_data
);
332 process_pending_requests();
335 static int send_frame_handler(struct hwa742_request
*req
)
337 struct update_param
*par
= &req
->par
.update
;
344 unsigned long offset
;
345 int color_mode
= par
->color_mode
;
346 int flags
= par
->flags
;
347 int scr_width
= hwa742
.fbdev
->panel
->x_res
;
348 int scr_height
= hwa742
.fbdev
->panel
->y_res
;
351 dev_dbg(hwa742
.fbdev
->dev
, "x %d y %d w %d h %d scr_width %d "
352 "color_mode %d flags %d\n",
353 x
, y
, w
, h
, scr_width
, color_mode
, flags
);
356 switch (color_mode
) {
357 case OMAPFB_COLOR_YUV422
:
362 case OMAPFB_COLOR_YUV420
:
367 case OMAPFB_COLOR_RGB565
:
376 if (hwa742
.prev_flags
!= flags
||
377 hwa742
.prev_color_mode
!= color_mode
) {
378 set_format_regs(conv
, transl
, flags
);
379 hwa742
.prev_color_mode
= color_mode
;
380 hwa742
.prev_flags
= flags
;
382 flags
= req
->par
.update
.flags
;
383 if (flags
& OMAPFB_FORMAT_FLAG_TEARSYNC
)
384 enable_tearsync(y
, scr_width
, h
, scr_height
,
385 flags
& OMAPFB_FORMAT_FLAG_FORCE_VSYNC
);
389 set_window_regs(x
, y
, x
+ w
, y
+ h
);
391 offset
= (scr_width
* y
+ x
) * bpp
/ 8;
393 hwa742
.int_ctrl
->setup_plane(OMAPFB_PLANE_GFX
,
394 OMAPFB_CHANNEL_OUT_LCD
, offset
, scr_width
, 0, 0, w
, h
,
397 hwa742
.extif
->set_bits_per_cycle(16);
399 hwa742
.int_ctrl
->enable_plane(OMAPFB_PLANE_GFX
, 1);
400 hwa742
.extif
->transfer_area(w
, h
, request_complete
, req
);
405 static void send_frame_complete(void *data
)
407 hwa742
.int_ctrl
->enable_plane(OMAPFB_PLANE_GFX
, 0);
410 #define ADD_PREQ(_x, _y, _w, _h, can_sleep) do {\
411 req = alloc_req(can_sleep); \
412 req->handler = send_frame_handler; \
413 req->complete = send_frame_complete; \
414 req->par.update.x = _x; \
415 req->par.update.y = _y; \
416 req->par.update.width = _w; \
417 req->par.update.height = _h; \
418 req->par.update.color_mode = color_mode;\
419 req->par.update.flags = flags; \
420 list_add_tail(&req->entry, req_head); \
423 static void create_req_list(struct omapfb_update_window
*win
,
424 struct list_head
*req_head
,
427 struct hwa742_request
*req
;
430 int width
= win
->width
;
431 int height
= win
->height
;
435 flags
= win
->format
& ~OMAPFB_FORMAT_MASK
;
436 color_mode
= win
->format
& OMAPFB_FORMAT_MASK
;
439 ADD_PREQ(x
, y
, 1, height
, can_sleep
);
442 flags
&= ~OMAPFB_FORMAT_FLAG_TEARSYNC
;
445 unsigned int xspan
= width
& ~1;
446 unsigned int ystart
= y
;
447 unsigned int yspan
= height
;
449 if (xspan
* height
* 2 > hwa742
.max_transmit_size
) {
450 yspan
= hwa742
.max_transmit_size
/ (xspan
* 2);
451 ADD_PREQ(x
, ystart
, xspan
, yspan
, can_sleep
);
453 yspan
= height
- yspan
;
454 flags
&= ~OMAPFB_FORMAT_FLAG_TEARSYNC
;
457 ADD_PREQ(x
, ystart
, xspan
, yspan
, can_sleep
);
460 flags
&= ~OMAPFB_FORMAT_FLAG_TEARSYNC
;
463 ADD_PREQ(x
, y
, 1, height
, can_sleep
);
466 static void auto_update_complete(void *data
)
468 if (!hwa742
.stop_auto_update
)
469 mod_timer(&hwa742
.auto_update_timer
,
470 jiffies
+ HWA742_AUTO_UPDATE_TIME
);
473 static void __hwa742_update_window_auto(bool can_sleep
)
476 struct hwa742_request
*last
;
478 create_req_list(&hwa742
.auto_update_window
, &req_list
, can_sleep
);
479 last
= list_entry(req_list
.prev
, struct hwa742_request
, entry
);
481 last
->complete
= auto_update_complete
;
482 last
->complete_data
= NULL
;
484 submit_req_list(&req_list
);
487 static void hwa742_update_window_auto(struct timer_list
*unused
)
489 __hwa742_update_window_auto(false);
492 static int hwa742_update_window_async(struct fb_info
*fbi
,
493 struct omapfb_update_window
*win
,
494 void (*complete_callback
)(void *arg
),
495 void *complete_callback_data
)
498 struct hwa742_request
*last
;
501 if (hwa742
.update_mode
!= OMAPFB_MANUAL_UPDATE
) {
502 dev_dbg(hwa742
.fbdev
->dev
, "invalid update mode\n");
506 if (unlikely(win
->format
&
507 ~(0x03 | OMAPFB_FORMAT_FLAG_DOUBLE
|
508 OMAPFB_FORMAT_FLAG_TEARSYNC
| OMAPFB_FORMAT_FLAG_FORCE_VSYNC
))) {
509 dev_dbg(hwa742
.fbdev
->dev
, "invalid window flag\n");
514 create_req_list(win
, &req_list
, true);
515 last
= list_entry(req_list
.prev
, struct hwa742_request
, entry
);
517 last
->complete
= complete_callback
;
518 last
->complete_data
= (void *)complete_callback_data
;
520 submit_req_list(&req_list
);
526 static int hwa742_setup_plane(int plane
, int channel_out
,
527 unsigned long offset
, int screen_width
,
528 int pos_x
, int pos_y
, int width
, int height
,
531 if (plane
!= OMAPFB_PLANE_GFX
||
532 channel_out
!= OMAPFB_CHANNEL_OUT_LCD
)
538 static int hwa742_enable_plane(int plane
, int enable
)
543 hwa742
.int_ctrl
->enable_plane(plane
, enable
);
548 static int sync_handler(struct hwa742_request
*req
)
550 complete(req
->par
.sync
);
554 static void hwa742_sync(void)
557 struct hwa742_request
*req
;
558 struct completion comp
;
560 req
= alloc_req(true);
562 req
->handler
= sync_handler
;
563 req
->complete
= NULL
;
564 init_completion(&comp
);
565 req
->par
.sync
= &comp
;
567 list_add(&req
->entry
, &req_list
);
568 submit_req_list(&req_list
);
570 wait_for_completion(&comp
);
573 static void hwa742_bind_client(struct omapfb_notifier_block
*nb
)
575 dev_dbg(hwa742
.fbdev
->dev
, "update_mode %d\n", hwa742
.update_mode
);
576 if (hwa742
.update_mode
== OMAPFB_MANUAL_UPDATE
) {
577 omapfb_notify_clients(hwa742
.fbdev
, OMAPFB_EVENT_READY
);
581 static int hwa742_set_update_mode(enum omapfb_update_mode mode
)
583 if (mode
!= OMAPFB_MANUAL_UPDATE
&& mode
!= OMAPFB_AUTO_UPDATE
&&
584 mode
!= OMAPFB_UPDATE_DISABLED
)
587 if (mode
== hwa742
.update_mode
)
590 dev_info(hwa742
.fbdev
->dev
, "HWA742: setting update mode to %s\n",
591 mode
== OMAPFB_UPDATE_DISABLED
? "disabled" :
592 (mode
== OMAPFB_AUTO_UPDATE
? "auto" : "manual"));
594 switch (hwa742
.update_mode
) {
595 case OMAPFB_MANUAL_UPDATE
:
596 omapfb_notify_clients(hwa742
.fbdev
, OMAPFB_EVENT_DISABLED
);
598 case OMAPFB_AUTO_UPDATE
:
599 hwa742
.stop_auto_update
= 1;
600 del_timer_sync(&hwa742
.auto_update_timer
);
602 case OMAPFB_UPDATE_DISABLED
:
606 hwa742
.update_mode
= mode
;
608 hwa742
.stop_auto_update
= 0;
611 case OMAPFB_MANUAL_UPDATE
:
612 omapfb_notify_clients(hwa742
.fbdev
, OMAPFB_EVENT_READY
);
614 case OMAPFB_AUTO_UPDATE
:
615 __hwa742_update_window_auto(true);
617 case OMAPFB_UPDATE_DISABLED
:
624 static enum omapfb_update_mode
hwa742_get_update_mode(void)
626 return hwa742
.update_mode
;
629 static unsigned long round_to_extif_ticks(unsigned long ps
, int div
)
631 int bus_tick
= hwa742
.extif_clk_period
* div
;
632 return (ps
+ bus_tick
- 1) / bus_tick
* bus_tick
;
635 static int calc_reg_timing(unsigned long sysclk
, int div
)
637 struct extif_timings
*t
;
638 unsigned long systim
;
640 /* CSOnTime 0, WEOnTime 2 ns, REOnTime 2 ns,
641 * AccessTime 2 ns + 12.2 ns (regs),
642 * WEOffTime = WEOnTime + 1 ns,
643 * REOffTime = REOnTime + 16 ns (regs),
644 * CSOffTime = REOffTime + 1 ns
645 * ReadCycle = 2ns + 2*SYSCLK (regs),
646 * WriteCycle = 2*SYSCLK + 2 ns,
647 * CSPulseWidth = 10 ns */
648 systim
= 1000000000 / (sysclk
/ 1000);
649 dev_dbg(hwa742
.fbdev
->dev
, "HWA742 systim %lu ps extif_clk_period %u ps"
650 "extif_clk_div %d\n", systim
, hwa742
.extif_clk_period
, div
);
652 t
= &hwa742
.reg_timings
;
653 memset(t
, 0, sizeof(*t
));
656 t
->we_on_time
= round_to_extif_ticks(t
->cs_on_time
+ 2000, div
);
657 t
->re_on_time
= round_to_extif_ticks(t
->cs_on_time
+ 2000, div
);
658 t
->access_time
= round_to_extif_ticks(t
->re_on_time
+ 12200, div
);
659 t
->we_off_time
= round_to_extif_ticks(t
->we_on_time
+ 1000, div
);
660 t
->re_off_time
= round_to_extif_ticks(t
->re_on_time
+ 16000, div
);
661 t
->cs_off_time
= round_to_extif_ticks(t
->re_off_time
+ 1000, div
);
662 t
->we_cycle_time
= round_to_extif_ticks(2 * systim
+ 2000, div
);
663 if (t
->we_cycle_time
< t
->we_off_time
)
664 t
->we_cycle_time
= t
->we_off_time
;
665 t
->re_cycle_time
= round_to_extif_ticks(2 * systim
+ 2000, div
);
666 if (t
->re_cycle_time
< t
->re_off_time
)
667 t
->re_cycle_time
= t
->re_off_time
;
668 t
->cs_pulse_width
= 0;
670 dev_dbg(hwa742
.fbdev
->dev
, "[reg]cson %d csoff %d reon %d reoff %d\n",
671 t
->cs_on_time
, t
->cs_off_time
, t
->re_on_time
, t
->re_off_time
);
672 dev_dbg(hwa742
.fbdev
->dev
, "[reg]weon %d weoff %d recyc %d wecyc %d\n",
673 t
->we_on_time
, t
->we_off_time
, t
->re_cycle_time
,
675 dev_dbg(hwa742
.fbdev
->dev
, "[reg]rdaccess %d cspulse %d\n",
676 t
->access_time
, t
->cs_pulse_width
);
678 return hwa742
.extif
->convert_timings(t
);
681 static int calc_lut_timing(unsigned long sysclk
, int div
)
683 struct extif_timings
*t
;
684 unsigned long systim
;
686 /* CSOnTime 0, WEOnTime 2 ns, REOnTime 2 ns,
687 * AccessTime 2 ns + 4 * SYSCLK + 26 (lut),
688 * WEOffTime = WEOnTime + 1 ns,
689 * REOffTime = REOnTime + 4*SYSCLK + 26 ns (lut),
690 * CSOffTime = REOffTime + 1 ns
691 * ReadCycle = 2ns + 4*SYSCLK + 26 ns (lut),
692 * WriteCycle = 2*SYSCLK + 2 ns,
693 * CSPulseWidth = 10 ns
695 systim
= 1000000000 / (sysclk
/ 1000);
696 dev_dbg(hwa742
.fbdev
->dev
, "HWA742 systim %lu ps extif_clk_period %u ps"
697 "extif_clk_div %d\n", systim
, hwa742
.extif_clk_period
, div
);
699 t
= &hwa742
.lut_timings
;
700 memset(t
, 0, sizeof(*t
));
705 t
->we_on_time
= round_to_extif_ticks(t
->cs_on_time
+ 2000, div
);
706 t
->re_on_time
= round_to_extif_ticks(t
->cs_on_time
+ 2000, div
);
707 t
->access_time
= round_to_extif_ticks(t
->re_on_time
+ 4 * systim
+
709 t
->we_off_time
= round_to_extif_ticks(t
->we_on_time
+ 1000, div
);
710 t
->re_off_time
= round_to_extif_ticks(t
->re_on_time
+ 4 * systim
+
712 t
->cs_off_time
= round_to_extif_ticks(t
->re_off_time
+ 1000, div
);
713 t
->we_cycle_time
= round_to_extif_ticks(2 * systim
+ 2000, div
);
714 if (t
->we_cycle_time
< t
->we_off_time
)
715 t
->we_cycle_time
= t
->we_off_time
;
716 t
->re_cycle_time
= round_to_extif_ticks(2000 + 4 * systim
+ 26000, div
);
717 if (t
->re_cycle_time
< t
->re_off_time
)
718 t
->re_cycle_time
= t
->re_off_time
;
719 t
->cs_pulse_width
= 0;
721 dev_dbg(hwa742
.fbdev
->dev
, "[lut]cson %d csoff %d reon %d reoff %d\n",
722 t
->cs_on_time
, t
->cs_off_time
, t
->re_on_time
, t
->re_off_time
);
723 dev_dbg(hwa742
.fbdev
->dev
, "[lut]weon %d weoff %d recyc %d wecyc %d\n",
724 t
->we_on_time
, t
->we_off_time
, t
->re_cycle_time
,
726 dev_dbg(hwa742
.fbdev
->dev
, "[lut]rdaccess %d cspulse %d\n",
727 t
->access_time
, t
->cs_pulse_width
);
729 return hwa742
.extif
->convert_timings(t
);
732 static int calc_extif_timings(unsigned long sysclk
, int *extif_mem_div
)
737 hwa742
.extif
->get_clk_info(&hwa742
.extif_clk_period
, &max_clk_div
);
738 for (div
= 1; div
< max_clk_div
; div
++) {
739 if (calc_reg_timing(sysclk
, div
) == 0)
742 if (div
>= max_clk_div
)
745 *extif_mem_div
= div
;
747 for (div
= 1; div
< max_clk_div
; div
++) {
748 if (calc_lut_timing(sysclk
, div
) == 0)
752 if (div
>= max_clk_div
)
758 dev_err(hwa742
.fbdev
->dev
, "can't setup timings\n");
762 static void calc_hwa742_clk_rates(unsigned long ext_clk
,
763 unsigned long *sys_clk
, unsigned long *pix_clk
)
766 int sys_div
= 0, sys_mul
= 0;
769 pix_clk_src
= hwa742_read_reg(HWA742_CLK_SRC_REG
);
770 pix_div
= ((pix_clk_src
>> 3) & 0x1f) + 1;
771 if ((pix_clk_src
& (0x3 << 1)) == 0) {
772 /* Source is the PLL */
773 sys_div
= (hwa742_read_reg(HWA742_PLL_DIV_REG
) & 0x3f) + 1;
774 sys_mul
= (hwa742_read_reg(HWA742_PLL_4_REG
) & 0x7f) + 1;
775 *sys_clk
= ext_clk
* sys_mul
/ sys_div
;
776 } else /* else source is ext clk, or oscillator */
779 *pix_clk
= *sys_clk
/ pix_div
; /* HZ */
780 dev_dbg(hwa742
.fbdev
->dev
,
781 "ext_clk %ld pix_src %d pix_div %d sys_div %d sys_mul %d\n",
782 ext_clk
, pix_clk_src
& (0x3 << 1), pix_div
, sys_div
, sys_mul
);
783 dev_dbg(hwa742
.fbdev
->dev
, "sys_clk %ld pix_clk %ld\n",
788 static int setup_tearsync(unsigned long pix_clk
, int extif_div
)
794 int hs_pol_inv
, vs_pol_inv
;
795 int use_hsvs
, use_ndp
;
798 hsw
= hwa742_read_reg(HWA742_HS_W_REG
);
799 vsw
= hwa742_read_reg(HWA742_VS_W_REG
);
800 hs_pol_inv
= !(hsw
& 0x80);
801 vs_pol_inv
= !(vsw
& 0x80);
805 hdisp
= (hwa742_read_reg(HWA742_H_DISP_REG
) & 0x7f) * 8;
806 vdisp
= hwa742_read_reg(HWA742_V_DISP_1_REG
) +
807 ((hwa742_read_reg(HWA742_V_DISP_2_REG
) & 0x3) << 8);
809 hndp
= hwa742_read_reg(HWA742_H_NDP_REG
) & 0x7f;
810 vndp
= hwa742_read_reg(HWA742_V_NDP_REG
);
812 /* time to transfer one pixel (16bpp) in ps */
813 hwa742
.pix_tx_time
= hwa742
.reg_timings
.we_cycle_time
;
814 if (hwa742
.extif
->get_max_tx_rate
!= NULL
) {
816 * The external interface might have a rate limitation,
817 * if so, we have to maximize our transfer rate.
819 unsigned long min_tx_time
;
820 unsigned long max_tx_rate
= hwa742
.extif
->get_max_tx_rate();
822 dev_dbg(hwa742
.fbdev
->dev
, "max_tx_rate %ld HZ\n",
824 min_tx_time
= 1000000000 / (max_tx_rate
/ 1000); /* ps */
825 if (hwa742
.pix_tx_time
< min_tx_time
)
826 hwa742
.pix_tx_time
= min_tx_time
;
829 /* time to update one line in ps */
830 hwa742
.line_upd_time
= (hdisp
+ hndp
) * 1000000 / (pix_clk
/ 1000);
831 hwa742
.line_upd_time
*= 1000;
832 if (hdisp
* hwa742
.pix_tx_time
> hwa742
.line_upd_time
)
834 * transfer speed too low, we might have to use both
839 /* decent transfer speed, we'll always use only VS */
842 if (use_hsvs
&& (hs_pol_inv
|| vs_pol_inv
)) {
844 * HS or'ed with VS doesn't work, use the active high
845 * TE signal based on HNDP / VNDP
854 * Use HS or'ed with VS as a TE signal if both are needed
855 * or VNDP if only vsync is needed.
866 hs
= hs
* 1000000 / (pix_clk
/ 1000); /* ps */
869 vs
= vs
* (hdisp
+ hndp
) * 1000000 / (pix_clk
/ 1000); /* ps */
874 /* set VS to 120% of HS to minimize VS detection time */
876 /* minimize HS too */
879 b
= hwa742_read_reg(HWA742_NDP_CTRL
);
881 b
|= use_hsvs
? 1 : 0;
882 b
|= (use_ndp
&& use_hsvs
) ? 0 : 2;
883 hwa742_write_reg(HWA742_NDP_CTRL
, b
);
885 hwa742
.vsync_only
= !use_hsvs
;
887 dev_dbg(hwa742
.fbdev
->dev
,
888 "pix_clk %ld HZ pix_tx_time %ld ps line_upd_time %ld ps\n",
889 pix_clk
, hwa742
.pix_tx_time
, hwa742
.line_upd_time
);
890 dev_dbg(hwa742
.fbdev
->dev
,
891 "hs %d ps vs %d ps mode %d vsync_only %d\n",
892 hs
, vs
, (b
& 0x3), !use_hsvs
);
894 return hwa742
.extif
->setup_tearsync(1, hs
, vs
,
895 hs_pol_inv
, vs_pol_inv
, extif_div
);
898 static void hwa742_get_caps(int plane
, struct omapfb_caps
*caps
)
900 hwa742
.int_ctrl
->get_caps(plane
, caps
);
901 caps
->ctrl
|= OMAPFB_CAPS_MANUAL_UPDATE
|
902 OMAPFB_CAPS_WINDOW_PIXEL_DOUBLE
;
903 if (hwa742
.te_connected
)
904 caps
->ctrl
|= OMAPFB_CAPS_TEARSYNC
;
905 caps
->wnd_color
|= (1 << OMAPFB_COLOR_RGB565
) |
906 (1 << OMAPFB_COLOR_YUV420
);
909 static void hwa742_suspend(void)
911 hwa742
.update_mode_before_suspend
= hwa742
.update_mode
;
912 hwa742_set_update_mode(OMAPFB_UPDATE_DISABLED
);
913 /* Enable sleep mode */
914 hwa742_write_reg(HWA742_POWER_SAVE
, 1 << 1);
915 clk_disable(hwa742
.sys_ck
);
918 static void hwa742_resume(void)
920 clk_enable(hwa742
.sys_ck
);
922 /* Disable sleep mode */
923 hwa742_write_reg(HWA742_POWER_SAVE
, 0);
925 /* Loop until PLL output is stabilized */
926 if (hwa742_read_reg(HWA742_PLL_DIV_REG
) & (1 << 7))
928 set_current_state(TASK_UNINTERRUPTIBLE
);
929 schedule_timeout(msecs_to_jiffies(5));
931 hwa742_set_update_mode(hwa742
.update_mode_before_suspend
);
934 static int hwa742_init(struct omapfb_device
*fbdev
, int ext_mode
,
935 struct omapfb_mem_desc
*req_vram
)
939 unsigned long ext_clk
;
940 unsigned long sys_clk
, pix_clk
;
942 struct omapfb_platform_data
*omapfb_conf
;
944 BUG_ON(!fbdev
->ext_if
|| !fbdev
->int_ctrl
);
946 hwa742
.fbdev
= fbdev
;
947 hwa742
.extif
= fbdev
->ext_if
;
948 hwa742
.int_ctrl
= fbdev
->int_ctrl
;
950 omapfb_conf
= dev_get_platdata(fbdev
->dev
);
952 hwa742
.sys_ck
= clk_get(NULL
, "hwa_sys_ck");
954 spin_lock_init(&hwa742
.req_lock
);
956 if ((r
= hwa742
.int_ctrl
->init(fbdev
, 1, req_vram
)) < 0)
959 if ((r
= hwa742
.extif
->init(fbdev
)) < 0)
962 ext_clk
= clk_get_rate(hwa742
.sys_ck
);
963 if ((r
= calc_extif_timings(ext_clk
, &extif_mem_div
)) < 0)
965 hwa742
.extif
->set_timings(&hwa742
.reg_timings
);
966 clk_prepare_enable(hwa742
.sys_ck
);
968 calc_hwa742_clk_rates(ext_clk
, &sys_clk
, &pix_clk
);
969 if ((r
= calc_extif_timings(sys_clk
, &extif_mem_div
)) < 0)
971 hwa742
.extif
->set_timings(&hwa742
.reg_timings
);
973 rev
= hwa742_read_reg(HWA742_REV_CODE_REG
);
974 if ((rev
& 0xfc) != 0x80) {
975 dev_err(fbdev
->dev
, "HWA742: invalid revision %02x\n", rev
);
981 if (!(hwa742_read_reg(HWA742_PLL_DIV_REG
) & 0x80)) {
983 "HWA742: controller not initialized by the bootloader\n");
988 if ((r
= setup_tearsync(pix_clk
, extif_mem_div
)) < 0) {
989 dev_err(hwa742
.fbdev
->dev
,
990 "HWA742: can't setup tearing synchronization\n");
993 hwa742
.te_connected
= 1;
995 hwa742
.max_transmit_size
= hwa742
.extif
->max_transmit_size
;
997 hwa742
.update_mode
= OMAPFB_UPDATE_DISABLED
;
999 hwa742
.auto_update_window
.x
= 0;
1000 hwa742
.auto_update_window
.y
= 0;
1001 hwa742
.auto_update_window
.width
= fbdev
->panel
->x_res
;
1002 hwa742
.auto_update_window
.height
= fbdev
->panel
->y_res
;
1003 hwa742
.auto_update_window
.format
= 0;
1005 timer_setup(&hwa742
.auto_update_timer
, hwa742_update_window_auto
, 0);
1007 hwa742
.prev_color_mode
= -1;
1008 hwa742
.prev_flags
= 0;
1010 hwa742
.fbdev
= fbdev
;
1012 INIT_LIST_HEAD(&hwa742
.free_req_list
);
1013 INIT_LIST_HEAD(&hwa742
.pending_req_list
);
1014 for (i
= 0; i
< ARRAY_SIZE(hwa742
.req_pool
); i
++)
1015 list_add(&hwa742
.req_pool
[i
].entry
, &hwa742
.free_req_list
);
1016 BUG_ON(i
<= IRQ_REQ_POOL_SIZE
);
1017 sema_init(&hwa742
.req_sema
, i
- IRQ_REQ_POOL_SIZE
);
1019 conf
= hwa742_read_reg(HWA742_CONFIG_REG
);
1020 dev_info(fbdev
->dev
, ": Epson HWA742 LCD controller rev %d "
1021 "initialized (CNF pins %x)\n", rev
& 0x03, conf
& 0x07);
1025 clk_disable_unprepare(hwa742
.sys_ck
);
1027 hwa742
.extif
->cleanup();
1029 hwa742
.int_ctrl
->cleanup();
1034 static void hwa742_cleanup(void)
1036 hwa742_set_update_mode(OMAPFB_UPDATE_DISABLED
);
1037 hwa742
.extif
->cleanup();
1038 hwa742
.int_ctrl
->cleanup();
1039 clk_disable_unprepare(hwa742
.sys_ck
);
1042 struct lcd_ctrl hwa742_ctrl
= {
1044 .init
= hwa742_init
,
1045 .cleanup
= hwa742_cleanup
,
1046 .bind_client
= hwa742_bind_client
,
1047 .get_caps
= hwa742_get_caps
,
1048 .set_update_mode
= hwa742_set_update_mode
,
1049 .get_update_mode
= hwa742_get_update_mode
,
1050 .setup_plane
= hwa742_setup_plane
,
1051 .enable_plane
= hwa742_enable_plane
,
1052 .update_window
= hwa742_update_window_async
,
1053 .sync
= hwa742_sync
,
1054 .suspend
= hwa742_suspend
,
1055 .resume
= hwa742_resume
,