The OV5640 driver currently supports a static color bar pattern with a
small vertical gamma gradient. The hardware also supports a color square
pattern, as well as having a rolling bar for dynamic sequences.
Add three more test patterns:
  - color bars with a rolling bar (but without the gamma gradient)
  - static color squares
  - color squares with a rolling bar
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
 static const char * const test_pattern_menu[] = {
        "Disabled",
        "Color bars",
+       "Color bars w/ rolling bar",
+       "Color squares",
+       "Color squares w/ rolling bar",
 };
 
 #define OV5640_TEST_ENABLE             BIT(7)
        0,
        OV5640_TEST_ENABLE | OV5640_TEST_BAR_VERT_CHANGE_1 |
                OV5640_TEST_BAR,
+       OV5640_TEST_ENABLE | OV5640_TEST_ROLLING |
+               OV5640_TEST_BAR_VERT_CHANGE_1 | OV5640_TEST_BAR,
+       OV5640_TEST_ENABLE | OV5640_TEST_SQUARE,
+       OV5640_TEST_ENABLE | OV5640_TEST_ROLLING | OV5640_TEST_SQUARE,
 };
 
 static int ov5640_set_ctrl_test_pattern(struct ov5640_dev *sensor, int value)