diff options
author | Eric Miao <eric.miao@marvell.com> | 2008-12-08 05:46:00 -0500 |
---|---|---|
committer | Eric Miao <eric.miao@marvell.com> | 2008-12-17 09:50:52 -0500 |
commit | 69bdea7047fbac88beb8b7ba9e428c4f0e53f563 (patch) | |
tree | db4b378ef239087317cd0b4f8ba4c9d7ed8d638a /drivers/video | |
parent | c1f99c215c58111629984a49ba87b2b145dd1f5b (diff) |
[ARM] pxafb: allow insertion of delay to the smart panel command sequence
Some smart panel requires a delay between command sequences, while PXA
LCD controller didn't provide such one, let's emulate this by software.
A software delay marker can be inserted into the command sequence, once
pxafb_smart_queue() detects this, it flushes the previous commands and
delay for a specified number of milliseconds.
Signed-off-by: Eric Miao <eric.miao@marvell.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/pxafb.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/drivers/video/pxafb.c b/drivers/video/pxafb.c index d6de84b42036..1e1c4ec0d3b9 100644 --- a/drivers/video/pxafb.c +++ b/drivers/video/pxafb.c | |||
@@ -723,12 +723,19 @@ int pxafb_smart_queue(struct fb_info *info, uint16_t *cmds, int n_cmds) | |||
723 | int i; | 723 | int i; |
724 | struct pxafb_info *fbi = container_of(info, struct pxafb_info, fb); | 724 | struct pxafb_info *fbi = container_of(info, struct pxafb_info, fb); |
725 | 725 | ||
726 | /* leave 2 commands for INTERRUPT and WAIT_FOR_SYNC */ | 726 | for (i = 0; i < n_cmds; i++, cmds++) { |
727 | for (i = 0; i < n_cmds; i++) { | 727 | /* if it is a software delay, flush and delay */ |
728 | if ((*cmds & 0xff00) == SMART_CMD_DELAY) { | ||
729 | pxafb_smart_flush(info); | ||
730 | mdelay(*cmds & 0xff); | ||
731 | continue; | ||
732 | } | ||
733 | |||
734 | /* leave 2 commands for INTERRUPT and WAIT_FOR_SYNC */ | ||
728 | if (fbi->n_smart_cmds == CMD_BUFF_SIZE - 8) | 735 | if (fbi->n_smart_cmds == CMD_BUFF_SIZE - 8) |
729 | pxafb_smart_flush(info); | 736 | pxafb_smart_flush(info); |
730 | 737 | ||
731 | fbi->smart_cmds[fbi->n_smart_cmds++] = *cmds++; | 738 | fbi->smart_cmds[fbi->n_smart_cmds++] = *cmds; |
732 | } | 739 | } |
733 | 740 | ||
734 | return 0; | 741 | return 0; |