diff options
author | Dandawate Saket <dsaket@ti.com> | 2011-06-19 04:52:47 +0530 |
---|---|---|
committer | Ziyan <jaraidaniel@gmail.com> | 2015-04-18 01:24:05 +0200 |
commit | aa3055605bea9d4277225b722546c19af9d364f6 (patch) | |
tree | cf112fdacb07c130fe0180962a21c7eb37bd884a /drivers/video | |
parent | b3da2e244f3a1618dd99aa660dd684cea37fc5f3 (diff) | |
download | kernel_samsung_tuna-aa3055605bea9d4277225b722546c19af9d364f6.zip kernel_samsung_tuna-aa3055605bea9d4277225b722546c19af9d364f6.tar.gz kernel_samsung_tuna-aa3055605bea9d4277225b722546c19af9d364f6.tar.bz2 |
[Blaze] HACK:OMAP4: DSI Command mode fix for Blaze
Video mode support fix for channel 0 32bit alignement was causing command mode
to break. Need more investigation on the video mode platform to check why
this break is seen.
Change-Id: I0c4a82a723e017e1c90016807117d2dcd2c2453e
Signed-off-by: Dandawate Saket <dsaket@ti.com>
Diffstat (limited to 'drivers/video')
-rwxr-xr-x | drivers/video/omap2/dss/dsi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/omap2/dss/dsi.c b/drivers/video/omap2/dss/dsi.c index 48d83c5..09e35fc 100755 --- a/drivers/video/omap2/dss/dsi.c +++ b/drivers/video/omap2/dss/dsi.c @@ -2788,8 +2788,11 @@ static void dsi_vc_initial_config(struct platform_device *dsidev, int channel) r = FLD_MOD(r, 0, 9, 9); /* MODE_SPEED, high speed on/off */ if (dss_has_feature(FEAT_DSI_VC_OCP_WIDTH)) r = FLD_MOD(r, 3, 11, 10); /* OCP_WIDTH = 32 bit */ +/* TODO: This breaks DSI on Blaze: figure out what is the righ fix */ +#if 0 if (channel == 0) r = FLD_MOD(r, 1, 11, 10); /* OCP_WIDTH = 32 bit */ +#endif r = FLD_MOD(r, 4, 29, 27); /* DMA_RX_REQ_NB = no dma */ r = FLD_MOD(r, 4, 23, 21); /* DMA_TX_REQ_NB = no dma */ |