diff options
author | Bhushan Rayrikar <brayrikar@nvidia.com> | 2011-09-07 10:21:48 -0700 |
---|---|---|
committer | Varun Colbert <vcolbert@nvidia.com> | 2011-09-14 14:33:53 -0700 |
commit | cf698680a697ace403e3ecd99af777ea05effaf8 (patch) | |
tree | cb1c454d6b5fc24d472a1284fa5a3edfa40c9d83 | |
parent | 1a5733cc93dc9ec0eabe6115038567d3cf48a61a (diff) |
media: video: tegra: Change vertical output size
ISP needs the vertical output size to be a little more
than the actual resolution. Change vertical size to
1088 for 1920x1080 mode.
Bug 870687
Change-Id: I0c90a9da48f9b5915f1af0f9dab2b6d090da050d
Reviewed-on: http://git-master/r/51682
Reviewed-by: Bhushan Rayrikar <brayrikar@nvidia.com>
Tested-by: Bhushan Rayrikar <brayrikar@nvidia.com>
Reviewed-by: Scott Williams <scwilliams@nvidia.com>
Reviewed-by: Shiva Dubey <sdubey@nvidia.com>
Reviewed-by: Charlie Huang <chahuang@nvidia.com>
Tested-by: Charlie Huang <chahuang@nvidia.com>
Reviewed-by: Frank Chen <frankc@nvidia.com>
Reviewed-by: Dan Willemsen <dwillemsen@nvidia.com>
-rw-r--r-- | drivers/media/video/tegra/ov5650.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/tegra/ov5650.c b/drivers/media/video/tegra/ov5650.c index 52e487e9fe0d..04535d873a1e 100644 --- a/drivers/media/video/tegra/ov5650.c +++ b/drivers/media/video/tegra/ov5650.c @@ -440,11 +440,11 @@ static struct ov5650_reg mode_1920x1080[] = { {0x3804, 0x07}, // HREF width higher 4 bits [3:0] pg 108 {0x3805, 0x80}, // HREF width lower 8 bits [7:0] pg 108 {0x3806, 0x04}, // VREF height higher 4 bits [3:0] pg 109 - {0x3807, 0x38}, // VREF height lower 8 bits [7:0] pg 109 + {0x3807, 0x40}, // VREF height lower 8 bits [7:0] pg 109 {0x3808, 0x07}, // DVP horizontal output size higher 4 bits [3:0] pg 109 {0x3809, 0x80}, // DVP horizontal output size lower 8 bits [7:0] pg 109 {0x380a, 0x04}, // DVP vertical output size higher 4 bits [3:0] pg 109 - {0x380b, 0x38}, // DVP vertical output size lower 8 bits [7:0] pg 109 + {0x380b, 0x40}, // DVP vertical output size lower 8 bits [7:0] pg 109 {0x380c, 0x0a}, // total horizontal size higher 5 bits [4:0] pg 109, line length {0x380d, 0x84}, // total horizontal size lower 8 bits [7:0] pg 109, line length {0x380e, 0x04}, // total vertical size higher 5 bits [4:0] pg 109, frame length |