The ADV7180 and ADV7182 transmit whole fields, bottom field followed
by top (or vice-versa, depending on detected video standard). So
for chips that do not have support for explicitly setting the field
mode, set the field mode to SEQ_BT for PAL, and SEQ_TB for NTSC (there
seems to be conflicting info on field order of PAL vs NTSC, so follow
what is in adv7183.c).

Signed-off-by: Steve Longerbeam <steve_longerb...@mentor.com>
---
 drivers/media/i2c/adv7180.c | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

diff --git a/drivers/media/i2c/adv7180.c b/drivers/media/i2c/adv7180.c
index 4c2623f..c12fca7 100644
--- a/drivers/media/i2c/adv7180.c
+++ b/drivers/media/i2c/adv7180.c
@@ -743,10 +743,17 @@ static int adv7180_set_pad_format(struct v4l2_subdev *sd,
        switch (format->format.field) {
        case V4L2_FIELD_NONE:
                if (!(state->chip_info->flags & ADV7180_FLAG_I2P))
-                       format->format.field = V4L2_FIELD_INTERLACED;
+                       format->format.field =
+                               (state->curr_norm & V4L2_STD_525_60) ?
+                               V4L2_FIELD_SEQ_TB : V4L2_FIELD_SEQ_BT;
                break;
        default:
-               format->format.field = V4L2_FIELD_INTERLACED;
+               if (state->chip_info->flags & ADV7180_FLAG_I2P)
+                       format->format.field = V4L2_FIELD_INTERLACED;
+               else
+                       format->format.field =
+                               (state->curr_norm & V4L2_STD_525_60) ?
+                               V4L2_FIELD_SEQ_TB : V4L2_FIELD_SEQ_BT;
                break;
        }
 
@@ -1416,9 +1423,14 @@ static int adv7180_probe(struct i2c_client *client,
                return -ENOMEM;
 
        state->client = client;
-       state->field = V4L2_FIELD_INTERLACED;
        state->chip_info = (struct adv7180_chip_info *)id->driver_data;
 
+       if (state->chip_info->flags & ADV7180_FLAG_I2P)
+               state->field = V4L2_FIELD_INTERLACED;
+       else
+               state->field = (state->curr_norm & V4L2_STD_525_60) ?
+                       V4L2_FIELD_SEQ_TB : V4L2_FIELD_SEQ_BT;
+
        ret = adv7180_of_parse(state);
        if (ret)
                return ret;
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to